/*--- Slideshow Items ---*/

.slideshow-container {
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
}

/* Slides default */
.mySlides {
  display: none; 
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.mySlides img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.prev, .next{
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-right: 3px 0 0 3px;
}

/* On hover, highlight with dark background */
.prev:hover, .next:hover{
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.caption {
  color: white;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 6%;
  width: 90%;
  text-align: left;
  left: 5%;
  display: table-cell;
  vertical-align: bottom;
  
  text-shadow: 2px 2px 4px #000000;
}

.title {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 12%;
  width: 50%;
  text-align: left;
  left: 5%;
  display: table-cell;
  vertical-align: bottom;
  text-shadow: 2px 2px 4px #000000;
}

/* Number text (1/3 etc) */
.numbertext {
  color: rgba(231, 231, 231, 0.8);
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0px;
}

/* 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, .dot:hover {
  background-color: #717171;
}