#countdown-timer {

    text-align: center;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

}



.time-block {

    padding: 5px 15px;

    border-radius: 5px;

    display: inline-block;

}

.time{
    font-family: inherit;
    font-weight: 900;
}

.label{
    font-family: inherit;
    font-weight: 400;
    padding-bottom: 5px;
}

.separator {

    font-size: 24px;

    line-height: 1;

    vertical-align: middle;

    margin: 0 5px;

}



.desktop {

    display: none;

}



@media (min-width: 768px) {

    .desktop {

        display: inline-block;

    }

    .mobile {

        display: none;

    }

}

