.slideshow-enabled {
  position: relative;
}

.slideshow-enabled:focus { outline: none; }

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

.slideshow-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

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

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

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

/* slideshow-button */

.slideshow-button {
  position: absolute;
  background: none;
  border: none;
  color: #333;
}

.slideshow-button:hover {
  background: none;
  cursor: pointer;
}

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

.slideshow-button:active {
  opacity: 0.6;
}

.slideshow-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event */
  pointer-events: none;
}

.slideshow-button-icon {
  fill: currentColor;
}

/* previous/next buttons */

.slideshow-prev-next-button {
  top: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.slideshow-prev-next-button.previous { left: -10px; }
.slideshow-prev-next-button.next { right: -10px; }

/* right to left */
.slideshow-rtl .slideshow-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.slideshow-rtl .slideshow-prev-next-button.next {
  right: auto;
  left: 10px;
}

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

/* quick navigation dots */

.slideshow-page-dots {
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  padding-top:20px;
  list-style: none;
  text-align: center;
  line-height: 1;
}

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

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

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