@import url('/css2-2');

:root {
    --main-color: #fd0001;
    --white-color: #ffffff;
    --black-color: #000000;
    --black-color-opacity: #606060;
    --paragraph-color: #000000;
    --bg-color: #f1f1f1;
    --transition: .4s all ease-in-out;
}

html,
body {
    height: 100%;
}

body {
    padding: 0;
    margin: 0;
    font-size: 14px;
    /*font-family: 'Roboto', sans-serif;*/
}

.left_side_search_area {
    background: #fff;
    border: 1px solid #00000030;
    border-radius: 10px;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.mb-30 {
    margin-bottom: 30px;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out 0.1s;
    transition: all 0.3s ease-in-out 0.1s;
    outline: 0 !important;
    color: var(--main-color);
}

    a:hover {
        text-decoration: none;
        color: var(--heading-color);
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

h1 {
    font-size: 5em;
    font-weight: 400;
    line-height: 90px;
    text-shadow: 1px 1px gray;
}

h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
}

h3 {
    font-size: 24px;
    font-weight: 300;
}

h4 {
    font-size: 20px;
    font-weight: 500;
}

h5 {
    font-size: 18px;
    font-weight: 400;
}

h6 {
    font-size: 14px;
    font-weight: 400;
}

p {
    font-size: 14px;
    line-height: 28px;
    color: var(--paragraph-color);
    font-weight: 400;
    /*font-family: 'Poppins', sans-serif;*/
    margin-bottom: 0;
}

    p:last-child {
        margin-bottom: 0;
    }

ul {
    padding: 0;
    margin: 0;
}

    ul li {
        list-style: none;
        padding: 0;
    }

/* --Common Style-- */
section {
    position: relative;
}

.form-control {
    height: 50px;
    border: none;
    box-shadow: 0px 1px 13px 0px #0000000d;
    padding: 10px 22px;
    font-size: 14px;
}

    .form-control:focus {
        color: var(--heading-color);
        background-color: #fff;
        border: 1px solid var(--main-color);
        outline: none;
        box-shadow: none;
    }

.section_padding {
    padding: 33px 0 0 0;
}

.section_padding_top {
    padding: 30px 0 0 0;
}

.section_padding_bottom {
    padding: 0 0 25px 0;
}

/* --Heading Area-- */

.heading_left_area h2 {
    font-weight: 400;
    padding-bottom: 17px;
    line-height: 45px;
}

    .heading_left_area h2 span {
        display: inline-block;
        border-bottom: 1px solid var(--main-color);
        padding-bottom: 10px;
    }

.heading_left_area h5 {
    color: var(--black-color-opacity);
}

.section_heading_center {
    text-align: center;
    padding-bottom: 30px;
}

    .section_heading_center h2 {
        position: relative;
        padding-bottom: 15px;
        text-transform: capitalize;
        color: #fd0001;
        text-shadow: 0px 1px #fff;
    }

        .section_heading_center h2:after {
            content: "";
            position: absolute;
            width: 200px;
            height: 1px;
            background: var(--main-color);
            left: 50%;
            transform: translate(-50%, 50%);
            bottom: 0;
        }

.img_animation {
    overflow: hidden;
}

    .img_animation img {
        transition: var(--transition);
        position: relative;
    }

    .img_animation::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: #8b3eea9c;
        left: 0;
        top: 0;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .img_animation:hover::after {
        opacity: 1;
        visibility: visible;
    }

    .img_animation:hover img {
        transform: scale(1.2);
    }

.slick-prev,
.slick-next {
    display: none !important;
}

/* --Button Area start-- */
.btn-check:focus + .btn,
.btn:focus {
    outline: none;
    box-shadow: none
}

.btn {
    display: inline-block;
    /* font-weight: 400; */
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-size: 14px;
    border-radius: 5px;
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 0;
}

    .btn:hover {
        /* color: #ee0000; */
    }

.btn_theme {
    color: var(--white-color);
    background-color: var(--main-color);
    transition: var(--transition);
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 0;
    border: none
}

    .btn_theme:hover {
        background-color: #fff !important;
    }

    .btn_theme:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 580px;
        height: 550px;
        margin: auto;
        background: var(--black-color);
        border-radius: 50%;
        z-index: -1;
        -webkit-transform-origin: top center;
        transform-origin: top center;
        -webkit-transform: translateX(-50%) translateY(-5%) scale(.4);
        transform: translateX(-50%) translateY(-5%) scale(.4);
        transition: var(--transition);
    }

    .btn_theme:hover:before {
        -webkit-transition: -webkit-transform 1s;
        transition: -webkit-transform 1s;
        transition: transform 1s;
        transition: transform 1s, -webkit-transform 1s;
        -webkit-transform: translateX(-45%) translateY(0) scale(1);
        transform: translateX(-50%) translateY(0) scale(1);
        -webkit-transform-origin: bottom center;
        transform-origin: bottom center;
        border: none;
    }

.btn_theme_white {
    color: var(--black-color);
    background-color: var(--white-color);
    transition: var(--transition);
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 0;
    border: 1px solid var(--white-color);
}

    .btn_theme_white:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 580px;
        height: 550px;
        margin: auto;
        background: var(--black-color);
        border-radius: 50%;
        z-index: -1;
        -webkit-transform-origin: top center;
        transform-origin: top center;
        -webkit-transform: translateX(-50%) translateY(-5%) scale(.4);
        transform: translateX(-50%) translateY(-5%) scale(.4);
        transition: var(--transition);
    }

    .btn_theme_white:hover:before {
        -webkit-transition: -webkit-transform 1s;
        transition: -webkit-transform 1s;
        transition: transform 1s;
        transition: transform 1s, -webkit-transform 1s;
        -webkit-transform: translateX(-45%) translateY(0) scale(1);
        transform: translateX(-50%) translateY(0) scale(1);
        -webkit-transform-origin: bottom center;
        transform-origin: bottom center;
        border: none;
    }

.btn_theme_transparent {
    color: var(--white-color);
    background-color: transparent;
    transition: var(--transition);
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 0;
    border: 1px solid var(--white-color);
}


    .btn_theme_transparent:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 580px;
        height: 550px;
        margin: auto;
        background: var(--black-color);
        border-radius: 50%;
        z-index: -1;
        -webkit-transform-origin: top center;
        transform-origin: top center;
        -webkit-transform: translateX(-50%) translateY(-5%) scale(.4);
        transform: translateX(-50%) translateY(-5%) scale(.4);
        transition: var(--transition);
    }

    .btn_theme_transparent:hover:before {
        -webkit-transition: -webkit-transform 1s;
        transition: -webkit-transform 1s;
        transition: transform 1s;
        transition: transform 1s, -webkit-transform 1s;
        -webkit-transform: translateX(-45%) translateY(0) scale(1);
        transform: translateX(-50%) translateY(0) scale(1);
        -webkit-transform-origin: bottom center;
        transform-origin: bottom center;
        border: none;
    }


.btn_md {
    padding: 10px 15px;
    font-size: 18px;
}

.btn_sm {
    font-size: 14px;
    padding: 5px 18px;
}

.btn_navber {
    color: #fff;
    border: 2px solid var(--main-color);
    padding: 7px 10px;
    transition: var(--transition);
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 0;
}

    .btn_navber:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 550px;
        height: 550px;
        margin: auto;
        border-radius: 50%;
        z-index: -1;
        -webkit-transform-origin: top center;
        transform-origin: top center;
        background: var(--main-color);
        -webkit-transform: translateX(-51%) translateY(27%) scale(.8);
        transform: translateX(-51%) translateY(27%) scale(.8);
        transition: var(--transition);
    }

    .btn_navber:hover:before {
        -webkit-transition: -webkit-transform 1s;
        transition: -webkit-transform 1s;
        transition: transform 1s;
        transition: transform 1s, -webkit-transform 1s;
        -webkit-transform: translateX(-42%) translateY(-57%) scale(4);
        transform: translateX(-42%) translateY(-57%) scale(4);
        -webkit-transform-origin: bottom center;
        transform-origin: bottom center;
    }

.is-sticky .btn_navber {
    border: 1px solid var(--white-color);
}


/* =========================
        Home Page
=========================*/

/* --Banner Area-- */
#home_one_banner {
    background-image: url("/img/banner/bannerbgwall.png");
    padding: 150px 0 180px 0;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner_one_text {
    text-align: center;
}

    .banner_one_text h1 {
        color: var(--white-color);
    }

    .banner_one_text h3 {
        color: var(--white-color);
        padding-top: 13px;
    }

/* --Theme Search Form-- */
#theme_search_form {
    margin-top: -140px;
}

.theme_search_form_area {
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 22%);
    border-radius: 20px;
    padding: 0px 15px 10px;
    position: relative;
}

.theme_search_form_tabbtn .nav-item {
    margin-right: 20px;
}

    .theme_search_form_tabbtn .nav-item:last-child {
        margin-right: 0px;
    }

.theme_search_form_tabbtn .nav-tabs {
    border-bottom: none;
}

    .theme_search_form_tabbtn .nav-tabs .nav-item.show .nav-link,
    .theme_search_form_tabbtn .nav-tabs .nav-link.active {
        color: var(--white-color);
        background-color: var(--main-color);
        border-color: none;
    }

    .theme_search_form_tabbtn .nav-tabs .nav-link {
        margin-bottom: 0;
        color: var(--black-color);
        border-radius: 6px;
        border: 1px solid var(--main-color);
    }

        .theme_search_form_tabbtn .nav-tabs .nav-link i {
            padding-right: 10px;
        }

.theme_search_form_tabbtn {
    margin-bottom: 30px;
}


.flight_Search_boxed {
    background: #f2f2f2;
    padding: 5px 5px 5px 10px;
    border-radius: 5px;
    position: relative;
}

.plan_icon_posation {
    position: absolute;
    top: 20px;
    right: 30px;
}

    .plan_icon_posation i {
        font-size: 24px;
    }

.range_plan {
    position: absolute;
    left: -37px;
    top: 50%;
    transform: translateY(-50%);
}

    .range_plan i {
        background: #686868;
        font-size: 17px;
        width: 40px;
        height: 40px;
        text-align: center;
        line-height: 33px;
        border-radius: 50%;
        border: 3px solid #eaeaea;
        color: #ffffff;
    }

.flight_Search_boxed p {
    font-size: 13px;
    line-height: 17px;
}

.flight_Search_boxed input {
    font-size: 22px;
    width: 87%;
    border: none;
    background: transparent;
    font-weight: 500;
    height: 25px;
    padding: 0;
}

    .flight_Search_boxed input:focus-within {
        outline: none;
        border: none;
    }

.flight_Search_boxed span {
    display: block;
    font-size: 12px;
    padding-top: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

    .flight_Search_boxed span .title {
        color: #000;
        margin-top: 5px;
        font-weight: 500;
        margin-bottom: 5px;
    }

.date_flex_area {
    display: flex;
    justify-content: space-between;
}

.dropdown_passenger_area button {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 22px;
    font-weight: 500;
}

    .dropdown_passenger_area button::after {
        display: none;
    }

.dropdown_passenger_area .dropdown-menu.show {
    transform: translate(-56%, 55px) !important;
}

.dropdown_passenger_area .dropdown-menu {
    z-index: 1000;
    min-width: 350px;
    padding: 10px 10px;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0.25rem;
}

.traveller-calulate-persons .passengers .passengers-types .passengers-type {
    display: flex;
    align-items: center;
    padding: 3px 16px;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

    .traveller-calulate-persons .passengers .passengers-types .passengers-type .text {
        align-items: center;
        display: flex;
    }

        .traveller-calulate-persons .passengers .passengers-types .passengers-type .text .count {
            margin-right: 15px;
            width: 24px;
            display: inline-block;
            font-size: 16px;
            font-weight: 600;
            text-align: center;
            border: 1px solid #eee;
        }

        .traveller-calulate-persons .passengers .passengers-types .passengers-type .text .type-label span {
            font-size: 12px;
            color: #4c4c4c;
        }

    .traveller-calulate-persons .passengers .passengers-types .passengers-type .button-set button {
        font-size: 10px;
        color: #fff;
        border: 1px solid #000;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #000;
    }

.traveller-calulate-persons .passengers .passengers-types {
    padding-top: 10px;
}

.traveller-calulate-persons .passengers h6 {
    font-size: 14px;
    font-weight: 500;
    color: var(--main-color);
}

.traveller-calulate-persons .cabin-selection {
    padding-top: 5px;
    /* border-top: 1px solid #c7c7cc; */
    margin-top: 10px;
}

.traveller-calulate-persons .label-select-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px 10px;
}

    .traveller-calulate-persons .label-select-btn:hover {
        background: var(--main-color);
        color: var(--white-color);
    }

    .traveller-calulate-persons .label-select-btn.active {
        background: var(--main-color);
        color: var(--white-color);
    }


.traveller-calulate-persons .muiButton-label {
    font-size: 14px;
}

.traveller-calulate-persons .cabin-selection h6 {
    padding: 0px 0 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--main-color);
}

.top_form_search_button {
    text-align: center;
    margin-top: 0px;
}

.flight_categories_search .nav-tabs {
    border-bottom: none;
}

    .flight_categories_search .nav-tabs .nav-item.show .nav-link,
    .flight_categories_search .nav-tabs .nav-link.active {
        color: var(--main-color);
        border: 1px solid var(--main-color);
    }

    .flight_categories_search .nav-tabs .nav-link {
        margin-bottom: 0;
        color: var(--black-color);
        border-radius: 6px;
        border: none;
        font-weight: 500;
        background: transparent;
    }

.flight_categories_search {
    position: static;
    margin: 1em auto;
    width: fit-content;
}

.multi_city_form {
    margin-bottom: 15px;
}


.add_multy_form {
    text-align: right;
}

    .add_multy_form button {
        color: var(--main-color);
        border: none;
        background: transparent;
    }

.multi_form_remove {
    text-align: right;
}

    .multi_form_remove button {
        color: red;
        border: none;
        background: transparent;
        padding-bottom: 10px;
    }



@media (max-width: 1399px) {

    #theme_search_form .container,
    #theme_search_form .container-lg,
    #theme_search_form .container-md,
    #theme_search_form .container-sm,
    #theme_search_form .container-xl {
        /* max-width: 100%; */
    }
}


/* --Imagination Area-- */
.imagination_boxed {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
}

    .imagination_boxed img {
        position: relative;
        width: 100%;
        transition: var(--transition);
        min-height: 300px;
        object-fit: cover;
        object-position: right;
    }

    .imagination_boxed:hover img {
        transform: scale(1.2);
    }

    .imagination_boxed:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 20%;
        left: 0;
        background: #fd0001;
        bottom: 0;
        z-index: 999;
        transition: all 0.5s;
        transform: translate(0%, 100%);
    }

    .imagination_boxed:hover:before {
        transform: translate(0%, 0%);
    }

    .imagination_boxed h3 {
        position: absolute;
        bottom: 0;
        display: flex;
        justify-content: center;
        width: 100%;
        z-index: 999;
        align-items: center;
        height: 20%;
        font-size: 100%;
    }

        .imagination_boxed h3 span {
            display: block;
            text-align: center;
        }

        .imagination_boxed h3 a {
            color: var(--white-color);
            transition: var(--transition);
        }

    .imagination_boxed:hover h3 a {
        font-weight: 500;
        font-size: 20px;
    }

/* --Top Destinations Area-- */
.destinations_content_box {
    position: relative;
    margin-bottom: 23px;
    border-radius: 12px;
    overflow: hidden;
}

    .destinations_content_box .btn {
        margin-top: 2px;
    }

    .destinations_content_box img {
        width: 100%;
    }

.destinations_content_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}

    .destinations_content_inner h3 a {
        color: var(--white-color);
    }

        .destinations_content_inner h3 a:hover {
            color: var(--black-color);
        }

    .destinations_content_inner h2 {
        color: var(--white-color);
        padding-bottom: 20px;
    }

.destinations_big_offer h1 {
    color: var(--white-color);
    font-size: 150px;
    line-height: 109px;
    padding-bottom: 20px;
}

.destinations_big_offer {
    display: flex;
}

    .destinations_big_offer h6 {
        color: var(--white-color);
        line-height: 45px;
        padding-top: 8px;
    }

        .destinations_big_offer h6 span {
            display: block;
            font-size: 38px;
            font-weight: 500;
        }

/* -- Explore Area -- */

.theme_nav_tab {
    background: #FFFFFF;
    box-shadow: -4px -4px 16px rgb(139 62 234 / 8%), 4px 14px 28px rgb(139 148 250 / 7%);
    border-radius: 12px;
    padding: 21px 0;
    margin-bottom: 30px;
}

.theme_nav_tab_item .nav-tabs {
    border-bottom: none;
    justify-content: center;
}

    .theme_nav_tab_item .nav-tabs .nav-item.show .nav-link,
    .theme_nav_tab_item .nav-tabs .nav-link.active {
        color: var(--white-color);
        background-color: var(--main-color);
        border-color: var(--main-color);
    }

    .theme_nav_tab_item .nav-tabs .nav-link {
        margin-bottom: 0;
        background: 0 0;
        border: 1px solid var(--main-color);
        color: var(--black-color);
        padding: 8px 30px;
        border-radius: 5px;
        margin-right: 35px;
    }

        .theme_nav_tab_item .nav-tabs .nav-link:last-child {
            margin-right: 0;
        }

.theme_common_box_two {
    border-radius: 11px;
    overflow: hidden;
    border: 1px solid #d2d2d275;
    transition: var(--transition);
    margin-bottom: 30px;
}

    .theme_common_box_two:hover {
        box-shadow: 4px 14px 28px rgba(0, 0, 0, 0.1);
    }

.theme_two_box_img {
    position: relative;
    overflow: hidden;
}

.img_hover {
    overflow: hidden;
}

.theme_common_box_two .theme_two_box_img a img {
    min-height: 222px;
}

.img_hover img {
    transition: var(--transition);
    width: 100%;
}

.package-list img {
    width: 15px !important;
    height: 15px !important;
}

.img_hover:hover img {
    transform: scale(1.2);
}

.theme_two_box_img img {
    width: 100%;
}

.theme_two_box_img .discount_tab {
    position: absolute;
    right: 9px;
    bottom: -17px;
    background: #FFFFFF;
    box-shadow: 4px 5px 12px rgb(0 0 0 / 10%);
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 500;
}

.theme_two_box_img p {
    /* color: var(--white-color); */
    position: absolute;
    bottom: 4px;
    left: 13px;
    font-size: 14px;
    background: white;
    border-radius: 10px 0 10px 0;
    transition: 0.5s;
    color: #000;
    padding: 0 10px;
}

    .theme_two_box_img p i {
        padding-right: 5px;
    }

.theme_two_box_content {
    background: #fff;
    padding: 10px 15px;
}

    .theme_two_box_content h4 {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        padding-bottom: 12px;
        font-size: 0.9rem;
    }

        .theme_two_box_content h4 a {
            color: var(--black-color);
        }

            .theme_two_box_content h4 a:hover {
                color: var(--main-color);
            }

    .theme_two_box_content p {
        padding: 10px 0px 5px 0;
        font-size: 10px;
    }

        .theme_two_box_content p i.fa-star {
            color: #FF5722;
        }

        .theme_two_box_content p .review_rating {
            color: var(--main-color);
        }

        .theme_two_box_content p .review_count {
            margin-left: 10px;
        }

    .theme_two_box_content h3 {
        font-weight: 500;
    }

        .theme_two_box_content h3 span {
            font-weight: 400;
            font-size: 14px;
        }

/* --offer Area-- */
.offer_area_box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

    .offer_area_box img {
        width: 100%;
    }

    .offer_area_box .offer_area_content {
        position: absolute;
        left: 0;
        bottom: 0;
        padding: 30px 27px;
        z-index: 999;
    }


.offer_area_content h2 {
    color: var(--white-color);
    padding-bottom: 20px;
}

.offer_area_content p {
    color: var(--white-color);
    padding-bottom: 25px;
}

/* --Promotional Tours Area-- */
.dot_style .owl-nav.disabled + .owl-dots {
    margin-top: 0px;
}

.dot_style.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 5px;
    background: #D6D6D6;
    display: block;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.dot_style.owl-theme .owl-dots .owl-dot.active span,
.dot_style.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--main-color);
}

/* --Destinations Area-- */
.tab_destinations_boxed {
    display: flex;
    align-items: center;
    border: 1px solid #d2d2d2;
    border-radius: 9px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 40px;
}

    .tab_destinations_boxed:hover {
        background: #FFFFFF;
        box-shadow: -4px -4px 16px rgba(0, 0, 0, 0.08), 4px 6px 16px rgba(0, 0, 0, 0.08);
    }

