.home-banner-items .overlay {
    background-color: rgba(21, 21, 21, 0.73);
}

.header-primary {
    position: unset;
    border-bottom: 1px solid #dcdfe4;
}

.activity-bg-image {
    margin-bottom: unset;
}

.top-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fc8e14;
}

.header-social a, .header-contact-info ul li a {
    color: #fff
}

.main-navigation ul > li > a {
    color: #1a2b49
}

.breadcrumb-item + .breadcrumb-item::before {
    float: right;
    margin-top: 1px;
    transform: rotate(180deg);
    padding-right: var(--bs-breadcrumb-item-padding-x);
    padding-left: unset;
}


.demo-btn {
    display: inline-block;
    margin: 0 2.5px 4vh 2.5px;
    text-decoration: none;
    color: grey;
    padding: 15px;
    line-height: 1;
    min-width: 140px;
    background: rgba(0, 0, 0, 0.07);
    border-radius: 6px;
}

.demo-btn:hover {
    background: rgba(0, 0, 0, 0.12);
}

@media (max-width: 640px) {

    .demo-btn {
        min-width: 0;
        font-size: 14px;
    }

}

/*
==========================================
2. Responsive Photo Gallery
==========================================
*/
.m-p-g {
    max-width: 100%;
    margin: 0 auto;
}

.m-p-g__thumbs-img {
    margin: 0;
    float: left;
    vertical-align: bottom;
    cursor: pointer;
    z-index: 1;
    position: relative;
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
    -webkit-tap-highlight-color: transparent;
    will-change: opacity, transform;
    -webkit-transition: all .5s cubic-bezier(.23, 1, .32, 1);
    transition: all .5s cubic-bezier(.23, 1, .32, 1);
    object-fit: cover;
}

.m-p-g__thumbs-img.active {
    z-index: 50;
}

.m-p-g__thumbs-img.layout-completed {
    opacity: 1;
}

.m-p-g__thumbs-img.hide {
    opacity: 0;
}

.m-p-g__thumbs-img:hover {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
}

