#novalon-live-stats{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:70px;
    width:100%;
    padding:15px 0;
}

.nls-card{
    flex:1;
    text-align:center;
}

.nls-value{
    font-size:42px;
    font-weight:600;
    line-height:1;
    color:#2CBCA5;
    letter-spacing:-1px;
}

.nls-change{
    font-size:14px;
    font-weight:600;
    margin-top:8px;
    min-height:18px;
}

.nls-label{
    margin-top:12px;
    color:#B6BEC8;
    font-size:18px;
    font-weight:500;
}

.nls-up{
    color:#16c784;
}

.nls-down{
    color:#ea3943;
}

@media (max-width:768px){

    #novalon-live-stats{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:35px 20px;
        padding:40px 0 10px;
        justify-items:center;
        align-items:start;
    }

    .nls-card{
        width:100%;
        max-width:180px;
        text-align:center;
    }

.nls-value{
    font-size:28px;
    font-weight:500;
    line-height:1;
    letter-spacing:-0.5px;
}

.nls-change{
    font-size:12px;
    margin-top:5px;
}

    .nls-label{
        font-size:16px;
        margin-top:8px;
    }

}