.tab_destinations_conntent {
    padding-left: 20px;
}

    .tab_destinations_conntent h3 {
        font-size: 22px;
        font-weight: 400;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

        .tab_destinations_conntent h3 a {
            color: var(--black-color);
        }

            .tab_destinations_conntent h3 a:hover {
                color: var(--main-color);
            }

    .tab_destinations_conntent p {
        color: var(--black-color);
        font-weight: 500;
        padding-top: 5px;
    }

        .tab_destinations_conntent p span {
            color: var(--main-color);
        }

/* --News Area-- */
.home_news_item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.home_news_img {
    width: 100px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
}

.home_news_left_wrapper .home_news_item:last-child {
    margin-bottom: 0;
}

.slick-slide img {
    display: block;
    border-radius: 10px;
}

.home_news_img img {
    width: 100%;
}

.home_news_content {
    width: 68%;
    padding-left: 25px;
}

    .home_news_content h3 {
        font-size: 22px;
        font-weight: 500;
        line-height: 27px;
    }

        .home_news_content h3 a {
            color: var(--black-color);
        }

            .home_news_content h3 a:hover {
                color: var(--main-color);
            }

    .home_news_content p {
        padding-top: 12px;
        font-size: 14px;
    }

        .home_news_content p span {
            padding-left: 10px;
        }

            .home_news_content p span i {
                padding-top: 0;
                font-size: 7px;
                padding-right: 10px;
            }

.seeall_link a i {
    padding-left: 5px;
}

.home_news_big img {
    width: 100%;
}

.home_news_big h3 {
    padding-top: 22px;
    font-size: 22px;
    font-weight: 500;
}

    .home_news_big h3 a {
        color: var(--black-color);
        padding-top: 0;
    }

    .home_news_big h3:hover a {
        color: var(--main-color);
    }

.home_news_big p {
    padding-top: 8px;
}

.home_news_big a {
    display: block;
    padding-top: 11px;
}

#our_partners .owl-carousel .owl-item img {
    width: auto !important;
    filter: opacity(0.5);
}

    #our_partners .owl-carousel .owl-item img:hover {
        filter: opacity(1);
    }

.news_home_bigest {
    overflow: hidden;
    border-radius: 12px;
}

/* --Cta Area-- */
#cta_area {
    background: var(--bg-color);
    padding: 70px 0;
}

.cta_left {
    display: flex;
    align-items: center;
}

.cta_icon {
    width: 15%;
}

.cta_content {
    padding-left: 30px;
}

    .cta_content h2 {
        padding-top: 11px;
    }

/* --Footer Area-- */
#footer_area {
    padding: 42px 0px;
}

.footer_heading_area h5 {
    border-bottom: 1px solid var(--main-color);
    display: inline-flex;
    padding-bottom: 5px;
    font-weight: 500;
}

.footer_inquery_area {
    padding-top: 5px;
    border-left: 2px solid var(--main-color);
    margin-top: 25px;
    padding-left: 9px;
}

    .footer_inquery_area h3 {
        font-weight: 500;
        padding-top: 8px;
    }

    .footer_inquery_area h5 {
        font-size: 14px;
        font-weight: 500;
    }

.soical_icon_footer {
    display: flex;
    padding-top: 5px;
}

    .soical_icon_footer li {
        padding-right: 8px;
    }

.footer_link_area {
    padding-top: 20px;
}

    .footer_link_area ul li {
        padding-bottom: 15px;
    }

        .footer_link_area ul li a {
            color: var(--black-color);
            font-size: 14px;
            font-weight: 400;
            transition: var(--transition);
        }

            .footer_link_area ul li a:hover {
                color: var(--main-color);
            }

.soical_icon_footer li a i {
    font-size: 20px;
}

.copyright_area {
    background-color: var(--bg-color);
    padding: 15px 0;
}

.copyright_left p {
    color: var(--black-color);
    font-size: 14px;
    font-weight: 500;
}

.copyright_right {
    text-align: right;
}

/* ===================================
        Home Two Page
====================================*/
.banner_two_slider_item {
    padding: 325px 0 245px 0;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner_two_text h3 {
    color: var(--white-color);
    font-weight: 400;
}

.banner_two_text h1 {
    color: var(--white-color);
    font-size: 136px;
    padding-top: 35px;
    font-weight: 800;
    margin-inline-start: -5px;
}

.banner_two_text h2 {
    color: var(--white-color);
    padding-top: 30px;
}

.banner_two_text h4 {
    color: var(--white-color);
    padding-top: 10px;
    font-weight: 300;
}

.home_two_button {
    padding-top: 60px;
}

    .home_two_button a {
        margin-right: 30px;
    }

#home_two_banner .owl-item.active .banner_two_slider_item .banner_two_text .title {
    -webkit-animation: 1s 1.2s fadeInLeft both;
    animation: 1s 1.2s fadeInLeft both;
}

#home_two_banner .owl-item.active .banner_two_slider_item .banner_two_text .slider-sttle {
    -webkit-animation: 1s 1.1s bounceInLeft both;
    animation: 1s 1.1s bounceInLeft both;
}

#home_two_banner .owl-item.active .banner_two_slider_item .banner_two_text .slider-pararp {
    -webkit-animation: 1s 1.5s fadeInUp both;
    animation: 1s 1.5s fadeInUp both;
}

#home_two_banner .owl-item.active .banner_two_slider_item .banner_two_text .btn-animation {
    -webkit-animation: 1s 1.2s flipInX both;
    animation: 1s 1.2s flipInX both;
}

#home_two_banner .owl-theme .owl-nav {
    position: absolute;
    bottom: 45px;
    right: 60px;
}

#home_two_banner .owl-carousel .owl-nav button.owl-next,
#home_two_banner .owl-carousel .owl-nav button.owl-prev {
    background: 0 0;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    font-size: 14px;
    height: 25px;
    width: 25px;
    line-height: 25px;
    border-radius: 0px;
    transition: var(--transition);
}

    #home_two_banner .owl-carousel .owl-nav button.owl-next:hover,
    #home_two_banner .owl-carousel .owl-nav button.owl-prev:hover {
        color: var(--main-color);
        border: 2px solid var(--main-color);
    }

/* --Top Service Area-- */
.top_service_boxed {
    position: relative;
    background: var(--white-color);
    border: 1px solid rgba(221, 221, 221, 0.5);
    border-radius: 12px;
    padding: 30px 35px;
    margin-top: 30px;
    transition: var(--transition);
    text-align: center;
}

    .top_service_boxed:hover {
        transform: translateY(-10px);
    }

    .top_service_boxed img {
        transition: var(--transition);
    }

    .top_service_boxed:hover img {
        transform: translateY(5px);
    }

    .top_service_boxed h3 {
        padding-top: 35px;
        position: relative;
        padding-bottom: 10px;
        font-weight: 500;
    }

        .top_service_boxed h3::after {
            content: "";
            position: absolute;
            width: 160px;
            height: 1px;
            background: var(--main-color);
            left: 50%;
            transform: translate(-50%, 50%);
            bottom: 0;
        }

    .top_service_boxed p {
        padding-top: 20px;
    }

/* --Holiday Destinations Area-- */
.holiday_left_heading {
    background: #F3F6FD;
    border-radius: 20px;
    padding: 70px 45px;
    margin-top: 30px;
}

.holiday_small_boxed {
    margin-top: 30px;
    border-radius: 17px;
    overflow: hidden;
    position: relative;
}

    .holiday_small_boxed img {
        width: 100%;
        transition: var(--transition);
    }

    .holiday_small_boxed:hover img {
        transform: scale(1.1);
    }

    .holiday_small_boxed:hover .holiday_small_box_content {
        opacity: 1;
    }

.holiday_small_box_content {
    background: linear-gradient(359deg, #111018 0%, rgb(217 217 217 / 0%) 70%);
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition);
}

.holiday_inner_content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px 20px;
}

.rating_outof {
    display: flex;
    align-items: center;
}

    .rating_outof i {
        color: var(--white-color);
        font-size: 14px;
    }

    .rating_outof h5 {
        color: var(--white-color);
        padding-left: 10px;
        font-weight: 300;
    }

.holiday_inner_content h3 {
    color: var(--white-color);
    padding: 10px 0;
    font-weight: 400;
}

.holiday_inner_content h4 {
    color: var(--white-color);
    font-weight: 400;
}

.holiday_inner_content p {
    color: var(--white-color);
    padding-top: 5px;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}

/* --About Area-- */
.about_two_left_top h5 {
    color: var(--main-color);
    font-weight: 500;
}

.about_two_left_top h2 {
    padding-top: 17px;
}

.about_two_left_top p {
    padding-top: 15px;
}

.about_two_item {
    display: flex;
    padding-top: 40px;
    transition: var(--transition);
}

    .about_two_item:hover {
        transform: translateY(-10px);
    }

.about_two_item_icon {
    width: 14%;
}

.about_two_item_text {
    padding-left: 10px;
}

    .about_two_item_text h3 {
        font-weight: 500;
    }

    .about_two_item_text p {
        padding-top: 6px;
    }

/* --Partner Aarea-- */
.partner_area_bg {
    background-image: url('/img/common/video_bg.png');
    padding: 70px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.partner_area_left {
    padding-left: 115px;
}

    .partner_area_left h5 {
        color: var(--main-color);
        font-weight: 500;
    }

    .partner_area_left h2 {
        padding-top: 15px;
        line-height: 45px;
    }

    .partner_area_left p {
        padding-top: 10px;
    }

.partner_video_area {
    padding-top: 35px;
    padding-left: 30px;
}

.video_play_area i {
    color: var(--white-color);
    position: relative;
    z-index: 99;
    font-size: 18px;
}


.video_play_area:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 50px;
    height: 50px;
    background: var(--main-color);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video_play_area:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 50px;
    height: 50px;
    background: var(--main-color);
    border-radius: 50%;
    transition: all 200ms;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        opacity: 0;
    }
}

.local_counter_area {
    padding-top: 40px;
    display: flex;
}

.local_counter_box {
    background: var(--white-color);
    padding: 10px 25px;
    border-radius: 12px;
    margin-right: 15px;
}

    .local_counter_box h2 {
        padding-top: 0;
        font-weight: 700;
    }

    .local_counter_box h5 {
        padding-top: 4px;
        font-weight: 500;
    }

/* --Choose your destinations-- */
.choose_des_inner_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.choose_desti_wrapper:hover .choose_des_inner_wrap {
    transform: rotateY(180deg);
}

.choose_boxed_inner,
.flep_choose_box {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    top: 0;
}

.flep_choose_box {
    background-color: var(--main-color);
    transform: rotateY(180deg);
    border-radius: 12px;
}

.choose_boxed_inner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

    .choose_boxed_inner img {
        width: 100%;
    }

.choose_img_text {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

    .choose_img_text h2 {
        color: var(--white-color);
    }

    .choose_img_text h3 {
        color: var(--white-color);
        padding-top: 10px;
        font-weight: 400;
    }

.flep_choose_box_inner {
    padding: 65px 25px 0px 35px;
}

    .flep_choose_box_inner h2 {
        color: var(--white-color);
        padding-top: 15px;
    }

    .flep_choose_box_inner h3 {
        color: var(--white-color);
        padding-top: 12px;
        font-weight: 500;
    }

    .flep_choose_box_inner p {
        color: #ffffffd1;
        padding-top: 14px;
        font-weight: 300;
        line-height: 24px;
    }

    .flep_choose_box_inner a {
        color: var(--white-color);
        margin-top: 25px;
        border-bottom: 1px solid var(--white-color);
        display: inline-block;
        font-size: 20px;
        font-weight: 400;
    }

.choose_desti_wrapper {
    margin-top: 30px;
}

/* --Client Area--*/

.client_two_area_bg {
    background-image: url('/img/banner/client-bg.png');
    padding: 15px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.two_client_area_left {
    padding-left: 115px;
}

    .two_client_area_left h2 {
        color: var(--white-color);
        line-height: 56px;
    }

.sm_call_area {
    display: flex;
    align-items: center;
    padding-top: 30px;
}

.sm_call_number {
    padding-left: 15px;
}

    .sm_call_number h5 {
        color: var(--white-color);
    }

    .sm_call_number h2 a {
        color: var(--white-color);
    }

        .sm_call_number h2 a:hover {
            color: var(--main-color);
        }

.home_client_wrpper {
    background: var(--white-color);
    box-shadow: 8px 12px 16px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    text-align: center;
    padding: 55px 0;
    position: relative;
    top: 122px;
}

    .home_client_wrpper h4 {
        color: var(--paragraph-color);
        font-weight: 400;
    }

    .home_client_wrpper h2 {
        font-weight: 400;
        padding-top: 15px;
    }

    .home_client_wrpper h3 {
        padding-top: 35px;
        font-weight: 500;
        color: var(--main-color);
    }

.client_two_content {
    padding-top: 25px;
}

.home_two_client_slider {
    padding: 0 65px;
}

.client_two_content p {
    font-size: 18px;
    color: var(--black-color);
    font-weight: 400;
    line-height: 36px;
}

.client_two_author {
    padding-top: 15px;
}

    .client_two_author h5 {
        font-weight: 500;
    }

    .client_two_author h6 {
        padding-top: 5px;
        color: var(--main-color);
        font-weight: 600;
    }

.home-two-quote {
    position: relative;
    display: inline-block;
}

    .home-two-quote img {
        position: absolute;
        top: 15px;
        left: -22px;
    }

#hometwo_clinet_area .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 15px;
}

#hometwo_clinet_area .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #2b2540b8;
    display: block;
    transition: opacity .2s ease;
    border-radius: 30px;
}

#hometwo_clinet_area .owl-theme .owl-dots .owl-dot.active span,
#hometwo_clinet_area .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--main-color);
}
/* =============================
        Home Page Three
================================*/
#home_three_banner {
    background-image: url(/img/banner/banner-three.png);
    padding: 325px 0 340px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner_area_three {
    text-align: center;
}

    .banner_area_three h2 {
        font-size: 80px;
        line-height: 90px;
        color: var(--white-color);
    }

    .banner_area_three h3 {
        color: var(--white-color);
        font-weight: 400;
    }

.top_banner_three_text {
    padding-bottom: 20px;
}

.bottom_banner_three_text {
    padding-top: 23px;
}
/* --About Area-- */
.three_about_left {
    position: relative;
}

    .three_about_left a img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

.verified_area {
    position: absolute;
    right: -105px;
    bottom: 0;
}

.three_heading_area {
    color: var(--main-color);
    font-weight: 400;
    position: relative;
}

    .three_heading_area::after {
        content: "";
        position: absolute;
        width: 50px;
        height: 1px;
        left: 145px;
        top: 13px;
        background-color: var(--main-color);
    }

.three_about_right h4 {
    padding-bottom: 10px;
}

.three_about_right h2 {
    line-height: 51px;
}

.three_about_right p {
    padding-top: 15px;
}

.about_three_flex {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}

.about_counter_item {
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    text-align: center;
    padding: 10px 35px;
}

    .about_counter_item h2 {
        line-height: 40px;
    }

    .about_counter_item p {
        padding-top: 0;
        color: var(--main-color);
        font-size: 18px;
        font-weight: 500;
    }
/* --We Offer-- */
#three_We_area {
    background-image: url('/img/common/bg.png');
}

.we_offer_area_three h2 {
    padding-top: 15px;
}

.we_offer_area_three p {
    padding-top: 20px;
}

.three_offer_item {
    background: #FFFFFF;
    border: 1px solid rgba(221, 221, 221, 0.4);
    box-shadow: 4px 8px 14px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    text-align: center;
    padding: 30px 20px;
}

    .three_offer_item img {
        width: auto !important;
        margin: 0 auto;
    }

    .three_offer_item h3 {
        padding-top: 15px;
        font-weight: 500;
    }

    .three_offer_item p {
        padding-top: 10px;
    }

.three_offer_slider {
    padding-top: 20px;
}

#three_We_area .owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: -50px;
}

#three_We_area .owl-carousel .owl-nav button.owl-next,
#three_We_area .owl-carousel .owl-nav button.owl-prev {
    background: var(--black-color);
    color: var(--white-color);
    border: none;
    padding: 0 !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

    #three_We_area .owl-carousel .owl-nav button.owl-next:hover,
    #three_We_area .owl-carousel .owl-nav button.owl-prev:hover {
        background: var(--main-color);
        color: var(--white-color);
    }

/* --Trending Tour Area-- */
.arrow_style.owl-theme .owl-nav {
    margin-top: 0px;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.arrow_style.owl-carousel .owl-nav button.owl-next,
.arrow_style.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    background: var(--black-color);
    color: var(--white-color);
    border: none;
    padding: 0 !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

    .arrow_style.owl-carousel .owl-nav button.owl-next:hover,
    .arrow_style.owl-carousel .owl-nav button.owl-prev:hover {
        background: var(--main-color);
        color: var(--white-color);
    }

.arrow_style.owl-carousel .owl-nav button.owl-next {
    right: -25px;
}

.arrow_style.owl-carousel .owl-nav button.owl-prev {
    left: -25px;
}
/* --Width offer area-- */
#width_offer_area {
    background: #F3F6FD;
    padding: 70px 0;
}

.width_offer_item {
    display: flex;
}

.width_offer_text {
    width: 80%;
    padding-left: 25px;
}

    .width_offer_text h3 {
        font-weight: 500;
        padding-bottom: 10px;
    }
/* --Client Review-- */
#home_Three_client .home_client_wrpper {
    background: #F3F6FD;
    box-shadow: 0px 5px 8px 3px #00000014;
    border-radius: 12px;
    text-align: center;
    padding: 55px 0;
    position: relative;
    top: 0;
}


/* ===================================
    Home Page four
====================================*/
/* --Banner Area-- */
.navbar_color_black .main-navbar .navbar .navbar-nav .nav-item a {
    color: var(--black-color);
    font-weight: 400;
}

.navbar_color_black .topbar-list li a {
    color: var(--black-color);
}

.navbar_color_black .topbar-list li i {
    color: var(--black-color);
}

.navbar_color_black .topbar-others-options li a {
    color: var(--black-color);
}

.navbar_color_black .topbar-others-options li .language-option button {
    color: var(--black-color);
}

.navbar_color_black .topbar-area {
    border-bottom: 1px solid #63616121;
}

#home_four_banner {
    background-color: #f4f6fc;
    padding: 220px 0;
}

.banner_four_img {
    position: absolute;
    top: 0;
    right: 0;
}

    .banner_four_img img {
        width: 100%;
    }

.banner_four_text h1 {
    font-size: 90px;
    font-weight: 500;
    padding-top: 20px;
    line-height: 105px;
}

.banner_four_text h3 {
    padding-top: 25px;
    color: #1F1E46;
    font-weight: 500;
}

.banner_four_text h4 {
    color: #6D6D74;
    font-size: 24px;
    font-weight: 600;
}

.banner_four_text {
    padding-right: 100px;
}

/* --Banner Bottom Area-- */
.banner_bootom_four {
    padding-top: 200px;
}

.four_banner_bottom_item {
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    transition: var(--transition);
    border-radius: 12px;
    text-align: center;
    padding: 30px 20px;
}

    .four_banner_bottom_item:hover {
        box-shadow: 4px 8px 16px rgba(28, 27, 35, 0.06);
        transform: translateY(-10px);
    }

    .four_banner_bottom_item h3 {
        padding-top: 20px;
        font-weight: 500;
    }

    .four_banner_bottom_item p {
        padding-top: 15px;
    }


/* --Popular Tours-- */
.section_heading_left {
    padding-bottom: 30px;
}

    .section_heading_left h2 {
        padding-bottom: 8px;
    }

.common_card_four {
    background: #FFFFFF;
    border: 1px solid rgba(221, 221, 221, 0.5);
    border-radius: 20px;
    overflow: hidden;
}

.common_card_four_img {
    overflow: hidden;
}

    .common_card_four_img a img {
        width: 100%;
        transition: var(--transition);
    }

.common_card_four:hover .common_card_four_img a img {
    transform: scale(1.1);
}

.common_card_four_text {
    padding: 20px 10px;
}

.common_card_four_list li {
    display: inline-flex;
    font-size: 12px;
    font-weight: 400;
    color: #727178;
    align-items: center;
}

    .common_card_four_list li i {
        font-size: 7px;
        color: #DDDDDD;
        padding-left: 7px;
        padding-right: 5px;
    }

.common_card_four_text h3 {
    padding-top: 5px;
}

    .common_card_four_text h3 a {
        font-size: 20px;
        color: var(--black-color);
        font-weight: 400;
    }

.common_card_four:hover .common_card_four_text h3 a {
    color: var(--main-color);
}

.common_card_four_text p {
    font-size: 14px;
    padding-top: 5px;
}

    .common_card_four_text p i {
        font-size: 14px;
        padding-right: 5px;
    }

.common_card_four_bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 12px;
}

.common_card_four_bottom_left p {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 500;
}

