/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  width: 100%;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.slideshow-image-container {
  display: none;
}
.slideshow-image-container img{
  width: 100%;
}

/* Next & previous buttons */
#carousel-prev-btn, #carousel-next-btn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 25px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  text-shadow: 0px 0px 5px #7e7d7d;

}

/* Position the "next button" to the right */
#carousel-next-btn {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
#carousel-prev-btn:hover, #carousel-next-btn:hover {
  text-shadow: 0px 0px 5px #505050;
  transform:scale(130%);

}

/* Caption text */
.text {
  color: #f2f2f2;
  text-shadow: 0px 0px 10px #3a3a3a;
  font-size: 15px;
  padding: 6px 12px;
  position: absolute;
  bottom: 12px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;

  /* center image caption */
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: max-content;
}

/* Number text (1/3 etc) */
.slide-number {
  color: #f2f2f2;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  text-shadow: 0px 0px 5px #7e7d7d;
  font-size: 12px;
  padding: 4px 8px;
  position: absolute;
  top: 10px;
  left: 10px;
}

/* The dots/bullets/indicators */
#dots-container {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
.dot {
  cursor: pointer;
  padding: 5px;
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}