/* Styling for the popup */
/* Popup Content */
#booking-popup {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 450px;
    max-width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 9999;
    display: none; /* Initially hidden */
}

/* Full-screen styling for mobile devices */
@media (max-width: 768px) {
	#booking-popup {
		width: 100%;
		height: 100%;
		max-width: 100%;
		top: 0;
		left: 0;
		transform: none;
		line-height: normal;
		justify-content: center;
		align-items: center;
	}
}

/* Buttons */
#booking-popup #multi-step-form .button-container {
	display:block;
	text-align:right;
	width:100%;
	left:0;
	padding:10px 20px;
}
#booking-popup  #multi-step-form .button.disabled {
	border-color: #bfc3c8;
}

#booking-popup #multi-step-form .button {
	line-height:20px;
	border:1px solid #4440DB;
	width: auto;
	font-size: 15px;
    font-weight: normal;
}

#booking-popup #multi-step-form .cancel {
	border:1px solid #fff;
}
/* Enable submit button when active */
.button-container .button.submit.enabled {
    cursor: pointer;
    background-color: #005580;
}

.popup-content {
    padding: 20px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Popup Header */
.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 22px 20px;
    border-bottom: 1px solid #DADADB; /* Add border at the bottom */
    position: relative;
}

.popup-header-logo {
    max-height: 40px;
    max-width: 150px; /* Adjust logo size */
    display: inline-block;
}

.popup-close {
   background: none;
    border: none;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    font-weight: normal;
    padding: 0px;
    height: 32px;
    width: 32px;
    font-size: 32px;
    line-height: 32px;
    position: absolute;
    top: 15px;
}
