.countdown {
    display: flex;
    gap: 17px;
    color: var(--white);
}

.timer {
    display: flex;
    gap: 17px;
    color: var(--white);
}

.rcountdown-block {
    text-align: center;
}

.rcountdown-block p {
    text-align: center;
    font-size: 42px;
    line-height: 42px;
    font-family: 'Arial', sans-serif;
    letter-spacing: .3em;
    position: relative;
    padding-top: 3px;
}

.timer p {
    text-align: center;
    font-size: 42px;
    line-height: 42px;
    font-family: 'Arial', sans-serif;
    /* letter-spacing: .3em; */
    position: relative;
    /* padding-top: 3px; */
    padding: 5px;
    border: 1px solid #fff;
    border-radius: 8px;
    width: 65px;
}

.rcountdown-block p::after,
.rcountdown-block p::before {
    content: "";
    position: absolute;
    top: 0;
    left: -6px;
    width: 46%;
    height: 100%;
    border: 1px solid #fff;
    border-radius: 8px;
}

.rcountdown-block p::after {
    right: 6px;
    left: auto;
}

.rcountdown-block span {
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    font-weight: 700;
    display: block;
    margin-top: 5px;
    margin-right: 10px;
}

.timer small {
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    font-weight: 700;
    display: block;
    margin-top: 5px;
    /* margin-right: 10px; */
}

.rseparator {
    font-size: 44px;
    line-height: 44px;
}

@media screen and (max-width: 600px) {
    .countdown {
        width: 100%;
        gap: 17px;
        justify-content: center;
    }

    .rcountdown-block p {
        font-size: 35px;
        line-height: 35px;
    }

    .rcountdown-block span {
        font-size: 12px;
        line-height: 15px;
    }

    .rseparator {
        font-size: 30px;
        line-height: 30px;
    }
}