.m-p-g__fullscreen {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: 0 0;
    visibility: hidden;
    -webkit-transition: background .25s ease-out, visibility 10ms .5s linear;
    transition: background .25s ease-out, visibility 10ms .5s linear;
    will-change: background, visibility;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.m-p-g__fullscreen.active {
    -webkit-transition: background .25s ease-out, visibility .01s 0s linear;
    transition: background .25s ease-out, visibility .01s 0s linear;
    visibility: visible;
    background: rgba(0, 0, 0, .95);
}

.m-p-g__fullscreen-img {
    pointer-events: none;
    position: absolute;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    top: 50%;
    left: 50%;
    max-height: 100vh;
    max-width: 100%;
    visibility: hidden;
    will-change: visibility;
    -webkit-transition: opacity .5s ease-out;
    transition: opacity .5s ease-out;
}

.m-p-g__fullscreen-img.active {
    visibility: visible;
    opacity: 1 !important;
    -webkit-transition: -webkit-transform .5s cubic-bezier(.23, 1, .32, 1), opacity .5s ease-out;
    transition: transform .5s cubic-bezier(.23, 1, .32, 1), opacity .5s ease-out;
}

.m-p-g__fullscreen-img.almost-active {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
}

.m-p-g__controls {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    height: 20vh;
    background: -webkit-linear-gradient(bottom, transparent 0, rgba(0, 0, 0, .55) 100%);
    background: linear-gradient(to top, transparent 0, rgba(0, 0, 0, .55) 100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s cubic-bezier(.23, 1, .32, 1);
    transition: all .5s cubic-bezier(.23, 1, .32, 1);
}

.m-p-g__controls-arrow, .m-p-g__controls-close {
    position: absolute;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.m-p-g__controls.active {
    opacity: 1;
    visibility: visible;
}

.m-p-g__controls-arrow, .m-p-g__controls-close {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background: 0 0;
}

.m-p-g__controls-arrow:focus, .m-p-g__controls-close:focus {
    outline: 0;
}

.m-p-g__controls-arrow {
    z-index: 1;
    top: 0;
    width: 20%;
    height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
}

.m-p-g__controls-arrow:hover {
    opacity: 1;
}

.m-p-g__controls-arrow--prev {
    left: 0;
    padding-left: 3vw;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.m-p-g__controls-arrow--next {
    right: 0;
    padding-right: 3vw;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.m-p-g__controls-close {
    top: 3vh;
    left: 3vw;
    z-index: 5;
}

.m-p-g__btn {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

.m-p-g__btn:hover {
    background: rgba(255, 255, 255, .15);
}

.m-p-g__alertBox {
    position: fixed;
    z-index: 999;
    max-width: 700px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 25px;
    border-radius: 3px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .23), 0 10px 40px rgba(0, 0, 0, .19);
    color: grey;
}

.m-p-g__alertBox h2 {
    color: red;
}

/*end*/

.m-p-g__fullscreen.active {
    z-index: 9999;
}

.m-p-g__controls.active {
    z-index: 9999999;
}

.cruise_trip_header_gallery {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: -ms-grid;
    display: grid;
    gap: 10px 8px;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    -ms-grid-columns: minmax(0, 3.3fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-template-columns: minmax(0, 3.3fr) minmax(0, 1fr) minmax(0, 1fr);
    height: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.cruise_trip_header_gallery > figure:nth-of-type(3), .cruise_trip_header_gallery > figure:nth-of-type(5) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
}

.css-k7n781 {
    height: 100%;
    max-height: 192px;
    cursor: pointer;
    margin: 0;
    object-fit: cover;
    -webkit-background-size: cover;
    background-size: cover;
    -webkit-background-position: center;
    background-position: center;
    position: relative;
}

.css-1z1096a {
    height: 100%;
    max-height: 394px !important;
    min-width: 100%;
    cursor: pointer;
    margin: 0;
    -webkit-background-size: cover;
    background-size: cover;
    -webkit-background-position: center;
    background-position: center;
    position: relative;
    -ms-grid-row: 1/-1;
    grid-row: 1/-1;
}


@media (max-width: 768px) {
    .css-1z1096a{
        max-height: 192px !important;
    }
    .css-k7n781{
        width: 100%;
    }
    .cruise_trip_header_gallery {
        grid-template-columns: minmax(0, 2fr) minmax(0, 2fr) minmax(0, 0fr) !important;
        grid-template-rows: 1fr !important;
    }

    .cruise_trip_header_gallery img:nth-child(2) {
        border-top-left-radius: 8px;
    }

    .cruise_trip_header_gallery img:nth-child(5) {
        border-bottom-left-radius: 8px;
    }
}

.section-heading h1 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    line-height: 4rem;
}


.video_images {
    background-size: cover;
    aspect-ratio: 16/9;


}
.video_images .image_overlay {
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(1.4px);
    -webkit-backdrop-filter: blur(1.4px);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.video_images button {
    display: block;
    width: 80px;
    height: 80px;
    font-size: 2em;
    text-transform: uppercase;
    text-align: center;
    color: white;
    border: none;
    border-radius: 50%;
    background: #fc8e14;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(245, 105, 96, 0.5);
    -webkit-animation: pulse 1.5s infinite;
}

.video_images:hover {
    -webkit-animation: none;
}

@-webkit-keyframes pulse {
    0% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    70% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
    }
    100% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    }
}




/*edit navbar logo and menu color*/
.white-logo{
    display: none !important;
}
.black-logo{
    display: block !important;
}
.slicknav_menutxt{
    color: #212121 !important;
}
.slicknav_btn .slicknav_icon span,.slicknav_btn .slicknav_icon span:first-child:before, .slicknav_btn .slicknav_icon span:first-child:after{
    background-color: #212121 !important;
}


.last_image_container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.css-k7n781 p{
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    font-weight: 700;
    opacity: 1;
}
@media (max-width: 600px){
    .css-k7n781 p{
        font-size: 1.5rem !important;
    }
}
.last_image{
    opacity: .3 !important;
}

.modal{
    right: unset !important;
}
.ui.longer.modal{
    width: 85%;
}

@media (max-width:1000px ) {
    .ui.longer.modal{
        width: 95%;
    }
}

.ui.modal .scrolling.content{
    max-height: unset;
}


.mixitup_btn_container button {
    background-color: #fc8e14;
    color: #ffffff;
    width: 100%;
    margin: 10px 0;
    line-height: 1.3;
    font-weight: 600;
    padding: 10px 20px;
    border: unset;
    border-radius: 3px;
    transition: background-color .5s ease-in-out;
}

.mixitup_btn_container .filter_active, .mixitup_btn_container button:hover {
    background-color: #003c6a;
}

.modal .header{
    font-family: 'Cairo', sans-serif !important;
}
/*.modal img{*/
/*    transition: all .3s ease-in-out;*/
/*    cursor: pointer;*/
/*}*/
/*.modal img:hover{*/
/*    !*transform: scale(1.5);*!*/
/*}*/

.slick-slide { float: left; }

.trip_title{

}




.p_sub_title{
    font-weight: 700;
    color:#4c639d;
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.hotel_facilities .p_sub_title{
    box-shadow: 0px 0px 7px #fb8413ab;
    border-radius: 8px;
    padding: 7px 10px;
    background-color: #fb8e13b0;
    color: #fff;
}


* {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

.title {
    margin-top: 50px;
}
.title h1 {
    text-align: center;
    margin: 0;
    padding: 0;
    font-family: Arial;
    text-transform: uppercase;
    color: #d63031;
}
.title h1 span {
    display: block;
    color: #300a0a;
    font-size: 20px;
    margin-bottom: 10px;
}

/*Carousel Gallery*/
.carousel-gallery {
    margin: 50px 0;
    padding: 0 30px;
}
.trip_images a {
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    -webkit-box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, 0.2);
}
.trip_images a:hover .image .overlay {
    opacity: 1;
}
.trip_images a .image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}
.trip_images a .image .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.8);
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.trip_images a .image .overlay em {
    color: #fff;
    font-size: 26px;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
}

/************************************************
**************** Trip sub content **************
 ***********************************************/
.side_page_container{
    position: sticky;
    top: 79px;
}
.sub_content .trip_main_services h3{
    font-size: 1rem;
    font-weight: 800;
    padding-bottom: 10px;
    border-bottom: 1px solid #d8dce4;
}
.sub_content .trip_main_services ul{
    list-style: none;
    margin: 20px 0;
    padding: 0;
}
.sub_content .trip_main_services ul li img{
    display: inline-block;
    width: 1.6rem;
    margin-left: 10px;
    margin-bottom: 1px;
}
.sub_content .trip_main_services ul li{
    font-size: .8rem;
    font-weight: 700;
    line-height: 26px;
    margin: 8px 0;
    color: #2a328f;
    display:flex !important;
    margin-bottom: 11px;
    align-items: center;
}

.ui.visible.right.sidebar ~ .fixed, .ui.visible.right.sidebar ~ .pusher{
    transform: translate3d(0, 0, 0) !important;
}
.tour_swiper{
    overflow: hidden;
}

/************************************************
**************** top card items *****************
************************************************/
.top_card_items{
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e5e4f0;
    box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    margin-bottom: 20px;
}
.top_card_items h3{
    color:#504e70;
    font-size: 16px;
    font-weight: 600;
    padding-top: 10px;
    margin-bottom: 0;
    text-align: center;
}
.top_card_items p{
    font-size: .9rem;
    color: #74706e;
    font-weight: 500;
    padding: 8px 0;
    text-align: center;
}
.top_card_items .image_container{
    background-color:rgba(35, 188, 185, 0.1) !important;
    padding: 20px 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.top_card_items .image_container img{
    width: 40%;
    display: block;
    margin: auto;
}


/************************************************
**************** Trip main content **************
************************************************/
.main_content , .sub_content{
    background-color: #fff;
    padding: 8px 10px;
    border-radius: 9px;
    border: 1px solid #e7e7e7;
    box-shadow: 1px 1px 8px 10px rgb(0 0 0 / 4%);
}
.main_content .description .trip_description{
    line-height: 1.375rem;
    color: #1a2b49;
    font-weight: 600;
}
.main_content .description h3,.main_content .trip_program h3{
    font-size: 1.4rem;
    font-weight: 800;
    padding-bottom: 10px;
    border-bottom: 1px solid #d8dce4;
    display: flex;
}
.main_content h3 i{
    display: inline-block;
    margin-top: 4px;
    margin-left: 7px;
    font-size: 1.6rem;
}
.main_content .trip_program{
    margin-top: 35px;
}
.main_content .trip_program .program_tiny_text{
    font-size: 1rem;
    color: #888;
    margin-bottom: 0;
}
.special-item .special-content{
    margin-top: -42px !important;
    border-radius: 8px;
}
.trip_program .special-img img{
    border-radius: 8px;
}
.meta-cat a{
    font-size: 1rem !important;
}
.main_content .trip_program .special-content h3{
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.main_content .trip_program .special-content p{
    font-size: .85rem;
    font-weight: 500;
    color:#555555;
}
del {
    text-decoration: line-through;
    font-size: .9rem;
    font-weight: 700;
}
.details_icon{
    width: 25px;
    margin-left: 10px;
    display: inline-block;
}


.main_content .hotel_facilities h3{
    font-size:1.4rem;
    font-weight: 800;
    padding-bottom: 10px;
    border-bottom: 1px solid #d8dce4;
    display: flex;
}


@media (max-width: 576px) {
    .trip_program .timeline-content {
        margin-right: unset !important;
        padding: 20px !important;
        border-radius: 10px;
    }

    .trip_program .day-count {
        height: 60px !important;
        width: 60px !important;
    }

    .trip_program .day-count span {
        line-height: 1.2;
        font-size: 21px;
    }
}

.trip_program .day-count{
    left: unset;
    right: -25px !important;
}
.trip_program .timeline-content{
    margin-left: unset;
    margin-right: 24px;
    padding: 25px 50px 25px 25px;
}
#pills-program{
    outline: none;
}
.ui.left.sidebar, .ui.right.sidebar{
    width: 30%;
}
@media(max-width: 767px){
    .ui.left.sidebar, .ui.right.sidebar{
        width: 50%;
    }
}
@media(max-width: 400px){
    .ui.left.sidebar, .ui.right.sidebar{
        width: 80%;
    }
}



.trip_prices{
    background-color: #fff;
    margin: 15px 0;
    padding: 18px 10px;
    border-radius: 9px;
    border: 1px solid #e7e7e7;
    box-shadow: 1px 1px 8px 10px rgb(0 0 0 / 4%);
}
.trip_prices h3 {
    color: rgb(16, 31, 70);
    padding-bottom: 15px;
    font-weight: 700;
    border-bottom: 1px solid #d8dce4;
    margin-bottom: 15px;
}

.table_sub_title {
    display: none;
    color: rgb(16, 31, 70);
    font-weight: 700;
}

@media (max-width: 768px) {
    .ui.celled.table thead {
        display: none;

    }
    .ui.celled.table tbody td{
        width: 100% !important;
        margin: 10px 0;
    }
    .table_sub_title {
        display: block !important;
        margin-bottom: 8px;
    }
    .description_container{
        display: block !important;
    }
}

.category_services_presentation{
    text-align: center;
    margin: 15px 10px;
}
.category_services_presentation h3{
    margin-top: 8px;
    font-size: 1.1rem;
}

.ui.selection.dropdown > .delete.icon, .ui.selection.dropdown > .dropdown.icon, .ui.selection.dropdown > .search.icon{
    left: unset !important;
    right: 1em !important ;
}

.description_container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/************************************************
**************** Trip tour loader **************
************************************************/


.cards {
    background: #fff;
    height: auto;
    width: auto;
    overflow: hidden;
    box-shadow: 5px 8px 15px -10px rgba(0,0,0,0.25);
}
.card_image {
    width: 100%;
    height: 100%;
    min-height: 350px;
}
.card_image.loading {
    width: 100%;
    height: 100%;
}
.card_title {
    padding: 8px;
    font-size: 22px;
    font-weight: 700;
}
.card_title.loading {
    width: 85%;
    height: 2rem;
    margin: 1rem;
    border-radius: 3px;
    position: relative;
}
.card_tiny_title {
    padding: 8px;
    font-size: 22px;
    font-weight: 700;
}
.card_tiny_title.loading {
    width: 40%;
    height: 1.3rem;
    margin: 1rem;
    border-radius: 3px;
    position: relative;
}
.card_second_tiny_title {
    padding: 8px;
    font-size: 22px;
    font-weight: 700;
}
.card_second_tiny_title.loading {
    width: 63%;
    height: 1.3rem;
    margin: 1rem;
    border-radius: 3px;
    position: relative;
}
.card_button {
    padding: 8px;
    font-size: 22px;
    font-weight: 700;
}
.card_button.loading {
    width: 95%;
    height: 2.5rem;
    margin: 1rem;
    border-radius: 3px;
    position: relative;
}
.card_description {
    padding: 8px;
    font-size: 16px;
}
.card_description.loading {
    height: 7rem;
    margin: 0 1rem;
    border-radius: 3px;
}
.loading {
    position: relative;
    background: #cccccc;
}
.loading:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100px);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: loading 0.8s infinite;
}
@keyframes loading {
    100% {
        transform: translateX(100%);
    }
}





/************************************************
**************** Trip tour content **************
************************************************/
.tour_sidebar_section .section_header{
    background-color: #f9f9f9;
    margin-bottom: 5px;
    border-bottom: 1px solid #efefef;
    box-shadow: 0 3px 8px rgba(0,0,0,.12);
    position: sticky;
    top: 0;
    height: 50px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tour_sidebar_section .section_header p{
    margin-bottom: 0;
    font-size: 1.4rem;
    font-weight: 600;
}
.tour_sidebar_section .section_header button{
    position: absolute;
    background-color: transparent;
    top: 11px;
    left: 10px;
    outline: none;
    border: none;
    font-size: 1.7rem;
    color: red;
}
.tour_sidebar_section .tour_image img{
    border-radius: 5px;
}
.tour_sidebar_section .tour_content .tour_title{
    font-size: 2rem;
    text-align: right;
    font-weight: 800;
    margin-bottom: 5px;
    padding-top: 15px;
}
.tour_sidebar_section .tour_content .summary{
    font-size: .9rem;
    font-weight: 400;
    color: #938b8b;
    line-height: 1.5rem;
}
.tour_sidebar_section .tour_content .tiny_info p{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.tour_sidebar_section .tour_content .tiny_info p i{
    font-size: 1.2rem;
    display: inline-block;
    margin-left: 5px;
    color:#c1c2c4 !important;
}
.tour_sidebar_section .tour_content .tiny_info p span{
    font-weight: 800;
    font-size: 1.1rem;
}
.tour_sidebar_section .all_tour_details {
    margin-top: 30px;

}

.tour_sidebar_section .all_tour_details h3 {
    padding-top: 15px;
    direction: rtl;
    font-size: 1.35rem;
    line-height: 30px;
    box-shadow: 0 -1px 0 0 #D7D4D2;
}

.tour_sidebar_section .all_tour_details p {
    padding-bottom: 10px;
}
.tour_sidebar_section .details_big_icon {
    width: 30px;
    display: inline-block;
    margin-left: 5px;
}
@media(max-width: 600px){
    .tour_sidebar_section .all_tour_details h3 {
        font-size: 1.02rem;
    }
}






.room_facilities_content .room_facilities_list ul, .hotel_sub_services_content .hotel_sub_services_list ul, .outdoor_facilities_content .outdoor_facilities_list ul,.additional_services .free_charge ul,.additional_services .sur_charge ul{
    display: flex;
    flex-wrap: wrap;
    list-style: unset;
    justify-content: space-between;
}
.room_facilities_content .room_facilities_list ul li,.hotel_sub_services_content .hotel_sub_services_list ul li,.outdoor_facilities_content .outdoor_facilities_list ul li{
    font-weight: 600;
    font-size: 1rem;
    color:#1f256c;
    position: relative;
    width: 100%;
    padding-right: 5px;
    line-height: 1.96rem;
}
.room_facilities_content .room_facilities_list ul li::marker,.hotel_sub_services_content .hotel_sub_services_list ul li::marker,.outdoor_facilities_content .outdoor_facilities_list ul li::marker{
    color: #13a47b;
    content:'\2714';
    margin: 0px 20px;
    font-size: 1.2rem;
}


.title-icon-divider{
    padding-bottom: 25px;
}


@media (max-width: 767px) {
    .room_facilities_content .room_facilities_list ul li,.hotel_sub_services_content .hotel_sub_services_list ul li,.outdoor_facilities_content .outdoor_facilities_list ul li{
        width: 46%;
    }
    .sub_content .trip_main_services ul{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .sub_content .trip_main_services ul li{
        width: 46%;

    }
    .fancybox-thumbs {
        top: auto !important;
        width: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 175px !important;
        padding: 10px 10px 5px 10px !important;
        box-sizing: border-box !important;
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 0 !important;
        bottom: 95px !important;
    }
    .fancybox-thumbs>ul>li{
        float: right;
    }
}
@media (max-width: 600px) {
    .near_place_item{
        width: 100% !important;
    }
}

.sub_content .hotel_location h3{
    font-size: 1.2rem;
    font-weight: 800;
    padding-bottom: 10px;
    border-bottom: 1px solid #d8dce4;
}

.hotel_location .location img{
    width: 100%;
    display: block;
    cursor: pointer;
}

.map_modal{
    width: 90% !important;
    height: 95% !important;
}

.check_time{
    height: auto !important;
}

.check_time h4{
    color: #04172a;
    font-size: 1rem;
}
.check_time p{
    color: #4183c4;
    font-size: 1.4rem;
    font-weight: 600;
}




/*start additional services*/
.main_content .additional_services h3{
    font-size: 1.4rem;
    font-weight: 800;
    padding-bottom: 10px;
    border-bottom: 1px solid #d8dce4;
    display: flex;
}
.additional_services .free_charge .free_charge_content p, .additional_services .sur_charge .sur_charge_content p{
    font-weight: 600;
    font-size: 1rem;
    color:#1f256c;
    line-height: 1.9rem;
}
.header_tips{
    display: flex;
    flex-wrap: nowrap;
}
.star_container{
    display: inline-block;
    font-size: 1.5rem;
    margin: 10px 0;
    margin-bottom: 20px;
}
@media (max-width: 700px) {
    .header_tips{
        flex-wrap: wrap;
    }
    .header_tips p {
        width: 45%;
        padding: 10px 5px;
    }
}
@media (max-width: 600px) {
    h1{
        font-size: 1.9rem;
    }
    .star_container{
        font-size: 1.2rem;
    }
}
@media (max-width: 400px) {
    .star_container{
        display: block;
        font-size: 1.5rem;
        margin: 10px 0;
    }
}
/*end additional services*/


/*start hotel_policies*/
.main_content .hotel_policies h3{
    font-size: 1.4rem;
    font-weight: 800;
    padding-bottom: 10px;
    border-bottom: 1px solid #d8dce4;
    display: flex;
}
.hotel_policies{
    line-height: 1.7rem;
}

/*end hotel_policies*/


/* start book section */
.shape-search-section .slider-shape,.shape-search-section .trip-search-inner{
    margin-top: unset !important;
}
.shape-search-section,.trip-search-section .trip-search-inner{
    position: unset;
}
.trip-search-section .trip-search-inner{
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    padding:36px 10px 42px ;
}
.trip-search-section.shape-search-section{
    margin: 35px 0;
}
table thead tr{
    background-color: unset;
}
#wrapper {
    background: #ccc;
    overflow: hidden;
    transition: height 200ms;
}

.filter_customers{
    background-color: #fff;
    border-radius: 10px;
    width: 700px;
    padding: 30px;
}


.quantity.buttons_added {
    text-align: left;
    display: flex;
    position: relative;
    white-space: nowrap;
    vertical-align: top;
}

.quantity.buttons_added input {
    display: inline-block;
    margin: 0;
    vertical-align: top;
    box-shadow: none;
}

.quantity.buttons_added .minus,
.quantity.buttons_added .plus {
    padding: 5px 0px 8px;
    height: 41px;
    background-color: #003c6a;
    border: 1px solid #efefef;
    cursor: pointer;
    border-radius: 5px !important;
}

.quantity.buttons_added .minus {
    border-right: 0;
}

.quantity.buttons_added .plus {
    border-left: 0;
}

.quantity.buttons_added .minus:hover,
.quantity.buttons_added .plus:hover {
    background: #fc8e14;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
}

.quantity.buttons_added .minus:focus,
.quantity.buttons_added .plus:focus {
    outline: none;
}


.children_age_title{
    line-height: 2.6rem;
    font-size: 1.1rem;
    text-align: right;
}
.childrens_ages_container{
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 30px;
    /*border-bottom: 1px solid rgba(0,0,0,.15);*/
}

.childrens_ages_container .childrens_ages .selection{
    text-align: right;
}
.room_number{
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 2.5rem;
}
.room_number .details_icon{
    width: 35px;
}

.delete_room{
    padding: 7px 10px;
    border-radius: 8px;
    background-color: #dc3545;
    color: #fff;
    border: unset;
    font-size: 1.2rem;
    position: absolute;
    outline: unset;
    width: 3rem;
    left: -6px;
    top: 6px;
    height: 3rem;
}
.ui.persons.modal{
    max-height: 90%;
    top: unset;
}
.modal_rooms_container .row{
    margin: auto;
}
.childrens_ages_container .childrens_ages .selection{
    width: 100%;
    min-width: unset;
}
.room{
    border: 1px solid rgba(0,0,0,.05);
    border-radius: 10px;
    padding: 5px 20px;
    box-shadow: 0px 18px 40px rgba(34, 35, 58, 0.19);
    margin-top: 20px!important;
    min-height: 20rem;
}
#add_new_room{
    cursor: pointer;
}
#add_new_room .add_room_inner_div{
    border: 3px solid #fc8e14;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    border-radius: 10px;
    padding: 5px 20px;
    box-shadow: 0px 0px 20px rgba(34, 35, 58, 0.19);
    margin-top: 20px!important;
    min-height: 21rem;
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
}
#add_new_room .add_room_inner_div h5{
    font-size: 2rem;
    font-weight: 800;
}
#add_new_room .add_room_inner_div h6{
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    text-align: center;
    line-height: 26px;
}
#add_new_room .add_room_inner_div h6 a{
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e70bf;
}
#add_new_room .add_room_inner_div img{
    width: 5rem;
}
@media(max-width: 500px){
    .room_number{
        margin-top: 20px;
    }
}
#confirm_modal{
    position: sticky;
    bottom: 0;
    width: 100%;
    margin-top: 26px;
}


