/* ==========================================================================
   SKYSTONE - COUNTDOWN V21
   Hero oficial: 765px.
   Posição: acima do botão CADASTRO.
   ========================================================================== */

body.template-skystone .sky-countdown-slot {
    position: absolute;

    top: 92px;
    right: 16px;
    z-index: 8;

    width: 260px;

    margin: 0;
    padding: 0;

    pointer-events: auto;
}

body.template-skystone .sky-countdown {
    width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;

    border: 1px solid #c9e0e5;

    background:
        rgba(250,254,255,.94);

    box-shadow:
        0 7px 20px rgba(58,109,124,.10);

    box-sizing: border-box;
}

body.template-skystone .sky-countdown__head {
    min-height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 8px;

    border-bottom: 1px solid #cfe3e7;

    background:
        linear-gradient(
            180deg,
            rgba(249,253,254,.98),
            rgba(235,247,249,.96)
        );

    color: #08718e;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    text-align: center;
}

body.template-skystone .sky-countdown__timer {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));

    gap: 5px;

    padding: 5px;

    background: rgba(247,252,253,.96);
}

body.template-skystone .sky-countdown__unit {
    min-width: 0;
    height: 55px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 6px;

    border: 1px solid #d0e4e8;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #edf8fa
        );

    box-sizing: border-box;
}

body.template-skystone .sky-countdown__unit span {
    display: block;

    color: #6e98a5;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 5.5px;
    font-weight: 700;
    line-height: 1;
}

body.template-skystone .sky-countdown__unit strong {
    display: block;

    color: #087996;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

body.template-skystone .sky-countdown__finished {
    min-height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 8px 12px;

    background: #f5fbfc;

    color: #08718e;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;

    text-align: center;

    box-sizing: border-box;
}

body.template-skystone .sky-countdown__finished[hidden] {
    display: none;
}

/* --------------------------------------------------------------------------
   Em larguras intermediárias mantém acima do botão direito.
   -------------------------------------------------------------------------- */

@media (max-width: 790px) {
    body.template-skystone .sky-countdown-slot {
        top: 96px;
        right: 10px;

        width: 245px;
    }

    body.template-skystone .sky-countdown__unit {
        height: 52px;
    }

    body.template-skystone .sky-countdown__unit strong {
        font-size: 17px;
    }
}

/* --------------------------------------------------------------------------
   Mobile: deixa de ser absoluto para não cobrir a Hero.
   -------------------------------------------------------------------------- */

@media (max-width: 620px) {
    body.template-skystone .sky-countdown-slot {
        position: absolute;

        top: 88px;
        left: 50%;
        right: auto;

        width: min(290px, calc(100% - 24px));

        transform: translateX(-50%);
    }

    body.template-skystone .sky-countdown__head {
        min-height: 30px;

        font-size: 13px;
    }

    body.template-skystone .sky-countdown__unit {
        height: 50px;
    }

    body.template-skystone .sky-countdown__unit strong {
        font-size: 16px;
    }

    body.template-skystone .sky-countdown__unit span {
        font-size: 5px;
    }
}
