/*
/*
@File: AndTour - Travel Agency HTML Template

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

1. Common css
2. Heading Area Css
3. Button Area start
4. Home Page
5. About Page
6. Booking Confirmation Page
7. Booking History Page
8. Contact Page
9.  Dashboard Page
10. Error Page
11. Faqs Page
12. Flight-booking Page
13. Flight-booking-submission Page
14. Flight-search-result Page
15. forgot-password Page
16. hotel-booking Page
17. hotel-details Page
18. hotel-search Page
19. login Page
20. my-profile Page
21. news Page
22. news-details Page
23. notification Page
24. privacy-policy Page
25. register Page
26. reset-password Page
27. room-booking Page
28. room-details Page
29. terms-service Page
30. testimonials Page
31. top-destinations Page
32. top-destinations-details Page
33. tour-booking-submission Page
34. tour-details Page
35. tour-guides Page
36. tour-search Page
37. verify-otp Page
38. wallet Page
39. Footer 
40. Preloader


/*================================================
Default CSS
=================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,400;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,900&display=swap');



html,
body {
    height: 100%;
}

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    /* font-family: 'Roboto', sans-serif; */
}

img {
    max-width: 100%;
    height: auto;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

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(--main-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: 'Roboto', sans-serif; */
    margin: 0;
}

h1 {
    font-size: 82px;
    font-weight: 400;
    line-height: 90px;
}

h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
}

h3 {
    font-size: 24px;
    font-weight: 300;
}

h4 {
    font-size: 20px;
    font-weight: 500;
}

h5 {
    font-size: 18px;
    font-weight: 400;
}

h6 {
    font-size: 14px;
    font-weight: 400;
}

p {
    font-size: 16px;
    line-height: 28px;
    color: var(--paragraph-color);
    font-weight: 400;
    font-family: var(--main-font-family);
    margin-bottom: 0;
}

p:last-child {
    margin-bottom: 0;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
    padding: 0;
}

/* --Common Style-- */
section {
    position: relative;
}

.form-control {
    border: none;
    box-shadow: 0px 1px 13px 0px #0000000d;
    padding: 10px;
    font-size: 16px;
}

/* .form-control:focus {
    color: var(--heading-color);
    background-color: #fff;
    border: 1px solid var(--main-yellow);
    outline: none;
    box-shadow: none;
} */

.section_padding {
    padding: 40px 0;
}

.section_padding_top {
    padding: 100px 0 0 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 {
    text-align: center;
    padding-bottom: 30px;
}

.section_heading_center h2 {
    position: relative;
    padding-bottom: 15px;
}

.section_heading_center h2:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--main-color);
    left: 50%;
    transform: translate(-50%, 50%);
    bottom: 0;
}

.img_animation {
    overflow: hidden;
}

.img_animation img {
    transition: var(--transition);
    position: relative;
}

.img_animation::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000a1;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.img_animation:hover::after {
    opacity: 1;
    visibility: visible;
}

.img_animation:hover img {
    transform: scale(1.2);
}

.slick-prev,
.slick-next {
    display: none !important;
}

/* --Button Area start-- */
.btn-check:focus+.btn,
.btn:focus {
    outline: none;
    box-shadow: none
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-size: 16px;
    border-radius: 5px;
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 0;
}

.btn:hover {
    /* color: #fff; */
    color: var(--main-color);
}

.btn_theme {
    color: var(--white-color);
    background: var(--btn-bg-color);
    transition: var(--transition);
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 0;
    border: none
}

.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/slider-bg2.jpg");
    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);
}

.banner_one_text h3 {
    color: var(--white-color);
    padding-top: 13px;
}

/* --Theme Search Form-- */
#theme_search_form {
    margin-top: -140px;
}

.theme_search_form_area {
    background: #FFFFFF;
    /* box-shadow: 4px 14px 28px rgba(0, 0, 0, 0.1); */
    box-shadow: 4px 5px 20px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 30px 30px;
    position: relative;
    z-index: 1;
}

.theme_search_form_tabbtn .nav-item {
    margin-right: 20px;
}

.theme_search_form_tabbtn .nav-item:last-child {
    margin-right: 0px;
}

.theme_search_form_tabbtn .nav-tabs {
    border-bottom: none;
}

.theme_search_form_tabbtn .nav-tabs .nav-item.show .nav-link,
.theme_search_form_tabbtn .nav-tabs .nav-link.active {
    color: var(--white-color);
    background-color: var(--main-color);
    border-color: none;
}

.theme_search_form_tabbtn .nav-tabs .nav-link {
    margin-bottom: 0;
    color: var(--black-color);
    border-radius: 6px;
    border: 1px solid var(--main-color);
}

.theme_search_form_tabbtn .nav-tabs .nav-link i {
    padding-right: 10px;
}

.theme_search_form_tabbtn {
    margin-bottom: 30px;
}


.flight_Search_boxed {
    background: var(--text-box-bg-skyblue);
    padding: 10px 10px 10px 20px;
    border-radius: 10px;
    position: relative;
}

.flight_Search_boxed.addons {
    padding: 17px 15px 4px 15px;
}

.flight_Search_boxed.addons .date_flex_area {
    display: flex;
    gap: 12px;
    flex-direction: row;
}

.plan_icon_posation {
    position: absolute;
    top: 20px;
    right: 30px;
}

.plan_icon_posation i {
    font-size: 24px;
}

.range_plan {
    position: absolute;
    left: -37px;
    top: 50%;
    transform: translateY(-50%);
}

.range_plan i {
    background: #f5eefd;
    font-size: 24px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 46px;
    border-radius: 50%;
    border: 3px solid #fff;
    color: var(--main-color);
}

.flight_Search_boxed p {
    font-size: 16px;
}

.flight_Search_boxed input {
    font-size: 16px;
    width: 88%;
    border: none;
    background: transparent;
    font-weight: 500;
    height: 35px;
    padding: 0;
}

.flight_Search_boxed input.cstm {
    position: relative;
    z-index: 9;
    padding-left: 7px;
    border: solid 2px var(--main-color);
    border-radius: 3px;
    width: 100%;
    overflow: hidden;
    background-color: #f7f9fe;
    height: 38px;
}
.flight_Search_boxed input.cstm:focus {
    outline: none;
    border: solid 2px var(--border-top);
}

/* .cstm-date-picker::after {
    content: '';
    position: absolute;
    background-color: #f7f9fe;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: 0;

} */

.flight_Search_boxed input:focus-within {
    outline: none;
    border: none;
}

.flight_Search_boxed span {
    display: block;
    font-size: 14px;
    /* padding-top: 5px; */
    padding: 3px 0px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.date_flex_area {
    display: flex;
    justify-content: space-between;
}

.dropdown_passenger_area button {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
}

.dropdown_passenger_area button::after {
    display: none;
}

.dropdown_passenger_area .dropdown-menu.show {
    transform: translate(-56%, 21px) !important;
}

.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;
}

.traveller-calulate-persons .passengers .passengers-types .passengers-type {
    display: flex;
    align-items: center;
    padding: 7px 16px;
    justify-content: space-between;
}

.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: #4c4c4c;
}

.traveller-calulate-persons .passengers .passengers-types .passengers-type .button-set button {
    font-size: 12px;
    color: #4c4c4c;
    border: 1px solid #d8d8d8;
    width: 20px;
    height: 20px;
}

.traveller-calulate-persons .passengers .passengers-types {
    padding-top: 10px;
}

.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: 15px; */
}

.traveller-calulate-persons .label-select-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
    padding: 5px 10px;
    border-radius: 0.25rem;
}

.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: 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--main-color);
}

.top_form_search_button {
    text-align: center;
    margin-top: 10px;
}

.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) !important;
    border: 2px solid var(--main-color);
    /* background: var(--btn-bg-color); */
    /* border-radius: 25px!important; */
}

.flight_categories_search .nav-tabs .nav-link {
    margin-bottom: 0;
    color: var(--black-color);
    /* border-radius: 6px; */
    border-radius: 25px;
    border: none;
    font-weight: 500;
    background: transparent;
}

.flight_categories_search {
    /* position: absolute; */
    right: 30px;
    top: 25px;
}

.multi_city_form {
    margin-bottom: 15px;
}


.add_multy_form {
    text-align: right;
}

.add_multy_form button {
    color: var(--main-color);
    border: none;
    background: transparent;
}

.multi_form_remove {
    text-align: right;
}

.multi_form_remove button {
    color: red;
    border: none;
    background: transparent;
    padding-bottom: 10px;
}



@media (max-width: 1399px) {

    #theme_search_form .container,
    #theme_search_form .container-lg,
    #theme_search_form .container-md,
    #theme_search_form .container-sm,
    #theme_search_form .container-xl {
        max-width: 100%;
    }

    .modal-sm {
        max-width: 400px;
        left: calc(50% - 13rem) !important;
    }

    .modal-md {
        left: calc(50% - 25rem) !important;
    }
}


/* --Imagination Area-- */
.imagination_boxed {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
}

.imagination_boxed img {
    position: relative;
    width: 100%;
    height: 215px;
    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: 1;
    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: 99;
}

.destinations_content_inner h3 a {
    color: var(--white-color);
}

.destinations_content_inner h3 a:hover {
    color: var(--black-color);
}

.destinations_content_inner h2 {
    color: var(--white-color);
    padding-bottom: 20px;
}

.destinations_big_offer h1 {
    color: var(--white-color);
    font-size: 150px;
    line-height: 109px;
    padding-bottom: 20px;
}

.destinations_big_offer {
    display: flex;
}

.destinations_big_offer h6 {
    color: var(--white-color);
    line-height: 45px;
    padding-top: 8px;
}

.destinations_big_offer h6 span {
    display: block;
    font-size: 38px;
    font-weight: 500;
}

/* -- Explore Area -- */

.theme_nav_tab {
    background: #FFFFFF;
    box-shadow: -4px -4px 16px rgb(139 62 234 / 8%), 4px 14px 28px rgb(139 148 250 / 7%);
    border-radius: 12px;
    padding: 21px 0;
    margin-bottom: 30px;
}

.theme_nav_tab_item .nav-tabs {
    border-bottom: none;
    justify-content: center;
}

.theme_nav_tab_item .nav-tabs .nav-item.show .nav-link,
.theme_nav_tab_item .nav-tabs .nav-link.active {
    color: var(--white-color);
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.theme_nav_tab_item .nav-tabs .nav-link {
    margin-bottom: 0;
    background: 0 0;
    border: 1px solid var(--main-color);
    color: var(--black-color);
    padding: 4px 16px;
    border-radius: 5px;
    margin-right: 15px;
}

.theme_nav_tab_item .nav-tabs .nav-link:last-child {
    margin-right: 0;
}

.theme_common_box_two {
    border-radius: 11px;
    overflow: hidden;
    border: 1px solid #d2d2d275;
    transition: var(--transition);
    margin-bottom: 30px;
}

.theme_common_box_two:hover {
    box-shadow: 4px 14px 28px rgba(0, 0, 0, 0.1);
}

.theme_two_box_img {
    position: relative;
    overflow: hidden;
    /* height: 350px; */
    height: 270px;
}

.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%;
    height: 100%;
    object-fit: fill;
}

.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 h4 {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.theme_two_box_content h4 a {
    color: var(--black-color);
}

.theme_two_box_content h4 a:hover {
    color: var(--main-color);
}

.theme_two_box_content p {
    padding: 10px 0px;
    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%;
}

.offer_area_box .offer_area_content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 30px 27px;
    z-index: 1;
}


.offer_area_content h2 {
    color: var(--white-color);
    padding-bottom: 20px;
}

.offer_area_content p {
    color: var(--white-color);
    padding-bottom: 25px;
}

/* --Promotional Tours Area-- */
.dot_style .owl-nav.disabled+.owl-dots {
    margin-top: 0px;
}

.dot_style.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 5px;
    background: #D6D6D6;
    display: block;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.dot_style.owl-theme .owl-dots .owl-dot.active span,
.dot_style.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--main-color);
}

/* --Destinations Area-- */
.tab_destinations_boxed {
    display: flex;
    align-items: center;
    border: 1px solid #d2d2d2;
    border-radius: 9px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 40px;
}

.tab_destinations_boxed:hover {
    background: #FFFFFF;
    box-shadow: -4px -4px 16px rgba(0, 0, 0, 0.08), 4px 6px 16px rgba(0, 0, 0, 0.08);
}

.tab_destinations_conntent {
    padding-left: 20px;
}

.tab_destinations_conntent h3 {
    font-size: 22px;
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.tab_destinations_conntent h3 a {
    color: var(--black-color);
}

.tab_destinations_conntent h3 a:hover {
    color: var(--main-color);
}

.tab_destinations_conntent p {
    color: var(--black-color);
    font-weight: 500;
    padding-top: 5px;
}

.tab_destinations_conntent p span {
    color: var(--main-color);
}

/* --News Area-- */
.home_news_item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.home_news_img {
    width: 100px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
}

.home_news_left_wrapper .home_news_item:last-child {
    margin-bottom: 0;
}

.slick-slide img {
    display: block;
    border-radius: 10px;
}

.home_news_img img {
    width: 100%;
}

.home_news_content {
    width: 68%;
    padding-left: 25px;
}

.home_news_content h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
}

.home_news_content h3 a {
    color: var(--black-color);
}

.home_news_content h3 a:hover {
    color: var(--main-color);
}

.home_news_content p {
    padding-top: 12px;
    font-size: 14px;
}

.home_news_content p span {
    padding-left: 10px;
}

.home_news_content p span i {
    padding-top: 0;
    font-size: 7px;
    padding-right: 10px;
}

.seeall_link a i {
    padding-left: 5px;
}

.home_news_big img {
    width: 100%;
}

.home_news_big h3 {
    padding-top: 22px;
    font-size: 22px;
    font-weight: 500;
}

.home_news_big h3 a {
    color: var(--black-color);
    padding-top: 0;
}

.home_news_big h3:hover a {
    color: var(--main-color);
}

.home_news_big p {
    padding-top: 8px;
}

.home_news_big a {
    display: block;
    padding-top: 11px;
}

#our_partners .owl-carousel .owl-item img {
    width: auto !important;
    filter: opacity(0.5);
}

#our_partners .owl-carousel .owl-item img:hover {
    filter: opacity(1);
}

.news_home_bigest {
    overflow: hidden;
    border-radius: 12px;
}

/* --Cta Area-- */
#cta_area {
    background: var(--bg-color);
    padding: 70px 0;
}

.cta_left {
    display: flex;
    align-items: center;
}

.cta_icon {
    width: 15%;
}

.cta_content {
    padding-left: 30px;
}

.cta_content h2 {
    padding-top: 11px;
}

/* --Footer Area-- */
#footer_area {
    padding: 100px 0px;
}

.footer_heading_area h5 {
    border-bottom: 1px solid var(--main-color);
    display: inline-flex;
    padding-bottom: 5px;
    font-weight: 500;
    color: var(--footer-label-black);
}

.footer_heading_area1 {
    padding-top: 28px;
}

.footer_inquery_area {
    padding-top: 5px;
    border-left: 2px solid var(--footer-label-black);
    margin-top: 25px;
    padding-left: 9px;
}

.footer_inquery_area a {
    color: var(--footer-label-black);
    word-wrap: break-word;
    display: inline-block;
    width: 100%;

}

.footer_inquery_area h3 {
    font-weight: 500;
    padding-top: 8px;
    font-size: 19px;
}

.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(--main-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: var(--btn-bg-color);
    padding: 15px 0;
}

.copyright_left p {
    color: var(--black-color);
    font-size: 14px;
    font-weight: 500;
}

.copyright_right {
    text-align: right;
}

.copyright_right p {
    font-size: 14px;
    font-weight: 500;
}

/* ===================================
        Home Two Page
====================================*/
.banner_two_slider_item {
    /* padding: 325px 0 245px 0; */
    /* padding: 170px 0 170px 0; */
    padding: 400px 0 400px 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; */
    bottom: 10px;
    right: 45px;
    /* display: none; */
}

#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; */
    height: 28px;
    width: 29px;
    padding: 0px 5px !important;
    line-height: 22px;
    border-radius: 30px;
    transition: var(--transition);
}

#home_two_banner .owl-carousel .owl-nav button.owl-next:hover,
#home_two_banner .owl-carousel .owl-nav button.owl-prev:hover {
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

/* --Top Service Area-- */
.top_service_boxed {
    position: relative;
    background: var(--white-color);
    border: 1px solid rgba(221, 221, 221, 0.5);
    border-radius: 12px;
    padding: 30px 35px;
    margin-top: 30px;
    transition: var(--transition);
    text-align: center;
}

.top_service_boxed:hover {
    transform: translateY(-10px);
}

.top_service_boxed img {
    transition: var(--transition);
}

.top_service_boxed:hover img {
    transform: translateY(5px);
}

.top_service_boxed h3 {
    padding-top: 35px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 500;
}

.top_service_boxed h3::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 1px;
    background: var(--main-color);
    left: 50%;
    transform: translate(-50%, 50%);
    bottom: 0;
}

.top_service_boxed p {
    padding-top: 20px;
}

/* --Holiday Destinations Area-- */
.holiday_left_heading {
    background: #F3F6FD;
    border-radius: 20px;
    padding: 70px 45px;
    margin-top: 30px;
}

.holiday_small_boxed {
    margin-top: 30px;
    border-radius: 17px;
    overflow: hidden;
    position: relative;
}

.holiday_small_boxed img {
    width: 100%;
    transition: var(--transition);
}

.holiday_small_boxed:hover img {
    transform: scale(1.1);
}

.holiday_small_boxed:hover .holiday_small_box_content {
    opacity: 1;
}

.holiday_small_box_content {
    background: linear-gradient(359deg, #111018 0%, rgb(217 217 217 / 0%) 70%);
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition);
}

.holiday_inner_content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px 20px;
}

.rating_outof {
    display: flex;
    align-items: center;
}

.rating_outof i {
    color: var(--white-color);
    font-size: 14px;
}

.rating_outof h5 {
    color: var(--white-color);
    padding-left: 10px;
    font-weight: 300;
}

.holiday_inner_content h3 {
    color: var(--white-color);
    padding: 10px 0;
    font-weight: 400;
}

.holiday_inner_content h4 {
    color: var(--white-color);
    font-weight: 400;
}

.holiday_inner_content p {
    color: var(--white-color);
    padding-top: 5px;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}

/* --About Area-- */
.about_two_left_top h5 {
    color: var(--main-color);
    font-weight: 500;
}

.about_two_left_top h2 {
    padding-top: 17px;
}

.about_two_left_top p {
    padding-top: 15px;
}

.about_two_item {
    display: flex;
    padding-top: 40px;
    transition: var(--transition);
}

.about_two_item:hover {
    transform: translateY(-10px);
}

.about_two_item_icon {
    width: 14%;
}

.about_two_item_text {
    padding-left: 10px;
}

.about_two_item_text h3 {
    font-weight: 500;
}

.about_two_item_text p {
    padding-top: 6px;
}

/* --Partner Aarea-- */
.partner_area_bg {
    background-image: url('../img/common/video_bg.png');
    padding: 70px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.partner_area_left {
    padding-left: 115px;
}

.partner_area_left h5 {
    color: var(--main-color);
    font-weight: 500;
}

.partner_area_left h2 {
    padding-top: 15px;
    line-height: 45px;
}

.partner_area_left p {
    padding-top: 10px;
}

.partner_video_area {
    padding-top: 35px;
    padding-left: 30px;
}

.video_play_area i {
    color: var(--white-color);
    position: relative;
    z-index: 99;
    font-size: 18px;
}


.video_play_area:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 50px;
    height: 50px;
    background: var(--main-color);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video_play_area:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 50px;
    height: 50px;
    background: var(--main-color);
    border-radius: 50%;
    transition: all 200ms;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        opacity: 0;
    }
}

.local_counter_area {
    padding-top: 40px;
    display: flex;
}

.local_counter_box {
    background: var(--white-color);
    padding: 10px 25px;
    border-radius: 12px;
    margin-right: 15px;
}

.local_counter_box h2 {
    padding-top: 0;
    font-weight: 700;
}

.local_counter_box h5 {
    padding-top: 4px;
    font-weight: 500;
}

/* --Choose your destinations-- */
.choose_des_inner_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.choose_desti_wrapper:hover .choose_des_inner_wrap {
    transform: rotateY(180deg);
}

.choose_boxed_inner,
.flep_choose_box {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    top: 0;
}

.flep_choose_box {
    background-color: var(--main-color);
    transform: rotateY(180deg);
    border-radius: 12px;
}

.choose_boxed_inner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.choose_boxed_inner img {
    width: 100%;
}

.choose_img_text {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.choose_img_text h2 {
    color: var(--white-color);
}

.choose_img_text h3 {
    color: var(--white-color);
    padding-top: 10px;
    font-weight: 400;
}

.flep_choose_box_inner {
    padding: 65px 25px 0px 35px;
}

.flep_choose_box_inner h2 {
    color: var(--white-color);
    padding-top: 15px;
}

.flep_choose_box_inner h3 {
    color: var(--white-color);
    padding-top: 12px;
    font-weight: 500;
}

.flep_choose_box_inner p {
    color: #ffffffd1;
    padding-top: 14px;
    font-weight: 300;
    line-height: 24px;
}

.flep_choose_box_inner a {
    color: var(--white-color);
    margin-top: 25px;
    border-bottom: 1px solid var(--white-color);
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
}

.choose_desti_wrapper {
    margin-top: 30px;
}

/* --Client Area--*/

.client_two_area_bg {
    background-image: url('../img//banner/client-bg.png');
    padding: 15px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.two_client_area_left {
    padding-left: 115px;
}

.two_client_area_left h2 {
    color: var(--white-color);
    line-height: 56px;
}

.sm_call_area {
    display: flex;
    align-items: center;
    padding-top: 30px;
}

.sm_call_number {
    padding-left: 15px;
}

.sm_call_number h5 {
    color: var(--white-color);
}

.sm_call_number h2 a {
    color: var(--white-color);
}

.sm_call_number h2 a:hover {
    color: var(--main-color);
}

.home_client_wrpper {
    background: var(--white-color);
    box-shadow: 8px 12px 16px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    text-align: center;
    padding: 55px 0;
    position: relative;
    top: 122px;
}

.home_client_wrpper h4 {
    color: var(--paragraph-color);
    font-weight: 400;
}

.home_client_wrpper h2 {
    font-weight: 400;
    padding-top: 15px;
}

.home_client_wrpper h3 {
    padding-top: 35px;
    font-weight: 500;
    color: var(--main-color);
}

.client_two_content {
    padding-top: 25px;
}

.home_two_client_slider {
    padding: 0 65px;
}

.client_two_content p {
    font-size: 18px;
    color: var(--black-color);
    font-weight: 400;
    line-height: 36px;
}

.client_two_author {
    padding-top: 15px;
}

.client_two_author h5 {
    font-weight: 500;
}

.client_two_author h6 {
    padding-top: 5px;
    color: var(--main-color);
    font-weight: 600;
}

.home-two-quote {
    position: relative;
    display: inline-block;
}

.home-two-quote img {
    position: absolute;
    top: 15px;
    left: -22px;
}

#hometwo_clinet_area .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 15px;
}

#hometwo_clinet_area .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #2b2540b8;
    display: block;
    transition: opacity .2s ease;
    border-radius: 30px;
}

#hometwo_clinet_area .owl-theme .owl-dots .owl-dot.active span,
#hometwo_clinet_area .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--main-color);
}

/* =========================
       Visa details Page
=========================*/

.visa_holder_area .tour_details_boxed_inner h3 {
    font-weight: 600;
    padding-bottom: 20px;
    font-size: 18px;
}

.visa_holder_area .tour_details_boxed_inner {
    padding-top: 8px;
}

/* =========================
    Visa information Page
=========================*/
.visa_info_card_sm {
    background: #FFFFFF;
    box-shadow: -4px -4px 16px rgba(0, 0, 0, 0.08), 4px 8px 16px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    text-align: center;
    padding: 25px 11px;
    margin-top: 45px;
}

.visa_info_card_sm h3 {
    padding-top: 12px !important;
}

.visa_info_card_sm p {
    padding-top: 10px !important;
}

.area_visa_info_add {
    padding-top: 30px;
}

.visa_category_item ul li {
    padding-top: 18px;
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: 18px;
}

.visa_category_item ul li:first-child {
    padding-top: 0;
}

.visa_category_item ul li:last-child {
    padding-bottom: 0;
    border: none;
}

