/****** FORMULARIO DE RESERVAS *******/
.booking-wrapper {
    position: absolute;
    width: 100%;
    top: 80vh;
    z-index: 3;
}

#innerBanner .booking-wrapper {
    top: auto;
    bottom: 30px;
}

.neobookings-mask {
    display: flex;
    background-color: transparent;
    align-items: flex-end;
    grid-gap: 30px;
    margin: 0 auto;
}

.neobookings-mask .field {
    width: 33%;
    position: relative;
    cursor: pointer;
}
.neobookings-mask .field:after {
    content: "";
    position: absolute;
    bottom: 17px;
    right: 0;
    width: 26px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(1);
    pointer-events: none;
}
.neobookings-mask .label {
    margin: 0;
    margin-bottom: 10px;
    font-size: 0.875rem;
    color: var(--color-white);
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
}
.neobookings-mask .field .form-control {
    width: 100%;
    height: 54px;
    padding: 0 20px 0 0;
    border: none;
    border-bottom: 1px solid #ffffff;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: right center;
    border-radius: 0;
    font-size: var(--font-text-size);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}
.neobookings-mask .field .form-control::placeholder {
    color: #ffffff;
}
.neobookings-mask .field .guestsFake {
    cursor: pointer;
    color: #fff;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    line-height: 3em;
    text-transform: none;
    text-align: left;
    background: none;
    /* font-weight viene de .neobookings-mask .field .form-control (700) — no resetear */
}
.neobookings-mask .field.guests:after {
    background-image: url(../../images/icons/people.svg);
}
.neobookings-mask .field--calendars:after {
    background-image: url(../../images/icons/agenda.svg);
}
.neobookings-mask .field--promo:after {
    background-image: url(../../images/icons/gift-card.svg);
}
.neobookings-mask .field--promo {
    width: 17%;
}

.neobookings-mask .field--book-btn {
    width: 20%;
    border-bottom: 0px;
}

.neobookings-mask .field--book-btn:after {
    display: none;
}

.neobookings-mask .field--book-btn button {
    width: 100%;
    padding: 17px 15px;
    font-size: 16px;
}

.date_range_picker {
    position: relative;
}

.date_range_picker .date-separator {
    width: 10px;
    height: 1px;
    background-color: #fff;
}

.neobookings-form__param__promocode {
    background-color: transparent;
    color: #fff;
    border: 0px;
    width: 100%;
}

/* focus-visible de los interactivos de la mascara cubierto por el global en neobookings.css */

.neobookings-form__param__date {
    visibility: hidden;
    pointer-events: none;
    width: 0;
}

.mobile-book-container,
.close-neobookings-form,
#searchFormBtn {
    display: none;
}

#searchFormBtn button {
    font-size: 16px;
}

@media (max-width: 992px) {
    #searchFormBtn {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 100;
    }

    #searchFormBtn button {
        width: 100%;
        height: 65px;
    }

    .booking-wrapper {
        display: none;
    }
    .booking-wrapper.open {
        color: white;
        background: var(--color-grey);
        z-index: 110;
        position: fixed;
        width: 100dvw;
        height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0;
        left: 0;
        transform: none;
    }
    .booking-wrapper form {
        flex-direction: column;
        top: 0;
        left: 0;
    }
    .booking-wrapper .neobookings-mask .field {
        width: 100%;
        border-bottom: 1px solid var(--secondary-color);
        margin-bottom: 7px;
        color: var(--primary-color);
        justify-content: center;
        position: static;
    }

    .close-neobookings-form {
        appearance: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin-bottom: 7px;
        color: var(--color-black);
        background-color: transparent;
        font-size: 1.75rem;
        border: 0 none;
        transition: color 300ms ease, transform 300ms ease;
        padding: 0;
    }

    .close-neobookings-form:hover {
        transform: scale(1.1);
        background-color: transparent;
    }

    .mobile-book-container {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        z-index: 100;
    }

    .mobile-book-container button {
        width: 100%;
        height: 65px;
        background-color: var(--primary-color);
        color: #fff;
    }

    .neobookings-mask .label {
        color: var(--color-black);
    }

    .neobookings-mask .field .form-control {
        border-bottom: 1px solid var(--color-black);
        color: var(--color-black);
        font-weight: 400;
    }
    .neobookings-mask .field .form-control::placeholder {
        color: var(--color-black);
        text-align: left;
    }

    body #neobookings-form #guestsFake {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 60px;
        color: var(--color-black);
    }

    .neobookings-mask .field input::placeholder {
        color: var(--primary-color);
        text-align: center;
    }

}
/****** FIN FORMULARIO DE RESERVAS *******/
