@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700&display=swap');
@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth
    }
}
:root {
    /* --main-color: #1175BC; */
    /* --main-color: #0085cb; */
    --main-color:#5948DB;
    --zi-main-color: #5948DB;
    /* --zi-main-color: #1158A8; */
    --bg-color: #F3F6FD;
    --bg-blue: #f0fbff;
    --menu-color: #2a639c;
    --paragraph-color: #818090;
    --button-bg-color: #ffffff;
    --button-text-color: #000000;
    --button-bg-sd-color: #3cb4e5;
    --white-color: #ffffff;
    --black-color: #2B2540;
    --black-color-opacity: #2b2540c4;
    --transition: .4s all ease-in-out;
}

.f-w-5 {
    font-weight: 500;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;

}

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    /* font-family: 'DM Sans', sans-serif; */
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent
}

img {
    max-width: 100%;
    height: auto;
}

.h-80 {
    height: 80vh !important;
}

.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;
    /* font-family: 'DM Sans', sans-serif; */
    margin: 0;
}

h1 {
    font-size: 55px;
    font-weight: 400;
    line-height: 90px;
}

h2 {
    font-size: 30px;
    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: 16px;
    line-height: 28px;
    color: var(--paragraph-color);
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    /* font-family: 'DM Sans', sans-serif; */
    margin-bottom: 0;
}

p:last-child {
    margin-bottom: 0;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
    padding: 0;
}

.w-full {
    width: 100%;
}

.color-white {
    color: #fff !important;
}

.sticky-bottom {
    position: sticky;
    bottom: 0;
    animation: slide-up 0.3s ease-in-out;
    transition: animation 0.3s ease-in-out;
}

.text-app-blue {
    background-color: rgba(2, 118, 196, 1);
}

.text-app-red {
    background-color: rgba(230, 18, 38, 1);
}

.text-app-yellow {
    background-color: rgba(252, 181, 3, 1);
}

.text-app-green {
    background-color: rgba(2, 160, 77, 1);
}

#loadingLoadMore .spinner-grow-sm{
    width: 8px;
    height: 8px;
    margin: 0 2px;
}
@keyframes slide-up {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

/* --Common Style-- */
section {
    position: relative;
}

/*
.form-control {
    height: 50px;
    border: none;
    box-shadow: 0px 1px 13px 0px #0000000d;
    padding: 10px 22px;
    font-size: 16px;
}*/

.form-control:focus {
    color: var(--heading-color);
    background-color: #fff;
    border: 1px solid var(--main-color);
    outline: none;
    box-shadow: none;
}

.section_padding {
    padding: 65px 0;
}

.section_padding_top {
    padding: 100px 0 0 0;
}

.section_padding_top_sm {
    padding: 50px 0 0 0;
}

.section_margin_top {
    margin: 100px 0 0 0;
}

.section_margin_top_plus {
    padding: 50px 0 100px 0;
}

.section_padding_bottom {
    padding: 0 0 100px 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 {
    padding: 20px;
    color: #333;
}

.section_heading_center h2 {
    position: relative;
    padding-bottom: 15px;
    font-size: 30px;
}

.section_heading_center h2:after {
    content: "";
    width: 8px;
    height: 60%;
    background-color: var(--zi-main-color);
    position: absolute;
    left: -20px;
    top: 3px;
}

.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);
}

/* --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: 16px;
    border-radius: 5px;
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 0;
}

.btn:hover {
    color: var(--white-color);
}

.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;
    cursor: pointer;
    margin-bottom: 5px;
    border-radius: 15px;
}

.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: 12px 35px;
    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/bg.png");
    padding: 370px 0 280px 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);
    font-size: 40px;
    line-height: 50.4px;
    font-weight: 500;
}

.banner_one_text h3 {
    color: var(--white-color);
    padding-top: 13px;
}

/* --Theme Search Form-- */
#theme_search_form {
    margin-top: -25vh;
    z-index: 99;
}

.text-heading-home {
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.theme_search_form_area {
    background: #FFFFFF;
    box-shadow: 4px 14px 28px rgba(0, 0, 0, 0.1);
    border-radius: 80px;
    padding: 6px;
    position: relative;
}

.theme_search_form_tabbtn .nav-item {
    margin-right: 20px;
}

.theme_search_form_tabbtn.intro .nav-item {
    margin-right: 15px;
}

.theme_search_form_tabbtn .nav-item:last-child {
    margin-right: 0px;
}

.theme_search_form_tabbtn .nav-tabs {
    border-bottom: none;
    padding: 10px;
}

.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 {
    padding: 10px;
    position: relative;
    border-right: 1px solid #DEDEDE;
}

.plan_icon_posation {
    position: absolute;
    top: 20px;
    right: 30px;
}

.plan_icon_posation i {
    font-size: 24px;
}

.range_plan {
    position: absolute;
    left: -43px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.range_plan i {
    background: var(--bg-color);
    font-size: 24px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 46px;
    border-radius: 50%;
    border: 3px solid #fff;
    color: var(--main-color);
}

.range_plan .ex-change {
    background: #fff;
    border: 1px solid #ddd;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flight_Search_boxed p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    font-size: 14px;
    color: #6a6971;
    font-weight: 500;
}

.flight_Search_boxed .type-label p {
    color: #0e0930;
    font-size: 14px;
}

.flight_Search_boxed input {
    font-size: 16px;
    width: 100%;
    border: none;
    background: transparent;
    font-weight: 500;
    height: 26px;
    position: relative;
    padding: 0;
    color: #0e0930;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.flight_Search_boxed input:focus-within {
    outline: none;
    border: none;
}

.flight_Search_boxed span {
    display: block;
    font-size: 12px;
    padding-top: 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.text-ow-ellipsis {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    white-space: nowrap;
    max-width: 15ch;
}

.date_flex_area {
    display: flex;
    justify-content: space-between;
}

.dropdown_passenger_area button {
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
}

.dropdown_passenger_area button::after {
    display: none;
}

.dropdown_passenger_area .dropdown-menu.show {
    transform: translate(-46%, 50px) !important;
    border-radius: 24px;
    border: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 15px 0px;
}

.dropdown_passenger_area .dropdown-menu {
    z-index: 1000;
    min-width: 350px;
    padding: 15px 20px;
    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;
}

#tourComponent .traveller-calulate-persons .passengers .passengers-types .passengers-type {
    padding: 8px 0 !important;
}

.traveller-calulate-persons .passengers .passengers-types .passengers-type {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    justify-content: space-between;
}

.singer-offcanvas-passenger .traveller-calulate-persons .passengers .passengers-types .passengers-type {
    width: 100%;
}

.traveller-calulate-persons .passengers .passengers-types .passengers-type .image img {
    width: 30px;
}

.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: 20px;
    /*width: 24px;*/
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
}

.traveller-calulate-persons .passengers .passengers-types .passengers-type .text .type-label span {
    font-size: 12px;
    color: #9f9d9d;
}

.traveller-calulate-persons .passengers .passengers-types .passengers-type .button-set button {
    font-size: 12px;
    color: #4c4c4c;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    width: 32px;
    height: 25px;
}

.traveller-calulate-persons .passengers h6 {
    font-size: 16px;
    font-weight: 500;
    color: var(--main-color);
}

.traveller-calulate-persons .cabin-selection {
    padding-top: 10px;
    border-top: 1px solid #c7c7cc;
    margin-top: 20px;
}

.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: 15px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--main-color);
}

.top_form_search_button {
    text-align: center;
    height: 80%;
}

.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-color: none;
}

.flight_categories_search .nav-tabs .nav-link {
    margin-bottom: 0;
    border: none;
    font-weight: 500;
    font-size: 14px;
    max-width: 200px;
    width: 100%;
}

.multi_city_form {
    margin-bottom: 15px;
}

.btn-warning-cust {
    /*
        background-color: var(--main-color);
        border-color: var(--main-color);*/
    background-color: #ff4100;
    border-color: #ff4100;
    color: #fff;
}

.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;
}

.mobile-tab {
    display: none;
}

.desktop-tab {
    display: flex;
}

.dropdown-mobile .offcanvas-bottom {
    min-height: 70vh;
    border-radius: 20px 20px 0 0;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.button-add-customer {
    padding: 5px;
}

.button-add-customer .btn {
    flex: 1 1 50%;
    border-radius: 18px;
    font-weight: 600;
    width: 100%;
}

.button-set {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 120px;
}

.customer-info-box .button-set {
    width: unset;
    max-width: unset;
}

.customer-info-box input {
    text-align: center;
    width: 100px;
    color: var(--main-color);
    font-style: normal;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600 !important;
    border: none;
    outline: none;
}

.customer-info-box .btn-subtract,
.customer-info-box .btn-add {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50%;
}

.cate-mobile_fillters {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    color: #fff;
    border: 2px solid;
    border-radius: 2px;
    font-weight: 500;
    line-height: 1.25rem;
    width: 40px;
    height: 40px;
    justify-content: center;
    border-color: var(--main-color);
    background-color: var(--main-color);
    position: fixed;
    right: 15px;
    text-align: center;
    bottom: 15px;
    transition: .9s;
    border-radius: 50%;
    z-index: 1000;
}

.cate-mobile_fillters .btn-filter {
    color: #fff;
}

button {
    outline: none;
}

.cate-mobile_fillters .filter__mobile-button {
    position: sticky;
    top: 0;
    bottom: 0;
}

.fs-12 {
    font-size: 12px !important;
}

#flight_go>h3,
#flight_return>h3 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
}

.offcanvas-body.filter {
    width: 100%;
    height: calc(100% - 111px);
    overflow-y: auto;
    padding-bottom: 100px;
    margin-top: 15px;
}

.checkout_payment__item {
    margin-top: 15px;
}

.payment_item {
    border-radius: 4px;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
}

.payment_item .radio {
    display: flex;
}

.payment_item .radio input[type=radio] {
    display: none;
}

.payment_item .radio label {
    display: -moz-box;
    display: flex;
    -moz-box-align: center;
    align-items: center;
    padding: 10px 10px 10px 45px;
    width: 100%;
}

