@charset "UTF-8";
.reviews {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reviews-container {
  padding: 32px 24px;
  background: #fff;
  margin-top: 40px;
  border-radius: 16px;
}
.reviews-container .title {
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 29px;
  margin-bottom: 16px;
}
.reviews-inform {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  margin: 0 0 24px 0;
  gap: 32px;
  background: #F6F8FC;
  border-radius: 8px;
  color: #333333;
}
.reviews-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.reviews-rating .stars {
  display: flex;
  gap: 4px;
}
.reviews-rating .stars span {
  width: 18px;
  height: 18px;
  display: inline-block;
  background: #e5e5e5;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.reviews-rating .stars span.fill {
  background: #ffc107;
}
.reviews-rating div {
  font-weight: 500;
  font-size: 23px;
  line-height: 28px;
}
.reviews-pagination {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.reviews-pagination__link {
  font-size: 18px;
  text-decoration: none;
  color: #444;
  padding: 4px 10px;
}
.reviews-pagination__info {
  font-size: 14px;
  color: #777;
}
.review-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px 26px;
  background: #fff;
}
.review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 16, 61, 0.14);
}
.review-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.review-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #000;
  margin: 0 0 13px 0;
}
.review-date {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #0F1A2A;
}
.review-stars {
  display: flex;
  gap: 4px;
}
.review-stars span {
  width: 28px;
  height: 28px;
  background: #F3F3F3;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.review-stars span.fill {
  background: linear-gradient(93.77deg, #FFD000 -2.72%, #FFBC00 104.62%);
}
.review-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.review-text h4 {
  margin-top: 16px;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 18px;
  line-height: 110%;
}
.review-text h4:first-child {
  margin-top: 0;
}
.review-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}
.review-metrics {
  list-style: none;
  padding: 24px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
}
.review-metrics li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 8px 0;
}
.review-metrics li:not(:last-child) {
  border-bottom: 1px dashed #DEDEDE;
}
.review-reply {
  border-left: 1px solid #DBDEE4;
  padding: 0 0 0 24px;
  margin: 10px 0 0 0;
}
.review-reply__card {
  border: 1px solid #DBDEE4;
  border-radius: 8px;
  padding: 26px;
}
.review-reply__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.review-reply__seller {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
}
.review-reply__verified {
  color: #4CAF50;
}
.review-reply__date {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #0F1A2A;
}
.review-reply__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}
.review-reply__resolved {
  margin-top: 12px;
  padding: 8px 16px;
  gap: 8px;
  background: rgba(68, 187, 80, 0.12);
  border-radius: 8px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 110%;
  display: flex;
  align-items: center;
  font-feature-settings: "case" on;
  color: rgba(27, 31, 59, 0.8);
}
.review-reply .badge-check {
  margin: 0 0 0 10px;
  color: #44BB50;
}
.review-reply .fa-circle-check {
  color: #44BB50;
  font-size: 22px;
  margin: 0 10px 0 0;
}

/* METRIC VALUE */
.metric-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 110%;
  color: #333;
}

.icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  font-style: normal;
}
.icon--check {
  background: #2e7d32;
}
.icon--check::before {
  content: "✓";
}
.icon--question {
  background: #f59e0b;
}
.icon--question::before {
  content: "?";
}
.icon--none {
  background: #e5534b;
}
.icon--none::before {
  content: "i";
  font-weight: 700;
}

@media (max-width: 900px) {
  .review-content {
    grid-template-columns: 1fr;
  }
  .review-metrics {
    margin-top: 16px;
  }
}

/*# sourceMappingURL=reviews.css.map */
