/*! Flickity v2.0.2
http://flickity.metafizzy.co
---------------------------------------------- */

.history .flickity-enabled {
  position: relative;
}

.history .flickity-enabled:focus { outline: none; }

.history .flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.history .flickity-slider {
  position: absolute;
  width: 98%;
  height: 100%;
}

/* draggable */

.history .flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
          tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.history .flickity-enabled.is-draggable .history .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.history .flickity-enabled.is-draggable .history .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */

.history .flickity-prev-next-button {
  position: absolute;
  top: 25%;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background:none;
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*.history .flickity-prev-next-button:hover { background: white; }*/


.history .flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F;
}

.history .flickity-prev-next-button:active {
  opacity: 0.6;
}

.history .flickity-prev-next-button.previous { left: -27px; }
.history .flickity-prev-next-button.next { right: -24px; }
/* right to left */
.history .flickity-rtl .history .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.history .flickity-rtl .history .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.history .flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto;
}

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

.history .flickity-prev-next-button .arrow {
  fill: #9C9C9C;
  /*fill: #FFF;*/
}

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

.history .flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

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

.history .flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.history .flickity-page-dots .dot.is-selected {
  opacity: 1;
}
