/* =========================================================
   MODAL
========================================================= */
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none !important;
    place-items: center;
    z-index: 9999;
    overflow: auto;
}
.modal.open {
    display: grid !important;
}
.modal-backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}
.modal-dialog {
    position: relative;
    margin: 24px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    width: clamp(360px, 64vw, 720px);
    height: 90vh;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.modal-title {
    font-family: "Bebas Neue";
    font-size: 26px;
    color: var(--lef-grey);
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}
.modal-close {
    position: absolute;
    top: 6px;
    right: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
    color: #999;
    padding: 8px;
}
.modal-close:hover {
    color: #666;
}
#bookingFrame {
    border: 0;
    width: 100%;
    flex: 1 1 auto;
    height: 100%;
    min-height: 0;
}
@media (max-width: 700px) {
    .modal-dialog {
        width: 96vw;
        max-height: min(92svh, 92vh);
    }
}
