/****** FORMULARIO DE RESERVAS *******/
:root {
    --inputs-font-size: 14px;
    --inputs-font-weight: 400;
}

.booking-wrapper {
    position: absolute;
    width: 100%;
    bottom: 50px;
    left: 0;
    z-index: 3;
    background-color: transparent;
}

.booking-wrapper .close-neobookings-form {
    display: none;
}


.booking-wrapper .neobookings-mask {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.booking-wrapper .neobookings-mask .field:not(.field--book-btn) {
    padding: 15px 35px 15px 5px;
    margin: 15px 7px;
    border-bottom: 1px solid #fff;
    position: relative;
    width: 25%;
    position: relative;
}
.booking-wrapper .neobookings-mask .field:not(.field--book-btn) label {
    color: rgba(255, 255, 255, 0.4);
    position: absolute;
    top: -15px;
    left: 6px;
}

.booking-wrapper .neobookings-mask .field.field--guests {
    position: relative;
}

.booking-wrapper .neobookings-mask .field:after {
    content: "";
    position: absolute;
    bottom: 11px;
    right: 7px;
    width: 15px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    filter: var(--image-filter-icon-white);
    pointer-events: none;
}

.booking-wrapper .neobookings-mask .field--calendars:after {
    background-image: url('../../../images/design-icons/agenda.svg');
}

.booking-wrapper .neobookings-mask .field--guests:after {
    background-image: url('../../../images/design-icons/people.svg');
    width: 20px;
    height: 20px;
    bottom: 8px;
}

.booking-wrapper .neobookings-mask .field--promo {
    width: 180px;
}

.booking-wrapper .neobookings-mask .field--promo:after {
    background-image: url('../../../images/design-icons/gift-card.svg');
    width: 20px;
    height: 20px;
    bottom: 8px;
}

.booking-wrapper .neobookings-mask .form-control {
    background-color: transparent;
    color: #fff;
    height: auto;
    font-weight: var(--inputs-font-weight);
    border: 0px;
    font-size: var(--inputs-font-size);
}

.booking-wrapper .neobookings-mask .form-control::placeholder {
    color: #fff;
    font-size: var(--inputs-font-size);
}

.booking-wrapper .neobookings-mask .field.field--book-btn {
    border: 1px solid var(--primary-color);
    margin: 7px;
    width: 23%;
}

.booking-wrapper .neobookings-mask .field--book-btn button {
    padding: 15px 35px;
    width: 100%;
}

.open-mask-button-container {
    display: none;
}


@media(max-width: 992px) {

    .open-mask-button-container {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        z-index: 100;
    }
    .open-mask-button-container button {
        width: 100%;
    }
    .booking-wrapper {
        display: flex;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 101;
        position: fixed;
        background-color: #fff;
    }
    .booking-wrapper.visible {
        display: block;
    }

    .booking-wrapper .booking-inner {
        width: 100%;
    }

    .booking-wrapper .neobookings-mask {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .booking-wrapper .neobookings-mask .field:not(.field--book-btn) {
        width: 80%;
    }

    .booking-wrapper .close-neobookings-form {
        display: block;
    }

    body .thickbox.rooms-data,
    body .thickbox.hotels-data {
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 0;
    }
    .booking-wrapper .neobookings-mask .field:not(.field--book-btn) {
        border-bottom: 1px solid #000;
    }
    .booking-wrapper .neobookings-mask .form-control {
        color: #000;
    }
    .booking-wrapper .neobookings-mask .form-control::placeholder {
        color: #000;
    }
    .booking-wrapper .neobookings-mask .field.field--book-btn {
        margin-top: 15px;
        width: 80%;
    }
}