/* room booking results */
.table_of_rooms{
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 20px 15px;
    border-radius:10px;
}
.search_type .ui.selection.dropdown{
    height: 50px;
    width: 100%;
    text-align: right;
    line-height: 3.5rem;
    padding: 0 10px !important;
}
.search_type .ui.selection.dropdown > .dropdown.icon{
    line-height: 1.9rem;
}
.price_col{
    font-size: .9rem;
    font-weight: 600;
    color: #777;
}
.price_value{
    margin-bottom: 0px !important;
    font-size: 1.4rem;
    font-weight: 800;
    padding: 8px 0;
    color: #0b0b0b;
    padding-top: 0 !important;
}
.price_col h5{
    padding-top: 20px;
}
.hidden_children_price{
    display: none;
}
.main_child_price{
    display: block;
}
.price_col ul{
    font-size: .9rem;
    color:#666;
    font-weight: 600;
    line-height: 31px;
}
.price_col ul strong{
    font-size: 1.2rem;
    color:#333;
    font-weight: 700;
}
.price_col h6{
    padding: 10px 0;
    font-weight: 500;
    font-size: 1rem;
}
.persons{
    line-height: 4rem;
    font-size: 1.3rem;
}
.room_facilities i{
    font-size:1.2rem;
}
.room_facilities{
    line-height: 2.3rem;
    max-width: 250px;
    font-size: 1rem;
}
.table_of_rooms .selection{
    text-align: right;
}
.ui.selection.dropdown{
    min-width: 5em !important;
    padding: .78571429em .7em .78571429em .7em !important;
}

