.mm-landing.countdown--default {
    background: white;
}

.mm-landing .countdown__countdown {
    padding: 24px 0;
    text-align: center;
}

@media screen and (min-width: 500px) {
    .mm-landing .countdown__countdown {
        padding: 40px 0 60px;
    }
    .mm-landing .countdown__countdown.countdown_fira {
        padding: 40px 0 0;
    }
}

.mm-landing .countdown__countdown__title {
    /* font-size: var(--fz-lg); */
    /* font-weight: var(--fw-bold); */
    color: #888888;
    margin-bottom: 28px;
}

.mm-landing .countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.mm-landing .countdown__item {
    position: relative;
    display: flex;
    /* width: 8rem; */
    flex-direction: column;
    padding: 0 5px;
    margin: 0 5px;
    /* box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), 0px 2px 6px 0 rgba(0, 0, 0, 0.15); */
    /* border-radius: var(--radius-md); */
    /* flex: 1; */
    width: 100px;
}

@media screen and (min-width: 500px) {
    .mm-landing .countdown__item {
        padding: 0;
        margin: 0;
    }
}

.mm-landing .countdown__item:not(:last-child):after {
    content: ':';
    position: absolute;
    top: 4px;
    right: -6px;
    font-size: 18px;
    font-weight: 500;
}

@media screen and (min-width: 500px) {
    .mm-landing .countdown__item:not(:last-child):after {
        right: -2px;
        font-size: 23px;
    }
}

.mm-landing .countdown__item .number {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    color: #333333;
    /* color: var(--c-primary); */
}

@media screen and (min-width: 500px) {
    .mm-landing .countdown__item .number {
        font-size: 32px;
    }
}

.mm-landing .countdown__item .text {
    /* font-size: var(--fz-xs); */
    font-size: 12px;
    color: #333333;
    font-weight: 500;
    margin-top: 4px;
}

@media screen and (min-width: 500px) {
    .mm-landing .countdown__item .text {
        font-size: 16px;
    }
}