body.blur {
    filter: blur(80%);
}

#overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99998;
}

#bookingPopup,
#thankYouPopup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 25px;
    z-index: 99999;
    width: 450px;
    border-radius: 8px;
}

#bookingPopup h2 {
    margin-bottom: 15px;
    color: rgb(0, 0, 0);
}

#bookingPopup span {
    color: rgb(80, 80, 80);
}

#bookingPopup span {
    color: black;
    margin-bottom: 10px;
}

#bookingPopup input,
#bookingPopup select,
#bookingPopup textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
}


/* Submit Button */

.btn-submitb {
    width: 100%;
    padding: 10px;
    background: #ec5f00;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-submitb:hover {
    background: #ff6701;
}

.closeBtn {
    position: absolute;
    right: 12px;
    top: 10px;
    cursor: pointer;
    font-size: 18px;
}

#thankYouPopupb {
    text-align: center;
    background-color: #fff;
    color: black;
}

#booking-thanks {
    font-size: 14px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background: #ff6b6b;
    width: 100px;
    border-radius: 50px;
    color: white;
    height: 43px;
    cursor: pointer;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}

#booking-thanks p {
    width: 100%;
}


/* Spinner loader */

.loader {
    border: 3px solid #ffffff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-left: 10px;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}