.slider-wrapper {
  position: relative;
}
.mySlides {
  display: none;
}
.mySlides img {
  height: 360px;
}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  height: 360px;
  overflow: hidden;
  position: relative;
}

/* Full width video */
.full-width-video {
  height: 360px;
  object-fit: cover;
}

/* Video container */
.video-container {
  position: relative;
  width: 100%;
  height: 360px;
}

/* Video overlay */
.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 1;
}

/* Hide video controls by default */
.full-width-video {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -32px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 2;
}

.prev-next-svg {
  fill: #d9d9d9;
}
.prev-next-svg:hover {
  fill: #c0c0c0;
}

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

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  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: 6px;
  width: 6px;
  background-color: rgba(74, 74, 74, 0.66);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  margin: 0 2px;
}

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

.dots-wrapper {
  display: flex;
  position: absolute;
  bottom: 10px;
  left: 45%;
}

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

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev,
  .next,
  .text {
    font-size: 11px;
  }
}
