@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Light.woff2') format('woff2'),
         url('../fonts/Mont-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Regular.woff2') format('woff2'),
         url('../fonts/Mont-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Heavy.woff2') format('woff2'),
         url('../fonts/Mont-Heavy.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body.body {
    font-family: 'Mont', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.15;
    color: #f5f8ff;
    background: #020612;
}

button,
input {
    font: inherit;
}

.timer-wrap {
    background: transparent;
    border: 0;
}

.timer__top {
    display: flex;
    gap: 24px;
    text-align: center;
    text-transform: uppercase;
}

.timer-top__left {
    background: transparent;
}

.timer-top__right {
    background: transparent;
    color: #58b8ff;
}

.timer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
    margin: 0 auto;
    gap: 12px;
    padding: 0 0 26px;
}

.timer__part {
    padding: 14px 10px 12px;
    border: 1px solid rgba(88, 184, 255, 0.24);
    border-radius: 12px;
    background: transparent;
    text-align: center;
}

.timer__value {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #58b8ff;
}

.timer__label {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.timer__price-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.timer__price {
    margin: 0;
}

.timer__price.old {
    color: rgba(255, 255, 255, 0.72);
    text-align: left;
}

.displayPrevPrice {
    text-decoration: line-through;
}

.timer-form__input {
    display: block;
    border: 1px solid rgba(88, 184, 255, 0.24);
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
    color: #fff;
}

.timer-form__input:focus {
    outline: none;
    border-color: rgba(88, 184, 255, 0.7);
    box-shadow: 0 0 0 3px rgba(88, 184, 255, 0.12);
}

.timer-form__input::placeholder {
    color: rgba(255, 255, 255, 0.54);
    opacity: 1;
}

.button {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #d94e52 0%, #b8171a 100%);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
    color: #fff;
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.button:active {
    transform: translateY(1px);
}

.button:disabled {
    opacity: 0.75;
    cursor: default;
    transform: none;
}

.price_land_curr {
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .timer__top {
        gap: 16px;
    }

    .timer {
        gap: 10px;
        padding: 0 0 22px;
    }

    .timer__value {
        font-size: 30px;
    }

    .timer__label {
        font-size: 10px;
    }

    .timer__price-wrap {
        gap: 16px;
    }
}

@media screen and (max-width: 540px) {
    .timer {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .timer__value {
        font-size: 24px;
    }

    .timer__label {
        font-size: 9px;
    }
}
