* {
  box-sizing: border-box;
}

/* Slideshow container */
.slideshow-container {
  /*   max-width: 750px; */
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #a80600;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 8px;
  user-select: none;
  background: #fafafa;
  border: 1px solid #e2e8f0;
}

/* Position the "next button" to the right */
/*   .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
 */
.prev {
  left: -50px; /* Adjust this value to move the left arrow further away */
}

.next {
  right: -50px; /* Adjust this value to move the right arrow further away */
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: #e8e9eb;
}

/* Caption text */
.captionText {
  color: black;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: -30px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.slideActive,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.ani {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes ani {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
