.reviews-cards {
  padding: 50px 0;
}

.reviews__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 24px;
}

.reviews__title-wrap {
  min-width: 0;
}

.reviews__title {
  margin: 0 0 8px;
  color: #292d32;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.reviews__subtitle {
  margin: 0;
  color: #848382;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.reviews__add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 155px;
  height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 30px;
  background: #f17800;
  color: rgba(0, 0, 0, .749);
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

@media(hover: hover) {
  .reviews__add:hover {
    background-color: #ff9416;
  }
}

.reviews__add:active {
  transform: translateY(1px);
}

.reviews__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.reviews__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
}

.reviews__show-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #DF6A0E;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.2s ease;
}

.reviews__show-more:hover {
  color: #d85f00;
}

.reviews__show-more.is-hidden {
  display: none;
}

.reviews__counter {
  color: #848382;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
}

.reviews__counter-current,
.reviews__counter-total {
  display: inline;
}


/* Карточка отзыва */
.review-card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  height: max-content;
  padding: 24px;
  border: 1px solid #DDE1E3;
  border-radius: 24px;
  background: #fff;
  overflow: hidden; 
}

.review-card.is-expanded .review-card__more-arrow {
  display: none;
}

.review-card.is-hidden {
  display: none;
}

.review-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.review-card__author {
  min-width: 0;
}

.review-card__name {
  margin-bottom: 5px;
  color: #262B2F;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
}

.review-card__date {
  display: block;
  color: #848382;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
}

.review-card__rating {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 1px;
  padding-top: 7px;
  color: #6D7378;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0;
}

.review-card__rating--1 span:nth-child(1),
.review-card__rating--2 span:nth-child(-n + 2),
.review-card__rating--3 span:nth-child(-n + 3),
.review-card__rating--4 span:nth-child(-n + 4),
.review-card__rating--5 span:nth-child(-n + 5) {
  color: #f17800;
}

.review-card__content {
  flex: 1;
  min-width: 0;
}

.review-card__text {
  display: -webkit-box;
  margin: 0;
  color: #000;
  font-size: 16px;
  line-height: 1.56;
  font-weight: 400;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  transition: max-height 0.3s ease;
}

.review-card.is-expanded .review-card__text {
  display: block;
  -webkit-line-clamp: unset;
}

.review-card__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.review-card__source {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  padding: 0 16px;
  border-radius: 20px;
  background: #FFF3E8;
  color: #DF6A0E;
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
}

.review-card__more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ed6c00;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease;
}

.review-card__more.is-hidden {
  display: none;
}

/* .review-card__more span {
  font-size: 15px;
  transition: transform 0.2s ease;
} */

.review-card__more:hover {
  color: #d85f00;
}

/* .review-card__more:hover span {
  transform: translateX(3px);
} */


/* Модальное окно */

.reviews-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.25s ease,
    opacity 0.25s ease;
}

.reviews-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.reviews-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 28, 32, 0.55);
  cursor: pointer;
}

.reviews-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100vh - 60px);
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  overflow-y: auto;
  transform: translateY(15px);
  transition: transform 0.25s ease;
}

.reviews-modal.is-open .reviews-modal__dialog {
  transform: translateY(0);
}

.reviews-modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f5f5f5;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.reviews-modal__close:hover {
  background: #ededed;
}

.reviews-modal__close span {
  position: absolute;
  top: 17px;
  left: 9px;
  width: 18px;
  height: 1.5px;
  background: #292d32;
}

.reviews-modal__close span:first-child {
  transform: rotate(45deg);
}

.reviews-modal__close span:last-child {
  transform: rotate(-45deg);
}

.reviews-modal__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-right: 50px;
}

.reviews-modal__name {
  margin-bottom: 6px;
  color: #292d32;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.reviews-modal__date {
  color: #858b92;
  font-size: 14px;
  line-height: 1.4;
}

.reviews-modal__rating {
  flex: 0 0 auto;
  padding-top: 2px;
  color: #ed6c00;
  font-size: 19px;
  letter-spacing: 1px;
}

.reviews-modal__source {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  margin-top: 24px;
  padding: 0 16px;
  border-radius: 20px;
  background: #fff2e8;
  color: #f36f00;
  font-size: 12px;
  line-height: 1;
}

.reviews-modal__text {
  margin-top: 24px;
  color: #292d32;
  font-size: 16px;
  line-height: 1.7;
  white-space: pre-line;
}


/* Планшет */

@media (max-width: 991px) {
  .reviews__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews__add {
    min-width: 145px;
  }

  .reviews__list {
    grid-template-columns: 1fr;
  }
}