.visa_category_item ul li a {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.visa_category_item ul li a:hover {
    color: var(--main-color);
}

.visa_info_side_call {
    background-color: var(--main-color);
    text-align: center;
    color: var(--white-color);
    padding: 30px 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.visa_info_side_call h2 {
    padding-top: 15px;
}

.visa_info_side_call h2 a {
    color: var(--white-color);
}

.visa_info_side_call h2 a:hover {
    color: var(--black-color);
}

.visa_info_side_call h2 i {
    padding-right: 15px;
}

.visa_info_sid_padding_none {
    padding: 0 !important;
    overflow: hidden;
    position: relative;
}

.download_pdf_area_visa {
    display: flex;
    align-items: center;
    background: #EEF4F8;
    padding: 30px 20px;
}

.downloads_pdf_text_visa {
    padding-left: 14px;
}

.downloads_pdf_text_visa a h3 {
    border-bottom: none;
    padding-bottom: 0;
    color: var(--black-color);
}

.downloads_pdf_text_visa a h5 {
    color: var(--paragraph-color);
    padding-top: 10px;
    font-size: 16px;
}

.download_pdf_area_visa:hover .downloads_pdf_text_visa a h3 {
    color: var(--main-color);
}

.visa_request_side_form form .form-group {
    padding-top: 30px;
}

.visa_request_side_form_button {
    padding-top: 30px;
}

.visa_info_side_middle img {
    width: 100%;
}

/* =========================
       Tour Search Page
=========================*/
/* --Common Banner-- */
#common_banner {
    /* background-image: url('../img/banner/flight-banner.jpg'); */
    padding: 200px 0 90px 0;
    background-repeat: no-repeat;
    background: var(--bg-navy);
    background-size: cover;
}

#external_common_banner {
    padding: 200px 0 90px 0;
    background-repeat: no-repeat;
    background: var(--bg-navy);
    background-size: cover;
}

.gt_login_banner {
    background-image: url('../img/banner/login-banner.jpg');
    /* background-image: url('../img/banner/slider-bg2.2.jpg'); */
    height: 650px;
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    background-color: #fff;
}

.gt_login_banner2 {
    height: 470px;
    width: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.gt_login_banner3 {
    background-image: url('../img/banner/login-banner3.jpg');
    height: 500px;
}

.gt_login_banner4 {
    background-image: url('../img/banner/login-banner4.jpg');
    height: 500px;
}

.gt_login_banner5 {
    background-image: url('../img/banner/login-banner5.jpg');
    height: 500px;
}

.gt_login_banner6 {
    background-image: url('../img/banner/login-banner6.jpg');
    height: 500px;
}

.gt_login_banner7 {
    background-image: url('../img/banner/login-banner7.jpg');
    height: 500px;
}

.gt_login_banner8 {
    background-image: url('../img/banner/login-banner8.jpg');
    height: 500px;
}

/* .gt_login_banner9 {
    background-image: url('../img/banner/login-banner9.jpg');
    height: 650px;
} */

.gt-login-banner-div {
    bottom: 200px !important;
    z-index: 99;
    /* background: #f3f6fdc4; */
}

#home_two_banner .owl-dots {
    position: absolute;
    text-align: center;
    vertical-align: middle;
    bottom: 5px;
    right: 45%;
}



.gt_coming_soon_banner {
    background-image: url('../img/banner/coming-soon.jpg');
    padding: 220px 0 90px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.gt_session_expired_banner {
    /* background-image: url('../img/banner/session_expired.jpg'); */
    background: #fff;
    padding: 350px 0 90px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.gt_error_banner {
    background-image: url('../img/banner/error_banner.jpg');
    padding: 340px 0 90px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.gt_error_banner-text .title {
    padding: 0px 0px 70px;
    padding: 340px 0 90px 0;
}

.authorized-bg {
    background-color: #3f51b5;
}

.common_bannner_text {
    text-align: center;
}

.common_bannner_text h2 {
    color: var(--white-color);
    font-weight: 400;
}

.common_bannner_text ul {
    padding-top: 20px;
}

.common_bannner_text ul li {
    display: inline-block;
    color: var(--white-color);
    padding-left: 7px;
}

.common_bannner_text ul li:first-child {
    padding-left: 0px;
}

.common_bannner_text ul li span {
    padding-right: 5px;
}

.common_bannner_text ul li span i {
    color: var(--white-color);
    font-size: 7px;
    position: relative;
    top: -2px;
    left: -3px;
}

.common_bannner_text ul li a {
    color: #ffffff91;
}

.common_bannner_text ul li a {
    color: #ffffff91;
}

.common_bannner_text ul li a:hover {
    color: var(--main-color);
}

/* --Search Form-- */
#theme_search_form_tour {
    margin-top: -85px
}

#theme_search_form_tour1 {
    margin-top: -115px
}

.pagination_area .page-link {
    color: var(--main-color);
    border-radius: 5px;
    padding: 2px 8px;
    font-size: 14px;
}

.pagination_area .page-link:hover {
    z-index: 2;
    color: var(--white-color);
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.pagination_area .page-link:focus {
    z-index: 2;
    color: var(--white-color);
    background-color: var(--main-color);
    outline: none;
    box-shadow: none;
}

.pagination_area .page-item {
    margin: 0 6px;
}

.pagination_area .pagination {
    justify-content: center;
    padding-top: 30px;
}

.left_side_search_boxed {
    background: #FFFFFF;
    border: 1px solid #00000030;
    border-radius: 6px;
    padding: 15px 15px;
    margin-bottom: 15px;
}

.left_side_search_heading h5 {
    border-bottom: 1px solid #00000030;
    padding-bottom: 7px;
    font-size: 16px;
    font-weight: 500;
}

.filter-price {
    padding-top: 5px;
    padding-bottom: 20px;
}

.gt-duration-slider {
    padding-top: 15px;
    padding-bottom: 20px;
}

.apply {
    border: none;
    background: transparent;
    padding: 0;
    color: var(--main-color);
    font-weight: 500;
}

.filter-price-text {
    padding-bottom: 20px;
}

.noUi-horizontal .noUi-tooltip {
    margin-top: 13px;
    font-size: 15px;
}

html:not([dir="rtl"]) .noUi-horizontal .noUi-handle.noUi-handle-upper {
    right: -4px !important;
    top: 4px;
}

html:not([dir="rtl"]) .noUi-horizontal .noUi-handle {
    right: -13px !important;
    top: 4px !important;
}

.noUi-horizontal .noUi-handle {
    width: 15px !important;
    height: 15px !important;
}

.noUi-connect {
    background: var(--main-color) !important;
}

.review_star {
    padding-top: 10px;
}

.review_star .form-check {
    margin-top: 15px;
    margin-bottom: 0;
}

.color_theme {
    color: var(--main-yellow);
}

.color_asse {
    color: #DDDDDD;
}

.form-check-label {
    width: 100%;
}

.tour_search_type {
    padding-top: 5px;
}

.tour_search_type .form-check {
    padding-top: 5px;
}

.area_flex_one {
    display: flex;
    justify-content: space-between;
}

.area_flex_one span {
    color: var(--black-color);
    font-weight: 500;
}

.tour_details_right_boxed {
    background: #ffffffde;
    box-shadow: -4px -5px 14px rgba(0, 0, 0, 0.08), 5px 8px 16px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 25px 20px 35px 20px;
}

.first_child_padding_none ul li:first-child {
    padding-top: 0;
}

.tour_details_right_box_heading h3 {
    font-weight: 500;
    font-size: 22px;
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 10px;
    display: inline-block;
}

.valid_date_area {
    display: flex;
    align-items: center;
    padding-top: 25px;
}

.valid_date_area_one {
    padding-right: 40px;
}

.valid_date_area_one h5 {
    font-weight: 500;
    padding-bottom: 5px;
}

.tour_package_details_bar_list {
    padding-top: 20px;
}

.tour_package_details_bar_list h5 {
    font-weight: 500;
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 10px;
    display: inline-block;
}

.tour_package_details_bar_list ul li {
    padding-top: 15px;
    /* color: var(--paragraph-color); */
    display: flex;
    /* align-items: center; */
}

.tour_package_details_bar_list ul li i {
    color: var(--main-color);
    font-size: 17px;
    padding-right: 7px;
    padding-top: 3px;
}

.buttles-position-li ul li i {
    padding-top: 7px !important;
}

.text-10px {
    font-size: 10px !important;
}

.tour_package_details_bar_price {
    padding-top: 20px;
}

.tour_package_details_bar_price h5 {
    font-weight: 500;
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 10px;
    display: inline-block;
}

.tour_package_bar_price {
    display: flex;
    align-items: center;
    padding-top: 15px;
}

.tour_package_bar_price h6 {
    font-size: 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;
    bottom: 0px;
    position: absolute;
}

.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;
    box-shadow: -4px -5px 14px rgb(0 0 0 / 8%), 5px 8px 16px rgb(0 0 0 / 8%);
    border-radius: 10px;
    padding: 20px 20px;
    margin-top: 30px;
}

.heading_theme {
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 10px;
    display: inline-block;
    font-weight: 500;
    margin-bottom: 20px;
}

.tour_details_boxed_inner p {
    padding-bottom: 15px;
}

.tour_details_boxed_inner ul li {
    padding-bottom: 15px;
    color: var(--paragraph-color);
    display: flex;
}

.tour_details_boxed_inner ul li i {
    color: var(--black-color);
    font-size: 7px;
    padding-right: 7px;
    padding-left: 2px;
    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: 80px;
    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;
}

.map_area1 iframe {
    width: 100%;
    height: 170px;
}

.tour_detail_right_sidebar {
    margin-bottom: 30px;
}

.write_your_review_wrapper {
    background: #FFFFFF;
    box-shadow: -4px -5px 14px rgb(0 0 0 / 8%), 5px 8px 16px rgb(0 0 0 / 8%);
    border-radius: 10px;
    padding: 20px 20px;
    margin-top: 50px;
}

.write_review_inner_boxed {
    text-align: center;
    padding-top: 20px;
}

.all_review_wrapper {
    margin-top: 60px;
}

.all_review_box {
    background: #FFFFFF;
    box-shadow: -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: 50px;
    border: 2px solid #dddddd75;
    /* border: 2px dashed #dddddd75; */
    padding: 10px;
    font-size: 16px;
}

.bg_input {
    background-color: #F3F6FD;
}

.form-control:focus {
    color: var(--heading-color);
    background-color: #fff;
    border: 2px solid var(--main-yellow) !important;
    /* border: 2px dashed var(--main-color); */
    outline: none;
    box-shadow: none;
}

.form-select:focus {
    background-color: #fff;
    border: 2px solid var(--main-yellow) !important;
}

.tour_booking_form_box {
    background: #FFFFFF;
    box-shadow: -4px -5px 14px rgb(0 0 0 / 8%), 5px 8px 16px rgb(0 0 0 / 8%);
    border-radius: 10px;
    padding: 20px 20px 20px 20px;
}

#tour_bookking_form_item .form-group {
    margin-bottom: 30px;
}

#tour_bookking_form_item {
    padding-top: 25px;
}

.booking_tour_form {
    margin-bottom: 30px;
}

.booking_tour_form_submit a {
    margin-top: 15px;
}

.coupon_code_area_booking {
    padding-top: 30px;
}

.coupon_code_submit {
    padding-top: 20px;
}

.tour_booking_amount_area ul {
    padding-top: 15px;
}

.tour_booking_amount_area ul li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 6px;
    font-weight: 500;
    font-size: 16px;
}

.tour_booking_amount_area ul li:last-child {
    border-bottom: 1px solid #dadada
}

.tour_bokking_subtotal_area {
    padding-top: 15px;
}

.tour_bokking_subtotal_area h6 {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    padding-left: 105px;
}

.coupon_add_area {
    padding-top: 15px;
    border-bottom: 1px solid #dadada;
    padding-bottom: 15px;
}

.coupon_add_area h6 {
    font-size: 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_item_img img {
    width: 100%;
}

.news_item_content {
    padding: 25px 5px 0px 0;
}

.news_item_content h3 {
    font-weight: 500;
    line-height: 35px;
}

.news_item_content h3 a {
    color: var(--black-color);
}

.news_item_content h3 a:hover {
    color: var(--main-color);
}

.news_item_content p {
    padding-top: 13px;
}


/* =============================
        News Details Page
================================*/
.news_details_content_area h2 {
    padding-top: 30px;
    line-height: 54px;
}

.news_details_content_area p {
    padding-top: 20px;
}

.news_details_content_area h3 {
    padding-top: 20px;
    font-weight: 500;
}

.news_details_content_area ul li {
    padding-top: 13px;
}

.news_details_content_area ul li i {
    font-size: 10px;
    padding-right: 7px;
    color: var(--main-color);
}

.news_details_left_img {
    padding-top: 30px;
}

.download_pdf_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #EEF4F8;
    padding: 20px 20px;
    border-radius: 12px;
    margin-top: 45px;
}

.downloads_pdf_icon {
    display: flex;
    align-items: center;
}

.downloads_pdf_icon h3 {
    padding-left: 10px;
    font-weight: 500;
}

.comment_area {
    padding-top: 60px;
}

.comment_area h3 {
    font-weight: 500;
    margin-bottom: 30px;
}

.comment_area_boxed {
    display: flex;
    padding-bottom: 35px;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 35px;
}

.comment_area .comment_area_boxed:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

.comment_img {
    width: 17%;
}

.comment_author_name {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}

.comment_text {
    padding-left: 20px;
}

.comment_area_form {
    padding-top: 60px;
}

.comment_area_form h3 {
    font-weight: 500;
    margin-bottom: 30px;
}

textarea {
    height: 100% !important;
}

#news_comment_form .form-froup {
    margin-bottom: 30px;
}

.news_details_right_item {
    background: #FFFFFF;
    box-shadow: -4px -4px 20px rgba(0, 0, 0, 0.08), 8px 10px 24px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 30px 20px;
    margin-bottom: 30px;
}

.news_details_right_item h3 {
    font-weight: 500;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}

.recent_news_item {
    display: flex;
    padding-top: 25px;
}

.recent_news_img {
    width: 35%;
}

.recent_news_text {
    padding-left: 10px;
}

.recent_news_text h5 {
    font-weight: 500;
    line-height: 26px;
}

.recent_news_text h5 a {
    color: var(--black-color);
}

.recent_news_text h5 a:hover {
    color: var(--main-color);
}

.recent_news_text p {
    padding-top: 0px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.recent_news_text p i {
    font-size: 6px;
    margin: 0 7px;
    color: var(--main-color);
}

.news_tags_area {
    padding-top: 10px;
}

.news_tags_area ul li {
    display: inline-flex;
    margin-right: 10px;
    margin-top: 15px;
}

.news_tags_area ul li a {
    background: #DDDDDD;
    padding: 7px 15px;
    color: var(--black-color);
    font-weight: 400;
    transition: var(--transition);
}

.news_tags_area ul li a:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.news_tags_area ul li a.active {
    background: var(--main-color);
    color: var(--white-color);
}

.share_icon_area li:first-child {
    margin-left: 0;
}

.share_icon_area {
    padding-top: 30px;
}

.share_icon_area li {
    display: inline-flex;
    background: #fff;
    width: 40px;
    text-align: center;
    justify-content: center;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    box-shadow: 4px 6px 20px rgb(0 0 0 / 8%);
    transition: var(--transition);
    color: var(--main-color);
    margin-left: 15px;
}

.share_icon_area li:hover {
    background: var(--main-color);
}

.share_icon_area li:hover a {
    color: var(--white-color);
}

/* ==============================
        Dashboard Page
================================*/
.dashboard_sidebar {
    background: #FFFFFF;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.dashboard_sidebar_user {
    text-align: center;
    padding: 30px 20px;
    background: #F3F6FD;
}

.dashboard_sidebar_user img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

.dashboard_sidebar_user h3 {
    padding-top: 20px;
    font-weight: 500;
}

.dashboard_sidebar_user p {
    line-height: 17px;
    padding-top: 10px;
}

.dashboard_sidebar_user p a {
    color: var(--paragraph-color);
}

.dashboard_sidebar_user p a:hover {
    color: var(--main-color);
}

.dashboard_menu_area {
    padding: 40px 20px;
}

.dashboard_menu_area ul li {
    margin-bottom: 30px;
    font-size: 18px;
}

.dashboard_menu_area ul li:last-child {
    margin-bottom: 0px;
}

.dashboard_menu_area ul li:hover {
    color: var(--main-color);
    cursor: pointer;
}

.dashboard_menu_area ul li a {
    color: var(--black-color);
}

.dashboard_menu_area ul li a.active {
    color: var(--main-color);
}

.dashboard_menu_area ul li a:hover {
    color: var(--main-color);
}

.dashboard_menu_area ul li i {
    padding-right: 10px;
}

.booing_sidebar_dashboard {
    padding-top: 30px;
    padding-left: 30px;
}

.dashboard_dropdown_button {
    position: relative;
}

.dashboard_dropdown_button span {
    position: absolute;
    right: 0;
    display: block;
    top: 0;
}

.dashboard_top_boxed {
    background: #FFFFFF;
    box-shadow: -4px -4px 14px rgba(0, 0, 0, 0.08), 8px 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
}

.dashboard_main_top {
    margin-bottom: 30px;
}

.dashboard_top_icon i {
    font-size: 100px;
    color: var(--paragraph-color);
}

.dashboard_top_text {
    padding-left: 20px;
}

.dashboard_top_text h3 {
    padding-bottom: 8px;
    font-weight: 500;
    color: var(--paragraph-color);
}

.dashboard_top_text h1 {
    line-height: 64px;
    font-size: 70px;
    font-weight: 500;
}

.dashboard_common_table {
    background: #F3F6FD;
    border-radius: 12px;
    padding: 25px 30px;
}

.dashboard_common_table h3 {
    font-weight: 500;
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 11px;
    position: relative;
}

.dashboard_common_table h3::after {
    content: "";
    width: 140px;
    height: 2px;
    background: var(--main-color);
    position: absolute;
    left: 0;
    bottom: 0;
}

.table_common_area {
    margin-top: 40px;
}

.table_common_area table {
    text-align: center;
    border: 1px solid #d5d5d5;
}

.table_common_area thead tr th {
    border: none;
    background: #fff;
    padding: 15px 0;
}

.table_common_area tbody tr td {
    padding: 16px 0;
}

.table_common_area tbody tr td.complete {
    color: #4CAF50;
    font-weight: 500;
}

.table_common_area tbody tr td.cancele {
    color: #C8102E;
    font-weight: 500;
}

.table_common_area tbody tr td i {
    cursor: pointer;
}

/* ---My Profile Page--- */
#profile_form_area {
    padding-top: 35px;
}

#profile_form_area .form-group {
    margin-bottom: 30px;
}

#profile_form_area label {
    margin-bottom: 10px;
}

#profile_form_area .change_password_field {
    position: relative;
}

#profile_form_area .change_password_field p {
    position: absolute;
    bottom: 14px;
    right: 15px;
    font-size: 12px;
    cursor: pointer;
    color: var(--main-color);
    font-weight: 500;
}

.change_password_input_boxed h3 {
    margin-bottom: 30px;
}

.notification_top_heading {
    position: relative;
}

.notification_top_heading p {
    color: var(--main-color);
    padding-left: 20px;
    position: absolute;
    left: 147px;
    top: 0;
    font-weight: 600;
    font-size: 12px;
}

.notification_wrapper {
    padding-top: 30px;
}

.notification_wrapper .accordion-item {
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, .125);
    margin-bottom: 15px;
}

.notification_wrapper .accordion-button {
    padding: 4px 25px;
    font-size: 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;
}


.logout_modal_content {
    text-align: center;
    padding: 80px 0px 40px 0;
}

.logout_modal_content h3 {
    font-weight: 400;
    font-size: 35px;
    line-height: 45px;
}

.logout_approve_button {
    display: flex;
    justify-content: space-between;
    padding: 40px 30px 0 30px;
}

.logout_approve_button button {
    width: 46%;
}

.btn_border {
    border: 1px solid var(--main-color);
}

.btn_border:hover {
    background: var(--main-color);
}

/* --wallet Page-- */
.wallet_area_boxed {
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgb(0 0 0 / 8%);
    border-radius: 10px;
    margin-top: 30px;
    padding: 25px 15px;
}

.wallet_area_boxed h4 {
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 11px;
    position: relative;
}

.wallet_area_boxed h4::after {
    content: "";
    width: 100px;
    height: 2px;
    background: var(--main-color);
    position: absolute;
    left: 0;
    bottom: 0;
}

.wallet_blance_boxed {
    margin-top: 20px;
}

.wallet_blance_boxed p {
    font-size: 14px;
}

.wallet_blance_boxed h5 {
    font-weight: 500;
    padding-top: 4px;
}

.wallet_boxed_flex {
    display: flex;
    justify-content: space-between;
}

.dashboard_price_range {
    padding-top: 30px;
}

.main_range_price {
    height: 13px;
    width: 100%;
    background: #66666652;
    border-radius: 40px;
    font-size: 10px;
    line-height: 100%;
    position: relative;
    overflow: hidden;
}

.main_range_price::after {
    content: "30%";
    width: 49%;
    background: var(--main-color);
    height: 13px;
    position: absolute;
    border-radius: 30px;
    text-align: right;
    color: #fff;
    padding: 0 22px;
    line-height: 12px;
}

.price_range_blance {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price_range_blance p {
    font-size: 12px;
    font-weight: 600;
}

.add_balance_area {
    padding-top: 30px;
}

.add_balance_area .input-group-text {
    padding: 0 16px;
    font-size: 20px;
    border: none;
}

.add_balance_area .form-control {
    height: 45px;
}

.other_add_balance_area {
    text-align: center;
    padding-top: 7px;
}

.other_add_bal_button {
    padding-top: 5px;
    padding-bottom: 20px;
}

.btn_add_bal {
    border: 1px solid var(--main-color);
    font-size: 14px;
    margin-left: 10px;
    transition: var(--transition);
}

.btn_add_bal:hover {
    background: var(--main-color);
}

.btn_add_bal.active {
    background: var(--main-color);
    color: var(--white-color);
}

.wallet_table_top {
    padding-top: 50px;
}

.btn_modal_closed {
    position: absolute;
    right: 20px;
    top: 16px;
}

.btn_modal_closed button {
    background: var(--white-color);
    border: 2px solid var(--main-color);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 23px;
}

.btn_modal_closed button:hover {
    background: var(--main-color);
    color: var(--white-color);
    transition: var(--transition);
}

/* ============================
        Login Page
================================ */
.common_author_boxed {
    background: #f3f6fd;
    padding: 45px 20px;
}

.common_author_heading {
    text-align: center;
}

.common_author_heading h3 {
    font-weight: 400;
    color: var(--paragraph-color);
}

.common_author_heading h2 {
    padding-top: 15px;
}

.common_author_form {
    padding: 50px 100px 0px 100px;
}

#main_author_form .form-group {
    margin-bottom: 20px;
    /* text-align: right; */
}

#main_author_form .form-group a {
    color: var(--paragraph-color);
    padding-top: 10px;
    display: block;
}

#main_author_form .form-group a:hover {
    color: var(--main-color);
}

.common_form_submit {
    padding-top: 20px;
}

.have_acount_area {
    text-align: center;
    padding-top: 20px;
}

.other_author_option ul {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}

.other_author_option ul li {
    padding-left: 10px;
    transition: var(--transition);
}

.other_author_option ul li:hover {
    transform: translateY(-10px);
}

.line_or {
    border-bottom: 1px solid #dddddd;
    margin-bottom: 30px;
}

.line_or span {
    display: block;
    background: #f3f6fd;
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 50%;
    color: var(--black-color);
    font-size: 20px;
    margin: 0px auto -21px auto;
}

.otpCont {
    text-align: center;
    display: flex;
    justify-content: center;
}

.otSc {
    margin: 0;
    margin-right: 34px;
    border: 1px solid var(--main-color);
    padding: 5px 0px;
    font-size: 22px;
    text-align: center;
    width: 7%;
    outline: none;
}

.otSc:last-child {
    margin-right: 0;
}

/* ==============================
     Flight Search Area
================================*/

.flight_search_items {
    /* background: #FFFFFF; */
    background: var(--text-box-bg-skyblue);
    border: 1px solid #DDDDDD;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flight_mytrip_items {
    border: 1px solid #DDDDDD;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .flight_search_item_bg{
    background: #349dd426;
} */
.multi_trip_flight_lists {
    border-radius: 12px 0px 0px 12px;
    padding: 10px 10px 10px 0px;
}

.multi_city_flight_lists {
    background: #fff;
    border-radius: 12px 0px 0px 12px;
    padding: 10px 10px 10px 0px;
}

.flight_search_item_wrappper {
    margin-bottom: 30px;
}

.flight_search_left {
    display: flex;
    align-items: center;
    padding: 0 0px 0 20px;
}

.flight_search_middel {
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}

@media print {
    .meal-preference {
        width: 160px;
    }

    .flight_search_left {
        align-items: center;
        justify-content: center;
        width: 50%;
        flex-shrink: 0;
    }

    .flight_search_middel {
        align-items: center;
        justify-content: center;
        width: 50%;
        flex-shrink: 0;
    }

    .flight_search_middel .flight_right_arrow {
        margin-right: 35px;
    }
}