.payment_item .radio label {
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
    padding-left: 25px;
    color: #000;
}

.payment_item .radio input[type=radio]+label:before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    left: 15px;
    top: 50%;
    display: inline-block;
    text-align: center;
    border: 1px solid #d9d9d9;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.radio input[type=radio]:checked+label:before {
    border: 3px solid #fff;
    -webkit-box-shadow: 0 0 0 1px var(--zi-main-color);
    box-shadow: 0 0 0 1px var(--zi-main-color);
    background: var(--zi-main-color);
}

.payment_item .radio label {
    display: -moz-box;
    display: flex;
    -moz-box-align: center;
    align-items: center;
    padding: 15px 15px 15px 45px;
    width: 100%;
}

.payment_item__logo {
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: center;
    justify-content: center;
    width: 65px;
    height: 48px;
    padding: 5px;
}

.payment_item__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.payment_item__text {
    padding-left: 15px;
    width: -moz-calc(100% - 48px);
    width: calc(100% - 48px);
}



.tour_booking_form_boxx {
    padding-top: 1rem;
}

.form-select.is-invalid_cus,
.form-control.is-invalid_cus {
    border-color: #ef4444;
}

.fare-rule {
    padding-top: 15px;
}


.fare-rule h4 {
    font-size: 14px;
}

.fare-rule ul li {
    font-size: 13px;
    color: #0d1726;
    line-height: 20px;
    padding-top: 10px;
}

.row-err {
    padding: 10px;
}

.err-notice {
    font-weight: 500;
    color: #dc3545;
}

.common_author_form .invalid-feedback {
    text-align: left;
}

.title-active-account {
    font-size: 16px;
    line-height: 24px;
}

#modalActived .modal-header {
    padding: 8px;
}

.modal-dialog.active-account .modal-title {
    font-size: 24px;
    font-weight: 500;
    color: #1e293b;
}

.modal-dialog.active-account {
    border-radius: 12px;
    box-shadow: 0 8px 40px rgb(0 0 0 / 50%);
    background-color: #fff;
}

.btn-soft-secondary {
    color: #5b71b9;
    background-color: rgba(91, 113, 185, .1);
    border-color: transparent;
}

.otp input[type="text"] {
    display: block;
    width: 100%;
    font-family: inherit;
    padding: 6px 10px;
    color: #334155;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d8e0e8;
    border-radius: 12px;
    transition: all .3s;
}

.otp button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    user-select: none;
    font-family: inherit;
    border-radius: 6px;
    transition: color .3s ease-in-out, background-color .3s ease-in-out, border-color .3s ease-in-out, box-shadow .3s ease-in-out;
    padding: 8px 20px;
    border: 1px solid transparent;
    cursor: pointer;
    color: #fff;
    background: var(--main-color);
    font-size: 16px;
    line-height: 16px;
    border-radius: 12px;
    outline: none;
}

.radio-title {
    color: #334155;
    font-size: 16px;
    line-height: 16px;
}

.header-mobile-home h4.title-header {
    opacity: 0;
}

@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);
}

.imagination_boxed:hover img {
    transform: scale(1.2);
}

.imagination_boxed:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 25%;
    left: 0;
    background: #17161669;
    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: 25%;
}

.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;
}

/* --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: 98;
}

.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: 24px;
    overflow: hidden;
    border: 1px solid #d2d2d275;
    transition: var(--transition);
    cursor: pointer;
}

.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;
}

.img_hover img {
    transition: var(--transition);
    width: 100%;
}

.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: 16px;
    font-weight: 500;
}

.theme_two_box_img p {
    color: var(--white-color);
    position: absolute;
    bottom: 4px;
    left: 13px;
    font-size: 14px;
}

.theme_two_box_img p i {
    padding-right: 5px;
}

.theme_two_box_content {
    background: #fff;
    padding: 20px 15px;
}


.theme_two_box_content h1{
    font-size: 20px;
    font-weight: 500;
    line-height: unset;
}

.theme_two_box_content h4,
.theme_two_box_content h1 {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.theme_two_box_content h4 a ,
.theme_two_box_content h1 a {
    color: var(--black-color);
}

.theme_two_box_content h4 a:hover,
.theme_two_box_content h1 a:hover{
    color: var(--main-color);
}


.theme_two_box_content p {
    padding: 10px 0px;
    font-size: 14px;
}

.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%;
    max-height: 455px;
}

.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 {
    object-fit: cover;
    display: block;
    border-radius: 10px;
    cursor: pointer;
}

.home_news_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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;
}

#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;
    height: 290px;
}

/* --Cta Area-- */
#cta_area {
    background: var(--bg-color);
    padding: 50px 0;
}

.cta_left {
    display: flex;
    align-items: center;
}

.cta_icon {
    width: 15%;
}

.cta_content h2 {
    padding-top: 11px;
}

/* --Footer Area-- */
#footer_area {
    padding: 50px 0px 0;
    /* background-color: #F5F5F5; */
    background-color: #fff;
    margin-top: 50px;
}

.footer_first_area ul li a{
    color: #575757;
}

.footer_first_area ul li a:hover{
    color: #575757;
}

.footer_heading_area h1 {
    border-bottom: 1px solid var(--main-color);
    display: inline-flex;
    padding-bottom: 5px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 28px;
}

.footer_inquery_area {
    padding-top: 5px;
    /*border-left: 2px solid var(--main-color);*/
    border-left: 2px solid #0052AE;
    margin-top: 25px;
    padding-left: 9px;
}

.footer-blue .footer_inquery_area {
    border-left: 2px solid #fff;
}

.footer-blue .footer_heading_area h5{
    border-bottom: 1px solid #fff;
}

.footer_inquery_area h3 {
    font-weight: 500;
    padding-top: 8px;
}

.footer_inquery_area h5 {
    font-size: 16px;
    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: 16px;
    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: 16px;
}

.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);
}

.br-20 {
    border-radius: 20px !important;
}

.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);
}

/* =========================
       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 {}

.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 h5 {}

.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_icon_visa {}

.downloads_pdf_text_visa {
    padding-left: 14px;
}

.downloads_pdf_text_visa a {}

.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: 16px;
}

.download_pdf_area_visa:hover .downloads_pdf_text_visa a h3 {
    color: var(--main-color);
}

.visa_request_side_form {}

.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 {
    padding: 200px 0 130px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.flight-banner {
    /* background-image: url('/assets/img/banner/homeBanner.jpg') !important; */
    /* background-image: url('/assets/img/banner/client-bg.png') !important; */
    /* padding: 600px 0 130px 0 !important;
    background-size: cover !important;
    background-position: center; */
}


.searchBox.searchBox_home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgb(101 101 101 / 50%); */
}

.flight-banner.partner h2 {
    font-weight: 500;
}

.flight-banner-small {
    padding: 300px 0 20px 0 !important;
    background-size: cover !important;
    /* background-position: center -69px; */
    background-position: left;
}

.flight-banner-small:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(149 110 222 / 45%);
}

.common_bannner_text {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.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.js-box-search {
    padding: 0 15px 25px 15px;
}

.left_side_search_boxed.play-ticket-box {
    background: #FFFFFF;
    padding: 0 15px;
}

.left_side_search_boxed .apply {
    background: #2957a6;
    padding: 5px 14px;
    color: #fff;
    border-radius: 10px;
}
.left_side_search_boxed .left_side_search_heading{
    padding: 10px;
    border-bottom: 1px solid #e7e7e7;
}

.left_side_search_heading h5 {
    /* border-bottom: 1px solid #ddd; */
    /* padding-bottom: 7px; */
    font-size: 18px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.left_side_search_heading.yacht h5 {
    font-size: 16px;
}

.filter-price {
    padding-top: 30px;
    padding-bottom: 50px;
}

.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: 14px;
    font-weight: 400;
}

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;
}

.tour_search_type {
    padding-top: 10px;
}

.tour_search_type .form-check {
    padding-top: 8px;
    padding-left: 8px;
}

.area_flex_one {
    display: flex;
    justify-content: space-between;
}

.area_flex_one span {
    color: #101828;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
    line-height: 22px;
}

.tour_details_right_boxed {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    /* box-shadow: 0 2px 8px #a9a5a51c; */
    border: 1px solid #eeeeeecc;
}

.first_child_padding_none ul li:first-child {
    padding-top: 0;
}

/*.tour_details_right_box_heading h3 {
    font-weight: 400;
    font-size: 20px;
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 10px;
    display: inline-block;
}*/

.tour_details_right_box_heading.room-modal h3 {
    border: none;
    padding: 0;
}

.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: 5px;
    display: flex;
    align-items: center;
    font-weight: normal;
    font-size: 15px;
}

.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);
    display: inline-block;
}

.tour_package_bar_price {
    display: flex;
    align-items: center;
    padding-top: 15px;
}

.tour_package_bar_price h6 {
    font-size: 16px;
    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: 16px;
    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: 16px;
}

.tour_details_top_heading_right h4 {
    color: var(--main-color);
}

.tour_details_top_heading_right h6 {
    font-size: 16px;
    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;
    border-radius: 10px;
    padding: 20px 20px;
    margin-top: 30px;
    box-shadow: 0 2px 8px #a9a5a51c;
    border: 1px solid #eeeeeecc;
}

.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 {
    overflow: hidden;
}

.tour_details_boxed_inner ul li {
    padding-bottom: 15px;
    font-size: 15px;
    color: var(--black-color);
    display: flex;
    float: left;
    width: 46%;
}

.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;
}

.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: -4px -4px 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-top: 65px;
}

.all_review_date_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.all_review_date h5 {
    font-size: 16px;
}

.all_review_star {
    text-align: center;
}

.all_review_star h5 {
    font-size: 16px;
}

.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%;
}

.all_review_text span {
    padding-top: 5px;
    display: block;
}

.all_review_text h4 {
    padding-top: 20px;
}

.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: 16px;
    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 dashed #dddddd75;
    padding: 10px 22px;
    font-size: 16px;
}*/

.bg_input {
    background-color: #F3F6FD;
}

