body.bookingOffCanvas {
    overflow: hidden;
}

    body.bookingOffCanvas #booking-offcanvas {
        transform: translateX(0);
    }

    body.bookingOffCanvas #booking-offcanvas-bg {
        display: block;
        opacity: 0.5;
    }

#booking-offcanvas {
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    bottom: 0;
    width: 90%;
    max-width: 770px;
    background-color: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f,0 8px 10px -5px #0003;
}

    #booking-offcanvas iframe {
        position: absolute;
        z-index: 1;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    #booking-offcanvas .booking-close {
        position: absolute;
        right: 15px;
        top: 15px;
        z-index: 2;
        width: 20px;
        height: 20px;
        color: #333;
        background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e") center center no-repeat;
        border: 0;
        border-radius: .375rem;
        opacity: .5;
        cursor: pointer;
        transition: opacity 0.2s ease;
    }

        #booking-offcanvas .booking-close:hover {
            opacity: 1;
        }

#booking-offcanvas-bg {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9998;
    background-color: #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

body.bookingOffCanvas #booking-offcanvas-bg {
    opacity: 0.5;
    pointer-events: auto;
}
