.booking_engine_2021_language_selector,
.booking_engine_2021_currency_selector {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999999999;
    display: block;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
}

@keyframes lang_cur {
    0% {
        width: 0;
        height: 0;
    }
    50% {
        width: 100%;
        height: 1px;
    }
    100% {
        width: 100%;
        height: 100%;
    }
}

@keyframes lang_cur_rev {
    0% {
        width: 100%;
        height: 100%;
    }
    50% {
        width: 100%;
        height: 1px;
    }
    100% {
        width: 0;
        height: 0;
    }
}

.be_lang_sel_opened,
.be_cur_sel_opened {
    animation-name: lang_cur;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.be_lang_sel_closed,
.be_cur_sel_closed {
    animation-name: lang_cur_rev;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.booking_engine_2021_language_selector_container,
.booking_engine_2021_currency_selector_container {
    width: 60%;
    height: 80%;
    position: relative;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    border: 0.5px solid var(--be_2021_color);
    padding: 20px;
}

.booking_engine_2021_language_selector_title,
.booking_engine_2021_currency_selector_title {
    margin: 20px 0 20px 0;
    font: 600 30px var(--be_2021_font);
    color: var(--be_2021_color);
    float: left;
}

.booking_engine_2021_close_button_lang,
.booking_engine_2021_close_button_cur,
.booking_engine_2021_close_button_room {
    position: relative;
    float: right;
    right: 30px;
    cursor: pointer;
    float: right;
    font: 600 25px 'Source Sans Pro', sans-serif;
}

.booking_engine_2021_close_button_lang>svg,
.booking_engine_2021_close_button_cur>svg,
.booking_engine_2021_close_button_room>svg {
    width: 40px;
    fill: var(--be_2021_orange);
    box-shadow: 0px 0px 10px grey;
    border-radius: 50%;
}

.booking_engine_2021_close_button_lang>svg:hover,
.booking_engine_2021_close_button_cur>svg:hover,
.booking_engine_2021_close_button_room>svg:hover {
    fill: var(--be_2021_orange);
    box-shadow: 0px 0px 0px grey;
    -moz-transition: all 200ms ease-out;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.booking_engine_2021_language_selector_available_langs,
.booking_engine_2021_currency_selector_available_curs {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: center;
}

#be_2021_lang_scroll,
#be_2021_cur_scroll {
    max-height: 90%;
}

.booking_engine_2021_language_selector_item,
.booking_engine_2021_currency_selector_item {
    flex: 1 0 24%;
    position: relative;
    border: 0.5px solid #fff;
    max-width: 24%;
    padding: 0 0;
}

.booking_engine_2021_language_selector_item_hyperlink {
    display: block;
    padding: 10px 0px 10px 25%;
    font: 400 25px var(--be_2021_font);
    color: var(--be_2021_color);
    text-decoration: none;
    text-align: left;
    border: 0.5px solid transparent;
    border-radius: 15px;
    text-align: left;
}

.booking_engine_2021_currency_selector_item_hyperlink {
    display: block;
    padding: 10px 0px 10px 0;
    font: 400 25px var(--be_2021_font);
    color: var(--be_2021_color);
    text-decoration: none;
    text-align: left;
    border: 0.5px solid transparent;
    border-radius: 15px;
    text-align: center;
}

.booking_engine_2021_language_selector_item:hover>.booking_engine_2021_language_selector_item_hyperlink,
.booking_engine_2021_currency_selector_item:hover>.booking_engine_2021_currency_selector_item_hyperlink {
    /* border: 0.5px solid var(--be_2021_orange); */
    /* color: var(--be_2021_orange); */
    transition: var(--be_2021_trnasition);
    background-color: rgb(247, 247, 247);
    background-color: #ddd;
}

.booking_engine_2021_language_selector_item_hyperlink.be_2021_lang_cur_active,
.booking_engine_2021_currency_selector_item_hyperlink.be_2021_lang_cur_active {
    border: 0.5px solid var(--be_2021_orange);
    color: var(--be_2021_orange);
    transition: var(--be_2021_trnasition);
}

.booking_engine_2021_language_selector_item_hyperlink_img {
    width: 30px;
    height: 30px;
    vertical-align: sub;
    border-radius: 50%;
    position: relative;
    margin: 0 5px 0 0px;
}

.booking_engine_2021_currency_selector_item_hyperlink_svg {
    width: 30px;
    height: 30px;
    vertical-align: sub;
    position: relative;
    margin: 0 5px 0 0px;
}

.booking_engine_2021_currency_selector_item_hyperlink.be_2021_lang_cur_active .booking_engine_2021_currency_selector_item_hyperlink_svg_path {
    fill: var(--be_2021_orange);
    transition: var(--be_2021_trnasition);
}


/*----------------------ROOM POPUP----------------------*/

.booking_engine_2021_popup2 {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.be_2021_popup_2_open {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 1s ease-in-out;
}

.be_2021_popup_2_closed {
    left: 50%;
    top: -150%;
    transform: translate(-50%, 0%);
    transition: all 1s ease-in-out;
}

.booking_engine_2021_popup2_container {
    width: 50%;
    position: relative;
    background-color: #fff;
    left: 50%;
    top: 0%;
    margin-top: 20px;
    transform: translateX( -50%);
}

.booking_engine_2021_popup2_container_title {
    padding: 10px 0px;
    border-bottom: 1px solid #aaabad;
    background-color: #efefef;
}

.booking_engine_2021_popup2_container_title_text {
    font: 400 var(--be_2021_mobile_20_px) var(--be_2021_font);
    float: left;
    color: #f78f1e;
    margin: 0;
    padding: 0 5px;
    width: calc(100% - 50px);
}

.booking_engine_2021_popup2_container_slider {
    width: 100%;
    position: relative;
    /* aspect-ratio: 16 / 9; */
}

.booking_engine_2021_popup2_container_room_details {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
}

.booking_engine_2021_popup2_container_room_details_item {
    flex: 1 0 25%;
    position: relative;
    text-align: center;
}

.booking_engine_2021_popup2_container_room_details_item_img {
    height: 30px;
    position: relative;
}

.booking_engine_2021_popup2_container_room_details_item_text {
    font: 300 var(--be_2021_mobile_15_px) var(--be_2021_font);
    margin: 0;
}

.booking_engine_2021_popup2_container_divider {
    width: 85%;
    position: relative;
    height: 1px;
    border-bottom: 1px dashed #aaabad;
    margin: 10px auto;
}

.booking_engine_2021_popup2_container_offer {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.booking_engine_2021_popup2_container_offer_name_offer {
    padding: 10px 0px;
    margin: 0;
    background-color: rgba(162, 159, 156, 0.6);
    font: 300 var(--be_2021_mobile_20_px) var(--be_2021_font);
    text-align: center;
    color: #fff;
    flex: 0 1 100%;
    margin: 0;
}

.booking_engine_2021_popup2_container_offer_old_price,
.booking_engine_2021_popup2_container_offer_new_price {
    flex: 0 1 25%;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.booking_engine_2021_popup2_container_offer_old_price_title,
.booking_engine_2021_popup2_container_offer_new_price_title {
    font: 400 var(--be_2021_mobile_18_px) var(--be_2021_font);
    text-align: center;
    margin: 0;
    padding: 0;
}

.booking_engine_2021_popup2_container_offer_old_price_ammount {
    text-align: center;
    text-decoration: line-through;
    font: 600 var(--be_2021_mobile_40_px) var(--be_2021_font);
    color: #000;
    margin: 0;
    padding: 0;
}

.booking_engine_2021_popup2_container_offer_new_price_ammount {
    font: 600 var(--be_2021_mobile_40_px) var(--be_2021_font);
    color: var(--be_2021_orange);
    text-align: center;
    margin: 0;
    padding: 0;
}

.booking_engine_2021_popup2_container_offer_title {
    font: 400 18px var(--be_2021_font);
    flex: 0 1 100%;
    color: #f78e1e;
    text-align: center;
    margin: 0;
}

.booking_engine_2021_popup2_container_offer_buttons {
    flex: 1 0 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
}

.booking_engine_2021_popup2_container_offer_book {
    flex: 0 1 25%;
    font: 300 18px var(--be_2021_font);
    position: relative;
    outline: none;
    border-radius: 10px;
    border: 0.5px solid #fff;
    color: #fff;
    background-color: #0a4b9d;
    padding: 10.5px 1px;
    cursor: pointer;
}

.booking_engine_2021_popup2_container_offer_book:hover {
    -webkit-animation: pulse_blue 1s;
    animation: pulse_blue 1s;
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0);
}

.booking_engine_2021_popup2_container_offer_upgrade {
    flex: 0 1 25%;
    font: 300 18px var(--be_2021_font);
    position: relative;
    outline: none;
    border-radius: 10px;
    border: 0.5px solid #fff;
    color: #fff;
    background-color: #f78e1e;
    padding: 10.5px 1px;
    cursor: pointer;
}

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

.booking_engine_2021_popup2_container_room_text {
    padding: 0;
    font: 300 var(--be_2021_mobile_18_px)/40px var(--be_2021_font);
    text-align: justify;
    width: 85%;
    margin: 0 auto;
}

.booking_engine_2021_popup2_container_room_text_title {
    padding: 0;
    margin: 10px auto 5px auto;
    position: relative;
    width: 100%;
    font: 400 var(--be_2021_mobile_22_px) var(--be_2021_font);
}

.booking_engine_2021_popup2_container_buttons {
    width: 100%;
    position: relative;
    padding: 20px 0;
    border-top: 1px solid #aaabad;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.booking_engine_2021_popup2_container_buttons_item {
    margin: 0 10px;
    padding: 5px 30px;
    border-radius: 5px;
    font: 300 var(--be_2021_mobile_22_px) var(--be_2021_font);
    background-color: #104c97;
    border: 0;
    outline: 0;
    color: #fff;
    cursor: pointer;
    letter-spacing: 5px;
    background-color: #6c757d;
}

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

@-webkit-keyframes pulse_grey {
    0% {
        box-shadow: 0 0 0 0 rgb(0 0 0 / 50%);
    }
}

@keyframes pulse_grey {
    0% {
        box-shadow: 0 0 0 0 rgb(0 0 0 / 50%);
    }
}

.booking_engine_2021_room_popup_right_side_amenities {
    width: 100%;
    position: relative;
    text-align: left;
    margin: 0 auto;
    /* border-top: 0.5px solid #104c97; */
    /* border-bottom: 0.5px solid #104c97; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
}

.booking_engine_2021_room_popup_right_side_amenities_item {
    flex: 0 1 14%;
    position: relative;
    margin: 0 10px;
    padding: 10px 0 0 0;
    text-align: center;
}

.booking_engine_2021_room_popup_right_side_amenities_item_img {
    width: 30%;
    position: relative;
}

.booking_engine_2021_room_popup_right_side_amenities_item_explain {
    font: 300 var(--be_2021_mobile_15_px) var(--be_2021_font);
    text-align: center;
    word-break: break-word;
}

.booking_engine_2021_close_button_room2 {
    width: 30px;
    height: 30px;
    right: 10px;
    top: 13px;
    cursor: pointer;
    position: absolute;
    margin: 0 auto;
    z-index: 9;
}

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

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

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

.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.booking_engine_2021_nav_arrow {
    width: 50px;
}

.nav_arrow_left {
    transform: rotate(180deg);
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.owl-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.owl-dot {
    float: left;
    padding: 0;
    background: #fff;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin: 0 5px;
    text-indent: -999px;
    outline: 0;
    overflow: hidden;
    -moz-transition: all 200ms ease-out;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: relative;
    bottom: 0px;
}

.owl-dot.active {
    height: 15px;
    width: 15px;
    bottom: 3px;
    border-radius: 35%;
    background: transparent;
    -moz-transition: all 200ms ease-out;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.booking_engine_2021_room_popup_right_side_amenities_title_container {
    position: relative;
    width: 85%;
    margin: 0 auto;
}


/*-----------------------END ROOM POPUP----------------------*/


/*-----------------------CURRENT OFFER POPUP-----------------*/

.booking_engine_2021_offer_with_discount_popup {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999999;
    display: block;
    overflow: hidden;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.be_room_offer_opened {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 1s ease-in-out;
}

.be_room_offer_closed {
    left: 50%;
    top: -150%;
    transform: translate(-50%, 0%);
    transition: all 1s ease-in-out;
}

.booking_engine_2021_offer_with_discount_container {
    width: 50%;
    position: relative;
    background-color: #fff;
    left: 50%;
    top: 0%;
    margin-top: 20px;
    transform: translateX( -50%);
    max-height: 98%;
}

.booking_engine_2021_close_button_offer_with_discount {
    width: 30px;
    height: 30px;
    right: 10px;
    top: 13px;
    cursor: pointer;
    position: absolute;
    margin: 0 auto;
    z-index: 9;
}

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

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

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

.booking_engine_2021offer_with_discount_popup_title {
    padding: 10px 0px;
    border-bottom: 1px solid var(--be_2021_orange);
    background-color: #efefef;
}

.booking_engine_2021_offer_with_discount_popup_title_text {
    font: 400 25px var(--be_2021_font);
    color: #0a4b9d;
    float: left;
    margin: 0;
    padding: 0 5px;
    width: calc(100% - 50px);
}

.booking_engine_2021offer_with_discount_popup_rest_img_text {
    width: 100%;
    position: relative;
    background-color: #fff;
    padding-bottom: 20px;
}

.booking_engine_2021offer_with_discount_popup_rest_img {
    width: 100%;
    position: relative;
}

.booking_engine_2021offer_with_discount_popup_rest_img_item {
    width: 100%;
    position: relative;
}

.booking_engine_2021offer_with_discount_popup_rest_text {
    padding: 0;
    font: 300 18px/40px var(--be_2021_font);
    text-align: left;
    width: 85%;
    margin: 0 auto;
}

.booking_engine_2021offer_with_discount_popup_rest_text_title {
    font: 500 18px/40px var(--be_2021_font)
}


/*-----------------------CURRENT OFFER POPUP-----------------*/


/*-----------------------------------------CUSTOM SELECT-----------------------------------------------------*/


/* The container must be positioned relative: */

.booking_engine_2021_send_rate_request_form_input_group_dates.popup_divs_custom_select_css,
.booking_engine_2021_subscription_form_details_group.popup_divs_custom_select_css {
    position: relative;
    font-family: Arial;
}

.booking_engine_2021_send_rate_request_form_input_group_dates.popup_divs_custom_select_css select,
.booking_engine_2021_subscription_form_details_group.popup_divs_custom_select_css select {
    display: none;
    /*hide original SELECT element: */
}

.booking_engine_2021_send_rate_request_form_input_group_dates .select-selected,
.booking_engine_2021_subscription_form_details_group .select-selected {
    background-color: #fafafa;
}


/* Style the arrow inside the select element: */

.booking_engine_2021_send_rate_request_form_input_group_dates .select-selected:after,
.booking_engine_2021_subscription_form_details_group .select-selected:after {
    position: absolute;
    content: "";
    top: 62%;
    transform: translateY(-50%);
    right: 3px;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-color: #000 transparent transparent transparent;
    transition: 0.2s all ease-in-out;
}


/* Point the arrow upwards when the select box is open (active): */

.booking_engine_2021_send_rate_request_form_input_group_dates .select-selected.select-arrow-active:after,
.booking_engine_2021_subscription_form_details_group .select-selected.select-arrow-active:after {
    transform: translateY(-50%) rotate( 90deg);
    top: 50%;
    transition: 0.2s all ease-in-out;
    right: 5px;
}


/* style the items (options), including the selected item: */

.booking_engine_2021_send_rate_request_form_input_group_dates .select-items div,
.booking_engine_2021_subscription_form_details_group .select-items div {
    border: none;
    color: #000;
    padding: 5px 0px;
    cursor: pointer;
    font: 400 calc(var(--be_2021_menu_titles_font_size) + 0.1vmax) var(--be_2021_font);
}

.booking_engine_2021_send_rate_request_form_input_group_dates .select-selected,
.booking_engine_2021_subscription_form_details_group .select-selected {
    outline: none;
    border-radius: 0px;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #aaa;
    color: #222;
    text-align: left;
    text-transform: none;
    padding: 14px 0 7px 5px;
    font: 300 18px var(--be_2021_font);
    background-color: #fff;
    width: calc(100% - 10px);
    cursor: pointer;
}


/* Style items (options): */

.booking_engine_2021_send_rate_request_form_input_group_dates .select-items,
.booking_engine_2021_subscription_form_details_group .select-items {
    position: absolute;
    background-color: #fff;
    border: 1px solid #e7e7e7;
    width: 100%;
    top: 100%;
    right: 0;
    z-index: 99999;
    overflow-y: auto;
    max-height: 300px;
    left: 50%;
    transform: translateX(-50%);
}


/* Hide the items when the select box is closed: */

.booking_engine_2021_send_rate_request_form_input_group_dates .select-hide,
.booking_engine_2021_subscription_form_details_group .select-hide {
    display: none;
}

.booking_engine_2021_send_rate_request_form_input_group_dates .select-items div:hover,
.booking_engine_2021_send_rate_request_form_input_group_dates .same-as-selected,
.booking_engine_2021_subscription_form_details_group .select-items div:hover,
.booking_engine_2021_subscription_form_details_group .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.popup_divs_custom_select_css select {
    display: none;
}


/* ------------------------------------------------END CUSTOM SELECT TOP----------------------------------- */


/*-----------------------------------------CUSTOM SELECT-----------------------------------------------------*/


/* The container must be positioned relative: */

.popup_divs_custom_select_css,
.popup_divs_custom_select_css {
    position: relative;
    font-family: Arial;
}

.popup_divs_custom_select_css select,
.popup_divs_custom_select_css select {
    display: none;
    /*hide original SELECT element: */
}

.custom_select-selected {
    background-color: #fafafa;
}


/* Style the arrow inside the select element: */

.custom_select-selected:after {
    position: absolute;
    content: "";
    top: 62%;
    transform: translateY(-50%);
    right: 3px;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-color: #000 transparent transparent transparent;
    transition: 0.2s all ease-in-out;
}


/* Point the arrow upwards when the select box is open (active): */

.custom_select-selected.custom_select-arrow-active:after {
    transform: translateY(-50%) rotate( 90deg);
    top: 50%;
    transition: 0.2s all ease-in-out;
    right: 5px;
}


/* style the items (options), including the selected item: */

.custom_select-items div {
    border: none;
    color: #000;
    padding: 5px 0px;
    cursor: pointer;
    font: 400 calc(var(--be_2021_menu_titles_font_size) + 0.1vmax) var(--be_2021_font);
}

.custom_select-selected {
    outline: none;
    border-radius: 0px;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #aaa;
    color: #222;
    text-align: left;
    text-transform: none;
    padding: 14px 0 7px 5px;
    font: 300 18px var(--be_2021_font);
    background-color: #fff;
    width: calc(100% - 10px);
    cursor: pointer;
}


/* Style items (options): */

.custom_select-items {
    position: absolute;
    background-color: #fff;
    border: 1px solid #e7e7e7;
    width: 100%;
    top: 100%;
    right: 0;
    z-index: 99999;
    overflow-y: auto;
    max-height: 300px;
    left: 50%;
    transform: translateX(-50%);
}


/* Hide the items when the select box is closed: */

.custom_select-hide {
    display: none;
}

.custom_select-items div:hover,
.custom_same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.popup_divs_custom_select_css select {
    display: none;
}


/* ------------------------------------------------END CUSTOM SELECT TOP----------------------------------- */


/*------------CHECKBOXES-------------*/

.booking_engine_2021av_rooms_check_boxes {
    position: relative;
    width: 70%;
    margin: 0 auto 10px auto;
    font: 400 18px var(--be_2021_font);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: center;
}

.booking_engine_2021av_rooms_check_boxes_check {
    position: relative;
    padding: 0;
    margin: 0 10px 0 0;
    width: 20px;
    height: 20px;
    top: 0px;
}

.booking_engine_2021av_rooms_check_boxes_text {
    font: 400 18px var(--be_2021_font);
    position: relative;
    padding: 0;
    margin: 0;
}

.booking_engine_2021av_rooms_check_boxes_text_link {
    text-decoration: none;
    color: #0a4b9d;
    font: 400 18px var(--be_2021_font);
}

.engine_2021_email_newsletter,
.engine_2021_privacy_terms_check,
.engine_2021_gdpr_check,
.engine_2021_booking_conditions_check {
    width: 20px;
    height: 20px;
    margin: 4px 10px 0 10px;
}

.engine_2021_custom_checkbox {
    width: 20px;
    height: 20px;
}

.engine_2021_custom_checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: -2;
    padding: 0;
    margin: 0;
    display: none;
}

.engine_2021_custom_checkbox input[type="checkbox"]+label {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    /* border-radius: 50px; */
    margin: 0;
    cursor: pointer;
    /* background-color: rgba(10, 75, 157, 0.2); */
    outline: 1px solid rgba(10, 75, 157, 0.8);
    padding: 0;
    margin: 0;
    transition: .3s ease-in-out;
}

.engine_2021_custom_checkbox input[type="checkbox"]:checked+label {
    /* background-color: rgba(247, 143, 30, 0.2); */
    /* outline: 1px solid rgba(247, 143, 30, 0.8); */
    transition: .3s ease-in-out;
}

.engine_2021_custom_checkbox input[type="checkbox"]+label::before {
    /* border-radius: 50%; */
    /* content: ''; */
    /* box-shadow: -3px -3px 5px rgba(255, 255, 255, .5), 3px 3px 5px rgba(0, 0, 0, .25); */
    /* transform: scale(0, 0) rotate(0deg); */
    /* background-color: rgba(247, 143, 30, 1); */
    position: absolute;
    text-align: center;
    font: 600 15px var(--be_2021_font);
    content: '\2713';
    color: #fff;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #63bc01;
    color: #fff;
    transition: .3s ease-in-out;
    padding: 0;
    margin: 0;
    animation-name: input_checked_reversed;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-delay: 0s;
    animation-timing-function: ease-in-out;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

.engine_2021_custom_checkbox input[type="checkbox"]:checked+label::before {
    animation-name: input_checked;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-delay: 0s;
    animation-timing-function: ease-in-out;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

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

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


/*------------CHECKBOXES-------------*/

@media screen and (orientation:portrait) and (max-width: 1150px) {
    .booking_engine_2021_language_selector_item,
    .booking_engine_2021_currency_selector_item {
        flex: 1 0 33%;
        max-width: unset;
    }
    .booking_engine_2021_language_selector_container,
    .booking_engine_2021_currency_selector_container {
        width: calc(100% - 40px);
        height: 100%;
        position: relative;
        background-color: #fff;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 10px;
        border: 0.5px solid var(--be_2021_color);
        padding: 20px;
    }
    .booking_engine_2021_language_selector_item_hyperlink,
    .booking_engine_2021_currency_selector_item_hyperlink {
        padding: 10px;
        font: 400 25px var(--be_2021_font);
        color: var(--be_2021_color);
        text-decoration: none;
        text-align: left;
        border: 0.5px solid transparent;
        border-radius: 15px;
        text-align: center;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .be_2021_mobile_select_label {
        top: -12px!important;
    }
    .booking_engine_2021_popup2_container {
        width: 100%;
        /* height: 100%; */
        position: relative;
        background-color: #fff;
        left: 50%;
        top: 0%;
        margin-top: 0;
        transform: translateX( -50%);
    }
    .booking_engine_2021_popup2_container_room_details_item {
        flex: 0 1 50%;
        position: relative;
        text-align: center;
        margin: 0 0 10px 0;
    }
    .booking_engine_2021_room_popup_right_side_amenities {
        width: 100%;
        position: relative;
        text-align: left;
        margin: 0 auto;
        /* border-top: 0.5px solid #104c97; */
        /* border-bottom: 0.5px solid #104c97; */
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-start;
        justify-content: space-between;
        align-items: flex-start;
    }
    .booking_engine_2021_room_popup_right_side_amenities_item {
        flex: 0 1 22%;
        position: relative;
        margin: 0 0px;
        padding: 0px 0 0 0;
        text-align: center;
    }
    .booking_engine_2021_room_popup_right_side_amenities_item_explain {
        word-break: break-word;
    }
    .booking_engine_2021_offer_with_discount_container {
        width: 100%;
        height: 100%;
        position: relative;
        background-color: #fff;
        left: 50%;
        top: 0%;
        margin-top: 0px;
        transform: translateX( -50%);
        max-height: 100%;
    }
    .booking_engine_2021_popup2_container_offer_old_price,
    .booking_engine_2021_popup2_container_offer_new_price,
    .booking_engine_2021_popup2_container_offer_upgrade,
    .booking_engine_2021_popup2_container_offer_book {
        flex: 0 1 40%;
    }
    .booking_engine_2021av_rooms_check_boxes {
        width: 90%;
    }
    .booking_engine_2021_popup2_container_offer_name_offer {
        color: #0a4b9d;
        font: 400 var(--be_2021_mobile_22_px) var(--be_2021_font);
        background-color: rgba(162, 159, 156, 0.3);
    }
    .booking_engine_2021_popup2_container_offer_old_price_ammount,
    .booking_engine_2021_popup2_container_offer_new_price_ammount {
        font: 600 var(--be_2021_mobile_35_px) var(--be_2021_font);
    }
}

@media screen and (orientation:landscape) and (max-width: 1350px) {
    .booking_engine_2021_language_selector_item,
    .booking_engine_2021_currency_selector_item {
        flex: 1 0 33%;
        max-width: unset;
    }
    .booking_engine_2021_language_selector_container,
    .booking_engine_2021_currency_selector_container {
        width: calc(100% - 40px);
        height: 100%;
        position: relative;
        background-color: #fff;
        top: 0;
        left: 0;
        transform: unset;
        border-radius: 0px;
        border: unset;
        padding: 20px;
    }
    .booking_engine_2021_language_selector_item_hyperlink {
        padding: 10px;
        font: 400 25px var(--be_2021_font);
        color: var(--be_2021_color);
        text-decoration: none;
        text-align: left;
        border: 0.5px solid transparent;
        border-radius: 15px;
        text-align: center;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .booking_engine_2021_currency_selector_item_hyperlink {
        padding: 10px;
        font: 400 25px var(--be_2021_font);
        color: var(--be_2021_color);
        text-decoration: none;
        text-align: center;
        border: 0.5px solid transparent;
        border-radius: 15px;
        text-align: center;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .be_2021_mobile_select_label {
        top: -12px!important;
    }
    .booking_engine_2021_popup2_container {
        width: 100%;
        position: relative;
        background-color: #fff;
        left: 50%;
        top: 0%;
        margin-top: 0px;
        transform: translateX( -50%);
    }
    .booking_engine_2021_popup2_container_slider {
        height: 80%;
        overflow: hidden;
    }
    .booking_engine_2021_popup2_container_room_details_item {
        flex: 0 1 50%;
        position: relative;
        text-align: center;
        margin: 0 0 10px 0;
    }
    .booking_engine_2021_room_popup_right_side_amenities {
        width: 100%;
        position: relative;
        text-align: left;
        margin: 0 auto;
        /* border-top: 0.5px solid #104c97; */
        /* border-bottom: 0.5px solid #104c97; */
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-start;
        justify-content: space-between;
        align-items: flex-start;
    }
    .booking_engine_2021_room_popup_right_side_amenities_item {
        flex: 0 1 18%;
        position: relative;
        margin: 0 0px;
        padding: 0px 0 0 0;
        text-align: center;
    }
    .booking_engine_2021_room_popup_right_side_amenities_item_explain {
        word-break: break-word;
    }
    .booking_engine_2021_offer_with_discount_container {
        width: 100%;
        position: relative;
        background-color: #fff;
        left: 50%;
        top: 0%;
        margin-top: 0px;
        transform: translateX( -50%);
        max-height: 100%;
    }
    .booking_engine_2021offer_with_discount_popup_rest_img {
        width: 100%;
        position: relative;
    }
    .booking_engine_2021offer_with_discount_popup_rest_img_item {
        width: 100%;
        position: relative;
    }
    .booking_engine_2021_popup2_container_offer_old_price,
    .booking_engine_2021_popup2_container_offer_new_price,
    .booking_engine_2021_popup2_container_offer_upgrade,
    .booking_engine_2021_popup2_container_offer_book {
        flex: 0 1 40%;
    }
    .booking_engine_2021av_rooms_check_boxes {
        width: 90%;
    }
    .booking_engine_2021_room_popup_right_side_amenities_item_img {
        width: 20%;
        position: relative;
    }
    .booking_engine_2021_popup2_container_offer_name_offer {
        color: #0a4b9d;
        font: 400 var(--be_2021_mobile_20_px) var(--be_2021_font);
        background-color: rgba(162, 159, 156, 0.3);
    }
    .booking_engine_2021_popup2_container_offer_old_price_ammount,
    .booking_engine_2021_popup2_container_offer_new_price_ammount {
        font: 600 var(--be_2021_mobile_35_px) var(--be_2021_font);
    }
}

@media screen and (min-width: 1151px) and (max-width: 1399px) {
    .booking_engine_2021_popup2_container {
        width: 70%;
    }
    .booking_engine_2021_language_selector_item_hyperlink,
    .booking_engine_2021_currency_selector_item_hyperlink {
        font: 400 16px var(--be_2021_font);
    }
    .booking_engine_2021_language_selector_container,
    .booking_engine_2021_currency_selector_container {
        padding: 20px 20px 0 20px;
        overflow: hidden;
    }
    .booking_engine_2021_popup2_container_offer_old_price,
    .booking_engine_2021_popup2_container_offer_new_price {
        flex: 0 1 40%;
    }
    .booking_engine_2021_popup2_container_offer_old_price_ammount {
        text-align: center;
        text-decoration: line-through;
        font: 600 25px var(--be_2021_font);
    }
    .booking_engine_2021_popup2_container_offer_new_price_ammount {
        font: 600 25px var(--be_2021_font);
    }
    .booking_engine_2021_popup2_container_offer_book {
        flex: 0 1 30%;
        font: 300 17px var(--be_2021_font);
        padding: 4.5px 1px 7.5px 1px;
    }
    .booking_engine_2021_popup2_container_offer_upgrade {
        flex: 0 1 30%;
        font: 300 17px var(--be_2021_font);
        padding: 4.5px 1px 7.5px 1px;
    }
    .booking_engine_2021_room_popup_right_side_amenities_item {
        flex: 0 1 12%;
        margin: 0 1%;
        padding: 1% 0 0 0;
    }
    .booking_engine_2021_room_popup_right_side_amenities_item_img {
        width: 36%;
        position: relative;
    }
    .booking_engine_2021_room_popup_right_side_amenities_item_explain {
        word-break: break-word;
        font: 300 13.9px var(--be_2021_font);
    }
}

.be_2021_send_fail_icon {
    width: 150px;
    height: 150px;
    position: relative;
    margin: 10px auto;
    display: block;
}

.be_2021_send_fail_icon path {
    fill: #f00;
}

.booking_engine_2021_popup2_container_title_text.rooms_popup {
    color: #0a4b9d;
    text-align: center;
    margin: 20px 5% 20px 5% !important;
    padding: 0;
    width: 90%;
    float: unset;
}