.vsl-hidden {
    display: none !important;
}

.offer-price-highlight {
    color: #e00000;
    font-size: 1.4em;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

#order:not(.vsl-hidden) {
    display: block;
}

.vsl-player {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    margin: 0 auto 30px;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.vsl-player__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    cursor: pointer;
}

.vsl-player__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 18px;
    border: 0;
    background: rgba(0, 0, 0, 0.28);
    cursor: pointer;
}

.vsl-player__overlay[hidden] {
    display: none;
}

.vsl-player__prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(520px, 92%);
    padding: 18px 16px 16px;
    color: #fff;
    text-align: center;
    background: rgb(250, 48, 48);
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 7px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
    animation: vsl-pulse 1.35s ease-in-out infinite;
}

.vsl-player__title,
.vsl-player__listen {
    color: #fff;
    font-size: clamp(18px, 3.2vw, 24px);
    font-weight: 800;
    line-height: 1.2;
}

.vsl-player__sound-icon {
    width: 88px;
    height: 68px;
    margin: 8px 0;
}

.vsl-player__sound-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
    fill: #fff;
}

.vsl-player__sound-wave {
    fill: none;
    stroke: #fff;
    stroke-width: 4;
    stroke-linecap: round;
    animation: vsl-wave 1.8s infinite;
}

.vsl-player__sound-wave--two {
    animation-delay: 0.2s;
}

.vsl-player__sound-wave--three {
    animation-delay: 0.4s;
}

.vsl-player__error {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 3;
    padding: 10px 12px;
    color: #fff;
    text-align: center;
    background: rgba(174, 0, 0, 0.92);
    border-radius: 5px;
}

.vsl-order-cta {
    display: flex;
    justify-content: center;
    margin: -10px auto 32px;
}

.vsl-order-cta__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(100%, 460px);
    min-height: 70px;
    padding: 12px 24px;
    color: #fff;
    font-family: inherit;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #2876e5, #1559bd);
    box-shadow: 0 8px 20px rgba(21, 89, 189, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vsl-order-cta__button span {
    color: #fff;
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 800;
    line-height: 1.2;
}

.vsl-order-cta__button small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}

.vsl-order-cta__button:hover,
.vsl-order-cta__button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 11px 25px rgba(21, 89, 189, 0.38);
}

.vsl-order-cta__button:active {
    transform: translateY(0);
}

body.exit-recovery-open {
    overflow: hidden;
}

.exit-recovery__notice {
    display: none;
}

.section-form.exit-recovery-active {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: none;
    padding: max(18px, env(safe-area-inset-top)) 14px max(18px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(10, 17, 29, 0.94);
}

.section-form.exit-recovery-active .exit-recovery__notice {
    display: block;
    width: min(100%, 640px);
    padding: 22px 20px 18px;
    color: #111;
    text-align: center;
    background: #fff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

.exit-recovery__notice h2 {
    margin: 0 0 10px;
    color: #b42318;
    font-size: clamp(24px, 5vw, 34px);
    line-height: 1.2;
}

.exit-recovery__notice p {
    margin: 0;
    color: #222;
    font-size: clamp(17px, 3.5vw, 21px);
    font-weight: 700;
    line-height: 1.55;
}

.exit-recovery__notice button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 16px;
    padding: 9px 18px;
    color: #1559bd;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #b9cdf0;
    border-radius: 9px;
    background: #eef5ff;
    cursor: pointer;
}

.section-form.exit-recovery-active .div-section-form {
    width: min(100%, 640px);
    margin: 0 auto 20px;
    padding: 10px 14px 16px;
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

.section-form.exit-recovery-active .formFb {
    margin: 0 auto;
}

@keyframes vsl-pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.035);
    }
}

@keyframes vsl-wave {
    0%,
    100% {
        opacity: 0.25;
    }

    50% {
        opacity: 1;
    }
}

@media (max-width: 500px) {
    .vsl-player {
        width: calc(100% + 40px);
        margin-right: -20px;
        margin-left: -20px;
        border-radius: 0;
    }

    .vsl-player__overlay {
        padding: 10px;
    }

    .vsl-player__prompt {
        padding: 13px 10px 12px;
    }

    .vsl-player__sound-icon {
        width: 68px;
        height: 50px;
        margin: 5px 0;
    }

    .vsl-order-cta {
        margin-top: -14px;
        margin-bottom: 24px;
    }

    .vsl-order-cta__button {
        width: 100%;
        min-height: 64px;
        border-radius: 9px;
    }

    .section-form.exit-recovery-active {
        padding-right: 8px;
        padding-left: 8px;
    }

    .section-form.exit-recovery-active .exit-recovery__notice {
        padding: 18px 13px 14px;
        border-radius: 12px 12px 0 0;
    }

    .section-form.exit-recovery-active .div-section-form {
        padding: 8px 8px 12px;
        border-radius: 0 0 12px 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vsl-player__prompt,
    .vsl-player__sound-wave {
        animation: none;
    }
}
