.flash-promo-hero {
    --padding: 1.5rem;
    --findCruisesBarHeight: 190px;

    position: relative;
    display: flex;
    justify-content: center;
}

.flash-promo-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -1;
}

.flash-promo-hero .find-cruises-bar {
    position: absolute;
    top: calc(100% - (var(--findCruisesBarHeight) / 2));
}

.flash-promo-hero .promo-overlay {
    width: 100%;
    max-width: 708px;

    color: #fff;

    margin: var(--padding);
    margin-bottom: calc(var(--padding) + (var(--findCruisesBarHeight) / 2));
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.flash-promo-hero .promo-overlay > * + * {
    margin-top: 1rem;
    margin-bottom: 0;
}

.flash-promo-hero .promo-overlay[data-bg-color="--azamara-blue"] {
    /* Azamara Blue with Opacity */
    background-color: #00205bcc;
}

.flash-promo-hero .promo-overlay[data-bg-color="--dusk"] {
    /* Dusk with Opacity */
    background-color: #797890cc;
}

.flash-promo-hero .promo-overlay .text-eyebrow {
    color: #fff;

    font-style: normal;
    font-weight: 420;
    font-size: 18px;
    line-height: 28px;

    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.flash-promo-hero .promo-overlay .promo-description {
    font-style: normal;
    font-weight: 450;
    font-size: 30px;
    line-height: 38px;
}

.flash-promo-hero .promo-overlay .terms-and-conditions {
    text-decoration: underline; 
    background: none;
    border: none;

    font-size: 18px;
    line-height: 28px;
    color: #fff;
}

.flash-promo-hero .promo-overlay .countdown-timer {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    width: calc(100% - 3rem);
    max-width: 473px;
    height: 82px;

    display: flex;
    justify-content: space-around;
    align-items: center;
}

.flash-promo-hero .promo-overlay .countdown-timer .time-group > div:first-child {
    font-style: normal;
    font-weight: 450; 
    font-size: 28px;
    line-height: 38px;
}

.flash-promo-hero .promo-overlay .countdown-timer .time-group > div:last-child {
    font-style: normal;
    font-weight: 390;
    font-size: 18px;
    line-height: 28px;
}

.flash-promo-hero .promo-overlay .countdown-timer span {
    font-style: normal;
    font-weight: 390;
    font-size: 40px;

    height: 40px;
}

.flash-promo-hero .promo-overlay .cta {
    height: 48px; 
    margin-top: 1.5rem;

    background-color: var(--pure-white);
    border-color: var(--pure-white);
    color: var(--azamara-blue);
    fill: var(--azamara-blue);

    font-style: normal;
    font-weight: 420;
    font-size: 18px;
    line-height: 28px;

    padding: 0 1.5em;
}

.flash-promo-hero .promo-overlay .cta:hover {
    background-color: var(--azamara-blue);
    border-color: var(--azamara-blue);
    color: var(--pure-white);
    fill: var(--pure-white);
}

/* -sm breakpoint */
@media (min-width: 576px) {
    .flash-promo-hero .promo-overlay .promo-description {
        font-style: normal;
        font-weight: 450;
        font-size: 36px;
        line-height: 48px;
    }
}

/* -md breakpoint */
@media (min-width: 768px) {
    .flash-promo-hero {
        --padding: 3rem;
        --findCruisesBarHeight: 144px;
    }

    .flash-promo-hero .promo-overlay { 
        padding: 3rem;
    }

    .flash-promo-hero .promo-overlay .text-eyebrow {
        color: #fff;
    
        font-style: normal;
        font-weight: 420;
        font-size: 20px;
        line-height: 30px;
    
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .flash-promo-hero .promo-overlay .promo-description {
        font-style: normal;
        font-weight: 450;
        font-size: 48px;
        line-height: 60px;
    }

    .flash-promo-hero .promo-overlay .countdown-timer {
        height: 106px;
    }

    .flash-promo-hero .promo-overlay .countdown-timer .time-group > div:first-child {
        font-size: 36px;
        line-height: 44px;
    }
    
    .flash-promo-hero .promo-overlay .countdown-timer .time-group > div:last-child {
        font-size: 20px;
        line-height: 30px;
    }
    
    .flash-promo-hero .promo-overlay .countdown-timer span {
        font-size: 64px;
        height: 40px;
    }

    .flash-promo-hero .promo-overlay .cta {
        height: 56px; 
        margin-top: 3rem;
    }
}

/* -lg breakpoint*/
@media (min-width: 992px) {

}

/* -xl breakpoint */
@media (min-width: 1200px) {
    .flash-promo-hero {
        --padding: 5rem;
        --findCruisesBarHeight: 72px;
    }
}

/* -xxl breakpoint */
@media (min-width: 1400px) {

}