.form-control:focus {
    color: var(--heading-color);
    background-color: #fff;
    border: 1px 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;
    margin-bottom: 20px;
}

.radio.radio-sm.danh-xung {
    margin-right: 15px;
}

.radio.radio-sm.danh-xung input {
    margin: 5px;
    padding: 5px;
}

#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.info-pnr {
    padding-top: 0;
}

.tour_booking_amount_area ul li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 6px;
    font-weight: normal;
    font-size: 15px;
}


.tour_bokking_subtotal_area {
    padding-top: 15px;
}

.tour_bokking_subtotal_area h6 {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    line-height: 22px;
    justify-content: space-between;
}

.coupon_add_area {
    padding-top: 15px;
    border-bottom: 1px solid #dadada;
    padding-bottom: 15px;
}

.coupon_add_area h6 {
    font-size: 16px;
    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: 16px;
    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: var(--white-color);
    padding-top: 20px;
}

.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: 16px;
    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: 16px;
    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: 16px;
    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_area_top_left {
    border-radius: 10px;
    overflow: hidden;
}

.news_area_top_left img {
    width: 100%;
    height: 100%;
    max-height: 430px;
    overflow: hidden;
    object-fit: cover;
}

.news_item_img img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    max-height: 274px;
}

.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;
}


/* =============================
        Header mobile
================================*/
.offcanvas {
    z-index: 10000;
}

.offcanvas-body.filter {
    padding: 0 1rem;
}

.offcanvas button.btn-close.text-reset {
    position: absolute;
    top: 20px;
    right: 10px;
}

.offcanvas-end {
    /* width: 330px; */
}

#offcanvasNavMenu {
    width: 85%;
}

.menu_fix_mobile {
    height: 100%;
    width: 100%;
    transition: all 200ms linear 0s;
}

.menu_fix_mobile .nav-main2 menu_ite.active {
    background-color: #fff;
    position: relative;
}

.menu_fix_mobile .close-menu {
    border-bottom: 1px solid #93939a;
    background-color: #fff;
    height: auto;
    position: relative;
    top: 0;
    z-index: 1;
    padding: 12px 12px;
}

.menu_fix_mobile .close-menu p {
    color: #fff;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    margin-left: 36px;
}

.menu_fix_mobile .close-menu p img {
    height: 32px;
    width: auto;
}

.menu_fix_mobile .close-menu .logo_menu {
    display: inline-block;
    padding: 15px 10px 15px 25px;
}

.menu_fix_mobile .close-menu>a {
    color: #000;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 300;
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 1;
}

.menu_fix_mobile .close-menu .logo_menu img {
    width: auto;
    max-width: unset;
    height: 60px;
}

.menu_fix_mobile .megamenu-container {
    padding: 0;
    margin-bottom: 20px;
}

.menu_fix_mobile .nav-main {
    overflow-y: auto;
    width: 100%;
    display: none;
    padding: 0;
}

.menu_fix_mobile .nav-main2 {
    width: 100%;
    padding: 0;
    position: relative;
    height: calc(100vh - 154px);
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
    z-index: 100;
}

.menu_fix_mobile .nav-main2 li.menu_item {
    padding: 4px;
}

.line_menu {
    height: 1px;
    border: 0;
    margin: 0;
    background-color: #93939a;
}

.menu_fix_mobile .nav-main2 li a {
    border-radius: 4px;
    padding: 4px 8px;
    width: 100%;
    min-height: 35px;
    text-align: left;
    display: flex;
    align-items: center;
    text-decoration: none;
    text-transform: capitalize;
    border: none;
    font-size: 16px;
    font-weight: 400;
}

.menu_fix_mobile .nav-main2 li a:hover {
    background-color: #d1d1d6;
}

.menu_fix_mobile .nav-main2 li .icon {
    margin-right: 8px;
    width: 24px;
    height: 24px;
    display: inline-block;
    text-align: center;
    line-height: 24px;
}

.menu_fix_mobile .nav-main2 li .icon i {}

.menu_fix_mobile .nav-main2 li .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu_fix_mobile .nav-main2 li .value {
    padding-left: 4px;
}

.menu_fix_mobile .nav-main p {
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: solid 1px #013b37;
    margin-bottom: 10px;
}

.menu_fix_mobile .megamenu-title {
    padding-left: 0;
    border: none;
    padding-bottom: 0;
    margin-bottom: 10px;
}

.menu_fix_mobile .megamenu-title:before {
    left: 20px;
}

.menu_fix_mobile .megamenu-title a {
    border: unset;
    font-size: 16px;
}

.menu_fix_mobile .megamenu-item-sub>a {
    border-bottom: none;
    padding: 8px 20px;
}

.menu_fix_mobile ul {
    display: inline-block;
    margin: 0;
    list-style: none;
    padding: 10px 20px;
}

.menu_fix_mobile ul li {
    float: left;
    position: relative;
    margin: 0;
    transition: 0.4s;
    width: 100%;
    border-right: none !important;
}

.menu_fix_mobile ul li img {
    width: auto;
}

.menu_fix_mobile .megamenu-item {
    padding: 10px 0px;
    padding-left: 15px;
}

.menu_fix_mobile .list-megamenu-sub {
    display: block;
}

.menu_fix_mobile .nav-main li.nav-megamenu {
    position: relative;
}

.menu_fix_mobile ul li a {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 0px;
    margin: 0;
    border-radius: 0;
    color: #fff;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #05635c;
    line-height: 24px;
}

.menu_fix_mobile .nav-main>li>a {
    font-weight: 500;
    padding: 12px 24px;
}

.menu_fix_mobile ul li i.fa-chevron-down.mega-mn2 {
    bottom: 0px;
    top: unset;
}

.menu_fix_mobile ul li i.fa-angle-down {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 12px;
    width: 40px;
    height: 49px;
    display: inline-block;
    text-align: center;
    line-height: 49px;
    color: #000;
    transition: 0.3s;
    cursor: pointer;
}

.menu_fix_mobile li ul.nav-sub {
    display: none;
    position: static;
    top: 100%;
    left: 0;
    background-color: transparent;
    background-image: unset;
    text-align: left;
    min-width: 180px;
    transition: unset;
    float: left;
    width: 100%;
    box-shadow: unset;
    border: unset;
    padding: 0;
}

.menu_fix_mobile li ul.nav-sub li {
    width: 100%;
    padding: 0;
}

.menu_fix_mobile li ul.nav-sub li a {
    padding: 8px 25px 8px 0px;
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: normal;
    text-transform: none;
    font-weight: 300;
}

.menu_fix_mobile li ul.nav-sub li a:hover {
    color: #fff;
    background-color: transparent;
}

.menu_fix_mobile .nav-main>li>.nav-sub ul {
    display: none;
    position: static;
    top: 100%;
    left: 0;
    background-color: transparent;
    background-image: unset;
    text-align: left;
    min-width: 180px;
    transition: unset;
    float: left;
    width: 100%;
    padding: 0;
    padding-left: 15px;
    border-top: 0;
    visibility: inherit;
}

.menu-mobile__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    z-index: -1;
    opacity: 0;
}

.menu-mobile__backdrop {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    visibility: hidden;
}

.menuMobile__header {
    display: -moz-box;
    display: flex;
    -moz-box-align: center;
    align-items: center;
    justify-content: center;
    /*width: 100%;*/
}

.menuMobile__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.menuMobile__avatar img {
    width: 100%;
    height: 100%;
    -webkit-object-fit: cover;
    object-fit: cover;
}

.menuMobile__btn {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}

.menuMobile__btn .btn {
    margin: 2%;
    flex: 1 1 48%;
    font-size: 13px;
    font-weight: 500;
}

.btn-login {
    color: #fff;
    border: 1px solid var(--main-color);
}

.btn-bg {
    color: var(--white-color);
    background-color: var(--main-color);
}

.mean-bar .offcanvas .offcanvas-header {
    padding-bottom: 0;
}

.mean-bar .offcanvas .offcanvas-body {
    padding: 0;
    position: relative;
}

.close_sidebar-left {
    padding: 20px;
    margin: 0;
    border: none;
    color: var(--black-color);
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    font-weight: 600;
}


/* =============================
        End Header mobile
================================*/


/* =============================
       dropdown search hành khách
================================*/
.dropdown-mobile {
    display: none;
}

.dropdown-desktop {
    display: block;
}

.dropdown-toggle.final-count {
    width: 100%;
    text-align: left;
}

/* =============================
       end dropdown search hành khách
================================*/


.news_details_right_item .home_news_content h3>a {
    font-size: 18px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news_details_right_item .home_news_item {
    margin: 20px 0;
}

.news_details_content_area .content {
    white-space: pre-line;
}


/* =============================
        News Details Page
================================*/
.news_details_content_area h2 {
    font-weight: 500;
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 14px !important;
}

.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: 0 0px 1px 0 rgb(60 64 67 / 10%), 0 0px 4px 1px rgb(60 64 67 / 15%);
    border-radius: 12px;
}

.dashboard_sidebar_user {
    text-align: center;
    padding: 30px 20px;
}

.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: 20px;
}

.dashboard_menu_area ul li {
    margin-bottom: 20px;
    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 {
    box-shadow: 0 0px 1px 0 rgb(60 64 67 / 10%), 0 0px 4px 1px rgb(60 64 67 / 15%);
    border-radius: 12px;
    padding: 14px 30px;
}

.dashboard_common_table h3 {
    font-weight: 500;
    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 a {
    position: absolute;
    bottom: 0px;
    right: 10px;
    font-size: 13px;
    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: 16px;
    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 !important;
}

.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: 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: 20px;
}

#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;
}

.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
================================*/
.main-item-plane {
    /*.left_side_search_boxed{*/
    /* box-shadow: 0 0px 1px 0 rgb(60 64 67 / 10%), 0 0px 4px 1px rgb(60 64 67 / 15%); */
    border: 1px solid #e4e7e4;
    border-radius: 12px;
}