.common_card_four_bottom_left h6 {
    color: #727178;
    font-size: 12px;
    padding-top: 3px;
}

.common_card_four_bottom_right h4 sub {
    font-size: 12px;
}

.button_style_top_left.owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: -90px;
}

.button_style_top_left.owl-carousel .owl-nav button.owl-next,
.button_style_top_left.owl-carousel .owl-nav button.owl-prev {
    background: var(--black-color);
    color: var(--white-color);
    border: none;
    padding: 0 !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

    .button_style_top_left.owl-carousel .owl-nav button.owl-next:hover,
    .button_style_top_left.owl-carousel .owl-nav button.owl-prev:hover {
        background: var(--main-color);
        color: var(--white-color);
    }

/* --Beest Offer-- */
.theme_nav_tab_four_item .nav-tabs {
    border-bottom: none;
    justify-content: flex-end;
}

    .theme_nav_tab_four_item .nav-tabs .nav-link {
        background: #FBF9FE;
        margin-left: 17px;
        border: 1px solid #DDDDDD;
        border-radius: 7px;
        color: #2B2540;
        font-size: 14px;
        font-weight: 500;
    }

        .theme_nav_tab_four_item .nav-tabs .nav-link.active {
            background-color: var(--main-color);
            color: var(--white-color);
        }
/* --Tour Type Boxed-- */
.tour_type_boxed {
    background: #FFFFFF;
    border: 1px solid rgba(221, 221, 221, 0.5);
    border-radius: 8px;
    text-align: center;
    padding: 20px 20px;
    transition: var(--transition);
}

    .tour_type_boxed:hover {
        transform: translateY(-10px);
    }

    .tour_type_boxed img {
        width: auto !important;
        margin: 0 auto;
    }

    .tour_type_boxed h3 {
        padding-top: 10px;
        font-size: 20px;
        font-weight: 500;
    }

    .tour_type_boxed p {
        padding-top: 5px;
    }
/* --Destination for your-- */
.section_heading_left_view_all {
    text-align: right;
    padding-top: 45px;
}

    .section_heading_left_view_all a {
        color: var(--main-color);
        font-size: 18px;
        font-weight: 500;
    }

        .section_heading_left_view_all a:hover {
            color: var(--black-color);
        }
/* --Top Details -- */
.top_details_four_item {
    position: relative;
}

    .top_details_four_item img {
        width: 100%;
    }

.top_details_posation {
    position: absolute;
    bottom: 34px;
    left: 25px;
}

    .top_details_posation p {
        color: var(--white-color);
    }

    .top_details_posation h3 {
        font-size: 20px;
        color: var(--white-color);
        font-weight: 500;
        padding-bottom: 22px;
    }
/* --Counter Area-- */
.countre_four_item {
    background: #FFFFFF;
    border: 1px solid rgba(221, 221, 221, 0.5);
    border-radius: 12px;
    text-align: center;
    padding: 15px 20px;
}

    .countre_four_item h3 {
        font-weight: 600;
        padding-bottom: 3px;
    }

    .countre_four_item h5 {
        font-size: 14px;
        color: var(--main-color);
        padding-top: 2px;
        font-weight: 500;
    }
/* --Testimonials Area-- */
#testimonial_four_area {
    background-image: url('/img/common/test-bg.png');
    padding: 130px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.test_slider_item_four {
    text-align: center;
}

.test_post_img_four img {
    width: auto !important;
    margin: 0 auto;
}

.test_four_author_fill {
    padding-top: 30px;
    position: relative;
    display: inline-grid;
}

    .test_four_author_fill img {
        position: absolute;
        left: 0;
        bottom: 8px;
        width: auto !important;
    }

    .test_four_author_fill h3 {
        font-weight: 500;
        color: var(--main-color);
    }

.test_four_inner_content {
    padding-top: 18px;
}

.test_four_author_name {
    padding-top: 12px;
    padding-bottom: 15px;
}

    .test_four_author_name h5 {
        font-weight: 600;
        font-size: 14px;
    }

    .test_four_author_name p {
        font-size: 14px;
    }

/* --Our Partner-- */
#our_partners_four {
    background-color: #F3F6FD;
}

    #our_partners_four .owl-carousel .owl-item img {
        width: auto !important;
        filter: opacity(0.5);
    }

        #our_partners_four .owl-carousel .owl-item img:hover {
            filter: opacity(1);
        }

/* --News Area-- */
.news_card_four_heading ul li {
    display: inline-flex;
    font-size: 14px;
    font-weight: 500;
    color: #727178;
    align-items: center;
}

    .news_card_four_heading ul li i {
        font-size: 7px;
        color: #DDDDDD;
        padding-left: 7px;
        padding-right: 5px;
    }

.news_card_four_img {
    overflow: hidden;
    border-radius: 20px;
}

    .news_card_four_img a img {
        width: 100%;
        transition: var(--transition);
    }

.news_card_four_wrapper:hover .news_card_four_img a img {
    transform: scale(1.1);
}

.news_card_four_heading {
    padding-top: 20px;
}

    .news_card_four_heading h3 {
        font-weight: 600;
        padding-bottom: 10px;
    }

        .news_card_four_heading h3 a {
            color: var(--black-color);
        }

.news_card_four_wrapper:hover .news_card_four_heading h3 a {
    color: var(--main-color);
}

.navbar_color_black .is-sticky .main-navbar .navbar .navbar-nav .nav-item a {
    color: var(--white-color);
}

.navbar_color_black .is-sticky .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a {
    color: var(--navber-color) !important;
}
/* ==========================
        News v4 Page
============================*/
.news_four_card {
    margin-bottom: 30px;
}

.new_four_card_lists {
    padding-top: 15px;
}

    .new_four_card_lists ul li {
        display: inline-flex;
        font-size: 14px;
        font-weight: 500;
        color: #727178;
        align-items: center;
    }

        .new_four_card_lists ul li i {
            font-size: 7px;
            color: #DDDDDD;
            padding-left: 7px;
            padding-right: 5px;
        }

        .new_four_card_lists ul li span {
            color: var(--main-color);
        }

.news_four_card_conrent h3 {
    padding-top: 12px;
    font-size: 24px;
    font-weight: 500;
}

    .news_four_card_conrent h3 a {
        color: var(--black-color);
    }

        .news_four_card_conrent h3 a:hover {
            color: var(--main-color);
        }

.news_four_card_conrent p {
    padding-top: 8px;
    padding-bottom: 10px;
}
/* ==========================
    News Details v2 Page
============================*/
.news_details_content_area img {
    width: 100%;
}

.news_details_four_heading {
    background: #FFFFFF;
    box-shadow: 4px 10px 20px rgb(0 0 0 / 8%);
    border-radius: 12px;
    padding: 20px 20px;
}

    .news_details_four_heading h2 {
        padding-top: 10px !important;
    }

.news_details_content_tops {
    margin-top: -95px;
}

/* =========================
    Contact v2 Page
=========================*/
.contact_left_top_heading h3 {
    padding-top: 35px;
    font-weight: 500;
}

.contact_left_top_heading p {
    padding-top: 15px;
}

.contact_form_two {
    padding-top: 40px;
}

.contact_two_left_wrapper {
    padding-top: 110px;
}

    .contact_two_left_wrapper h3 {
        font-weight: 500;
    }

.contact_details_wrapper {
    padding-top: 14px;
}

.contact_detais_item {
    padding-bottom: 25px;
}

    .contact_detais_item h4 {
        font-size: 14px;
        color: #727178;
        font-weight: 500;
        padding-bottom: 8px;
    }

    .contact_detais_item h3 {
        color: var(--main-color);
    }

.contact_map_area iframe {
    width: 100%;
    height: 200px;
}


/* =========================
    Become Expert Page
=========================*/
.how_expert_boxed {
    text-align: center;
    padding-top: 30px;
}

    .how_expert_boxed h3 {
        padding-top: 20px;
        font-weight: 500;
    }

    .how_expert_boxed p {
        padding-top: 10px;
    }

.video_two_left_side {
    background: #F3F6FD;
    border-radius: 12px;
    padding: 63px 40px;
}

    .video_two_left_side h2 {
        padding-bottom: 10px;
    }

.video_exp_item {
    display: flex;
    align-items: center;
}

.video_exp_icon {
    width: 14%;
}

    .video_exp_icon img {
        width: 90%;
    }

.video_exp_text {
    padding-top: 25px;
}

    .video_exp_text h3 {
        font-weight: 500;
        padding-bottom: 9px;
    }

.video_two_right_side {
    position: relative;
}

.video_two_play_area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* =========================
     Cruise Search Page
=========================*/
.item_searc_map_area iframe {
    width: 100%;
    height: 200px;
}

.name_search_form {
    margin-top: 20px;
    position: relative;
}

    .name_search_form i {
        position: absolute;
        right: 15px;
        top: 20px;
    }

.cruise_search_item {
    margin-bottom: 30px;
    background: #FFFFFF;
    border: 1px solid rgba(221, 221, 221, 0.5);
    border-radius: 20px;
}

.cruise_item_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

    .cruise_item_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.cruise_item_inner_content {
    padding: 15px 20px 22px 0px;
}

.cruise_content_top_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cruise_content_top_left ul li {
    display: inline-flex;
    font-size: 12px;
    font-weight: 500;
    color: #727178;
    align-items: center;
}

    .cruise_content_top_left ul li i {
        font-size: 7px;
        color: #DDDDDD;
        padding-left: 7px;
        padding-right: 5px
    }

.cruise_content_top_left h4 {
    padding-top: 8px;
}

.cruise_content_top_left p {
    padding-top: 8px;
}

.cruise_content_top_right h5 {
    font-size: 14px;
    color: var(--main-color);
    font-weight: 500;
}

.cruise_content_top_right h4 {
    font-size: 14px;
    padding-top: 5px;
}

.cruise_content_middel_wrapper {
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
}

.cruise_content_middel_left h5 {
    font-size: 14px;
    color: var(--main-color);
    font-weight: 500;
    padding-bottom: 4px;
}

.cruise_content_middel_right h3 {
    font-weight: 500;
}

    .cruise_content_middel_right h3 sub {
        font-size: 14px;
    }

.cruise_content_middel_right p {
    font-size: 14px;
    padding-top: 3px;
}

.cruise_content_bottom_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 23px;
}

.cruise_content_bottom_left ul li {
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 20px;
    display: inline-block;
    padding: 3px 14px;
    font-size: 14px;
    color: var(--black-color);
    margin-right: 10px;
}


/* =========================
     Cruise Map Page
=========================*/
.side_map_wrapper iframe {
    width: 100%;
    height: 900px;
}

/* =========================
   Bus Booking Page
=========================*/
.btn_modal_bus {
    z-index: 9999;
}

.bus_modal_heading {
    padding-top: 27px;
}

    .bus_modal_heading h3 {
        font-size: 18px;
        font-weight: 600;
        border-bottom: 1px solid #d0d0d0;
        padding-bottom: 6px;
    }

.bus_seat_left_side {
    padding-top: 20px;
}

    .bus_seat_left_side h6 {
        font-size: 12px;
        padding-bottom: 5px;
        line-height: 22px;
    }

.bus_seat_right_side {
    padding-top: 20px;
}

.seat_avelabel_item {
    display: flex;
    align-items: center;
    padding-bottom: 18px;
    justify-content: center;
}

    .seat_avelabel_item h4 {
        font-size: 14px;
        padding-left: 10px;
    }

.bus_ticket_tabel table {
    width: 100%;
}

    .bus_ticket_tabel table thead tr {
        background: #F3EFF9;
        text-align: center;
        border: 1px solid #e7e7e7;
    }

        .bus_ticket_tabel table thead tr th {
            padding: 10px 15px;
        }

    .bus_ticket_tabel table tbody tr {
        text-align: center;
        border: 1px solid #e7e7e7;
    }

        .bus_ticket_tabel table tbody tr td {
            padding: 10px 15px;
        }

.bus_price_total {
    padding-top: 25px;
}

    .bus_price_total h5 {
        background-color: #F3EFF9;
        padding: 8px 15px;
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        font-weight: 600;
    }

        .bus_price_total h5 span {
            color: var(--main-color);
        }

.bus_ticket_continue {
    text-align: right;
    padding-top: 20px;
}


/* =========================
       Visa details Page
=========================*/

.visa_holder_area .tour_details_boxed_inner h3 {
    font-weight: 600;
    padding-bottom: 20px;
    font-size: 18px;
}

.visa_holder_area .tour_details_boxed_inner {
    padding-top: 8px;
}

/* =========================
    Visa information Page
=========================*/
.visa_info_card_sm {
    background: #FFFFFF;
    box-shadow: -4px -4px 16px rgba(0, 0, 0, 0.08), 4px 8px 16px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    text-align: center;
    padding: 25px 11px;
    margin-top: 45px;
}

    .visa_info_card_sm h3 {
        padding-top: 12px !important;
    }

    .visa_info_card_sm p {
        padding-top: 10px !important;
    }

.area_visa_info_add {
    padding-top: 30px;
}

.visa_category_item ul li {
    padding-top: 18px;
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: 18px;
}

    .visa_category_item ul li:first-child {
        padding-top: 0;
    }

    .visa_category_item ul li:last-child {
        padding-bottom: 0;
        border: none;
    }

    .visa_category_item ul li a {
        font-size: 18px;
        font-weight: 600;
        color: var(--black-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .visa_category_item ul li a:hover {
            color: var(--main-color);
        }

.visa_info_side_call {
    background-color: var(--main-color);
    text-align: center;
    color: var(--white-color);
    padding: 30px 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

    .visa_info_side_call h2 {
        padding-top: 15px;
    }

        .visa_info_side_call h2 a {
            color: var(--white-color);
        }

            .visa_info_side_call h2 a:hover {
                color: var(--black-color);
            }

        .visa_info_side_call h2 i {
            padding-right: 15px;
        }

.visa_info_sid_padding_none {
    padding: 0 !important;
    overflow: hidden;
    position: relative;
}

.download_pdf_area_visa {
    display: flex;
    align-items: center;
    background: #EEF4F8;
    padding: 30px 20px;
}

.downloads_pdf_text_visa {
    padding-left: 14px;
}

    .downloads_pdf_text_visa a h3 {
        border-bottom: none;
        padding-bottom: 0;
        color: var(--black-color);
    }

    .downloads_pdf_text_visa a h5 {
        color: var(--paragraph-color);
        padding-top: 10px;
        font-size: 14px;
    }

.download_pdf_area_visa:hover .downloads_pdf_text_visa a h3 {
    color: var(--main-color);
}

.visa_request_side_form form .form-group {
    padding-top: 30px;
}

.visa_request_side_form_button {
    padding-top: 30px;
}

.visa_info_side_middle img {
    width: 100%;
}

/* =========================
       Tour Search Page
=========================*/
/* --Common Banner-- */
#common_banner {
    background-image: url('/img/banner/common-banner.png');
    padding: 120px 0 160px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.common_bannner_text {
    text-align: center;
}

    .common_bannner_text h2 {
        color: var(--white-color);
        font-weight: 400;
    }

    .common_bannner_text ul {
        padding-top: 20px;
    }

        .common_bannner_text ul li {
            display: inline-block;
            color: var(--white-color);
            padding-left: 7px;
        }

            .common_bannner_text ul li:first-child {
                padding-left: 0px;
            }

            .common_bannner_text ul li span {
                padding-right: 5px;
            }

                .common_bannner_text ul li span i {
                    color: var(--white-color);
                    font-size: 7px;
                    position: relative;
                    top: -2px;
                    left: -3px;
                }

            .common_bannner_text ul li a {
                color: #ffffff91;
            }

            .common_bannner_text ul li a {
                color: #ffffff91;
            }

                .common_bannner_text ul li a:hover {
                    color: var(--main-color);
                }

/* --Search Form-- */
#theme_search_form_tour {
    margin-top: -85px
}

.pagination_area .page-link {
    color: var(--main-color);
    border-radius: 5px;
    padding: 2px 8px;
    font-size: 14px;
}

    .pagination_area .page-link:hover {
        z-index: 2;
        color: var(--white-color);
        background-color: var(--main-color);
        border-color: var(--main-color);
    }

    .pagination_area .page-link:focus {
        z-index: 2;
        color: var(--white-color);
        background-color: var(--main-color);
        outline: none;
        box-shadow: none;
    }

.pagination_area .page-item {
    margin: 0 6px;
}

.pagination_area .pagination {
    justify-content: center;
    padding-top: 30px;
}

.left_side_search_boxed {
    background: #FFFFFF;
    /* border: 1px solid #00000030; */
    border-radius: 6px;
    padding: 15px 15px 0;
    margin-bottom: 0;
}

.left_side_search_heading h5 {
    /* border-bottom: 1px solid #00000030;*/
    padding-bottom: 7px;
    font-size: 14px;
    font-weight: 500;
}

.filter-price {
    padding-top: 18px;
    padding-bottom: 26px;
}

.apply {
    border: none;
    background: transparent;
    padding: 0;
    color: var(--main-color);
    font-weight: 500;
}

.filter-price-text {
    padding-bottom: 20px;
}

.noUi-horizontal .noUi-tooltip {
    margin-top: 13px;
    font-size: 15px;
}

html:not([dir="rtl"]) .noUi-horizontal .noUi-handle.noUi-handle-upper {
    right: -4px;
    top: 4px;
}

html:not([dir="rtl"]) .noUi-horizontal .noUi-handle {
    right: -13px;
    top: 4px;
}

.noUi-horizontal .noUi-handle {
    width: 15px;
    height: 15px;
}

.noUi-connect {
    background: var(--main-color);
}

.review_star {
    padding-top: 10px;
}

    .review_star .form-check {
        margin-top: 15px;
        margin-bottom: 0;
    }

.color_theme {
    color: var(--main-color);
}

.color_asse {
    color: #DDDDDD;
}

.form-check-label {
    width: 100%;
}

.tour_search_type {
    padding-top: 10px;
}

    .tour_search_type .form-check {
        padding-top: 2px;
    }

.area_flex_one {
    display: flex;
    justify-content: space-between;
}

    .area_flex_one span {
        color: var(--black-color);
        font-weight: 500;
    }

.tour_details_right_boxed {
    background: #FFFFFF;
    box-shadow: -4px -5px 14px rgba(0, 0, 0, 0.08), 5px 8px 16px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 25px 20px 35px 20px;
}

.first_child_padding_none ul li:first-child {
    padding-top: 0;
}

.tour_details_right_box_heading h3 {
    font-weight: 500;
    font-size: 22px;
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 10px;
    display: inline-block;
}

.valid_date_area {
    display: flex;
    align-items: center;
    padding-top: 25px;
}

.valid_date_area_one {
    padding-right: 40px;
}

    .valid_date_area_one h5 {
        font-weight: 500;
        padding-bottom: 5px;
    }

.tour_package_details_bar_list {
    padding-top: 20px;
}

    .tour_package_details_bar_list h5 {
        font-weight: 500;
        border-bottom: 1px solid var(--main-color);
        padding-bottom: 10px;
        display: inline-block;
    }

    .tour_package_details_bar_list ul li {
        padding-top: 15px;
        color: var(--paragraph-color);
        display: flex;
        align-items: center;
    }

        .tour_package_details_bar_list ul li i {
            color: var(--black-color);
            font-size: 6px;
            padding-right: 7px;
        }

.tour_package_details_bar_price {
    padding-top: 20px;
}

    .tour_package_details_bar_price h5 {
        font-weight: 500;
        border-bottom: 1px solid var(--main-color);
        padding-bottom: 10px;
        display: inline-block;
    }

.tour_package_bar_price {
    display: flex;
    align-items: center;
    padding-top: 15px;
}

    .tour_package_bar_price h6 {
        font-size: 14px;
        font-weight: 500;
    }

    .tour_package_bar_price h3 {
        padding-left: 10px;
        font-size: 22px;
        font-weight: 500;
        color: var(--main-color);
    }

        .tour_package_bar_price h3 sub {
            color: var(--paragraph-color);
            font-weight: 400;
            bottom: 0;
            font-size: 14px;
        }

.tour_select_offer_bar_bottom button {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.select_offer_modal.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    transition: transform .3s ease-in-out;
    z-index: 999999;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.travel_date_side .form-control {
    border: 1px solid var(--black-color);
    margin-top: 10px;
}

.select_person_side {
    padding-top: 25px;
}

    .select_person_side h3 {
        font-size: 18px;
        font-weight: 500;
    }

.select_person_item {
    padding-top: 20px;
    border-bottom: 1px solid #00000030;
    padding-bottom: 7px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select_person_left h6 {
    font-size: 14px;
    font-weight: 500;
}

.select_person_left p {
    font-size: 12px;
    font-weight: 500;
}

.select_person_right button {
    border: 1px solid #d6d6d6;
    background: transparent;
    font-size: 10px;
    transition: var(--transition);
}

    .select_person_right button:hover {
        background: var(--main-color);
        color: var(--white-color);
    }

.select_person_right span {
    font-size: 14px;
    padding: 0 4px;
}

.write_spical_not {
    padding-top: 30px;
}


    .write_spical_not textarea {
        height: 100%;
        border: 1px solid var(--black-color);
        margin-top: 10px;
    }

.write_spical_check {
    padding-top: 10px;
}

.main_spical_check p {
    font-size: 14px;
}

    .main_spical_check p span {
        color: var(--main-color);
    }

.proceed_booking_btn a {
    border-radius: 0;
}

.tour_details_heading_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour_details_top_heading h5 {
    padding-top: 15px;
    font-size: 14px;
}

.tour_details_top_heading_right h4 {
    color: var(--main-color);
}

.tour_details_top_heading_right h6 {
    font-size: 14px;
    color: var(--main-color);
    padding-top: 5px;
}

.tour_details_top_heading_right p {
    padding-top: 2px;
    font-size: 14px;
}

.tour_details_top_bottom {
    margin-top: 25px;
    border-top: 1px solid #eeeaea;
    padding-top: 13px;
    border-bottom: 1px solid #eeeaea;
    padding-bottom: 13px;
    display: flex;
    justify-content: space-between;
}

.toru_details_top_bottom_item {
    display: flex;
    align-items: center;
}

.tour_details_top_bottom_icon {
    font-size: 30px;
    padding-right: 10px;
}

.tour_details_top_bottom_text h5 {
    font-weight: 500;
}

.tour_details_top_bottom_text p {
    font-size: 14px;
}

.tour_details_img_wrapper {
    margin-top: 40px;
    display: block;
}

    .tour_details_img_wrapper .slider-nav {
        margin-top: 20px;
    }

.tour_details_boxed {
    background: #FFFFFF;
    box-shadow: -4px -5px 14px rgb(0 0 0 / 8%), 5px 8px 16px rgb(0 0 0 / 8%);
    border-radius: 10px;
    padding: 20px 20px;
    margin-top: 30px;
}

.heading_theme {
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 10px;
    display: inline-block;
    font-weight: 500;
    margin-bottom: 20px;
}

.tour_details_boxed_inner p {
    padding-bottom: 15px;
}

.tour_details_boxed_inner ul li {
    padding-bottom: 15px;
    color: var(--paragraph-color);
    display: flex;
}

    .tour_details_boxed_inner ul li i {
        color: var(--black-color);
        font-size: 6px;
        padding-right: 7px;
        padding-top: 6px;
    }

.tour_details_boxed_inner .accordion-button {
    padding: 0;
    font-weight: 600;
    font-size: 18px;
}

.tour_details_boxed_inner .accordion-item {
    border: none;
    border-radius: 0;
    padding-bottom: 15px;
    width: 100%;
}

.tour_details_boxed_inner .accordion-button:not(.collapsed) {
    color: var(--main-color);
    background-color: #fff;
    box-shadow: none;
}

.tour_details_boxed_inner .accordion-button:focus {
    z-index: 3;
    border-color: #fff;
    outline: 0;
    box-shadow: none;
}

.tour_details_boxed_inner .accordion-body {
    padding: 0;
}

.accordion_itinerary_list {
    padding-top: 15px;
}

.accordion_flex_area {
    display: flex;
}

.accordion_left_side h5 {
    width: 100px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    background: #4c82ff24;
    margin-right: 15px;
    font-weight: 600;
    font-size: 18px;
}

.map_area {
    width: 100%;
}

    .map_area iframe {
        width: 100%;
        height: 300px;
    }

.tour_detail_right_sidebar {
    margin-bottom: 30px;
}

.write_your_review_wrapper {
    background: #FFFFFF;
    box-shadow: -4px -5px 14px rgb(0 0 0 / 8%), 5px 8px 16px rgb(0 0 0 / 8%);
    border-radius: 10px;
    padding: 20px 20px;
    margin-top: 50px;
}

.write_review_inner_boxed {
    text-align: center;
    padding-top: 20px;
}

.all_review_wrapper {
    margin-top: 60px;
}

.all_review_box {
    background: #FFFFFF;
    box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.08), 4px 8px 16px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 20px 20px;
    position: relative;
    margin: 70px 10px 25px;
}

.all_review_date_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.all_review_date h5 {
    font-size: 14px;
}

.all_review_star {
    text-align: center;
}

    .all_review_star h5 {
        font-size: 14px;
    }

.review_star_all i {
    font-size: 14px;
    color: var(--main-color);
}

.all_review_text {
    text-align: center;
    margin-top: -100px;
}

    .all_review_text img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        width: 70px !important;
        margin: 0 auto;
    }

    .all_review_text span {
        padding-top: 5px;
        display: block;
    }

    .all_review_text h4 {
        padding-top: 45px;
    }

    .all_review_text p {
        padding-top: 15px;
    }

.all_review_small_img {
    display: flex;
    align-items: center;
    padding-top: 30px;
}

.all_review_small_img_item {
    padding-right: 11px;
}

.all_review_small_img .all_review_small_img_item:last-child {
    padding-right: 0px;
}

.all_review_small_img_item h5 {
    color: var(--main-color);
    cursor: pointer;
    font-size: 22px;
    font-weight: 600;
}

/* =========================
    Top Destinations Page
=========================*/
.payment_toggle {
    display: none;
}

#payment_checked .form-check-label {
    width: 100%;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 13px;
    cursor: pointer;
}

.payment_card,
.paypal_payment,
.payoneer_payment,
.cash_payment {
    padding-top: 15px;
}

    .payment_card .form-group {
        margin-bottom: 30px;
        cursor: pointer;
    }

#payment_checked .form-check:last-child .form-check-label {
    margin-bottom: 0;
}

