* {
  box-sizing: border-box;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  height: auto;
}

.slideshow-container.aspect:before {
  content: "";
  display: block;
  padding-top: 33%;
}

.slideshow-container .inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.slideshow-container .inner img {
  border-radius: 5px;
}

/* The dots/bullets/indicators */
.dots-container {
  text-align: center;
  z-index: 1;
}

.dots-container .dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: rgba(192, 192, 192, 0.8);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dots-container .active, .dots-container .dot:hover {
  background-color: rgba(128, 128, 128, 0.8);
}

/* 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;
  }
}