.flight_search_items {
    /*border-bottom: 1px solid #DDDDDD;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flight_search_items .multi_city_flight_lists {
    flex: 1;
}

.flight_search_item_wrappper {
    margin-bottom: 30px;
}

.flight_search_left {
    display: flex;
    align-items: center;
    flex: 1 1 10%;
}

.flight_search_left .title-logo{
    font-weight: 400;
    padding-left: 15px;
    font-size: 18px;
    line-height: 24px;
    color: #333;
}

.flight_search_middel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 60%;
}

.flight_search_arr_right {
    flex: 1 1 18%;
}

.flight_multis_area_wrapper {
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
}

.flight_search_destination {
    color: #898989;
    min-width: 35%;
}

.flight_search_destination p {
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}

.flight_search_destination h3 {
    font-weight: 500;
    padding-bottom: 5px;
    font-size: 22px;
    line-height: 24px;
    color: #24262c;
    font-family: 'Roboto', sans-serif;
}

#flight_wrapper h3 > span{
    font-size: 25px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.flight_search_right_chosse .product__price--through{
    color: #707070;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    -webkit-text-decoration: line-through;
    text-decoration: line-through;
}

.flight_search_right_chosse .currency, .flight_search_right_chosse .totalAmount{
    color: #D92D20;
}

.flight_search_right_chosse .totalAmount{
    font-size: 20px;
    line-height: 26px;
}

.flight_search_destination h6 {
    padding-top: 5px;
    font-size: 11px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.flight_logo .small {
    font-size: 13px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
}

.flight_logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.flight_right_arrow {
    position: relative;
    text-align: center;
    min-width: 35%;
    margin-top: 8px;
}

.circle-ripple.circle-ripple-left {
    position: absolute;
    top: -2px;
    left: 0;
}

.circle-ripple.circle-ripple-right {
    position: absolute;
    top: -2px;
    right: 0;
}

.flight_right_arrow>svg {
    width: 90px;
    height: 20px;
    object-fit: cover;
}

.flight_right_arrow>img {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    object-fit: contain;
}

.flight_right_arrow .side-bar::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 8px;
    background-color: var(--main-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    text-align: center;
}

.flight_right_arrow p {
    font-size: 13px;
    line-height: 25px;
}

.flight_right_arrow h6 {
    font-size: 11px;
    font-weight: 700;
    padding-top: 10px;
    color: #898989;
}

.circle-ripple {
    background-color: #000;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    /*animation: ripple 2s linear infinite;*/
    display: inline-block;
}

.flight_search_right {
    /*background: #F3EFF9;*/
    padding: 8px 0;
    height: 100%;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
    justify-content: end;
}

.flight_search_right h5 {
    font-size: 18px;
    font-weight: 500;
    color: var(--paragraph-color);
}

.flight_search_right h2 {
    padding-top: 10px;
}

.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: 5px !important;
    font-size: 15px;
    line-height: 19px;
    text-align: center;
}

.flight_search_right p {
    font-size: 12px;
    padding-top: 2px;
    font-weight: 500;
    color: var(--black-color);
}

.flight_search_right h6 {
    font-size: 16px;
    font-weight: 500;
    padding-top: 7px;
    cursor: pointer;
}

/* Listing flight*/
.flight_det_wrapper .flight_det {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.detail-item-fly-right {
    color: #7D7D7D;
}

.detail-item-fly-right button{
    padding: 5px 32px;
    font-size: 16px;
    font-weight: 500;
}

.detail-item-fly-right ul li {
    list-style: disc;
    margin-left: 24px;
}

.detail-item-fly-right .ticketRule {
    margin-left: 9%;
}

/* End Listing flight*/


.load_more_flight {
    text-align: center;
    padding-top: 40px;
}

.load_more_flight button {
    border: 1px solid var(--main-color);
}

.load_more_flight button:hover {
    background: var(--main-color);
}

.flight_policy_refund {
    /*padding: 0 20px;*/
    border-top: 1px solid #DDDDDD;
    padding: 15px;
}

.flight-shoe_dow_item {
    width: 100%;
}

.airline-details {
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1 45%;
}

.airline-details .img {
    height: 24px;
    width: 24px;
    margin-right: 8px;
}

.airline-details .img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.airline-details .airlineName {
    margin-right: 8px;
    /* color: #B7B7B7; */
    font-size: 14px;
}

.airline-details .flightNumber {
    font-size: .625rem;
    color: #4c4c4c;
}

.flight_inner_show_component {
    position: relative;
    color: #898989;
}

.flight_inner_show_component .plane-col {
    position: absolute;
    top: 10px;
    left: 33.33%;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.flight_det_wrapper {
    margin: 14px 0;
}

.flight_inner_show_component .flight_det_wrapper .flight_det .code_time {
    /*font-size: 18px;*/
    flex: 1 1 30%;
}

.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: 500;
    padding-bottom: 5px;
    font-size: 18px;
    line-height: 24px;
    color: #24262c;
    font-family: 'Roboto', sans-serif;
}

.flight_inner_show_component .flight_det_wrapper .flight_det .airport {
    color: #4c4c4c;
    flex: 1 1 45%;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    display: flex;
    align-items: inherit;
    justify-content: center;
}

.flight_inner_show_component .flight_det_wrapper .flight_det .date {
    font-size: 14px;
}

.flight_inner_show_component .flight_duration {
    justify-content: center;
    text-align: left;
    align-items: flex-start;
    color: rgb(76, 76, 76);
    flex-wrap: wrap;
    line-height: 1;
    flex: 1 1 34%;
}

.flight_inner_show_component .flight_duration span {
    font-size: 10px;
    margin-top: 8px;
    font-weight: 500;
    display: inline-block;
    font-size: 14px;
    color: #898989;
}

.flight_inner_show_component .arrow_right {
    flex-basis: 88px;
    margin: 4px 1rem 0px;
    /*background-image: url('../img/icon/plane-right-blue.png');*/
    background-image: url('../img/icon/plane-col.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 .airlines {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.flight_inner_show_component {
    position: relative;
}

.TabPanelInner p {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 16px
}

.TabPanelInner h4 {
    font-size: 16px;
    padding-bottom: 4px;
    border-bottom: 1px solid #8b3eea;
    display: inline-block;
    margin-bottom: 12px;
}

.flight_show_down_wrapper:first-child {
    padding-top: 0;
}

.flight_show_down_wrapper {
    display: flex;
    /*border-bottom: 1px solid #cdcdcd;*/
    padding-top: 13px;
}

.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;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flight_sidebar_right .flight_search_left_sidebar,
.flight_sidebar_right .flight_search_middel_sidebar {
    flex: 1 1 30%;
}

.flight_sidebar_right .flight_right_arrow_sidebar {
    flex: 1 1 30%;
}


.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: 13px;
}

.flight_search_destination_sidebar p {
    font-size: 13px;
    font-weight: normal;
    color: var(--black-color);

}

.flight_search_destination_sidebar h3 {
    font-size: 14px;
    font-weight: 500;
}

.flight_search_destination_sidebar h6 {
    font-size: 14px;
    padding-top: 3px;
    text-overflow: ellipsis;
}

.flight_search_middel_sidebar {
    display: flex;
}

/* ===================================
        Hotel Search Page
====================================*/
.room_book_item {
    display: flex;
    border: 1px solid #DDDDDD;
    margin-top: 30px;
    border-radius: 10px;
}

.room_book_item .room_book_img img {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}


.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;
    text-align: left;
}

.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
}

.icon-user-mobile {
    display: none;
}

@-webkit-keyframes lds-spinner {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 232, 232, 0.3), 0 0 0 0.1em rgba(211, 194, 194, 0.3), 0 0 0 0.5em rgba(220, 214, 214, 0.3), 0 0 0 1em rgba(236, 218, 218, 0.3);
    }

    100% {
        box-shadow: 0 0 0 0em rgba(213, 208, 208, 0.3), 0 0 0 0.5em rgba(218, 211, 211, 0.3), 0 0 0 1em rgba(229, 211, 211, 0.3), 0 0 0 1em rgba(239, 68, 68, 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%
}

.go-top:hover,
.go-top:focus {
    color: #fff
}

.go-top:hover::before,
.go-top:focus::before {
    opacity: 1;
    visibility: visible
}

.go-top:hover i:first-child,
.go-top:focus i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden
}

.go-top:hover i:last-child,
.go-top:focus i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%
}

.autocomplete-result-list {
    visibility: hidden;
}


/**
Custom
 */
.destinations_content_inner {
    white-space: nowrap;
}

.theme_two_box_img {
    height: 230px;
    cursor: pointer;
}

#home_one_banner .theme_two_box_img {
    height: 82vh;
}

.theme_two_box_img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.top-slash {
    border-top: 1px solid;
    transform: rotate(-8deg);
    position: absolute;
    bottom: 50%;
    width: 100%;
}

.image-content {
    max-width: 100%;
    margin: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}

.loadingOverlay {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.69);
    z-index: 1021;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loadingContent {
    background: #fff;
    border-radius: 8px;
    max-width: 639px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.toggle_btn-trip {
    display: none;
}

.flight_Search_boxed .icon-date {
    display: none;
}

.bg-light-2 {
    background-color: #f3f6fd
}

.flex-none {
    flex: none !important;
}

.input-customer-container {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    padding-top: 16px;
}

.input-customer-container:last-child {
    border-bottom: none;
}

#liveToast {
    width: 360px;
}