.top_destinations_box {
    position: relative;
    margin-bottom: 30px;
    border-radius: 12px;
}

.top_destinations_box_content {
    position: absolute;
    bottom: 0px;
    left: 0;
    padding: 20px 20px;
    width: 100%;
}

    .top_destinations_box_content h4 {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        font-size: 22px;
    }

        .top_destinations_box_content h4 a {
            color: var(--white-color);
        }

            .top_destinations_box_content h4 a:hover {
                color: var(--main-color);
            }

    .top_destinations_box_content p {
        padding: 6px 0px;
        font-size: 14px;
        color: var(--white-color);
    }

        .top_destinations_box_content p .review_rating {
            color: var(--white-color);
        }

        .top_destinations_box_content p .review_count {
            margin-left: 10px;
        }

    .top_destinations_box_content h3 {
        font-weight: 500;
        color: var(--white-color);
    }

        .top_destinations_box_content h3 span {
            font-weight: 400;
            font-size: 14px;
        }

.heart_destinations {
    right: 17px;
    position: absolute;
    top: 12px;
    cursor: pointer;
    z-index: 9;
}

    .heart_destinations i {
        color: var(--white-color);
        font-size: 24px;
    }

        .heart_destinations i:hover {
            color: var(--main-color);
        }

.edit_date_form .form-control {
    border: 1px solid var(--black-color);
    margin-top: 10px;
}

.edit_date_form {
    padding-top: 20px;
}

.select_person_right h6 {
    font-size: 14px;
    font-weight: 500;
}

.edit_person {
    text-align: right;
    padding-top: 15px;
}

    .edit_person p {
        color: var(--main-color);
        cursor: pointer;
    }

.form-control {
    height: 55px;
    border: 2px solid #dddddd75;
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.bg_input {
    background-color: #F3F6FD;
}

.form-control:focus {
    color: var(--heading-color);
    background-color: #fff;
    border: 2px dashed var(--main-color);
    outline: none;
    box-shadow: none;
}

.tour_booking_form_box {
    background: #FFFFFF;
    box-shadow: -4px -5px 14px rgb(0 0 0 / 8%), 5px 8px 16px rgb(0 0 0 / 8%);
    border-radius: 10px;
    padding: 20px 20px 20px 20px;
}

#tour_bookking_form_item .form-group {
    margin-bottom: 30px;
}

#tour_bookking_form_item {
    padding-top: 25px;
}

.booking_tour_form {
    margin-bottom: 30px;
}

.booking_tour_form_submit a {
    margin-top: 15px;
}

.coupon_code_area_booking {
    padding-top: 30px;
}

.coupon_code_submit {
    padding-top: 20px;
}

.tour_booking_amount_area ul {
    padding-top: 15px;
}

    .tour_booking_amount_area ul li {
        display: flex;
        justify-content: space-between;
        padding-bottom: 6px;
        font-weight: 500;
        font-size: 14px;
    }

        .tour_booking_amount_area ul li:last-child {
            border-bottom: 1px solid #dadada
        }

.tour_bokking_subtotal_area {
    padding-top: 15px;
}

    .tour_bokking_subtotal_area h6 {
        font-size: 14px;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        padding-left: 105px;
    }

.coupon_add_area {
    padding-top: 15px;
    border-bottom: 1px solid #dadada;
    padding-bottom: 15px;
}

    .coupon_add_area h6 {
        font-size: 14px;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
    }

.remove_coupon_tour {
    font-size: 14px;
    font-style: italic;
    font-weight: 400 !important;
    color: var(--main-color);
    cursor: pointer;
}

.total_subtotal_booking {
    padding-top: 15px;
}

    .total_subtotal_booking h6 {
        font-size: 14px;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
    }

/* ================================
          About Page
===================================*/
.about_us_left h5 {
    font-size: 22px;
    font-weight: 500;
}

.about_us_left h2 {
    font-size: 40px;
    line-height: 55px;
    padding-top: 20px;
}

.about_us_left p {
    padding-top: 15px;
}

.about_us_left a {
    margin-top: 25px;
}

.about_offer_banner img {
    width: 100%;
    height: 100%;
}

.about_offer_banner {
    position: relative;
}

.about_offer_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

    .about_offer_text h3 {
        font-weight: 500;
        color: var(--white-color);
    }

        .about_offer_text h3 span {
            color: var(--main-color);
        }

    .about_offer_text h2 {
        color: var(--white-color);
        padding: 15px 0;
    }

    .about_offer_text a {
        color: var(--white-color);
        border-bottom: 1px solid var(--white-color);
    }

        .about_offer_text a:hover {
            color: var(--main-color);
            border-bottom: 1px solid var(--main-color);
        }

.about_service_boxed {
    background: #FFFFFF;
    box-shadow: -4px -4px 16px rgba(0, 0, 0, 0.06), 8px 10px 20px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 18px 18px;
}

    .about_service_boxed h5 {
        font-size: 20px;
        font-weight: 500;
        padding-top: 15px;
    }

    .about_service_boxed p {
        padding-top: 10px;
    }

.about_offer_banner {
    height: 400px;
}

#consultation_area {
    background-image: url('/img/common/counter_bg.png');
    padding: 150px 0 220px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.consultation_area_text {
    /* text-align: center; */
}

    .consultation_area_text h2 {
        color: var(--white-color);
    }

    .consultation_area_text p {
        color: #000000;
        padding-top: 0;
    }

.counter_area_wrapper {
    background: #FFFFFF;
    box-shadow: -4px -4px 16px rgba(0, 0, 0, 0.06), 8px 10px 20px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
}

.counter_item {
    text-align: center;
    border-right: 1px solid #e9e9e9;
    padding: 35px 0;
}

    .counter_item h3 {
        font-size: 35px;
        font-weight: 500;
        color: var(--main-color);
        padding-top: 6px;
        letter-spacing: 2px;
    }

    .counter_item h6 {
        font-weight: 500;
        font-size: 14px;
        padding-top: 2px;
    }

#counter_area {
    margin-top: -100px;
}

/* ==========================
    Tour Guides Page
========================== */
.guide_heading_area {
    text-align: center;
    border-bottom: 1px solid gainsboro;
    padding-bottom: 10px;
    padding-top: 30px;
    margin-bottom: 30px;
}

    .guide_heading_area h3 {
        font-weight: 400;
        color: var(--main-color);
    }

.tour_guides_boxed {
    position: relative;
    box-shadow: 8px 10px 24px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

    .tour_guides_boxed img {
        width: 100%;
    }

.tour_guide_content {
    position: absolute;
    bottom: 0;
    background: #fff;
    width: 100%;
    box-shadow: 8px 10px 24px rgba(0, 0, 0, 0.1);
    padding: 10px 10px;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(100px);
}

.tour_guides_boxed:hover .tour_guide_content {
    opacity: 1;
    transform: translateY(0px);
}

.tour_guide_content h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--main-color);
}

.tour_guide_content p {
    padding-top: 1px;
    font-size: 14px;
    font-weight: 500;
}

.tour_guide_content ul {
    margin-bottom: 10px;
    margin-top: -25px;
}

.tour_guide_content li {
    display: inline-flex;
    background: #fff;
    width: 30px;
    text-align: center;
    justify-content: center;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    box-shadow: 4px 6px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    color: var(--main-color);
    margin-left: 8px;
}

    .tour_guide_content li:first-child {
        margin-left: 0;
    }

    .tour_guide_content li:hover {
        background: var(--main-color);
    }

        .tour_guide_content li:hover a {
            color: var(--white-color);
        }

/* =============================
            Faqs Page
==============================*/

.faqs_item_wrapper h3 {
    font-weight: 500;
    font-size: 28px;
}

.faqs_main_item {
    margin-top: 30px;
}

    .faqs_main_item .accordion-item {
        background-color: #fff;
        border: none;
        margin-bottom: 30px;
    }

    .faqs_main_item .accordion-button {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        padding: 10px 20px;
        font-size: 14px;
        color: var(--black-color);
        text-align: left;
        background-color: #fff;
        border: 0;
        border-radius: 0;
        overflow-anchor: none;
        font-weight: 500;
        box-shadow: none;
    }

    .faqs_main_item .accordion-header {
        border: 1px solid #e5e5e5;
    }

    .faqs_main_item button:focus {
        box-shadow: -4px -5px 14px rgba(0, 0, 0, 0.08), 5px 8px 16px rgba(0, 0, 0, 0.08);
        border: none;
    }

.faqs_item_wrapper {
    padding-top: 50px;
}

.faqs_call_area {
    background: var(--main-color);
    text-align: center;
    padding: 90px 30px;
    border-radius: 10px;
}

    .faqs_call_area h5 {
        color: var(--white-color);
        padding-top: 20px;
    }

    .faqs_call_area h3 a {
        color: var(--white-color);
    }

        .faqs_call_area h3 a:hover {
            color: var(--black-color);
        }

    .faqs_call_area h3 {
        padding-top: 20px;
        font-size: 30px;
        font-weight: 500;
    }

/* =============================
        Contact Page
================================*/

.contact_boxed {
    box-shadow: -4px -5px 14px rgba(0, 0, 0, 0.08), 5px 8px 16px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
}

    .contact_boxed h6 {
        font-size: 14px;
        font-weight: 500;
        padding-bottom: 15px;
    }

    .contact_boxed h3 {
        padding-bottom: 20px;
        font-weight: 500;
    }

    .contact_boxed p {
        padding-bottom: 15px;
    }

    .contact_boxed a {
        font-weight: 600;
    }

.phone_tuch_area {
    display: flex;
    justify-content: space-between;
    padding-bottom: 35px;
    padding-top: 35px;
}

    .phone_tuch_area h3 {
        font-weight: 500;
        font-size: 30px;
    }

.contact_main_form_area {
    padding-top: 100px;
}

.contact_form {
    background: #FFFFFF;
    box-shadow: -4px -4px 16px rgba(0, 0, 0, 0.08), 4px 8px 16px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 35px 35px;
    margin-top: 20px;
}

#contact_form_content .form-control {
    margin-bottom: 30px;
}

#contact_form_content textarea {
    height: 100%;
}

.map_modal_content {
    text-align: center;
    padding: 80px 25px 25px 25px;
}

/* =============================
        News Page
================================*/
.news_area_top_right h2 {
    line-height: 45px;
    font-size: 30px;
}

    .news_area_top_right h2 a {
        color: var(--black-color);
    }

        .news_area_top_right h2 a:hover {
            color: var(--main-color);
        }

.news_area_top_right p {
    padding-top: 15px;
    padding-bottom: 15px;
}

.news_area_top_right a {
    font-weight: 500;
}

    .news_area_top_right a i {
        padding-left: 4px;
    }

.news_author_area {
    display: flex;
    padding-top: 20px;
}

.news_author_img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

    .news_author_img img {
        width: 100%;
    }

.news_author_area_name {
    padding-left: 15px;
}

    .news_author_area_name p {
        padding: 4px 0 0 0;
        font-size: 14px;
        display: flex;
        align-items: center;
    }

        .news_author_area_name p i {
            font-size: 6px;
            padding: 0 8px;
        }

.new_main_news_box {
    border-top: 1px solid #dbdbdb;
    margin-top: 50px;
}

.news_item_boxed {
    margin-top: 45px;
}

.news_item_img {
    border-radius: 10px;
    overflow: hidden;
}

    .news_item_img img {
        width: 100%;
    }

.news_item_content {
    padding: 25px 5px 0px 0;
}

    .news_item_content h3 {
        font-weight: 500;
        line-height: 35px;
    }

        .news_item_content h3 a {
            color: var(--black-color);
        }

            .news_item_content h3 a:hover {
                color: var(--main-color);
            }

    .news_item_content p {
        padding-top: 13px;
    }

/* =============================
        News Page Two
================================*/
.news_two_content {
    padding: 15px 0 0 0;
}

    .news_two_content h2 {
        line-height: 56px;
    }

        .news_two_content h2 a {
            color: var(--black-color);
        }

            .news_two_content h2 a:hover {
                color: var(--main-color);
            }

.news_two_author {
    display: flex;
    align-items: center;
}

    .news_two_author p {
        padding: 0px 0 0 15px;
    }

.news_sidebar_search {
    padding-top: 25px;
}

.news_sidebar_heading {
    border-bottom: 1px solid #d1d1d18a;
}

    .news_sidebar_heading h3 {
        font-weight: 500;
        padding-bottom: 10px;
        display: inline-flex;
        position: relative;
    }

        .news_sidebar_heading h3::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: var(--main-color);
            left: 0;
            bottom: -1px;
        }

.news_sidebar_content {
    padding-bottom: 50px;
}

.news_sidebar_search form .form-group {
    position: relative;
}

.news_sidebar_search form input {
    padding: 0 50px 0 20px;
    border-radius: 15px;
}

.news_sidebar_search form button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.news_sidebar_content_inner {
    padding-top: 25px;
}

.news_sidebar_category li a {
    background-color: #F3F6FD;
    margin-bottom: 10px;
    display: block;
    padding: 14px 20px;
    color: var(--black-color);
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    border-radius: 12px;
    border-left: 5px solid var(--main-color);
}

    .news_sidebar_category li a:hover {
        color: var(--main-color);
        transform: translateX(10px);
    }

.news_sidebar_tags li {
    display: inline-flex;
    margin-bottom: 15px;
    margin-right: 10px;
}

    .news_sidebar_tags li a {
        background-color: #F3F6FD;
        padding: 10px 22px;
        color: var(--heading-color);
        font-family: 'Poppins', sans-serif;
        transition: var(--transition);
        border-radius: 10px;
    }

        .news_sidebar_tags li a:hover {
            background-color: var(--main-color);
            color: var(--white-color);
        }

.sidebar_advasting_area a img {
    width: 100%;
}

.news_two_card .news_item_boxed {
    margin-top: 0px;
    margin-bottom: 40px;
}

/* =============================
        News Page Three
================================*/
.news_tabs_boxed .news_item_boxed {
    margin-bottom: 30px;
    margin-top: 0;
}

/* =============================
        News Details Page
================================*/
.news_details_content_area h2 {
    padding-top: 30px;
    line-height: 54px;
}

.news_details_content_area p {
    padding-top: 20px;
}

.news_details_content_area h3 {
    padding-top: 20px;
    font-weight: 500;
}

.news_details_content_area ul li {
    padding-top: 13px;
}

    .news_details_content_area ul li i {
        font-size: 10px;
        padding-right: 7px;
        color: var(--main-color);
    }

.news_details_left_img {
    padding-top: 30px;
}

.download_pdf_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #EEF4F8;
    padding: 20px 20px;
    border-radius: 12px;
    margin-top: 45px;
}

.downloads_pdf_icon {
    display: flex;
    align-items: center;
}

    .downloads_pdf_icon h3 {
        padding-left: 10px;
        font-weight: 500;
    }

.comment_area {
    padding-top: 60px;
}

    .comment_area h3 {
        font-weight: 500;
        margin-bottom: 30px;
    }

.comment_area_boxed {
    display: flex;
    padding-bottom: 35px;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 35px;
}

.comment_area .comment_area_boxed:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

.comment_img {
    width: 17%;
}

.comment_author_name {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}

.comment_text {
    padding-left: 20px;
}

