.woo-sale-countdown{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin:20px 0;
    padding:16px 20px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.wsc-title{
    font-size:16px;
    font-weight:600;
    color:#222;
    white-space:nowrap;
}

.wsc-time{
    display:flex;
    gap:12px;
    margin-left:auto;
}

.wsc-box{
    width:72px;
    height:72px;
    border-radius:14px;
    background:#f8f8f8;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transition:.3s;
}

.wsc-box:hover{
    background:#dd3476;
    color:#fff;
}

.wsc-box span{
    font-size:30px;
    font-weight:700;
    line-height:1;
}

.wsc-box small{
    margin-top:6px;
    font-size:11px;
    text-transform:uppercase;
}

@media(max-width:768px){

    .woo-sale-countdown{
        flex-direction:column;
        align-items:flex-start;
    }

    .wsc-time{
        width:100%;
        justify-content:space-between;
    }

    .wsc-box{
        width:60px;
        height:60px;
    }

}