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

.booking-wrapper {
    z-index: 3;
    background-color: rgba(237, 240, 244, 0.85);
    position: absolute;
    width: calc(100% - 90px);
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.booking-wrapper.sticky {
    position: fixed;
    width: calc(80% - 136px);
    bottom: -17px;
}

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

.booking-wrapper .neobookings-mask {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 33px 25px 28px 25px;
}

.booking-wrapper .neobookings-mask .field:not(.field--book-btn) {
    padding: 15px 35px 15px 5px;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
    width: 27%;
}

.booking-wrapper .neobookings-mask .field:not(.field--book-btn) label {
    color: var(--primary-color);
    font-weight: 600;
    position: absolute;
    top: -15px;
    left: 6px;
}

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

.booking-wrapper .neobookings-mask .field:after {
    content: "";
    position: absolute;
    width: 18%;
    height: 55%;
    bottom: 12px;
    right: 47px;
    background-size: contain;
    background-repeat: no-repeat;
    filter: var(--image-filter-icon-primary-color);
    pointer-events: none;
}

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

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

.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: var(--primary-color);
    height: auto;
    font-weight: var(--inputs-font-weight);
    border: 0px;
    font-size: var(--inputs-font-size);
    cursor: pointer;
}

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

.booking-wrapper .neobookings-mask .field.field--book-btn {
    margin-left: auto;
}

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

@media (min-width: 1900px) {
    .booking-wrapper.sticky {
        width: 58%;
    }
}

@media (max-width: 1024px) {
    .booking-wrapper .neobookings-mask .field:after {
        right: 7px;
    }

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

@media(max-width: 992px) {
    .booking-wrapper .neobookings-mask .field:after {
        width: 11%;
        bottom: -12px;
        right: 7px;
    }

    .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: 50%;
        left: 50%;
        width: calc(100% - 35px);
        height: max-content;
        z-index: 101;
        position: fixed;
        background-color: white;
        box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
        transform: translate(-50%, -50%);
    }

    .booking-wrapper.visible {
        display: block;
    }

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

    .booking-wrapper .neobookings-mask {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 33px;
    }

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

    .booking-wrapper .close-neobookings-form {
        display: block;
        position: absolute;
        top: 14px;
        right: 20px;
        font-size: 20px;
        color: var(--primary-color);
    }

    .booking-wrapper .neobookings-mask .field:not(.field--book-btn) label {
        position: initial;
    }

    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 var(--primary-color);
    }

    .booking-wrapper .neobookings-mask .form-control {
        color: var(--primary-color);
    }

    .booking-wrapper .neobookings-mask .form-control::placeholder {
        color: var(--primary-color);
    }

    .booking-wrapper .neobookings-mask .field.field--book-btn {
        margin-top: 31px;
        margin-left: unset;
    }
}