/* Мобильная версия */

@media (max-width: 767px) {
  .reviews {
    padding-bottom: 50px;
  }

  .reviews__head {
    gap: 20px;
    margin-bottom: 22px;
  }

  .reviews__title {
    margin-bottom: 7px;
    font-size: 28px;
    line-height: 1.2;
  }

  .reviews__subtitle {
    font-size: 14px;
    line-height: 1.5;
  }

  .reviews__add {
    width: 100%;
    height: 50px;
  }

  .reviews__list {
    gap: 14px;
  }

  .reviews__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
  }

  .reviews__show-more {
    font-size: 14px;
  }

  .review-card {
    min-height: 0;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .review-card__top {
    margin-bottom: 16px;
  }

  .review-card__name {
    font-size: 15px;
  }

  .review-card__date {
    font-size: 12px;
  }

  .review-card__rating {
    font-size: 17px;
  }

  .review-card__text {
    font-size: 14px;
    line-height: 1.6;
    -webkit-line-clamp: 4;
  }

  /* .review-card__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
  } */

  .review-card__source {
    min-height: 32px;
    padding: 0 13px;
    font-size: 11px;
  }

  .review-card__more {
    font-size: 13px;
  }

  .reviews-modal {
    padding: 15px;
  }

  .reviews-modal__dialog {
    max-height: calc(100vh - 30px);
    padding: 24px 20px;
    border-radius: 20px;
  }

  .reviews-modal__top {
    padding-right: 40px;
  }

  .reviews-modal__name {
    font-size: 18px;
  }

  .reviews-modal__rating {
    font-size: 16px;
  }

  .reviews-modal__text {
    font-size: 14px;
    line-height: 1.6;
  }
}



/* Модалка */
/* =========================================
   REVIEW MODAL
========================================= */

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.review-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.review-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(38, 43, 47, 0.45);
  backdrop-filter: blur(1px);
}
/* Окно */
.review-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 660px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 40px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0px 10px 30px rgba(31, 41, 51, 0.1);
  transform: translateY(15px) scale(0.98);
  transition: transform 0.25s ease;
}

.review-modal.is-open .review-modal__dialog {
  transform: translateY(0) scale(1);
}

.review-modal__close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #F4F6F5;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

@media(hover: hover) {
  .review-modal__close:hover {
    background: #eceeee;
  }
}

.review-modal__close:active {
  transform: scale(0.94);
}

.review-modal__close span {
  position: absolute;
  width: 15px;
  height: 3px;
  background: #262B2F;
  border-radius: 3px;
}

.review-modal__close span:first-child {
  transform: rotate(45deg);
}

.review-modal__close span:last-child {
  transform: rotate(-45deg);
}

.review-modal__header {
  padding-right: 50px;
}

.review-modal__title {
  margin: 0 0 24px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.22;
  letter-spacing: -0.5px;
  color: #262B2F;
}

.review-modal__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.56;
  color: #6D7378;
  max-width: 560px;
  margin: 0;
}

.review-modal__doctor {
  margin-top: 24px;
  padding: 16px;
  background: #FFF3E8;
  border-radius: 12px;
}

.review-modal__doctor-label {
  margin-bottom: 4px;
  color: #DF6A0E;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
}

.review-modal__doctor-name {
  margin-bottom: 4px;
  color: #262B2F;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.review-modal__doctor-specialization {
  color: #6D7378;
  font-size: 13px;
  line-height: 1.38;  
}

.review-form {
  margin-top: 24px;
}

