/** Shopify CDN: Minification failed

Line 810:5 Unexpected "/"

**/
.quiz {
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
  }

  .quiz__container {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .quiz__root {
    position: relative;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .quiz__slide {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .quiz-header {
    padding: 21px 20px 6px;
    margin-bottom: 8px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
  }

  .quiz-header--empty {
    .quiz-header__steps,
    .quiz__progress {
      opacity: 0;
      pointer-events: none;
    }
  }

  .quiz-header__body {
    display: grid;
    grid-template-columns: 1fr 72px 1fr;
    align-items: center;
    padding-bottom: 21px;
  }

  .quiz-header__back {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #1d1d1d;
    font-size: 14px;
  }

  .quiz-header__steps {
    color: rgba(29, 29, 29, 0.7);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
    transition: all 0.2s ease-in-out;
  }

  .quiz-header__logo {
    width: 72px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .quiz__progress {
    appearance: none;
    display: block;
    width: 100%;
    height: 3px;
    transition: all 0.2s ease-in-out;

    &::-webkit-progress-bar {
      background-color: #e8e8e8;
      border-radius: 100px;
    }

    &::-webkit-progress-value {
      background-color: #219200;
      border-radius: 100px;
    }

    &::-moz-progress-bar {
      background-color: #219200;
      border-radius: 100px;
    }
  }

  .quiz__offer-step {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px 32px;

    .product-icons {
      padding: 0 10px;
    }
  }

  .quiz__offer-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
  }

  .quiz__content {
    padding: 0 20px;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;

    &:not(:has(.quiz__actions)) {
      padding-bottom: 24px;
    }
  }

  .quiz__section {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .quiz__promo {
    background-color: #f6f9b2;
    border-radius: 4px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }

  .quiz__promo-text {
    font-size: 16px;
    line-height: 20px;
    color: #1d1d1d;
    margin: 0;
    text-align: center;
  }

  .quiz__title {
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    color: #1d1d1d;
    margin-bottom: 24px;

    &:has(+ .quiz__subtitle),
    &:has(+ .quiz-rating) {
      margin-bottom: 14px;
    }
  }

  .quiz__title-highlight {
    background-color: #f6f9b2;
  }

  .quiz__subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1d1d1d;
    margin: 0 0 24px;
  }

  .quiz__options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .quiz__option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid #1d1d1d;
    border-radius: 1000px;
    padding: 13px 24px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #1d1d1d;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-align: left;
    width: fit-content;

    &:has(.quiz__input:checked) {
      border-color: #ff7f35;
      background-color: #ff7f350d;
      color: #ff7f35;
    }
  }

  .quiz__option:hover {
    border-color: #ff7f35;
    background-color: #ff7f350d;
  }

  .quiz__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .quiz__option--selected {
    background-color: #f6f9b2;
  }

  .quiz__checkbox {
    width: 20px;
    height: 20px;
    border: 1.5px solid #1d1d1d;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: white;
    transition: background-color 0.15s ease, border-color 0.15s ease;
  }

  .quiz__checkbox--checked {
    background-color: rgba(33, 146, 0, 0.1);
    border-color: #219200;
  }

  .quiz__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 20px;
    margin-top: auto;
    position: sticky;
    bottom: 0;
    background: #fff;
  }

  .quiz__default-btn {
    background: transparent;
    border: none;
    color: #1d1d1d;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    padding: 14px 24px;
    cursor: pointer;
  }

  .quiz__continue-btn {
    position: relative;
    display: block;
    width: 100%;
    background-color: #ff7f35;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    padding: 14px 24px;
    border: none;
    border-radius: 1000px;
    cursor: pointer;
    text-align: center;
    transition: opacity 0.15s ease;
  }

  .quiz__continue-btn:hover {
    opacity: 0.85;
  }

  .quiz__disclaimer {
    margin-top: auto;

    & + .quiz__actions {
      margin-top: 0;
    }
  }

  .quiz__disclaimer p {
    font-size: 10px;
    line-height: 14px;
    color: rgba(29, 29, 29, 0.3);
    margin: 0;
    text-align: center;

    a {
      color: inherit;

      &:hover {
        color: inherit !important;
        text-decoration: underline !important;
      }
    }
  }

  .quiz__product-card {
    background-color: rgba(255, 230, 69, 0.1);
    border-radius: 20px;
    padding: 14px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
    margin-bottom: 24px;
  }

  .quiz__product-image {
    width: 100%;
  }

  .quiz__product-img {
    width: 100%;
    height: auto;
    display: block;
  }

  .quiz__product-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    width: 100%;
    padding: 0 20px;
  }

  .quiz__feature {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    width: 100%;
  }

  .quiz__feature-icon {
    display: flex;
    align-items: center;
    padding-top: 4px;
    flex-shrink: 0;
  }

  .quiz__icon-wrapper {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background: #21920033;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .quiz__feature-text {
    flex: 1;
  }

  .quiz__feature-text p {
    font-size: 16px;
    line-height: 22px;
    color: #1d1d1d;
    margin: 0;
  }

  .quiz-education__benefits {
    background: rgba(255, 230, 69, 0.1);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    width: 100%;
    margin-bottom: 24px;
  }

  .quiz-education__benefit {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .quiz-education__benefit-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .quiz-education__benefit-title {
    flex: 1;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    color: #1d1d1d;
  }

  .quiz-education__benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-left: 5px;
  }

  .quiz-education__benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .quiz-education__benefit-desc {
    font-size: 16px;
    line-height: 24px;
    color: #1d1d1d;
    margin: 0;
  }

  .quiz-education__benefit-divider {
    background: #d9d9d9;
    height: 1px;
    width: 100%;
  }

  .quiz-education__proof-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }

  .quiz-education__proof-card {
    background: rgba(255, 230, 69, 0.1);
    border-radius: 10px;
    padding: 20px;
    color: #1d1d1d;
  }

  .quiz-education__proof-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;

    svg {
      width: 100%;
      height: 100%;
    }
  }

  .quiz-education__proof-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 4px;
  }

  .quiz-education__proof-desc {
    font-size: 16px;
    line-height: 24px;
  }

  .quiz-comparison {
    border-radius: 20px;
    border: 1px solid #0000001a;
    background-color: #ffe6451a;
    padding: 14px 20px 4px;
    margin-bottom: 24px;
  }

  .quiz-comparison__table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 20px;
  }

  .quiz-comparison__table thead th {
    text-align: center;
    font-weight: 700;
    font-size: 10px;
    line-height: 12px;
    color: #1d1d1d;

    svg {
      margin: 0 auto;
      display: inline-block;
    }
  }

  .quiz-comparison__table tbody tr {
    border-bottom: 1px solid #f1f1f1;
  }

  .quiz-comparison__table tbody tr:last-child {
    border-bottom: none;
  }

  .quiz-comparison__feature {
    color: #1d1d1d;
    font-size: 14px;
    line-height: 20px;
  }

  .quiz-comparison__value {
    text-align: center;
  }

  .quiz-comparison__table tbody td {
    padding: 12px 0;
    vertical-align: middle;
  }

  .quiz-comparison__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #1d1d1d;
  }

  .quiz-comparison__check--yes {
    background: rgba(33, 146, 0, 0.2);
  }

  .quiz-comparison__check--no {
    background: rgba(237, 0, 6, 0.2);
  }

  .quiz-comparison__partial {
    font-size: 11px;
    color: rgba(29, 29, 29, 0.5);
  }

  .quiz-timeline {
    background-color: rgba(255, 230, 69, 0.1);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    margin-bottom: 24px;
  }

  .quiz-timeline__item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
  }

  .quiz-timeline__icon-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    align-self: stretch;
    flex-shrink: 0;
  }

  .quiz-timeline__icon-wrapper {
    border: 1px solid #219200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 20px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
  }

  .quiz-timeline__line {
    background-color: #219200;
    flex: 1;
    min-height: 1px;
    min-width: 1px;
    width: 1px;
  }

  .quiz-timeline__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding: 5px 0;
  }

  .quiz-timeline__badge {
    background-color: rgba(33, 146, 0, 0.1);
    border: 1px solid #219200;
    padding: 4px 12px;
    border-radius: 1000px;
  }

  .quiz-timeline__badge span {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #219200;
    white-space: nowrap;
  }

  .quiz-timeline__description {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #1d1d1d;
  }

  .quiz-timeline__description p {
    margin: 0;
  }

  .quiz-timeline__disclaimer {
    font-size: 11px;
    line-height: 16px;
    color: rgba(29, 29, 29, 0.4);
    margin: 0 0 24px;
    text-align: center;
  }

  .quiz-reviews {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
  }

  .quiz-reviews__card {
    background: rgba(255, 230, 69, 0.1);
    border-radius: 20px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .quiz-reviews__stars {
    width: 90px;
    height: 18px;
    flex-shrink: 0;
  }

  .quiz-reviews__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: #1d1d1d;
    margin: 0;
  }

  .quiz-reviews__author {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.6;
    color: #1d1d1d;
    margin: 0;
  }

  .quiz-bonuses {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    margin-bottom: 10px;
  }

  .quiz-bonuses__discount {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .quiz-bonuses__discount img {
    width: 100%;
    height: auto;
    display: block;
  }

  .quiz-bonuses__discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f6f9b2;
    border-radius: 4px;
    padding: 0 6px;
    font-weight: 600;
    font-size: 14px;
    color: #1d1d1d;
    line-height: 30px;
    white-space: nowrap;
  }

  .quiz-bonuses__items {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .quiz-bonuses__card {
    padding: 8px 14px;
    border-radius: 10px;
    border: 0 solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
  }

  .quiz-bonuses__card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .quiz-bonuses__item-info {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .quiz-bonuses__icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }

  .quiz-bonuses__product-name {
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: #1d1d1d;
  }

  .quiz-bonuses__product-type {
    font-size: 14px;
    line-height: 20px;
    color: rgba(29, 29, 29, 0.3);
    margin-top: 4px;
  }

  .quiz-bonuses__price {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #219200;
  }

  .quiz-offer__packs {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
  }

  .quiz-offer__packs .option-card {
    flex: 1;
    text-align: center;
  }

  .quiz-offer__buy-btn {
    display: block;
    text-decoration: none;
    margin-bottom: 0;
  }

  .iti {
    width: 100%;
  }

  .iti__flag-container {
    padding: 0 4px;
  }

  .quiz-email__input--phone {
    padding-left: 52px !important;
  } */

  .quiz-thankyou {
    align-items: center;
    text-align: center;
    padding-top: 40px;
  }

  .quiz-thankyou__icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .quiz-home {
    padding: 0 20px 40px;

    .quiz-rating {
      margin-bottom: 8px;
    }
  }

  .quiz-home__title {
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    color: #1d1d1d;
    text-align: center;
    margin-bottom: 24px;

    &:has(+ .quiz__subtitle) {
      margin-bottom: 14px;
    }
  }

  .quiz-home__disclaimer {
    color: rgba(29, 29, 29, 0.3);
    text-align: center;
    font-size: 12px;
    line-height: 22px;
  }

  .quiz-home__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }

  .quiz-home__card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease-in-out;
    width: 100%;

    &:hover {
      background-color: #ff7f350d;
      border-color: #ff7f35;

      .quiz-home__card-arrow {
        path {
          fill: #ff7f35;
        }
      }
    }
  }

  .quiz-home__card-icon {
    width: 40px;
    height: 40px;
  }

  .quiz-home__card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .quiz-home__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .quiz-home__card-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    color: #1d1d1d;
  }

  .quiz-home__card-desc {
    font-size: 14px;
    line-height: 22px;
    color: rgba(29, 29, 29, 0.7);
  }

  .quiz-home__card-arrow {
    width: 26px;
    height: 26px;

    path {
      transition: all 0.2s ease-in-out;
    }
  }

  .quiz-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
  }

  .quiz-rating__text {
    color: #1d1d1d;
    font-size: 14px;
    line-height: 24px;
  }

  .quiz-rating__stars {
    width: 90px;
    height: 18px;

    svg {
      width: 100%;
      height: 100%;
    }
  }

  .quiz-rating__dot {
    width: 3px;
    height: 3px;
    border-radius: 999px;
    background-color: #1d1d1d;
  }

  .quiz-icons__wrapper {
    margin-top: 14px;
  }
  .quiz-icons {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
  }

  .quiz-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    line-height: 15px;

    div {
      flex: 1;
    }
  }

  .quiz-review {
    display: grid;
    grid-template-columns: 1fr 85px;
    gap: 20px;
    border-radius: 6px;
    border: 1px solid #d4d4d4;
    padding: 14px;
    margin: 24px 0;
  }

  .quiz-review__header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
  }

  .quiz-review__body {
    display: flex;
    flex-direction: column;
  }

  .quiz-review__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
  }

  .quiz-review__desc {
    color: #1d1d1d;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 18px;
  }

  .quiz-review__author {
    display: grid;
    grid-template-columns: 23px 1fr;
    align-items: center;
    gap: 6px;
    margin-top: auto;
  }

  .quiz-review__author-img {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
  }

  .quiz-review__author-name {
    color: #1d1d1d;
    font-size: 13px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 2px;
  }

  .quiz-review__author-country {
    color: #808080;
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;
  }

  .quiz-review__img,
  .quiz-review__video {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
  }