.mySlides {display: none;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin-top: 20px;
  margin-bottom: 10px;  
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active_slider, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* Next & previous buttons */
.prev_slide, .next_slide {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -50px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next_slide {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev_slide {
  left: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover (only for devices that support hover) */
@media (hover: hover) {
  .prev_slide:hover, .next_slide:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
}

/* On touch/click (for devices that don't support hover, i.e., mobile devices) */
@media (hover: none) {
  .prev_slide:active, .next_slide:active {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Revert the styles after clicking */
  .prev_slide:focus, .next_slide:focus {
    background-color: transparent;
  }
}