* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 600px;
  max-height: 300px;
  position: relative;
  margin: 80px auto 80px auto;
  /*top: 200px;*/
}

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

/* Next & previous buttons
.prev, .next {
  display: none;
  cursor: pointer;
  position: relative;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}*/

/* Position the "next button" to the right
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}*/

/* On hover, add a black background color with a little bit see-through
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}*/

/* The dots/bullets/indicators */
.dot {
  position: relative;
  height: 15px;
  width: 15px;
  margin: 60px auto 0px auto;
  background-color: #717171;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 1.0s ease;
}

.active{
  background-color: #bbb;
}

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

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

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