.link {
    background-image: linear-gradient(transparent calc(100% - 1px), #1d48ba 1px);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    transition: all 0.6s ease, -webkit-transform 0.6s ease;
}


/*list ticket */
.page-profile .my-ticket .package-item {
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #cfd8dc;
    overflow: hidden;
}

.page-profile .my-ticket .ticket-package-quocte .package-item .package-item-head {
    margin-bottom: -2px;
}

.page-profile .my-ticket .package-item .package-item-head {
    padding: 20px;
    border-bottom: 1px solid #eceff1;
}

.page-profile .my-ticket .ticket-package-quocte .package-item .package-item-head .flight-gr .flight-gr-head {
    background-color: var(--bg-color);
    padding: 10px;
}

.page-profile .my-ticket .ticket-package-quocte .package-item .package-item-head .flight-gr .flight-gr-head h5 {
    font-size: 14px;
    font-weight: 500;
    color: var(--button-bg-sd-color);
    margin-bottom: 0;
}

.page-profile .my-ticket .ticket-package-quocte .package-item .package-item-head .flight-gr .flight-gr-head span {
    font-size: 13px;
    color: #78909c;
    margin-left: auto;
}

.page-profile .my-ticket .ticket-package-quocte .package-item .package-item-head .flight-gr .radio-flight-item {
    padding: 24px 20px;
    border-bottom: 1px solid #e1e1e1;
}

.page-profile .my-ticket .ticket-package-quocte .package-item .package-item-head .flight-gr .radio-flight-item.services {
    padding: 15px 10px;
}

.page-profile .my-ticket .ticket-package-quocte .package-item .package-item-head .flight-gr .radio-flight-item .brand {
    position: relative;
}

.page-profile .my-ticket .ticket-package-quocte .package-item .package-item-head .flight-gr .radio-flight-item.services .brand {
    flex: 1 1 55%;
    max-width: 100%;
}

.page-profile .my-ticket .ticket-package-quocte .package-item .package-item-head .flight-gr .radio-flight-item.services .time-point {
    flex: 1 1 50%;
}

.page-profile .my-ticket .ticket-package-quocte .package-item .package-item-head .flight-gr .radio-flight-item.services .time-point .point {
    justify-content: space-between;
}

.radio-flight-item.services .time-point .point .time {
    font-size: 14px;
    font-style: italic;
}

.flight-gr .radio-flight-item.services .time-point .point .center {
    width: 34px;
    border: 1px solid #EDF2F7;
    height: 28px;
    margin: 0 24px;
    display: flex;
    align-items: center;
    border-radius: 100px;
    justify-content: center;
    background-color: #ffffff;
    font-size: 12px;
    cursor: pointer;
}

.page-profile .my-ticket .package-item .package-item-head .brand {
    flex: 0 0 140px;
    max-width: 140px;
}

.page-profile .my-ticket .ticket-package-quocte .package-item .package-item-head .flight-gr .radio-flight-item .brand .brand-img {
    margin-bottom: 10px;
}

.page-profile .my-ticket .ticket-package-quocte .package-item .package-item-head .flight-gr .radio-flight-item.services .brand .brand-img {
    width: 105px;
    object-fit: contain;
    border-radius: 10px;
}

.page-profile .my-ticket .package-item .package-item-head .brand .brand-img {
    max-width: 100%;
    margin-bottom: 20px;
}

.page-profile .my-ticket .package-item .package-item-head .brand .brand-name {
    display: block;
    font-size: 14px;
    color: #0d1726;
    font-weight: 500;
}

.flight-item .time-point .point {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.page-profile .my-ticket .time-point .point .city {
    font-size: 13px;
    color: #0d1726;
    font-weight: bold;
}

.package-item-head {
    width: 100%;
}

.package-item-head .ticket-item .flight-gr {
    flex: 1;
}

.package-item-head .ticket-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.page-profile .my-ticket .time-point .point .city b {
    font-weight: normal;
    color: #78909c;
    text-transform: uppercase;
}

.page-profile .my-ticket .package-item .package-item-head .all-time-flight {
    margin-left: auto;
}

.page-profile .my-ticket .package-item .package-item-head .all-time-flight span {
    font-size: 15px;
    color: #0d1726;
}

.page-profile .my-ticket .ticket-package-quocte .package-item .package-item-head .all-time-flight .show-detail,
.play-ticket .show-detail,
.radio-flight-item.services .show-detail {
    display: flex;
    padding: 15px 20px;
    font-size: 13px;
    font-weight: bold;
    color: var(--button-bg-sd-color);
    background-image: url('../img/icon/ic_info.png');
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: 15px;
}

.page-profile .my-ticket .time-point .icon-arrow-right {
    background-image: url('../img/icon/ic_right-flight.png');
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 35px;
    height: 7px;
    margin: 0 18px;
}

.page-profile .my-ticket .ticket-package-quocte .package-item .package-item-head .flight-gr .toggle-flight-item {
    background-color: #ebeef0;
    padding: 20px;
}

.page-profile .my-ticket .ticket-package-quocte .package-item .package-item-head .flight-gr .toggle-flight-item .chi-tiet-hoat-dong {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    padding: 20px;
}

.page-profile .my-ticket .ticket-package-quocte .package-item .package-item-head .flight-gr .toggle-flight-item .chi-tiet-hoat-dong>ul {
    font-size: 14px !important;
}

.page-profile .my-ticket .ticket-package-quocte .package-item .package-item-head .gr_price {
    flex: 0 0 200px;
    max-width: 200px;
    border-left: 1px solid #eceff1;
    text-align: center;
    padding: 20px 0;
}

.page-profile .my-ticket .package-item .package-item-head .gr_price .price {
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    display: block;
}

.page-profile .my-ticket .ticket-package-quocte .package-item .package-item-head .gr_price .col-right-price {
    padding: 0 20px;
    margin-top: auto;
}

.page-profile .my-ticket .ticket-package-quocte .package-item .package-item-head .gr_price .col-right-price .btn_booking {
    display: block;
}

.page-profile .my-ticket .package-item .package-item-head .gr_price .btn_booking {
    font-size: 13px;
    font-weight: bold;
    color: white;
    background-color: var(--main-color);
    border-radius: 4px;
    line-height: 30px;
    padding: 0 30px;
    margin-top: 12px;
    display: inline-block;
}


.page-profile .my-ticket .ticket-package-quocte .package-item .ticket-detail {
    float: left;
    width: 100%;
    padding: 20px;
}

.ticket-detail .box-detail .box-suport {
    margin-left: auto;
}

.ticket-detail .box-detail .box-suport .hotline {
    background: var(--button-bg-sd-color);
    border-radius: 5px;
    padding: 7px 17px 8px 50px;
    background-image: url("../img/icon/ic_24h-white.png");
    background-repeat: no-repeat;
    background-position: 13px 11px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.ticket-detail .box-detail .box-suport .hotline span {
    display: block;
    font-size: 12px;
    color: white;
}

.ticket-detail .box-detail .box-suport .hotline b {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.ticket-detail .box-detail .box-suport .btn_chat {
    border: 1px solid #002e6d;
    display: inline-block;
    font-size: 15px;
    color: #002e6d;
    border-radius: 5px;
    padding: 8px 22px 8px 40px;
    font-weight: bold;
    background-image: url("../img/icon/ic_chat.png");
    background-repeat: no-repeat;
    background-position: 19px 11px;
}

.ticket-detail .box-detail .table-main {
    width: 70%;
}

.ticket-detail .box-detail .table-main tr {
    font-size: 14px;
}

.color-main {
    color: var(--main-color);
}

.my-ticket .title,
.dashboard_common_table .title {
    font-size: 20px;
    color: var(--main-color);
    line-height: 22px;
    padding: 15px 0;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.profile_update_form label {
    font-size: 16px;
    font-weight: 500;
}

.profile_update_form input {
    margin-bottom: 8px;
}

.dashboard_menu_area ul li a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    white-space: nowrap;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-family: 'Roboto', sans-serif;
}

.dashboard_menu_area.theme_search_form_tabbtn .nav-tabs .nav-link {
    border: none;
    position: relative;
}

.easy-autocomplete input {
    box-shadow: none;
}

.easy-autocomplete-container ul li,
.easy-autocomplete-container ul .eac-category {
    padding: 8px 12px;
}

.easy-autocomplete-container ul li.selected,
.easy-autocomplete-container ul li.selected .localtion-airport .s_airport {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.localtion-city i {
    font-size: 22px;
    color: rgb(157, 154, 154);
}

.localtion-airport {
    margin-left: 15px;
}

.easy-autocomplete-container ul li .eac-item {
    display: flex;
    align-items: center;
}

.easy-autocomplete-container ul li div {
    max-width: 100%;
}

.flight_Search_boxed .eac-item span {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    text-overflow: ellipsis;
    margin: 0;
    padding: 0;
}

.localtion-airport .s_airport {
    color: #555;
    font-weight: 400 !important;
}

.easy-autocomplete-container ul li,
.easy-autocomplete-container ul .eac-category {
    border: none;
}

.easy-autocomplete-container ul li:last-child {
    border-radius: 0 0 12px 12px;
}

.easy-autocomplete-container ul li:first-child {
    border-radius: 12px;
}

.easy-autocomplete {
    width: 100% !important;
}

.easy-autocomplete-container ul {
    border: none;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 20%);
}

.air-rules {
    height: 100%;
    font-weight: 400;
    line-height: 22px;
    padding: 20px;
    color: #7D7D7D;
}

.air-rules .title-air-rules {
    color: #333;
    font-size: 16px;
}

.air-rules .content-air-rules {
    font-size: 14px;
    margin-left: 5px;
    line-height: 24px;
    font-style: italic;
}

.fs-5 {
    font-size: 5px !important
}

.fs-13 {
    font-size: 13px !important
}

.fs-16 {
    font-size: 16px !important
}

.fs-18 {
    font-size: 18px !important
}

.title-f {
    font-weight: 600;
    font-family: fontQicksan;
}

.spinner-border {
    width: 14px;
    height: 14px;
    border: 2px solid;
    border-right: 2px solid transparent;
}

.slick-initialized .slick-slide {
    padding: 0 10px;
    /* position: relative;*/
    /*overflow: hidden;*/
}

.room_fasa_area_ul {
    flex-wrap: wrap;
}

.room_fasa_area_ul .room_fasa_area_li {
    flex: 1 1 50%;
}

.slider.slider-nav img {
    width: 160px;
    height: 100px;
    object-fit: cover;
}

.slider.slider-for img {
    width: 916px;
    height: 611px;
    object-fit: cover;
    cursor: pointer;
}

.slider.slider-for-modal img {
    max-width: 630px;
    max-height: 200px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    cursor: pointer;
}

.tour_details_img_wrapper.rooms-detail .slick-slider {
    margin-bottom: 15px;
}

.tour_details_top_heading.room-modals h2 {
    font-size: 22px;
}

.tour_details_img_wrapper .visa_details_img img {
    border-radius: 10px;
}

.room_booking_content {
    flex-direction: column;
}

.no-data-title {
    font-size: 15px;
    /*font-family: 'fontQicksanBold';*/
    font-weight: 500;
}

.cruise_item_inner_content {
    padding: 0px 12px;
    flex: 1 1 60%;
}

.cruise_content_top_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cruise_content_middel_wrapper {
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
}

.cruise_content_bottom_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cruise_content_top_left h4 a {
    color: #333;
}

.cruise_content_top_right h5 {
    font-size: 16px;
    color: var(--main-color);
    font-weight: 500;
}

.cruise_content_top_right h4 {
    font-size: 16px;
    padding-top: 5px;
}

.cruise_content_bottom_left {
    padding-top: 15px;
    flex: 1;
}

.cruise_content_bottom_left.hotel {
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 10px;
}

.cruise_content_bottom_left ul li {
    display: inline-block;
    font-size: 14px;
    color: var(--black-color);
    margin: 0 0 7px 12px;
    list-style: disc;
    min-width: 45%;
}

.cruise_item_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: 16px;
    font-weight: 500;
}

.cruise_item_img img {
    width: 260px;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    padding: 2px;
}

.cruise_item_img.cruise_item_img_hotel {
    flex: 1 1 14%;
}

.room_details_main {
    padding: 0 20px 20px 20px;
}

.cruise_search_item {
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    margin-bottom: 22px;
    padding: 8px;
}

.text-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cruise_content_wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    align-items: end;
    padding: 10px;
}

.background-main {
    background: var(--main-color);
}

.play-ticket-gr {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.play-ticket-gr .play-ticket.play-ticket-left {
    flex: 1 1 35%;
    flex-direction: column;
}

.play-ticket-gr .play-ticket.play-ticket-quantity {
    flex: 1 1 25%;
}

.play-ticket-gr .play-ticket.play-ticket-description,
.play-ticket-gr .play-ticket.play-ticket-price {
    flex: 1 1 20%;
}

.play-ticket-quantity {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.play-ticket-quantity .btn_change-val {
    font-weight: bold;
    cursor: pointer;
    color: #333;
    font-size: 17px;
    border: 1px solid #cfd8dc;
    padding: 0 8px;
    border-radius: 5px;
    background: transparent;
}

.play-ticket-quantity .box-input input {
    border-radius: 4px;
    height: 30px;
    text-align: center;
    border: 0;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    width: 30px;
    outline: none;
    background: transparent;
}

.play-ticket-item {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #cfd8dc;
    overflow: hidden;
}

.ticket-package-quocte:not(:first-child) {
    margin-top: 15px;
}

.play-ticket h5,
.play-ticket-left span {
    display: block;
    font-size: 15px;
    color: #0d1726;
    font-weight: 500;
    font-family: 'Roboto';
}

.package-item-head-play-ticket .ticket-item {
    padding: 5px 10px;
}

.play-ticket-detail {
    background-color: #ebeef0;
    padding: 20px;
}

.play-ticket-rules {
    height: 100%;
    font-weight: 400;
    line-height: 22px;
    padding: 20px;
}

.bg-light {
    opacity: 1;
    background-color: rgba(243, 246, 249, 1);
}

.btn-group-ticket {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.btn-group-ticket button {
    width: 12%;
}

.btn-group-ticket .btn-close-ticket {
    background: var(--bg-color);
    font-size: 15px;
    border: 1px solid var(--main-color);
}

.fs-14 {
    font-size: 14px !important;
    line-height: 20px;
}

.fs-15 {
    font-size: 15px !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500;
}

.btn-group-ticket .btn.btn-close-ticket:hover {
    color: unset;
}

.sticky-ticket {
    position: sticky;
    top: 90px;
    z-index: 1;
}

.play_ticket_item_product {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #DDDDDD;
    border-radius: 0.375em;
    overflow: hidden;
}

.play_ticket_item_product.hotel-room-plan-item .hotel_images {
    width: 90px;
    object-fit: contain;
    border-radius: 12px;
}

.play_ticket_item_product.hotel-room-plan-item .hotel_images img {
    border-radius: 10px;
    height: 80px;
}

.play_ticket_item_product.hotel-room-plan-item {
    padding: 8px;
    border: none;
    border-bottom: 1px solid #DDDDDD;
    border-radius: unset;
}

.play_ticket_item_product.hotel-room-plan-item:last-child {
    border: none;
}

.play_ticket_item_product.hotel-room-plan-item .play_ticket_top {
    flex: 1;
}

.play_ticket_item_product .play_ticket_bottom {
    width: 100%;
}

.play_ticket_item_product .play-ticket-quantity {
    flex: unset;
}

.play_ticket_item_product .play_ticket_top h6 {
    font-size: 16px;
    font-weight: 500;
    font-family: 'Roboto';
}

.play_ticket_item_product.hotel-room-plan-item .play_ticket_top h6 {
    font-size: 16px;
}

.play_ticket_item_product.hotel-room-plan-item .play_ticket_top p {
    font-size: 13px;
    color: var(--black-color);
}

.booking_success_img img {
    width: 50px;
    object-fit: cover;
}

.check-list {
    margin: 0;
}

.check-list li {
    position: relative;
    list-style-type: none;
    padding-left: 15px;
}

.check-list li:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0px;
    width: 5px;
    height: 11px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: var(--main-color);
    transform-origin: bottom left;
    transform: rotate(45deg);
}

.check-list.clear li:before {
    content: none;
}

.check-list.clear li {
    position: relative;
    list-style-type: none;
    font-size: 14px;
    color: var(--black-color);
    margin-bottom: 5px;
}

.link {
    cursor: pointer;
    color: var(--main-color);
    ;
    position: relative;
    display: inline;
    background-image: linear-gradient(transparent calc(100% - 1px), #1d48ba 1px);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    transition: all .6s ease, -webkit-transform .6s ease;
}

.link:hover {
    background-size: 100% 100%;
}

.play-ticket-quantity .label-quantity {
    background-image: linear-gradient(transparent calc(100% - 1px), #1d48ba 1px);
    background-size: 100% 100%;
}

.m-10 {
    margin: 10px;
}

.line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.line-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.line-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.line-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.modal-footer--sticky {
    position: sticky;
    bottom: 0;
    background-color: inherit;
    z-index: 1055;
}

#slick-element-load {
    opacity: 0.5;
    background-color: #f1f1f1;
}


.overflow-auto-custom {
    scrollbar-width: thin;
    scrollbar-color: #ccc #fff;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-right: 15px;
}

.overflow-auto-custom::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}

.overflow-auto-custom::-webkit-scrollbar {
    width: 4px !important;
    height: 4px !important;
}

.overflow-auto-custom::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 5px;
}

.overflow-auto-custom::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}

.wrapper-hotel .img img {
    max-height: 150px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.wrapper-hotel .hotel-contents {
    padding: 0 9px;
}

.hotel-contents h5 {
    font-size: 14px;
    margin-top: 5px;
    color: var(--black-color);
}

.hotel-contents>a {
    font-weight: 500;
    color: #333;
}

.radio-flight-item.services .brand .hotel-contents {
    padding-left: 10px;
}

.radio-flight-item.services .brand .hotel-contents h5 {
    display: inline-block;
    overflow: hidden !important;
    max-width: 400px;
    text-overflow: ellipsis;
    font-weight: 500;
    font-size: 16px;
}

.cruise_content_middel_right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cruise_content_middel_right .cruise_content_bottom_right {
    margin-top: 10px;
}

.noUi-touch-area {
    cursor: pointer;
}

.ls-keyword-types {
    position: absolute;
    width: 90%;
    z-index: 2;
}

.ls-keyword-types .content-list {
    border: none;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 20%);
}

.ls-keyword-types .content-list .list-item {
    margin: 0;
    padding: 0;
}

.ls-keyword-types .content-list .list-item .content-text__keyword {
    padding: 8px 12px;
    font-size: 16px;
    color: rgb(157, 154, 154);
    background: transparent;
}

.ls-keyword-types .content-list .list-item .content-text__keyword .holder-bold {
    font-size: 18px;
    color: #333;
}

.flex-7 {
    flex: 1 1 70%;
}

.flex-6 {
    flex: 1 1 60%;
}

.flex-5 {
    flex: 1 1 50% !important;
}

.flex-4 {
    flex: 1 1 40%;
}

.flex-3 {
    flex: 1 1 30%;
}

.flex-2 {
    flex: 1 1 20%;
}

.flex-2-5 {
    flex: 1 1 25% !important;
}

.flex-1-5 {
    flex: 1 1 15% !important;
}

.info-quantity-hotel h5 {
    color: var(--main-color);
    font-style: normal;
    font-size: 16px;
}

.info-price-hotel .price {
    color: var(--main-color);
    font-style: normal;
    font-size: 18px;
}

.info-quantity-hotel.play-ticket-quantity {
    align-items: end;
}

.info-quantity-hotel.play-ticket-quantity .box-input {
    margin: 5px 0;
}

.group-check-list .promotions {
    border: solid 1px #d8e0e8;
    color: var(--main-color);
    display: inline-flex;
    font-family: inherit;
    border-radius: 8px;
    padding: 2px 10px;
    cursor: pointer;
    color: #2957a6;
    font-weight: 500;
}

.group-check-list .promotions .title {
    color: var(--main-color);
}

.group-check-list .promotions i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    font-size: 11px;
    color: #fff;
    border-radius: 50%;
    background: #2957a6;
}

.footer-mobile-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 99;
    background-color: #f8f8f8;
}

