<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#countdown {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: max-content;
    max-width: 95%;
    height: auto;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-sizing: border-box;
    padding: 5px 46px;
    padding-top: 9px;
    background-color: #ff7f00;
    font-family: 'Nunito Sans',sans-serif;
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    border-radius: 36px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    gap: 26px;
}

#countdown span:not(#countdown.timeInfo.cardspan) {
    position: relative;
    z-index: 2
}

#countdown span b:not(#countdown.timeInfo.cardspanb) {
    animation: fontbulger 2s infinite;
    font-weight: 800;
    font-size: 17px
}

@-webkit-keyframes fontbulger {
    0%,100% {
        color: #fff
    }

    50% {
        color: #ff7f00
    }
}

#countdown .timeInfo .card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito Sans',sans-serif;
    color: #fff;
    font-size: 10px;
    text-align: center;
    box-sizing: border-box
}

#countdown .timeInfo .card::after {
    content: " : ";
    position: absolute;
    right: -14px;
    font-weight: 800;
    font-size: 20px
}

#countdown .timeInfo .card:last-child::after {
    display: none
}

#countdown .timeInfo .card:last-child {
    margin-right: 0
}

#countdown .timeInfo .card strong {
    display: block;
    font-size: 20px;
    flex-shrink: 0;
    font-weight: 800;
    margin-bottom: 2px
}

#countdown .timeInfo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px
}

.countdownText {
    position: absolute;
    display: block;
    z-index: 3;
    width: 80%;
    top: 40%;
    left: 10%;
    text-align: center;
    font-family: 'Nunito Sans',sans-serif;
    font-size: 46px;
    color: #fff;
    line-height: 1.5
}

.countdownText span:first-child {
    display: block;
    font-size: 37px
}

.countdownText span:last-child {
    color: #ff7f00
}

@media only screen and (max-width: 768px) {
    #countdown {
        justify-content:space-around;
        height: auto;
        padding: 5px 18px;
        font-size: 12px;
        gap: 0px;
        border-radius: 20px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        width: 100%;
        max-width: 98%;
    }

    #countdown .timeInfo {
        line-height: 1.2;
        gap: 12px;
    }

    #countdown .timeInfo .card {
 
      
    }

    #countdown span b:not(#countdown.timeInfo.cardspanb) {
    font-size: 100%;
    display: block;
    text-align: center;
}

    #countdown .timeInfo .card strong {
        font-size: 14px;
        margin-bottom:0px;
    }

    #countdown .timeInfo .card span {
        font-size: 9px
    }

    #countdown .timeInfo .card::after {
    right: -6px;
    font-size: 10px
}
    
}
</pre></body></html>