@charset "UTF-8";
.slideshow {
  position: relative;
}
.slideshow button {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  background: white;
  border-radius: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
}
.slideshow button:after {
  display: inline-block;
  font-size: 1.5rem;
  color: black;
  line-height: 1;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
}
.slideshow button:hover, .slideshow button:focus {
  background: black;
}
.slideshow button:hover:after, .slideshow button:focus:after {
  color: white;
}
.slideshow [id*=play] {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3rem;
}
.slideshow [id*=play]:after {
  content: "";
}
.slideshow [id*=play].paused:after {
  content: "";
}
.slideshow [id*=prev],
.slideshow [id*=next] {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 0;
  width: 3rem;
  height: 3rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.slideshow [id*=prev]:after,
.slideshow [id*=next]:after {
  content: "";
}
.slideshow [id*=next] {
  left: auto;
  right: 0;
}
.slideshow [id*=next]:after {
  content: "";
}
.slideshow .dots {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0.625rem;
  text-align: center;
}
.slideshow .dots button {
  background: transparent;
}
.slideshow .dots button:after {
  color: white;
  content: "";
}
.slideshow .dots button.active:after {
  font-weight: normal;
  content: "";
}
.slideshow .dots button:hover::after, .slideshow .dots button:focus::after {
  color: black;
}