.flight_multis_area_wrapper {
    display: flex;
    justify-content: space-between;
}

.flight_search_destination {
    padding-left: 20px;
}

.flight_search_destination p {
    font-size: 14px;
    /* line-height: 16px; */
}

.flight_search_destination h3 {
    font-weight: 500;
    padding-top: 5px;
    height: 60px;
    overflow: hidden;
}

.flight_search_destination h6 {
    padding-top: 5px;
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 176px;
}

.flight_right_arrow {
    text-align: center;
}

.flight_right_arrow img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 1px 4px 12px rgba(0, 0, 0, 0.1);
}

.flight_right_arrow p {
    font-size: 14px;
    line-height: 18px;
}

.flight_right_arrow h6 {
    font-size: 14px;
    font-weight: 700;
    padding-top: 10px;
}

.flight_search_right {
    /* background: #F3EFF9; */
    /* padding: 25px 16px 20px 25px; */
    /* padding: 15px; */
    background: var(--text-box-bg-skyblue);
    padding: 0px 6px 12px 6px;
    border-radius: 12px;
    text-align: center;
}

.flight_search_right h5 {
    font-size: 18px;
    font-weight: 500;
    color: var(--paragraph-color);
}

.flight_search_right h2 {
    padding-top: 10px;
    /* font-size: 30px; */
    font-size: 27px;
    word-break: break-all;
}

.flight_search_right h2 sup {
    font-size: 10px;
    color: var(--main-color);
    font-weight: 600;
    top: -19px;
    padding-left: 5px;
}

.flight_search_right a {
    margin-top: 3px;
}

.flight_search_right p {
    font-size: 14px;
    padding-top: 5px;
    font-weight: 500;
    color: var(--black-color);
}

.flight_search_right h6 {
    font-size: 16px;
    font-weight: 500;
    padding-top: 7px;
    cursor: pointer;
}

.print-btn {
    position: absolute;
    right: 5px;
    top: -4px;

}

.email-btn {
    position: absolute;
    right: 5px;
    top: -15px;
}


.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: #fff !important;
}

.flight_policy_refund {
    border: 1px solid #d7d6d6;
    border-radius: 10px;
    padding: 0px 20px;
    background: #fff;
}

.airline-details {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.airline-details .img {
    /* height: 24px;
    width: 24px; */
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 8px;
}

.airline-details .airlineName {
    margin-right: 8px;
    font-size: 14px;
    font-weight: 600;
}

.airline-details .flightNumber {
    font-size: 14px;
    color: #4c4c4c;
}

.flight_inner_show_component .flight_det_wrapper {
    display: flex;
    align-items: flex-start;
    width: 215px;

}

.flight_inner_show_component .flight_det_wrapper .flight_det .code_time {
    font-size: 20px;
}

.flight_inner_show_component .flight_det_wrapper .flight_det .code_time .code {
    color: #4c4c4c;
    margin-right: 8px;
}

.flight_inner_show_component .flight_det_wrapper .flight_det .code_time .time {
    font-weight: 600;
}

.flight_inner_show_component .flight_det_wrapper .flight_det .airport {
    color: #4c4c4c;
    font-size: .75rem;
    line-height: 20px;
    margin-bottom: 5px;
    margin-top: 10px;
    font-size: 14px;
    word-break: break-word;
}

.flight_inner_show_component .flight_det_wrapper .flight_det .date {
    color: #484848;
    font-size: .625rem;
    font-weight: 600;
    margin-top: 5px;
    line-height: 20px;
    margin-bottom: 5px;
    font-size: 14px;
}

.flight_inner_show_component .flight_duration {
    justify-content: center;
    width: 115px;
    text-align: center;
    align-items: flex-start;
    color: rgb(76, 76, 76);
    flex-wrap: wrap;
    line-height: 1;
}

.flight_inner_show_component .flight_duration p {
    font-size: 12px;
}

.flight_inner_show_component .flight_duration span {
    font-size: 0.625rem;
    font-size: 12px;
    color: rgb(76, 76, 76);
    margin-top: 8px;
    font-weight: 500;
    display: inline-block;
}

.flight_inner_show_component .arrow_right {
    flex-basis: 88px;
    margin: 4px 1rem 0px;
    background-image: url('../img/icon/plane-right-blue.png');
    background-repeat: no-repeat;
    background-position: 50% center;
    text-align: center;
    min-height: 24px;
    min-width: 24px;
    background-size: 24px;
}

.flight_inner_show_component {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.TabPanelInner p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 16px
}

.TabPanelInner h4 {
    font-size: 14px;
    padding-bottom: 4px;
    /* border-bottom: 1px solid #8b3eea; */
    display: inline-block;
    margin-bottom: 12px;
    margin-right: 5px;
}

.gt-border-bottom {
    border-bottom: 1px solid var(--main-color);
}

.flight_show_down_wrapper {
    display: flex;
    /* border-bottom: 1px solid #cdcdcd; */
    padding-top: 5px;
}

.gt-time-btn-flight {
    background: var(--text-box-bg-skyblue);
    color: #504949;
    font-size: 14px;
    padding: 3px 0px;
    font-weight: 500;
}

.departure-text {
    font-size: 15px;
    color: #5c5c5e;
    font-weight: 600;
    padding-top: 10px;
}

.gt-seat-btn {
    color: #fff;
    font-size: 14px;
    background: var(--btn-bg-color);
    padding: 2px 5px;
    border-radius: 0.25rem;
    margin-top: 3px !important;
}

.gt-seat-btn a {
    color: #fff;
}

.pt-10 {
    padding-top: 10px;
}

.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: 15px;
}

/* ===========================
   Flight Details Page
===========================*/
.flight_sidebar_right {
    padding-top: 20px;
    display: flex;
}

.flight_right_arrow_sidebar {
    text-align: center;
    padding: 0 22px;
}

.flight_right_arrow_sidebar img {
    width: 40px;
}

.flight_right_arrow_sidebar h6 {
    font-size: 10px;
}

.flight_right_arrow_sidebar p {
    font-size: 10px;
    line-height: 13px;
}

.flight_search_destination_sidebar p {
    font-size: 10px;
    font-weight: 600;
    color: var(--black-color);

}

.flight_search_destination_sidebar h3 {
    font-size: 16px;
    font-weight: 500;
}

.flight_search_destination_sidebar h6 {
    font-size: 10px;
    padding-top: 3px;
    font-weight: 600;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100px;
}

.flight_search_middel_sidebar {
    display: flex;
}

/* ===================================
        Hotel Search Page
====================================*/
.room_book_item {
    display: flex;
    border: 1px solid #DDDDDD;
    margin-top: 30px;
}


.room_booking_heading h3 {
    font-size: 20px;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 335px;
    padding-bottom: 10px;
}

.room_booking_heading h3 a {
    color: var(--black-color);
}

.room_booking_heading h3 a:hover {
    color: var(--main-color);
}

.room_fasa_area ul {
    display: flex;
    padding-top: 10px;
}

.room_fasa_area ul li {
    padding-right: 20px;
}

.room_fasa_area ul li img {
    padding-right: 8px;
    width: 28px;
}

.room_person_select {
    padding-left: 35px;
    padding-top: 15px;
}

.room_person_select h3 {
    font-size: 18px;
    color: var(--main-color);
    font-weight: 600;
    padding-bottom: 15px;
}

.room_booking_right_side {
    display: flex;
    justify-content: space-between;
    padding: 15px 25px 0 25px;
}

.room_select_area .nav-tabs {
    border-bottom: none;
    margin-bottom: 20px;
    justify-content: center;
}

.flight-module .nav-tabs {
    border-bottom: none;
    /* margin-bottom: 20px; */
    justify-content: center;
    border-radius: 0.25rem;
    border: 1px solid var(--main-color);
}

.room_select_area .nav-tabs .nav-item.show .nav-link,
.flight-module .nav-tabs .nav-item.show .nav-link,
.room_select_area .nav-tabs .nav-link.active,
.flight-module .nav-tabs .nav-link.active {
    color: var(--white-color);
    background: var(--btn-bg-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 35px;
}

.flight-module .nav-tabs .nav-link {
    margin-bottom: 0;
    background: #F3F6FD;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    padding: 8px 16px;
    font-size: 14px;
}


.room_details_facilities {
    display: flex;
    justify-content: space-between;
}

.tour_details_boxed_inner .room_details_facilities p {
    padding-bottom: 0px;
}

/* ===================================
    Room-Booking-Confirmation Page
====================================*/

.booking_success_arae {
    display: flex;
    align-items: center;
    padding: 0px 20px;
}

.booking_success_text {
    padding-left: 30px;
}

.booking_success_text h3 {
    font-weight: 500;
    padding-bottom: 10px;
}

.your_info_arae ul li {
    border-bottom: 1px solid #dfdfdf94;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
}

.your_info_arae ul li:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
}

.name_first {
    width: 40%;
}

.last_name {
    font-weight: 600;
}

/* ===================================
    Become A Vendor Page
====================================*/
.how_it_boxed {
    text-align: center;
    padding-top: 30px;
}

.how_it_boxed h3 {
    padding-top: 30px;
    font-weight: 500;
}

.how_it_boxed p {
    padding-top: 10px;
}

.video_play_area {
    position: relative;
}

.video_play_area img {
    width: 100%;
}

.video_play_button {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.video_play_button a {
    color: var(--white-color);
}

.video_play_button a:hover {
    color: var(--main-color);
}

.video_play_button h4 {
    color: var(--white-color);
    padding-top: 35px;
}

.video_play_button h2 {
    color: var(--white-color);
    padding-top: 10px;
    font-size: 40px;
}

.vendor_form_heading {
    padding-bottom: 30px;
}

.vendor_form_heading p {
    padding-top: 10px;
}

.vendor_img img {
    width: 100%;
}

/* ===================================
    Terms Of Service Page
====================================*/
.terms_item h4 {
    font-weight: 700;
}

.terms_item p {
    padding-top: 15px;
}

.terms_item {
    padding-top: 30px;
}

.terms_item:first-child {
    padding-top: 0px;
}

/* ===================================
       Error Page
====================================*/
.error_content h2 {
    padding-top: 30px;
}

.error_content p {
    padding-top: 10px;
}

.error_content a {
    margin-top: 30px;
}




/* --Preloader -- */

.preloader {
    position: fixed;
    z-index: 999999;
    background-color: var(--white-color);
    width: 100%;
    height: 100%;
    text-align: center;
    left: 0;
    right: 0
}

.preloader .lds-spinner {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px
}

.preloader .lds-spinner div {
    -webkit-transform-origin: 40px 40px;
    transform-origin: 40px 40px;
    -webkit-animation: lds-spinner 1.2s linear infinite;
    animation: lds-spinner 1.2s linear infinite
}

.preloader .lds-spinner div::after {
    content: " ";
    display: block;
    position: absolute;
    top: 5px;
    left: 35px;
    width: 5px;
    height: 20px;
    border-radius: 20%;
    background: var(--custom-loader);
}

.preloader .lds-spinner div:nth-child(1) {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s
}

.preloader .lds-spinner div:nth-child(2) {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-animation-delay: -1s;
    animation-delay: -1s
}

.preloader .lds-spinner div:nth-child(3) {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-delay: -.9s;
    animation-delay: -.9s
}

.preloader .lds-spinner div:nth-child(4) {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-animation-delay: -.8s;
    animation-delay: -.8s
}

.preloader .lds-spinner div:nth-child(5) {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
    -webkit-animation-delay: -.7s;
    animation-delay: -.7s
}

.preloader .lds-spinner div:nth-child(6) {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    -webkit-animation-delay: -.6s;
    animation-delay: -.6s
}

.preloader .lds-spinner div:nth-child(7) {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-animation-delay: -.5s;
    animation-delay: -.5s
}

.preloader .lds-spinner div:nth-child(8) {
    -webkit-transform: rotate(210deg);
    transform: rotate(210deg);
    -webkit-animation-delay: -.4s;
    animation-delay: -.4s
}

.preloader .lds-spinner div:nth-child(9) {
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg);
    -webkit-animation-delay: -.3s;
    animation-delay: -.3s
}

.preloader .lds-spinner div:nth-child(10) {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-animation-delay: -.2s;
    animation-delay: -.2s
}

.preloader .lds-spinner div:nth-child(11) {
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg);
    -webkit-animation-delay: -.1s;
    animation-delay: -.1s
}

.preloader .lds-spinner div:nth-child(12) {
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg);
    -webkit-animation-delay: 0s;
    animation-delay: 0s
}

