.booking_engine_2021_popup_alert {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999999;
    display: block;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transform: scale(0, 0);
    transition: 0.2s all ease-in-out;
}

.booking_engine_2021_popup_alert.open {
    animation-name: open_alert_popup;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes open_alert_popup {
    0% {
        transform: scale(0, 0);
    }
    50% {
        transform: scale(1.2, 1.2);
    }
    100% {
        transform: scale(1, 1);
    }
}

.booking_engine_2021_popup_alert_container {
    width: 20%;
    max-height: 9 0%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    position: relative;
}

.booking_engine_2021_popup_alert_title_and_close {
    display: flex;
    width: calc(100% - 10px);
    padding: 10px 5px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    /* background-color: rgba(165, 42, 42, 0.3); */
    background-color: #efefef;
}

.booking_engine_2021_popup_alert_title {
    font: 400 var(--be_2021_mobile_22_px) var(--be_2021_font);
    color: #0a4b9d;
    float: left;
    margin: 0;
    padding: 0 5px;
}

.booking_engine_2021_popup_alert_close {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
    margin: 0;
    z-index: 999;
    top: 4px;
}

.booking_engine_2021_popup_alert_close_line {
    width: 100%;
    background-color: #104c97;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 50%;
    transition: all 1s ease-in-out;
}

#be_2021_popup_alert_close_line_1 {
    transform: rotate(-45deg);
}

#be_2021_popup_alert_close_line_2 {
    transform: rotate(45deg);
}

.booking_engine_2021_popup_alert_text_container {
    border-top: 1px solid #f78f1e;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.booking_engine_2021_popup_alert_text {
    padding: 0 0 0 5px;
    margin: 0 auto;
    width: calc(100% - 10px);
    font: 300 var(--be_2021_mobile_15_px) var(--be_2021_font);
    color: #202123;
}

.booking_engine_2021_popup_alert_button {
    width: 50%;
    position: relative;
    padding: 10px 5px;
    bottom: 0;
    color: #fff;
    background: var(--be_2021_orange);
    font: 400 var(--be_2021_mobile_18_px) var(--be_2021_font);
    border: 0;
    outline: 0;
    cursor: pointer;
    margin: 0 0 20px 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 15px;
}

.booking_engine_2021_popup_alert_button:hover {
    -webkit-animation: pulse 1s;
    animation: pulse 1s;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
}

@media screen and (orientation:portrait) and (max-width: 1280px) {
    .booking_engine_2021_popup_alert_container {
        width: 100%;
    }
    @keyframes open_alert_popup {
        0% {
            transform: scale(0, 0);
        }
        50% {
            transform: scale(1.0, 1.3);
        }
        100% {
            transform: scale(1, 1);
        }
    }
}

@media screen and (orientation:landscape) and (max-width: 1280px) {
    .booking_engine_2021_popup_alert_container {
        width: 100%;
    }
    @keyframes open_alert_popup {
        0% {
            transform: scale(0, 0);
        }
        50% {
            transform: scale(1.0, 1.3);
        }
        100% {
            transform: scale(1, 1);
        }
    }
}