<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.counter-wrapper{
    display: flex;
}
/* .counter-wrapper.first-number{
    justify-content: flex-end;
}

.counter-wrapper.second-number{
    justify-content: center;
} */
.counter-wrapper .counter{
    text-align: center;
    font-weight: 800;
}
.counter-wrapper .counter-content{
    color:#d33;
    font-size: 6.5em;
    line-height: normal;
}

.counter-wrapper .counter-text{

}

.counter-wrapper .couner-icon{
    font-size: 2.5em;
    margin-top: 0.25em;
}

@media all and (max-width: 770px){
    .counter-wrapper{
        justify-content: center;
    }
}

@media all and (min-width: 770px){
    .counter-wrapper.first-number{
        justify-content: flex-end;
    }

    .counter-wrapper.second-number{
        justify-content: center;
    }
}
</pre></body></html>