/*
.ui-datepicker{
    z-index:-1 !important;
}
*/

#booking-form .ui-datepicker {
    display: none;
}

.booking-pop-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 199998;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 130px 0 120px;
}

.overlay {
    position: fixed;
    z-index: 109999;
    background: #000;
    background: rgba(0, 0, 0, 0.6);
    float: left;
    width: 100%;
    height: 100%;
    top: 0;
}

.open-booking {
    overflow: hidden;
}

.booking-pop {
    z-index: 199999;
    width: 94%;
    max-width: 1045px;
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
}

@media screen and (max-width: 1023px) and (max-height: 1220px) {
    .booking-pop-wrapper {
        padding-top: 100px;
    }
}

.pop-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 200000;
    transition: opacity 0.2s ease;
}

.pop-close:hover {
    opacity: 0.7;
}

@media screen and (max-width: 1023px) {
    .pop-close {
        top: 4px;
    }
}
