.carousel-container button {
  background: none;
}
.carousel-container {
  position: relative;
  text-align: center;
  border-radius: 10px;
}
.quote {
  border-radius: 10px;
  display: none;
  padding: 15px 30px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  min-height: 230px;
}
.quote.active {
  display: block;
  opacity: 1;
}
.quote-text {
  font-size: 1.4em;
  font-family: serif;
  font-style: italic;
  line-height: 1.6;
  color: #fff;
}
.quote-author {
  margin-top: 20px;
  font-weight: bold;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  margin: 10px;
}
button.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb !important;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  cursor: pointer;
  padding: 0px !important;
  font-size: 0;
  overflow: hidden;  
}
.carousel-controls button.dot.active {
  background-color: #666 !important;
}
/* --- Navigation Arrows --- */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 15px 10px;
  color: #888;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  user-select: none;
  -webkit-user-select: none;
}
.prev {
  left: 0;
  border-radius: 0 3px 3px 0;
}
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
a.prev,
a.next {
  text-decoration: none !important;
}
.prev:hover,
.next:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
}
.quotes-wrapper .quote:nth-child(5n + 1) {
  background: #7a673c !important;
}
.quotes-wrapper .quote:nth-child(5n + 2) {
  background: #005569 !important;
}
.quotes-wrapper .quote:nth-child(5n + 3) {
  background: #9f481b;
  color: #f1e6e0;
}
.quotes-wrapper .quote:nth-child(5n + 4) {
  background: #00584c;
}
.quotes-wrapper .quote:nth-child(5n + 5) {
  background: #585453;
}
.quotes-wrapper .quote:nth-child(5n + 1) .quote-author {
  color: #f6f0e4 !important;
}
.quotes-wrapper .quote:nth-child(5n + 2) .quote-author {
  color: #e1ebea !important;
}
.quotes-wrapper .quote:nth-child(5n + 3) .quote-author {
  color: #f1e6e0 !important;
}
.quotes-wrapper .quote:nth-child(5n + 4) .quote-author {
  color: #e1ebea !important;
}
.quotes-wrapper .quote:nth-child(5n + 5) .quote-author {
  color: #E6E6E6 !important;
}
@media (max-width: 768px) {
  .carousel-container {
    padding: 10px;
  }
  .quote-text {
    font-size: 1.2em;
  }
  .prev,
  .next {
    padding: 10px;
    font-size: 18px;
  }
}