@-webkit-keyframes lds-spinner {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes lds-spinner {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

/* --Top To Bottom-- */

.go-top {
    position: fixed;
    cursor: pointer;
    bottom: 100%;
    right: 15px;
    color: #fff;
    background: var(--btn-bg-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 {
    bottom: 12vh;
    /* -webkit-transform: translateY(-95%); */
    /* transform: translateY(-95%); */
    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: var(--btn-bg-color);
    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%
}

.styleBackground {
    background-image: url("../img/Login/loginbg1.png");
    height: 100vh;
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
}

#footer_area {
    background: var(--footer-bg1);
}

.slider-bg-footer {
    background: var(--footer-bg2);
}

.h-35 {
    height: 40px;
}

.input-placeholder {
    position: relative;
}

/* .input-placeholder input {
    padding: 10px;
  } */
.input-placeholder input:valid+.placeholder {
    display: none;
}

.placeholder {
    position: absolute;
    pointer-events: none;
    top: 15px;
    bottom: 2px;
    left: 25px;
    margin: auto;
    color: #82797d;
}

.placeholder span {
    color: #b40e0e;
}

.Dropdown-control {
    /* padding: 2px 30px 2px 8px !important; */
    padding: 12px 52px 8px 10px !important;
    border: 2px solid var(--main-color) !important;
    background-color: #f3f6fd7a !important;
    border-radius: 0.2rem !important;
}

.mb-30 {
    margin-bottom: 30px;
}

.modalcard .header h4 {
    color: var(--bg-color);
}

.without-auth-head header {
    /* background: radial-gradient(circle at 4% 2%, #328fc7 0%, rgba(87, 29, 127, 0) 97%), #3ac9fd; */
    background: var(--login-custom-btn);
}

.Dropdown-option {
    text-align: left;
}

.cust-drop .Dropdown-arrow {
    top: 12px !important;
}

.cust-drop .Dropdown-control {
    padding: 2px 30px 2px 8px !important;
}

.airline-card-img {
    height: 30px;
    width: 65px;
    border: 2px solid #f1f1f1;
    padding: 3px 3px;
    object-fit: contain;
    margin: 3px 1px;
    box-shadow: 5px 5px 10px #00000012;
}

.border-radius50 {
    border-radius: 50%;
}

.Dropdown-menu {
    /* background-color: #ebf2f4!important; */
    border: 1px solid var(--main-yellow) !important;
}

.Dropdown-option:hover {
    background-color: #39c4f83d !important
}

.Dropdown-option.is-selected {
    background-color: var(--main-color) !important;
    color: var(--bg-color) !important;
}

.bg-main-logo {
    background: var(--main-color);
}

.css-1fdsijx-ValueContainer .css-13cymwt-control .css-1xc3v61-indicatorContainer {
    height: 50px;
    z-index: 99;
}

.css-1fdsijx-ValueContainer {
    padding: 0px 8px !important;
}

.css-b62m3t-container {
    position: relative;
    box-sizing: border-box;
}

.css-13cymwt-control {
    border-width: 2px !important;
    border-radius: .2rem !important;
    border-color: var(--main-color) !important;
    background: #f7f9fe !important;
    min-height: 50px !important;
    font-size: 16px;

}

.css-t3ipsp-control:hover {
    border-color: var(--main-yellow);
    min-height: 50px !important;
}

.css-t3ipsp-control {
    border-color: var(--main-yellow) !important;
    box-shadow: 0 0 0 1px var(--main-yellow) !important;
    min-height: 50px !important;
}

.dropdown-search-text .css-t3ipsp-control {
    min-height: 30px !important;
}

.css-1nmdiq5-menu {
    border: 1px solid var(--main-yellow);
    border-radius: .2rem !important;
    margin-top: 0px !important;
    z-index: 2 !important;
}

.text-login-placeholder::placeholder {
    color: rgb(58, 58, 58)
}

.css-3iigni-container {
    border: 2px solid var(--main-color) !important;
    border-radius: .2rem !important;
}

.profile-field-mt-1 .mb-7px {
    margin-bottom: 6px;
}

.footer-botton-slider-btn {
    background: 0 0;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 14px;
    height: 25px;
    width: 25px;
    line-height: 22px !important;
    border-radius: 0px;
    transition: var(--transition);
}

.footer-botton-slider-btn:hover {
    background: rgb(187, 183, 183);
    color: var(--bg-color);
}

.css-16xfy0z-control {
    min-height: 46px !important;
    /* height: 50px !important; */
    background-color: #e9ecef !important;
}

.react-tel-input .form-control {
    width: 100% !important;
    height: 50px !important;
    border: 2px solid var(--main-color) !important;

}

.react-tel-input .form-control:focus {
    color: var(--heading-color);
    background-color: #fff;
    border: 2px solid var(--main-yellow) !important;
    /* border: 2px dashed var(--main-color); */
    outline: none;
    box-shadow: none;
}

/* .control textarea{
    width: 100%!important;
    height: 80px!important;
    border: 2px solid var(--main-color)!important;
} */
.react-tel-input .flag-dropdown {
    border: 2px solid var(--main-color) !important;
}

.borde-box {
    padding: 5px;
    border: 1px solid rgb(218, 218, 218);
    border-radius: 0.2rem;
}

.head-logo-bg {
    height: 55px;
    width: 250px;
}

.mini-head-logo-bg {
    height: 35px;
    width: auto;
    margin: 15px 0px;
}

.width-100 {
    width: 100%;
}

.log-in-head-logo-bg {
    height: 60px;
    /* width: 290px; */
    width: 293px;
    margin-left: 50px;
    margin-top: 35px;
    position: fixed;
    z-index: 1;
}

.main-btn-width-auto {
    padding: 12px 12px;
    font-size: 18px;
}

.btn_theme:hover {
    color: #fff !important;
}

.bg-sky-blue {
    background: var(--text-blue-color);
}

.bg-sky-blue-light {
    background: var(--blue-color-light);
}

.text-sky-blue {
    color: var(--text-blue-color);
}

.form-control:disabled,
.form-control[readonly] {
    height: 50px !important;
}

.form-control:disabled.search-input-hotel,
.form-control[readonly].search-input-hotel {
    height: 40px !important;
}

.partner_logo a img {
    height: 85px;
    object-fit: contain !important;
    margin: auto;

}

.react-tel-input :disabled {
    cursor: text !important;
    background: #e9ecef !important;
}

.css-olqui2-singleValue {
    color: #22262a !important;
}

.profile-menu1 li a {
    color: rgba(0, 0, 0, .9) !important;
}

.profile-pic img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-right: 5px;
    object-fit: contain;
    border: 1px solid var(--bg-color);
    background: var(--btn-bg-color);
}

.profile-pic-inner img {
    height: 75px;
    width: 75px;
    border-radius: 50%;
    margin-right: 5px;
    object-fit: contain;
    /* border: 2px solid var(--main-color); */
    background: var(--btn-bg-color);
}

.mobile-no img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    margin-right: 5px;
    object-fit: contain;
}

.mobile-no-text {
    position: absolute;
    top: 0px;
    left: 70px;
}


.login-input-icon {
    border-left: 2px solid var(--text-blue-color) !important;
    border-top: 2px solid var(--text-blue-color) !important;
    border-bottom: 2px solid var(--text-blue-color) !important;
}

.text-12px {
    font-size: 12px;
}

.text-14px {
    font-size: 14px;
}

.text-16px {
    font-size: 16px;
}

.text-10px {
    font-size: 10px;
}

.per-text {
    position: absolute;
    top: 35px;
    left: 42%;
}

.cmyNjn>.wrapper {
    z-index: 1 !important;
    max-height: 250px;
    /* overflow-y: auto; */
}

.gyFedp>.wrapper {
    z-index: 1 !important;
    border-radius: 0px !important;
    border-width: 2px !important;
    border-radius: 0.2rem !important;
    border-color: var(--main-color) !important;
    background: #f7f9fe !important;
    /* min-height: 55px !important; */
}

.eWFcRu {
    margin: 0 0 0 8px !important;
}

.sc-gswNZR {
    /* overflow-y: auto; */
    height: 225px;
}

.profile-menu1 .dropdown-item:hover {
    background-color: transparent !important;
}

.rct-node-icon {
    color: var(--main-color) !important;
}

.btn-bg-none {
    background: none;
    border: none;
}

.color-picker-btn {
    position: absolute;
    top: 8px;
    right: 8px;
}

.border-blue-img {
    border: 2px solid var(--main-color);
    border-radius: 0.2rem;
    background-color: var(--bg-navy);
}

/* .user-drop-icon{
    padding: 2px 2px;
    top: 15px;
    left: 29px;
    border: 1px solid #fff;
    font-size: 8px;
    line-height: 8px;
    border-radius: 50%;
    background: #00b700;
    position: absolute;
} */

.loader-img img {
    -webkit-animation: rotatingPlanes 5s linear infinite;
    animation: rotatingPlanes 5s linear infinite;
    will-change: transform;
    height: 150px;
}

.loader-img {
    -webkit-animation: blinkAnim 500ms ease;
    animation: blinkAnim 500ms ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

@-webkit-keyframes rotatingPlanes {
    100% {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes rotatingPlanes {
    100% {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@-webkit-keyframes blinkAnim {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    80% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes blinkAnim {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    80% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: var(--btn-bg-color);
}

.vertical-tab-border-parent .vertical-tab-border li:first-of-type {
    border-top: 2px solid var(--main-color);
}

.vertical-tab-border .tabs-btn {
    border-top: none;
    border-left: 2px solid var(--main-color) !important;
    border-right: 2px solid var(--main-color) !important;
    border-bottom: 2px solid var(--main-color) !important;
}

.tabs-btn {
    padding: 6px 10px !important;
    width: 100%;
    text-align: left;
    /* border: 2px solid var(--main-color) !important; */
    border-top: 2px solid var(--main-color);
    border-left: 2px solid var(--main-color) !important;
    border-right: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color) !important;
    border-radius: 0px !important;
}

/* .pop-ups-tab-border-parent .pop-ups-tab-border li:last-of-type{
    border-right: 2px solid var(--main-color)!important;
} */
.pop-ups-tab-border-parent .pop-ups-tab-border li {
    margin-right: 2px;
}

.pop-ups-tab-border .tabs-btn {
    margin-bottom: 2px;
    border-top: 2px solid var(--main-color);
    border-left: 2px solid var(--main-color) !important;
    border-right: 2px solid var(--main-color) !important;
    border-bottom: 2px solid var(--main-color) !important;
    color: var(--main-color);
}

/* .tabs-btn:last-child{
    border-right: 2px solid var(--main-color);
    border-left: 2px solid var(--main-color) !important;
}
.tabs-btn:first-child{
    border-left: 2px solid var(--main-color) !important;
} */
.text-black {
    color: var(--text-black-light);
}

/* .trending-text{
    background: #efefef;
    padding: 3px 6px;
    border-radius: 0.2rem;
    font-size: 11px;
    display: inline-grid;
} */
.loader-gif-img {
    height: 125px;
}

.padding-left-0 {
    padding-left: 0px !important;
}

/* ********loader with earth and plane************ */
.loader {
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    max-width: 41rem;
    height: 20rem;
    margin: auto;

}

.wait {
    margin: 5rem 0;
}

.iata_code {
    font-size: 5rem;
    opacity: 0.5;
    top: 18%;
    position: absolute;
    color: #0099cc;
}

.departure_city {
    left: 0;
}

.arrival_city {
    right: 1.5rem;
}

.plane {
    position: absolute;
    margin: 0 auto;
    width: 100%;
}

.plane-img {
    -webkit-animation: spin 3s linear infinite;
    -moz-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


.earth-wrapper {
    position: absolute;
    margin: 0 auto;
    width: 100%;
    padding-top: 2.7rem;
}

.earth {
    width: 160px;
    height: 160px;
    /* background: url("https://zupimages.net/up/19/34/6vlb.gif"); */
    background: url("../img/banner/loader-earthbg.gif");
    border-radius: 100%;
    background-size: 340px;
    animation: earthAnim 12s infinite linear;
    margin: 0 auto;
    border: 1px solid var(--text-blue-color);
}

@keyframes earthAnim {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 340px;
    }
}

@media screen and (min-width: 1024px) {

    #dvFrom1 .wrapper,
    #dvSource .wrapper,
    #dvDestination .wrapper,
    #dvTo1 .wrapper,
    #dvFrom2 .wrapper,
    #dvTo2 .wrapper,
    #dvFrom3 .wrapper,
    #dvTo3 .wrapper,
    #dvFrom4 .wrapper,
    #dvTo4 .wrapper,
    #dvFrom5 .wrapper,
    #dvTo5 .wrapper {
        width: 285px;
        z-index: 1;
        border-radius: 0px;
    }

    #dvDestination_hotel .wrapper,
    .hotel-input-field .wrapper {
        width: 350px !important;
        z-index: 1;
        border-radius: 0px;
    }
}

/* @media screen and (max-width: 425px) { */
@media only screen and (min-width: 280px) and (max-width: 525px) {
.modal-top-1vh{
    top: 3vh!important;
}
.gt-request-loader #theme_search_form_tour {
    margin-top: -80px !important;
}
.history-modal-parent #carouselExampleFade .carousel-control-prev{
    left: 0px!important;
}
.history-modal-parent #carouselExampleFade .carousel-control-next{
    right: 0px!important;
}
.email-pro.gt-slide-box .email-cross {
    position: absolute;
    right: 0 !important;
    top: 55px !important;
}
.dropdown-search-text .time-slot-dropdown .css-13cymwt-control {
    margin-top: 0px !important;
}
.dropdown-search-text .time-slot-dropdown .css-t3ipsp-control{
    margin-top: 0px !important;
}
.dropdown-search-text .time-slot-dropdown .css-13cymwt-control > div{
    height: 30px !important;
}
.dropdown-search-text .time-slot-dropdown .css-t3ipsp-control > div{
    height: 30px !important;
}
.header-secondary~#theme_search_form_tour {
    margin-top: -80px !important;
}
    #tabArea_ServiceRequest .row.position-relative.mx-auto.px-0 {
        overflow: hidden;
    }

    .flight_Search_boxed input.cstm {
        z-index: 1;
    }
    .flight_Search_boxed.addons .date_flex_area{
        flex-direction: column !important;
    }

    .profile-badge {
        max-width: 200px;
        word-break: break-all;
        white-space: normal;
        line-height: 20px;
    }

    .session-modal-btns {
        float: left !important;
        padding: 10px 10px !important;
        width: 100% !important;
        display: flex;
        gap: 4px;
        padding-top: 0px !important;
    }

    .ql-snow .ql-tooltip a.ql-preview {
        max-width: 62px !important;
    }

    .session-modal-btns .session_btn {
        font-size: 16px;
        margin-left: 0px !important;
        margin-top: 0px !important;
    }

    .ql-snow .ql-tooltip input[type="text"] {
        width: 120px !important;
    }

    .ql-snow .ql-tooltip.ql-flip {
        transform: translate(30px, -10px) !important;
    }

    /* .session-modal-para{
        font-size: 14px !important;
    } */
    .main-responsive-menu.header-secondary+#common_banner {
        padding-top: 90px !important;
    }

    .header-secondary .log-in-head-logo-bg {
        margin-left: 15px !important;
        margin-bottom: 80px !important;
    }

    .form-switch.privileges {
        display: flex;
        flex-direction: column;

    }

    .fare-markup-main {
        flex-direction: column !important;
    }

    .fare-mark-calc.txt-center {
        display: flex;
        align-items: center;
    }

    .imageModal3 {
        position: fixed;
        top: 4vh !important;
        left: 10% !important;
        width: 80% !important;
        z-index: 99999;
        overflow: hidden;
    }

    .btm-separate .btn.btn_theme.btn_sm {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0 auto;
    }

    .markup-main-inside {
        width: 100% !important;
        flex-direction: column !important;
    }

    .markup-main-inside.ttl-fare .fare-mark-calc span {
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }

    .fare-mark-calc {
        width: 100% !important;
    }

    .markup-main-inside .btn_theme.btn_sm {
        margin-top: 0px !important;
    }

    span.mark-sign {
        margin-left: 8px !important;
        margin-right: 8px !important;
        margin-top: 8px !important;
        text-align: center;
        width: 100% !important;
    }

    .chrt_holder {
        flex-direction: column;
    }

    canvas.cstm__chart {
        padding: 20px 20px;
    }

    .chrt_holder .legend {
        flex-direction: column !important;
        gap: 7px !important;
        padding-bottom: 20px !important;
    }

    .chrt_holder .legend span:nth-child(1) {
        font-size: 16px !important;
        font-weight: 500 !important;
    }

    .chrt_holder .legend span:nth-child(2) {
        font-size: 16px !important;
        font-weight: 600 !important;
    }

    .chrt_holder .legend li {
        width: 100% !important;
        gap: 10px !important;
    }

    .privacy-section {
        padding: 90px 0 90px 0 !important;
    }

    .gt-fare-rate-head {
        border: solid 1px #ddd;
        border-radius: 4px;
        margin: 0px;
    }

    .gt-fare-rate-head .gt-head {
        background-color: var(--gt-grey);
        padding: 4px;
        margin-bottom: 0px;
    }

    .gt-fare-rate-head .gt-ttl {
        padding: 4px;
        margin-bottom: 0px;
    }

    #divHotelSearchBase.flight_categories_search .nav-tabs {
        justify-content: start;
    }

    .tour_details_boxed_inner.fare-summary .accordion-item.fare-toggle-btn.htl-dtl .accordion_itinerary_list {
        padding-top: 5px;
    }

    .tour_details_boxed_inner.fare-summary .accordion-item.fare-toggle-btn.htl-dtl .accordion-header .accordion-button {
        background: var(--gt-grey);
        margin-top: 0;
        padding: 4px;
    }

    .tour_details_boxed_inner.fare-summary .accordion-item.fare-toggle-btn.htl-dtl .accordion-header .accordion-button::after {
        right: 10px;
        top: 10px;
    }

    .tour_details_boxed_inner.fare-summary .accordion-item.fare-toggle-btn.htl-dtl .accordion-header {
        margin-left: 0px !important;
    }

    .tour_details_boxed_inner.fare-summary .accordion-item.fare-toggle-btn.htl-dtl {
        border: solid 1px #ddd;
        padding: 0 0px 5px 0px;
        border-radius: 4px;
    }

    .hotel-list-item.position-relative.perk-border.light-yellow-bg.list-card {
        flex-direction: column;
    }

    .hotel-list-item.position-relative.perk-border.light-yellow-bg.list-card .hotel-text {
        width: 100% !important;
    }

    .hotel-list-item.position-relative.perk-border.light-yellow-bg.list-card figure.hotel-img.float-left {
        flex: auto;
    }

    .accordion_itinerary_list .area_flex_one.ttl_rate.popup span:nth-child(1) {
        width: 100% !important;
    }

    .accordion_itinerary_list .area_flex_one.ttl_rate.popup span:nth-child(2) {
        width: 100% !important;
        text-align: left !important;
    }

    .area_flex_one.ttl_rate.popup {
        flex-direction: column;
    }

    .float-sm-start {
        float: left
    }

    .float-sm-end {
        float: right
    }

    .content.gt-h-400px {
        padding: 10px;
    }

    .tour_details_boxed_inner.fare-summary.booking .row.car-booking-top {
        border: solid 1px #ddd;
        margin: 0;
        border-radius: 4px;
        margin-bottom: 4px;
    }

    .tour_details_boxed_inner.fare-summary.booking .row.car-booking-top div {
        padding-left: 0px;
        padding-right: 0px;
    }

    .tour_details_boxed_inner.fare-summary.booking .row.car-booking-top .car-booking-top-head {
        padding: 4px;
    }

    .tour_details_boxed_inner.fare-summary.booking .accordion-header .accordion-button {
        display: flex;
        flex-direction: column;
        align-items: start;
        border: solid 1px #ddd;
        margin-top: 0px;
        font-size: 15px;
    }

    .tour_details_boxed_inner.fare-summary.booking .accordion-header .accordion-button div:nth-child(1) {
        background-color: var(--gt-grey);
        padding: 5px;
        display: flex;
        width: 100%;
        margin-left: 0 !important;
        font-size: 15px;
    }

    .tour_details_boxed_inner.fare-summary.booking .accordion-header .accordion-button div:nth-child(2) {
        position: relative !important;
        padding: 5px;
        font-size: 15px;
    }

    .tour_details_boxed_inner.fare-summary.booking .accordion-collapse .accordion_itinerary_list {
        padding: 5px;
        border: solid 1px #ddd;
        border-top: none;
    }

    .tour_details_boxed_inner.fare-summary.booking .accordion-collapse.faresummary-sect .accordion_itinerary_list {
        padding: 0px;
        border: none;
    }

    .tour_details_boxed_inner.fare-summary.booking .accordion-collapse .accordion_itinerary_list .form-check-label {
        font-size: 15px !important;
    }

    .tour_details_boxed_inner.fare-summary.booking .accordion-button::after {
        right: 5px;
        top: 5px;
    }

    .left_side_search_boxed.booking {
        padding: 5px;
    }

    .tour_details_boxed_inner.fare-summary.booking .accordion-item {
        padding-bottom: 7px;
    }

    .left_side_search_boxed.booking .car-booking-top {
        font-size: 15px;
    }

    .left_side_search_boxed.booking .car-booking-top .text-14px {
        font-size: 15px !important;
        margin-left: 5px;
        font-weight: 500;
    }

    .left_side_search_boxed.booking .car-booking-top .text-end {
        text-align: left !important;
    }

    .left_side_search_boxed.booking .car-booking-top-head {
        background: var(--gt-grey);
        padding: 5px;
    }

    .fare-summary-pop .fare-toggle-btn.popup .accordion-button div:nth-child(2) {
        position: relative !important;
        padding: 4px;
    }

    .fare-toggle-btn.popup h2.accordion-header {
        margin-left: 0 !important;
        margin-bottom: 0 !important;
    }

    .fare-toggle-btn.popup .accordion-button.collapsed .tax--summary {
        width: 100%;
        flex-direction: row;
        gap: 10px;
    }

    .area_flex_one.fare-summry-fare-comm {
        display: flex;
        flex-direction: column;
        gap: 5px !important;
    }

    .area_flex_one.fare-summry-fare-comm span:nth-child(1) {
        margin-bottom: 2px;
    }

    .faresummary-sect {
        border: solid 1px #ddd;
        padding: 5px 5px;
        border-top: none;
    }

    .faresummary-sect .form-check-label {
        border: solid 1px #ddd;
        border-radius: 4px;
        margin-bottom: 5px;
        margin-top: 0px !important;
    }

    .faresummary-sect .form-check-label span.area_flex_one span:nth-child(1) {
        background-color: var(--gt-grey);
        padding: 5px;
    }

    .faresummary-sect .form-check-label span.area_flex_one span:nth-child(2) {
        padding: 5px;
    }

    .fare-toggle-btn.popup .accordion-collapse .area_flex_one.text-muted span {
        margin-left: 0px !important;
    }

    .fare-toggle-btn.popup h2.accordion-header .accordion-button .tax--summary {
        margin-left: 0px !important;
        padding-left: 0;
        background-color: var(--gt-grey);
        padding: 4px;
        margin-bottom: 0;
        width: 100%;
        flex-direction: row;
        gap: 0px;
    }

    .left_side_search_boxed.booking .form-check-label.ttl-btm .area_flex_one {
        display: flex;
        flex-direction: column;
    }

    .fare-toggle-btn.popup h2.accordion-header .accordion-button .cstm-col-next {
        width: 100%;
        word-break: break-all !important;
        position: relative !important;
        text-align: left;
        margin-bottom: 0;
        padding: 5px;
    }

    .fare-toggle-btn.popup h2.accordion-header .accordion-button {
        display: flex;
        flex-direction: column;
        border: solid 1px #ddd;
        align-items: start;
    }

    .tour_details_boxed_inner.fare-summary-pop .fare-toggle-btn {
        /* border:solid 1px #ddd; */
        padding: 5px 0px;
    }

    .fare-toggle-btn.popup .accordion-collapse .area_flex_one.text-muted span::after {
        right: 5px;
        top: 3px;
    }

    .fare-child-tax div:nth-child(2) {
        position: relative !important;
    }

    .fare-summary-pop .accordion-button::after {
        right: 3px;
        top: 5px;
    }

    .fare-toggle-btn.child .accordion-collapse {
        border: solid 1px #ddd;
        padding: 5px;
        border-top: none;
    }

    .no-tax-node .fare-toggle-btn.child .accordion-collapse {
        border: none !important;
        padding: 0px !important;
    }

    .no-tax-node .accordion-button h6 {
        margin: 0px !important;
    }

    .fare-toggle-btn.child .accordion-collapse .form-check-label {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .fare-toggle-btn.child .accordion-collapse .form-check-label .area_flex_one {
        border: solid 1px #ddd;
        border-radius: 4px;
    }

    .fare-toggle-btn.child .accordion-collapse .form-check-label .area_flex_one span:nth-child(1) {
        background-color: var(--gt-grey);
        padding: 5px;
    }

    .fare-toggle-btn.child .accordion-collapse .form-check-label .area_flex_one span:nth-child(2) {
        padding: 5px;
    }

    .fare-child-sec {
        display: flex;
        flex-direction: column;
        border: solid 1px #ddd;
        padding: 0px;
        border-radius: 4px;
    }

    .fare-child-sec span:nth-child(1) {
        margin: 0px !important;
        background-color: var(--gt-grey);
        padding: 5px;
    }

    .fare-child-sec span:nth-child(2) {
        padding: 5px;
    }

    .fare-toggle-btn .accordion-collapse label.form-check-label .area_flex_one.text-muted {
        display: flex;
        flex-direction: column;
    }

    .fare-toggle-btn .accordion-collapse label.form-check-label .area_flex_one.text-muted span:nth-child(1) {
        margin-right: 0px !important;
    }

    .fare-toggle-btn .accordion-collapse label.form-check-label .area_flex_one.text-muted span:nth-child(1) br {
        display: none;
    }

    .fare-toggle-btn .accordion-collapse label.form-check-label .area_flex_one.text-muted span:nth-child(2) {
        text-align: left;
    }

    .area_flex_one.ttl_rate {
        display: flex;
    }

    .area_flex_one.ttl_rate span:nth-child(1) {
        width: 50% !important;
        text-align: left;
    }

    .area_flex_one.ttl_rate span:nth-child(2) {
        width: 50% !important;
        text-align: right;
        word-break: break-all;
    }

    .printModalcard {
        width: 80% !important;
    }

    table.table.table-bordered.table-layout-design.mob_data td {
        max-width: 100%;
        width: fit-content;
        white-space: nowrap;
    }

    .btn_booking_sect {
        min-height: auto !important;
    }

    /* Configuration Tab UI Start */
    .vertical-tab-border-parent.custom+.custom-tab.mobile-tab .tab-content {
        padding-bottom: 25px;
        /* border: none !important; */
        /* padding-left: 0 !important; */
        /* padding-right: 0 !important; */
        margin-top: 15px;
    }

    .vertical-tab-border-parent.custom+.custom-tab {
        padding-left: calc(var(--bs-gutter-x) * .5) !important;
    }

    .vertical-tab-border-parent.custom .vertical-tab-border {
        background-color: transparent !important;
    }

    .vertical-tab-border-parent.custom {
        padding-right: calc(var(--bs-gutter-x) * .5) !important;
    }

    .vertical-tab-border-parent.custom .vertical-tab-border {
        display: flex;
        flex-direction: row !important;
        gap: 3px;
    }

    .vertical-tab-border-parent.custom .vertical-tab-border li {
        width: 32.33%;
        text-align: center;
    }

    .vertical-tab-border-parent.custom .vertical-tab-border .nav-item .nav-link {
        padding: 0px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: column !important;
        box-shadow: 0px 2px 10px 1px #efefef;
        min-height: 65px;
        border-radius: 6px !important;
    }

    .vertical-tab-border-parent.custom .vertical-tab-border .nav-item button.nav-link.active {
        background: var(--btn-bg-color) !important;
        color: #fff !important;
        border: none !important;
    }

    .vertical-tab-border-parent.custom .vertical-tab-border .nav-item .nav-link.active i {
        color: #fff !important;
    }

    .vertical-tab-border-parent.custom .vertical-tab-border .nav-item .nav-link.active::after {
        display: none;
    }

    .vertical-tab-border-parent.custom .vertical-tab-border .nav-item .nav-link i {
        margin-right: 0px;
        font-size: 16px;
        color: var(--main-color) !important;
    }

    .vertical-tab-border-parent.custom .vertical-tab-border .nav-item .nav-link span {
        text-align: center;
        line-height: 15px;
        font-size: 12px;
        font-weight: 500;
    }

    /* Configuration Tab UI Ends */


    /* Tabs New UI */
    .theme_search_form_area .tab-content {
        border: solid 2px var(--main-color);
        padding: 15px;
    }

    .theme_search_form_area .tab-content.rem_border {
        border: none !important;
        padding: 0px;
    }

    .flight_categories_search {
        margin-bottom: 0px !important;
    }

    .flight_categories_search .nav-tabs {
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }

    .Travel-req .flight-search-tabs {
        border-bottom: 2px solid var(--main-color);
        padding: 10px 0px 0px 0px;
        padding-bottom: 0px;
    }

    .Travel-req .tab-content {
        border: 2px solid var(--main-color);
        padding: 10px;
        border-top: none;
    }

    .Travel-req .flight_categories_search {
        margin-bottom: -2px;
    }

    .Travel-req .flight_categories_search .nav-tabs {
        margin: 0 !important;

    }

    .include-exclude-tab.booking {
        padding: 0px !important;
        border: none !important;
    }

    .include-exclude-tab.travel-request-tabs {
        padding: 0px !important;
        border: none !important;
    }

    .flight-search-tabs span {
        display: flex;
        gap: 7px;
        flex-wrap: wrap;
        margin-bottom: 25px;
    }

    .flight_categories_search .nav-tabs .nav-link {
        padding: 8px 10px !important;
    }

    .flight-search-tabs span label {
        width: 31.33%;
        display: flex;
        margin: 0px !important;
        min-height: 58px;
        box-shadow: 0px 2px 10px 1px #efefef;
        border-radius: 8px;
        padding: 4px;
        flex-direction: column;
        justify-content: space-evenly;
        font-size: 12px;
        color: #444 !important;
    }

    .flight-search-tabs span label.flight-active-tab {
        color: #fff !important;
    }

    .flight-search-tabs span label.flight-active-tab i {
        color: #fff !important;
    }

    .flight-search-tabs span label i {
        font-size: 16px;
        color: var(--main-color) !important;
    }

    .Travel-req .flight-search-tabs .flight-search-tabs span label i {
        font-size: 16px;
        color: var(--main-color) !important;
    }

    .Travel-req .flight-search-tabs .flight-search-tabs span label.flight-active-tab {
        color: #fff !important;
    }

    .Travel-req .flight-search-tabs .flight-search-tabs span label.flight-active-tab i {
        color: #fff !important;
    }

    .Travel-req .flight-search-tabs .flight_categories_search .nav-tabs .nav-link,
    .flight_categories_search .nav-tabs .nav-link {
        font-size: 13px !important;
        padding: 8px 4px !important;
        border-radius: 4px 4px 0px 0px;
        border-bottom: none !important;
        width: 100%;
    }

    .Travel-req .flight-search-tabs .flight_categories_search .nav-tabs .nav-link.active,
    .flight-search-tabs .flight_categories_search .nav-tabs button.nav-link.active {
        padding: 8px 4px !important;
        background-color: #fff;
        position: relative;
    }

    .flight-search-tabs .flight_categories_search .nav-tabs button.nav-link.active::after {
        content: '';
        height: 8px;
        width: 100%;
        background-color: #fff;
        position: absolute;
        bottom: -4px;
        z-index: 1;
        left: 0px;

    }

    .Travel-req .flight_categories_search .nav-tabs {
        margin-top: 0px !important;
    }

    .Travel-req .flight_categories_search .nav-tabs .nav-item,
    .flight_categories_search .nav-tabs .nav-item {
        width: 33.33%;
    }

    .flight-search-tabs {
        margin-bottom: 0px !important;
    }

    .pop-ups-tab-border-parent.travel-req .pop-ups-tab-border {
        gap: 8px;
        margin-bottom: 15px;
    }

    .pop-ups-tab-border-parent.travel-req .pop-ups-tab-border .nav-item {
        width: 31.33%;
        display: flex;
        margin: 0px;
    }

    .pop-ups-tab-border-parent.travel-req .pop-ups-tab-border .nav-item .tabs-btn.nav-link {
        padding: 0px 2px !important;
        width: 100%;

    }

    .pop-ups-tab-border-parent.travel-req .pop-ups-tab-border .nav-item .nav-link {
        font-size: 12px;
        border: solid 1px #eee !important;
        box-shadow: 0px 2px 10px 1px #efefef;
        min-height: 58px;
        border-radius: 10px !important;
        color: #444;
        font-weight: 500;
        line-height: 15px;
        justify-content: space-evenly;
        display: flex;
        flex-direction: column;
    }

    .pop-ups-tab-border-parent.travel-req .pop-ups-tab-border .nav-item .nav-link br {
        display: none;
    }

    .pop-ups-tab-border-parent.travel-req .pop-ups-tab-border .nav-item .nav-link.active {
        color: #fff !important;
    }

    .pop-ups-tab-border-parent .pop-ups-tab-border .nav-item .tabs-btn.nav-link.active i {
        color: #fff !important;
    }

    .pop-ups-tab-border-parent.travel-req .pop-ups-tab-border .nav-item .nav-link i {
        font-size: 16px;
        color: var(--main-color) !important;
    }

    .text_wrap {
        white-space: wrap !important;
    }

    .tbl_traveler table td {
        max-width: 100%;
        width: fit-content;
        white-space: nowrap;
    }

    @-moz-document url-prefix() {
        .remSpaceMob {
            margin: 0px !important;
        }
    }

    .tour_details_boxed_inner.fare-summary-pop .accordion-collapse .form-check-label .area_flex_one span:nth-child(1) {
        width: 100%;
    }

    .tour_details_boxed_inner.fare-summary-pop .accordion-collapse .form-check-label .area_flex_one span:nth-child(2) {
        width: 100%;
        text-align: left;
    }

    .Hotel-Commission {
        overflow-x: scroll;
    }

    .Hotel-Commission .table.table-bordered {
        table-layout: fixed;
    }

    .Hotel-Commission .table.table-bordered tbody tr td:nth-child(1) {
        width: 210px;
    }

    .Hotel-Commission .table.table-bordered tbody tr td:nth-child(2) {
        width: 120px;
    }

    .Hotel-Commission .table.table-bordered tbody tr td:nth-child(3) {
        width: 210px;
    }

    .Hotel-Commission .table.table-bordered tbody tr td:nth-child(4) {
        width: 120px;

    }

    .table.table-bordered.table-layout-design.mob_data thead tr td {
        width: 150px !important;
    }

    .chrt_holder {
        padding: 5px 0px !important;
    }

    .hotel-list-item.carListItem .hotel-text {
        border-left: none !important;
    }

    .hotel-list-item .hotel-text .hotel-name a {
        white-space: pre-wrap !important;
        line-height: 30px !important;
    }

    .carListItem.hotel-list-item .hotel-flag {
        right: 0px;
        padding: 3px 3px;

    }

    .gt-car-section .hotel-list-item.carListItem figure.hotel-img {
        position: relative;
    }

    /* .theme_search_form_area{
        word-break:break-word;
    } */
    .hotel-list-item.carListItem figure.hotel-img a {
        padding: 42px;
    }

    .zoomController {
        scale: none !important;
    }

    /* .carListItemDetails .carListItem .gt-exclusive-text{
        top:90% !important;
    } */
    .carListItem .hotel-flag img {
        height: 40px !important;
    }

    .mobileTableScroll {
        overflow: scroll;
    }

    .mobileTableScroll table {
        table-layout: fixed;
    }

    .mobileTableScroll table th {
        width: 150px;
    }

    .gt-car-section .gt-exclusive-text {
        top: 235px !important;
    }

    .topbar-others-options {
        display: flex;
        flex-direction: column;
        float: none;
        align-items: center;
    }

    .topbar-others-options li {
        margin-right: 0px !important;
    }

    .dropdown-menu.profile-menu1 {
        transform: translate3d(0px, 44px, 0px) !important;
        box-shadow: 0px 5px 10px 1px #ccc;
    }

    .loaderContent {
        position: relative !important;
        bottom: 0px;
    }

    .loader.globeLoader.top {
        justify-content: start;
    }

    .loaderContaner {
        position: relative;
        height: 250px;
        width: 100%;
    }

    .loader.globeLoader {
        display: flex;
        align-items: center;
        justify-content: center;
        /* height: 100% !important; */
        height: auto;
        flex-direction: column;
    }

    .accordion-button.collapsed .tax--summary {
        width: 60%;
    }

    .cstm-mob-col.popup {
        flex-direction: column !important;
        border: solid 1px #ddd;
        border-radius: 4px;
    }

    .cstm-mob-col.popup.inner {
        flex-direction: row !important;
        border: none !important;
        border-radius: 0px !important;
    }

    .cstm-mob-col.popup.inner>span:nth-child(1) {
        background-color: transparent !important;
        padding: 0px !important;
    }

    .cstm-mob-col.popup.inner>span:nth-child(2) {
        padding: 0px !important;
    }

    .cstm-col-next {
        width: 40%;
        word-break: break-all !important;
        position: relative !important;
        text-align: right;
    }

    .cstm-mob-col.popup>span:nth-child(1) {
        width: 100%;
        margin: 0px;
        padding: 4px;
        background-color: var(--gt-grey);
    }

    .accordion-button.collapsed .tax--summary.cstm {
        width: 100%;
    }

    .cstm-mob-col.popup>span:nth-child(2) {
        width: 100%;
        padding-left: 5px;
        text-align: left !important;
        margin: 0px !important;
        padding: 5px !important;
    }

    .cstm-mob-col.popup #spnBaseFareFareSummary {
        flex-direction: row !important;
        /* gap: 5px; */
        margin-left: 0 !important;
        background-color: var(--gt-grey);
        padding: 5px;
    }

    .area_flex_one.cstm-mob-col.popup #spnBaseFareFareSummary {
        display: flex;
        flex-direction: column;
    }

    .h6.text-black.tax--summary {
        display: flex;
        flex-direction: column;
    }

    .area_flex_one.cstm-mob-col.popup #spnBaseFareFareSummary+span.h6 {
        display: flex;
        flex-direction: column;
        word-break: break-all;
    }

    /* ---------------------------- */
    .vtop .plane {
        align-items: start;
    }

    .vtop .earth-wrapper.cstm {
        align-items: start;
        padding-top: 45px !important;
    }

    #btnReset,
    #btnSubmit,
    .gt-main-btn-WithoutAuth-MFA,
    .main-btn-width-auto {
        padding: 7px 10px;
    }

    .footer_heading_area1 {
        padding-top: 0px !important;
    }

    .footer_link_area {
        padding-bottom: 0px !important;
        padding-top: 0px !important;
    }

    .footer-link-padding {
        padding: 0px 0px !important;
    }

    .ModalCenter {
        display: flex;
        height: 100%;
        width: 100%;
        align-items: center;
        justify-content: center;
        position: absolute;
    }

    .ModalCenter .modal-top {
        top: auto;
    }

    .loader {
        height: 21rem !important;
    }

    .cstm-mob-pagination ul.pagination {
        overflow-y: scroll;
    }

    .cstm-mob-pagination ul.pagination li .page-link span span {
        display: none;
    }

    .cstm-mob-pagination ul.pagination li .page-link {
        padding: 7px 10px;
        font-size: 12px;
        word-break: keep-all;
    }

    .gt-amex-logo {
        top: -5px !important;
    }

    .gt-amex-logo img {
        height: 35px !important;
    }

    .dropdown-menu {
        background: inherit !important;
    }

    .profile-menu .dropdown-menu,
    .flight_Search_boxed .dropdown-menu {
        background: #fff !important;
    }

    .margin-top-45 {
        margin-top: 45px;
    }
    
    #common_banner {
        padding: 0px 0 100px 0 !important;
    }

    .sub-banner {
        padding-top: 50px !important;
        padding-bottom: 40px !important;
    }

    .margin-sm-10 {
        margin-right: 10px;
    }

    .mb-10px {
        margin-bottom: 15px !important;
    }

    .gt-ms-5px {
        margin-left: 5px;
    }

    .seat label {

        width: 35px !important;

    }

    .mobile-toggle-btn .Accordion-toggle-icon .accordion-button::after {
        margin-right: 0px !important;
        margin-left: auto !important;
    }

    .gt-h-530 {
        height: auto !important;
    }

    .policy-in-out {
        top: 40px !important;
    }

    .show-more-amenities-height {
        height: 320px;
        overflow: scroll;
    }

    .sign-up-btn {
        position: absolute !important;
        top: 105px !important;
    }

    #reload_href {
        right: 33% !important;
    }

    .button-plain {
        color: white !important;
        font-size: 12px !important;
    }

    .tabs-btn {
        padding: 2px 10px !important;
    }

    .gt_login_banner2 {
        height: 530px !important;
    }

    .gt-h-400px {
        height: 315px !important;
    }

    .modal-md {
        left: calc(50% - 10rem) !important;
        width: 80% !important;
    }

    .animated-email-div {
        display: none !important;
    }

    .multi_city_flight_lists {
        border-radius: 12px;
    }

    .eemail {
        right: 3px !important;
        padding: 10px 6px 0px 12px !important;
    }

    .ft-style {
        font-size: 20px !important;
        top: -5px !important;
        left: 28px !important;
    }

    .email-cross {
        font-size: 13px !important;
        top: 58 !important;
    }

    .web-status-logout {
        right: 5px !important;
        top: 110px !important;
    }

    .modal-sm {
        max-width: 100% !important;
        left: 10% !important;
    }

    .exclusive-hotel-search {
        padding: 5px 5px 15px 5px !important;
        height: auto !important;
    }

    .booking-check-icon {
        /* right: -2px; */
        left: 65px;
    }

    /* flight mobile responsive */
    .gt-h-255 {
        height: 400px !important;
    }

    .details-flight-img {
        height: 40px !important;
        width: auto !important;
        text-align: center;
        object-fit: contain;
        margin: auto;
    }

    .airline-details .img {
        width: auto !important;
        text-align: center;
        height: 40px !important;
        margin-left: auto;
        object-fit: contain;
        margin-right: auto;
        margin-bottom: 5px;
    }

    .airline-details {
        display: block;
        text-align: center;
    }

    .flight_inner_show_component {
        display: block;
        text-align: center;
        align-items: center;
        position: relative;
    }

    .flight-shoe_dow_item {
        padding-right: 0px !important;
    }

    .flight_inner_show_component .flight_det_wrapper,
    .flight_inner_show_component .flight_duration {
        width: 100%;
        display: block;
    }

    /* ==================================================== */
    .back-btn-sm {
        padding: 7px 10px !important;
    }

    .gt-btn_md {
        padding: 7px 10px !important;
    }

    .text-sm-center1 {
        text-align: center;
    }

    .ml-sm-4 {
        margin-right: 0rem !important;
    }

    .flight_policy_refund {
        padding: 0px 16px;
    }

    .flight_multis_area_wrapper {
        display: inherit;
    }

    .loading {
        display: block !important;
    }

    .hotel-list .hotel-list-cn .hotel-list-item {
        padding: 0px !important;
    }

    .sm-first-col-width .w-15 {
        width: 36% !important;
    }

    .mini-head-logo-bg {
        width: 170px !important;
    }

    .cross-icon-pop-up {
        position: absolute;
        top: 15px;
        right: 10px;
    }

    .hotel-list-item .hotel-img {
        min-width: 100% !important;
    }

    .div-reverse {
        /* display: flex;
        flex-direction: column-reverse; */
    }

    .sub-banner1 {
        padding-bottom: 40px !important;
    }

    .text-center-sm {
        text-align: center;
    }

    .hotel-confirmation-img {
        height: 270px !important;
        margin-bottom: 15px;
    }

    .w-55per {
        width: 100% !important;
    }

    .hotel-detail-name-slider {
        width: 90% !important;
    }

    .hotel-detail-name-slider {
        /* top: -445px !important; */
        top: -500px !important;
    }

    .theme_two_box_img {
        height: 200px !important;
    }

    .images-btnslider {
        bottom: 1% !important;
    }

    .slider-height-230 {
        height: 220px !important;
    }

    .gt-exclusive-text {
        /* top: 165px !important; */
        bottom: 0px;
    }

    .hotel-list-item .hotel-img {
        position: relative;
    }

    .hotel-list-item .hotel-img {
        height: 210px !important;
        min-width: 100%;
    }

    .hotel-list-item .hotel-text {
        padding: 20px 10px 10px 10px !important;
    }

    .hotel-service {
        padding-right: 20px;
    }

    .theme_search_form_area {
        padding: 30px 15px;
    }

    .flight_search_middel {
        padding-right: 0px !important;
    }

    .margin-top-15 {
        margin-top: 15px;
    }

    .margin-top-8 {
        margin-top: 8px;
    }

    .margin-top-45 {
        margin-top: 45px;
    }

    .offer_area_content h2 {
        font-size: 23px;
        padding-bottom: 12px;
        line-height: 25px;
    }

    .imagination_boxed {
        padding-top: 0px;
    }

    .offer_area_box img {
        height: 100%;
    }

    .offer_area_box {
        height: 375px;
        background: #000000a1;
    }

    .offer_area_box .offer_area_content {
        position: absolute;
        left: 0;
        bottom: 0;
        padding: 15px 15px;
        z-index: 0;
    }

    .offer_area_content p {
        padding-bottom: 0px;
        font-size: 16px;
        line-height: 22px;
    }

    .zoom-btn {
        display: none;
    }

    .btn-position-print {
        right: -10px !important;
    }

    .mobile-no-text {
        left: 20%;
    }

    .loginscroll-logo {
        display: none;
    }

    .per-text {
        top: 72px;
    }

    .range_plan i {
        rotate: 90deg;
    }

    .dropdown_passenger_area .dropdown-menu.show {
        transform: translate(-3%, 10px) !important;
    }

    .dropdown_passenger_area .dropdown-menu {
        min-width: 280px;
    }

    .gt-w-75px {
        width: auto !important;
    }

    .email-btn,
    .print-btn {
        top: -30px;
    }

    .departure_city {
        left: 0;
        right: 0;
        top: 30%;
        position: absolute;
        margin: 0 auto;
    }

    .arrival_city {
        font-size: 2.3rem;
        left: 0;
        right: 0;
        top: 23%;
        position: absolute;
        margin: 0 auto;
    }

    .earth {
        width: 140px;
        height: 140px;
    }

    .flight-loader-width {
        height: 360px;
    }

    .flight_Search_boxed {
        padding: 10px 10px 10px 10px;
    }
}

