.description-tabs-wrapper {
  display: none;
}
@media (min-width: 1024px) {
  .description-tabs-wrapper {
    display: block;
  }
}

.tabs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.tabs__item {
  position: relative;
  padding: 22px;
  border: none;
  background: -webkit-gradient(linear, left top, right top, from(#f0f0f0), to(#f8f8f8));
  background: linear-gradient(90deg, #f0f0f0 0%, #f8f8f8 100%);
  cursor: pointer;
  -webkit-transition: background 0.3s 0s ease;
  transition: background 0.3s 0s ease;
}
.tabs__item::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 16px solid transparent;
  border-bottom: 10px solid #f8f8f8;
  border-left: 16px solid transparent;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.tabs__item:hover {
  background: #79b927;
  -webkit-transition: background 0.3s 0s ease;
  transition: background 0.3s 0s ease;
}
.tabs__item:hover .tabs__text {
  color: #fff;
}

.tab-moblie {
  position: relative;
  margin-bottom: 12px;
  padding: 12px;
  width: 100%;
  border: none;
  background: #79b927;
  -webkit-transition: background 0.3s 0s ease;
  transition: background 0.3s 0s ease;
}
.tab-moblie::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 12px solid transparent;
  border-bottom: 6px solid #f8f8f8;
  border-left: 12px solid transparent;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 1024px) {
  .tab-moblie {
    display: none;
  }
}

.tab-moblie.opened {
  margin-bottom: 16px;
}
.tab-moblie.opened::before {
  display: none;
}
.tab-moblie.opened::after {
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 6px solid #79b927;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.tab-moblie__text {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.tabs__text {
  color: #a5a5a5;
  font-weight: 500;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.tabs__item.current {
  background: #79b927;
}
.tabs__item.current .tabs__text {
  color: #fff;
}
.tabs__item.current::before {
  display: none;
}
.tabs__item.current::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 10px solid #79b927;
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.tab-content {
  padding: 50px 0;
  background-color: #f8f8f8;
  gap: 20px;
}

.tab-content__inner {
  padding-bottom: 16px;
}
@media (min-width: 1024px) {
  .tab-content__inner {
    padding-bottom: 0;
  }
}

.description__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Roboto", sans-serif;
  gap: 20px;
}
@media (min-width: 1024px) {
  .description__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.description__title {
  margin-bottom: 22px;
  color: #1c1c1c;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .description__title {
    margin-bottom: 30px;
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .description__left-col {
    max-width: 820px;
  }
}

.reviews-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.review__inner {
  padding: 16px 22px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  font-family: "Roboto", sans-serif;
}
@media (min-width: 768px) {
  .review__inner {
    padding: 26px 30px;
  }
}

.review__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 15px;
  gap: 12px;
}
@media (min-width: 768px) {
  .review__head {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 25px;
    gap: 20px;
  }
}

.review__name {
  color: #222;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
}

@media (min-width: 768px) {
  .review__name + .review__link {
    margin-left: -10px;
    font-weight: 500;
  }
}

.review__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.review__date {
  color: #cecece;
  font-size: 14px;
}

.review__head-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (min-width: 1024px) {
  .review__head-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}

.review__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
  padding: 15px 0;
  border-top: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
  gap: 14px;
}
@media (min-width: 768px) {
  .review__body {
    padding: 25px 0;
    gap: 20px;
  }
}

.review__message {
  color: #222;
  font-size: 14px;
  line-height: 24px;
}

.review__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .review__row {
    gap: 16px;
  }
}

.review__key,
.review__value {
  color: #222;
  font-size: 16px;
  line-height: 24px;
}

.review__key {
  font-weight: 500;
}

.review__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 8px 16px;
}

.review__img-link {
  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: 80px;
  height: 80px;
}
.review__img-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.review__link {
  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: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 10px;
}
.review__link span {
  color: #99c864;
}
.review__link:hover {
  opacity: 0.6;
}

.review--answer {
  margin-left: 40px;
}
.review--answer .review__body {
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: unset;
}
@media (min-width: 768px) {
  .review--answer {
    margin-left: 60px;
  }
}
@media (min-width: 1024px) {
  .review--answer {
    margin-left: 80px;
  }
}

@media (max-width: 768px) {
  .review--answer .review__head-inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.description__right-col {
  padding: 16px 22px;
  background-color: #fff;
}
@media (min-width: 1024px) {
  .description__right-col {
    position: sticky;
    top: 0;
    padding: 30px;
    min-width: 400px;
  }
}

.review-form__title {
  margin-bottom: 20px;
  color: #99c864;
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
}

.review-form__subtitle {
  margin-bottom: 21px;
  color: #222;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}

.review-form__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  gap: 8px;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 21px;
  gap: 11px;
}
.form-row label {
  color: #222;
  font-weight: 400;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  line-height: 24px;
}
.form-row textarea,
.form-row input {
  width: 100%;
  border: 1px solid #d2d2d2;
  background-color: #f8f8f8;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  line-height: 20px;
}
.form-row textarea:focus,
.form-row input:focus {
  border-color: #99c864;
}
.form-row textarea {
  padding: 16px;
  height: 80px;
  resize: none;
}
.form-row input {
  padding: 12px 16px;
  height: 50px;
}

.form-row__error:empty {
  display: none;
}

.form-row--error textarea {
  border-color: red;
}
.form-row--error textarea:focus {
  border-color: red;
}

.form-row--error input {
  border-color: red;
}
.form-row--error input:focus {
  border-color: red;
}
.form-row--error .form-row__error {
  color: red;
  font-size: 14px;
  line-height: 18px;
}

.form-row--comment textarea {
  height: 120px;
}

.review-form__upload-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
}

.review-form__upload-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}
.review-form__upload-inner p {
  color: #d2d2d2;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
}
.review-form__upload-inner input {
  display: none;
}
.review-form__upload-inner label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 10px;
  min-width: 100%;
  height: 50px;
  background-color: #1c1c1c;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.review-form__upload-inner label:hover {
  background-color: #666666;
}
.review-form__upload-inner label span {
  color: #fff;
  font-size: 14px;
}
@media (min-width: 640px) {
  .review-form__upload-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15px;
  }
  .review-form__upload-inner p {
    text-align: left;
  }
  .review-form__upload-inner label {
    min-width: 144px;
  }
}

.review-form__uploaded-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 31px;
  gap: 10px;
}

.review-from__uploaded-row {
  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: 12px;
}

.review-form__remove-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.review-form__remove-file:hover {
  opacity: 0.5;
}

.reviews-form__submit {
  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: 100%;
  height: 50px;
  border: unset;
  background-color: #79b927;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.reviews-form__submit:hover {
  background-color: #6ca125;
}
.reviews-form__submit:active {
  background-color: #5a8620;
}