.bg-section::before, .bg-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: calc(100% - 1px);
    width: 200px;
    height: 100%;
    background: url(/images/all-access/aap-black-friday-left-border.png) top left no-repeat;
    background-size: cover;
}

.bg-section::after {
    left: calc(100% - 1px);
    right: auto;
    background: url(/images/all-access/aap-black-friday-right-border.png) top right no-repeat;
    background-size: cover;
}
.hello-bar .bg-section::before, .hello-bar .bg-section::after {
    width: 90px;
}

    .sale-pretitle {
        font-size: clamp(18px,3vw ,26px);
        margin-bottom: 2em;
    }

.sale-title {
    font-size: clamp(48px, 8vw,90px);
    font-weight: bold;
    font-family: var(--font-family-alternative);
    text-transform: uppercase;
    margin-bottom: 0.75em;
    position: relative;
    z-index: 1;
    color: #e80606;
    line-height: 1;
}

.sale-feature-text {
    color: var(--white);
    font-size: 0.65em;
    display: block;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1;
}

.cta-button {
    background: #e80606;
    font-family: var(--font-family-alternative);
    font-weight: 400;
    border-radius: 0;
    border: 0;
    position: relative;
    z-index: 2;
    font-size:  clamp(18px, 3vw , 26px);
    padding-right: 1em;
    padding-left: 1em;
}

    .cta-button:hover, .cta-button:focus {
        background: #a00d0e
    }



/* Confetti Background */
.confetti-piece {
    position: absolute;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.confetti-piece.red {
    background: #e63946;
}

.confetti-piece.black {
    background: #444;
}

.confetti-piece.white {
    background: #fff;
}

.confetti-piece.square {
    width: 8px;
    height: 8px;
}

.confetti-piece.rectangle {
    width: 12px;
    height: 4px;
    border-radius: 2px;
}

.confetti-piece.circle {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

/* Animation that keeps particles within container */
@keyframes confettiFall {
    0% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(var(--fall-distance)) rotate(360deg);
        opacity: 0;
    }
}

.countdown {
    color: var(--white);
    z-index: 1;
}

    .countdown ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .countdown li {
        text-align: center;
        font-size: 0.5em;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #ccc;
    }

        .countdown li span {
            display: block;
            font-size: 3em;
            font-weight: 700;
            color: #e80606;
            margin-bottom: 5px;
            min-width: 60px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

button[title="Close Ad"].clear-button {
    box-sizing: border-box;
    margin-left: 10px;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 20px;
    opacity: 0.8;
    text-align: right;
    display: inline-block;
    vertical-align: middle;
    line-height: .9;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    height: 40px;
    background: transparent;
    width: 40px;
    z-index: 4;
}
#pnlHelloBarAAPromo {
    .countdown ul{
        gap: 2px;
    }
    .countdown li
    {
        font-size: 0.5em;
    }

    .countdown li span {
        font-size: 1.5em;
    }
    
}

@media (max-width: 575.9px) {
    .bg-section{
        width:100%!important;
    }
    .sale-pretitle{
        margin-bottom: 1em;
    }
    .sale-title {
        margin-bottom: 0.5em;
    }
    .bg-section::before, .bg-section::after{
        display: none;

    }
    .countdown ul{
        gap:0;
    }
    button[title="Close Ad"].clear-button{color:var(--white); }
}