.pl-sn-slider {
  text-align: center;
}
.pl-sn-slider .pl-sn-pad {
  padding: 0;
}
.slider-gallery {
  height: 34vw;
}
.slider-gallery-cell {
  width: 100%;
  /* full width */
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slider-gallery-cell .cell-content {
  width: 65%;
  margin: 0 auto;
}
.slider-gallery-cell .cell-content img {
  max-height: 28vw;
}
.slider-gallery-cell .cell-content .cell-text {
  margin: .5em 0;
}
.nav-bottom .flickity-prev-next-button {
  display: none;
}
.nav-arrows .flickity-page-dots {
  display: none;
}
.nav-none .flickity-prev-next-button,
.nav-none .flickity-page-dots {
  display: none;
}
.pl-scheme-light .flickity-prev-next-button .arrow,
.pl-scheme-dark .pl-scheme-light .flickity-prev-next-button .arrow {
  fill: rgba(255, 255, 255, 0.4);
}
.pl-scheme-light .flickity-page-dots .dot,
.pl-scheme-dark .pl-scheme-light .flickity-page-dots .dot {
  background: rgba(255, 255, 255, 0.3);
}
.pl-scheme-light .flickity-page-dots .dot.is-selected,
.pl-scheme-dark .pl-scheme-light .flickity-page-dots .dot.is-selected,
.pl-scheme-light .flickity-page-dots .dot:hover,
.pl-scheme-dark .pl-scheme-light .flickity-page-dots .dot:hover {
  background: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .slider-gallery-cell .cell-content {
    font-size: 12px;
  }
  .slider-gallery-cell .cell-content img {
    max-height: 20vw;
  }
  .slider-gallery-cell .cell-content .cell-text {
    margin: .3em auto;
  }
  .flickity-page-dots {
    display: none;
  }
  .pl-slider-container {
    padding-bottom: 0;
  }
}
/*! Flickity v1.0.0
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}
.flickity-enabled:focus {
  outline: none;
}
.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}
/* draggable */
.flickity-enabled.is-draggable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background-color: transparent;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.flickity-prev-next-button:hover {
  opacity: .7;
}
.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F;
}
.flickity-prev-next-button:active {
  filter: alpha(opacity=60);
  /* IE8 */
  opacity: 0.6;
}
.flickity-prev-next-button.previous {
  left: 10px;
}
.flickity-prev-next-button.next {
  right: 10px;
}
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}
.flickity-prev-next-button:disabled {
  filter: alpha(opacity=30);
  /* IE8 */
  opacity: 0.3;
  cursor: auto;
}
.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}
.flickity-prev-next-button .arrow {
  fill: rgba(0, 0, 0, 0.5);
}
/* color & size if no SVG - IE8 and Android 2.3 */
.flickity-prev-next-button.no-svg {
  color: rgba(0, 0, 0, 0.4);
  font-size: 26px;
}
/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.flickity-rtl .flickity-page-dots {
  direction: rtl;
}
.flickity-page-dots .dot {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: 8px;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.flickity-page-dots .dot.is-selected,
.flickity-page-dots .dot:hover {
  background: rgba(0, 0, 0, 0.5);
}