.table_of_rooms tbody .room_name{
    font-size: 1.2rem;
    color: rgb(76, 99, 157);
    font-weight: 800;
    line-height: 2.1rem;
}


.table_of_rooms tbody .num_of_rooms p{
    display: none;
}

@media(max-width: 767px) {
    .table_of_rooms table thead {
        display: none !important;
    }

    .table_of_rooms tbody .room_name {
        font-size: 1.5rem;
        color: rgb(76, 99, 157);
        font-weight: 800;
    }
    .hidden_children_price{
        display: block;
    }
    .main_child_price{
        display: none !important;
    }
    .table_of_rooms tbody .persons {
        text-align: right !important;
    }

    .table_of_rooms tbody .room_facilities {
        min-width: 100% !important;
        margin: 0px 5px 10px 5px;
    }

    .ui.table:not(.unstackable) tr {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }

    .table_of_rooms tbody td{
        min-width: 100% !important;
    }
    .table_of_rooms tbody .room_name{
        min-width: 100% !important;
    }
    .table_of_rooms tbody .num_of_rooms{
        min-width: 42% !important;
        max-width: 50% !important;
    }
    .ui.table:not(.unstackable) tr td:last-of-type{
        border-right:1px solid #d8dce4 !important;
    }
    .table_of_rooms tbody .price_col{
        min-width: 50% !important;
        max-width: 50% !important;
    }
    .table_of_rooms tbody .num_of_rooms p{
        display: block;
        font-size: 1.1rem;
        margin-bottom: 3px;
        font-weight: 700;
        padding-top: 2px;
    }
    .persons br{
        display: none;
    }
    .persons{
        max-height: 65px;
        line-height: 15px;
    }

}