@media only screen and (min-width: 526px) and (max-width: 767px) {

    .margin-sm-10 {
        margin-right: 10px;
    }

    #reload_href {
        right: 42% !important;
    }

    .text-sm-center1 {
        text-align: center;
    }

    .ml-sm-4 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .flight_multis_area_wrapper {
        display: inherit;
    }

    .hotel-detail-name-slider {
        width: 80% !important;
    }

    .flight_search_left {
        text-align: center;
        display: inherit
    }

    .flight_search_destination {
        padding-left: 0px;
        text-align: center;
    }

    .flight_search_destination h6 {
        padding-top: 10px;
        margin: 0 auto;
        padding-bottom: 15px;
    }

    .flight_search_destination {
        padding-left: 0;
    }

    .flight_search_middel {
        display: inherit;
    }

    .gt-w-75px {
        width: auto !important;
    }

    .margin-top-15 {
        margin-top: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .sign-up-btn {
        position: absolute !important;
    }

    #reload_href {
        right: 40% !important;
    }

    .modal-md {
        left: calc(50% - 15rem) !important;
    }

    .hotel-detail-name-slider {
        width: 70% !important;
    }

    .mini-head-logo-bg {
        width: 175px;
    }

    .flight_search_items {
        display: inherit;
    }

    .printModalcard {
        left: calc(40% - 12rem);
    }

    .printModalcard {
        width: 70% !important;
    }

    .width-900px {
        max-width: 540px !important;
    }
}

@media only screen and (min-width: 1401px) and (max-width: 2525px) {
    .modal-md {
        left: calc(50% - 30rem) !important;
    }
    .slider-height-230{
        height: 420px !important;
    }
    .width-900px {
        max-width: 1270px !important;
    }

    .gt-h-340px {
        max-height: 400px !important;
    }

    .gt-h-400px {
        max-height: 470px !important;
    }

    .gt_login_banner {
        height: 90vh !important;
    }

    .gt-h-380px {
        max-height: 455px !important;
    }

    .modal-sm {
        max-width: 400px;
        left: calc(50% - 13rem) !important;
    }
}

.prefer-airline-text-input {
    height: 35px !important;
    font-size: 12px !important;
}

.dropdown-search {
    height: 35px !important;
    font-size: 12px !important;
    line-height: 0.5;
}

.dropdown-search-text .Dropdown-option,
.dropdown-search-text .Dropdown-menu {
    font-size: 12px !important;
}

.text-8px {
    font-size: 10px;
}

.gt-lh-20 {
    line-height: 20px;
}

.gt-region-tree-section {
    height: 250px;
    /* border: 2px solid var(--main-color); */
    overflow-y: auto;
    /* border-radius: 0.25rem; */
    /* position: relative; */
    /* margin-bottom: 20px!important; */
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

#sightseeingIframe {
    height: 3000px;
    width: 102%;
    overflow-y: auto;
    scrollbar-width: thin !important;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

.gt-region-tree-section::-webkit-scrollbar-track,
#sightseeingIframe::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}

.gt-region-tree-section::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG);
    border-radius: 6px;
    border: 3px solid var(--scrollbarBG);
}

.gt-region-tree-section::-webkit-scrollbar,
#sightseeingIframe::-webkit-scrollbar {
    width: 11px !important;
}

.footer-bg-blue {
    background: #ebf2f4 !important;
}

.mt-25per {
    margin-top: 25%;
}

.footer-link-padding {
    padding: 0px 20px;
}

.h-251 {
    height: 275px;
}

.include-exclude-tab {
    border-bottom: 2px solid var(--main-color);
    border-left: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
    border-top: 2px solid var(--main-color);
    padding: 10px;
    border-radius: 0rem 0.25rem 0.25rem 0.25rem;
}


.forgot-pass-bg {
    /* background: radial-gradient(#25b2ff, #39c4f83d); */
}

.gt-return-flight {
    transform: scale(-1, 1);
}

.gt-bt-side {
    background: #35a1d7;
    color: #fff;
    border-radius: 50%;
    padding: 2px 5px;
    box-shadow: 2px 2px 5px #00000024;
    border: 1px solid #0993dd;
}

.gt-h40 {
    height: 40px;
    object-fit: contain;
    /* width: 175px; */
}

.gt-h30 {
    height: 30px;
    object-fit: contain;
    /* width: 175px; */
}

.images-btnslider {
    position: absolute;
    right: 30px;
    bottom: 5%;
    z-index: 1;
}

.card-images-btnslider {
    position: absolute;
    right: 15px;
    top: 180px;
    z-index: 1;
}

.card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 40px;
}

.more-detail-btnslider {
    position: absolute;
    left: 15px;
    top: 180px;
    z-index: 1;
}

.slider-icon-next .slider-hotel-list .carousel-control-next,
.carousel-control-prev {
    opacity: 0.9 !important;

}

.slider-height-230 {
    height: 350px;
    object-fit: contain;
    background: #ececec;
    border-radius: 0.25rem;
}
.history-modal-parent #carouselExampleFade .carousel-control-prev{
    left: 10%;
}
.history-modal-parent #carouselExampleFade .carousel-control-next{
    right: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--main-color);
    border-radius: 0.25rem !important;
}

.gt-h-380px {
    /* max-height: 450px; */
    max-height: 410px;
    overflow: auto;
    overflow-x: hidden;
}

.gt-h-430px {
    max-height: 430px;
    overflow: auto;
    overflow-x: hidden;
}

.gt-w-75px {
    width: 87px;
}

.gt-w-321 {
    width: 324px !important;
}

.booking-hotel-text {
    padding: 40px 20px 10px 25px !important;
}

.gt-h-400px {
    height: auto !important;
    max-height: 350px;
    overflow: auto;
    overflow-x: hidden;
}

.gt-h-375px {
    max-height: 385px;
    overflow: auto;
    overflow-x: hidden;
}

.gt-h-600px {
    max-height: 80vh;
    overflow: auto;
    overflow-x: hidden;
}

.gt-h-340px {
    max-height: 300px;
    overflow: auto;
    overflow-x: hidden;
}

.gt-h-355px {
    height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

.gt-h-355px::-webkit-scrollbar-track,
.gt-h-400px::-webkit-scrollbar-track,
.gt-h-340px::-webkit-scrollbar-track,
.gt-h-380px::-webkit-scrollbar-track,
.gt-h-375px::-webkit-scrollbar-track,
#dvFrom1 .wrapper::-webkit-scrollbar-track,
#dvSource .wrapper::-webkit-scrollbar-track,
#dvDestination .wrapper::-webkit-scrollbar-track,
#dvTo1 .wrapper::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}

.gt-h-355px::-webkit-scrollbar-thumb,
.gt-h-400px::-webkit-scrollbar-thumb,
.gt-h-340px::-webkit-scrollbar-thumb,
.gt-h-380px::-webkit-scrollbar-thumb,
.gt-h-375px::-webkit-scrollbar-thumb,
#dvFrom1 .wrapper::-webkit-scrollbar-thumb,
#dvSource .wrapper::-webkit-scrollbar-thumb,
#dvDestination .wrapper::-webkit-scrollbar-thumb,
#dvTo1 .wrapper::-webkit-scrollbar-thumb,
#sightseeingIframe::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG);
    border-radius: 10px;
    border: 3px solid var(--scrollbarBG);
}

.gt-h-355px::-webkit-scrollbar,
.gt-h-400px::-webkit-scrollbar,
.gt-h-340px::-webkit-scrollbar,
.gt-h-380px::-webkit-scrollbar,
.gt-h-375px::-webkit-scrollbar,
#dvFrom1 .wrapper::-webkit-scrollbar,
#dvSource .wrapper::-webkit-scrollbar,
#dvDestination .wrapper::-webkit-scrollbar,
#dvTo1 .wrapper::-webkit-scrollbar,
#sightseeingIframe::-webkit-scrollbar {
    width: 8px;
}


/* *****view seats********** */
.plane-text {
    position: absolute;
    top: 60px;
    left: 55px;
}

.plane-seats {
    margin: 20px auto;
    max-width: 300px;
}

.plane-seats-readonly {
    pointer-events: none;
    opacity: 0.8;
}

.cockpit {
    height: 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 5px solid #d8d8d8;
}

.cockpit:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 245px;
    width: 100%;
    border-radius: 50%;
    border-right: 5px solid #d8d8d8;
    border-left: 5px solid #d8d8d8;
    border-top: 5px solid #d8d8d8;
}

.cockpit h1 {
    width: 60%;
    margin: 100px auto 35px auto;
}

.exit {
    position: relative;
    height: 35px;
}

.exit:before,
.exit:after {
    content: "EXIT";
    font-size: 14px;
    line-height: 18px;
    padding: 0px 2px;
    font-family: "Arial Narrow", Arial, sans-serif;
    display: block;
    position: absolute;
    background: green;
    color: white;
    margin: 3px 0px;
    top: 50%;
    transform: translate(0, -50%);
}

.exit:before {
    left: 0;
}

.exit:after {
    right: 0;
}

.fuselage {
    border-right: 5px solid #d8d8d8;
    border-left: 5px solid #d8d8d8;
}

ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seats {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.seat {
    display: flex;
    flex: 0 0 14.2857142857%;
    padding: 5px;
    position: relative;
}

/* .seat:nth-child(3) {
    margin-right: 14.2857142857%;
} */

.seat-column-gap {
    margin-right: 14.2857142857%;
}

.seat input[type=checkbox] {
    position: absolute;
    opacity: 0;
}

.seat input[type=checkbox]:checked+label {
    background: var(--main-yellow);
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
    animation-duration: 300ms;
    animation-fill-mode: both;
}

.seat input[type=checkbox]:disabled+label {
    background: #dddddd;
    text-indent: -9999px;
    overflow: hidden;
}

.seat input[type=checkbox]:disabled+label:after {
    content: "X";
    text-indent: 0;
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.seat input[type=checkbox]:disabled+label:hover {
    box-shadow: none;
    cursor: not-allowed;
}

.seat label {
    display: block;
    position: relative;
    width: 100%;
    /* width: 35px; */
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5rem;
    padding: 4px 0;
    /* background: var(--text-blue-color); */
    color: #fff;
    border-radius: 3px;
    animation-duration: 300ms;
    animation-fill-mode: both;
}

.seat-limit-charge-bg {
    background: #e87b7b !important;
}

.seat label:before {
    content: "";
    position: absolute;
    width: 75%;
    height: 75%;
    top: 1px;
    left: 50%;
    transform: translate(-50%, 0%);
    /* background: rgba(255, 255, 255, 0.4); */
    border-radius: 3px;
}

.seat label:hover {
    cursor: pointer;
    box-shadow: 0 0 0px 2px #2196f3;
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

#dvFrom1 .wrapper ul,
#dvSource .wrapper,
#dvDestination .wrapper {
    max-height: 230px;
    overflow-y: auto;
    /* width: 285px; */
    border-radius: 0px;
    background: #f7f9fe;
    /* z-index: 3; */
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

#dvFrom2 .wrapper {
    max-height: 230px;
    overflow-y: auto;
    border-radius: 0px;
    z-index: 3;
}

#dvFrom3 .wrapper {
    max-height: 230px;
    overflow-y: auto;
    border-radius: 0px;
    z-index: 3;
}

#dvFrom4 .wrapper {
    max-height: 230px;
    overflow-y: auto;
    border-radius: 0px;
    z-index: 3;
}

#dvFrom5 .wrapper {
    max-height: 230px;
    overflow-y: auto;
    border-radius: 0px;
    z-index: 3;
}

#dvTo1 .wrapper ul {
    max-height: 230px;
    overflow-y: auto;
    border-radius: 0px;
    background: #f7f9fe;
    z-index: 3;
}

#dvTo2 .wrapper {
    max-height: 230px;
    overflow-y: auto;
    border-radius: 0px;
    z-index: 3;
}

#dvTo3 .wrapper {
    max-height: 230px;
    overflow-y: auto;
    border-radius: 0px;
    z-index: 3;
}

#dvTo4 .wrapper {
    max-height: 230px;
    overflow-y: auto;
    border-radius: 0px;
    z-index: 3;
}

#dvTo5 .wrapper {
    max-height: 230px;
    overflow-y: auto;
    border-radius: 0px;
    z-index: 3;
}

#dvPreferredAirline1 .wrapper {
    max-height: 230px;
    overflow-y: auto;
    border-radius: 0px;
    z-index: 3;
}

#dvPreferredAirline2 .wrapper {
    max-height: 230px;
    overflow-y: auto;
    border-radius: 0px;
    z-index: 3;
}

#dvPreferredAirline3 .wrapper {
    max-height: 230px;
    overflow-y: auto;
    border-radius: 0px;
    z-index: 3;
}

.flight-details .arrow_right {
    margin: 4px 1rem 0px;
    background-image: url(../img/icon/plane-right-blue.png);
    background-repeat: no-repeat;
    background-position: 50% center;
    text-align: center;
    min-height: 24px;
    min-width: 24px;
    background-size: 24px;
}

.border-right-dotted {
    border-right: 1px solid #349fd5;
    border-right-style: dashed;
}

.border-not {
    border: none !important;
}

.fare-toggle-btn .accordion-button {
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
    line-height: 20px;
}

.fare-summary .accordion-button::before {
    /* background-image: none!important;
    content:"+"; */
    transform: rotate(-180deg) !important;
    background: #e1f0f9c4;
    padding: 2px 3px;
    width: 18px;
    position: absolute;
    line-height: 15px;
    height: 18px;
    border-radius: 50%;
    box-shadow: -1px -1px 2px #00000052;
}

.fare-summary .accordion-button::after {
    background-image: none !important;
    content: "+";
    background: #e1f0f9 !important;
    transform: rotate(-180deg) !important;
    padding: 2px 3px;
    width: 18px;
    position: absolute;
    line-height: 15px;
    height: 18px;
    border-radius: 50%;
    box-shadow: -1px -1px 2px #00000052;
    mask-image: none !important;
}

.fare-summary .accordion-button:not(.collapsed)::after {
    background-image: none !important;
    content: "-";
    padding: 2px 4px;
}

.right-0 {
    right: 0px;
}

.bottom-0 {
    bottom: 0px;
}

.top-0 {
    top: 0px !important;
}

/* .flight-loaders .earth-wrapper{
    padding-top: 0.7rem;
}
.flight-loaders .earth {
    margin: 25px auto;
} */
.dropdown-search-text .css-13cymwt-control {
    min-height: 30px !important;
}

.dropdown-search-text .css-1fdsijx-ValueContainer,
.dropdown-search-text .css-hlgwow {
    font-size: 16px;
    height: 35px;
    font-weight: 400 !important;
}

.dropdown-search-text .css-16xfy0z-control {
    min-height: 38px !important;
    height: 38px !important;
}

.rmdp-header {
    line-height: 12px !important;
}

.dropdown-search-text .css-qbdosj-Input {
    /* grid-area: 3/1/1/3!important; */
}

.css-qbdosj-Input {
    margin: -2px !important;
}

.dropdown-search-text .css-qbdosj-Input,
.dropdown-search-text .css-19bb58m {
    /* line-height: 14px !important; */
    font-size: 16px !important;
}

.css-19bb58m {
    margin: -4px !important;
}

