/****** 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 0 10px 0;
    font-size: 14px;
    color: var(--color-white);
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
}
.neobookings-mask .field .form-control {
    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;
}
.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 {
    display: block;
    width: 100%;
    padding: 17px 15px;
    outline: 0;
    border: none;
    background-color: var(--color-primary);
    border-radius: 0px;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.neobookings-mask .field--book-btn button:hover {
    background-color: var(--color-primary-hover);
}

.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;
    outline: none;
    width: 100%;
}

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

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

@media (max-width: 992px) {
    .booking-wrapper {
        display: none;
    }
    .booking-wrapper.open {
        color: white;
        background: var(--color-grey);
        z-index: 110;
        position: fixed;
        width: 100vw;
        height: 100vh;
        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;
    }

    .close-neobookings-form {
        display: block;
        margin-bottom: 7px;
        color: var(--color-black);
    }

    .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 *******/
