/* Slideshow container */
.slideshow-container {
  max-width: 10000px;
  position: relative;
  margin: auto;
}

.slideshow-container .slideshow-item {
  display: none;
  float: left;
  position: relative;
}

/* Next & previous buttons */
.slideshow-container .slideshow-prev, .slideshow-container .slideshow-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 99;
}
.slideshow-container .slideshow-prev{
  left: 1%;
}

/* Position the "next button" to the right */
.slideshow-container .slideshow-next {
  right: 1%;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.slideshow-container .slideshow-prev:hover, .slideshow-container .slideshow-next:hover {
  background-color: rgba(255,255,255,0.5);
}

/* Caption text */
.slideshow-container .title {
  color: #f2f2f2;
  font-size: 22px;
  padding: 8px 12px;
  position: absolute;
  top: 40%;
  width: 100%;
  text-align: center;
}
/* Caption text */
.slideshow-container .desc {
  color: #f2f2f2;
  font-size: 40px;
  padding: 8px 12px;
  position: absolute;
  top: 45%;
  width: 100%;
  text-align: center;
}
/* Caption text */
.slideshow-container .desc2 {
  color: #f2f2f2;
  font-size: 30px;
  padding: 8px 12px;
  position: absolute;
  top: 55%;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.slideshow-container .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.slideshow-container .slideshow-pagination{
  position: absolute;
  bottom: 0;
  z-index: 9;
  width: 100%;
  text-align: center;
}
.slideshow-container .slideshow-pagination .dot{
  cursor: pointer;
  width: 25px;
  height: 5px;
  margin: 0 2px;
  background-color: #fff;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.slideshow-container .slideshow-pagination .dot:hover,
.slideshow-container .slideshow-pagination .dot.active{
  background-color: #717171;
}

.slideshow-container .clear{
  clear: both;
}

/* Fading animation */
.slideshow-container .slideFade {
  -webkit-animation-name: slideFade;
  -webkit-animation-duration: 1.5s;
  animation-name: slideFade;
  animation-duration: 1.5s;
}

@-webkit-keyframes slideFade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes slideFade {
  from {opacity: .4}
  to {opacity: 1}
}




/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .slideshow-container .slideshow-.prev,
  .slideshow-container .slideshow-.next {
    font-size: 11px
  }
}
