.arz-countdown-timer,
.arz-countdown-timer * {
    box-sizing: border-box;
}

.arz-countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    background: none;
    font-family: inherit;
}

.arz-countdown-timer li {
    margin: 0;
    padding: 0;
    text-align: center;
    list-style: none;
}

.arz-countdown-timer .box {
    display: inline-block;
    min-width: 70px;
    padding: 12px 8px;
    border-radius: 4px;
    background: #ffffff;
    color: #001042;
    font-family: inherit;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.arz-countdown-timer .subtitle {
    display: block;
    margin-top: 4px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
}

.arz-countdown-timer .item-separator {
    margin-top: -28px;
    color: #fb02ae;
    font-size: 24px;
    line-height: 1;
}

@media (max-width: 480px) {
    .arz-countdown-timer {
        gap: 5px;
    }

    .arz-countdown-timer .box {
        min-width: 54px;
        padding: 10px 5px;
        font-size: 20px;
    }

    .arz-countdown-timer .subtitle {
        font-size: 13px;
    }
}

@media (max-width: 340px) {
    .arz-countdown-timer {
        gap: 3px;
    }

    .arz-countdown-timer .box {
        min-width: 45px;
        font-size: 18px;
    }
}
