/*! Flickity v2.1.2
https://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-tap-highlight-color: transparent;
  -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;
  height:100px;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 1;
}

.flickity-button:disabled {
  opacity: 1;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: none;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 700px;
  width: 62px;
  height: 95px;
  /* vertically center */
/*  transform: translateY(-50%);*/

}

.flickity-prev-next-button.previous {
    left: 0px;
    background: url("../img/left_off.png")no-repeat;
    background-size: 100%;
}

.flickity-prev-next-button.previous:hover {
    left: 0px;
    background: url("../img/left_on.png")no-repeat;
    background-size: 100%;
}

.flickity-prev-next-button.next { right: 0px;
    background: url("../img/right_off.png")no-repeat;
    background-size: 100%;
    overflow: hidden; }

.flickity-prev-next-button.next:hover { right: 0px;
    background: url("../img/right_on.png")no-repeat;
    background-size: 100%;
     overflow: hidden;}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;

  right: 0px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;

  left: 0px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;

  max-width:12.5%;
  height:2.871458333%;
/*  width:8.4375%;*/
  width:100%;
/*  bottom: 64px;*/
  bottom: 4.6205925925%;
  padding: 0;
  left:48.58125%;
  list-style: none;
  text-align: center;
  line-height: 1;
  background: url("../img/servant_select_base.png")no-repeat;
  background-size: 100%;
  background-position: center center;
}



.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
    width: 16.9%;
  height: 163.63636363636%;
  margin: 0 0.1% 0 0.1%;
  background: url("../img/servant_select_off.png")no-repeat;
  background-size: 100%;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  display: inline-block;


      background: url("../img/servant_select_on.png")no-repeat;
      background-size: 100%;
}

@media (max-width: 1200px) {




}