/* external css: flickity.css */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body { font-family: sans-serif; }

.gallery {
  background: transparent;
  width: 100%;
  margin-bottom: 0px;
}

.gallery-cell {
  height: 300px;
  margin-right: 0px;
  background: transparent;
}


.flickity-prev-next-button {
  width: 54px;
  height: 54px;
  background: transparent;
}
/* arrow color */
.flickity-prev-next-button .arrow {
  fill: grey;
}
.flickity-prev-next-button.no-svg {
  color: grey;
}
.flickity-prev-next-button:hover {
  background: transparent;
}

.flickity-page-dots {
  bottom: 0px;
  display: none;
}
/* white circles */
.flickity-page-dots .dot {
  width: 0px;
  height: 0px;
  opacity: 1;
  background: transparent;
  border: 2px solid white;
}
/* fill-in selected dot */
.flickity-page-dots .dot.is-selected {
  background: white;
}