
.slideshowcontainer * {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 100vw;
  top: 8px;
  position: relative;
  margin: auto;
  box-sizing: border-box;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

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

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

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