.dropdown-search-text .css-1nmdiq5-menu {
    font-size: 16px;
    font-weight: 400 !important;
}

.css-1n6sfyn-MenuList {
    max-height: 250px !important;
}

.padding-20-15 {
    /* padding: 20px 15px !important; */
    padding: 17px 15px !important;
}

.search-input-tour .eWFcRu {
    margin: 0 0 0 5px !important;
}

.search-input-tour .cmyNjn>.wrapper:hover,
.padding-20-15 .cmyNjn>.wrapper:focus-within,
.search-input-tour .gyFedp>.wrapper:hover,
.padding-20-15 .gyFedp>.wrapper:focus-within {
    box-shadow: rgb(32 33 36 / 0%) 0px 1px 6px 0px !important;
}

.search-input-tour .cmyNjn>.wrapper,
.padding-20-15 .cmyNjn>.wrapper,
.search-input-tour .gyFedp>.wrapper,
.padding-20-15 .gyFedp>.wrapper {
    box-shadow: rgb(32 33 36 / 0%) 0px 1px 6px 0px !important;
    border-radius: 0.25rem !important;
}

.padding-20-15 .eWFcRu {
    margin: 0 0 0 5px !important;
}

.padding-20-15 .cmyNjn>.wrapper,
.padding-20-15 .gyFedp>.wrapper {
    /* background: #daeff8!important; */
    border-bottom: 1px solid #39c3f7 !important;
    border-top: 1px solid transparent !important;
    border-left: 1px solid transparent !important;
    border-right: 1px solid transparent !important;
    z-index: 1;
    /* border-radius: 0.25rem!important; */
}

.search-input-tour .fDbOPw {
    min-height: 33px !important;
    border: 2px solid var(--main-yellow)
}

#dvPreferredAirline1,
#dvPreferredAirline2,
#dvPreferredAirline3 {
    margin-top: 5px !important;
}

.padding-20-15 .hCpHso .selected {
    background-color: #daeff8;
}

.input-range__slider {
    background: var(--main-color) !important;
    border: 1px solid var(--main-color) !important;
}

.input-range__track--active {
    background: var(--main-color) !important;
    /* height: 50%!important;
    top: 44%!important; */
}

.input-range,
#sliderOutboundDuration,
#sliderInboundDuration {
    margin-bottom: 10px;
}

.range-slider .range-slider__thumb {
    height: 1rem !important;
    width: 1rem !important;
    background: var(--main-color) !important;
}

.range-slider {
    height: 5px !important;
}

#maxPerPersonPrice,
#maxOutboundLandingTime,
#maxOutboundTakeOffTime,
#maxOutboundLandingTime,
#maxOutboundDuration,
#maxInboundLandingTime,
#maxInboundTakeOffTime,
#maxInboundLandingTime,
#maxInboundDuration,
#maxRoomPrice,
#maxCarPrice {
    float: right;
}

.details-flight-img {
    height: 35px;
    width: 35px;
    object-fit: contain;
}

.range-slider .range-slider__range {
    background: var(--main-color) !important;
}

.flight-loader-width {
    max-width: 33rem !important;
}

.flight-loader2 {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: #000000;
}

.flight-loader2:before,
.flight-loader2:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin5 linear infinite;
}

.flight-loader2:after {
    color: var(--main-color);
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes spin5 {

    0%,
    100% {
        box-shadow: .2em 0px 0 0px currentcolor;
    }

    12% {
        box-shadow: .2em .2em 0 0 currentcolor;
    }

    25% {
        box-shadow: 0 .2em 0 0px currentcolor;
    }

    37% {
        box-shadow: -.2em .2em 0 0 currentcolor;
    }

    50% {
        box-shadow: -.2em 0 0 0 currentcolor;
    }

    62% {
        box-shadow: -.2em -.2em 0 0 currentcolor;
    }

    75% {
        box-shadow: 0px -.2em 0 0 currentcolor;
    }

    87% {
        box-shadow: .2em -.2em 0 0 currentcolor;
    }
}

.hCpHso>ul>li>div {
    margin-left: 7px !important;
}

.fDbOPw>input {
    padding: 0px 0px 0px 6px !important;
}

.lmCTmJ>input {
    padding: 0px 0px 0px 6px !important;
}

.input-spineer-from {
    position: absolute;
    top: 40px;
    z-index: 6;
    width: 100%;
    left: 200px;
    color: var(--bg-navy);
}

.input-spineer-to {
    position: absolute;
    top: 60px;
    z-index: 6;
    width: 100%;
    left: 220px;
    color: var(--bg-navy);
}

.gt-120 {
    width: 120px;
}

.rmdp-ep-arrow {
    left: 12px !important;
}

.w-15 {
    width: 15% !important;
}

.rmdp-container {
    z-index: 9999999 !important;
}

.dropdown-mt-5px .css-b62m3t-container {
    margin-top: 2px;
}

.input-text-height .form-control {
    height: 45px !important;
}

.booking-check-icon {
    right: 10px;
    top: -10px;
    font-size: 20px;
}


.print-d-none {
    display: none;
}

.search-flight-checkbox .form-check {
    min-height: 0.5rem;
    margin-bottom: 0px;
}

.gt-seat-overflow {
    height: 345px;
    overflow-x: auto;
    overflow-y: auto;
}

/* override styles when printing */
@media print {
    .text-right-print {
        text-align: right;
    }

    .table thead tr th {
        /* background: #0099cc; */
        color: #fff !important;
        font-weight: 600 !important;
        vertical-align: top;
    }

    .gt-time-btn-flight {
        /* background: #0099cc; */
        color: #504949 !important;
    }

    .print-mt-15 {
        margin-top: 15px;
    }

    .print-mt-10 {
        margin-top: 10px;
    }

    .gt-test {
        break-inside: avoid;
    }

    .flight_mytrip_items {
        display: block !important;
    }

    .break__inside {
        break-inside: auto;
    }

    .gt-border-bottom {
        border-bottom: 1px solid var(--main-color) !important;
    }

    /* .flight_search_destination h3{
        height: auto;
    } */
    .tckt__number {
        width: 150px;
    }

    .print_y_space {
        height: 10px;
        width: 100%;
        display: block;
        clear: both;
    }

    .printContentBox {
        break-inside: avoid;
        display: inline-block;
        width: 100%;
        page-break-inside: avoid;
    }

    .printBreak {
        page-break-after: always;
        display: inline-block;
        page-break-inside: auto;
        overflow: auto;
    }

    .hotel-list.print {
        display: inline-block;
    }

    .hotel-list.print .hotel-confirmation-img {
        width: 48%;
        display: inline-block;
    }

    .hotel-list.print .hotel-confirmation-img:nth-child(2) {
        margin-left: 25px;
    }

    .theme_search_form_area {
        border-top: none !important;
        /* border-radius: 0; */
        box-shadow: none;
    }

}

.fare-summry-fs-12px .accordion-button {
    font-size: 12px;
}

.fare-summary-pop .accordion-button::after {
    background-image: none !important;
    content: "+";
    background: #e1f0f9;
    transform: rotate(-180deg) !important;
    padding: 2px 4px;
    width: 18px;
    position: absolute;
    line-height: 15px;
    height: 18px;
    border-radius: 50%;
    box-shadow: -1px -1px 2px #00000052;
}

.fare-summary-pop .accordion-button:not(.collapsed)::after {
    background-image: none !important;
    content: "-";
    padding: 2px 4px;
    mask-image: none;
    color: #000;
}

.perk-border {
    /* border: 2px solid #3892ff; */
}

.gt-seat-map-occupied input[type=checkbox]:disabled+label {
    background: #bbbbbb !important;
}

.seat.gt-seat-map-unavailableblock input[type=checkbox]:disabled+label:after {
    content: "";
    text-indent: 0;
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.seat.gt-seat-map-unavailableblock input[type=checkbox]:disabled+label {
    background: #dddddd;
    text-indent: 0px;
    overflow: hidden;
    color: #8b8080;
}

.seat.gt-seat-map-unavailablelavatory input[type=checkbox]:disabled+label:after {
    content: "";
    text-indent: 0;
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.seat.gt-seat-map-unavailablelavatory input[type=checkbox]:disabled+label {
    background: transparent;
    color: #524c89;
    text-indent: 0px;
    overflow: hidden;
    font-size: 18px;
}

.text-light-grey {
    color: var(--light-grey);
}

.plus-icon-hide .accordion-button::after {
    display: none;
}

.text-light-red {
    color: var(--light-red);
}

.Accordion-toggle-icon .accordion-button::after {
    margin-left: 20px !important;
}

.trophy-icon {
    font-size: 20px;
    line-height: 35px !important;
}

.gt-word-break {
    word-break: break-all;
}

.bg-navy-primary {
    background: #303F9F !important;
}

.padding-2y {
    padding: 11px 15px;
}

.fw-500 {
    font-weight: 500;
}

.cursor-pointer {
    cursor: pointer !important;
}

.arrival_city {
    display: none;
}

.modal-top-align {
    top: 14vh !important;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    background: var(--main-color) !important;
    color: #fff !important;
}

.page-item:not(:first-child) .page-link {
    margin-left: 4px !important;
}

.bg-main-color {
    background: var(--main-color) !important;
}

.page-item.active .page-link {
    background-color: var(--main-color) !important;
    border-color: var(--text-box-bg-skyblue) !important;
}

.gt-switch-btn {
    height: 19px;
}

.gt-h-240 {
    height: 240px;
}

.text-overflow-manage {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.hotel-confirmation-img {
    height: 300px;
    /* width: 100%; */
}

.hotel-confirmation-single-img {
    height: 400px;
    width: 100%;
}

.hotel-confirmation-img img,
.hotel-confirmation-single-img img {
    object-fit: fill;
    width: 100%;
    height: 100%;
}

.fare-details-dropdown-loader {
    position: absolute;
    left: 50%;
    top: 20px;
    z-index: 1;
}

.gt-mh-150px {
    min-height: 500px;
}

.gt-mh-257px {
    min-height: 320px;
}

.gm-control-active {
    background: var(--main-yellow) !important;
}

/* .t   able-head-bg */
.table thead tr {
    background: var(--btn-bg-color) !important;
    color: #fff !important;
    font-weight: 400 !important;
}

.table-body-bg-row {
    background: var(--text-box-bg-skyblue) !important;
}

.rotate-90 {
    transform: rotate(-90deg);
}

.flight-shoe_dow_item {
    padding-right: 10px;
}

.last-table-title table tr:last-child {
    font-weight: bold;
}

.policy-text ol {
    /* list-style: number; */
    list-style: decimal;
    padding-left: 25px;
}

.policy-text ol li {
    margin-bottom: 10px;
}

.table-layout-design {
    margin-left: auto;
    margin-right: auto;
    /* font-size: 20px;
        height: 100%; */
    /* table-layout: fixed; */
    width: 100%;
}

.select2-results ul::-webkit-scrollbar,
.table-wrapper::-webkit-scrollbar,
.custom-scroll::-webkit-scrollbar,
.select2::-webkit-scrollbar,
.gt-seat-overflow::-webkit-scrollbar {
    height: 10px;
    width: 8px;
    background-color: #cacaca;
    border-radius: 5px;
}

.table-wrapper::-webkit-scrollbar-corner,
.custom-scroll::-webkit-scrollbar-corner,
.select2::-webkit-scrollbar-corner,
.gt-seat-overflow::-webkit-scrollbar-corner {
    background: #cccccc;
    border-radius: 5px;
}

.table-wrapper::-webkit-scrollbar-thumb,
.custom-scroll::-webkit-scrollbar-thumb,
.select2::-webkit-scrollbar-thumb,
.gt-seat-overflow::-webkit-scrollbar-thumb {
    background: #606060;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover,
.custom-scroll::-webkit-scrollbar-thumb:hover,
.select2::-webkit-scrollbar-thumb:hover,
.gt-seat-overflow::-webkit-scrollbar-thumb:hover {
    background: #868686;
    border-radius: 5px;
}

.table-wrapper::-webkit-scrollbar-track,
.custom-scroll::-webkit-scrollbar-track,
.select2::-webkit-scrollbar-track,
.gt-seat-overflow::-webkit-scrollbar-track {
    border: 1px solid #cccccc;
    background-color: #cccccc;
    border-radius: 5px;
}

.table-wrapper,
.custom-scroll,
.select2 {
    scrollbar-width: thin;
    border-radius: 5px;
}

/* // scoller table */
.table-wrapper {
    /* // max-height: calc(100vh - 250px); */
    /* max-height: 504px; */
    width: 100%;
    /* overflow-y: auto; */
    border-radius: 0;
    margin-bottom: 10px;
}

.table-wrapper .table {
    margin: 0 !important;
}

.table-wrapper .table .bg-primary {
    background-color: #ffffff !important;
}

.table-wrapper .table thead,
#organization-table thead th {
    background-color: #ffffff;
}

.table-wrapper .table thead {
    /* position: -webkit-sticky !impor tant; */
    /* position: sticky !important; */
    top: -1px;
    z-index: 9;
    font-weight: normal;
    white-space: nowrap;

}

.min-width-75 {
    min-width: 68px;
}

.min-width-185 {
    min-width: 185px;
}

.min-width-205 {
    min-width: 205px;
}

.max-width-185 {
    max-width: 185px;
}

.min-width-165 {
    min-width: 165px;
}

.min-width-210 {
    min-width: 210px;
}

.line-height-22px {
    line-height: 22px !important;
}

.width-900px {
    max-width: 970px;
}

.textBox {
    border: 2px solid #0000008c;
    background: #020f3b;
    height: 375px;
    border-radius: 0.25rem;
    overflow-y: auto;
    color: #e5e2e2f5;
    padding: 10px;
    /* font-family:"Calibri", sans-serif!important; */
    font-family: Arial, sans-serif !important;
    font-weight: 300;
    word-spacing: 5px;
    font-size: 17px;
    font-stretch: semi-condensed;
}

.btn-position-print {
    position: absolute;
    right: 0px;
    top: -8px;
}

.min-width-125 {
    min-width: 120px;
}

.head-contact-us {
    height: 47px;
    width: 250px;
}

.head-contact-us1 {
    height: 47px;
    /* width: 250px; */
    background: var(--support-head-bg);
    border-radius: 35px;
    padding: 3px 15px;
}

.head-contact-support-text {
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 230px;
    white-space: nowrap;
    color: var(--text-white);
}

.head-contact-us1 .email-icon {
    border: 1px solid var(--text-support);
    color: var(--text-support);
    padding: 3px 6px;
    border-radius: 50%;
    margin-right: 3px;
}

.text-support {
    color: var(--text-support);
}

.zoom-btn {
    /* background: transparent; */
    color: #fff;
    /* border: 0px; */
    border: 1px solid #fff;
    margin: 0px 2px;
    background: var(--btn-bg-color);
    border-radius: 0.25rem;
}

.w-78 {
    flex: 0 0 auto;
    width: 78%;
}

.w-22 {
    flex: 0 0 auto;
    width: 22%;
}

.gt-custom-btn-sky-blue {
    background: #3ac9fd;
    color: #fff;
    /* --btn-bg-color: radial-gradient(circle at 4% 2%, #328fc7 0%, rgba(87, 29, 127, 0) 97%), #3ac9fd; */
}

.text-purple {
    color: #bd008c;
}

.text-light-green {
    color: #5ae35a;
}

.text-pink {
    color: #f65b76;
}

.gt-exclusive-text {
    position: absolute;
    left: 0px;
    /* top: 235px; */
    bottom: 0px;
    margin: 10px;
    font-size: 16px;
}

/* .w-55per {
    width: 55%;
} */
.gt-filter-btn-padding {
    padding: 13px 18px;
}

.privillege-icons {
    font-size: 35px;
    text-align: center;
    background: var(--main-yellow);
    /* background: var(--btn-bg-color); */
    /* background: -webkit-linear-gradient(#bfa059, #5ab8f0); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privillege-icons-box {
    background: var(--bg-navy);
    /* background: #57b0e938; */
    /* background: var(--btn-bg-color); */
    border-radius: 0.25rem;
    padding: 15px;
    border: 1px solid #5cbdf5;
    margin-bottom: 10px;
}

.search-input-hotel {
    height: 40px !important;
    margin-top: 2px;
}

.modal-header {
    background: var(--btn-bg-color);
}

.modal-top-new {
    top: 10vh !important;
}

.text-18px {
    font-size: 18px;
}

.tooltip {
    text-align: left !important;
}

/* .tool-tip-alignment .tooltip {
    text-align: left!important;
} */

/* .ml-sm-4{
    margin-left: 1.5rem;
} */
.green-check-opacity .form-check-input:disabled~.form-check-label,
.form-check-input[disabled]~.form-check-label {
    opacity: 1 !important;
}

/* Changes for date range picker start */
.show-calendar {
    z-index: 1 !important;
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    font-size: 14px !important;

}

.daterangepicker .calendar-table th {
    color: var(--main-color) !important;
}

.daterangepicker .drp-calendar {
    max-width: 300px !important;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background: var(--btn-bg-color) !important;
}

.daterangepicker td.start-date {
    border-radius: 10px 0 0 10px !important;
}

.daterangepicker td.end-date {
    border-radius: 0px 10px 10px 0px !important;
}

.daterangepicker td.start-date.end-date {
    border-radius: 15px !important;
}

.daterangepicker {
    font-family: var(--main-font-family) !important;
}

.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
    background: #FFF !important;
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    height: 34px !important;
    width: 34px !important;
}

.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
    font-size: 14px !important;
}

/* .daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
    border: solid var(--main-color) !important;
} */

/* Changes for date range picker end. */
.btn-danger:hover,
.btn-primary:hover {
    color: #fff !important;
}

.full-page-loader {
    position: fixed;
    z-index: 999999;
    background-color: var(--white-color);
    width: 100%;
    height: 100%;
    text-align: center;
    left: 0;
    right: 0;
    top: 0px;
}

.fancybox-container {
    z-index: 99999 !important;
}

.fancybox-caption-wrap,
.fancybox-infobar,
.fancybox-toolbar {
    visibility: visible !important;
    opacity: 1 !important;
}

.fancybox-button--share {
    display: none !important;
}

.signin-log .form-control {
    border: 2px solid var(--main-color) !important;
}

.gt-transperant-bg {
    background-color: transparent !important;
}

.recomendation-flight-icon {
    /* margin: 4px 1rem 0px; */
    background-image: url(../img/icon/plane-right-blue.png);
    background-repeat: no-repeat;
    background-position: 50% center;
    text-align: center;
    min-height: 18px;
    min-width: 24px;
    background-size: 24px;
}

.class-navy-blue-bg {
    background-color: #020f3b;
}

.class-purple-bg {
    background: #590248;
}

.class-orange-bg {
    background: #c47400;
}

.hCpHso .ellipsis {
    color: hsl(0, 0%, 20%) !important;
}

.cmyNjn>.wrapper {
    font-family: var(--main-font-family) !important;
}

.gt-login-banner-div .input-group-text {
    border: 2px solid var(--main-color);
}

.h-90px {
    height: 90px;
}

.w-50px {
    width: 50px;
}

.gt-change-pass .input-group-text {
    border: 2px solid var(--main-color);
}

.gt-change-pass .h-50px {
    height: 50px;
}

.sticky-col {
    position: -webkit-sticky;
    position: sticky;
    /* background: #fff !important; */
}

.last-col {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    right: 0px;
}

/*   
  .second-last-col {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    right: 100px; */
/* } */
.wrapper {
    position: relative;
    white-space: nowrap;
}

.table-static-bg {
    background: var(--btn-bg-color) !important
}

.exclusive-hotel-search {
    border: 1px solid #3396ce;
    /* padding: 0px 3px 3px 5px; */
    border-radius: 5px;
    padding: 0px 5px;
    height: 25px;
}

.web-status-logout {
    position: absolute;
    right: 20px;
    top: 30px;
    z-index: 1;
}

.css-3w2yfm-ValueContainer {
    max-height: 120px !important;
    overflow-y: auto !important;
}

.bg-orange {
    background: #ff6a00;
}

.mt-12px {
    margin-top: 12px;
}

.add-to-proposal>input[type=checkbox]:checked .flight_search_item_wrappper {
    border: 2px solid var(--bg-navy);
    border-radius: 12px;
}

.add-to-proposal .form-check-input {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0em;
}


.email-pro button span {
    max-width: 0;
    -webkit-transition: max-width 1s;
    transition: max-width 1s;
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    overflow: hidden;
}

.eemail {
    color: #fff;
    padding: 16px 11px 8px 12px;
    background: var(--btn-bg-color);
    position: Fixed;
    top: 45%;
    border: 1px solid #fff;
    box-shadow: -2px 4px 10px #00000087;
    right: 0px;
    border-radius: 0.25rem;
    z-index: 1;

    /* animation-name: pulse;
          animation-duration: 1.5s;
          animation-timing-function: ease-out;
          animation-iteration-count: infinite; */
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 193, 247, 0.651);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(2, 168, 233, 0.425);
    }

    100% {
        box-shadow: 0 0 0 18px rgba(2, 121, 151, 0);
    }
}

.email-pro button span {
    padding: 7px 4px;
}

.email-pro button:hover span {
    max-width: 12rem;
    padding: 7px 4px;
}

.ft-style {
    font-style: normal;
    margin: auto 3px;
    top: 4px;
    color: #000;
    position: absolute;
    /* width: 26px; */
    /* left: 35px; */
    font-size: 24px;
    padding: 5px 8px;
    left: 33px;
    font-weight: 600;
}

.email-cross {
    position: fixed;
    right: 0px;
    top: 60%;
    color: #fff;
    background: red;
    font-size: 16px;
    padding: 2px 6px;
    z-index: 1;
    border: 1px solid #fff;
    box-shadow: -2px 4px 10px #00000087;
    border-radius: 0.25rem;
    color: #fff;
    border: 1px solid red;
}

.whatappicon {
    position: fixed;
    top: 75%;
    right: 5px;
    font-size: 60px;
    z-index: 1;
    cursor: pointer;
}

.whatappiconOuter {
    position: absolute;
    top: 0;
    right: 5px;

}

.bubble-button,
.bubble-button-main-button,
.bubble-tooltip-text,
.woot--close {
    background: var(--btn-bg-color) !important;
}

.text-light-green {
    color: #5ddb1e !important;
}

.popuptextBox {
    border: 2px solid #0000008c;
    background: #020f3b;
    border-radius: 0.25rem;
    overflow-y: auto;
    color: #e5e2e2f5;
    padding: 10px;
    font-weight: 300;
    word-spacing: 5px;
    font-size: 17px;
    font-stretch: semi-condensed;
}

.animated-email-div {
    /* display: none; */
    position: absolute;
    bottom: -100px;
    left: 4px;
    z-index: 2;
}

.email-floating {
    background: var(--btn-bg-color);
    border-radius: 0.25rem;
    line-height: 45px !important;
    width: 45px;
    height: 40px;
    margin-left: 10px;
    box-shadow: 1px 0px 11px #38c1f5;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.arrow-1 {
    width: 100px;
    height: 30px;
    display: flex;
    color: var(--main-color);
}

.arrow-1:before {
    content: "";
    background: currentColor;
    width: 15px;
    clip-path: polygon(0 10px, calc(100% - 15px) 10px, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, calc(100% - 15px) calc(100% - 10px), 0 calc(100% - 10px));
    animation: a1 1.5s infinite linear;
}

@keyframes a1 {

    90%,
    100% {
        flex-grow: 1
    }
}

.modal-md {
    width: 60%;
    left: calc(50% - 25rem);
    position: fixed;
    z-index: 99999;
    overflow: hidden;
}

.import-servicefee {
    font-size: 18px;
}

.hotelNamedropdownHeight .fDbOPw,
.hotelNamedropdownHeight .fDbOPw .wrapper .lmCTmJ,
.hotelNamedropdownHeight .gyFedp .wrapper .lmCTmJ,
#dvFrom .gyFedp .wrapper .lmCTmJ,
#dvTo .gyFedp .wrapper .lmCTmJ,
.hotelNamedropdownHeight .cmyNjn .wrapper .fDbOPw {
    min-height: 38px !important;
}

.hotelNamedropdownHeight .sc-gswNZR .wrapper,
.hotelNamedropdownHeight .gyFedp .wrapper {
    overflow-y: auto;
}

.gt-seat-map-charge-limit-off {
    background: #bbbbbb !important;
}

.dropdown-overflow .sc-gswNZR {
    overflow: auto;
}

.destination__3ev1 {
    font-family: var(--main-font-family) !important;
}

.print-view-disable-icon .fare-summary-pop .accordion-button::after {
    display: none !important;
}

@-moz-document url-prefix() {

    /* for mozila/firefox only */
    #sightseeingIframe {
        width: 101% !important;
    }

    .gt-h-430px {
        max-height: 415px !important;
    }
}