.comment_area_form {
    padding-top: 60px;
}

    .comment_area_form h3 {
        font-weight: 500;
        margin-bottom: 30px;
    }

textarea {
    height: 100% !important;
}

#news_comment_form .form-froup {
    margin-bottom: 30px;
}

.news_details_right_item {
    background: #FFFFFF;
    box-shadow: -4px -4px 20px rgba(0, 0, 0, 0.08), 8px 10px 24px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 30px 20px;
    margin-bottom: 30px;
}

    .news_details_right_item h3 {
        font-weight: 500;
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 10px;
    }

.recent_news_item {
    display: flex;
    padding-top: 25px;
}

.recent_news_img {
    width: 35%;
}

.recent_news_text {
    padding-left: 10px;
}

    .recent_news_text h5 {
        font-weight: 500;
        line-height: 26px;
    }

        .recent_news_text h5 a {
            color: var(--black-color);
        }

            .recent_news_text h5 a:hover {
                color: var(--main-color);
            }

    .recent_news_text p {
        padding-top: 0px;
        font-size: 14px;
        display: flex;
        align-items: center;
    }

        .recent_news_text p i {
            font-size: 6px;
            margin: 0 7px;
            color: var(--main-color);
        }

.news_tags_area {
    padding-top: 10px;
}

    .news_tags_area ul li {
        display: inline-flex;
        margin-right: 10px;
        margin-top: 15px;
    }

        .news_tags_area ul li a {
            background: #DDDDDD;
            padding: 7px 15px;
            color: var(--black-color);
            font-weight: 400;
            transition: var(--transition);
        }

            .news_tags_area ul li a:hover {
                background: var(--main-color);
                color: var(--white-color);
            }

            .news_tags_area ul li a.active {
                background: var(--main-color);
                color: var(--white-color);
            }

.share_icon_area li:first-child {
    margin-left: 0;
}

.share_icon_area {
    padding-top: 30px;
}

    .share_icon_area li {
        display: inline-flex;
        background: #fff;
        width: 40px;
        text-align: center;
        justify-content: center;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
        box-shadow: 4px 6px 20px rgb(0 0 0 / 8%);
        transition: var(--transition);
        color: var(--main-color);
        margin-left: 15px;
    }

        .share_icon_area li:hover {
            background: var(--main-color);
        }

            .share_icon_area li:hover a {
                color: var(--white-color);
            }

/* ==============================
        Dashboard Page
================================*/
.dashboard_sidebar {
    background: #FFFFFF;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.dashboard_sidebar_user {
    text-align: center;
    padding: 30px 20px;
    background: #F3F6FD;
}

    .dashboard_sidebar_user img {
        width: 110px;
        height: 110px;
        border-radius: 50%;
    }

    .dashboard_sidebar_user h3 {
        padding-top: 20px;
        font-weight: 500;
    }

    .dashboard_sidebar_user p {
        line-height: 17px;
        padding-top: 10px;
    }

        .dashboard_sidebar_user p a {
            color: var(--paragraph-color);
        }

            .dashboard_sidebar_user p a:hover {
                color: var(--main-color);
            }

.dashboard_menu_area {
    padding: 40px 20px;
}

    .dashboard_menu_area ul li {
        margin-bottom: 30px;
        font-size: 18px;
    }

        .dashboard_menu_area ul li:last-child {
            margin-bottom: 0px;
        }

        .dashboard_menu_area ul li:hover {
            color: var(--main-color);
            cursor: pointer;
        }

        .dashboard_menu_area ul li a {
            color: var(--black-color);
        }

            .dashboard_menu_area ul li a.active {
                color: var(--main-color);
            }

            .dashboard_menu_area ul li a:hover {
                color: var(--main-color);
            }

        .dashboard_menu_area ul li i {
            padding-right: 10px;
        }

.booing_sidebar_dashboard {
    padding-top: 30px;
    padding-left: 30px;
}

.dashboard_dropdown_button {
    position: relative;
}

    .dashboard_dropdown_button span {
        position: absolute;
        right: 0;
        display: block;
        top: 0;
    }

.dashboard_top_boxed {
    background: #FFFFFF;
    box-shadow: -4px -4px 14px rgba(0, 0, 0, 0.08), 8px 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
}

.dashboard_main_top {
    margin-bottom: 30px;
}

.dashboard_top_icon i {
    font-size: 100px;
    color: var(--paragraph-color);
}

.dashboard_top_text {
    padding-left: 20px;
}

    .dashboard_top_text h3 {
        padding-bottom: 8px;
        font-weight: 500;
        color: var(--paragraph-color);
    }

    .dashboard_top_text h1 {
        line-height: 64px;
        font-size: 70px;
        font-weight: 500;
    }

.dashboard_common_table {
    background: #F3F6FD;
    border-radius: 12px;
    padding: 25px 30px;
}

    .dashboard_common_table h3 {
        font-weight: 500;
        border-bottom: 1px solid #d5d5d5;
        padding-bottom: 11px;
        position: relative;
    }

        .dashboard_common_table h3::after {
            content: "";
            width: 140px;
            height: 2px;
            background: var(--main-color);
            position: absolute;
            left: 0;
            bottom: 0;
        }

.table_common_area {
    margin-top: 40px;
}

    .table_common_area table {
        text-align: center;
        border: 1px solid #d5d5d5;
    }

    .table_common_area thead tr th {
        border: none;
        background: #fff;
        padding: 15px 0;
    }

    .table_common_area tbody tr td {
        padding: 16px 0;
    }

        .table_common_area tbody tr td.complete {
            color: #4CAF50;
            font-weight: 500;
        }

        .table_common_area tbody tr td.cancele {
            color: #C8102E;
            font-weight: 500;
        }

        .table_common_area tbody tr td i {
            cursor: pointer;
        }

/* ---My Profile Page--- */
#profile_form_area {
    padding-top: 35px;
}

    #profile_form_area .form-group {
        margin-bottom: 30px;
    }

    #profile_form_area label {
        margin-bottom: 10px;
    }

    #profile_form_area .change_password_field {
        position: relative;
    }

        #profile_form_area .change_password_field p {
            position: absolute;
            bottom: 14px;
            right: 15px;
            font-size: 12px;
            cursor: pointer;
            color: var(--main-color);
            font-weight: 500;
        }

.change_password_input_boxed h3 {
    margin-bottom: 30px;
}

.notification_top_heading {
    position: relative;
}

    .notification_top_heading p {
        color: var(--main-color);
        padding-left: 20px;
        position: absolute;
        left: 147px;
        top: 0;
        font-weight: 600;
        font-size: 12px;
    }

.notification_wrapper {
    padding-top: 30px;
}

    .notification_wrapper .accordion-item {
        background-color: transparent;
        border: 1px solid rgba(0, 0, 0, .125);
        margin-bottom: 15px;
    }

    .notification_wrapper .accordion-button {
        padding: 4px 25px;
        font-size: 14px;
        background-color: transparent;
    }

        .notification_wrapper .accordion-button.active {
            background: var(--white-color);
        }

        .notification_wrapper .accordion-button.shows {
            background: var(--white-color);
        }

        .notification_wrapper .accordion-button:focus {
            z-index: 3;
            border-color: none;
            outline: 0;
            background: #FFFFFF;
            box-shadow: -4px -5px 14px rgba(0, 0, 0, 0.08), 5px 8px 16px rgba(0, 0, 0, 0.08);
        }

        .notification_wrapper .accordion-button::after {
            display: none;
        }

.modal {
    z-index: 99999;
}

.logout_modal_content {
    text-align: center;
    padding: 80px 0px 40px 0;
}

    .logout_modal_content h3 {
        font-weight: 400;
        font-size: 35px;
        line-height: 45px;
    }

.logout_approve_button {
    display: flex;
    justify-content: space-between;
    padding: 40px 30px 0 30px;
}

    .logout_approve_button button {
        width: 46%;
    }

.btn_border {
    border: 1px solid var(--main-color);
}

    .btn_border:hover {
        background: var(--main-color);
    }

/* --wallet Page-- */
.wallet_area_boxed {
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgb(0 0 0 / 8%);
    border-radius: 10px;
    margin-top: 30px;
    padding: 25px 15px;
}

    .wallet_area_boxed h4 {
        border-bottom: 1px solid #d5d5d5;
        padding-bottom: 11px;
        position: relative;
    }

        .wallet_area_boxed h4::after {
            content: "";
            width: 100px;
            height: 2px;
            background: var(--main-color);
            position: absolute;
            left: 0;
            bottom: 0;
        }

.wallet_blance_boxed {
    margin-top: 20px;
}

    .wallet_blance_boxed p {
        font-size: 14px;
    }

    .wallet_blance_boxed h5 {
        font-weight: 500;
        padding-top: 4px;
    }

.wallet_boxed_flex {
    display: flex;
    justify-content: space-between;
}

.dashboard_price_range {
    padding-top: 30px;
}

.main_range_price {
    height: 13px;
    width: 100%;
    background: #66666652;
    border-radius: 40px;
    font-size: 10px;
    line-height: 100%;
    position: relative;
    overflow: hidden;
}

    .main_range_price::after {
        content: "30%";
        width: 49%;
        background: var(--main-color);
        height: 13px;
        position: absolute;
        border-radius: 30px;
        text-align: right;
        color: #fff;
        padding: 0 22px;
        line-height: 12px;
    }

.price_range_blance {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .price_range_blance p {
        font-size: 12px;
        font-weight: 600;
    }

.add_balance_area {
    padding-top: 30px;
}

    .add_balance_area .input-group-text {
        padding: 0 16px;
        font-size: 20px;
        border: none;
    }

    .add_balance_area .form-control {
        height: 45px;
    }

.other_add_balance_area {
    text-align: center;
    padding-top: 7px;
}

.other_add_bal_button {
    padding-top: 5px;
    padding-bottom: 20px;
}

.btn_add_bal {
    border: 1px solid var(--main-color);
    font-size: 14px;
    margin-left: 10px;
    transition: var(--transition);
}

    .btn_add_bal:hover {
        background: var(--main-color);
    }

    .btn_add_bal.active {
        background: var(--main-color);
        color: var(--white-color);
    }

.wallet_table_top {
    padding-top: 50px;
}

.btn_modal_closed {
    position: absolute;
    right: 20px;
    top: 16px;
}

    .btn_modal_closed button {
        background: var(--white-color);
        border: 2px solid var(--main-color);
        height: 40px;
        width: 40px;
        border-radius: 50%;
        font-size: 23px;
    }

        .btn_modal_closed button:hover {
            background: var(--main-color);
            color: var(--white-color);
            transition: var(--transition);
        }

/* ============================
        Login Page
================================ */
.common_author_boxed {
    background: #f3f6fd;
    padding: 45px 20px;
}

.common_author_heading {
    text-align: center;
}

    .common_author_heading h3 {
        font-weight: 400;
        color: var(--paragraph-color);
    }

    .common_author_heading h2 {
        padding-top: 15px;
    }

.common_author_form {
    padding: 50px 100px 0px 100px;
}

#main_author_form .form-group {
    margin-bottom: 20px;
    text-align: right;
}

    #main_author_form .form-group a {
        color: var(--paragraph-color);
        padding-top: 10px;
        display: block;
    }

        #main_author_form .form-group a:hover {
            color: var(--main-color);
        }

.common_form_submit {
    text-align: center;
}

.common_form_submit {
    padding-top: 20px;
}

.have_acount_area {
    text-align: center;
    padding-top: 20px;
}

.other_author_option ul {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}

    .other_author_option ul li {
        padding-left: 10px;
        transition: var(--transition);
    }

        .other_author_option ul li:hover {
            transform: translateY(-10px);
        }

.line_or {
    border-bottom: 1px solid #dddddd;
    margin-bottom: 30px;
}

    .line_or span {
        display: block;
        background: #f3f6fd;
        width: 44px;
        height: 44px;
        line-height: 44px;
        border-radius: 50%;
        color: var(--black-color);
        font-size: 20px;
        margin: 0px auto -21px auto;
    }

.otpCont {
    text-align: center;
    display: flex;
    justify-content: center;
}

.otSc {
    margin: 0;
    margin-right: 34px;
    border: 1px solid var(--main-color);
    padding: 5px 0px;
    font-size: 22px;
    text-align: center;
    width: 7%;
    outline: none;
}

    .otSc:last-child {
        margin-right: 0;
    }

/* ==============================
     Flight Search Area
================================*/

.flight_search_items {
    background: #FFFFFF;
    /* border: 1px solid #DDDDDD; */
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0;
    padding: 15px 0;
    width: 100%;
}