.md-bottom-bar {
    width: 100%;
    height: 70px;
    transition: background-color .5s cubic-bezier(.4, 0, .2, 1);
    background: #fff;
    font-size: 18px;
    font-weight: 600;
    font-family: fontQicksanBold;
    /*border-radius: 10px 10px 0 0;*/
    box-shadow: 0px 0px 5px #b9b9b9;
}

.md-ripple {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.offcanvas-header.play-ticket h5 {
    color: #fff;
    background: var(--main-color);
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    font-family: fontQicksanBold;
    width: 100%;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.page-item.active .page-link {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.page-link {
    color: var(--main-color);
    border-radius: 10px;
    margin: 10px;
    border: none;
    font-weight: 500;
}

.search-box .form-control {
    padding-left: 40px;
    font-size: 16px;
    font-weight: 400;
}

.search-box .search-icon {
    font-size: 14px;
    position: absolute;
    left: 13px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    color: #878a99;
}

.btn_booking.btn-search {
    font-size: 16px;
    font-weight: 500;
    color: white;
    background-color: var(--main-color);
    border-radius: 4px;
    line-height: 34px;
    padding: 0 30px;
    display: inline-block;
}

.js-date.passenger-birthday {
    background: transparent;
}

.bg-transparent {
    background: transparent;
}

.form-check-input.code-switcher:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

#eac-container-pickingUpLocation ul li .eac-item,
#eac-container-droppingOffLocation ul li .eac-item {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.flight_Search_boxed .form-select {
    font-size: 22px;
    height: 35px;
    padding: 0;
    font-weight: 500;
    background: transparent;
    color: #555;
}

.flight_Search_boxed .form-select option {
    background: transparent;
    color: #555;
}

.lc__suggestion {
    position: absolute;
    width: 100%;
    box-shadow: 0 1px 4px rgba(10, 10, 10, .15);
    border-radius: 0 0 12px 12px;
    z-index: 2;
    background-color: #fff;
    max-width: calc(100% - 76px);
}

.lc__suggestion p.holder-bold {
    display: block;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 0;
    color: #333;
    font-weight: 500;
}

.lc__suggestion p.holder-normal {
    font-size: 14px;
    line-height: 21px;
}

.lc__suggestion .content-list>a {
    padding: 5px 10px;
}

.lc__suggestion .content-list>a:hover {
    background: #edf2f8;
}

.lc__suggestion .content-list {
    max-height: 300px;
}

.view-filter-ticket .header-offcanvas {
    border-bottom: 1px solid var(--main-color);
}

.view-filter-ticket .close_sidebar-left {
    color: var(--main-color);
}

.cate-hightlight_fillters .cs-dropdown:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 12px;
    border: 1px solid #d8e0e8;
    transition: all .3s ease;
}

.cate-hightlight_fillters .dropdown-button {
    padding: 3px 8px 3px 6px;
}

.cate-hightlight_fillters .btn:hover {
    color: unset;
}

.cs-dropdown .dropdown-menu .dropdown-menu-wrapper {
    display: flex;
    flex-direction: column;
}

.cs-dropdown .dropdown-menu a {
    color: #334155;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s ease-in-out;
    box-sizing: border-box;
    font-weight: 400;
}

.cs-dropdown .dropdown-menu a:not(:last-child) {
    box-shadow: inset 0 -1px 0 #e4eaf1;
}

.dropdown-menu-wrapper {
    max-height: 180px;
    min-width: 100%;
}

.cs-dropdown .dropdown-menu {
    max-width: 100%;
    border-radius: 10px;
}

.dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scrollbar {
    overflow-x: hidden;
    overflow-y: auto;
}

.dropdown-menu a [class*=fa-solid] {
    color: #718198;
    display: none;
}

.dropdown-menu a.active [class*=fa-solid] {
    display: flex;
}

.ticket-item .no-booking-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.dropdown-menu a.active span {
    font-weight: 500;
}

h5.title-sm {
    font-size: 17px;
    font-weight: 700;
    font-family: 'fontQicksanBold';
    color: #0052AE;
}

.autoComplete_wrapper>ul {
    position: absolute;
    width: 100%;
    box-shadow: 0 1px 4px rgba(10, 10, 10, .15);
    border-radius: 12px;
    z-index: 2;
    background-color: #fff;
    max-width: calc(100% - 76px);
    padding: 5px;
}

.flight_Search_boxed .autoComplete_wrapper>ul>li {
    padding: 0 5px;
    cursor: pointer;
    margin: 2px 0;
}


.flight_Search_boxed .autoComplete_wrapper>ul>li span {
    font-size: 16px !important;
    line-height: 28px;
}

.outline-none {
    outline: none !important;
}

.wrapper-car_type {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.wrapper-car_type .form-check.checkbox.item-filter-mobile.filter-mobile-input-radio {
    flex: 1 1 50%;
    margin: 0;
    padding: 0;
}

.flight_Search_boxed .autocomplete-wrapper {
    position: absolute;
    left: 0;
    width: 100%;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 20%);
    z-index: 2;
    max-height: 300px;
}

.flight_Search_boxed .eac-item.eac-car-item {
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 10px 0;
    padding: 0 10px;
    cursor: pointer;
}

.flight_Search_boxed .eac-item.eac-car-item .localtion-airport .s_city {
    display: flex;
}

.flight_Search_boxed .eac-item.eac-car-item .localtion-airport .s_airport {
    margin: 0 5px;
}

.flight_Search_boxed .eac-item.eac-car-item .localtion-airport .s_city b {
    margin: 0 5px;
}

.tour_booking_amount_area ul li .content {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    /*text-overflow: ellipsis;*/
}

.foot-main {
    padding: 20px 0;
}

.foot-main figure img {
    max-width: 100%;
}

.foot-main figure {
    margin: 0;
    padding: 0 5px;
}

.point .airport {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 23px;
    max-width: 200px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    width: 70% !important;
}

/*TOUR*/

.boxTour {
    margin-bottom: 40px;
}

.boxTour .title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px rgba(0, 0, 0, .15);
}