@media print {

    @-moz-document url-prefix() {
        .mz-mt-50 {
            margin-top: 100px;
            padding-top: 20px;
        }

        .mz-mb-50 {
            table-layout: fixed;
            width: 100%;
            height: 100%;
            margin-bottom: 200px;
        }

    }

}

.h-280px {
    height: 250px;
}

/*==========================
 homepage eight
======================== */
/* banner area eight */

#home_eight_banner {
    background-image: url("../img/home-eight/common/banner-bg-8.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
}

.banner_eight_text {
    text-align: center;
}

.banner_eight_text p {
    color: var(--black-color);
    width: 70%;
    margin: auto;
}

.banner_eight_text h1 {
    padding-top: 70px;
    font-size: 64px;
    font-weight: 500;
    line-height: 82px;
    padding-bottom: 16px;
}

/* theme form area */
#theme_search_form_eight {
    margin-top: -40px;
    z-index: 9;
}

/* home eight card area */
.home_eight_card {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: var(--transition);
    height: 250px;
    border-radius: 12px;
}

.card_one {
    background-image: url("../img/home-eight/card/card-1.png");
}

.card_two {
    background-image: url("../img/home-eight/card/card-2.png");
}

.card_three {
    background-image: url("../img/home-eight/card/card-3.png");
}

.home_eight_card_text {
    padding: 60px 0px 60px 30px;
    width: 50%;
}

.home_eight_card:hover {
    transform: translateY(10px);
}

.home_eight_card a {
    color: var(--white-color);
}

.home_eight_card_text p {
    color: var(--white-color);
}

.home_eight_card_text h2 {
    padding: 6px 0;
}

/* popular destination area */
#popular_destination_eight {
    background-image: url("../img/home-eight/common/popular-de-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section_heading_eight {
    padding-bottom: 30px;
}

.section_heading_eight h5 {
    color: var(--main-color);
    padding-bottom: 16px;
}

.section_heading_eight h2 {
    position: relative;
    padding-bottom: 10px;
}

.section_heading_eight h2::after {
    position: absolute;
    content: " ";
    /* background-color: var(--main-color); */
    height: 2px;
    width: 80px;
    bottom: 0;
    left: 0;
}

.common_card_eight {
    background: #FFFFFF;
    border: 1px solid rgba(221, 221, 221, 0.5);
    border-radius: 20px;
    overflow: hidden;
}

.common_card_eight_img {
    overflow: hidden;
    /* height: 230px; */
    height: 280px;
}

.common_card_eight_img a img {
    width: 100%;
    transition: var(--transition);
}

.common_card_eight:hover .common_card_eight_img a img {
    transform: scale(1.1);
}

.common_card_eight_text {
    padding: 20px 10px;
    position: relative;
}

.common_card_eight_list li {
    display: inline-flex;
    font-size: 12px;
    font-weight: 400;
    color: #727178;
    align-items: center;
}

.common_card_eight_list li i {
    font-size: 7px;
    color: #DDDDDD;
    padding-left: 7px;
    padding-right: 5px;
}

.common_card_eight_text h3 {
    padding-top: 5px;
}

.common_card_eight_text h3 a {
    font-size: 20px;
    color: var(--black-color);
    font-weight: 400;
}

.common_card_eight:hover .common_card_eight_text h3 a {
    color: var(--main-color);
}

.common_card_eight_text p {
    font-size: 14px;
    padding-top: 5px;
}

.common_card_eight_text p i {
    font-size: 14px;
    padding-right: 5px;
}

.common_card_eight_bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 12px;
}

.common_card_eight_bottom_left p {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 500;
}

.common_card_eight_bottom_left h6 {
    color: #727178;
    font-size: 12px;
    padding-top: 3px;
}

.common_card_eight_bottom_right h4 sub {
    font-size: 12px;
}

/* amazing place area */


.amazing_place_boxed {
    margin-bottom: 30px;
    border-radius: 17px;
    overflow: hidden;
    position: relative;
}

.padding_img {
    margin-bottom: -24px;
}

.amazing_place_img img {
    width: 100%;
    transition: var(--transition);
}

.amazing_place_boxed:hover img {
    transform: scale(1.1);
}

.amazing_place_boxed:hover .amazing_place_box_content {
    opacity: 1;
}

.amazing_place_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);
}

.amazing_place_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;
}

.amazing_place_inner_content h3 {
    color: var(--white-color);
    padding: 10px 0;
    font-weight: 400;
}

.amazing_place_inner_content h4 {
    color: var(--white-color);
    font-weight: 400;
}

.amazing_place_inner_content h5 {
    color: var(--white-color);
    font-weight: 400;
}

.amazing_place_inner_content p {
    color: var(--white-color);
    padding-top: 5px;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}



/* home eight service area */
#home_eight_service_area {
    background-image: url("../img/home-eight/common/service-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home_eight_service_boxed {
    margin-bottom: 40px;
}

.home_eight_service_boxed h3 {
    font-weight: 500;
    padding: 20px 0px 16px 0px;
}

.home_eight_service_boxed img {
    background-color: #fff;
    padding: 12px;
    box-shadow: 8px 10px 20px rgba(0, 0, 0, 0.06), 8px 10px 20px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    transition: var(--transition);
}

.home_eight_service_boxed:hover img {
    transform: translateY(5px);
}

/* home eight destination */
.previous-price {
    font-size: 14px;
    text-decoration: line-through;
}

.discount_text p a {
    color: var(--main-color);
    font-weight: 500;

    line-height: 20px;
    transition: var(--transition);
    font-size: 16px;
}

.discount_text p {
    padding: 10px;
    line-height: 20px;
}

.discount_text p span {
    font-size: 13px;
    font-weight: 400;
}

.discount_text {
    position: absolute;
    width: 60px;
    height: 60px;
    right: 20px;
    top: -25px;
    background-color: var(--white-color);
    border: 1px solid var(--main-color);
    text-align: center;
    border-radius: 4px;
    transition: var(--transition);
}

.common_card_eight:hover .discount_text {
    background-color: var(--main-color);
}

.common_card_eight:hover .discount_text p a {
    color: var(--white-color);
}

#home_eight_destination .common_card_eight {
    margin-bottom: 30px;
}

.comnon_card_eight_bottom_second {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.common_card_eight_text .common-para {
    font-size: 16px;
}

.common_card_eight_text .common-para i {
    font-size: 18px;
}

.comnon_card_eight_bottom_second .common_card_eight_bottom_right sub {
    font-size: 14px;
}

/* --Our Partner-- */
#our_partners_eight {
    background-color: #F3F6FD;
}

#our_partners_eight .owl-carousel .owl-item img {
    width: auto !important;
    filter: opacity(0.5);
}

#our_partners_eight .owl-carousel .owl-item img:hover {
    filter: opacity(1);
}

/* team area */

.team-card {
    position: relative;
    box-shadow: 8px 10px 24px rgba(0, 0, 0, 0.1);
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-img {
    overflow: hidden;

}

.team-img img {
    transition: var(--transition);
}


.team-img img {
    width: 100%;
    height: auto;
}

.team-info {
    position: absolute;
    bottom: 23px;
}

.team-info h3 {
    background-color: #fff;
    margin-bottom: 6px;
    font-weight: 500;
    padding: 6px 12px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.team-info h3 a {
    color: var(--black-color);
}

.team-info h3 a:hover {
    color: var(--main-color);
}

.team-info p {
    background-color: #fff;
    margin: 4px 0;
    padding: 2px 8px;
    font-weight: 500;
    display: inline-block;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.social-icon-area {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 0%;
    transition: var(--transition);
}

.social-icon-area:hover {
    height: 100%;
}

.social-icon-area ul li a {
    color: var(--heading-color);
    font-size: 22px;
    transition: var(--transition);
}

.social-icon-area ul li a:hover {
    color: var(--theme-color);
}

.invisible-icon {
    background-color: #fff;
    padding: 4px 10px;
    height: 38%;
    opacity: 0;
    transition: 0.3s all ease-in-out;
    transform: translate(0%, 2%);
}

.social-icon-area:hover .invisible-icon {
    opacity: 1;
}

.invisible-icon li :hover {
    color: var(--main-color);
}

.invisible-icon li i {
    transition: var(--transition);
}

.visible-icon li a img {
    margin-bottom: 2px;
}

/* --Popular Tours-- */
.section_heading_left {
    padding-bottom: 30px;
}

.section_heading_left h2 {
    padding-bottom: 8px;
}

.common_card_four {
    background: #FFFFFF;
    border: 1px solid rgba(221, 221, 221, 0.5);
    border-radius: 20px;
    overflow: hidden;
}

.common_card_four_img {
    overflow: hidden;
}

.common_card_four_img a img {
    width: 100%;
    transition: var(--transition);
}

.common_card_four:hover .common_card_four_img a img {
    transform: scale(1.1);
}

.common_card_four_text {
    padding: 20px 10px;
}

.common_card_four_list li {
    display: inline-flex;
    font-size: 12px;
    font-weight: 400;
    color: #727178;
    align-items: center;
}

.common_card_four_list li i {
    font-size: 7px;
    color: #DDDDDD;
    padding-left: 7px;
    padding-right: 5px;
}

.common_card_four_text h3 {
    padding-top: 5px;
}

.common_card_four_text h3 a {
    font-size: 20px;
    color: var(--black-color);
    font-weight: 400;
}

.common_card_four:hover .common_card_four_text h3 a {
    color: var(--main-color);
}

.common_card_four_text p {
    font-size: 14px;
    padding-top: 5px;
}

.common_card_four_text p i {
    font-size: 14px;
    padding-right: 5px;
}

.common_card_four_bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 12px;
}

.common_card_four_bottom_left p {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 500;
}

.common_card_four_bottom_left h6 {
    color: #727178;
    font-size: 12px;
    padding-top: 3px;
}

.common_card_four_bottom_right h4 sub {
    font-size: 12px;
}

.button_style_top_left.owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: -90px;
}

.button_style_top_left.owl-carousel .owl-nav button.owl-next,
.button_style_top_left.owl-carousel .owl-nav button.owl-prev {
    background: var(--black-color);
    color: var(--white-color);
    border: none;
    padding: 0 !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.button_style_top_left.owl-carousel .owl-nav button.owl-next:hover,
.button_style_top_left.owl-carousel .owl-nav button.owl-prev:hover {
    background: var(--main-color);
    color: var(--white-color);
}


/* --News Area-- */
.news_card_four_heading ul li {
    display: inline-flex;
    font-size: 14px;
    font-weight: 500;
    color: #727178;
    align-items: center;
}

.news_card_four_heading ul li i {
    font-size: 7px;
    color: #DDDDDD;
    padding-left: 7px;
    padding-right: 5px;
}

.news_card_four_img {
    overflow: hidden;
    border-radius: 20px;
}

.news_card_four_img a img {
    width: 100%;
    transition: var(--transition);
}

.news_card_four_wrapper:hover .news_card_four_img a img {
    transform: scale(1.1);
}

.news_card_four_heading {
    padding-top: 20px;
}

.news_card_four_heading h3 {
    font-weight: 600;
    padding-bottom: 10px;
}

.news_card_four_heading h3 a {
    color: var(--black-color);
}

.news_card_four_wrapper:hover .news_card_four_heading h3 a {
    color: var(--main-color);
}


/* home six news area */
#home_six_news_area .home_six_section_heading h2::after {
    left: 0;
}

.news_card_six {
    background: #FFFFFF;
    border: 1px solid rgba(221, 221, 221, 0.5);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 30px;
}

.news_card_six_img {
    overflow: hidden;
}

.news_card_six_img a img {
    width: 100%;
    transition: var(--transition);
}

.news_card_six:hover .news_card_six_img a img {
    transform: scale(1.1);
}

.news_card_six_text {
    padding: 30px 20px;
    position: relative;
}

.news_card_six_list li {
    display: inline-flex;
    font-size: 12px;
    font-weight: 400;
    color: #727178;
    align-items: center;
}

.news_card_six_list li i {
    font-size: 7px;
    color: #727178;
    padding-left: 7px;
    padding-right: 5px;
}

.news_card_six_text h3 {
    padding-top: 16px;
    padding-bottom: 24px;
}

.news_card_six_text h3 a {
    font-size: 24px;
    color: var(--black-color);
    font-weight: 500;
    line-height: 33px;
}

.news_card_six:hover .news_card_six_text h3 a {
    color: var(--main-color);
}


.news_card_six_text a i {
    margin-left: 8px;
}

.news_card_six_top {
    background-color: var(--main-color);
    color: var(--white-color);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
}

.news_card_six_top h3 {
    padding: 0;
    font-weight: 500;
}

.news_card_six_top {
    position: absolute;
    top: -55px;
    right: 37px;
    z-index: 999;
    text-align: center;
}


/* Homepage UI */
.homepage-search-bg {
    background: rgb(245, 245, 245);
    border: 1px solid transparent;
    border-radius: 12px;
}

.homepage-search-bg .range_plan i {
    background: transparent;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 35px;
}

.homepage-search-bg .flight_Search_boxed span {
    font-size: 15px;
}

.kt-btn {
    background-color: #92292D;
    border-radius: 12px !important;
}

.kt-nav-btn {
    background-color: #92292D;
    padding: 10px 16px 10px 12px !important;
    border-radius: 12px;
}

.home-slider-serach-section {
    position: absolute;
    width: 83%;
    /* bottom: 25px;     */
    top: -700px;
}

.home-original-search .flight_Search_boxed {
    background: #eaf8ff !important;
}

.home-original-search .theme_search_form_tabbtn .nav-tabs .nav-item.show .nav-link,
.home-original-search .theme_search_form_tabbtn .nav-tabs .nav-link.active {
    color: var(--white-color);
    /* background:  radial-gradient(circle at 4% 2%, #4f6282 0%, rgba(87, 29, 127, 0) 97%), #032942; */
    background: #002d61;
    border-color: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 18px;
}

.home-original-search .theme_search_form_tabbtn .nav-tabs .nav-link {
    margin-bottom: 0;
    color: var(--black-color);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 18px;
    border: 1px solid transparent;
}

.section_heading_left_view_all a {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 500;
}

.section_heading_left_view_all a:hover {
    color: var(--black-color);
}

/* .homepage{
        background: #032942 ;
    } */

.form-check-label-policy-in-out {
    width: 107%;
}

.policy-in-out {
    top: 20px;
    position: absolute;
    right: 10px;
}

.policy-in-out-hotel {

    /* top: -65px; */
    /* bottom: 125px;
    position: absolute;
    right: 10px; */
}

.gt-word-break {
    word-break: break-word;
}

.policy-input-div .input-group-text {
    height: 50px !important;
}

.card-title {
    white-space: break-spaces !important;
}

.default-btn-view {
    border: 1px solid transparent;
    background: #fff;
}

.input-group-text {
    border: 2px solid var(--main-color) !important
}

.sign-up-btn {
    position: fixed;
    top: 35px;
    right: 45px;
}

#reload_href {
    position: absolute;
    top: 10px;
    right: 51%;
}

#canv {
    height: 45px;
    width: 150px;
}

.date-icon-userform {
    position: absolute;
    top: 15px;
    right: 10px;
    /* z-index: 5; */
    /* cursor: pointer; */
}

.visa-loader-h {
    height: 470px;
}

.white-space-break {
    white-space: break-spaces !important;
}

.Accordion-toggle-icon-user-form .accordion-button::after {
    /* margin-left: 20px !important; */
    position: absolute;
    left: 220px;
}

.tab-width-150 {
    width: 155px;
}

.tripreason-policy-loader {
    position: absolute;
    top: 12px;
    width: 100%;
    color: var(--bg-navy);
    left: 260px;
}

.gt-disabled {
    background: #e9ecef !important;
}

.gt-file-dropzone {
    background: #f3f5fa;
    border: 2px dotted #35aae0;
    padding: 65px 5px;
    border-radius: 0.25rem;
}

.gt-file-dropzone-doc {
    background: #f3f5fa;
    border: 2px dotted #35aae0;
    padding: 11px 5px;
    border-radius: 0.25rem;
}

.gt-border-1px {
    /* border-bottom: 1px solid; */
}

.flight-full-border {
    background: white;
    border-radius: 12px;
}

.show-more:hover {
    color: #1779dd;
}

/* .show-more-height { 
    height: 100px; 
    overflow:hidden; 
} */

/* .accordion-button:hover{
    z-index: 1!important;
}

.bg-gradient{
    background-color: var(--gt-grey);
    border-radius: 8px;
    padding: 10px;
    position: relative;
    border: solid 1px var(--gt-grey);
    transition: all 0.4s;
}

.show-more-height, .show-more-services-height, .show-more-facilities-height,
.show-more-recreation-height, .show-more-safety-info-height,
.show-more-nearby-height, .show-more-getting-around-height,
.show-more-food-and-drink-height { 
    height: 170px; 
    overflow:hidden; 
    
}

.show-more-height::after, .show-more-services-height::after, .show-more-facilities-height::after,
.show-more-recreation-height::after, .show-more-safety-info-height::after,
.show-more-nearby-height::after, .show-more-getting-around-height::after,
.show-more-food-and-drink-height::after { 
    display: block;
    content: '';
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 45%, rgba(255,255,255,1) 100%);
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0px;
    height: 50px;
}

.show-more-amenities-height { 
    height: 785px; 
    overflow:hidden; 
}

#showMoreAmenities11 span:hover,
#showMore123 span:hover,
#showMoreSafetyInfo11 span:hover,
#showMoreRecreation11 span:hover,
#showMoreFacilities11 span:hover,
#showMoreServices11 span:hover,
#showMoreFoodAndDrink span:hover,
#showMoreNearby11 span:hover,
#showMoreGettingAround11 span:hover{
    color: var(--main-color);
    border: 1px solid;
    padding: 4px 8px;
}
#showMoreAmenities11 span, 
#showMore123 span, 
#showMoreSafetyInfo11 span, 
#showMoreRecreation11 span, 
#showMoreFacilities11 span, 
#showMoreServices11 span, 
#showMoreFoodAndDrink span, 
#showMoreNearby11 span, 
#showMoreGettingAround11 span {
    border: 1px solid;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 8px;
    border: none;
    display: table;
    margin: 0px auto;
    z-index: 9;
    position: relative;
    top: -33px;
    font-size: 14px;
    background: #fff;
    color: var(--text-blue-color);
    border: solid 1px var(--text-blue-color);
}
#showMoreAmenities11 span:hover, 
#showMore123 span:hover, 
#showMoreSafetyInfo11 span:hover, 
#showMoreRecreation11 span:hover, 
#showMoreFacilities11 span:hover, 
#showMoreServices11 span:hover, 
#showMoreFoodAndDrink span:hover, 
#showMoreNearby11 span:hover, 
#showMoreGettingAround11 span:hover {
    background: var(--btn-bg-color);
    color: #fff;
}
#showMoreAmenities11, #showMore123, #showMoreSafetyInfo11,
#showMoreRecreation11, #showMoreFacilities11, 
#showMoreServices11, #showMoreFoodAndDrink, 
#showMoreNearby11, #showMoreGettingAround11{
    margin-top: 0px;
} */

.tour_detail_right_sidebar.cstm {
    margin-bottom: 0px !important;
}

.gt-workflow .fa-user {
    border: 1px solid;
    padding: 4px 5px;
    border-radius: 50%;
}

.pop-ups-tab-border-parent .nav-link {
    transition: none !important;
}

.nav-link {
    transition: none !important;
}

.gt-h-530 {
    height: 468px;
}

.gt-h-530 img {
    height: 100%;
}

.service-box-editor {
    border: 2px solid var(--main-color);
    padding: 10px;
    border-radius: 0.25rem;
    min-height: 100px;
    background: #e9ecef;
}

.tr-textbox-height {
    min-height: 100px;
}

.gt-btn-primary {
    background: var(--bg-navy);
    color: #fff;
}

.ml-8px {
    margin-left: 5px !important;
}

.input-spineer-city {
    position: absolute;
    top: 14px;
    z-index: 6;
    width: 100%;
    left: 340px;
    color: var(--bg-navy);
}

.gt-toggle-tbl {
    border: 2px solid #0d6efd !important;
    background: #f2feff !important;
}

.gt-toggle-tbl-th {
    border-top: 2px solid #0d6efd !important;
    border-left: 2px solid #0d6efd !important;
    border-right: 2px solid #0d6efd !important;
    border-bottom: 2px solid #0d6efd !important;
    background: #f2feff !important;
}

.gt-bg-org {
    background: #ff6200;
}

.gt-min-40px {
    min-height: 60px;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.gt-20px {
    height: 20px;
}

.input-spineer-city-travel-request-view {
    position: absolute;
    top: 14px;
    z-index: 6;
    width: 100%;
    left: 445px;
    color: var(--bg-navy);
}

.carousel-control-next,
.carousel-control-prev {
    opacity: 1 !important;
}

.table {
    border-color: #ccd8e4 !important;
}

.table p {
    color: inherit;
}

.gt-w-10 {
    width: 16% !important;
}

.gt-w-3 {
    width: 3% !important;
}

.gt-border-2px-primary {
    border: 2px solid #0d6efd;
}

.form-group-signin .gt-50px {
    height: 50px;
}

.gt-login-btn-ui {
    border: 1px solid #fff;
}

.table-ui-list ul,
.table-ui-list li {
    list-style: disc !important;
    padding: 1px 1px 1px 25px;
    margin: 1px;
}

.table-ui-list li {
    list-style: disc !important;
    padding: 1px 1px 1px 1px;
    margin: 1px;
}

.table-ui-list ol {
    padding: 1px 1px 1px 25px;
    margin: 1px;
    list-style: auto !important;
}

.table-ui-list ol li {
    padding: 1px 1px 1px 1px;
    margin: 1px;
    list-style: auto !important;
}

.fa-passport {
    font-size: 18px;
}

.gt-glassdoor {
    background-image: url(../img/glassdoor.png);
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 4px;
}

.gt-hotel-title .hotel-text .h3 {
    font-size: 20px !important;
}

.ql-toolbar.ql-snow {
    border: 2px solid var(--main-color) !important;
}

.ql-container.ql-snow {
    border-left: 2px solid var(--main-color) !important;
    border-right: 2px solid var(--main-color) !important;
    border-bottom: 2px solid var(--main-color) !important;
}

.mb-10px {
    margin-bottom: 10px;
}

.gt-customize-h-55 {
    height: 55px;
}

.bg-prime {
    background: var(--bg-prime);
    color: var(--text-white-forgot-pass);
}

.Login-custom-btn {
    background: var(--login-custom-btn);
}

.gt-seat-btn a:not([href]):not([class]),
.gt-seat-btn a:not([href]):not([class]):hover {
    color: #fff;
}

.gt-landing-boxes .theme_two_box_img {
    height: 225px;
}

#TermsAndConditionID p {
    color: inherit;
}

#TermsAndConditionID a {
    color: #38c1f5 !important;
}

.gt-profile-pic-text {
    color: var(--navlink-color);
}

.styles-module_info__BWdHW {
    background: var(--btn-bg-color) !important;
}

.custom-heading-text {
    color: var(--custom-heading);
}


/* Custom Loader CSS Start*/
.worldMap {
    border-radius: 100%;
    border: solid 1px var(--custom-loader);
    height: 150px;
    width: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

}

.worldMap img {
    height: 135px;
    width: 275px;
    position: absolute;
    left: 0;
    top: 0;
}

.earth-wrapper.cstm {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2.9rem;

}

.worldMap svg {
    position: absolute;
    width: 320px;

}

.worldMap svg {
    transition: all 0.4s;
    fill: var(--custom-loader);
    animation-delay: 0s;
}

.worldMap__inner {
    position: absolute;
    top: 0;
    width: 1200px;
    height: 150px;
    left: 0;
    animation: earthAnima 48s linear infinite;

}

.worldMap__inner svg:nth-child(1) {
    left: 0px;
    top: 0px;
    position: absolute;
}

.worldMap__inner svg:nth-child(2) {
    left: 340px;
    top: 0px;
    position: absolute;
}

.worldMap__inner svg:nth-child(3) {
    left: 580px;
    top: 0px;
    position: absolute;
}

.worldMap__inner svg:nth-child(4) {
    left: 780px;
    top: 0px;
    position: absolute;
}

.plane svg {
    fill: var(--custom-loader) !important;
}

.plane svg g {
    fill: var(--custom-loader) !important;
}

@keyframes earthAnima {
    0% {
        left: -650%;
    }

    100% {
        left: 90%;
    }
}

/* Custom Loader CSS Ends*/
.gt-amex-logo {
    right: 0px;
    top: 0px;
    position: absolute;
}

.gt-amex-logo img {
    height: 40px;
}

/* DropDown list color Change start */
.css-1nmdiq5-menu .css-1n6sfyn-MenuList .css-tr4s17-option {
    background-color: var(--bg-navy) !important;
}

.css-d7l1ni-option {
    background-color: var(--text-box-bg-skyblue) !important;
}

