.reviews-wrapper {
  padding-bottom: 50px;
}

.reviews-container {
  margin: 50px auto;
}

.reviews-accordion {
  border: 1px solid #2c6c4c;
  border-radius: 20px;
  margin: 10px 16px;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.reviews-product-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  padding: 0 20px;
  background: #fff url("../img/r-pattern.webp") no-repeat left;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.reviews-left-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reviews-right-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reviews-product-wrapper {
  padding: 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: rgba(255, 255, 255, 0.8);
}

.reviews-product-img {
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 20px;
}

.reviews-product-tag {
  font-size: 16px;
}

.reviews-product-name {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.reviews-product-stars {
  height: 25px;
  width: 143px;
  background: url("../img/stars.webp") no-repeat left/cover;
  margin-right: 20px;
}

.stars-fill {
  background: url("../img/stars-fill.webp") no-repeat left/cover;
  height: 25px;
}

.reviews-product-rating {
  font-weight: 300;
}

.reviews-product-total {
  margin-left: 50px;
  font-weight: 300;
}

.accordion-open-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 22px;
  border: 1px solid #2c6c4c;
  margin-left: 30px;
  border-radius: 50%;
}
.accordion-open-btn svg {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.accordion-open-btn.active svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.accordionFade-enter-active,
.accordionFade-leave-active {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordionFade-enter-from,
.accordionFade-leave-to {
  opacity: 0;
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
}

.review-card {
  border: 1px solid #2c6c4c;
  border-radius: 10px;
  margin: 10px 0;
  padding: 0 20px;
}

.review-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0;
}

.review-text {
  font-size: 14px;
  line-height: 1.55;
}

.review-name {
  max-width: 150px;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0;
}

.review-product {
  font-size: 12px;
  font-weight: 300;
  color: #666666;
}

@media screen and (max-width: 768px) {
  .reviews-container {
    max-width: 95%;
    width: 100%;
  }
  .review-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reviews-accordion {
    margin: 10px 0;
  }
  .reviews-product-name {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .reviews-product-img {
    width: 90px;
    height: 90px;
  }
  .reviews-product-container {
    padding: 0 10px 0 6px;
    gap: 12px;
  }
  .reviews-product-img {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-right: 10px;
  }
  .reviews-right-side {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reviews-product-stars, .reviews-product-rating, .reviews-product-total {
    display: none;
  }
}