.flash-promo-banner {
    --padding-x: 1.5rem;
    --padding-y: 1.5rem;
    color: #fff;
}

.flash-promo-banner .promo-content {
    display: flex;
    align-items: center;
    background-color: var(--azamara-blue);
    padding: var(--padding-y) var(--padding-x);
}

.flash-promo-banner .promo-content .left {
    width: 100%;
}

.flash-promo-banner .promo-content .left > * + * {
    /*margin-top: 1rem; WEB-166*/
   /* margin-bottom: 0;*/
}

.flash-promo-banner .promo-content .right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
}

.flash-promo-banner .text-eyebrow {
    color: var(--seafoam-aqua);
    font-style: normal;
    font-weight: 420;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

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

    font-size: 18px;
    line-height: 28px;
    color: var(--seafoam-aqua);

    padding-left: 0;
}

.flash-promo-banner .countdown-timer {
    width: calc(100% - 3rem);
    max-width: 473px;
    height: 82px;

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

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

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

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

    height: 40px;
}

.flash-promo-banner .cta {
    height: 48px; 

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

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

    padding: 0 1.5em;
    flex-shrink: 0;
}

.flash-promo-banner .cta:hover {
    background-color: var(--dark-sunset);
    border-color: var(--dark-sunset);
    color: var(--pure-white);
    fill: var(--pure-white);
}

.flash-promo-banner .promo-footer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* 80% Azamara Blue */
    background: rgba(0, 32, 91, 0.8);

    padding: 0 var(--padding-x);
    text-align: center;
}

.flash-promo-banner .cta-container {
    display: flex;
    flex-direction: column;
    column-gap: 40px;
    row-gap: 24px;
}

.flash-promo-banner .cta-container > * {
    width: auto;
    white-space: nowrap;
}

.flash-promo-banner .cta-secondary {
    fill: var(--pure-white);
    background-color: var(--pure-white);
    color: var(--azamara-blue);
    border: none;
}

.flash-promo-banner .cta-secondary svg {
    fill: var(--azamara-blue);
}

.flash-promo-banner .cta-secondary:hover {
    background-color: var(--seafoam-aqua);
}


.flash-promo-banner .promo-footer .lead-in-text {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: .025em;

    margin-top: .5rem;
}

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

/* -md breakpoint */
@media (min-width: 768px) {
    .flash-promo-banner {
        --padding-x: 3rem;
        --padding-y: 3rem;
    }

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

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

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

    .flash-promo-banner .cta {
        height: 72px; 

        font-size: 24px;
        line-height: 32px;
    }

}

/* -lg breakpoint*/
@media (min-width: 992px) {
    .flash-promo-banner .cta-container {
        flex-direction: row;
    }
}

/* -xl breakpoint */
@media (min-width: 1200px) {
    .flash-promo-banner {
        --padding-x: 7rem;
        --padding-y: 5rem;
    }

    .flash-promo-banner .promo-footer .lead-in-text {
        position: absolute;
        left: 7rem;

        font-size: 24px;
        line-height: 32px;
        letter-spacing: .025em;
    }
}

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

}