.timer-container {
        display: flex;
        justify-content: end;
        margin-left: auto;
        margin-right: auto;
    gap: 20px;
}

.timer-container .timer-digits {
    border: 2px solid #a5a5a5;
        height: 76px;
        width: 76px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 8px;
        color: #FFFFFF;
        font-size: 40px;
        font-weight: 600;
}

.timer-container .timer-label {
    color: #8B8B8B;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        text-align: center;
        display: block;
}
@media (max-width:767.48px) {
        .timer-container {
                justify-content: center;
        }
    }