
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Roboto, sans-serif;
  }
  
  body {
    background-color: #FFFFFF;
    font-family: "Roboto", sans-serif;
  }
  .text-xl {
    color: #151B29;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
  }
  @media (max-width: 1172px) {
    .text-xl {
      font-size: 20px;
    }
  }

  
  .container {
    max-width: 1172px;
    margin: 0 auto;
    background-color: #FFFFFF;
    position: relative;
  }
  
  
  
  .accordion {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
  }
  @media (min-width: 1172px) {
    .accordion {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 28px;
      align-self: stretch;
    }
  }
  
  .faq-section {
    width: 100%;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  @media (min-width: 1172px) {
    .faq-section {
      gap: 28px;
    }
  }
  
  .faq-item {
    border-bottom: 1px solid #ccc;
  }
  
  .faq-item:last-child {
    border-bottom: none;
  }
  
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding-bottom: 20px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #151B29;
    font-family: Roboto, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 26px */
  }
  @media (min-width: 1172px) {
    .faq-question {
      font-size: 25px;
      font-style: normal;
      font-weight: 700;
      line-height: 130%;
    }
  }
  
  .faq-answer {
    display: none;
    padding-bottom: 20px;
    margin-top: 4px;
    color: #4E4E56;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
  
  .plus-minus {
    width: 28px;
    height: 28px;
  }
  
  .container-images {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    justify-content: center;
    padding: 0 24px;
    position: relative;
    overflow: hidden;
  }
  @media (min-width: 1172px) {
    .container-images {
      flex-direction: row;
      align-items: flex-start;
      max-height: 432px;
      padding: 0;
    }
  }
  
  .page-text {
    color: #151B29;
    text-align: center;
    align-self: stretch;
    font-family: Roboto, sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 28px;
  }
  @media (min-width: 1172px) {
    .page-text {
      font-size: 39px;
      margin-bottom: 52px;
    }
  }
  
  .main-image-container {
    display: flex;
    height: 338px;
    padding: 0 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  @media (min-width: 1172px) {
    .main-image-container {
      height: 432px;
    }
  }
  
  .main-image-container img {
    max-width: 327px;
    height: 338px;
    border-radius: 8px;
    border: 1px solid var(--Grey-700, #E0E0E0);
  }
  @media (min-width: 1172px) {
    .main-image-container img {
      max-width: 424px;
      height: 432px;
    }
  }
  
  .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    padding: 8px;
    border-radius: 100px;
    background: #FFFFFF;
    box-shadow: -4px -4px 7px rgba(0, 0, 0, 0.02), 4px 4px 7px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 10;
  }
  
  .nav-button.left {
    left: 10px;
  }
  
  .nav-button.right {
    right: 10px;
  }
  
  .product-details {
    margin: auto;
    padding-left: 8px;
  }
  
  .text-center {
    text-align: center;
  }
  
  .carousel-frame {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    overflow: hidden; /* Ensure the frame does not overflow */
  }
  @media (min-width: 1172px) {
    .carousel-frame {
      margin: auto;
    }
  }
  
  .carousel-track {
    display: flex;
    flex-direction: row;
    gap: 12px;
    transition: transform 0.5s ease;
  }
  @media (min-width: 1172px) {
    .carousel-track {
      flex-direction: column;
    }
  }
  
  .carousel-track img.active {
    opacity: 1;
    border: 1px solid black;
  }
  
  .carousel-frame img {
    cursor: pointer;
    transition: border 0.3s;
    border-radius: 8px;
    min-width: 128px;
    height: 116px;
    border: 1px solid #E0E0E0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  @media (min-width: 1172px) {
    .carousel-frame img {
      width: 128px;
      height: 116px;
    }
  }
  
  .review-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 44px;
    align-self: stretch;
  }
  @media (max-width: 1172px) {
    .review-container {
      padding: 0 24px;
      gap: 32px;
    }
  }
  
  .list-overview {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    position: relative;
  }
  
  .review-frame {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    align-self: stretch;
  }
  
  .effectiveness {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    flex: 1 1 0;
  }
  .effectiveness__title {
    align-self: stretch;
    color: #151B29;
    font-size: 25px;
    font-family: Roboto, sans-serif;
    font-weight: 700;
    line-height: 32.5px;
    word-wrap: break-word;
  }
  @media (max-width: 1172px) {
    .effectiveness__title {
      font-size: 20px;
    }
  }
  .effectiveness__ratings {
    align-self: stretch;
    height: 167px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
  }
  
  .rating {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    align-self: stretch;
  }
  .rating__label {
    flex: 1 1 0;
    height: 27px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    color: #4E4E56;
    font-size: 18px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    line-height: 27px;
    word-wrap: break-word;
  }
  .rating__bar-container {
    width: 269px;
    height: 12px;
    position: relative;
  }
  .rating__bar-container > div {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .rating__bar-background {
    background: #E0E0E0;
  }
  .rating__bar-foreground {
    background: #FFC107;
  }
  .rating__count {
    color: #151B29;
    font-size: 18px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    line-height: 27px;
    word-wrap: break-word;
  }
  @media (max-width: 1172px) {
    .rating__count {
      font-size: 16px;
    }
  }
  
  .rating-summary {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
  }
  @media (min-width: 1172px) {
    .rating-summary {
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      gap: 24px;
    }
  }
  .rating-summary__score {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
  @media (min-width: 1172px) {
    .rating-summary__score {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 12px;
    }
  }
  .rating-summary__score-value {
    color: #151B29;
    font-size: 61px;
    font-family: Roboto, sans-serif;
    font-weight: 700;
    line-height: 79.3px;
    word-wrap: break-word;
  }
  @media (max-width: 1172px) {
    .rating-summary__score-value {
      font-size: 49px;
    }
  }
  .rating-summary__score__details {
    width: 162px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
  }
  .rating-summary__score__details__stars {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .rating-summary__score__details__stars__star {
    width: 32px;
    height: 32px;
    position: relative;
  }
  .rating-summary__score__details__label {
    color: #4E4E56;
    font-size: 18px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    line-height: 150%;
  }
  .rating-summary .rating-summary__label {
    color: #4E4E56;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
  .rating-summary__button {
    padding: 12px 28px;
    background: #FFD707;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
  }
  @media (max-width: 1172px) {
    .rating-summary__button {
      width: 100%;
    }
  }
  .rating-summary__button-text {
    color: #141414;
    font-size: 18px;
    font-family: Roboto, sans-serif;
    font-weight: 700;
    line-height: 27px;
    word-wrap: break-word;
  }
  
  .list-of-reviews {
    flex: 1;
    position: relative;
    line-height: 130%;
  }
  @media (max-width: 1172px) {
    .list-of-reviews {
      font-size: 25px;
    }
  }
  
  .sort-by {
    position: relative;
    line-height: 150%;
  }
  @media (max-width: 1172px) {
    .sort-by {
      font-size: 16px;
    }
  }
  
  .icon-size-24x24 {
    width: 24px;
    position: relative;
    height: 24px;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .icon-size-24x24-parent {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
  }
  
  .frame-parent {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    color: #151b29;
  }
  
  .filters {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 18px;
    color: #4e4e56;
  }
  
  .list-of-reviews-9-parent {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    text-align: left;
    font-size: 31px;
    color: #151b29;
  }
  @media (max-width: 1172px) {
    .list-of-reviews-9-parent {
      flex-direction: column;
      gap: 12px;
      justify-content: start;
      align-items: start;
    }
  }
  
  .show-more-btn {
    color: #151B29;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    border: none;
    background: transparent;
    margin: 0 auto;
  }
  @media (max-width: 1172px) {
    .show-more-btn {
      font-size: 16px;
    }
  }
  
  .button-back {
    display: flex;
    width: 52px;
    height: 52px;
    padding: 14px;
    justify-content: center;
    align-items: center;
    border-radius: 1000px;
    background: var(--Colors-for-version1-Black-color, #0F0F0F);
    box-shadow: 4px 4px 4px 0 rgba(255, 193, 7, 0.04);
    border: none;
    z-index: 10;
    cursor: pointer;
  }
  @media (min-width: 1172px) {
    .button-back {
      display: flex;
      width: 60px;
      height: 60px;
      padding: 14px;
      justify-content: center;
      align-items: center;
    }
  }
  
  .back-btn-container {
    position: sticky;
    bottom: 32px;
    width: 100%;
    display: flex;
    justify-content: end;
    margin: 0 auto;
  }
  @media (max-width: 1172px) {
    .back-btn-container {
      padding: 0 24px;
      margin: 0;
    }
  }
  
  .button-back.show {
    display: none;
  }
  
  .icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  @media (min-width: 1172px) {
    .icon {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
    }
  }
  
  .card-frame-main {
    display: flex;
    padding: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    border-radius: 12px;
    border: 1.5px solid #151B29;
  }
  
  .card-frame-usual {
    display: flex;
    padding: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
  }
  
  .card-frame-usual {
    display: none;
  }
  
  .card-frame-usual.visible {
    display: block;
  }
  
  .card-gap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
  }
  @media (max-width: 1172px) {
    .card-gap {
      gap: 28px;
    }
  }
  
  .card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
  }
  
  .card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
  }
  
  .card-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
  }
  @media (max-width: 1172px) {
    .card-header-content {
      flex-direction: column-reverse;
      gap: 16px;
      align-items: start;
      justify-content: start;
    }
  }
  
  .card-status {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .card-header-text {
    color: var(--Colors-used-in-all-versions-Headline-text-color, #151B29);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
  
  .card-user {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
  }
  
  .card-user-rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  @media (max-width: 1172px) {
    .card-user-rating {
      flex-direction: column-reverse;
      align-items: start;
      gap: 8px;
    }
  }
  
  .card-user-name {
    color: var(--Colors-used-in-all-versions-Headline-text-color, #151B29);
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 32.5px */
    text-transform: capitalize;
  }
  @media (max-width: 1172px) {
    .card-user-name {
      font-size: 20px;
    }
  }
  
  .user-star-review {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  .star-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .user-info-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  @media (max-width: 1172px) {
    .user-info-container {
      flex-direction: column;
      align-items: start;
    }
  }
  
  .user-info-container-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  
  @media (max-width: 1172px) {
    #line {
      display: none;
    }
  }
  
  .info-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
  
  .info-box-text {
    color: #4E4E56;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
  @media (max-width: 1172px) {
    .info-box-text {
      font-size: 16px;
    }
  }
  
  .info-box-label {
    display: flex;
    padding: 4px 16px;
    align-items: flex-start;
    gap: 10px;
    border-radius: 40px;
    background: #D6E5FB;
  }
  
  .label-text {
    color: #151B29;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
  }
  
  .line {
    width: 1px;
    height: 20px;
    background: #E0E0E0;
  }
  
  .card-content-gap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
  }
  
  .card-review-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
  }
  
  .review-header-box {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .review-text {
    color: #151B29;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
  }
  @media (max-width: 1172px) {
    .review-text {
      font-size: 18px;
    }
  }
  
  .review-category-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  @media (max-width: 1172px) {
    .review-category-container {
      flex-direction: column;
      align-items: start;
      justify-content: center;
      gap: 8px;
    }
  }
  
  .category-label {
    display: flex;
    padding: 4px 12px;
    align-items: center;
    gap: 8px;
    border-radius: 40px;
    background: #F5F5F5;
  }
  
  .category-label-star-box {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  .review-img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
  }
  
  .feedback-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
  }
  
  .feedback-action {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  
  .feedback-action-stats {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .report-text {
    color: #F88E16;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
  }
  @media (max-width: 1172px) {
    .report-text {
      font-size: 16px;
    }
  }
  
  .img-container {
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }
  
  .custom-checkbox input {
    display: none;
  }
  
  .custom-checkbox {
    display: inline-block;
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    user-select: none;
    margin: 0;
    line-height: 24px;
    align-items: center;
  }
  @media (max-width: 1172px) {
    .custom-checkbox {
      font-size: 16px;
    }
  }
  
  .custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    border: 2px solid #151B29;
    border-radius: 5px;
    transition: border-color 0.3s ease;
  }
  
  .custom-checkbox .icon {
    position: absolute;
    width: 24px;
    height: 24px;
    fill: none;
    stroke: none;
    display: none;
  }
  
  .custom-checkbox input:checked + .checkmark {
    border-color: #FFC107;
    display: inline-block;
  }
  
  .custom-checkbox input:checked + .checkmark .icon {
    fill: white;
    stroke: currentColor;
    display: inline-block;
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }
  
  .modal-content {
    background-color: #FFFFFF;
    position: relative;
    display: flex;
    width: 860px;
    padding: 40px;
    flex-direction: column;
    flex-shrink: 0;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: auto;
  }
  @media (max-width: 1172px) {
    .modal-content {
      display: flex;
      width: 327px;
      padding: 24px;
    }
  }
  
  .modal-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: stretch;
  }
  
  .modal-content-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    align-self: stretch;
  }
  
  .modal-input-frame {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
  }
  
  .modal-star-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  
  .modal-star-content {
    display: flex;
    justify-content: start;
    gap: 16px;
  }
  @media (max-width: 1172px) {
    .modal-star-content {
      justify-content: space-between;
      gap: 0;
    }
  }
  
  .review-modal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
  }
  
  .review-modal-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
  }
  
  .star-frame {
    display: flex;
    justify-content: end;
    align-items: end;
  }
  
  .star-effectiveness .star .star-satisfaction {
    cursor: pointer;
  }
  
  .star-text-container {
    display: flex;
    width: 108px;
    justify-content: start;
    align-items: center;
  }
  @media (max-width: 1172px) {
    .star-text-container {
      width: auto;
    }
  }
  
  .input-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    position: relative;
  }
  
  .input-space {
    display: flex;
    justify-content: space-between;
    height: 48px;
    padding: 12px 20px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
  }
  
  .text-area-block {
    width: 100%;
    padding: 12px 20px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #C7C7C7;
    outline: none;
    box-shadow: none;
    position: relative;
  }
  
  .text-area-block::placeholder {
    color: #C7C7C7;
  }
  
  .text-area-block:focus::placeholder {
    color: transparent;
  }
  
  .text-area-block:focus {
    border-color: #66AFE9;
  }
  
  .rev-upload {
    display: flex;
    padding: 12px 28px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 40px;
    border: 1px solid #C7C7C7;
    background-color: transparent;
    cursor: pointer;
  }
  
  .rev-upload.label input[type=file] {
    display: none;
  }
  
  .preview-container {
    display: inline-block;
    width: 88px;
    height: 88px;
    position: relative;
    border-radius: 4px;
  }
  
  .preview-image {
    width: 88px;
    height: 88px;
    display: block;
    border-radius: 4px;
    border: 1px solid var(--Border-color, #E7EAF3);
  }
  
  .remove-button {
    position: absolute;
    top: -10;
    right: -10;
    display: flex;
    width: 24px;
    height: 24px;
    padding: 4px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 100%;
    border: 1px solid var(--Border-color, #E7EAF3);
    background: var(--Background-color, #FFF);
    cursor: pointer;
  }
  
  .btn-modal-close {
    border: none;
    position: absolute;
    top: 40px;
    right: 40px;
    background: transparent;
  }
  @media (max-width: 1172px) {
    .btn-modal-close {
      top: 24px;
      right: 24px;
    }
  }
  
  .modal-content {
    background-color: #FFFFFF;
    position: relative;
    display: flex;
    width: 860px;
    padding: 40px;
    flex-direction: column;
    flex-shrink: 0;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  @media (max-width: 1172px) {
    .modal-content {
      display: flex;
      width: 327px;
      padding: 24px;
    }
  }
  
  .modal-content-sm {
    position: relative;
    display: flex;
    width: 614px;
    padding: 28px;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--Colors-used-in-all-versions-White, #FFF);
  }
  @media (max-width: 1172px) {
    .modal-content-sm {
      width: 327px;
      padding: 24px;
    }
  }
  
  .modal-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: stretch;
  }
  
  .modal-content-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    align-self: stretch;
  }
  
  .modal-input-frame {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
  }
  
  .modal-star-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  
  .modal-star-content {
    display: flex;
    justify-content: start;
    gap: 16px;
  }
  @media (max-width: 1172px) {
    .modal-star-content {
      justify-content: space-between;
      gap: 0;
    }
  }
  
  .review-modal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
  }
  
  .review-modal-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
  }
  
  .star-frame {
    display: flex;
    justify-content: end;
    align-items: end;
  }
  
  .star-text-container {
    display: flex;
    width: 108px;
    justify-content: start;
    align-items: center;
  }
  @media (max-width: 1172px) {
    .star-text-container {
      width: auto;
    }
  }
  
  .input-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }
  
  .input-space {
    display: flex;
    justify-content: space-between;
    height: 48px;
    padding: 12px 20px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
  }
  
  .text-area-block {
    width: 100%;
    padding: 12px 20px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
  }
  
  .text-area-block::placeholder {
    color: #C7C7C7;
  }
  
  .text-area-block:focus::placeholder {
    color: transparent;
  }
  
  .rev-upload {
    display: inline-flex;
    padding: 12px 28px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 40px;
    border: 1px solid #C7C7C7;
    background-color: transparent;
    cursor: pointer;
  }
  @media (max-width: 1172px) {
    .rev-upload {
      width: 100%;
    }
  }
  
  .rev-upload input[type=file] {
    display: none;
  }
  
  .preview-container {
    display: inline-block;
    width: 88px;
    height: 88px;
    position: relative;
    border-radius: 4px;
    padding-top: 20px;
    margin-bottom: 20px;
  }
  
  .preview-image {
    width: 88px;
    height: 88px;
    display: block;
    border-radius: 4px;
    border: 1px solid var(--Border-color, #E7EAF3);
  }
  
  .remove-button {
    position: absolute;
    top: 6px;
    right: -6px;
    display: flex;
    width: 32px;
    height: 32px;
    padding: 6px;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid #E7EAF3;
    background: #FFF;
    cursor: pointer;
  }
  
  .icon-24x24 {
    width: 24px;
    height: 24px;
  }
  @media (max-width: 1172px) {
    .icon-24x24 {
      height: 20px;
      width: 20px;
    }
  }
  
  .btn-modal-close {
    border: none;
    position: absolute;
    top: 40px;
    right: 40px;
    background: transparent;
  }
  @media (max-width: 1172px) {
    .btn-modal-close {
      top: 24px;
      right: 24px;
    }
  }
  
  .modal-report-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
  }
  .modal-report-text p {
    text-align: center;
  }
  
  .modal-report-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  @media (max-width: 1172px) {
    .modal-report-btn {
      flex-direction: column-reverse;
      width: 100%;
      gap: 12px;
    }
  }
  
  .btn-transparent {
    display: flex;
    padding: 12px 28px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 40px;
    background-color: transparent;
    border: 1px solid #151B29;
  }
  @media (max-width: 1172px) {
    .btn-transparent {
      width: 100%;
    }
  }
  
  .radio-input-frame {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 24px;
    width: 100%;
    border: none;
    padding: 0;
  }
  
  .radio-gap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  
  .radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .visually-hidden {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
  }
  
  .custom-radio {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border: 2px solid #151B29;
    border-radius: 50%;
    position: relative;
    transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  }
  
  .custom-radio::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease-in-out;
  }
  
  input[type=radio]:checked + .custom-radio {
    border-color: #FFC107;
    background-color: #FFC107;
  }
  
  input[type=radio]:checked + .custom-radio::after {
    background-color: #FFFFFF;
  }
  
  .selector {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    gap: 24px;
  }
  @media (min-width: 1200px) {
    .selector {
      display: flex;
      flex-direction: row;
      width: 100%;
      gap: 16px;
    }
  }
  
  .dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .big-d {
    flex-direction: column;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 12px;
    width: 100%;
    position: relative;
  }
  
  /* Containerul pentru select box */
  .select-box {
    background-color: #FFFFFF;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    padding: 12px 20px;
    gap: 8px;
    align-self: stretch;
    border: 1px solid #E0E0E0;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    list-style-type: none;
    background-color: #f9f9f9;
    width: 100%;
    z-index: 100;
    top: calc(100% + 10px);
    left: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 4px;
    background: var(--Background-color, #FFF);
    box-shadow: 8px -10px 14px 0px rgba(62, 62, 62, 0.03), -8px 8px 14px 0px rgba(62, 62, 62, 0.03);
  }
  
  .dropdown-content li {
    border-radius: 4px;
    text-decoration: none;
    padding: 10px 20px;
  }
  
  .dropdown-content.open {
    display: block;
  }
  
  .dropdown-option {
    position: relative;
  }
  
  .dropdown-icon {
    transition: transform 0.3s ease-in-out;
  }
  
  .dropdown-content .dropdown-option:hover,
  .dropdown-content .dropdown-option.selected {
    background-color: #EEF4FD;
  }
  
  .dropdown-content {
    display: none;
  }
  
  .dropdown-content.open {
    display: flex;
    flex-direction: column;
  }
  
  .dropdown-icon {
    transition: transform 0.3s ease;
  }
  
  .dropdown-icon.rotated {
    transform: rotate(180deg);
  }
  
  .error-message {
    display: none;
    color: #DF0000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
  
  .error {
    display: block;
  }
  
  .input-validation {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .border-red {
    border: 1px solid red;
  }
  
  /*# sourceMappingURL=theme.css.map */
  