.countdown-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.countdown-box {
    padding: 15px;
    border-radius: 10px;
    min-width: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.countdown-widget span {
    display: block;
    font-weight: bold;
}

.countdown-end-message {
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
}

.countdown-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    line-height: 1;
}

.countdown-seconds {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Mobile */
@media (max-width: 767px) {
    .countdown-widget {
        flex-wrap: wrap;
    }
    .countdown-box {
        margin-bottom: 10px;
        padding: 7px;
    }
}