.flight_search_item_wrappper {
    margin-bottom: 5px;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.flight_search_left {
    display: flex;
    align-items: center;
    padding: 0 0px 0 23px;
}

.flight_search_middel {
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.flight_multis_area_wrapper {
    display: flex;
    justify-content: space-between;
}

.flight_search_destination {
    padding-left: 15px;
}

    .flight_search_destination p {
        font-size: 12px;
        line-height: 11px;
    }

    .flight_search_destination h3 {
        font-weight: 600;
        padding-top: 5px;
        font-size: 13px;
    }

    .flight_search_destination h6 {
        padding-top: 5px;
        font-size: 12px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        width: 140px;
    }

.flight_right_arrow {
    text-align: center;
}

    .flight_right_arrow img, .flight_logo img {
        max-width: 25px;
        height: 25px;
        border-radius: 50%;
        box-shadow: 1px 4px 12px rgba(0, 0, 0, 0.1);
    }

    .flight_right_arrow p {
        font-size: 11px;
        line-height: 18px;
    }

    .flight_right_arrow h6 {
        font-size: 11px;
        font-weight: 700;
        padding-top: 10px;
    }

.flight_search_right {
    /* background: #F3EFF9;*/
    padding: 0px 16px 1px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .flight_search_right .btn_theme {
        background: transparent;
        border: 2px solid #fd0001;
        color: #fd0001;
        padding: 4px 10px;
    }

        .flight_search_right .btn_theme:before {
            background: #fd0001;
        }

        .flight_search_right .btn_theme:hover {
            background: #fd0001;
            color: #fff;
        }

    .flight_search_right h5 {
        font-size: 18px;
        font-weight: 500;
        color: var(--paragraph-color);
    }

    .flight_search_right h2 {
        padding-top: 10px;
        font-size: 18px;
        margin-right: 14px;
        color: #000;
    }

        .flight_search_right h2 sup {
            font-size: 13px;
            color: var(--main-color);
            font-weight: 600;
            top: -19px;
            padding-left: 5px;
        }

    .flight_search_right a {
        margin-top: 13px;
    }

    .flight_search_right p {
        font-size: 12px;
        padding-top: 2px;
        font-weight: 500;
        color: var(--black-color);
    }

    .flight_search_right h6 {
        font-size: 14px;
        font-weight: 500;
        padding-top: 7px;
        cursor: pointer;
    }

.load_more_flight {
    text-align: center;
    padding-top: 20px;
}

    .load_more_flight button {
        border: 1px solid var(--main-color);
    }

        .load_more_flight button:hover {
            background: var(--main-color);
            color: #fff;
        }

.flight_policy_refund {
    /* border: 1px solid #d7d6d6; */
    border-radius: 0;
    padding: 0px 20px;
    border-top: 0;
}

.airline-details {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .airline-details .img {
        height: 24px;
        width: 24px;
        margin-right: 8px;
    }

    .airline-details .airlineName {
        margin-right: 8px;
        font-size: 11px;
        font-weight: 600;
    }

    .airline-details .flightNumber {
        font-size: .625rem;
        color: #4c4c4c;
    }

.flight_inner_show_component .flight_det_wrapper {
    display: flex;
    align-items: flex-start;
    width: 185px;
}

    .flight_inner_show_component .flight_det_wrapper .flight_det .code_time {
        font-size: 18px;
    }

        .flight_inner_show_component .flight_det_wrapper .flight_det .code_time .code {
            color: #4c4c4c;
            margin-right: 8px;
        }

        .flight_inner_show_component .flight_det_wrapper .flight_det .code_time .time {
            font-weight: 600;
        }

    .flight_inner_show_component .flight_det_wrapper .flight_det .airport {
        color: #4c4c4c;
        font-size: .75rem;
        line-height: 16px;
    }

    .flight_inner_show_component .flight_det_wrapper .flight_det .date {
        color: #4c4c4c;
        font-size: .625rem;
    }

.flight_inner_show_component .flight_duration {
    justify-content: center;
    width: 96px;
    text-align: center;
    align-items: flex-start;
    color: rgb(76, 76, 76);
    flex-wrap: wrap;
    line-height: 1;
}

    .flight_inner_show_component .flight_duration span {
        font-size: 0.625rem;
        color: rgb(76, 76, 76);
        margin-top: 8px;
        font-weight: 500;
        display: inline-block;
    }

.flight_inner_show_component .arrow_right {
    flex-basis: 88px;
    margin: 4px 1rem 0px;
    background-image: url('/img/icon/plane-right-blue.png');
    background-repeat: no-repeat;
    background-position: 50% center;
    text-align: center;
    min-height: 24px;
    min-width: 24px;
    background-size: 24px;
}

.flight_inner_show_component {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.TabPanelInner p {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 16px
}

.TabPanelInner h4 {
    font-size: 14px;
    padding-bottom: 4px;
    border-bottom: 1px solid #8b3eea;
    display: inline-block;
    margin-bottom: 12px;
}

.flight_show_down_wrapper {
    display: flex;
    /* border-bottom: 1px solid #cdcdcd; */
    padding-top: 5px;
}

.flight_refund_policy {
    display: flex;
    justify-content: space-between;
}

.flex_widht_less {
    width: 68%;
    padding-left: 22px;
}

.flight_info_taable h3 {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 4px;
}

.fligth_top_search_main_form_wrapper .flight_categories_search {
    position: inherit;
    right: 30px;
    top: 0;
    margin-bottom: 20px;
}

/* ===========================
   Flight Details Page
===========================*/
.flight_sidebar_right {
    padding-top: 20px;
    display: flex;
}

.flight_right_arrow_sidebar {
    text-align: center;
    padding: 0 22px;
}

    .flight_right_arrow_sidebar img {
        width: 40px;
    }

    .flight_right_arrow_sidebar h6 {
        font-size: 10px;
    }

    .flight_right_arrow_sidebar p {
        font-size: 10px;
        line-height: 13px;
    }

.flight_search_destination_sidebar p {
    font-size: 10px;
    font-weight: 600;
    color: var(--black-color);
}

.flight_search_destination_sidebar h3 {
    font-size: 14px;
    font-weight: 500;
}

.flight_search_destination_sidebar h6 {
    font-size: 10px;
    padding-top: 3px;
    font-weight: 600;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100px;
}

.flight_search_middel_sidebar {
    display: flex;
}

/* ===================================
        Hotel Search Page
====================================*/
.room_book_item {
    display: flex;
    border: 1px solid #DDDDDD;
    margin-top: 30px;
}


.room_booking_heading h3 {
    font-size: 20px;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 335px;
    padding-bottom: 10px;
}

    .room_booking_heading h3 a {
        color: var(--black-color);
    }

        .room_booking_heading h3 a:hover {
            color: var(--main-color);
        }

.room_fasa_area ul {
    display: flex;
    padding-top: 10px;
}

    .room_fasa_area ul li {
        padding-right: 20px;
    }

        .room_fasa_area ul li img {
            padding-right: 8px;
            width: 28px;
        }

.room_person_select {
    padding-left: 35px;
    padding-top: 15px;
}

    .room_person_select h3 {
        font-size: 18px;
        color: var(--main-color);
        font-weight: 600;
        padding-bottom: 15px;
    }

.room_booking_right_side {
    display: flex;
    justify-content: space-between;
    padding: 15px 25px 0 25px;
}

.room_select_area .nav-tabs {
    border-bottom: none;
    margin-bottom: 20px;
    justify-content: center;
}

    .room_select_area .nav-tabs .nav-item.show .nav-link,
    .room_select_area .nav-tabs .nav-link.active {
        color: var(--white-color);
        background-color: var(--main-color);
        border-color: #dee2e6 #dee2e6 #fff;
    }

    .room_select_area .nav-tabs .nav-link {
        margin-bottom: 0;
        background: #F3F6FD;
        border: 1px solid transparent;
        border-radius: 0.25rem;
        padding: 10px 110px;
    }

.room_details_facilities {
    display: flex;
    justify-content: space-between;
}

.tour_details_boxed_inner .room_details_facilities p {
    padding-bottom: 0px;
}

/* ===================================
    Room-Booking-Confirmation Page
====================================*/

.booking_success_arae {
    display: flex;
    align-items: center;
    padding: 0px 20px;
}

.booking_success_text {
    padding-left: 30px;
}

    .booking_success_text h3 {
        font-weight: 500;
        padding-bottom: 10px;
    }

.your_info_arae ul li {
    border-bottom: 1px solid #dfdfdf94;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
}

    .your_info_arae ul li:last-child {
        padding-bottom: 0px;
        margin-bottom: 0px;
        border-bottom: none;
    }

.name_first {
    width: 40%;
}

.last_name {
    font-weight: 600;
}

/* ===================================
    Become A Vendor Page
====================================*/
.how_it_boxed {
    text-align: center;
    padding-top: 30px;
}

    .how_it_boxed h3 {
        padding-top: 30px;
        font-weight: 500;
    }

    .how_it_boxed p {
        padding-top: 10px;
    }

.video_play_area {
    position: relative;
}

    .video_play_area img {
        width: 100%;
    }

.video_play_button {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

    .video_play_button a {
        color: var(--white-color);
    }

        .video_play_button a:hover {
            color: var(--main-color);
        }

    .video_play_button h4 {
        color: var(--white-color);
        padding-top: 35px;
    }

    .video_play_button h2 {
        color: var(--white-color);
        padding-top: 10px;
        font-size: 40px;
    }

.vendor_form_heading {
    padding-bottom: 30px;
}

    .vendor_form_heading p {
        padding-top: 10px;
    }

.vendor_img img {
    width: 100%;
}

/* ===================================
    Terms Of Service Page
====================================*/
.terms_item h4 {
    font-weight: 700;
}

.terms_item p {
    padding-top: 15px;
}

.terms_item {
    padding-top: 30px;
}

    .terms_item:first-child {
        padding-top: 0px;
    }

/* ===================================
       Error Page
====================================*/
.error_content h2 {
    padding-top: 30px;
}

.error_content p {
    padding-top: 10px;
}

.error_content a {
    margin-top: 30px;
}




/* --Preloader -- */

.preloader {
    position: fixed;
    z-index: 999999;
    background-color: var(--white-color);
    width: 100%;
    height: 100%;
    text-align: center;
    left: 0;
    right: 0
}

    .preloader .lds-spinner {
        display: inline-block;
        position: relative;
        width: 80px;
        height: 80px
    }

        .preloader .lds-spinner div {
            -webkit-transform-origin: 40px 40px;
            transform-origin: 40px 40px;
            -webkit-animation: lds-spinner 1.2s linear infinite;
            animation: lds-spinner 1.2s linear infinite
        }

            .preloader .lds-spinner div::after {
                content: " ";
                display: block;
                position: absolute;
                top: 5px;
                left: 35px;
                width: 5px;
                height: 20px;
                border-radius: 20%;
                background: var(--main-color)
            }

            .preloader .lds-spinner div:nth-child(1) {
                -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
                -webkit-animation-delay: -1.1s;
                animation-delay: -1.1s
            }

            .preloader .lds-spinner div:nth-child(2) {
                -webkit-transform: rotate(30deg);
                transform: rotate(30deg);
                -webkit-animation-delay: -1s;
                animation-delay: -1s
            }

            .preloader .lds-spinner div:nth-child(3) {
                -webkit-transform: rotate(60deg);
                transform: rotate(60deg);
                -webkit-animation-delay: -.9s;
                animation-delay: -.9s
            }

            .preloader .lds-spinner div:nth-child(4) {
                -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
                -webkit-animation-delay: -.8s;
                animation-delay: -.8s
            }

            .preloader .lds-spinner div:nth-child(5) {
                -webkit-transform: rotate(120deg);
                transform: rotate(120deg);
                -webkit-animation-delay: -.7s;
                animation-delay: -.7s
            }

            .preloader .lds-spinner div:nth-child(6) {
                -webkit-transform: rotate(150deg);
                transform: rotate(150deg);
                -webkit-animation-delay: -.6s;
                animation-delay: -.6s
            }

            .preloader .lds-spinner div:nth-child(7) {
                -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
                -webkit-animation-delay: -.5s;
                animation-delay: -.5s
            }

            .preloader .lds-spinner div:nth-child(8) {
                -webkit-transform: rotate(210deg);
                transform: rotate(210deg);
                -webkit-animation-delay: -.4s;
                animation-delay: -.4s
            }

            .preloader .lds-spinner div:nth-child(9) {
                -webkit-transform: rotate(240deg);
                transform: rotate(240deg);
                -webkit-animation-delay: -.3s;
                animation-delay: -.3s
            }

            .preloader .lds-spinner div:nth-child(10) {
                -webkit-transform: rotate(270deg);
                transform: rotate(270deg);
                -webkit-animation-delay: -.2s;
                animation-delay: -.2s
            }

            .preloader .lds-spinner div:nth-child(11) {
                -webkit-transform: rotate(300deg);
                transform: rotate(300deg);
                -webkit-animation-delay: -.1s;
                animation-delay: -.1s
            }

            .preloader .lds-spinner div:nth-child(12) {
                -webkit-transform: rotate(330deg);
                transform: rotate(330deg);
                -webkit-animation-delay: 0s;
                animation-delay: 0s
            }

@-webkit-keyframes lds-spinner {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes lds-spinner {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

/* --Top To Bottom-- */

.go-top {
    position: fixed;
    cursor: pointer;
    top: 0;
    right: 15px;
    color: #fff;
    background-color: var(--main-color);
    z-index: 4;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .9s;
    transition: .9s;
    border-radius: 50%
}

    .go-top.active {
        top: 98%;
        -webkit-transform: translateY(-98%);
        transform: translateY(-98%);
        opacity: 1;
        visibility: visible
    }

    .go-top i {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 0;
        right: 0;
        margin: 0 auto;
        -webkit-transition: .6s;
        transition: .6s
    }

        .go-top i:last-child {
            opacity: 0;
            visibility: hidden;
            top: 60%
        }

    .go-top::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: #393953;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: .6s;
        transition: .6s;
        border-radius: 50%
    }

.text-dark {
    color: #000;
}

.go-top:hover,
.go-top:focus {
    color: #fff
}

    .go-top:hover::before,
    .go-top:focus::before {
        opacity: 1;
        visibility: visible
    }

.package-list {
    list-style: none;
    display: flex;
    grid-column-gap: 6px;
    margin-left: 0;
}

    .package-list li {
        text-align: center;
        font-size: 15px;
    }

        .package-list li img {
            transform: none;
        }

.go-top:hover i:first-child,
.go-top:focus i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden
}

.pull-right {
    float: right;
}

.price {
    -webkit-border-radius: 10px;
    border-radius: 5px;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    padding: 0 10px;
    text-decoration: none;
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

@-webkit-keyframes glowing {
    0% {
        background-color: #B20000;
        -webkit-box-shadow: 0 0 3px #B20000;
    }

    50% {
        background-color: #FF0000;
        -webkit-box-shadow: 0 0 10px #FF0000;
    }

    100% {
        background-color: #B20000;
        -webkit-box-shadow: 0 0 3px #B20000;
    }
}

@-moz-keyframes glowing {
    0% {
        background-color: #B20000;
        -moz-box-shadow: 0 0 3px #B20000;
    }

    50% {
        background-color: #FF0000;
        -moz-box-shadow: 0 0 10px #FF0000;
    }

    100% {
        background-color: #B20000;
        -moz-box-shadow: 0 0 3px #B20000;
    }
}

@-o-keyframes glowing {
    0% {
        background-color: #B20000;
        box-shadow: 0 0 3px #B20000;
    }

    50% {
        background-color: #FF0000;
        box-shadow: 0 0 10px #FF0000;
    }

    100% {
        background-color: #B20000;
        box-shadow: 0 0 3px #B20000;
    }
}

@keyframes glowing {
    0% {
        background-color: #B20000;
        box-shadow: 0 0 3px #B20000;
    }

    50% {
        background-color: #FF0000;
        box-shadow: 0 0 10px #FF0000;
    }

    100% {
        background-color: #B20000;
        box-shadow: 0 0 3px #B20000;
    }
}

.view-details {
    border: 1px solid;
    display: block;
    padding: 5px 0;
    text-align: center;
    margin: 5px 0;
    cursor: pointer;
    transition: 0.5s;
}

    .view-details:hover {
        background: red;
        color: #fff;
    }

.go-top:hover i:last-child,
.go-top:focus i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%
}

.text-justify {
    text-align: justify;
}

.cta-area h1 {
    font-size: 48px;
    color: #000000;
    margin-bottom: 20px;
    line-height: 50px;
}

.cta-area .primary-btn {
    background: #000000;
    line-height: 48px;
    padding: 10px 38px;
    color: #ffffff;
    border: 1px solid #000000;
    letter-spacing: 2px;
}

.br-10 {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dee2e6 !important;
    margin-bottom: 15px;
    padding: 0;
}


.flights div {
    /* border: 1px solid #eee; */
}

    .flights div table {
        width: 100%;
        border: 1px solid #eee;
        box-shadow: 0 0 1px 0px gray;
        text-align: center;
    }

        .flights div table img {
            max-width: 45px;
            height: 45px;
            margin: 0 auto;
            padding: 7px;
        }

.border-bottom {
    border-bottom: 1px solid gray;
}

.btn-warning2 {
    background: #e68508;
    color: #fff !important;
}

    .btn-warning2:hover {
        background: #d17600;
    }

.new-table .btn {
    padding: 2px 8px;
    font-size: 12px;
}

.new-table thead th {
    font-size: 12px;
}

.new-table tbody td {
    font-size: 12px;
    position: relative;
}

    .new-table tbody td b {
        font-size: 12px;
    }

    .new-table tbody td i {
        /*border: 1px solid #bdbdbd;
        padding: 5px;
        border-radius: 50%;*/
        color: #000;
    }

.shmrc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f3eff9;
    padding: 0px 15px;
}

    .shmrc h6 {
        cursor: pointer;
    }

.table > thead {
    border: 1px solid #e5e5e5;
}

.table > tbody {
    border: 1px solid #e5e5e5;
}

.brief {
    cursor: pointer;
    display: block;
    position: relative;
    overflow: hidden;
    padding: 3px 0px;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
    border: 1px solid black;
    color: #000;
}

    .brief:focus {
        outline: none;
    }

    .brief span {
        font-size: 12px;
        background-color: #fd0001;
        color: #ffffff;
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        padding: 4px 9px;
        opacity: 0;
        transition: 0.3s;
        border-radius: 3px;
        z-index: 999;
    }

        .brief span::before {
            position: absolute;
            content: "";
            border-width: 10px;
            border-color: #333 transparent transparent;
            border-style: solid;
            left: 35%;
            bottom: -20px;
            transform: translateX(-50%);
            opacity: 0;
        }

    .brief:hover {
        overflow: visible;
    }

        .brief:hover span,
        .brief:hover span::before {
            opacity: 1;
        }

[data-position="top"] span {
    bottom: auto;
    top: -40px;
}

    [data-position="top"] span::before {
        bottom: auto;
        top: 25px;
        border-color: transparent transparent #fd0001;
        transform: rotateX(178deg);
    }

.toolTip2 {
    top: 30px !important;
    background-color: #fff !important;
    padding: 0 !important;
}

    .toolTip2 table thead {
        background: #0dcaf0;
    }

        .toolTip2 table thead th {
            color: #fff;
        }

[data-position="top"] .toolTip2::before {
    top: -16px;
    border-color: transparent transparent #0dcaf0;
    transform: none;
    left: 48%;
}

.toolTip2 table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.flight_time {
    border-left: 1px solid #bbbbbb;
    padding-left: 15px;
    margin-right: 0;
}

    .flight_time .text-left p {
        line-height: 20px;
    }

.toolTip3 {
    top: -35px !important;
    left: -190px !important;
}

[data-position="top"] .toolTip3::before {
    top: 37px;
    left: 100%;
    transform: rotateZ(93deg);
}

.flight_time .text-left p:nth-child(2) {
    font-size: 13px;
    color: #5e5e5e;
}

.flight_search_midDEL {
    display: flex;
    align-items: center;
}

#calendar .form-check {
    min-height: unset;
    margin-bottom: 0;
}




































.month {
    padding: 20px 25px;
    width: 100%;
    background: #1abc9c;
    text-align: center;
}

    .month ul {
        margin: 0;
        padding: 0;
    }

        .month ul li {
            color: white;
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

    .month .prev {
        float: left;
        padding-top: 10px;
        cursor: pointer;
    }

    .month .next {
        float: right;
        padding-top: 10px;
        cursor: pointer;
    }

.weekdays {
    margin: 0;
    padding: 10px 0;
    background-color: #ddd;
}

    .weekdays li {
        display: inline-block;
        width: 13.6%;
        color: #666;
        text-align: center;
    }

.days {
    padding: 10px 0;
    background: #fff;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

    .days li {
        list-style-type: none;
        width: 13.6%;
        text-align: center;
        margin-bottom: 5px;
        font-size: 12px;
        color: #000;
        border: 1px solid #c7c7c7;
        padding: 5px 0;
        text-align: center;
        position: relative;
        cursor: pointer;
    }

        .days li .active {
            padding: 5px;
            background: #1abc9c;
            color: white !important
        }



/* Add media queries for smaller screens */
@media screen and (max-width:720px) {
    .weekdays li, .days li {
        width: 13.1%;
    }
}

@media screen and (max-width: 420px) {
    .weekdays li, .days li {
        width: 12.5%;
    }

        .days li .active {
            padding: 2px;
        }
}

@media screen and (max-width: 290px) {
    .weekdays li, .days li {
        width: 12.2%;
    }
}

.page-wrapper {
    background: #fff;
    padding-top: 115px;
}

.faretype {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    border: 1px solid #e9e9e9;
    padding: 5px 15px 4px;
    margin: 7px 0 25px;
}

    .faretype .form-check {
        background: #f5f5f5;
        margin: 0 8px;
        padding: 8px 0px 8px 30px;
        border-radius: 4px;
    }

        .faretype .form-check.active {
            background: none;
            border: 1px solid #0078c1;
        }
/* .faretype .form-check.active label {
                color: #0c850c;
            }
            .faretype .form-check.active .form-check-input:checked {
                background-color: #0c850c;
                border-color: #0c850c;
            }*/
.px-15 {
    padding: 0 15px;
}

.page-wrapper .table {
    background: #f3f3f3;
    padding: 25px 0px 25px 25px;
    border-radius: 6px;
}

    .page-wrapper .table table tr td .form-check {
        margin-bottom: 10px;
    }

.page-wrapper .overview {
    border: 1px solid #efefef;
    padding: 20px 15px;
}

    .page-wrapper .overview .form-select {
        padding: 0.1rem 2.25rem 0.1rem 0.75rem;
        font-size: 14px;
    }

    .page-wrapper .overview ul li {
        border: 1px solid #e1e1e1;
    }

        .page-wrapper .overview ul li .active {
            color: #fff;
            background: #0078c1;
            border-radius: 0;
        }

.menubtn {
    background: #f1f1f1;
    border: 1px solid #e9e9e9;
}

    .menubtn .btn {
        text-transform: capitalize;
    }

    .menubtn .active {
        color: #0078c1;
    }

.bg-primry {
    background: #0078c1;
}

.btn .bg-secondary {
    background: #d5d5d5 !important;
}

.right-sec {
    border: 1px solid lightgrey;
    padding: 10px;
}

.bg-thead {
    background: #2f76b1;
}

    .bg-thead tr th {
        color: #fff;
    }

    .bg-thead th {
        font-size: 11px;
        text-align: center;
    }

.flight_data_tr {
    background: #def0ff;
}

    .flight_data_tr tr {
        border: 1px solid #fff;
    }

.flight_data tr {
    background: #fff;
}

    .flight_data tr.tr-clr {
        background: aliceblue;
    }

    .flight_data tr td {
        border: 1px solid #f5f5f5;
        font-size: 12px;
        color: #707070;
    }

        .flight_data tr td a {
            color: #000;
            text-decoration: underline;
            margin-left: 5px;
        }

            .flight_data tr td a:hover {
                text-decoration: none;
            }

        .flight_data tr td:not(:first-child) {
            text-align: center;
        }

.bg-thead-one tr th {
    text-align: left;
}

.btn-pink {
    background: #ffa8e4;
}

.left_side_search_heading {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #00000030;
}

    .left_side_search_heading div span a {
        color: #000;
    }

.bottom-arrow {
    position: absolute !important;
    bottom: 0px;
    left: 143px;
    z-index: 9;
    background: #00badf;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    padding: 0;
    text-align: center;
    cursor: pointer;
}

.bottom-arrow-up {
    background: #008ca9;
}

.bottom-arrow i {
    line-height: 25px;
    color: #fff !important;
}

.container {
    max-width: 90%;
}

.about-text h4 {
    color: #fd0001;
    margin: 5px 0 3px;
}

.mainlogincustmer {
    width: 833px;
    margin: auto;
    padding: 10% 0;
}

.viewprintdiv {
    /*background: #ffffff;*/
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.24);
}

.maincaldv {
    margin: 20px 0;
    padding: 20px 23px;
}

.headlinewcal {
    color: #fff;
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 35px;
}

.numwerwe ul {
    padding: 0px;
    margin-bottom: 35px;
}

.numwerwe li {
    font-size: 16px;
    line-height: 28px;
    position: relative;
    list-style-type: circle;
    margin-left: 15px;
    color: #fff;
}

.buttonjoin {
    border-radius: 50px;
    font-weight: 600;
    background-color: #f79431;
    text-shadow: none;
    box-shadow: none;
    border: none;
    font-size: 16px;
    padding: 12px 30px;
    color: #fff !important;
    cursor: pointer;
}

.mainwrdty {
    background: #d62128;
    padding: 14px 30px 16px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

#loginformm {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.customlogindvbx {
    padding: 35px 40px !important;
    background: #ffffff;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.butnsumcus {
    font-size: 16px;
    color: #d62128;
    border: none;
    height: auto;
    line-height: 1;
    padding: 12px 30px;
    text-shadow: none;
    box-shadow: none;
    margin-top: 11px;
    float: left;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid #d62128;
    background: none;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

    .butnsumcus:hover {
        background-color: #d62128 !important;
        color: #fff !important;
        transition: all 0.2s ease-in-out;
    }

.fordrigthlnk {
    margin-top: 16px;
}

.fordrigthlnk {
    text-align: right;
    padding: 5px 0px !important;
    float: right;
}

.forgetcuslink {
    color: #0c6697;
    font-size: 14px;
}

.customerhealin {
    margin: 20px 0 25px;
    font-size: 16px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 600;
    color: #000000;
}

.mybookingbtn {
    padding: 12px 25px;
    margin-top: 35px;
}

.form_ {
    max-width: 750px;
    margin: 0 auto;
    box-shadow: inset 0px 0px 9px 0px #cccccc;
    border-top: 4px solid green;
    border-bottom: 4px solid #6d1414;
    border-radius: 12px;
    padding: 0 15px;
}

    .form_ .label_ {
        padding-left: 5px !important;
    }

.pt-80 {
    padding-top: 80px;
}

.overview .btn {
    padding: 10px 15px;
}

.adtoltr {
    padding-top: 40px;
}

    .adtoltr a {
        text-decoration: underline;
    }

        .adtoltr a:hover {
            text-decoration: none;
        }

.page-wrapper .table2 {
    padding: 10px 0px 0px 25px;
}

.topbar-list li a span {
    color: #fff;
    font-weight: 600;
}

.topbar-list {
    padding: 5px 11px;
    background: #d62128;
    width: fit-content;
    border-radius: 40px;
    margin-top: 7px;
    margin-left: auto;
}

    .topbar-list li::before {
        width: 2px;
        background-color: #f9f9f9;
    }

.page-wrapper .overview .month ul li {
    border: none;
}

.weekdays li {
    border: none !important;
}

.clndr button {
    padding: 5px 12px !important;
    margin: 8px 0;
}

.amnt {
    margin-top: 6px;
}

.update_btn {
    /*position: absolute;
    top: 23px;
    left: 23px;*/
    position: relative;
    display: none;
}

.days li:hover .amnt {
    display: none;
}

.update_tool {
    position: absolute;
    z-index: 999;
    top: -25px;
    left: 90%;
    width: 230px;
    border: 1px solid #fd0001;
    background: #fff;
}

    .update_tool::before {
        position: absolute;
        content: "";
        border-width: 10px;
        border-color: #fd0001 transparent transparent;
        border-style: solid;
        left: -65px;
        top: -9px;
        bottom: -20px;
        transform: rotateZ(92deg);
        opacity: 1;
    }

    .update_tool table {
        background: transparent !important;
        margin-bottom: 0;
    }

        .update_tool table tr td {
            padding: 3px 0.2rem;
        }

            .update_tool table tr td img {
                margin-right: 10px;
            }

    .update_tool .table > tbody {
        border: none;
    }

.days li:hover .update_btn {
    display: block;
}

.option-item a img {
    width: 145px;
}

.option-item {
    margin: 0 0 0px 0;
}
/*.list-detail{
    background: #134f8b;
    display:flex;
    flex-wrap:wrap;
}
.list-detail li:first-child{
    width:20%;
    color:#fff;
    border-right: 1px solid #e0e0e0;
}
.list-detail li:not(:first-child){
    color:#fff;
    border-right: 1px solid #e0e0e0;
    width:25%;
}*/
.fltpsngrdtl table {
    width: 100%;
    text-align: center;
}

    .fltpsngrdtl table .br-1 {
        border-right: 1px solid #dfdfdf;
    }

.fltpsngrdtl-1 table {
    width: 100%;
}

    .fltpsngrdtl-1 table .form-control {
        width: 90%;
    }

.fltpsngrdtl-2 table {
    width: 100%;
}

.table2 thead tr th {
    border: 1px solid lightgrey;
    text-align: center;
}

.table2 tr td {
    border: 1px solid lightgrey;
    text-align: center;
}

.fltpsngrdtl-1 {
    padding: 10px;
}

.bg-yellow {
    background: #fa6f1c;
    color: #fff;
}

.bg-redish {
    background: #d62128;
    color: #fff;
}

.pl-10 {
    padding: 5px 10px;
}

table tbody tr td a {
    font-size: 13px !important;
}

    table tbody tr td a:hover {
        text-decoration: none !important;
    }

.baggage_details span {
    font-size: 12px;
}

.overview_passenger_detail {
    border: 1px solid #e1e1e1;
}

.borderr {
    border: 1px solid #e1e1e1;
}

.tblbdr {
    margin: 10px 0;
}

    .tblbdr tbody tr {
        border: 1px solid #e3e3e3;
    }

        .tblbdr tbody tr th {
            padding: 5px 10px;
        }

        .tblbdr tbody tr td {
            border: 1px solid #e3e3e3;
            padding: 5px 10px;
            font-size: 12px;
            font-weight: 600;
        }

.show-dtl {
    color: #134f8b;
}

    .show-dtl:hover {
        color: #C78200;
    }

.sub_detail tbody tr td {
    border: 1px solid #e1e1e1;
    padding: 3px 10px;
}

.overview_passenger_detail .btn_theme:hover {
    color: #fff;
}

.side-table {
    background: #dee4f6;
    color: #115895;
    padding: 5px;
    overflow-y: scroll;
    position: fixed;
    height: 536px;
}

.modal-dialog {
    max-width: 800px;
    /*height: 600px;*/
    /*overflow-y: scroll;*/
}

.modal-header {
    /*padding: 0rem 1rem;*/
    border-bottom: none;
}

.modal-body {
    overflow-y: scroll;
    height: 555px;
}

.modal-dialog table tr td {
    padding: 0px 8px;
}

.seatblue {
    background: #DD7FF4;
    border: 1px solid transparent;
    color: #fff;
    padding: 2px 15px;
}

.seatblue {
    background: #DD7FF4;
    border: 1px solid transparent;
    color: #fff;
    padding: 2px 12px;
}

.seatgreen {
    background: #68bd56;
    border: 1px solid transparent;
    color: #fff;
    padding: 2px 12px;
}

.seatgray {
    background: #bfbdbe;
    border: 1px solid transparent;
    color: #fff;
    padding: 2px 12px;
}

.seatbulk {
    background: #bfbdbe;
    border: 1px solid #c4c4c4;
    background: #fff;
    color: #fff;
    padding: 2px 12px;
}

.right-table {
    width: fit-content;
    margin: auto;
    text-align: center;
}

.tblclm {
    width: 100%;
}

    .tblclm tbody tr td {
        border: 1px solid #d7d7d7;
        padding: 2px 2px;
        position: relative;
    }

        .tblclm tbody tr td span {
            /*background: #f7f7f7;*/
            border: 1px solid #d7d7d7;
            border-radius: 0 0 5px 5px;
            padding: 2px 4px;
            font-size: 12px;
        }

            .tblclm tbody tr td span.active {
                background: #b9b9b9;
            }

.setaclr table tbody tr td {
    padding: 4px 6px;
    border: 1px solid #d7d7d7;
}

.seat_info {
    position: absolute;
    z-index: 9;
    background: #fff;
    border: 1px solid #cfcfcf;
    width: 180px;
    text-align: left;
    padding: 4px 10px;
    top: 30px;
    left: 0px;
    border-radius: 3px;
    box-shadow: 2px 2px 25px -5px #c9c9c9;
    display: none;
}

    .seat_info p {
        line-height: 20px;
        font-size: 12px;
        color: #585858;
    }

.tblclm tbody tr td:hover .seat_info {
    display: block;
}

.side-table table tbody tr td a {
    color: #115895;
}

    .side-table table tbody tr td a:hover {
        color: #efa410;
        text-decoration: underline !important;
    }

.stinfo {
    background: #efa410;
    padding: 2px 8px;
    color: #fff;
    width: 188px;
    position: absolute;
    left: -8%;
    font-size: 12px;
    top: -40px;
    display: none;
    z-index: 9;
}

.stinfo_show:hover .stinfo {
    display: block !important;
}

.font11 {
    color: red;
}

.flight_info tbody tr th {
    border: 1px solid #dddddd;
    padding: 2px 8px;
}

.flight_info tbody tr td {
    border: 1px solid #dddddd;
    padding: 2px 8px;
}

.date-time {
    font-size: 13px;
}

.bg-gr {
    background: #ededed;
    padding: 8px 10px;
    float: left;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d3d3d3;
    align-items: center;
}

.nxt-pre-col button {
    border: 0;
    background: transparent;
    text-transform: uppercase;
    padding: 0;
    position: relative;
}

.no-padd {
    padding: 0;
}

.no-margn {
    margin: 0;
}

.rgtbdr:before {
    content: "";
    height: 100%;
    width: 1px;
    border-left: 1px solid #cecece;
    position: absolute;
    top: 0;
    left: 100%;
}

.nxt-pre-col {
    font-size: 10px;
    color: #222121;
    display: flex;
    padding: 7px 3px;
    border-radius: 40px;
    background: #ffffff;
    text-align: center;
    justify-content: space-evenly;
}

.travel-det {
    color: #000;
    font-size: 15px;
    font-weight: 500;
}
/*.rows{
    width:100%;
}*/
.sec-se a {
    color: #000;
    font-size: 12px;
    text-transform: uppercase;
    display: flex;
    align-items: center
}

.sec-se {
    float: left;
    padding: 9px 0;
}

    .sec-se a i {
        margin-left: 7px;
    }

.third-se .flight__logo img {
    border-radius: 5px;
}

.third-se .flight__logo_code {
    font-size: 12px;
    font-weight: 400;
}

.flight--time {
    font-weight: 700;
    font-size: 19px;
}

.third-se .flight--city {
}

.third-se .flight--price {
    color: #d63b05;
    font-size: 22px;
    font-weight: 700;
}

.bg-yel_s {
    /* background:#fffdee; */
    border-bottom: 1px solid #ebebeb;
    /* border-radius: 5px; */
    padding: 6px 0;
    align-items: baseline;
}

.third-se .arrow-md-round-new {
    height: 2px;
    margin: 5px auto 3px auto;
    background: #c4c4c4;
    position: relative;
    width: 90%;
}

    .third-se .arrow-md-round-new:before {
        content: '';
        position: absolute;
        width: 7px;
        height: 7px;
        background: #c4c4c4;
        border-radius: 50%;
        left: 0;
        top: -3px;
    }

    .third-se .arrow-md-round-new:after {
        content: '';
        position: absolute;
        width: 7px;
        height: 7px;
        background: #c4c4c4;
        border-radius: 50%;
        right: 0;
        top: -3px;
    }

.third-se .txt-b3 {
    font-size: 12px;
    color: #737373;
}

.third-se .txt-b2-airn {
    font-size: 16px;
    color: #1e1f1f;
    font-weight: 500;
}

.third-se .flightdet6E {
    background-image: url(https://flight.easemytrip.com/Content/AirlineLogon/SG.png);
    background-position: center;
    background-repeat: no-repeat;
    /*  width: 40px;*/
    height: 50px;
    aspect-ratio: 2/2;
    background-size: contain;
    border-radius: 12px;
}

.txt-b1-round {
    font-size: 20px;
    font-weight: 600;
}

.txt-b3-b {
    font-weight: 700;
}

.mar-to-tb {
    margin-bottom: 10px;
}

.txt-r9 {
    font-size: 16px;
    font-weight: 500;
}

.third-se .nav-pills {
    background: #f7f7f7;
    border-radius: 30px;
    flex-wrap: nowrap;
}

    .third-se .nav-pills .nav-item {
    }

        .third-se .nav-pills .nav-item .nav-link {
            font-size: 12px;
            padding: 5px 10px;
            color: #000;
            font-weight: 500;
            line-height: normal;
        }

            .third-se .nav-pills .nav-item .nav-link.active {
                font-size: 12px;
                padding: 5px 10px;
                border-radius: 25px;
                background: #008eff;
                color: #fff;
            }

.third-se .txt-d1 {
    color: #ec382f;
}

.third-se .lvrbg {
    border: 1px dashed #ccc;
    border-radius: 20px;
    padding: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    background: #f7f7f7;
}

.third-se .mgt6 {
    margin-top: 6px;
}

.third-se .bord-bot5 {
    border-bottom: 1px dashed #ccc;
    padding-bottom: 10px;
    height: 0;
}

.third-se .mtb20 {
    margin-top: 20px;
    margin-bottom: 0;
}

.third-se .no-margn {
    margin-left: 0;
    margin-right: 0;
}

.third-se {
    border: 1px solid #e5e5e5;
    float: left;
    border-radius: 10px;
    margin-bottom: 15px;
}

    .third-se:hover {
        box-shadow: 0 1px 10px rgba(0, 0, 0, 0.24);
    }

.--cont-tab table {
}

    .--cont-tab table tr {
        border-bottom: 1px solid #e5e5e5;
    }

        .--cont-tab table tr td {
            padding: 5px 10px;
        }

            .--cont-tab table tr td:last-child {
                text-align: right;
            }

            .--cont-tab table tr td b {
                font-weight: 500;
            }

.termsbagg ul {
    padding-left: 15px;
}

.termsbagg li {
    list-style: disc;
    font-size: 12px;
}

.--cont-tab2 .table thead {
    background: #f1f1f1;
}

    .--cont-tab2 .table thead tr th {
        font-weight: 600;
        padding: 9px 6px;
    }

        .--cont-tab2 .table thead tr th span {
            font-weight: 400;
            display: block;
            font-size: 12px;
        }

.--cont-tab2 .terms-h {
    font-weight: 500;
    margin: 4px 0 10px;
}

td p.txt-b3 {
    line-height: normal;
}

.refund {
    height: 21px;
    background: #fff;
    border-radius: 20px;
    text-align: center;
    line-height: 20px;
    color: #2dca1c;
    font-size: 11px;
    float: right;
    border: 1px solid #2dca1c;
    padding: 0 6px;
}

.mar10 {
    margin-top: 10px;
}

.--cont-tab2 .terms {
    color: #000;
    font-size: 10px;
    height: 115px;
    overflow-x: hidden;
    padding: 0;
}

    .--cont-tab2 .terms::-webkit-scrollbar {
        width: 5px;
        height: 10px;
    }

    .--cont-tab2 .terms::-webkit-scrollbar-thumb {
        background: #2196F3;
        border-radius: 10px;
    }

    .--cont-tab2 .terms::-webkit-scrollbar-thumb {
        background: #888;
    }

    .--cont-tab2 .terms::-webkit-scrollbar-track {
        background: #EAEAEA;
        border-radius: 10px;
    }

    .--cont-tab2 .terms::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

.--cont-tab3 {
    border: 1px solid #dbdbdb;
    padding: 10px;
}

.third-se .tab-content .tab-pane {
    padding-bottom: 20px;
}

.third-se label {
    cursor: pointer;
    width: 100%;
}

.hli_radio {
    background-color: #fffdee;
    border-radius: 10px;
}

.mar-pad {
    margin: 0;
    padding: 0;
}

.new-rad ul {
    padding-right: 15px;
}

    .new-rad ul li input {
        height: 17px;
        width: 17px;
    }
/*.sidebar-container{
    display: none;
    position: fixed;
    z-index: 9999;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -ms-backdrop-filter: blur(3px);
    -o-backdrop-filter: blur(3px);
    -moz-backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}*/
/*.sidebar{
    position: absolute;
    top: 0;
    background: #ffffff;
    z-index: 99999;
    width: 50%;
    height: 100%;
    right: 0;
    padding: 20px 20px;
    margin: 0;
}*/
.sidebar .close-btn {
    border: 0;
    background: none;
    position: absolute;
    right: 20px;
    top: 24px;
}

    .sidebar .close-btn img {
        width: 14px;
    }

.sidebar .cityname span {
    font-size: 20px;
    font-weight: 400;
}

    .sidebar .cityname span img {
        width: 19px;
    }

.sidebar .dep-tim {
    margin: 10px 0;
}

    .sidebar .dep-tim span {
        color: #E2A805;
        font-size: 17px;
    }

.sidebar .crd-prc {
    display: flex;
    padding: 0 0;
    align-items: anchor-center;
}

    .sidebar .crd-prc span {
        font-size: 28px;
        color: #D63B05;
        font-weight: 700;
        line-height: 1;
    }

        .sidebar .crd-prc span i {
            font-size: 25px;
        }

.sidebar .inf-bx {
    display: none;
    position: absolute;
    bottom: 30px;
    left: 0px;
    background: #fff;
    padding: 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 5px;
    min-width: 210px;
    box-shadow: 0 0 15px 1px #0000002e;
    color: #000;
}

    .sidebar .inf-bx ul li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 0;
        border-bottom: 1px solid #eee;
        margin-bottom: 0px;
        font-size: 11px;
    }

.sidebar .frbkop {
    font-size: 16px;
}

.sup {
    position: relative;
    margin-left: 7px;
    cursor: pointer;
}

    .sup i {
        color: #a7a7a7;
    }

    .sup:hover .inf-bx {
        display: block;
    }

.sidebar .inf-bx ul li span {
    font-size: 11px;
    color: #000;
}

.sidebar .footr {
    width: 100%;
    /* box-shadow: 0 0 5px 0 #00000040; */
    background: #fff;
    padding: 0px 5px;
}

.sidebar .mid .fl-title {
    font-size: 17px;
    font-weight: 600;
    color: #000;
}

.sidebar .mid .accordion-button:not(.collapsed) {
    color: #000000;
}

.sidebar .mid .p-lineh {
    margin-left: 10px;
}

    .sidebar .mid .p-lineh p {
        line-height: normal;
        font-weight: 500;
    }

.sidebar .mid .fl-title small {
    font-size: 13px;
    color: #545454;
}

.sidebar .mid .accordion-item {
    background-color: #fff;
    border: 0;
    margin-bottom: 15px;
}

.sidebar .mid .accordion-button {
    border: 1px solid #cae0ff;
    border-radius: 5px;
    padding: 10px 12px;
}

.sidebar .mid .nav-pills {
    border: 1px solid #dddddd;
    border-left: 0;
    border-right: 0;
}

    .sidebar .mid .nav-pills .nav-link {
        font-size: 18px;
        color: #000;
    }

        .sidebar .mid .nav-pills .nav-link.active {
            color: #000;
            background: none;
            border-bottom: 2px solid #0d6efd;
            border-radius: unset;
            font-weight: 500;
        }

.sidebar .mid .mt-less {
    margin-top: -2px;
}

.sidebar .mid .flt-bar, .flt-bar-2, .flt-bar-3, .flt-bar-4 {
    height: 100%;
    border-left: 1px dashed #7F838C;
    position: relative;
    min-height: 45px;
}

    .sidebar .mid .flt-bar::after, .flt-bar-3::after {
        position: absolute;
        content: '';
        height: 6px;
        width: 6px;
        border: 2px solid #7F838C;
        background: #fff;
        border-radius: 100%;
        left: 50%;
        top: 0;
        transform: translate(-50%, 0%);
    }

.sidebar .mid .gap-20 {
    gap: 20px;
}

.sidebar .mid .flt-dur .ng-binding {
    font-size: 17px;
    font-weight: 600;
    line-height: .8;
}

.sidebar .mid .flt-dur .ng-binding-t {
    font-size: 20px;
    font-weight: 700;
}

.sidebar .mid .flt-dur .ng-binding-ti {
    font-size: 14px;
    color: #2196f3;
}

.sidebar .mid .flt-bar-2 .dot::after {
    position: absolute;
    content: '';
    height: 10px;
    width: 10px;
    background: #2196F3;
    border-radius: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.w-55 {
    display: inline-block;
    width: 70px;
    padding-left: 10px;
}

.sidebar .mid .gr-bg {
    color: #000 !important;
}

.sidebar .mid .flt-bar-4::after {
    position: absolute;
    content: '';
    height: 6px;
    width: 6px;
    border: 2px solid #7F838C;
    background: #fff;
    border-radius: 100%;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0%);
}

.sidebar .mid .bgge p {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 7px;
}

.sidebar .mid .bgge {
    background: #f5f5f5;
    border-radius: 5px;
    padding: 5px 15px 13px;
    margin-top: 22px;
    border: 1px solid #ebebeb;
}

.sidebar .mid .ck-bx {
    margin-right: 15px;
}

    .sidebar .mid .ck-bx img {
    }

    .sidebar .mid .ck-bx span {
        font-size: 12px;
    }

.ttl-pbar .tvcn {
    padding: 10px 20px;
}

.tvcn {
    padding: 20px;
}

.sidebar .mid .bg-grey {
    background: #cacdd448;
    color: #535965;
    border-radius: 7px;
}

.gr-bg.dot::after {
    background: #000 !important;
}

.flt-bar-3 {
    height: 80px;
}

.gr-bg.dot::after {
    background: #000 !important;
}

.flt-bar-2 .dot::after {
    position: absolute;
    content: '';
    height: 10px;
    width: 10px;
    background: #2196F3;
    border-radius: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.flt-bar-3::after {
    top: 45%;
}

.flt-dur .mt-less .ng-binding-t {
    font-weight: 500 !important;
    font-size: 17px !important;
}

.spc-f {
    font-size: 15px;
}

.spc-li {
    font-weight: 400 !important;
}

.flt-bar-4 {
    height: 55px;
}

    .flt-bar-4::after {
        position: absolute;
        content: '';
        height: 6px;
        width: 6px;
        border: 2px solid #7F838C;
        background: #fff;
        border-radius: 100%;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, 0%);
    }

.mb-less {
    margin-bottom: -4px;
}

.modal-dialog-scrollable .modal-header {
    display: block;
}

.modal-dialog-scrollable .modal-body {
    padding-top: 0;
}

.modal-dialog-scrollable .modal-footer {
    box-shadow: 0 0 5px 0 #00000040;
}

.sidebar .modal-body::-webkit-scrollbar {
    width: 0;
    background-color: #F5F5F5;
}

.sidebar .mid .accordion-button:focus {
    box-shadow: none;
}

.sidebar .modal-dialog-scrollable {
    width: 50%;
    position: absolute;
    right: 0;
    margin: 0;
    height: 100%;
}

.sidebar .new-b2b-tb {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    outline: 1px solid #CCD5DC;
    margin-top: 15px;
    padding: 0;
    background: #ffffff;
    border: 1px solid #CCD5DC;
    font-size: 13px;
}

.sidebar .new-hd-bg {
    background: #F6F7F8;
}

.sidebar .new-b2b-tb th {
    padding: 15px;
    text-align: left;
}

.sidebar .new-b2b-tb td {
    padding: 13px;
}

.sidebar .c-chrg p {
    font-weight: 500;
}

.sidebar .c-chrg {
    width: 100%;
}

.sidebar .CurrncyCD_Rs:before, .CurrncyCD_RS:before {
    content: "\20B9";
    font-style: normal;
}

.modals {
    background-color: rgb(0 0 0 / 0%);
    backdrop-filter: blur(3px);
}

    .modals .modal-dialog-scrollable .modal-content {
        max-height: 100%;
        overflow: hidden;
        border-radius: 0;
        border: 0;
    }

.modal.fade:not(.show).right .modal-dialog {
    transform: translate3d(25%, 0, 0);
}

.modal.right .modal-dialog {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
}

.btn-toggle {
    border: 0;
    background: transparent;
    color: #626efd;
}

.crd-btn {
    padding: 7px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 500;
}

.bg-green {
    background: #1ad19a5e;
    color: #007452;
}

.rowss {
    display: flex;
    align-items: center;
    padding-left: 0;
}

    .rowss .flight__logo {
        /* width: 40%; */
        margin-right: 5px;
    }

    .rowss .flight__logo-cont {
        width: 67%;
    }

.dep-bar {
    width: 75px;
    border-bottom: 1px dashed #1B1A15;
    position: relative;
    text-align: center;
    padding-bottom: 3px;
    margin: 4px auto;
}

    .dep-bar::after {
        position: absolute;
        content: '';
        height: 10px;
        width: 10px;
        background: #2196F3;
        border-radius: 100%;
        left: 50%;
        top: 100%;
        transform: translate(-50%, -50%);
    }

.fourth-se .flight--city {
    font-size: 15px;
}

.fourth-se .flight--time {
    font-size: 21px;
}

.sef_f .flight--city {
    font-size: 13px;
}

.fourth-se .flight--price {
    font-size: 28px;
}

.fourth-se .btn_md {
    padding: 5px 15px;
    font-size: 17px;
    margin-top: 5px;
}

.mn-title {
    font-size: 18px;
    font-weight: 500;
}

.span-title {
    font-size: 17px;
    padding-left: 10px;
}

    .span-title .ng-binding {
        padding-left: 6px;
    }

span.rcmd {
    font-size: 17px;
    padding: 2px 0 5px;
}

.fourth-se .bg-yel_s:hover {
    box-shadow: none;
}

.new_flight_detail {
}

    .new_flight_detail .third-se {
        border-radius: 0px;
        padding: 15px 15px 0;
    }

        .new_flight_detail .third-se:hover {
            box-shadow: unset;
        }

        .new_flight_detail .third-se .nav-pills .nav-item .nav-link {
            font-size: 14px;
            padding: 10px 15px;
            color: #000;
        }

            .new_flight_detail .third-se .nav-pills .nav-item .nav-link.active {
                font-size: 14px;
                padding: 10px 15px;
                color: #fff;
            }

        .new_flight_detail .third-se .nav-pills {
            width: fit-content;
        }

.bottom_sticky {
    position: fixed;
    bottom: 10px;
    width: 900px;
    padding: 0;
    margin-left: 6px;
    z-index: 99999;
}

    .bottom_sticky p {
        color: #fff;
        line-height: normal;
    }

.bg-btn {
    padding: 6px 15px;
    font-size: 15px;
}

.bg-btn-light {
    padding: 6px 15px;
    font-size: 15px;
    background: transparent;
    border: 1px solid #fff;
    margin-top: 5px;
}

.w-30 {
    width: 30%;
}

.fs-16 {
    font-size: 16px;
}

.fs-17 {
    font-size: 17px;
}

.bottom_sticky-view {
    background: #d51d24;
    border-radius: 5px 5px 0 0;
    padding: 15px 15px;
}

.multi-light {
    height: 360px;
    overflow-y: scroll;
    background: #f9f9f9;
    padding: 15px 15px;
}

    .multi-light .nav-pills {
        box-shadow: 2px 2px 2px 0px #e7e7e7;
        background: #fff;
        width: fit-content;
        border-radius: 30px;
    }

        .multi-light .nav-pills .nav-item {
        }

            .multi-light .nav-pills .nav-item .nav-link {
                color: #000;
            }

                .multi-light .nav-pills .nav-item .nav-link.active {
                    color: #fff;
                    border-radius: 30px;
                }

    .multi-light .card {
    }

.txt-b3 {
    font-size: 12px;
    color: #000 !important;
}

.devider {
    border-top: 3px solid #51e2c2;
    width: 60px;
    margin: auto;
}

.txt-b3dep {
    font-size: 13px;
}

.dark-text {
    color: #000 !important;
}

.txt-b2-round {
    font-size: 16px;
    font-weight: 500;
}

.fs-11 {
    font-size: 11px;
}

.flightDetailsHead p {
    border-bottom: 1px solid #dfdfdf;
    padding: 12px 10px;
    color: #000;
    font-weight: 500;
}

.multi-light .card .cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 12px;
}

.arrow-md-round-new {
    height: 2px;
    margin: 5px auto 3px auto;
    background: #c4c4c4;
    position: relative;
    width: 90%;
}

    .arrow-md-round-new:before {
        content: '';
        position: absolute;
        width: 7px;
        height: 7px;
        background: #c4c4c4;
        border-radius: 50%;
        left: 0;
        top: -3px;
    }

    .arrow-md-round-new:after {
        content: '';
        position: absolute;
        width: 7px;
        height: 7px;
        background: #c4c4c4;
        border-radius: 50%;
        right: 0;
        top: -3px;
    }

.tooltip.show {
    opacity: 1;
}

.show {
    display: block;
}

.openedState .splitviewSticky {
    border-radius: 4px 4px 0 0
}

.fareSummary-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1
}

.tooltip-inner {
    text-align: left;
    max-width: 304px;
    width: 304px
}


#fareSummary-tooltip .itemRow:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0
}

.tooltip-inner {
    background-color: #fff;
    box-shadow: 0 0 3px #888;
    opacity: 1;
    padding: 10px;
}

    .tooltip-inner p {
        color: var(--black-color, #000) !important;
    }

.tooltip-arrow .arrow:after, .tooltip-arrow .arrow:before {
    background-color: transparent !important;
}

.tooltips .arrow:after, .tooltips .arrow:before {
    background: 0 0;
    box-shadow: none;
    top: 0;
    transform: rotate(0);
}

.tooltips .arrow:before {
    border-top-color: #fff;
    border-width: .4rem .4rem 0;
    left: 0;
    z-index: 1;
}

.appendBottom20 {
    margin-bottom: 20px;
}

.appendBottom10 {
    margin-bottom: 10px;
}

.tooltip-inner p.itemRow {
    padding-bottom: 10px;
    border-bottom: 1px solid #daebff;
    justify-content: space-between;
}

.makeFlex.hrtlCenter {
    align-items: center;
}

.makeFlex.hrtlCenter {
    align-items: center;
}

.makeFlex {
    display: flex;
}

.tooltips {
    z-index: 99;
}

    .tooltips .arrow::before {
        position: absolute;
        content: "";
        border-color: transparent;
        border-style: solid;
    }

    .tooltips .arrow:after {
        border-color: transparent;
        border-style: solid;
        content: "";
        position: absolute;
    }
/****************************************/
.modal-cont .modal-body {
    height: auto;
    overflow: unset;
}

.spcb15 {
    margin-bottom: 10px;
    width: 50px;
}

.revw_f33 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.aisctr {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 14px;
    margin: 14px 0 0 0;
}

    .aisctr img {
        margin: 0 5px;
    }

.st_slctdclm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.hr_bdr {
    width: 165px;
    height: 1px;
    background: #ECECEC;
}

.modal-cont .modal-dialog {
    width: 35%;
    padding: 20px 30px;
}

.modal-content {
    text-align: center;
    border-radius: 15px;
    padding: 10px 20px;
}

.pointer {
    cursor: pointer;
}

.stno {
    font-size: 15px;
}

a.edit_btn.pointer {
    font-weight: 500;
}

.modal-cont {
    backdrop-filter: blur(3px);
}

.trheadbg {
    font-size: 15px;
    background: linear-gradient(90deg, #c7dffe 0%, #d8f2ff 100%);
    position: relative;
    padding: 8px 10px;
}

    .trheadbg tr th {
        padding: 10px;
    }

    .trheadbg .edit--link {
        position: absolute;
        right: 10px;
        font-size: 15px;
        font-weight: 500;
        display: inline-block;
    }

.travl-info tr td {
    padding: 5px 10px;
}

.mb-m {
    width: 100%;
    float: left;
}

.mob-l {
    width: 10%;
    float: left;
    margin-right: 2%;
    margin-top: 3px;
}

.mob-r {
    position: relative;
}

.mob-r {
    width: 70%;
    float: left;
}

.cod {
    width: 100%;
    float: left;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    border: 1px solid #dad9d9;
    padding-left: 8%;
    background: #ffffff;
    border-radius: 3px;
}

.inps {
    height: 40px;
    line-height: 23px;
    width: 90%;
    padding-left: 10%;
    color: #111111;
    font-size: 18px;
}

.inps-m {
    height: 40px;
    line-height: 40px;
    width: 90%;
    padding-left: 10%;
    border: 1px solid #dad9d9;
    border-radius: 4px;
    margin-top: 3px;
    font-size: 16px;
    color: #000;
}

.pnicondx {
    background: #ffffff url(https://flight.easemytrip.com/Content/img/phn.png);
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    width: 28px;
    height: 26px;
    position: absolute;
    left: 10px;
    top: 10px;
}

.te2 {
    width: 3%;
    float: left;
}

.fw-500 {
    font-weight: 500;
}

.accordion-cont .accordion-item {
    background: #ffffff;
    box-shadow: 0px 2px 15px #dddddd;
    border-radius: 10px;
    padding: 4px 15px 12px;
}

    .accordion-cont .accordion-item .accordion-body {
        padding: 16px 0 0 0;
    }

.accordion-cont .accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    box-shadow: none;
}

.accordion-cont .accordion-button:focus {
    border-color: none;
    box-shadow: unset;
}

.overview-travl {
    padding: 8px 10px;
}

.travl-info {
    border: 1px solid #e9e9e9;
}

.float-left {
    float: left;
}
/************increase input form css*********************/
.qutsec_adon form {
    margin: 0 auto;
    text-align: center;
}

.qutsec_adon .value-button {
    display: inline-block;
    border: 1px solid #ddd;
    margin: 0px;
    width: 40px;
    height: 20px;
    text-align: center;
    vertical-align: middle;
    /* padding: 11px 0; */
    /* background: #eee; */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .qutsec_adon .value-button:hover {
        cursor: pointer;
    }

.qutsec_adon form #decrease {
    margin-right: -4px;
    /* border-radius: 8px 0 0 8px; */
    height: 40px;
    width: 40px;
    vertical-align: bottom;
    line-height: 35px;
    font-size: 23px;
    font-weight: 700;
}

.qutsec_adon form #increase {
    margin-left: -4px;
    /* border-radius: 0 8px 8px 0; */
    height: 40px;
    width: 40px;
    line-height: 35px;
    font-size: 23px;
    font-weight: 700;
}

.qutsec_adon form #input-wrap {
    margin: 0px;
    padding: 0px;
}

.qutsec_adon input.number {
    text-align: center;
    border: none;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin: 0px;
    width: 40px;
    height: 40px;
    vertical-align: bottom;
    font-weight: 500;
}

.qutsec_adon input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.lightbluebg {
    background: #e1f1ff;
}

.bagage-cont .meanadons {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 5px;
}

.bagage-cont .pritag_adon {
    font-size: 18px;
    font-weight: 500;
    position: relative;
}

.pritag_adon {
    position: relative;
}

    .pritag_adon span i {
        font-size: 17px;
        margin-right: 1px;
    }
/*.pritag_adon span::before{
    content: "\f156"; 
    position: absolute;
    z-index: 999;
    right: 0;
    font-family: "Font Awesome 5 Free";
}*/
.bagage-cont {
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 10px;
    padding-bottom: 12px;
}

.bagage-container {
    background: #f9f9f9;
    padding: 12px;
    border-radius: 5px;
}

.actarlnd {
    border: 1px solid #2196F3;
    background: #2196F3;
    color: #fff;
    border-radius: 18px;
    padding: 5px 12px;
    margin-bottom: 10px;
    display: inline-block;
}

.popular-ad .card {
    background: #fd00010d;
    border-color: #fd000126;
}

    .popular-ad .card .card-title {
        margin-bottom: 10px;
        font-size: 16px;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

        .popular-ad .card .card-title span img {
            width: 28px;
            margin-right: 8px;
        }

    .popular-ad .card .card-text {
        font-weight: 500;
        font-size: 14px;
        line-height: normal;
        margin-bottom: 13px;
    }

    .popular-ad .card .btn {
        padding: 4px 14px;
        font-size: 15px;
    }

.bagage-container .nav {
    background: #ffe2e2;
}

    .bagage-container .nav .nav-link {
        font-size: 16px;
        padding-bottom: 8px;
        color: #000;
        font-weight: 500;
    }

        .bagage-container .nav .nav-link.active {
            color: #fd0001;
            background-color: transparent;
            border-bottom: 2px solid #fd0001;
            border-radius: 0;
            font-weight: 500;
        }

.seats .side-table {
    overflow-y: unset;
    position: relative;
    height: auto;
}

.bagage-nav-row {
    display: flex;
    justify-content: space-between;
    background: #ffe2e2;
    align-items: center;
    padding: 8px 15px;
    margin-bottom: 20px;
}

    .bagage-nav-row ul {
    }

.trheadbg h4 {
    font-size: 17px;
}

.trheadbg a {
}

.fli-i {
    width: 30px;
    height: 30px;
    background: url(/img/icon/flight-circle.png);
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: -13px;
    background-size: contain;
    background-repeat: no-repeat;
}

.lindvd::before {
    float: left;
    content: " ";
    background: #d1cccc;
    width: 10px;
    height: 10px;
    margin-top: -4px;
    border-radius: 15px;
}

.lindvd::after {
    float: right;
    content: " ";
    background-position: -290px -58px;
    margin-right: -3px;
    background: #d1cccc;
    width: 10px;
    height: 10px;
    margin-top: -4px;
    border-radius: 15px;
}

.lin2 {
    width: 100%;
    height: 1px;
    border-bottom: 1px dotted #b0aeae;
    float: left;
    position: absolute;
    right: 0;
    top: 34px;
}

.third-se2 {
    border: 0;
    margin-top: 15px;
}

    .third-se2 .lvrbg {
        margin: auto;
    }

    .third-se2:hover {
        box-shadow: none;
    }

@media (max-width: 767px) {
    .sidebar .modal-dialog-scrollable {
        width: 100%;
    }

    .sidebar .footr .row {
        flex-wrap: nowrap;
    }

    .sidebar .crd-prc span {
        font-size: 24px;
    }

        .sidebar .crd-prc span i {
            font-size: 20px;
        }

    .sidebar .footr .row .col-md-9 {
        width: 50%;
    }

    .sidebar .footr .row .col-md-3 {
        width: 50%;
    }

        .sidebar .footr .row .col-md-3 .btn_md {
            padding: 6px 15px;
            font-size: 16px;
        }

    .sidebar .mid .nav-pills .nav-link {
        font-size: 13px;
    }

    .bg-yel_s .col-md-2 {
        width: 18%;
    }

    .bg-yel_s .col-md-3 {
        width: 20%;
    }

    .bg-yel_s .col-md-1 {
        width: 6%;
    }

    .flight--time {
        font-weight: 700;
        font-size: 14px;
    }

    .third-se .flight--city {
        font-size: 11px;
    }

    .third-se .flight--price {
        color: #d63b05;
        font-size: 15px;
    }

    .third-se .flight__logo_code {
        font-size: 10px;
        font-weight: 400;
    }

    .newdec {
        padding: 0;
    }

    .pd-res {
        padding: 2px 0;
        width: 12% !important;
    }

    .third-se .flight__logo img {
        width: 35px;
    }

    .new-rad ul {
        padding-right: 46px;
    }

    .air--info .col-md-2 {
        width: 18%;
    }

    .air--info .col-md-3 {
        width: 25%;
    }

    .bg-yel_s {
        justify-content: space-between !important;
        padding: 6px 5px;
    }

    .hidden-xs-none {
        display: none;
    }

    .arr-width {
        width: 13% !important;
    }

    .res-col-50 {
        gap: 7px;
        margin: auto;
    }

        .res-col-50 .col-md-4 {
            width: 48%;
        }

    .sidebar .new-b2b-tb {
        font-size: 12px;
    }

        .sidebar .new-b2b-tb td {
            padding: 7px;
        }

        .sidebar .new-b2b-tb th {
            padding: 7px;
        }

    .new-rad ul li input {
        height: 14px;
        width: 20px;
    }

    .third-se .nav-pills .nav-item .nav-link {
        font-size: 11px;
    }

        .third-se .nav-pills .nav-item .nav-link.active {
            font-size: 11px;
        }

    .third-se .flightdet6E {
        height: 30px;
        width: 35px;
        padding: 0;
    }

    .tab-col-width-mob .col-md-4.mg-btm.row {
    }

        .tab-col-width-mob .col-md-4.mg-btm.row .col-md-3 {
            width: 30%;
        }

        .tab-col-width-mob .col-md-4.mg-btm.row .col-md-9 {
            width: 70%;
        }

    .tab-col-width-mob .col-md-4 {
        width: 50%;
    }

    .tab-col-width-mob .col-md-3 {
        width: 50%;
    }

    .tab-col-width-mob .col-md-2 {
        width: 43%;
    }

    .third-se .mgt6 {
        margin-top: 6px;
        width: 25%;
    }

    .third-se .lvrbg {
        width: 50%;
    }

    .mn-title {
        font-size: 14px;
    }

    .span-title {
        font-size: 12px;
    }

    .fourth-se .bg-yel_s .col-md-4 {
        margin-bottom: 7px;
    }

    .fourth-se .bg-yel_s .col-md-3 {
        width: 35%;
    }

    .fourth-se .bg-yel_s .col-md-2 {
        width: 28%;
    }

    .fourth-se .flight--time {
        font-size: 14px;
    }

    .dep-bar {
        width: 53px;
    }

    span.rcmd {
        font-size: 14px;
    }

    .div-responsive {
        overflow-x: scroll;
    }

    .topbar-list {
        margin-bottom: 7px;
    }

    .bagage-container .nav {
        background: #ffe2e2;
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

        .bagage-container .nav .nav-link {
            font-size: 12px;
        }

    .bagage-nav-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 8px 15px;
    }

    .select-res select {
        width: 100% !important;
    }

    .mob-l {
        width: 18%;
    }

    .mob-r {
        width: 80%;
    }

    .inps-m {
        width: 100%;
        padding-left: 17%;
    }

    label.cont-check {
        flex-wrap: nowrap !important;
        align-items: flex-start !important;
    }

        label.cont-check div span {
            line-height: normal;
            display: inline-block;
        }

    .accordion-cont .accordion-item {
        padding: 12px 15px 12px;
    }

        .accordion-cont .accordion-item .accordion-body .form-control {
            margin-bottom: 10px !important;
        }

    .menu_50 .img_sec {
        width: 25%;
    }

    .menu_50 .dtlsec_adon {
        width: 30%;
    }

    .menu_50 .qutsec_adon {
        width: 45%;
    }

    .qutsec_adon form #decrease {
        margin-right: -3px;
        height: 30px;
        width: 30px;
        line-height: 25px;
        font-size: 20px;
    }

    .qutsec_adon form #increase {
        height: 30px;
        width: 30px;
        line-height: 25px;
        font-size: 20px;
    }

    .qutsec_adon input#number {
        width: 30px;
        height: 30px;
    }

    .pritag_adon span i {
        font-size: 14px;
        margin-right: 1px;
    }

    .bagage-cont .pritag_adon {
        font-size: 17px;
    }

    .bagage-cont .meanadons {
        font-size: 13px;
        margin-bottom: 0px;
    }

    .fltpsngrdtl-1 table .form-control {
        width: 100% !important;
    }

    .bottom_sticky {
        width: 94%;
        margin-left: -8px;
    }

    .bottom_sticky-view .w-30 {
        width: 100%;
        margin-bottom: 12px;
    }

    .bottom_sticky p {
        font-size: 15px;
    }

    .bottom_sticky-view-res .col-md-2 {
        width: 15%;
    }

    .bottom_sticky-view-res .col-md-6 {
        width: 50%;
    }

    .bottom_sticky-view-res .col-md-4 {
        width: 25%;
    }

    .res-bottom-bar .row {
        justify-content: start;
    }

    .res-bottom-bar .col-md-5 {
        text-align: start !important;
        width: 45%;
    }

    .res-bottom-bar .col-md-7 {
        width: 55%;
    }

        .res-bottom-bar .col-md-7 .col-md-8 {
            width: 73%;
        }

        .res-bottom-bar .col-md-7 .col-md-2 {
            width: 25%;
        }

    .tooltips {
        transform: unset !important;
        bottom: 45px !important;
    }

    .tab-col-width-mob2 .col-md-4 {
        width: 35%;
    }

    .tab-col-width-mob2 .col-md-2 {
        width: 23%;
    }

    .col-md-12.mt-3 .col-md-4 {
        width: 33%;
    }

    .modal-cont .modal-dialog {
        width: 100%;
        padding: 15px 20px;
    }

    .third-se2 .lvrbg {
        width: 80%;
    }

    .r-w-50 {
        width: 50% !important;
    }

    .lin2 {
        width: 70%;
        left: 21px;
    }
}



/*---------------------*/

li.row {
    display: grid;
}

    li.row ol {
       /* display: grid;*/
        grid: auto auto auto/ auto auto auto auto auto auto auto auto auto auto;
    }

        li.row ol li {
            padding: 0;
            margin: 1px;
            border-radius: 0;
            width: 25px;
            aspect-ratio: 2/2;
        }

            /*li.row ol li:nth-child(3), li.row ol li:nth-child(6) {
                margin-right: 1.2rem;
            }*/

            li.row ol li * {
                border-radius: 0;
            }