.timer {
    margin-top: 25px;
    margin-bottom: 50px;
}

.timer__title {
    font-size: 18px;
    font-weight: 600;
}

.timer__block {
    display: flex;
    gap: 8px;
    text-align: center;
    margin-top: 8px;
    max-width: 277px;
    justify-content: center;
}

.timer__text {
    display: flex;
    position: relative;
    gap: 4px;
}

.timer__sub-title {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
}

.timer__number {
    position: relative;
    letter-spacing: 1rem;
    padding: 6px 6px;
    text-align: center;
    background: #5C5C5C;
    font-size: 20px;
    font-weight: 700;
}

.timer__number span {
    letter-spacing: 1px;
}

@media screen and (max-width: 991.98px) {
    .timer__block {
        justify-content: center;
        max-width: none;
    }
}