#fullscreenSlideshowContainer .ui {
  position: absolute;
  font-family: sans-serif;
  z-index: 10;
  font-size: 2em;
}

#fs-loader,
#fs-prev,
#fs-next,
#fs-close,
#fs-autoplay {
  background-color: black;
  color: white;
  font-weight: bold;
  cursor: pointer;
  line-height: 1em;
  display: block;
}

#fs-loader {
  background-color: transparent;
}

#fs-close {
  top: 1em;
  right: 1em;
}

#fs-prev,
#fs-next {
  top: 50%;
  margin-top: -1em;
}

#fs-prev {
  left: 1em;
}

#fs-next {
  right: 1em;
}

#fs-loader {
  top: 50%;
  left: 50%;
  height: 1em;
  display: none;
  padding: 0;
  margin-left: -32px;
  margin-top: -32px;
}

#fs-caption {
  bottom: 20px;
  text-align: center;
  width: 100%;
  left: 0;
  line-height: 1em;
  display: none;
}

#fs-caption span {
  background-color: white;
}

#fs-prev,
#fs-next,
#fs-close,
#fs-caption span {
  padding: 5px 15px;
  border-radius: 3px;
}

#fullscreenSlideshowContainer  #fs-autoplay {
  bottom: 1em;
  left: 1em;
  font-size: 1.5em;
  padding: 5px;
  border-radius: 3px;
}

#fullscreenSlideshowContainer  #fs-autoplay div {
  position: relative;
}

#fullscreenSlideshowContainer  #fs-autoplay span.is--active {
  color: green;
}

#fullscreenSlideshowContainer  #fs-autoplay ul {
  display: none;
  position: absolute;
  left: 10rem;
  top: -1.8rem;
  list-style-type: none;
  width: 350px;
  height: 34px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

#fullscreenSlideshowContainer  #fs-autoplay ul.is--active{
  display: block;
}

#fullscreenSlideshowContainer  #fs-autoplay ul li {
  border-radius: 3px;
  width: 50px;
  margin-left: 10px;
  background-color: black;
  color: white;
  font-weight: bold;
  cursor: pointer;
  line-height: 1em;
  float: left;
  padding: 5px;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #fdd;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}

@media screen and (max-width: 768px) {
  #fullscreenSlideshowContainer  #fs-autoplay {
    font-size: 1.5em;
    padding: 3px;
    left: 0.5em;
    bottom: 0.5em;
  }

  #fullscreenSlideshowContainer  #fs-autoplay ul li {
    width: 27px;
    margin-left: 5px;
    padding: 3px;
  }

  #fullscreenSlideshowContainer  #fs-autoplay ul {
    left: 8.75rem;
    top: -1.7rem;
    height: 30px;
  }

  #fs-prev {
    left: 0.5em;
  }

  #fs-next {
    right: 0.5em;
  }

  #fs-close {
    top: 0.5em;
    right: 0.5em;
  }
}