/* Slideshow */

.slideshow {
  margin: 10px auto;
  overflow: hidden;
  max-width: 70%;
}

.slideshowSlider {
  white-space: nowrap;
  transition: ease 1000ms;
}

.slide {
  display: inline-block;
  height: auto;
  width: 100%;
  border-radius: 40px;
}

/* Buttons */

.slideshowDots {
  text-align: center;
}

.slideshowDot {
  display: inline-block;
  height: 20px;
  width: 20px;
  border-radius: 50%;

  cursor: pointer;
  margin: 15px 7px 0px;

  background-color: #c4c4c4;
}

.slideshowDot.active {
  background-color: #6a0dad;
}

.slideshowDotReviews {
  display: inline-block;
  height: 2px;
  width: 10px;
  /* border-radius: 50%; */

  cursor: pointer;
  margin: 15px 7px 0px;

  background-color: #c4c4c4;
}

.slideshowDotReviews.active {
  background-color: #290f3b;
}