@media(max-width: 400px){
    .table_of_rooms tbody .num_of_rooms p{
        font-size: .95rem;
    }
    .price_col{
        font-size: .8rem;
    }
    .price_value{
        font-size: 1.1rem;
    }
}
/* search errors  */
.ui.message>.close.icon{
    right: unset !important;
    left: .5em !important;
}
.ui.message .list:not(.ui) li{
    margin: 0 1em 0.3em 0 !important;
}
.ui.message .list:not(.ui) li:before{
    left: unset !important;
    right: -1em !important;
}
.ui.message .list:not(.ui){
    text-align: right !important;
}



.cart_popup ol, .cart_popup ul {
    list-style: none;
}
.cart_popup blockquote, .cart_popup q {
    quotes: none;
}
.cart_popup blockquote:before, .cart_popup blockquote:after,
.cart_popup q:before, .cart_popup q:after {
    content: '';
    content: none;
}
.cart_popup table {
    border-collapse: collapse;
    border-spacing: 0;
}

.cart_popup .cd-add-to-cart {
    display: inline-block;
    padding: 1.2em 1.8em;
    background: #2c97de;
    border-radius: 50em;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: .1em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    -webkit-transition: all .2s;
    transition: all .2s;
}
.cart_popup .cd-add-to-cart:hover {
    background: #42a2e1;
}
.cart_popup .cd-add-to-cart:active {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

/* --------------------------------

Main Components

-------------------------------- */
.cart_popup .cd-cart-container::before {
    /* dark bg layer visible when the cart is open */
    content: '';
    position: fixed;
    z-index: 1;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .4s, visibility .4s;
    transition: opacity .4s, visibility .4s;
}

.cart_popup .cd-cart-container.cart-open::before {
    opacity: 1;
    visibility: visible;
}

.cd-cart-trigger,
.cd-cart {
    position: fixed;
    bottom: 20px;
    left: 5%;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    will-change: transform;
    backface-visibility: hidden;
}
.empty .cd-cart-trigger, .empty
.cd-cart {
    /* hide cart */
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
}
@media only screen and (min-width: 1170px) {
    .cd-cart-trigger,
    .cd-cart {
        bottom: 40px;
    }
}

.cd-cart-trigger {
    /* button that triggers the cart content */
    z-index: 3;
    height: 72px;
    width: 72px;
    /* replace text with image */
    text-indent: 100%;
    color: transparent;
    white-space: nowrap;
}
.cd-cart-trigger::after, .cd-cart-trigger::before {
    /* used to create the cart/'X' icon */
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 7px;
    height: 100%;
    width: 100%;
    background: #2d247a;
    -webkit-transition: opacity .2s, -webkit-transform .2s;
    transition: opacity .2s, -webkit-transform .2s;
    transition: opacity .2s, transform .2s;
    transition: opacity .2s, transform .2s, -webkit-transform .2s;
}
.cd-cart-trigger::after {
    /* 'X' icon */
    background-position: -72px 0;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(90deg);
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
}
.cart-open .cd-cart-trigger::before {
    opacity: 0;
}
.cart-open .cd-cart-trigger::after {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.cd-cart-trigger .count {
    /* number of items indicator */
    position: absolute;
    top: -10px;
    right: -10px;
    height: 28px;
    width: 28px;
    background: #e94b35;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    text-indent: 0;
    -webkit-transition: -webkit-transform .2s .5s;
    transition: -webkit-transform .2s .5s;
    transition: transform .2s .5s;
    transition: transform .2s .5s, -webkit-transform .2s .5s;
}
.cd-cart-trigger .count li {
    /* this is the number of items in the cart */
    position: absolute;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.cd-cart-trigger .count li:last-of-type {
    visibility: hidden;
}
.cd-cart-trigger .count.update-count li:last-of-type {
    -webkit-animation: cd-qty-enter .15s;
    animation: cd-qty-enter .15s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
}
.cd-cart-trigger .count.update-count li:first-of-type {
    -webkit-animation: cd-qty-leave .15s;
    animation: cd-qty-leave .15s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
}
.cart-open .cd-cart-trigger .count {
    -webkit-transition: -webkit-transform .2s 0s;
    transition: -webkit-transform .2s 0s;
    transition: transform .2s 0s;
    transition: transform .2s 0s, -webkit-transform .2s 0s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
.empty .cd-cart-trigger .count {
    /* fix bug - when cart is empty, do not animate count */
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.cd-cart-trigger:hover + div .wrapper {
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.3);
}
.cart-open .cd-cart-trigger:hover + div .wrapper {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.17);
}

.cd-cart {
    /* cart content */
    z-index: 2;
    width: 90%;
    max-width: 440px;
    height: 500px;
    max-height: 90%;
    pointer-events: none;
}
.cd-cart .wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
    height: 72px;
    width: 72px;
    border-radius: 6px;
    -webkit-transition: height .4s .1s, width  .4s .1s, box-shadow .3s;
    transition: height .4s .1s, width  .4s .1s, box-shadow .3s;
    -webkit-transition-timing-function: cubic-bezier(0.67, 0.17, 0.32, 0.95);
    transition-timing-function: cubic-bezier(0.67, 0.17, 0.32, 0.95);
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.17);
    pointer-events: auto;
}
.cd-cart header, .cd-cart footer {
    position: absolute;
    z-index: 2;
    left: 0;
    width: 100%;
}
.cd-cart header, .cd-cart .body {
    opacity: 0;
}
.cd-cart header {
    top: 0;
    border-radius: 6px 6px 0 0;
    padding: 0 1.4em;
    height: 40px;
    line-height: 40px;
    background-color: #ffffff;
    -webkit-transition: opacity .2s 0s;
    transition: opacity .2s 0s;
    border-bottom: 1px solid #e6e6e6;
}
.cd-cart header::after {
    clear: both;
    content: "";
    display: block;
}
.cd-cart footer {
    bottom: 0;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    background: #ffffff;
}
.cd-cart h2 {
    text-transform: uppercase;
    display: inline-block;
    font-weight: 700;
    letter-spacing: .1em;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 1rem !important;
    vertical-align: baseline;
}
.cd-cart .undo {
    float: right;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .2s, visibility .2s;
    transition: opacity .2s, visibility .2s;
    color: #808b97;
}
.cd-cart .undo a {
    text-decoration: underline;
    color: #2b3e51;
}
.cd-cart .undo a:hover {
    color: #2c97de;
}
.cd-cart .undo.visible {
    opacity: 1;
    visibility: visible;
}
.cd-cart .checkout {
    display: block;
    height: 72px;
    width: 81%;
    line-height: 72px;
    margin-left: 72px;
    background: #2c97de;
    color: rgba(255, 255, 255, 0);
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    -webkit-transition: all .2s 0s;
    transition: all .2s 0s;
}
@media (max-width: 450px) {
    .cd-cart .checkout{
        width: 75% !important;
        font-size: 1.3rem;
    }
}
.cd-cart .checkout:hover {
    background: #399ee0;
}
.cd-cart .checkout em {
    position: relative;
    display: inline-block;
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
    -webkit-transition: -webkit-transform 0s .2s;
    transition: -webkit-transform 0s .2s;
    transition: transform 0s .2s;
    transition: transform 0s .2s, -webkit-transform 0s .2s;
}
.cd-cart .checkout em::after {
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    content: '';
    height: 24px;
    width: 24px;
    background: url(../img/cd-icon-arrow-next.svg) no-repeat center center;
    opacity: 0;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
}
.cd-cart .body {
    position: relative;
    z-index: 1;
    height: calc(100% - 110px);
    /*padding: 20px 0 10px;*/
    padding: 0px 0 10px;
    margin: 40px 0 10px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
}
.cd-cart .body ul {
    overflow: hidden;
    padding: 0 1.4em;
    position: relative;
    padding-bottom: 90px;
}
.cd-cart .body li {
    position: relative;
    opacity: 0;
    -webkit-transform: translateX(80px);
    -ms-transform: translateX(80px);
    transform: translateX(80px);
    -webkit-transition: opacity 0s .2s, -webkit-transform 0s .2s;
    transition: opacity 0s .2s, -webkit-transform 0s .2s;
    transition: opacity 0s .2s, transform 0s .2s;
    transition: opacity 0s .2s, transform 0s .2s, -webkit-transform 0s .2s;
}
.cd-cart .body li::after {
    clear: both;
    content: "";
    display: block;
}
.cd-cart .body li:not(:last-of-type) {
    margin-bottom: 20px;
}
.cd-cart .body li.deleted {
    /* this class is added to an item when it is removed form the cart */
    position: absolute;
    left: 1.4em;
    width: calc(100% - 2.8em);
    opacity: 0;
    -webkit-animation: cd-item-slide-out .3s forwards;
    animation: cd-item-slide-out .3s forwards;
}
.cd-cart .body li.deleted.undo-deleted {
    /* used to reinsert an item deleted from the cart when user clicks 'Undo' */
    -webkit-animation: cd-item-slide-in .3s forwards;
    animation: cd-item-slide-in .3s forwards;
}
.cd-cart .body li.deleted + li {
    -webkit-animation: cd-item-move-up-mobile .3s;
    animation: cd-item-move-up-mobile .3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.cd-cart .body li.undo-deleted + li {
    -webkit-animation: cd-item-move-down-mobile .3s;
    animation: cd-item-move-down-mobile .3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.cd-cart .product-image {
    display: inline-block;
    float: left;
    /* the image height determines the height of the list item - in this case height = width */
    width: 50px;
}
.cd-cart .product-image img {
    display: block;
}
.cd-cart .product-details {
    position: relative;
    display: inline-block;
    float: right;
    width: calc( 100% - 50px);
    padding: 0.3em 0 0 0.5em;
}
.cd-cart .product-details::after {
    clear: both;
    content: "";
    display: block;
}
.cd-cart h3, .cd-cart .price {
    font-weight: bold;
}
.cd-cart h3 {
    width: 70%;
    float: left;
    /* truncate title with dots if too long */
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.cd-cart h3 a {
    color: #2b3e51;
}
.cd-cart h3 a:hover {
    color: #2c97de;
}
.cd-cart .price {
    float: right;
    width: 30%;
    text-align: right;
}
.cd-cart .actions {
    font-size: 1.4rem;
    height: 1.6em;
    line-height: 1.6em;
}
.cd-cart .actions::after {
    clear: both;
    content: "";
    display: block;
}
.cd-cart .delete-item, .cd-cart .quantity {
    float: left;
    color: #808b97;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.cd-cart .delete-item {
    margin-right: 1em;
}
.cd-cart .delete-item:hover {
    color: #e94b35;
}
.cd-cart .quantity label {
    display: inline-block;
    margin-right: .3em;
}
.cd-cart .select {
    position: relative;
}
.cd-cart .select::after {
    /* switcher arrow for select element */
    content: '';
    position: absolute;
    z-index: 1;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/cd-icon-select.svg) no-repeat center center;
    pointer-events: none;
}
.cd-cart select {
    position: relative;
    padding: 0 1em 0 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 1.4rem;
    margin: 0;
    color: #808b97;
}
.cd-cart select:focus {
    outline: none;
    color: #2b3e51;
    box-shadow: 0 1px 0 currentColor;
}
.cd-cart select::-ms-expand {
    /* hide default select arrow on IE */
    display: none;
}
.cart-open .cd-cart .wrapper {
    height: 100%;
    width: 100%;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
.cart-open .cd-cart header, .cart-open .cd-cart .body {
    opacity: 1;
}
.cart-open .cd-cart header {
    -webkit-transition: opacity .2s .2s;
    transition: opacity .2s .2s;
    text-align: right;
}
.cart-open .cd-cart .body {
    -webkit-transition: opacity 0s;
    transition: opacity 0s;
}
.cart-open .cd-cart .body li {
    -webkit-transition: opacity .3s .2s, -webkit-transform .3s .2s;
    transition: opacity .3s .2s, -webkit-transform .3s .2s;
    transition: transform .3s .2s, opacity .3s .2s;
    transition: transform .3s .2s, opacity .3s .2s, -webkit-transform .3s .2s;
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.cart-open .cd-cart .body li:nth-of-type(2) {
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
}
.cart-open .cd-cart .body li:nth-of-type(3) {
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}
.cart-open .cd-cart .body li:nth-of-type(4), .cart-open .cd-cart .body li:nth-of-type(5) {
    -webkit-transition-duration: .55s;
    transition-duration: .55s;
}
.cart-open .cd-cart .checkout {
    color: #ffffff;
    -webkit-transition: color .2s .3s;
    transition: color .2s .3s;
    line-height: 3.7rem;
}
.cart-open .cd-cart .checkout em {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: padding .2s 0s, -webkit-transform .2s .3s;
    transition: padding .2s 0s, -webkit-transform .2s .3s;
    transition: transform .2s .3s, padding .2s 0s;
    transition: transform .2s .3s, padding .2s 0s, -webkit-transform .2s .3s;
}
.cart-open .cd-cart .checkout:hover em {
    padding-right: 30px;
}
.cart-open .cd-cart .checkout:hover em::after {
    opacity: 1;
}
@media only screen and (min-width: 768px) {
    .cd-cart .body li:not(:last-of-type) {
        margin-bottom: 14px;
    }
    .cd-cart .body li.deleted + li {
        -webkit-animation: cd-item-move-up .3s;
        animation: cd-item-move-up .3s;
    }
    .cd-cart .body li.undo-deleted + li {
        -webkit-animation: cd-item-move-down .3s;
        animation: cd-item-move-down .3s;
    }
    .cd-cart .checkout {
        font-size: 2.4rem;
    }
    .cd-cart .product-image {
        width: 90px;
    }
    .cd-cart .product-details {
        padding: 1.4em 0 0 1em;
        width: calc( 100% - 90px);
    }
    .cd-cart h3, .cd-cart .price {
        font-size: 1.8rem;
    }
}

@-webkit-keyframes cd-qty-enter {
    0% {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }
}

@keyframes cd-qty-enter {
    0% {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }
}
@-webkit-keyframes cd-qty-leave {
    0% {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }
    100% {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateX(-50%) translateY(-100%);
        transform: translateX(-50%) translateY(-100%);
    }
}
@keyframes cd-qty-leave {
    0% {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }
    100% {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateX(-50%) translateY(-100%);
        transform: translateX(-50%) translateY(-100%);
    }
}
@-webkit-keyframes cd-item-move-up-mobile {
    0% {
        padding-top: 70px;
    }
    100% {
        padding-top: 0px;
    }
}
@keyframes cd-item-move-up-mobile {
    0% {
        padding-top: 70px;
    }
    100% {
        padding-top: 0px;
    }
}
@-webkit-keyframes cd-item-move-up {
    0% {
        padding-top: 104px;
    }
    100% {
        padding-top: 0px;
    }
}
@keyframes cd-item-move-up {
    0% {
        padding-top: 104px;
    }
    100% {
        padding-top: 0px;
    }
}
@-webkit-keyframes cd-item-move-down-mobile {
    0% {
        padding-top: 0px;
    }
    100% {
        padding-top: 70px;
    }
}
@keyframes cd-item-move-down-mobile {
    0% {
        padding-top: 0px;
    }
    100% {
        padding-top: 70px;
    }
}
@-webkit-keyframes cd-item-move-down {
    0% {
        padding-top: 0px;
    }
    100% {
        padding-top: 104px;
    }
}
@keyframes cd-item-move-down {
    0% {
        padding-top: 0px;
    }
    100% {
        padding-top: 104px;
    }
}
@-webkit-keyframes cd-item-slide-out {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
        opacity: 0;
    }
}
@keyframes cd-item-slide-out {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
        opacity: 0;
    }
}
@-webkit-keyframes cd-item-slide-in {
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
    0% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
        opacity: 0;
    }
}
@keyframes cd-item-slide-in {
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
    0% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
        opacity: 0;
    }
}


.cd-cart .price_for_room{
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    border-right: 1px solid #efefef
}
.cd-cart .price_for_room p{
    font-size: 1.7rem;
    font-weight: 700;
}
.room_item_price{
    border: 1px solid rgba(0, 0, 0, 0.175);
    border-radius: 7px;
    padding: 8px 0px;
    margin-bottom: 7px;
}
@media(max-width: 450px){
    .cd-cart .price_for_room p{
        font-size: 1.3rem !important;
    }
}
/* end book section */

.change_currency_btn{
    display: block;
    width: 100%;
    border: unset;
    padding: 15px 10px;
    background-color: transparent;
    text-align: right;
}
.change_currency_btn:hover{
    color: #fff;
}

.video_play_area{
    height: auto !important;
}


@media(max-width: 700px){
    .section-heading h1{
        line-height: 2.7rem;
        font-size: 1.5rem !important;
    }
    .header_tips p{
        font-size: .9rem;
    }
    .site-main .breadcrumb-item{
        font-size: 0.8rem;
    }
}
