/* Shared RAFYZO subscription offer countdown: one component for landings, dashboard and checkout. */
.rafyzo-offer-countdown,
.rafyzo-offer-countdown * {
    box-sizing: border-box;
}

.rafyzo-offer-countdown {
    --rafyzo-offer-accent: #c6f33b;
    position: relative;
    isolation: isolate;
    display: grid;
    width: 100%;
    max-width: 100%;
    gap: 8px;
    margin: 0 0 14px;
    padding: 10px 11px 11px;
    overflow: hidden;
    border: 1px solid rgba(198, 243, 59, .28);
    border-radius: 14px;
    background:
        radial-gradient(circle at 92% -15%, rgba(198, 243, 59, .18), transparent 38%),
        linear-gradient(135deg, #17132b 0%, #2b1a58 52%, #5127b8 100%);
    box-shadow: 0 10px 24px rgba(46, 24, 96, .16), inset 0 1px 0 rgba(255, 255, 255, .08);
    color: #fff;
    font-family: inherit;
    line-height: 1;
}

.rafyzo-offer-countdown[hidden] {
    display: none !important;
}

.rafyzo-offer-countdown::before {
    position: absolute;
    z-index: -1;
    top: -45%;
    left: -35%;
    width: 32%;
    height: 190%;
    transform: rotate(18deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .10), transparent);
    content: "";
    animation: rafyzo-offer-sheen 6s ease-in-out infinite;
}

.rafyzo-offer-countdown__head {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    color: #f8f6ff;
}

.rafyzo-offer-countdown__head strong {
    overflow: hidden;
    color: inherit;
    font-size: 9px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .025em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rafyzo-offer-countdown__pulse {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 999px;
    background: var(--rafyzo-offer-accent);
    box-shadow: 0 0 0 0 rgba(198, 243, 59, .52);
    animation: rafyzo-offer-pulse 1.8s ease-out infinite;
}

.rafyzo-offer-countdown__timer {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
}

.rafyzo-offer-countdown__unit {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 44px;
    place-content: center;
    gap: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 9px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .06));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 4px 10px rgba(7, 4, 20, .15);
    text-align: center;
}

.rafyzo-offer-countdown__unit strong {
    color: #fff;
    font-size: clamp(16px, 1.35vw, 20px);
    font-variant-numeric: tabular-nums;
    font-weight: 950;
    line-height: .95;
    letter-spacing: .025em;
    text-shadow: 0 2px 9px rgba(0, 0, 0, .24);
}

.rafyzo-offer-countdown__unit small {
    width: auto;
    margin: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, .72);
    font-size: 7px;
    font-weight: 750;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rafyzo-offer-countdown__unit.is-ticking strong {
    animation: rafyzo-offer-tick .34s cubic-bezier(.2, .8, .25, 1);
}

.rafyzo-offer-countdown.is-expiring {
    border-color: rgba(198, 243, 59, .52);
    box-shadow: 0 10px 26px rgba(46, 24, 96, .20), 0 0 0 1px rgba(198, 243, 59, .10);
}

.rafyzo-offer-countdown.is-finished {
    opacity: .66;
}

.px-subscription-plan-price > .rafyzo-offer-countdown.is-dashboard {
    margin: 2px 0 0;
}

.px-subscription-order-summary > .rafyzo-offer-countdown.is-checkout {
    margin: -10px 0 18px;
}

.rsl-plan-card > .rafyzo-offer-countdown,
.rafyzo-dp-landing .rdp-plan-card > .rafyzo-offer-countdown,
.rafyzo-restaurant-landing .rrl-plan-card > .rafyzo-offer-countdown,
.rrv-plan > .rafyzo-offer-countdown {
    position: static;
    align-self: stretch;
}

[dir="rtl"] .rafyzo-offer-countdown__head {
    direction: rtl;
}

[dir="rtl"] .rafyzo-offer-countdown__timer {
    direction: rtl;
}

@keyframes rafyzo-offer-tick {
    0% { transform: translateY(-7px) scale(.92); opacity: .25; filter: blur(1px); }
    62% { transform: translateY(1px) scale(1.04); opacity: 1; filter: blur(0); }
    100% { transform: translateY(0) scale(1); }
}

@keyframes rafyzo-offer-pulse {
    0% { box-shadow: 0 0 0 0 rgba(198, 243, 59, .50); }
    70%, 100% { box-shadow: 0 0 0 7px rgba(198, 243, 59, 0); }
}

@keyframes rafyzo-offer-sheen {
    0%, 28% { left: -35%; opacity: 0; }
    38% { opacity: 1; }
    62%, 100% { left: 115%; opacity: 0; }
}

@media (max-width: 420px) {
    .rafyzo-offer-countdown {
        gap: 7px;
        padding: 9px;
        border-radius: 12px;
    }

    .rafyzo-offer-countdown__timer { gap: 4px; }
    .rafyzo-offer-countdown__unit { min-height: 41px; border-radius: 8px; }
    .rafyzo-offer-countdown__unit strong { font-size: 16px; }
    .rafyzo-offer-countdown__unit small { font-size: 6.5px; }
}

@media (prefers-reduced-motion: reduce) {
    .rafyzo-offer-countdown::before,
    .rafyzo-offer-countdown__pulse,
    .rafyzo-offer-countdown__unit.is-ticking strong {
        animation: none;
    }
}