.review-form__field {
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.review-form__label {
  display: block;
  margin-bottom: 8px;
  color: #262B2F;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
}

.review-form__input {
  display: block;
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #DDE1E3;
  border-radius: 12px;
  outline: none;
  color: #262B2F;
  background: #fff;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-form__input::placeholder {
  color: #6D7378;
}

@media(hover: hover) {
  .review-form__input:hover {
    border-color: #cbd0d3;
  }
}

.review-form__input:focus {
  border-color: #cbd0d3;
}

.review-rating {
  margin-top: 0;
}

.review-rating__stars {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-rating__star {
  position: relative;
  display: block;
  cursor: pointer;
}

.review-rating__star input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.review-rating__star span {
  display: block;
  color: #6D7378;
  font-size: 27px;
  line-height: 1;
  transition: color 0.15s ease, transform 0.15s ease;
}

.review-rating__star:hover span,
.review-rating__star:has(~ .review-rating__star:hover) span {
  color: #DF6A0E;
}

.review-rating__stars:has(input[value="1"]:checked) .review-rating__star:nth-child(1) span,
.review-rating__stars:has(input[value="2"]:checked) .review-rating__star:nth-child(-n+2) span,
.review-rating__stars:has(input[value="3"]:checked) .review-rating__star:nth-child(-n+3) span,
.review-rating__stars:has(input[value="4"]:checked) .review-rating__star:nth-child(-n+4) span,
.review-rating__stars:has(input[value="5"]:checked) .review-rating__star:nth-child(-n+5) span {
  color: #DF6A0E;
}

.review-form__textarea-wrap {
  position: relative;
}

.review-form__textarea {
  display: block;
  width: 100%;
  height: 100px;
  resize: vertical;
  padding: 16px;
  border: 1px solid #DDE1E3;
  border-radius: 12px;
  outline: none;
  color: #262B2F;
  background: #fff;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.45;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: none;  
}

.review-form__textarea::placeholder {
  color: #6D7378;
}

@media(hover: hover) {
  .review-form__textarea:hover {
    border-color: #cbd0d3;
  }
}

.review-form__textarea:focus {
  border-color: #cbd0d3;
}

.review-form__counter {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: #6D7378;
  font-size: 13px;
  line-height: 1;
}

.review-form__agreement {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 8px;
  row-gap: 6px;
  margin-bottom: 24px;
  cursor: pointer;
}

.review-form__agreement .review-form__checkbox {
  grid-column: 1;
  grid-row: 1;
}

.review-form__agreement .review-form__agreement-text {
  grid-column: 2;
  grid-row: 1;
}

.review-form__agreement .review-form__error {
  grid-column: 2;
  grid-row: 2;

  margin-top: 0;
}

.review-form__agreement input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.review-form__checkbox {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1px solid #DDE1E3;
  border-radius: 4px;
  background: #fff;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.review-form__agreement input:checked + .review-form__checkbox {
  border-color: #DF6A0E;
  background: #F58220;
}

.review-form__agreement input:checked + .review-form__checkbox::after {
  content: "";
  background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.926 15.616C6.926 15.4947 6.90267 15.434 6.856 15.434L6.534 15.588C6.534 15.5227 6.49667 15.476 6.422 15.448L6.31 15.434C6.23533 15.434 6.142 15.4667 6.03 15.532C6.01133 15.4853 5.988 15.4387 5.96 15.392C5.932 15.3453 5.90867 15.3033 5.89 15.266C5.76867 15.0327 5.64733 14.776 5.526 14.496C5.414 14.2067 5.30667 13.9313 5.204 13.67C5.11067 13.4087 5.036 13.2033 4.98 13.054C4.94267 12.9327 4.90067 12.7507 4.854 12.508C4.80733 12.2653 4.76067 11.9573 4.714 11.584C4.81667 11.6493 4.896 11.682 4.952 11.682C5.01733 11.682 5.078 11.584 5.134 11.388C5.162 11.4253 5.21333 11.444 5.288 11.444C5.344 11.444 5.386 11.4253 5.414 11.388L5.638 11.052L5.89 11.136H5.904C5.92267 11.136 5.94133 11.1267 5.96 11.108C5.97867 11.0893 6.00667 11.0707 6.044 11.052C6.11867 11.0053 6.17467 10.982 6.212 10.982L6.254 10.996C6.48733 11.108 6.63667 11.3133 6.702 11.612C6.87 12.3213 7.038 12.676 7.206 12.676C7.374 12.676 7.57 12.4987 7.794 12.144C7.906 11.9667 8.018 11.7613 8.13 11.528C8.25133 11.2947 8.37267 11.0333 8.494 10.744C8.51267 10.856 8.53133 10.912 8.55 10.912C8.59667 10.912 8.676 10.7953 8.788 10.562C8.90933 10.3287 9.10067 10.0067 9.362 9.596C9.51133 9.344 9.698 9.05933 9.922 8.742C10.1553 8.42467 10.4027 8.098 10.664 7.762C10.9253 7.426 11.1773 7.10867 11.42 6.81C11.672 6.51133 11.896 6.25467 12.092 6.04C12.288 5.82533 12.4327 5.68533 12.526 5.62C12.8807 5.37733 13.1607 5.144 13.366 4.92C13.3567 4.98533 13.3427 5.046 13.324 5.102C13.3147 5.14867 13.31 5.18133 13.31 5.2C13.31 5.23733 13.3287 5.256 13.366 5.256L13.758 5.06V5.116C13.758 5.19067 13.7767 5.228 13.814 5.228C13.842 5.228 13.898 5.186 13.982 5.102C14.066 5.018 14.1127 4.95733 14.122 4.92L14.094 5.116L14.57 4.836L14.458 5.088C14.6073 4.98533 14.7147 4.934 14.78 4.934C14.8173 4.934 14.8453 4.95733 14.864 5.004C14.8827 5.04133 14.892 5.07867 14.892 5.116C14.892 5.172 14.8687 5.23733 14.822 5.312C14.7753 5.38667 14.7147 5.47533 14.64 5.578C14.584 5.65267 14.4907 5.76467 14.36 5.914C14.2387 6.054 14.052 6.264 13.8 6.544C13.548 6.81467 13.212 7.19267 12.792 7.678C12.68 7.79933 12.5073 8.014 12.274 8.322C12.0407 8.62067 11.7747 8.97067 11.476 9.372C11.1867 9.764 10.8973 10.1607 10.608 10.562C10.3187 10.9633 10.062 11.3273 9.838 11.654C9.614 11.9713 9.45533 12.2093 9.362 12.368L8.494 13.838C8.30733 14.1553 8.15333 14.4167 8.032 14.622C7.91067 14.818 7.81733 14.9533 7.752 15.028C7.612 15.196 7.458 15.3453 7.29 15.476L7.164 15.406L7.052 15.476L6.926 15.616Z" fill="white"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);  
}

.review-form__agreement-text { 
  font-weight: 400;
  font-size: 16px;
  line-height: 1.56;
  color: #262B2F;  
}

.review-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 26px;
  background-color: #F58220;
  color: #262B2F;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 50px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

@media(hover: hover) {
  .review-form__submit:hover {   
   background-color: #ff9416; 
  }
}

/* =========================================
   VALIDATION
========================================= */
.review-form__error {
  display: none;
  margin-top: 8px;
  color: #DF6A0E;
  font-size: 13px;
  line-height: 1.3;
}

.review-form__field.is-error .review-form__input,
.review-form__field.is-error .review-form__textarea {
  border-color: #DF6A0E;
}

.review-form__field.is-error .review-form__error {
  display: block;
}

.review-rating.is-error .review-form__error {
  display: block;
}

.review-form__agreement.is-error .review-form__error {
  display: block;
}

/* BODY LOCK */
body.modal-open {
  overflow: hidden;
}


/* =========================================
   ADAPTIVE
========================================= */

@media (max-width: 767px) {

  .review-modal {
    align-items: flex-end;
    padding: 0;
  }

  .review-modal__dialog {
    width: 100%;
    max-height: 94vh;
    padding: 28px 20px 24px;
    border-radius: 22px 22px 0 0;
  }

  .review-modal__close {
    top: 25px;
    right: 20px;
    width: 36px;
    height: 36px;
  }

  .review-modal__title {
    font-size: 27px;
  }

  .review-modal__header {
    padding-right: 45px;
  }

  /* .review-modal__doctor-name {
    font-size: 18px;
  } */

  .review-form__submit {
    margin-top: 20px;
  }

  .review-modal__doctor, .review-form {
    margin-top: 20px;
  }

  .review-modal__title, .review-form__field, .review-form__agreement {
    margin-bottom: 20px;
  }
}


/* модалка успешной отправки */
.review-success-modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.review-success-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.review-success-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(38, 43, 47, 0.45);
  backdrop-filter: blur(1px);
}

.review-success-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 600px);
  padding: 40px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(31, 41, 51, 0.1);
  text-align: center;
  transform: translateY(15px) scale(0.98);
  transition: transform 0.25s ease;  
}

.review-success-modal.is-open
.review-success-modal__dialog {
  transform: translateY(0) scale(1);
}

.review-success-modal__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #FFF3E8;
}

.review-success-modal__icon svg {
  width: 30px;
  height: 44px
}

.review-success-modal__title {
  margin: 0 0 24px;
  color: #262B2F;
  font-size: 36px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.review-success-modal__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 26px;
  background-color: #F58220;
  color: #262B2F;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

@media (hover: hover) {
  .review-success-modal__button:hover {
    background-color: #ff9416;
  }
}

.review-success-modal__button:active {
  transform: translateY(1px);
}

/* ADAPTIVE */
@media (max-width: 767px) {

  .review-success-modal {
    padding: 20px;
  }

  .review-success-modal__dialog {
    width: 100%;
    padding: 32px 20px;
    border-radius: 22px;
  }

  .review-success-modal__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .review-success-modal__icon svg {
    width: 24px;
    height: 36px
  }

  .review-success-modal__title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}