.listDay {
    padding-left: 30px;
    position: relative;
}

.listDay:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 11px;
    bottom: 0;
    border-left: dotted 2px #008fea;
}

.listDay .day {
    margin-bottom: 15px;
}

.listDay .day .titDay {
    font-weight: 700;
    position: relative;
    background-color: var(--main-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.listDay .day .titDay:before {
    content: "";
    position: absolute;
    width: 23px;
    height: 23px;
    border-radius: 100%;
    border: solid 1px var(--main-color);
    background-color: #fff;
    top: 5px;
    left: -29px;
}

.listDay .day .titDay span {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.listDay .day .titDay:after {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background: var(--main-color);
    top: 11px;
    left: -23px;
}

.listDay .day .arrow-up {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f3f3f3;
    margin-left: 15px;
    margin-top: 2px;
}

.listDay .day .contDay {
    display: none;
    border-radius: 5px;
    background-color: #f3f3f3;
    font-size: 15px;
    padding: 5px 10px;
}

.tab-wrap .tab-content {
    display: none;
}

.tab-wrap .tab-content.active {
    display: block;
}

.tab-wrap .tab-item {
    padding-bottom: 16px;
    padding-top: 16px;
    cursor: pointer;
    margin-right: 15px;
}

.tab-wrap .tab-item .tab-label {
    font-size: 14px;
}

.tab-wrap .tab-item .tab-link.active {
    color: rgba(1, 148, 243, 1.00);
}

.content_mucluc .box-link-paragraph {
    border: 0;
    background-color: transparent;
    width: 100%;
    display: block;
    box-shadow: unset;
}

.content_mucluc .box-link-paragraph ul li a {
    font-size: 18px;
    display: block;
    padding: 6px 16px;
    /*border-bottom: 1px solid #e4e8ed;*/
    color: #000;
}

.content_mucluc .box-link-paragraph ul li a.active,
.content_mucluc .box-link-paragraph ul li a:hover {
    background: #edf0f3;
    box-shadow: 0 0 0 1px #e4eaf1;
    border-radius: 12px;
    font-weight: 500;
    color: var(--main-color);
}

.tour-find-calendar {
    box-shadow: 0 1px 2px 0 rgb(60 64 67 / 10%), 0 2px 6px 2px rgb(60 64 67 / 15%);
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* content news */



/* end content news */


/* footer */



#footer {
    font-size: .875rem;
    padding: 50px 0 0 0;
    /*background-color: #141414;*/
    /*background-color: var(--bg-color);*/
    color: #808080;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .1), 0 2px 6px 2px rgba(60, 64, 67, .15);
    margin-top: 20px;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    /*background: url('https://live.staticflickr.com/65535/49970666878_45a4f57413_h.jpg') bottom left no-repeat;*/
    background: url('https://bluetrip.vn/storage/max/2023/11/20/a7d2-9eb0e/28512559878-fe1dea03fc-k.jpg') top left no-repeat;
    background-size: cover;
}

#footer .footer-title {
    font-size: calc(1.35rem + 1.2vw);
    margin-bottom: 20px;
    color: #000
}

@media (min-width: 1200px) {
    #footer .footer-title {
        font-size: 2.25rem
    }
}

.address-text h5 {
    color: #333;
}

#footer .widget {
    color: #808080;
    margin-bottom: 30px
}

#footer .widget .widget-title {
    color: inherit;
    font-size: 1rem
}

#footer .widget ul:not(.list-unstyled) {
    padding-left: 15px
}

#footer .socials a {
    margin: 3px
}

#footer .socials a:hover {
    color: #fff
}

#footer .socials i {
    font-size: 1.625rem
}

@media (min-width: 1366px) {
    #footer .container {
        max-width: calc(100% - (100% - 1260px)/2);
        margin-left: calc((100% - 1260px)/2)
    }
}

@media (min-width: 768px) {
    .footer-bottom .row {
        text-align: left;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.social-circle {
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    text-align: center;
    vertical-align: top;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.social-circle i {
    color: dimgray;
    font-size: 20px;
    line-height: 24px
}

.social-circle:hover {
    background-color: #2D93EA
}

.social-circle:hover i {
    color: #fff
}

.social-circle:not(:last-child) {
    margin-right: 15px
}

.sidebar-list a::before {
    content: "\f105";
    display: inline-block;
    margin-right: 15px;
    font-size: 16px;
    font-family: 'Line Awesome Free';
    font-weight: 900
}

.address-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.address-block:not(:last-child) {
    margin-bottom: 10px
}

.address-thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 68px;
    flex: 0 0 68px;
    max-width: 68px;
    margin-right: 10px
}

.address-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.address-text p {
    font-size: 14px;
    line-height: 24px;
    padding: 8px;
}

.award-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px
}

.award-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58px;
    flex: 0 0 58px;
    max-width: 58px
}

