.s205ri-reviews-carousel-wrapper {
  padding: 20px 80px; /* Room for the nav arrows. */
  max-width: calc(360px * 3 + 64px + 160px); /* Card Width * 3 + gaps + nav arrows. */
  margin: 0 auto;
}
.s205ri-all-reviews { padding-top: 10px; }
.s205ri-all-reviews-wrapper { padding: 20px 0; }

.s205ri-reviews-carousel-wrapper .review-set-title-container {
  text-align: center; 
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
}

.s205ri-all-reviews,
.s205ri-reviews .owl-stage,
.s205ri-reviews .owl-item {
  display: flex; /* Automatically grows slides to be the same height. */
}

.s205ri-reviews { position: relative; }
.s205ri-reviews .owl-stage-outer { overflow: hidden; }

.s205ri-all-reviews {
  flex-wrap: wrap;
  gap: 20px;
  max-width: calc(360px * 3 + 20px * 2); /* Card Width * 3 + gaps. */
  margin: 0 auto;
  justify-content: center;
}

.s205ri-all-reviews .review-wapper,
.s205ri-reviews .review-wrapper {
  padding: 14px; /* Make room in each card for the box-shadow. */
}
.s205ri-all-reviews .review-wrapper { max-width: 360px; }
.s205ri-all-reviews .review,
.s205ri-reviews .review {
  padding: 24px;
  /* box-shadow: 0 2px 8px -1px rgba(0, 0, 0, 0.2), 0 1px 1px -1px rgba(0, 0, 0, 0.1); */
  box-shadow: 0 6px 14px rgba(12, 12, 13, 0.1);
  /* margin: 0 10px; */
  margin: 0;
  display: flex;
  /* gap: 20px; */
  flex-direction: column;
  max-height: 580px;
  height: 100%;

  border-radius: 3px;
}
.s205ri-all-reviews .review { margin: 0; }
.s205ri-reviews .review { position: relative; }

.s205ri-all-reviews .source-attribution,
.s205ri-reviews .source-attribution {
  position: absolute;
  top: 0;
  right: 24px;
  font-size: 14px;
  color: #b3b3b3;
}
.s205ri-all-reviews .review-wrapper:not(:first-child) .source-attribution { display: none; }
.s205ri-all-reviews .source-attribution .google-logo,
.s205ri-reviews .source-attribution .google-logo {
  display: inline-block;
  max-width: 18px;
}

.s205ri-all-reviews .profile-image,
.s205ri-reviews .profile-image {
  border-radius: 50%;
  max-width: 64px;
  height: 64px;
  margin-bottom: 10px;
}

.s205ri-all-reviews .name, .s205ri-reviews .name {
  font-size: 20px;
  color: rgba(117,117,117);
  margin-bottom: 0;
  line-height: 1.4em;
}
.s205ri-all-reviews .date, .s205ri-reviews .date {
  font-size: 16px;
  color: #b3b3b3;
  line-height: 1.4em;
  margin-bottom: 8px;
}
.s205ri-all-reviews .rating, .s205ri-reviews .rating {
  display: flex; 
  margin-bottom: 0;
}
.s205ri-all-reviews .rating img, .s205ri-reviews .rating img { max-width: 20px; }
.s205ri-all-reviews .review-content, .s205ri-reviews .review-content { 
  font-size: 16px;
  color: rgba(30, 30, 30, 1);
  line-height: 1.4em;
  margin-bottom: 0;
}

/* Navigation Arrows */
.s205ri-reviews .owl-nav button {
  background: none;
  border: none;
  padding: 0;
}
.s205ri-reviews .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.s205ri-reviews .owl-nav button {
  width: 32px;
  height: 32px;
  pointer-events: all;
  transform: scale(1);
  transition: 0.1s all ease-in-out;
}
.s205ri-reviews .owl-nav button.owl-prev { margin-left: -50px; }
.s205ri-reviews .owl-nav button.owl-next { margin-right: -50px; }
.s205ri-reviews .owl-nav button:hover { transform: scale(1.1); }
.s205ri-reviews .owl-nav button span {
  font-size: 1.5em;
  color: #333;
}

/* Navigation Dots */
.s205ri-reviews .owl-dots {
  text-align: center;
  margin-top: 20px;
}
.s205ri-reviews .owl-dots .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background-color: #e0e0e0;
  border-radius: 50%;
  cursor: pointer;
}
.s205ri-reviews .owl-dots .owl-dot.active { background-color: #333; }

/* Review Buttons */
.s205ri-all-reviews-wrapper .review-buttons,
.s205ri-reviews-carousel-wrapper .review-buttons {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.s205ri-all-reviews-wrapper .review-buttons a,
.s205ri-reviews-carousel-wrapper .review-buttons a {
  background: #AA0000;
  color: white;
  padding: 12px 44px;
  transition: 0.3s all ease-in-out;
}

.s205ri-all-reviews-wrapper .review-buttons a:first-child, .s205ri-reviews-carousel-wrapper .review-buttons a:first-child { margin-right: 33px; }
.s205ri-all-reviews-wrapper .review-buttons a:hover, .s205ri-reviews-carousel-wrapper .review-buttons a:hover { background: black; }

/* Front End Spinner */
.s205ri-load-more-container {
  text-align: center;
  padding: 20px;
}

.s205ri-spinner {
  width: 30px;
  height: 30px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #0073aa;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.s205ri-spinner.active { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }


@media (max-width: 1200px) {
  .s205ri-reviews-carousel-wrapper {
    max-width: calc(360px * 2 + 32px + 160px); /* Card Width * 3 + gap + nav arrows. */
  }
  /* .s205ri-all-reviews .review-wrapper { max-width: calc(50% - 10px); } */
}
@media (max-width: 767px) {
  .s205ri-reviews-carousel-wrapper {
    padding: 0 40px; /* Room for the nav arrows. */
    max-width: calc(360px + 80px); /* Card Width * 3 + nav arrows. */
  }
  .s205ri-reviews .owl-nav button.owl-prev { margin-left: -30px; }
  .s205ri-reviews .owl-nav button.owl-next { margin-right: -30px; }
  /* .s205ri-all-reviews .review-wrapper { max-width: 100%; } */
  .s205ri-all-reviews .name,
  .s205ri-reviews .name { 
    font-size: 32px; 
    line-height: 1.2em;
  }
  .s205ri-all-reviews-wrapper .review-buttons,
  .s205ri-reviews-carousel-wrapper .review-buttons {
    flex-direction: column;
    align-items: center;
  }
  .s205ri-all-reviews-wrapper .review-buttons a, .s205ri-reviews-carousel-wrapper .review-buttons a { margin: 0 auto; }
  .s205ri-all-reviews-wrapper .review-buttons a:first-child,
  .s205ri-reviews-carousel-wrapper .review-buttons a:first-child {
    margin-right: auto;
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .s205ri-all-reviews .name,
  .s205ri-reviews .name { 
    font-size: 32px; 
    line-height: 1.2em;
  }
  .s205ri-all-reviews .date, .s205ri-reviews .date { font-size: 20px; }
}
@media (max-width: 374px) { 
  .s205ri-all-reviews .review, .s205ri-reviews .review { max-height: none; } 
}