/** Shopify CDN: Minification failed

Line 183:18 The "-" operator only works if there is whitespace on both sides

**/
/* REVIEWS CSS */

.gos-review-section {
  background-color: #eaeaea;
  width: 100%;
  padding: 36px 0 18px 0;
}

/* GOS REVIEW WRAPPER (wrapper for full section) */

.gos-review-wrapper {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
  padding: 0 20px;
}

/* APPROVED BY SECTION */

.approved-by-section {
  flex: 0 0 33%;
  max-width: 33%;
  margin-top: 60px;
}

.approved-stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

/* TESTIMONIAL CAROUSEL / SWIPER */

.testimonial-carousel {
  position: relative;
  flex: 0 0 66%;
  max-width: 66%;
  min-height: 220px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 0 40px;
  overflow: hidden;
}

/* SWIPER WRAPPER */
.swiper-wrapper {
  height: 100%;
  margin-bottom: 80px;
  overflow: visible;
}

/* SWIPER SLIDE */

.testimonial-carousel .swiper-slide {
  min-height: 220px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  height: 100%;
}

/* REVIEW CARD */

.review-card {
  background-color: #27444a;
  padding: 20px;
  border-radius: 8px;
  color: white;
  transition: max-height 0.5s ease-in-out;
  max-height: 300px;
  height: 100%;
  min-height: 220px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

.review-card.expanded {
  max-height: 1000px;
}

/* REVIEW CONTENT */

.stars {
  font-size: 25px;
  color: #d3c698;
  line-height: 20px;
}

.stars svg {
  padding: 5px;
}

.review-text {
  max-height: 100px;
  transition: max-height 0.5s ease-in-out;
  overflow: hidden;
  min-height: 80px;
  color: white;
  line-height: 1.25;
  position: relative;
}

.review-text.expanded {
  max-height: 1000px;
}

.review-author {
  color: white;
  line-height: 1.25;
}

.hidden {
  display: none;
}

.toggle-review-btn {
  background: none;
  border: none;
  color: #c8b58d;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9em;
  padding: 0;
}

/* SWIPER BUTTONS AND PAGINATION */
.swiper-button-prev:after,
.swiper-button-next::after {
  font-size: 22px !important;
  height: 20px;
  color: rgb(39, 68, 74);
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 140px;
  z-index: 10;
  width: 30px;
  height: 30px;
}

.swiper-button-prev {
  left: 0px !important;
}

.swiper-button-next {
  right: 0px !important;
}

.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.swiper-pagination-bullet-active {
  background-color: rgb(39, 68, 74);
}

/* MEDIA QUERIES */

@media (max-width: 1200px) {
  .testimonial-carousel {
    padding: 0 35px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    top: calc(50% -50px);
  }
}

@media (max-width: 750px) {
  .gos-review-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .review-card {
    align-items: center;
  }

  .review-text {
    text-align: center;
    max-height: 50px;
    min-height: 20px;
    transition: max-height 0.5s ease-in-out;
    overflow: hidden;
  }

  .review-text.expanded {
    max-height: 1000px;
  }

  .approved-by-section {
    margin-top: 0px;
    max-width: 100%;
  }

  .testimonial-carousel {
    height: 350px;
    max-width: 100%;
  }

  .swiper-button-prev,
  .swiper-button-next {
    top: 140px;
  }
}

@media (max-width: 550px) {
  .testimonial-carousel {
    padding: 0 0px;
  }

  .review-text {
    text-align: center;
    max-height: 70px;
    min-height: 20px;
    transition: max-height 0.5s ease-in-out;
    overflow: hidden;
  }
}