#footer .tour_package_details_bar_list ul li i {
    color: inherit;
}

.css-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

.corp-item__name {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25rem;
    color: #020b27;
    margin: 8px 0 4px;
}

.corp-item__desc {
    font-weight: 500;
    font-size: .8125rem;
    line-height: 1.125rem;
    color: #657384;
}

.corp-item {
    margin-bottom: 8px;
    padding: 8px 12px 8px 16px;
}

.corp-item:before {
    content: "";
    width: 5px;
    height: 100%;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    background-color: var(--main-color);
    border-start-start-radius: 8px;
    border-end-start-radius: 8px;
}

.bg-blue-50 {
    background-color: var(--bg-blue);
}

.lc-flight-info {
    padding: 15px !important;
    box-shadow: 4px 14px 28px rgb(0 0 0 / 10%) !important;
    border-radius: 8px;
    max-height: 116px;
    height: 100%;
    border: 1px solid #d2d2d275;
    transition: var(--transition);
    margin-bottom: 30px;
}

/* end footer */

.single-content blockquote {
    position: relative;
    margin: 15px 0;
    border-radius: 5px;
    padding: 25px 35px;
    padding-left: 55px;
    background-color: #f2f2f2;
    transition: all ease-in-out .2s
}

.single-content blockquote:hover {
    box-shadow: 0 3px 5px #000
}

.single-content blockquote:after {
    position: absolute;
    font-family: 'Font Awesome 5 Pro';
    content: "\f10d";
    left: 14px;
    top: 20px;
    font-size: 25px;
    color: rgba(0, 0, 0, .1);
    font-weight: 700
}

.tab-wrapper .nav-tabs .nav-link {
    border: 0;
}

.single-content-wrap {
    margin-top: 20px
}

.single-content {
    font-size: 16px
}

.single-content p {
    padding: 8px 0;
    line-height: 26px;
    font-size: 15px;
}

.single-content p:first-child {
    padding-top: 0
}

.single-content p:last-child {
    padding-bottom: 0
}

.single-content table {
    width: 100% !important;
    margin: 10px 0;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd
}


.single-content table tr td {
    padding: 10px 15px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd
}

.single-content table tr td[colspan="3"] {
    color: #fff;
    background-color: #518aaa;
    letter-spacing: 1px
}

.single-content a {
    color: var(--main-color);
}

.single-content a:hover {
    color: var(--main-color);
}

.single-content img {
    display: inline-block !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 10px auto
}

.single-content .theme_two_box_img img {
    margin: 0 !important;
}

.single-content>h2 {
    font-size: 22px;
    font-weight: 700;
    padding: 8px 0
}

.single-content>h3 {
    padding: 8px 0
}

.single-content ul {
    list-style: square;
    padding: 8px 0;
    padding-left: 30px
}

.single-content ul li:nth-child(n+2) {
    margin-top: 5px
}

.single-content p iframe,
.single-content iframe {
    display: block !important;
    width: 100% !important;
    height: 500px !important
}

.single-content p {
    padding-top: 0;
    padding-bottom: 10px;
    line-height: 27px;
    color: #666;
}

.bg-main {
    background: var(--main-color) !important;
    color: #fff !important;
}

.single-edit {
    position: absolute;
    top: -80px;
    right: -20px;
    align-items: center;
    background-color: transparent;
    border: 0;
    color: #d70018;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    line-height: 1;
    margin-left: auto;
    margin-top: 10px;
    text-decoration: none;
}

#btnZaloChat {
    animation: pulse-blue 2s infinite;
    background-color: #028fe3;
    border-radius: 50%;
    bottom: 65px;
    box-shadow: 0 0 0 0 #028fe3;
    display: flex;
    height: 45px;
    overflow: hidden;
    position: fixed;
    right: 15px;
    transform: scale(1);
    width: 45px;
    z-index: 100;
}

#btnFbChat {
    animation: pulse-blue 2s infinite;
    background-color: #028fe3;
    border-radius: 50%;
    bottom: 120px;
    box-shadow: 0 0 0 0 #028fe3;
    display: flex;
    height: 45px;
    overflow: hidden;
    position: fixed;
    right: 15px;
    transform: scale(1);
    width: 45px;
    z-index: 100;
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(2, 143, 227, .7);
        transform: scale(.95)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(2, 143, 227, 0);
        transform: scale(1)
    }

    to {
        box-shadow: 0 0 0 0 rgba(2, 143, 227, 0);
        transform: scale(.95)
    }
}

.dropdown-toggle-split {
    background-color: #0276c4;
    border-color: #0276c4;
    color: #fff;
    padding-left: 0.675rem;
    padding-right: 0.675rem;
}

.filter-wrapper .dropdown-menu.show {
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: DropDownSlide;
    animation-name: DropDownSlide;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5);
    position: absolute;
    display: flex;
    min-width: 300px;
    flex-wrap: wrap;
    padding: 10px 10px 0;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    z-index: 1000;
}

.filter-wrapper .dropdown-menu.show>li {
    cursor: pointer;
    height: 34px;
    color: #444;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f3f4f6;
    padding: 5px 10px;
    margin: 0 10px 10px 0;
    font-size: 12px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
    flex: 1;
}

.filter-wrapper .dropdown-menu.show>li .form-check-input[type=radio] {
    display: none;
}

.filter-wrapper .dropdown-menu.show>li .form-check-input[type=checkbox] {
    display: none;
}

.filter-wrapper .dropdown-menu.show>li>label,
.filter-wrapper .dropdown-menu.show>li>span {
    color: var(--black-color);
    padding: 5px;
    cursor: pointer;
}

.filter-wrapper .dropdown-menu.show .item-filter-mobile.active {
    border: 1px solid var(--main-color);
    background: var(--bg-color);
    color: #d70018;
}

.filter-wrapper .dropdown-menu.show .item-filter-mobile.active .form-check-label:after {
    content: "✓";
    width: 15px;
    height: 10px;
    border-radius: 8px 0 10px 0;
    background-color: var(--main-color);
    color: #fff;
    font-size: 7px;
    padding-left: 0;
    padding-bottom: 8px;
    position: absolute;
    top: 0;
    left: 0;
}


.filter-wrapper .dropdown-menu.show.left:after {
    left: 30px;
}

.filter-wrapper .dropdown-menu.show.right:after {
    right: 30px;
}


@-webkit-keyframes DropDownSlide {
    to {
        margin-top: -1px
    }

    0% {
        margin-top: 8px
    }
}

@keyframes DropDownSlide {
    to {
        margin-top: -1px
    }

    0% {
        margin-top: 8px
    }
}

@-webkit-keyframes DropDownSlideDown {
    to {
        margin-bottom: 0
    }

    0% {
        margin-bottom: 8px
    }
}

@keyframes DropDownSlideDown {
    to {
        margin-bottom: 0
    }

    0% {
        margin-bottom: 8px
    }
}

.partner-input select {
    border: none;
    outline: none;
    width: 100%;
    padding: 13px 15px;
}

.swal2-title {
    display: block;
    font-size: 28px !important;
    font-weight: 500 !important;
    text-align: center !important;
    margin-bottom: 8px !important;
    color: #002e6d !important;
}

.swal2-actions {
    width: 100% !important;
    align-items: center !important;
    justify-content: space-evenly !important;
}

.swal2-actions button {
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 33px;
    border-radius: 30px;
    display: inline-block;
    max-width: 150px;
    width: 100%;
}

.swal2-cancel {
    background-color: #3cb4e5;
}

.swal2-confirm {
    background-color: var(--main-color);
}

/* Contact */
.m-w-970 {
    max-width: 970px;
    margin: 0 auto;
}

.contact {
    padding-top: 58px;
}

.contact .page-contact-title {
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 34px;
    color: #002e6d;
}

.contact .formality-contact {
    background-color: #eceff1;
    text-align: center;
    padding: 30px;
    height: 100%;
    border-radius: 10px;
}

.contact .formality-contact .icon {
    display: block;
}

.contact .formality-contact .title {
    font-size: 13px;
    color: #002e6d;
    display: block;
    margin-top: 13px;
    margin-bottom: 10px;
}

.contact .formality-contact a {
    font-weight: bold;
    font-size: 22px;
    color: #002e6d;
}

.contact .formality-contact .to-chat-box {
    background-color: #3cb4e5;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 33px;
    border-radius: 30px;
    display: inline-block;
}

.contact .map {
    border-radius: 10px;
    overflow: hidden;
    height: 376px;
    position: relative;
    margin-bottom: 30px;
}

.contact .map iframe {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

.contact .contact-col-1 {
    flex: 0 0 334px;
    max-width: 334px;
}

.contact .contact-col-1 h4 {
    font-size: 16px;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
}

.contact .contact-col-1 p {
    color: #000000;
    font-size: 14px;
}

.contact .contact-col-1 a {
    color: #3cb4e5;
}

.contact .contact-col-2 {
    flex: 0 0 295px;
    max-width: 295px;
    margin-left: auto;
    border: 1px solid #cfd8dc;
    border-radius: 10px;
    padding-bottom: 10px;
}

.contact .contact-col-2 h4 {
    font-size: 15px;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-bottom: 1px solid #cfd8dc;
}

.contact .contact-col-2 ul {
    padding: 0 20px;
}

.contact .contact-col-2 ul li {
    padding: 8px 0px;
}

.contact .contact-col-2 ul li:not(:last-child) {
    border-bottom: 1px solid #cfd8dc;
}

.contact .contact-col-2 ul li a {
    color: #000000;
}
/* End Contact*/

.box-shadow-unset {
    box-shadow: unset;
}

.single-hola .flight_submission_item_wrappper {
    padding-bottom: 20px;
}

.sticky-top{
    z-index: 10;
}