/* DropDown list color Change End */

.table th {
    vertical-align: top;
}

.hotel-list .hotel-list-cn .hotel-list-item {
    border: solid 1px #ccc !important;
}

.tax--summary span.tax--summary {
    word-break: break-all;
}

.cstmSpinner {
    background: rgba(255, 255, 255, 0.9);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

.cstmSpinner i {
    height: auto;
    width: auto;
    display: block;
}

.gt-workspace {
    border: 1px solid white;
}

.loaderContent {
    position: relative;
    bottom: 0;
}

.complete-cancle-btn {
    background: #fc4902;
}

.dropdown-toggle::after {
    color: var(--navlink-color);
}

.loader.globeLoader {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto !important;
    /* height: 100%; */
    flex-direction: column;
    z-index: 9999;
}

.loader.globeLoader.top {
    justify-content: start;

}

.loaderContaner {
    position: relative;
    height: 250px;
    width: 100%;
    z-index: 9999;
}

.signin-log .styles-module_info__BWdHW {
    background: var(--login-custom-btn) !important;
}

.dtPicker::after {
    font-family: 'FontAwesome';
    content: '\f073';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    z-index: 0;
    align-items: center;
    justify-content: center;
    color: #12688b;
}

.dtPicker input {
    position: relative;
    z-index: 1;
    background-color: transparent;
}

.dtPicker input:focus {
    background-color: transparent;
}

/* -------------------CSS Addons for Accordion Arrow-------------------------- */

.accordion-button:not(.collapsed)::after {
    background-image: linear-gradient(var(--main-color), var(--main-color));
    mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='currentColor'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}


.flight_search_right h6.text-primary.collapsed i {
    transform: rotate(0deg);
    transition: all 0.3s;
}

.flight_search_right h6.text-primary[aria-expanded="true"] i {
    transform: rotate(-180deg);
    transition: all 0.3s;
}

.flight_search_right h6.text-primary[aria-expanded="false"] i {
    transform: rotate(0deg);
    transition: all 0.3s;
}

/* ====================Login Loader=================== */

.loader-login {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-height: 1px;
    min-width: 1px;
}

.loader-login {
    --main-color: #5E6FFF;
    --highlight-color: #CED3FF;
    --bullet: 25%;
    /* 50% for round or 0% for square*/
    --size: 7px;
    /* 7px is standard size */
}

.loader-login span {
    float: left;
    margin: 0 calc(var(--size) / 1.4);
    width: var(--size);
    height: var(--size);
    transition: transform .2s ease-in-out, background .2s ease;
    -webkit-transition: transform .2s ease-in-out, background .2s ease;
    -moz-transition: transform .2s ease-in-out, background .2s ease;
    animation-iteration-count: infinite;
    animation-name: highlight;
    animation-duration: 1.2s;
    border-radius: var(--bullet);
    background: var(--main-color);
}

.loader-login span:nth-of-type(1) {
    animation-delay: 0s;
}

.loader-login span:nth-of-type(2) {
    animation-delay: .1s;
}

.loader-login span:nth-of-type(3) {
    animation-delay: .2s;
}

.loader-login span:nth-of-type(4) {
    animation-delay: .3s;
}

.loader-login span:nth-of-type(5) {
    animation-delay: .4s;
}

.loader-login span:nth-of-type(6) {
    animation-delay: .5s;
}

.loader-login span:nth-of-type(7) {
    animation-delay: .6s;
}

.loader-login span:nth-of-type(8) {
    animation-delay: .7s;
}

.loader-login span:nth-of-type(9) {
    animation-delay: .8s;
}

.loader-login span:nth-of-type(10) {
    animation-delay: .9s;
}

.loader-login span:nth-of-type(11) {
    animation-delay: 1s;
}

.loader-login span:nth-of-type(12) {
    animation-delay: 1.1s;
}

@keyframes highlight {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(2.1, 2.1);
        background: var(--highlight-color);
    }

    100% {
        transform: scale(1, 1);
    }
}

.loader-login-text {
    position: relative;
    top: 53%;
    font-weight: 500 !important;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    filter: brightness(0) saturate(100%) invert(25%) sepia(73%) saturate(1303%) hue-rotate(167deg) brightness(100%) contrast(86%);
}

.gt-car-img {
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-right: 1px solid #cccccc; */
}

.gt-car-img img {
    width: auto !important;
}

.gt-car-section .hotel-list-item .hotel-img {
    width: 35%;
}

.gt-car-section .hotel-list-item .hotel-text {
    margin-top: 20px !important;
}

.hotel-list-item.carListItem figure.hotel-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 284px !important;
}

.hotel-list-item.carListItem figure.hotel-img:hover img {
    opacity: 1;
}

.hotel-list-item.carListItem .hotel-text {
    border-left: solid 1px #ddd;
    margin-top: 0px !important;
    padding-top: 20px;
    padding-bottom: 0px;
    padding-left: 15px !important;
    min-height: 285px;
}

.hotel-list-item.carListItem figure.hotel-img a {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;

}

.hotel-list-item.carListItem figure.hotel-img a img {
    height: auto !important;
    max-height: 100% !important;
}

.carListItem .hotel-flag img {
    height: 50px;
    padding: 3px;
}

.carListItemDetails .carListItem {
    overflow: hidden;
    border: solid 1px #ddd;
    border-radius: 6px;
}

.carListItemDetails .carListItem:hover {
    transform: scale(1);
    box-shadow: none;
}

.tour_details_boxed_inner.carPolicy .accordion {
    border-bottom: solid 1px #efefef;
}

.carPolicy .accordion-collapse p {
    color: #212529;
    margin-bottom: 0 !important;
    padding-bottom: 0px !important;
}

.carListItemDetails .hotel-list-item.carListItem figure.hotel-img {
    height: 285px !important
}

.carListItemDetails .carListItem .gt-exclusive-text {
    /* top:192px; */
}

.tabs-btn.nav-link.text-center .cstomIcon {
    font-size: 19px;
}

.zoomController {
    scale: var(--zoom-value);
    transform-origin: center top;
    transition: transform 0.2s ease-in-out;
}

.MainSscreenLoader {
    position: fixed;
    height: 100vh;
    width: 100%;
    overflow: hidden !important;
    left: 0;
    top: 0;
    background-color: #fff !important;
    z-index: 9999;
}

.MainSscreenLoader .loader.globeLoader {
    height: 95vh !important;
    overflow: hidden !important;
}

.CarItemFeaturesIcon {
    display: flex;
    gap: 0px;
    flex-wrap: wrap;
    flex-direction: row;
}

.gt-whitespace-normal {
    white-space: normal !important;
    line-height: 32px !important;
}

.Safari .theme_search_form_area.booking {
    box-shadow: none;
    /* border-radius: 0px; */
}

.hotel-list-item.carListItem .hotel-name {
    min-height: 50px;
}

.hotel-text .hotel-star-address+.row {
    margin-left: -15px;
    margin-right: -15px;
}

.btn_booking_sect {
    min-height: 40px;
}

canvas.cstm__chart {
    /* width: 100% !important;
    height: 100% !important; */
    margin-top: 0px;
    margin-bottom: 0px;
}

.chrt_holder {
    border-radius: 8px;
    padding: 10px 0px;
    box-shadow: 0px 2px 20px 0px #ddd;
    display: flex;
    align-items: center;
    min-height: 240px;
}

.chrt_holder .legend {
    padding: 0px 10px;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 0px;
    flex-wrap: wrap;
}

.chrt_holder .legend span:nth-child(1) {
    color: #666;
    font-size: 0.95em;
    font-weight: 600;
}

.chrt_holder .legend span:nth-child(2) {
    color: #333;
    font-size: 0.95em;
}

.chrt_holder .legend li {
    display: flex;
    gap: 7px;
    align-items: center;
    width: 100%;
    justify-content: start;
    border-bottom: dashed 1px #ddd;
}

.chrt_holder .legend li:nth-last-child(1) {
    border: none !important;
}

.legend-item-data {
    display: flex;
    flex-direction: column;
}

.legend-item-color {
    display: flex;
    height: 22px;
    width: 22px;
    border-radius: 4px;
}

.chart-legend li {
    min-width: 100px;
    /* Adjust width */
    display: inline-block;
}

.flight_data_table thead th {
    font-size: 15px;
    font-weight: 600;
    vertical-align: top;
    text-align: center;
    padding: 7px 7px;
    max-width: 100%;
    width: fit-content;
    white-space: nowrap;
    border-bottom: solid 1px #ccc;
}

.flight_data_table thead th img {
    display: table;
    margin: 0 auto;
    height: 42px;
    width: auto;
}

.flight_data_table tbody td {
    text-align: center;
    max-width: 100%;
    width: fit-content;
    white-space: nowrap;
}

.flight_data_table_wrapper {
    /* overflow-x: scroll; */
    /* background-color: var(--gt-grey); */
    margin-bottom: 35px;
    box-shadow: 0px 3px 10px #ddd;
}

.flight_data_table {
    width: 100%;
    margin-bottom: 0px;
}

.text_break span {
    display: inline-block;
    margin: 0px 5px;
}

.text_break span:nth-child(1) {
    content: '|';
    display: inline-block;
    position: relative;
    border-right: solid 1px #ccc;
    padding-right: 12px;
}

.airline_img {
    height: 30px;
    width: 30px;
    margin-right: 10px;
    object-fit: contain;
}

.filter_apply_section {
    display: flex;
}

.filter_apply_section div {
    background-color: #efefef;
    display: flex;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 25px;
}

.fl_fare {
    background: var(--main-color) !important;
    box-shadow: 3px 3px 2px -1px #ddd;
    padding: 2px 12px;
    font-weight: 500;
    color: #fff;
    min-width: 100%;
    display: block;
    border-radius: 3px;
}

.filter_apply_section div span {
    margin-left: 5px;
}

/* Flight Matix taggle data view */
.tbl__toggle__data {
    text-align: left;
    background-color: var(--gt-grey);
    padding: 30px;
}

.tbl__toggle__data h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

span.flght__dtl {
    font-size: 13px;
    margin-bottom: 0px;
    color: #444;
}

.flght__dtl__logo img {
    height: 25px;
    width: auto;
}

.flght__dtl__logo {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flght__Layover span {
    font-size: 13px;
}

span.flght__Layover {
    margin: 20px auto;
    display: table;
    font-size: 13px;
    position: relative;
    color: #444;
}

span.flght__Layover::after {
    content: "";
    width: 50%;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    top: 50%;
    left: -55%;
}

span.flght__Layover::before {
    content: "";
    width: 50%;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    top: 50%;
    right: -55%;
}

.flight__data__list table thead {
    background-color: var(--gt-grey);
}

.flight__data__list .flight_data_table_wrapper {
    box-shadow: none;
}

.fnt__medium {
    font-weight: 500;
    color: #000;
}

.flight_data_table td.text_break span {
    min-width: 80px;
}

/* Configuration Tab UI Start */
.vertical-tab-border-parent.custom {
    padding-right: 0px;
    margin-bottom: 0px !important;
}

.vertical-tab-border-parent.custom .vertical-tab-border {
    background: var(--gt-grey);
    padding: 0px;
    height: 100%;
}

.vertical-tab-border-parent.custom .vertical-tab-border .nav-item {
    border: none !important;
    border-bottom: solid 1px #ddd !important;
}

.vertical-tab-border-parent.custom .vertical-tab-border .nav-item:nth-last-child(1) {
    border: none !important;
}

.vertical-tab-border-parent.custom .vertical-tab-border .nav-item button {
    color: #444;
    padding: 10px !important;
}

.vertical-tab-border-parent.custom .vertical-tab-border .nav-item button i {
    margin-right: 10px;
}

.vertical-tab-border-parent.custom .vertical-tab-border .nav-item .nav-link {
    border: none !important;
}

.vertical-tab-border-parent.custom .vertical-tab-border .nav-item .nav-link.active {
    background: #fff;
    color: var(--main-color);
    border: solid 2px var(--main-color) !important;
    border-right: none !important;
    position: relative;
}

.vertical-tab-border-parent.custom .vertical-tab-border .nav-item .nav-link.active::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 0;
    height: 100%;
    background-color: #fff;
    width: 10px;
    z-index: 2;
}

.vertical-tab-border-parent.custom+.custom-tab {
    padding-left: 0px;
}

.vertical-tab-border-parent.custom+.custom-tab .tab-content {
    border: solid 2px var(--main-color);
    padding-left: 15px;
    padding-right: 15px;
    height: 100%;
    padding-bottom: 15px;
}

/* Configuration Tab UI Ends */

.gt-lavotory {
    color: #524c89;
}

.accordion_flex_area .accordion-item .accordion-button:hover {
    z-index: 1 !important;
}

.text-main-color {
    color: var(--main-color);
}

/* Custom Scroll-Bar Start */

.fuselage {
    scrollbar-color: var(--text-blue-color, #888) #ddd;
    /* Firefox */
    scrollbar-width: thin;
    /* Firefox */
}

.fuselage::-webkit-scrollbar {
    width: 8px;
    /* WebKit */
}

.fuselage::-webkit-scrollbar-track {
    background: #ddd;
    /* WebKit */
}

.fuselage::-webkit-scrollbar-thumb {
    background: var(--text-blue-color, #888);
    /* WebKit */
    border-radius: 4px;
    /* WebKit */
}

.fuselage::-webkit-scrollbar-thumb:hover {
    background: var(--text-blue-color-hover, #555);
    /* WebKit */
}

/* Custom Scroll-Bar End */



.hotel-list-item.position-relative.perk-border.light-yellow-bg.list-card {
    display: flex;
}

.hotel-list-item.position-relative.perk-border.light-yellow-bg.list-card .hotel-text {
    margin-left: 0px;
    width: 55%;
    margin-top: 20px !important;
}

.hotel-list-item.position-relative.perk-border.light-yellow-bg.list-card .hotel-text .hotel-name {
    width: 92%;
}

.hotel-list-item.position-relative.perk-border.light-yellow-bg.list-card .extra-removed {
    display: none;
}

.hotel-list-item.position-relative.perk-border.light-yellow-bg.list-card figure.hotel-img.float-left {
    width: 45% !important;
    /* background-color: red; */
    height: auto;
}

.hotel-list-item.position-relative.perk-border.light-yellow-bg.list-card figure.hotel-img.float-left a {
    display: flex;
    position: relative;
    height: 100%;
}

.hotel-list-item.position-relative.perk-border.light-yellow-bg.list-card figure.hotel-img.float-left a img {
    position: absolute;
}

.cstm-tab-btns {
    display: flex;
    flex-direction: column;
}

button.cstm-tab-btns {
    border: none;
    padding: 7px 15px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 0px;
    flex-direction: column;
    box-shadow: 2px 2px 4px #00001140;
}

button.cstm-tab-btns.active {
    background: var(--btn-bg-color);
    color: #fff;
}

.toggle-sect {
    border: solid 1px var(--text-blue-color);
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 7px 15px 15px 15px;
    border-radius: 6px;
}

.fare-mark-calc {
    display: flex;
    flex-direction: column;
}

.fare-mark-calc label {
    font-weight: 600;
}

.fare-mark-calc input {
    border: solid 2px var(--text-blue-color);
    border-radius: 4px;
    padding: 4px 10px;
}

.fare-mark-calc input:read-only {
    cursor: default;
    color: #000;
    background-color: #f7f5f5;
}

.fare-mark-calc span {
    display: flex;
    padding: 4px 0px;
    border-radius: 5px;
}

.fare-mark-calc button {
    background: var(--btn-bg-color);
    color: #fff;
    border: none;
    padding: 7px;
    border-radius: 6px;
    margin-top: 22px;
}

.toggle-sect .btm-separate {
    border-bottom: solid 1px var(--text-blue-color);
    padding-bottom: 15px;
}

.markerImage {
    height: 20px !important;
    width: 20px !important;
}

.ms-34px {
    margin-left: 34px;
}

.hotel-landmark-border input {
    border: 2px solid var(--main-color) !important;
    background: #f7f9fe !important;
    width: 100% !important;
    padding: 0px 8px;
}

.hotel-landmark-border .css-1fdsijx-ValueContainer,
.hotel-landmark-border .css-hlgwow {
    font-size: 14px !important;
    font-weight: 500;
}

.theme_two_box_img.img-ticket {
    height: 220px !important;
}

.search-input-hotel {
    /* font-size: 14px!important; */
    font-weight: 400 !important;
}

.plan_icon_posation.car-icon {
    top: 14px;
}

.hotel-landmark-border input {
    font-size: 16px !important;
}

.gt-mobile-text {
    font-weight: 700;
    font-size: 13px;
}

.gt-email-text {
    text-decoration: underline;
}

.exclusive-text-white {
    color: var(--navlink-color);
}

.fare-mark {
    display: flex;
}

.fare-markup-main {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
}

.markup-main-inside {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.markup-main-inside .fare-mark-calc input {
    width: 100%;
}

.fare-mark-calc label span {
    font-size: 12px;
    padding: 0px;
}

.markup-main-inside.ttl-fare {
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-shrink: 0;
    margin-right: 10px;
    margin-left: 10px;
}

span.mark-sign {
    margin-left: 8px;
    margin-right: 8px;
    margin-top: 52px;
}

.markup-main-inside.ttl-fare .fare-mark-calc span {
    margin-top: 20px;
    margin-bottom: 0px;
}

.markup-main-inside .btn_theme.btn_sm {
    margin-top: 48px;
}

.markup-main-inside.ttl-fare .fare-mark-calc {
    margin-top: 5px;
}

.markup-main-inside.ttl-fare-modal {
    min-width: 110px;
}

.markup-main-inside.faremodal label {
    line-height: 19px;
    color: #333;
}

.markup-main-inside.ttl-fare-modal label {
    color: #333;
    margin-top: 14px;
}

.markup-main-inside.ttl-fare-modal span {
    color: #333;
}

.markup-main-inside.single-col {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.markup-main-inside-content {
    display: flex;
    gap: 7px;
}

.markup-main-inside-head {
    font-weight: 600;
}

.markup-main-inside.fare input {
    margin-top: 5px;
}

span.fare-amt {
    background: #f2f2f2;
    width: 100%;
    border: solid 2px var(--text-blue-color);
    padding: 5px 15px;
    margin-top: 4px;
}

.markup-main-inside.fare-value {
    display: flex;
    flex-shrink: 0;
}

.imagemodalcard.imageModal3.modal-top .content {
    height: 365px;
    overflow: auto;
    overflow-x: hidden;
}

#chat-fc-name {
    padding: 8px !important;
}

#chat-fc-email {
    padding: 8px !important;
}

.fc-form p {
    color: #000 !important;
    padding-top: 10px !important;
    font-weight: 500 !important;
}

.chat-fc-form-outer div.fc-form p {
    margin-bottom: 15px !important;
}

.bg-purple {
    background: #a507ff;
}

.quill-editor-cstm .ql-container.ql-snow {
    height: 200px;
}

.header-secondary~#theme_search_form_tour {
    margin-top: -145px;
}

.header-secondary~div #theme_search_form_tour {
    margin-top: -145px;
}

.session-modal-btns {
    gap: 4px;
    display: flex;
}

.min-body-height {
    min-height: 200px;
}

.gt-white-space-parent .badge {
    white-space: normal !important;
}

.cstm-date-icon {
    position: absolute;
    left: 7px;
    z-index: 1;
}

.room-details-list li {
    display: flex;
    gap: 5px;
}

.room-details-list li i {
    margin-top: 5px;
}

button.dropdown-toggle.time-slot-dropdown {
    background: transparent;
    border: none;
    padding: 0;
}

button.dropdown-toggle.time-slot-dropdown::after {
    display: none;
}

.dropdown-search-text .time-slot-dropdown .css-13cymwt-control {
    background-color: transparent !important;
    border: none;
    padding: 0;
}

.dropdown-search-text .time-slot-dropdown .css-13cymwt-control:focus {
    background-color: transparent !important;
    border: none;
    padding: 0;
}

.time-slot-dropdown.css-b62m3t-container {
    width: 102px;
    margin-bottom: 12px;
}
.dropdown-search-text .time-slot-dropdown .css-13cymwt-control{
    min-height: 30px !important;
    margin-top: -5px;
}
.dropdown-search-text .time-slot-dropdown .css-t3ipsp-control{
    min-height: 30px !important;
    margin-top: -5px;
}
.dropdown-search-text .time-slot-dropdown .css-13cymwt-control .css-qbdosj-Input{
    height: 30px !important;
    margin: 0px !important;
    padding: 0px !important;
    border: none !important;
    outline: none !important;
}
.dropdown-search-text .time-slot-dropdown .css-t3ipsp-control .css-qbdosj-Input{
    height: 30px !important;
    margin: 0px !important;
    padding: 0px !important;
    border: none !important;
    outline: none !important;
}
.dropdown-search-text .time-slot-dropdown .css-13cymwt-control .css-qbdosj-Input input{
    height: 25px !important;
}
.dropdown-search-text .time-slot-dropdown .css-t3ipsp-control .css-qbdosj-Input input{
    height: 25px !important;
}

.dropdown-search-text .css-t3ipsp-control .css-qbdosj-Input{
    height: 30px !important;
}
.dropdown-search-text .css-t3ipsp-control .css-qbdosj-Input input{
    height: 30px !important;
}



.time-slot-dropdown .css-1xc3v61-indicatorContainer {
    display: none !important;
}

.time-slot-dropdown .css-1u9des2-indicatorSeparator {
    position: relative;
    display: none !important;
}

/* .time-slot-dropdown .css-qbdosj-Input::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 15px;
    right: 0px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0px 6px;
    border-color: #12688B transparent transparent transparent;
} */

/* aftr select */
.time-slot-dropdown .css-t3ipsp-control {
    background-color: transparent !important;
    border: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 14px !important;
}

.time-slot-dropdown .css-ifdsijx-ValueContainer {
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 14px !important;
}

.time-slot-dropdown .css-15lsz6c-indicatorContainer {
    display: none !important;
}
.time-slot-dropdown .css-1nmdiq5-menu {
    box-shadow: none !important;
    outline: none !important;
    border: solid 1px #ddd !important;
    width: 200px !important;
    z-index: 99 !important;
}
.time-slot-dropdown .css-1nmdiq5-menu i{
    display: none !important;
}
.time-slot-dropdown .css-1dimb5e-singleValue {
    /* font-size: 14px !important; */
    font-weight: 500 !important;
    padding: 0px;
    margin: 0px;
    color: inherit !important;
}
.gt-time-picker{
    width: 100% !important;
    border: solid 2px transparent !important;
    padding-left: 5px !important;
    height: 28px !important;
    margin-top: 4px !important;
}
.gt-time-picker:hover{
    border: solid 2px var(--main-color) !important;
}
.gt-time-picker:focus{
    border: solid 2px var(--main-color) !important;
}
.cstm-date-picker {
    z-index: 0;
}
.flight_Search_boxed.gt-cstm{
    padding: 11px 15px !important;
}

.flight_Search_boxed.gt-cstm .dropdown-search-text .dropdown{
    padding-bottom: 0px !important;
}
.flight_Search_boxed.gt-car-date-card{
    padding: 7px 15px !important;
}
.profile-badge {
    max-width: 200px;
    word-break: break-word;
    white-space: normal;
    line-height: 20px;
}
.dropdown-search-text .time-slot-dropdown .css-13cymwt-control > div{
    padding: 0px !important;
    height: 30px;
}
.dropdown-search-text .time-slot-dropdown .css-t3ipsp-control > div{
    padding: 0px !important;
    height: 30px;
}
.time-slot-dropdown.css-b62m3t-container span{
    font-size: 16px;
}
.imageModal2.modal-top-1vh {
    top: 1vh;
}
.gt-scroll-marker.gt-currency-dropdown .css-13cymwt-control > div{
    padding-left: 2px;
    padding-right: 0px;
}


.gt-modal-parent {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gt-modal-parent .imageModal2{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.email-pro.gt-slide-box{
    position: fixed;
    right: 0;
    z-index: 999;
    top: 50vh;
    width: 100px;
    height: 200px;
}
.email-pro.gt-slide-box:hover{
    width: 300px;
}
.email-pro.gt-slide-box .btn-email-pulse{
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
}
.email-pro.gt-slide-box .email-cross {
    position: absolute;
    right: 0;
    top: 75px;
}
span.gt-badge.mb-0 {
    background: var(--text-box-bg-skyblue);
    border-radius: 0;
    position: absolute;
    left: -13px;
    bottom: -39px;
    padding: 10px 40px 10px 10px;
    border-left: solid 4px;
    font-weight: 500;
    display: flex;
    gap: 4px;
    font-size: 16px;
}
span.gt-badge.mb-0.text-primary::after {
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 37px 37px 0;
    border-color: transparent #FFF transparent transparent;
    transform: rotate(0deg);
    position: absolute;
    right: 0;
    top: 0;
}
.policy-text ul li{
    list-style: disc;
}