.parking-pay + .banner {
    margin-top: 10px;
}

/* ------------------- CAR INPUT STEP ------------------- */
.parking-car__input {
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* ------------------- PAYMENT STEP ------------------- */
.parking-pay__block {
    margin-bottom: 10px;
    border-radius: 12px;
    padding: 15px;
}

.parking-pay__block:last-child {
    margin-bottom: 0;
}

.parking-pay__banner {
    margin-bottom: 10px;
}

/* ------------------- PAYMENT STEP: PAYMENT ------------------- */
.parking-pay .payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: rgb(from var(--primary) r g b / 5%);
    border: 1px solid rgb(from var(--primary) r g b / 10%);
}

.payment__text {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.payment__text.currency {
    margin-top: -5px;
}

.payment__block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 78px;
}

.payment__input {
    width: 100%;
    height: 100%;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    text-align: center;
    background: transparent;
    border: unset !important;
    border-radius: 12px;
}

.payment__input:focus:read-only {
    background: transparent;
}

.payment__input:not(:read-only) {
    background: #FFF;
}

.payment__input:focus,
.payment__input:focus-visible {
    background: #FFF;
    outline-color: transparent !important;
}

.payment__input::-webkit-inner-spin-button,
.payment__input::-webkit-outer-spin-button {
    display: none !important;
    -moz-appearance: textfield;
    -webkit-appearance: none;
    margin: 0;
}

.payment__button {
    margin-top: 15px;
    margin-bottom: 5px;
}