.booking-popup {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.booking-popup-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    z-index: 1000;
}

.booking-btn {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
}

.booking-btn:hover {
    background-color: #005f8d;
}

#bookingPopup iframe {
    height: 100vh;
    width: 100%;
}

#bookingPopup .booking-popup-content {
    max-width: 100% !important;
    top: -9%;
    width: 100%;
    background-color: #ffffff99;
    border-radius: 0px;
}

body{
	overflow-x: hidden !important;
}

#bookingPopup .close-popup {
    left: 73%;
}

#bookingPopup .book-embed-container {
    border: none !important;
}

/* MOBILE RESPONSIVE */

@media (min-width: 320px) and (max-width: 767px) {
	
.booking-popup-content {
    top: -1% !important;
    width: 100% !important;
	border-radius: 8px !important;
}

#bookingPopup .close-popup {
    left: auto;
	right: 10%;
}
	
#bookingPopup  iframe {
    height: 98vh;
}
	body.book-embed {
    margin: 10px !important;
}
	

}

/* TABLET RESPONSIVE */

@media (min-width: 768px) and (max-width: 1024px) {
	
#bookingPopup iframe {
        height: 905px;
}

.booking-popup-content {
    top: 0% !important;
	border-radius: 8px !important;
}
	
#bookingPopup .close-popup {
    left: auto;
}
	
.booking-popup {
    background: #fff9 ;
}
	
	#bookingPopup .booking-popup-content {
    width: 95%;
}

}

