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

:root {
    --main-color: #0c8fc7;
    --white-color: #ffffff;
    --black-color: #2B2540;
    --black-color-opacity: #2b2540c4;
    --paragraph-color: #818090;
    --bg-color: #F3F6FD;
    --transition: .4s all ease-in-out;
    --text-dark: hsl(240, 54%, 15%);
  --text-light: hsl(242, 18%, 64%);
  --primary: #0091ff ;
  --primary-lighter: hsl(240, 33%, 86%);
  --primary-gradient: linear-gradient(93deg, #53b2fe, #065af3);
}
.navbar-area{display: none;}
.navbar-area.is-sticky{display: block;}
.main-navbar .navbar .navbar-nav.sticky-navbar-nav .nav-item{    margin-left:22px;margin-right: 22px;text-align: center;}
.main-navbar .navbar .navbar-nav.sticky-navbar-nav .nav-item a { color: #000; font-size: 14px;}
html,
body {
    height: 100%;
}

.form-check-input{
    border: 1.5px solid #000000;
    width: 1.2em;
    height: 1.2em;
}

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

.mb-30 {
    margin-bottom: 30px;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out 0.1s;
    transition: all 0.3s ease-in-out 0.1s;
    outline: 0 !important;
    color: var(--main-color);
}

a:hover {
    text-decoration: none;
    color: var(--heading-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

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

h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
}

h3 {
    font-size: 0px;
    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: 'Poppins', sans-serif;
    margin-bottom: 0;
}

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

ul {
    padding: 0;
    margin: 0;
}

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

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

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

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

.section_padding {
    padding: 100px 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: #0c8fc799;
    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: unset;
}

.btn_theme {
    padding: 10px 20px;
    opacity: 1;
    color: #fff;
    background-image: linear-gradient(93deg,#53b2fe,#065af3);
    border: 0;
    border-radius: 34px;
    box-shadow: 0 1px 7px 0 rgba(0,0,0,.2);
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    outline: 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
}


.btn_theme_white {
    color: var(--black-color);
    background-color: var(--white-color);
    transition: var(--transition);
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 0;
    border: 1px solid var(--white-color);
}

.btn_theme_white:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 580px;
    height: 550px;
    margin: auto;
    background: var(--black-color);
    border-radius: 50%;
    z-index: -1;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: translateX(-50%) translateY(-5%) scale(.4);
    transform: translateX(-50%) translateY(-5%) scale(.4);
    transition: var(--transition);

}

.btn_theme_white:hover:before {
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    -webkit-transform: translateX(-45%) translateY(0) scale(1);
    transform: translateX(-50%) translateY(0) scale(1);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    border: none;
}

.btn_theme_transparent {
    color: var(--white-color);
    background-color: transparent;
    transition: var(--transition);
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 0;
    border: 1px solid var(--white-color);
}


.btn_theme_transparent:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 580px;
    height: 550px;
    margin: auto;
    background: var(--black-color);
    border-radius: 50%;
    z-index: -1;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: translateX(-50%) translateY(-5%) scale(.4);
    transform: translateX(-50%) translateY(-5%) scale(.4);
    transition: var(--transition);

}

.btn_theme_transparent:hover:before {
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    -webkit-transform: translateX(-45%) translateY(0) scale(1);
    transform: translateX(-50%) translateY(0) scale(1);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    border: none;
}


.btn_md {
    padding: 10px 46px;
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: 400;border-radius: 40px;;
}

.btn_sm {
    font-size: 14px;
    padding: 5px 18px;
}

.btn_navber {
    color: #fff;
    border: 2px solid #afabab;
    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 #000000;
}

/* --Banner Area-- */
#home_one_banner {
    /*background-color: #041422;*/
    background-image: linear-gradient(0deg,#15457b,#041422);
/*    padding: 370px 0 93px 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;
}

#form-wizard {
    margin-top: -140px;
}

.form-wizard-area {
    background: #FFFFFF;
    box-shadow: 4px 14px 28px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 30px 30px;
    position: relative;
}

.form-wizard-area-tab-btn .nav-item {
    margin-right:10px;
}

.form-wizard-area-tab-btn.nav-item:last-child {
    margin-right: 0px;
}

.form-wizard-area-tab-btn .nav-tabs {
    border-bottom: none;
    margin-top: -70px;
    background: #fff;
    padding: 14px 20px 0;
    border-radius: 10px;
    box-shadow: 1px 2px 20px #303030;
    text-align: center;
}

.form-wizard-area-tab-btn .nav-tabs .nav-item.show .nav-link,
.form-wizard-area-tab-btn .nav-tabs .nav-link.active {
    color: #2196F3;
    background: none;
    border-color: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
}

.form-wizard-area-tab-btn .nav-tabs .nav-link {
    color: #000;
    background: none;
    border-color: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
}

.form-wizard-area-tab-btn .nav-tabs .nav-link i {
    margin-bottom: 10px;
    font-size: 26px;
}

.form-wizard-area-tab-btn {
    width: 100%;
    max-width: 868px;
    margin: 0 auto 30px;
}


.flight_Search_boxed {
    background: #ffffff30;
    padding: 20px 10px 20px 20px;
    border-radius: 2px;
    position: relative;
    border: 1px solid #e2e2e2;
}

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

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

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

.range_plan i {
    background: #f5eefd;
    font-size: 16px;
    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: 13px;
}

.new-york-img{
    min-height: 422px;
}

.flight_Search_boxed input {
    font-size: 30px;
    width: 87%;
    border: none;
    background: transparent;
    font-weight: 500;
    height: 35px;
    padding: 0;
}

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

.flight_Search_boxed span {
    display: block;
    font-size: 14px;
    padding-top: 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #4a4a4a;
}

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

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

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

.dropdown_passenger_area .dropdown-menu.show {
    transform: translate(-56%, 70px) !important;
}

.dropdown_passenger_area .dropdown-menu {
    z-index: 1000;
    min-width: 730px;
    right: 0;
    left: unset;
    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;
    margin: unset;
    padding: unset;
    box-shadow: 0 1px 6px 0 rgba(0,0,0,.2);
}
.dropdown_passenger_area .dropdown-menu .title-p{
    font-weight: 700;
    font-size: 12px;
    color: #4a4a4a;
}
.dropdown_passenger_area .dropdown-menu .mute-p{
            color: #9b9b9b;
            font-size: 12px;
            font-weight:normal;
}

.dropdown_passenger_area .dropdown-menu .appendBottom25 .column {
    flex-basis: 49%;
}
.traveller-calulate-persons .passengers .passengers-types .passengers-type {
    display: flex;
    align-items: center;
    padding: 8px 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: 15px;
}

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

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

.traveller-calulate-persons .label-select-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px 10px;
}

.traveller-calulate-persons .label-select-btn:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.traveller-calulate-persons .label-select-btn.active {
    background: var(--main-color);
    color: var(--white-color);
}


.traveller-calulate-persons .muiButton-label {
    font-size: 14px;
}

.traveller-calulate-persons .cabin-selection h6 {
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--main-color);
}

.top_form_search_button {
    text-align: center;
    margin-top: 4px;
    top: 50px;
    position: relative;
}

.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: #ffffff;
    border-color: none;
    background: #279eff;
}

.flight_categories_search .nav-tabs .nav-link {
    margin-bottom: 0;
    color: var(--black-color);
    border-radius: 6px;
    border: none;
    font-weight: 500;
    background: transparent;
}

/*.flight_categories_search {
    position: absolute;
    top: 68px;
}*/

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



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

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

.guide_hlder .guide_width {
    border-radius: 30px 5px 5px 5px;
    padding: 15px;
    display: flex;
    align-items: center;
    flex-direction: row;
    border: 0;
    position: relative;
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
    width: 49%;
    background: #fff url(../img/bg-guide.svg);
    background-repeat: no-repeat;
    background-position: -17% 93%;
}

.guide_hlder .guide_img {
    width: 105px;
    margin-right: 10px;
}

.guide_hlder .guide_content {
    width: 82%;
    margin-left: auto;
}

.guide_hlder .guide_heading {
    font-size: 20px;
    font-weight: 600;
}

.guide_hlder .guide_para {
    font-size: 17px;
    margin: 2px 0;
}

.guide_hlder .guide_anchor {
    font-size: 15px;
}

.guide_hlder .guide_anchor a {
    text-decoration: none;
    color: #2196F3;
}

.booking-step {
    background: url(../img/zig-zag.svg);
    background-repeat: no-repeat;
    background-position: 50% 0%;
    background-size: contain;
    width: 100%;
    margin-top: 10px;
}

.booking-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    position: relative;
    padding-bottom: 30px;
}

.booking-stepbox {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 15px 20px;
    position: relative;
    z-index: 1;
}

.booking-stepbox-img {
    width: 100%;
    margin: auto;
}

.booking-stepbox-heading {
    width: 100%;
    margin: 10px 0;
    font-weight: 600;
    font-size: 18px;
    margin-top: 30px;
}

.booking-stepbox-para {
    font-size: 16px;
    color: #4D4D4D;
}

.all-para {
    font-size: 15px;
    font-weight: 400;
    color: var(--paragraph-color);
    line-height: 28px;
    margin: 10px 0;
}

/* --Footer Area-- */
footer {
    padding: 100px 0px;
    background: url(../img/footer-bg.jpg);
    position: relative;
    background-attachment: fixed;
    background-position: inherit;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

footer:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    background: #000000d6;
}

.footer_heading_area h5 {
    border-bottom: 1px solid var(--main-color);
    display: inline-flex;
    padding-bottom: 5px;
    font-weight: 500;
}

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

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

.footer_inquery_area h5 {
    font-size: 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: #d2d2d2;
    font-size: 16px;
    font-weight: 400;
    transition: var(--transition);
}

.footer_link_area ul li a:hover {
    color: var(--main-color);
}

.soical_icon_footer li a i {
    font-size: 16px;
}

.copyright_area {
    background-color: var(--bg-color);
    padding: 15px 0;
}

.copyright_left p {
    color: var(--black-color);
    font-size: 14px;
    font-weight: 500;
}

.copyright_right {
    text-align: right;
}

.mean-container a.meanmenu-reveal {
    width: 35px;
    height: 30px;
    padding: 12px 15px 0 0;
    position: absolute;
    right: 0;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-indent: -9999em;
    line-height: 22px;
    font-size: 1px;
    display: block;
    font-weight: 700;
}

.mean-container .mean-bar {
    float: left;
    width: 100%;
    position: absolute;
    background: 0 0;
    padding: 20px 0 0;
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, .03);
    height: 55px;
    top: 6px;
}

.mean-container .mean-nav ul li a {
    display: block;
    float: left;
    width: 90%;
    padding: 1em 5%;
    margin: 0;
    text-align: left;
    color: #677294;
    border-top: 1px solid #dbeefd;
    text-decoration: none;
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 3px;
    width: 100%;
    height: 24px;
    padding: 12px !important;
    text-align: right;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    font-weight: 700;
    background: 0 0;
    border: none !important;
}

/* --Top To Bottom-- */

.go-top {
    position: fixed;
    cursor: pointer;
    top: 0;
    right: 15px;
    color: #fff;
    background-color: var(--main-color);
    z-index: 4;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .9s;
    transition: .9s;
    border-radius: 50%
}

.go-top.active {
    top: 98%;
    -webkit-transform: translateY(-98%);
    transform: translateY(-98%);
    opacity: 1;
    visibility: visible
}

.go-top i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: .6s;
    transition: .6s
}

.go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%
}

.go-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #393953;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .6s;
    transition: .6s;
    border-radius: 50%
}

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

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

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

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


fieldset {
    margin: 5vh 0;
    padding: 3%;
    border: 1px solid silver;
  }
  
  legend {
    padding: 0 20px;
    font-size: 1.25em;
  }
  
  label {
    position: relative;
  }
  
 /*
  input[type="radio"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
  }
  */

  /*input[type="radio"] + label::before {
    content: '\a0';
    display: inline-block;
    margin: .2em .5em;
    width: .8em;
    height: .8em;
    line-height: .75em;
    transition: all .5s;
    border: 1px solid silver;
  }
  
  input[type="radio"] + label::before {
    border-radius: 50%;
  }*/
  
/*
  input[type="radio"]:checked + label::before {
    content: '\a0';
    background: #2196F3;
    border: 1px solid white;
    box-shadow: inset 0 0 0 1px white, 0 0 0 1px #2196F3;

  }*/

  .fare-type-sec label{
    margin: 0;
  }
.traveller-calulate-persons{
    padding: 20px 25px;
}
.btn-default-btn{
    background-color: gray !important;
    text-transform: capitalize;
    margin-top: 10px;
    font-weight: 900;
    /*line-height: 16px;*/
    font-size: 16px;
    color: #fff;
    box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.22);
    cursor: pointer;
    text-transform: uppercase;
    height: 44px;
    width: 100%;
    border: none;
    display: block;
    outline: none;
}

.btn-default-btn-backto{
     background-color: gray !important;
    text-transform: capitalize;
    margin-top: 10px;
    font-weight: 900;
    line-height: 16px;
    font-size: 16px;
    color: #fff;
    box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.22);
    cursor: pointer;
    text-transform: uppercase;
    height: 44px;
    width: 100%;
    border: none;
    display: block;
    outline: none;
}
  .roomsGuestsBottom {
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 1px 6px 0 rgba(0,0,0,.2);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guestCounter {
    display: inline-flex;
    border-radius: 4px;
    background-color: #ffffff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
    margin: 10px 0px 20px;
    align-items: center;
}
.guestCounter li {
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
    width: 36px;
    height: 32px;
    position: relative;
    z-index: 2;
}
.guestCounter li:hover{
    color: #fff;
    background: #008cff;
}
 .guestCounter li.selected {
    color: #fff;
    background: #000;
    font-weight: 900;
}

.guestCounter li.selected:after {
    width: 100%;
    height: 38px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    background: #008cff;
    border-radius: 4px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
    z-index: -1;
}
.gbCounter li:first-child{
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.gbCounter li:last-of-type {
    
    border-radius: 4px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
}
.select-classes li{
        width: unset;
    padding: 0px 10px;
}
.makeFlex.hrtlCenter {
    align-items: center;
}.btnApply {
    width: 88px;
    height: 32px;
}.primaryBtn {
    background-image: var(--color-btn-primary-bg,linear-gradient(93deg,#53b2fe,#065af3));
    border: 0;
    border-radius: 34px;
    box-shadow: 0 1px 7px 0 rgba(0,0,0,.2);
    color: #fff;
    cursor: pointer;
    display: inline-block;
    flex-shrink: 0;
    outline: 0;
    text-align: center;
    text-transform: uppercase;
}
.trip-type-dropdown{
        background: transparent;
    border: unset !important;
    padding: unset !important;
    outline: unset;
    font-size: 15px;
    font-weight: 500;
}
 .triptype-dropdown-menu{
    margin-top: 10px;
    padding: 10px;
}
.dropdown_passenger_info{
margin-top: 10px;
}
 .triptype-dropdown-menu li{
    font-weight: 700;
    font-size: 14px;
    color: #4a4a4a;
    line-height: 25px;
    cursor: pointer;
}
..trip-type-dropdown::after{
    display: none;
}
.dropdown .dropdown-toggle:focus{
    outline: unset;
    border:unset;
}
.search-flight-boxed{background:#fcfcfcba;padding:10px 4px; }

    .search-flight-boxed input {
        font-size: 15px;
        width: 87%;
        border: none;
        background: transparent;
        font-weight: 500;
        height: 23px;}
        
        .left-sidebar-sec{background: #fff;width: 100%; border-radius: 8px; padding:14px 10px;    box-shadow:0 3px 30px 0 rgb(0 0 0 / 33%);}
        .filtersHeading{font-size: 16px;font-weight:600;color: #000;;}
        .fliter_box { display: flex; justify-content: space-between; font-size: 15px; font-weight: 500; margin-bottom: 10px; }
        .checkboxContainer { cursor: pointer; display: flex; }
        .commonCheckbox {display: flex; position: relative; }
        .checkboxContent {line-height: 19px;margin-left: 10px;}
        .appendLeft5 { margin-left: 5px;}
        .left-sidebar-sec datalist { display: flex; flex-direction: row;  justify-content: space-between; width: 100%; }
        input[type="range"] {  width: 100%;    margin: 0;}
        .timeSlotsOuter {
            display: flex;
            justify-content: flex-start;
        }.filterTimeSlots.slotSelected {
            color: #fff;
            background-color: #068eff;
            border: 0.7px solid #068eff;
            text-align: center;
            font-size: 12px;
            padding: 10px;
            border-radius: 7px;
        }.checkBlockIcon {
            width: 34px;
            height: 34px;
            display: inline-block;    margin-bottom: 2px;
            background-size: contain;
            background-position: 50%;
            background-repeat: no-repeat;
        }
        .fontSize10 {
            font-size: 12px;
            color: #fff;
        }
        .filterTimeSlots{
            color: #fff;
            border: 0.7px solid #303030;    background: #303030;
            text-align: center;
            font-size: 12px;
            padding: 10px;margin:4px;
            border-radius: 7px;
        }
        .fliter_box label{padding-left: 8px;}
        .search-filter-holder{margin-top: -80px;position: relative;z-index: 11;margin-bottom: 50px;}
        .flight-right-sidepanel h1{font-size: 22px; color: #303030; border-radius: 8px; font-weight: 600;  background: #fff; padding: 14px;  line-height: 26px;}
      /*  .flight-fare-range-sec{background: #fff;  }*/
        .d-block strong{font-size: 11px;}
        .timeline-container .timeline-list {text-align: center;-ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important; scrollbar-width: none;
             -ms-overflow-style: none;  white-space: nowrap; overflow-x: auto;  overflow-y: hidden; height: 60px; }
          .timeline-container .timeline-list .active { background-color: #2196F3; border: none; }
          .timeline-container .timeline-list .active:hover {background-color: #252525; }
          .timeline-container .timeline-list .active .timeline-date {color: #fff; }
          .timeline-container .timeline-list::-webkit-scrollbar {width: 0;height: 0;}
          .timeline-container .timeline-item {display: inline-block;float: none;height: 32px;font-size: 0.875rem;text-transform: uppercase;         background-color: #fff;
            border-style: solid; border-color: #e2e3e5; border-top-width: 1px;border-right-width: 0; border-bottom-width: 1px; border-left-width: 1px;
            padding-top: 5px; padding-left: 0; padding-right: 0; }
          .timeline-container .timeline-item a:hover,.timeline-container .timeline-item a:visited, .timeline-container .timeline-item a:link,
          .timeline-container .timeline-item a:active { text-decoration: none; color: #252525; }
          .timeline-container .timeline-item:hover {  background-color: #e2e3e5;  }
          .timeline-container .timeline-item:active { background-color: #e2e3e5; }
          .timeline-container .prev-btn,.timeline-container .next-btn {text-align: center;color: #252525; cursor: pointer; font-size: 1.5rem;      background-color: #e9ecef;
            padding: 0; height: 32px; }
          .timeline-container .prev-btn:hover,.timeline-container .next-btn:hover {background-color: #e2e3e5;}          
          .theme_nav_tab_item .nav-tabs .nav-item.show .nav-link, .theme_nav_tab_item .nav-tabs .nav-link.active { color: #303030; background-color:#eaf5ff;
           }
        .clusterTabHeadList {padding: 6px 0; flex: 1; cursor: pointer; height: 60px;  display: flex; position: relative; }      
         .theme_nav_tab_item .nav-tabs{
            justify-content: space-between;
         }
         .theme_nav_tab_item .nav-tabs .nav-link {margin-bottom: 0; flex-basis: 33.33%; background: 0 0; text-align: left;    color: #303030;  padding:10px 20px;
            font-size: 14px; border-radius: 0;    border: 1px solid #d4d4d4; }
.para-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 15px;
    border-bottom: 1px solid #ddd;
}
.para-text span{font-size: 14px;font-weight: 500;color: #000;}
.para-text span.par-spn{background-color: rgb(255, 241, 218);padding: 8px 20px;border-radius: 36px;}
.appendBottom15 { margin-bottom: 15px;}
.listingCard {
    padding: 20px;
    background: #fff;
    margin-top: 20px;
    position: relative;
    box-shadow: 0 3px 30px 0 rgb(184 177 177);
    border: 2px solid #ccc;
    border-radius: 8px;
}
.makeFlex {display: flex;}
.makeFlex.spaceBetween {justify-content: space-between;}
.makeFlex.hrtlCenter {align-items: center;}
.clusterContent .airline-info-wrapper, .simpleow .airline-info-wrapper, .split_combinedmc .airline-info-wrapper {
    width: 170px;}
    
    .arln-logo, .multiairline {
    width: 35px;
    margin: 0px 10px 0px 10px;
    height: 35px;
    border-radius: 4px;
    display: block;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
    .airlineName { width: 100px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;}
    .fli-code, .fliCode { color: #878787; font-size: calc(var(--font-scale, 1)*11px);}
.para-aileline{font-size: 12px; font-weight: 500; color: #000;  line-height: 18px;}.flexOne.timeInfoLeft { margin:0 12px;}
.stop-info.flexOne { margin:0 12px;}.flexOne.timeInfoRight { margin:0 12px;font-size: 12px;}
.ViewFareBtn { border: 1px solid #008cff;border-radius: 96px;    margin: 0px 0 0 12px; color: #008cff; background: #daebff;
 font-weight: 700; font-size: calc(var(--font-scale, 1)*13px);   position: relative;  padding: 0 8px;  height: 31px; display: flex;
 align-items: center; justify-content: center;  text-transform: uppercase;  cursor: pointer;  width: 120px;}
.alertMsg { 
background-color: rgb(255, 237, 209); min-height: 22px;
    border-radius: 8px; color: #000;  font-size: calc(var(--font-scale, 1)*12px); text-align: center; padding: 3px 15px; margin: 10px 0;
}

.listing-row-flight{
        justify-content: space-between;
    align-items: center;
    width: 100%;
}
.listing-row-flight .flight-check{
    flex-basis: 5%;
}
.listing-row-flight .flight-check .form-check-input{
border: 1.5px solid #000000;
    width: 1.2em;
    height: 1.2em;
        margin-left: 0;
}
.flight-check .form-check .form-check-input{
    margin-left: 0;
}
.listing-row-flight .flight-check .form-check-input:checked{
background-color: #000;
    border-color: #000;
}
.listing-row-flight .flight-check .form-check-input:focus{
    border-color: #000;
    box-shadow: unset;
}
/*.listing-row-flight .form-check{
    margin-top: -10px;
}*/
.listing-row-flight .airline-info-wrapper{
    flex-basis: 40%;
}
.listing-row-flight .data-flight-row{
    flex-basis: 55%;
    justify-content: space-between;
}

.rounded-trip-flight{
        border-radius: 4px;
    position: relative;
    padding: 10px;
    background-color: rgb(221 221 221 / 44%);
    margin-top: 15px;
}

.rounded-trip-flight-label .label-p{
    font-weight: 600;
    color: #000;
    font-size: 12px;
}

.rounded-trip-flight-label .label-p span{
    color: #000;
    opacity: .8;
}

.request-arrar{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 0px;
    background-color: #fff;
    z-index: 99;
    box-shadow: 0 3px 30px 0 rgba(0,0,0,.1);
}

.request-arrar .number-select-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.request-arrar .number-select-row p{
        font-weight: 600;
    color: #303030;
    font-size: 16px;
}

.request-arrar .number-select-row p span{
    color: #068eff;
}

.request-arrar .number-select-row .btn-request{
    border: 1px solid #008cff;
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(93deg,#53b2fe,#065af3);
    font-weight: 700;
    font-size: 13px;
    position: relative;
    padding: 0 8px;
    height: 31px;
    cursor: pointer;
    width: 120px;
}

.modal{
    z-index: 99999;
}

.modal-login{
    max-width: 999px;
}

.request-form .modal-dialog{
        right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: 0;
    min-height: 100vh;
    width: 400px;
}

.request-form .modal-dialog .modal-content{
    min-height: 100vh;
    border-radius: unset;
}

.form-modal-body h3{
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.form-modal-body p{
        font-size: 12px;
    color: #000;
    opacity: .6;
    line-height: unset;
    margin-top: 10px;
}


.form-modal-body .form-group{
    margin-top: 15px;
}
.form-modal-body .form-group label{
    font-size: 11px;
    color: #000000;
    opacity: .6;
    font-weight: 500;
}

.form-modal-body .form-group .form-control{
    font-size: 13px;
    color: #000000;
    font-weight: 500;
    border: 1px solid #dddddd;
    box-shadow: unset;
    height: unset;
    padding: 8px 10px;
    margin-top: 0px;
}

.form-modal-body .form-group .form-control::placeholder{
    opacity: .5;
}

.btn-cancel{
    border: 1px solid #000000;
    border-radius: 50px;
    color: #000000 !important;
    background: #dddddd;
    font-weight: 700;
    font-size: 13px;
    position: relative;
    padding: 0 8px;
    height: 31px;
    cursor: pointer;
    width: 120px;
}

.btn-submit{
    border: 1px solid #008cff;
    border-radius: 50px;
    color: #fff !important;
    background: linear-gradient(93deg,#53b2fe,#065af3);
    font-weight: 700;
    font-size: 13px;
    position: relative;
    padding: 0 8px;
    height: 31px;
    cursor: pointer;
    width: 120px;
}
.accordian-tabs{
    border: none;
    background: #fff;
    display: inline-flex;
    box-shadow: 0 0 3px #ccc;
    font-size: 12px;
    margin-bottom: 24px;
}
.accordian-tabs .nav-link{color: rgba(0,0,0,.85); border: unset;}
.accordian-tabs .nav-item.show .nav-link, .accordian-tabs .nav-link.active{
        background: #0091ff;
    color: #fff;
    font-weight: 700;
    border-radius: 2px;
    border: unset;
}

.flight-details{
        color: #0091ff !important;
        font-weight: 600;
    cursor: pointer;
    font-size: 12px;
    margin-top: 10px;
}

.airline-detaisl{
        border-radius: 4px;
    border: 1px solid #dfdfdf;
        margin-bottom: 20px;
}
.airline-detaisl h2{
    border-bottom: 1px solid #dfdfdf;
    padding: 12px 10px;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    line-height: unset;
}

.airline-detaisl .flight-details-row-1{
    padding: 12px 10px;
    display: flex;
    flex-direction: row;
}

.airline-detaisl .flight-details-row-1 .flight-details-col-1{
    flex-basis: 33.33%;
}

.airline-detaisl .flight-details-row-1 .flight-details-col-1 h3{
        color: #000000;
        font-weight: 900;
        font-size: 18px;
}
.airline-detaisl .flight-details-row-1 .flight-details-col-1 h4{
    color: #000000;
        font-size: 12px;
        margin-bottom: 8px;
        font-weight: 700;
}
.airline-detaisl .flight-details-row-1 .flight-details-col-1 h5{
    color: #4a4a4a;
    font-size: 12px;
}
.airline-detaisl .flight-details-row-1 .flight-details-col-1 h6{
    color: #4a4a4a;
    font-size: 12px;
}

.flight-details-row-2{
     padding: 12px 10px;
    display: flex;
    flex-direction: row;
}

.airline-detaisl .flight-details-row-2 .flight-details-col-2{
    flex-basis: 33.33%;
        text-align: left;
    padding-right: 10px;
}

.airline-detaisl .flight-details-row-2 .flight-details-col-2 h4{
    font-weight: 900;
    font-size: 14px;
}
.airline-detaisl .flight-details-row-2 .flight-details-col-2 p{
        color: #4a4a4a;
        font-size: 12px;
}

.flight-details-row-0{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 10px 0px;
}
.flight-details-row-0 .flight-logo{
        margin-right: 10px;
}
.flight-details-row-0 .flight-logo img{
    height: 25px;
    object-fit: cover;
    object-position: top;
    border-radius: 4px;
}

.flight-details-row-0 .flight-details-logo h5{
    font-size: 12px;
    font-weight: 900;
}
.flight-details-row-0 .flight-details-logo h5 span{
    color: #6d7278;
    font-weight: normal;
}

.register-row{
    max-width: 1070px;
  width: 100%;
  display: flex;
}


.register-row .image-section {
  width: 50%;
  position: relative;
}
.register-row .image-wrapper {
  width: 100%;
  height: 100%;
}
.register-row .image-wrapper img {
  object-fit: cover;
  height: 100%;
}

.register-row .content-container {
  background-color: hsla(0, 0%, 100%, 0.3);
  backdrop-filter: blur(30px);
  padding: 2rem;
  width: 80%;
  color: var(--text-dark);
  border-radius: 4px;
  border: 1px solid hsl(0 100% 100% / 0.3);

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.register-row .content-container h1 {
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.register-row .content-container span {
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 60rem) {
  .register-row {
    width: 100%;
    margin: 0;
  }
  .register-row .content-container {
    width: 100%;
  }
}

.register-row .form-section {
  width: 50%;
  background-color: white;
  padding: 2.5rem 1rem;
  display: flex;
  align-items: center;
}

.register-row .form-wrapper {
  width: 75%;
  margin: 0 auto;
}

.register-row .form-wrapper > h2 {
  margin-bottom: 0.1rem;
}
.register-row .form-wrapper > p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.register-row .input-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.register-row .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.register-row .form-group label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #16164d;
  margin: 0;
}
.register-row .form-group input {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem;
  border: 2px solid var(--primary-lighter);
  border-radius: 0.3rem;
}
.register-row .form-group input:focus {
  border: 2px solid #16164d;
}

.register-row .remember-forgot {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.register-row .remember-me {
  display: grid;
  grid-template-columns: 1rem auto;
  gap: 0.6rem;
}

.register-row input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  display: grid;
  place-content: center;
}

.register-row .remember-me input {
  width: 1rem;
  height: 1rem;
  margin-right: 0.3rem;
  border: 1px solid var(--text-light);
  border-radius: 2px;
}

.register-row input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  background-color: white;
  transform: scale(0);
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
}

.register-row input[type="checkbox"]:checked::before {
  transform: scale(1);
}
.register-row .remember-me input:checked {
  background: var(--primary-gradient);
}

.register-row .remember-me label {
  color: var(--text-dark);
  user-select: none;
}
.register-row .remember-forgot a {
  color: var(--primary);
}
.register-row .remember-forgot a:hover {
  text-decoration: underline;
  text-decoration-color: var(--primary);
}

.register-row .login-btn,
.register-row .google-signin {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;

  font-weight: 500;
  padding: 0.5rem 0;
  border-radius: 0.5rem;
}

.register-row .login-btn {
  color: white;
  background: var(--primary-gradient);
}
.register-row .login-btn:hover {
  opacity: 0.9;
}

.register-row .or-divider {
  width: 100%;
  font-weight: 600;
  color: var(--text-light);
  margin-block: 1.5rem;
  text-align: center;
  position: relative;
}
.register-row .or-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px;
  width: 45%;
  background-color: var(--text-light);
}
.register-row .or-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 1px;
  width: 45%;
  background-color: var(--text-light);
}

.register-row .google-signin {
  border: 2px solid var(--primary-lighter);
}
.register-row .google-signin svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media screen and (max-width: 50rem) {
  .register-row {
    max-width: 80%;
    flex-direction: column;
    margin-inline: 0;
  }

  .register-row .image-section,
  .register-row .form-section {
    width: 100%;
  }

  .register-row .image-section {
    height: 25vh;
  }
  .register-row .content-container {
    inset: 0;
    transform: translate(0, 0);
    padding: 1rem 1.6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .register-row .content-container h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  .register-row .content-container p {
    font-size: 0.75rem;
  }

  .register-row .form-section {
    flex: 1;
    padding: 1rem 1rem;
  }
.register-row .logo-container {
    margin-bottom: 1rem;
  }
  .register-row .form-wrapper > h2 {
    font-size: 1.25rem;
  }
  .register-row .form-wrapper > p {
    margin-bottom: 1rem;
  }
  .register-row .form-wrapper button {
    font-size: 0.875rem;
  }
  .register-row .or-divider {
    font-weight: 500;
    margin-block: 0.6rem;
  }
}

@media screen and (max-width: 36.25rem) {
  .register-row {
    max-width: 100%;
  }
  .register-row .form-wrapper {
    width: 100%;
  }
}


.top-search-banner{
    background-image: linear-gradient(0deg,#15457b,#051423);
    padding: 194px 0 140px 0;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.top-search-banner .nav-tabs{
    border:unset;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px 0 rgba(0,0,0,.1);
    display: flex;
    height: 100px;
    padding: 8px 30px;
    justify-content: space-between;
    width: 885px;
    margin: 0 auto;
    position: absolute;
    z-index: 99;
    top: -55px;
    left: 50%;
    transform: translate(-50%, 0px);
}


.top-search-banner .nav-tabs .nav-item{
    margin: 0 !important;
        

}

.top-search-banner .nav-tabs .nav-link{
    padding: unset;
    border:unset;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
    font-size: 14px;
    color: #4a4a4a;
    position: relative;
    border-bottom: 3px solid #fff;
}

.top-search-banner .nav-tabs .nav-link.active{
    font-weight: 900;
    color: #008cff;
    border: unset;
}

.top-search-banner .nav-tabs .nav-link.active:after{
    background: #008cff;
    border-radius: 10px;
    bottom: -17px;
    content: "";
    display: inline-flex;
    height: 3px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 2;
}
.headerform-icons {
    align-items: center;
    display: flex;
    height: 40px;
    justify-content: center;
    width: 52px;
    margin: 0 auto 10px;
}
.headerform-icons .chSprite {
    background-image: url(../img/B2CHeaderSprite.png)!important;
    /* background-repeat: no-repeat; */
    background-size: 156px 240px;
}

.active .headerform-icons .chFlights {
    background-position: -5px -44px;
}
.headerform-icons .chSprite {
    background-size: 260px 400px;

}
.headerform-icons .chFlights {
    background-position: -5px -4px;
    height: 32px;
    width: 42px;
}

.headerform-icons .chHotels {
    background-position: -60px 0;
    height: 40px;
    width: 36px;
}


.headerform-icons .chForex {
    background-position: -167px -83px;
    height: 34px;
    width: 30px;
}
.active .chForex {
    background-position: -167px -123px;
}

.headerform-icons .chCabs {
    background-position: -110px -82px;
    height: 37px;
    width: 39px;
}
.active .chCabs {
    background-position: -110px -122px;
}
.headerform-icons .chBuses {
    background-position: -210.5px -2px;
    height: 36px;
    width: 43px;
}

.active .chBuses {
    background-position: -209px -42px;
}

.headerform-icons .chTrains {
    background-position: -156.5px -3px;
    height: 37px;
    width: 47px;
}

 .active .chTrains {
    background-position: -156px -41px;
}
.active .chBuses {
    background-position: -209px -42px;
}

.headerform-icons .chHolidays {
    background-position: -109px -4px;
    height: 33px;
    width: 42px;
}

.active .chHolidays {
    background-position: -109px -44px;
}

.headerform-icons .chHomestays {
    background-position: -57px -83px;
    height: 37px;
    width: 44px;
}

.active .chHomestays {
    background-position: -56px -121.5px;
}
.headerform-icons .chHotels {
    background-position: -60px 0;
    height: 40px;
    width: 36px;
}

.active .chHotels {
    background-position: -62px -41.5px;
}

.active .chHomestays {
    background-position: -56px -121.5px;
}

.tab-content-banner-search{
    width: 1200px;
    margin: 0 auto;
    position: relative;
   /* z-index: 10;*/
    border-radius: 8px;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 60px 20px 40px;
}

.flight-search-row{
        width: 100%;
    margin: 0 auto 20px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: solid 1px #e7e7e7;
    position: relative;
}

.flight-search-row .flight-search-row-col-1:hover {
    background: #eaf5ff;
    border-radius: 8px 0 0 8px;
}

.flight-search-row .flight-search-row-col-2:hover {
    background: #eaf5ff;
    border-radius: 8px 0 0 8px;
}

.flight-search-row .flight-search-row-col-3:hover {
    background: #eaf5ff;
    border-radius: 8px 0 0 8px;
}

.flight-search-row .flight-search-row-col-4:hover {
    background: #eaf5ff;
    border-radius: 8px 0 0 8px;
}

.flight-search-row .flight-search-row-col-5:hover {
    background: #eaf5ff;
    border-radius: 8px 0 0 8px;
}

.flight-search-row-col-1 {
    width: 300px;
    height: 112px;
    border-right: solid 1px #e7e7e7;
    position: relative;
}

.flight-search-row-col-1 label{
    padding: 10px 19px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.flight-search-row-col-1 span{
        color: #4a4a4a;
        margin-bottom: 10px;
        font-weight: 400;
        font-size: 14px;
}

.flight-search-row-col-1 .form-field{
    border: 0;
    outline: 0;
    background: none;
    min-width: 140px;
    max-height: 36px;
    line-height: 36px;
    cursor: pointer;
    padding: 0px;
    margin: 0px;
    font-weight: 900;
    font-size: 30px;
}

.flight-search-row-col-1 p{
        overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
        display: inline-block;
        font-weight: 400;
        font-size: 14px;
        color: #4a4a4a;
}

.flight-search-row-col-2 {
    width: 300px;
    height: 112px;
    border-right: solid 1px #e7e7e7;
    position: relative;
}

.flight-search-row-col-2 label{
    padding: 10px 19px 10px 40px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.flight-search-row-col-2 label::after{
    display: none;
}

.flight-search-row-col-1 label::after{
    display: none;
}

.flight-search-row-col-2 span{
        color: #4a4a4a;
        margin-bottom: 10px;
        font-weight: 400;
        font-size: 14px;
}

.flight-search-row-col-2 .form-field{
    border: 0;
    outline: 0;
    background: none;
    min-width: 140px;
    max-height: 36px;
    line-height: 36px;
    cursor: pointer;
    padding: 0px;
    margin: 0px;
    font-weight: 900;
    font-size: 30px;
}

.flight-search-row-col-2 p{
        overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
        display: inline-block;
        font-weight: 400;
        font-size: 14px;
        color: #4a4a4a;
}

.flight-search-row-col-3{
        width: 158px;
    height: 112px;
    border-right: solid 1px #e7e7e7;
    position: relative;
}

.flight-search-row-col-3 label{
    padding: 10px 19px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.flight-search-row-col-3 span{
        color: #4a4a4a;
        margin-bottom: 10px;
        font-weight: 400;
        font-size: 14px;
}

.flight-search-row-col-3 span.arrow-down::after {
    border: solid #008cff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    content: '';
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    vertical-align: top;
    margin: 3px 0 0 8px;
    transition: all 0.3s ease-in-out;
}

.flight-search-row-col-3 .form-field{
    border: 0;
    outline: 0;
        background: none;
    min-width: 140px;
    max-height: 36px;
    /* line-height: 36px; */
    /* cursor: pointer; */
    /* padding: 0px; */
    /* margin: 0px; */
    font-weight: 900;
    font-size: unset;
    opacity: 0 !important;
    /* display: none; */
    visibility: hidden;
    margin-top: -25px;
}

.flight-search-row-col-3 h3 span.date{
    font-weight: 900;
    font-size: 30px;
        line-height: 30px;
            color: #000000;
}
.flight-search-row-col-3 h3 span.month{
        color: #000000;
        font-size: 20px;
}
.flight-search-row-col-3 h3 span.year{
    color: #000000;
        font-size: 20px;
}
.flight-search-row-col-3 h3 span.year::before {
    content: "'";
}

.flight-search-row-col-3 p{
        overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
        display: inline-block;
        font-weight: 400;
        font-size: 14px;
        color: #4a4a4a;
}

.flight-search-row-col-5{
        width: 214px;
    border-radius: 0 10px 10px 0;
}

.flight-search-row-col-5 label{
    padding: 10px 19px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.flight-search-row-col-5 span{
        color: #4a4a4a;
        margin-bottom: 10px;
        font-weight: 400;
        font-size: 14px;
}

.flight-search-row-col-5 span.arrow-down::after {
    border: solid #008cff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    content: '';
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    vertical-align: top;
    margin: 3px 0 0 8px;
    transition: all 0.3s ease-in-out;
}

.flight-search-row-col-5 h3 span.date{
    font-weight: 900;
    font-size: 30px;
        line-height: 30px;
            color: #000000;
}
.flight-search-row-col-5 h3 span.month{
        color: #000000;
        font-size: 20px;
}


.flight-search-row-col-5 p{
        overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
        display: inline-block;
        font-weight: 400;
        font-size: 14px;
        color: #4a4a4a;
}

.top-selctor-form-inputs{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.top-selctor-form-inputs .radio-buttons-top label{
    color: #4a4a4a;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
}

.top-selctor-form-inputs .top-p-option p a{
    color: #4a4a4a;
    font-weight: 400;
    font-size: 14px;
}

.bottom-flex-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.bottom-flex-row .bottom-flex-row-col-1{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.bottom-flex-row .bottom-flex-row-col-1 .fare-type-p p{
        color: #4a4a4a;
        font-size: 12px;
            font-weight: 700;
            line-height: unset;
}
.bottom-flex-row .bottom-flex-row-col-1 .radio-selectors {
    margin-left: 5px;
    display: flex;
    position: relative;
    background: #f2f2f2;
    border-radius: 4px;
}

.bottom-flex-row .bottom-flex-row-col-1 .radio-selectors label{
    position: relative;
    padding: 8px 8px 8px 30px;
    cursor: pointer;
    font-size: 12px;
    color: #4a4a4a;
    border-left: solid 1px #fff;
    display: flex;
    align-items: center;
    height: 45px;
    min-width: 80px;
    max-width: 134px;
    line-height: 14px !important;
}

.bottom-flex-row .bottom-flex-row-col-1 .radio-selectors label:hover{
        background: #eaf5ff;
}
.bottom-flex-row .bottom-flex-row-col-1 .radio-selectors:first-of-type label{
    border-left: none;
    border-radius: 4px 0 0 4px;
}

.bottom-flex-row .bottom-flex-row-col-1 .radio-selectors:last-of-type label{
    border-radius: 0 4px 4px 0;
}

.btn-search-form-index{
    width: 216px;
    padding: 10px;
    margin: 40px auto -60px;
    opacity: 1;
        color: #fff;
        background-image: linear-gradient(93deg,#53b2fe,#065af3);
    border: 0;
    border-radius: 34px;
    box-shadow: 0 1px 7px 0 rgba(0,0,0,.2);
    color: #fff;
    cursor: pointer;
    display: block;
    flex-shrink: 0;
    outline: 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
}

.drop-down-search-flight{
    border-radius: 4px;
    background-color: #ffffff;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
    width: 316px;
    position: absolute;
    left: 0;
    top: 100%;
    min-height: 200px;
    overflow: hidden;
    z-index: 999999;
    padding: 0;
    margin: 0;
}

.trip-type-dropdown-menu{
        border-radius: 4px;
    background-color: #fff;
    -webkit-box-shadow: 0 1px 6px 0 rgba(0,0,0,.2);
    box-shadow: 0 1px 6px 0 rgba(0,0,0,.2);
    position: absolute;
    right: 0;
    top: 48px;
    width: 125px;
    z-index: 1;
        margin: 0;
    padding: 0;
}

.trip-type-dropdown-menu ul li{
    padding: 8px 10px;
    color: #9b9b9b;
    font-weight: 700;
    cursor: pointer;
    font-size: 12px;
}
.trip-type-dropdown-menu ul li:hover {
    color: #fff!important;
    background: #008cff;
}
.trip-type-dropdown-menu ul li:first-child:hover {
    border-radius: 4px 4px 0 0;
}

.trip-type-dropdown-menu ul li:last-child:hover {
    border-radius: 0px 0px 4px 4px;
}

.drop-down-search-flight h3{
    text-transform: uppercase;
    padding: 10px;
    color: #9b9b9b;
    font-weight: 600;
    font-size: 12px;
}

.drop-down-search-flight ul{
    list-style-type: none;
    padding: 0;
    margin:0;
    max-height: 180px;
    overflow-y: auto;
}

.drop-down-search-flight ul li{
    padding: 5px 10px;
    margin-bottom: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.drop-down-search-flight ul li:hover {
    background: #f2f2f2;
}

.drop-down-search-flight .flight-icon{
    margin-right: 8px;
     flex-basis: 10%;
}

.drop-down-search-flight .city-name{
    flex-basis: 90%;
    padding-right: 5px;

}

 .drop-down-search-flight .flight-shortname{
     flex-basis: 10%;
}

.drop-down-search-flight .city-name p{
        color: #000;
        font-size: 14px;
        line-height: 1;
        margin: unset;
}

.drop-down-search-flight .city-name span{
    color: #9b9b9b;
    font-size: 12px;
    display: block;
    margin: unset;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    line-height: 1;
}

.drop-down-search-flight .flight-shortname p{
        color: #9b9b9b;
        font-weight: 700;
        line-height: 1;
        font-size: 14px;
}

.list-search-box{
    background: #ffffff;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 11px 10px 11px 30px;
    outline: 0;
    border: 0;
    width: 100%;
    font-size:16px;
    color: #000000;
    font-weight: 700;
}
.search-box-with-icon{
    position: relative;
}
.search-box-with-icon:after{
        width: 10px;
    height: 10px;
    background: url(../img/spriteModifySearch.png) no-repeat;
    background-size: 50px 50px;
    background-position: -20px -5px;
    content: '';
    position: absolute;
    left: 10px;
    top: 18px;
}

.traveller-details-dropdown-menu{
    padding: unset;
    left: unset;
    right: 0;
    z-index: 9999;
    min-width: 730px;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 10px;
    box-shadow: 0 1px 6px 0 rgba(0,0,0,.2);
}

.traveller-details-dropdown-menu .traveler-dropdown-top{
    padding: 20px 25px;
}

.traveller-details-dropdown-menu p.traveller-sub-head{
    font-size: 12px;
    font-weight: 700;
    margin-bottom: unset;
    line-height: 1;
    color: #4a4a4a;
}
.traveller-details-dropdown-menu span.traveller-sub-head-label{
    margin-top: 4px;
        color: #9b9b9b;
        font-size: 12px;
    font-weight: 700;
    display: block;
/*        margin: unset;*/
    line-height: 1;


}

.traveller-details-dropdown-menu ul{
    display: inline-flex;
    border-radius: 4px;
    background-color: #ffffff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
    margin: 10px 0px 20px;
    align-items: center;
}

.traveller-details-dropdown-menu .travel-class-name li{
    width: unset;
    padding: 0px 10px;
}

.traveller-details-dropdown-menu ul li {
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
    width: 36px;
    height: 32px;
    position: relative;
    z-index: 2;
}
.traveller-details-dropdown-menu ul li:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.traveller-details-dropdown-menu ul li:hover {
    color: #fff;
    background: #008cff;
}

.traveller-details-dropdown-menu ul li.selected {
    color: #fff;
    background: #008cff;
    font-weight: 900;
}

.traveller-details-dropdown-menu ul li.selected:after {
    width: 100%;
    height: 38px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    background: #008cff;
    border-radius: 4px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.traveller-details-dropdown-menu ul li:last-of-type {
    border-radius: 4px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
}

.traveller-details-dropdown-menu .traveler-dropdown-bottom{
    .border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 1px 6px 0 rgba(0,0,0,.2);
    padding: 20px 25px;
}

.traveller-details-dropdown-menu .traveler-dropdown-bottom button{
    background-image: linear-gradient(93deg,#53b2fe,#065af3);
    border: 0;
    border-radius: 34px;
    box-shadow: 0 1px 7px 0 rgba(0,0,0,.2);
    color: #fff;
    cursor: pointer;
    display: inline-block;
    flex-shrink: 0;
    outline: 0;
    text-align: center;
    text-transform: uppercase;
        width: 88px;
    height: 32px;
    font-weight: 600;
    font-size: 14px;
    line-height: 0px;
    display: block;
    margin-left: auto;
}

.flight-search-row-col-5 .dropdown-toggle::after{
    display: none;
}

.round-icons-top{
     width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 100%;
    background: #fff;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 30px 0 rgba(0, 0, 0, 0.1);
    z-index: 1;
    cursor: pointer;
    position: absolute;
    top: 32px;
    right: -21px;
        text-align: center;
    line-height: 60px;
}

.round-icons-top span{
        background-image: url(https://imgak.mmtcdn.com/pwa_v3/pwa_commons_assets/desktop/landingSprite@22x.webp);
    background-repeat: no-repeat;
    display: inline-block;
    background-size: 200px 700px;
    font-size: 0px;
    flex-shrink: 0;
        width: 15px;
    height: 11px;
    background-position: -149px -111px;
}

.flight-page-top-search-banner-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.row-alignmnt-row{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.flight-page-top-search-banner-row .common-colum-search{
    background: hsla(0,0%,100%,.1);
    border-radius: 4px;
    margin-right: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    min-height: 46px;
}

.flight-page-top-search-banner-row .flight-page-top-search-banner-row-col-1{
        width: 125px
}
.flight-page-top-search-banner-row-col-1 .dropdown-toggle:after{
    display: none;
}
  .flight-page-top-search-banner-row .flight-page-top-search-banner-row-col-1 label{
    padding: 4px 9px;
    width: 100%;
    margin: 0;
    cursor: pointer;
}
.flight-page-top-search-banner-row .flight-page-top-search-banner-row-col-1 label .head-p-label{
    text-transform: uppercase;
    color: #008cff;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 12px;
    font-size: 12px;
}
.flight-page-top-search-banner-row .flight-page-top-search-banner-row-col-1 label .arrow-and-trip{
    position: relative;
}
.flight-page-top-search-banner-row .flight-page-top-search-banner-row-col-1 label .arrow-and-trip p{
    color: #fff;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: unset;
}
.flight-page-top-search-banner-row .flight-page-top-search-banner-row-col-1 label .arrow-and-trip:before {
    border: 5px solid transparent;
    border-top-color: #243950;
    top: 0%;
    z-index: 2;
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 0px;
}
   
.flight-page-top-search-banner-row .flight-page-top-search-banner-row-col-1 label .arrow-and-trip:after {
    border: 5px solid transparent;
    border-top-color: #fff;
    top: 10%;
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    z-index: 1;
    right: 0px;
}
   

.flight-page-top-search-banner-row .flight-page-top-search-banner-row-col-2{
        width: 160px
}
  .flight-page-top-search-banner-row .flight-page-top-search-banner-row-col-2 label{
    padding: 4px 9px;
    width: 100%;
    margin: 0;
    cursor: pointer;
}
.flight-page-top-search-banner-row .flight-page-top-search-banner-row-col-2 label .head-p-label{
    text-transform: uppercase;
    color: #008cff;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 12px;
    font-size: 12px;
}
.flight-page-top-search-banner-row .flight-page-top-search-banner-row-col-2 label .input-field{
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    border: 0;
    outline: 0;
    background: none;
    width: 100%;
    cursor: pointer;
    text-transform: capitalize;
}

.flight-page-top-search-banner-row .flight-page-top-search-banner-row-col-2 label .input-field.datetype-range{
    visibility: hidden;
    margin-top: -25px;
}

.flight-page-top-search-banner-row .flight-page-top-search-banner-row-col-2 label h6{
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    border: 0;
    outline: 0;
    background: none;
    width: 140px;
    cursor: pointer;
    text-transform: capitalize;
        margin-top: -16px;
}

.flight-check{
    flex-basis: 5%;
}
.flight-page-top-search-banner-row .flight-page-top-search-banner-row-col-2 .dropdown-toggle:after{
    display: none;
}

.flight-page-top-search-banner-row .divider-cion{
        background: url(../img/Listing_sprite.png);
    display: inline-block;
        margin-right: 8px!important;
            background-position: -66px -448px;
    width: 15px;
    height: 11px;
}

.btn-search-top-banner{
    width: 176px;
    height: 40px;
    margin-left: 30px;
    flex-shrink: 0;
    border: none;
    outline: 0;
    cursor: pointer;
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(93deg,#53b2fe,#065af3);
    font-size: 13px;
    font-weight: 700;
}

.bottom-flex-row-flight .bottom-flex-row-col-1{
    display: flex;
    flex-direction: row;
    margin-top: 10px;
}

.bottom-flex-row-flight .bottom-flex-row-col-1 .fare-type-p p{
    color: #9b9b9b;
    margin-right: 10px;
    font-weight: 700;
    font-size: 12px;
}

.bottom-flex-row-flight .radio-selectors{
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    background: #213952;
    color: #fff;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 1px;
    position: relative;
}

.bottom-flex-row-flight .radio-selectors .form-check-inline .form-check-input {
    margin-top: 1px;
}

.search-mobile-view{
    display: none;
}

.mobile-view-search-col-listing{
    display: none;
}

.header-profile a{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-profile a .image img{
    height: 40px;
    width: 40px;
    border-radius: 50px;
    object-position: top;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.header-profile a:after{
    display: none;
}
.header-profile a .user-name{
    padding-left: 15px;
}
.header-profile a .user-name h6{
font-size: 14px;
    color: #000;
    font-weight: 600;
}
.header-profile a .user-name p{
    font-size: 14px;
    color: #000;
    opacity: 0.7;
}

.header-profile .dropdown-menu{
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    margin: 0;
    padding: 10px;
    background-color: #f5faff;
    border:unset;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.header-profile .dropdown-menu a{
        color: #000000;
    font-weight: 400;
    background-color: transparent;
    display: block;
    line-height: 30px;
    font-size: 14px;
    padding: 0;
}

.header-profile .dropdown-menu a:focus{
    background-color: transparent;
    color: #008cff;
}
.header-profile .dropdown-menu a:hover{
    color: #008cff;
}

.breadcrums-panel{
    padding-top: 108px;
}
.breadcrums-panel ul{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.breadcrums-panel ul li{
    display: inline-block;
    margin-right: 10px;
}
.breadcrums-panel ul li a{
    font-size: 13px;
    color: #92918F;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.breadcrums-panel ul li a span{
    width: 0.25rem;
    height: 0.25rem;
    background-color: #92918F;
    border-radius: 50%;
    display: block;
    margin-right: 0.5rem;
}
.breadcrums-panel ul li:last-child a{
    color: #000;
    font-weight: 600;
}
.user-dashboard-panel-row{
    /*display: flex;*/
    flex-direction: row;
    border-top: 1px solid #DDDDDD;
    margin-top: 20px;
    margin-bottom: 30px;
}
.user-dashboard-panel-row .user-dashboard-left-panel{
    flex-basis: 25%;
    padding-top:20px;
    padding-right: 20px;
    border-right: 1px solid #DDDDDD;
}

.user-dashboard-panel-row .user-dashboard-right-panel{
    flex-basis: 75%;
    padding-top:20px;
    padding-left: 20px;
}
.user-dashboard-panel-row .user-dashboard-right-panel .main-h{
    font-weight: 600;
    font-size: 18px;
    color: #000;
    line-height: 1;
}
.user-dashboard-panel-row .user-dashboard-right-panel .manage-profile-dash{
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 16px;
    background: #fff;
    margin-top: 20px;
}
.user-dashboard-panel-row .user-dashboard-right-panel .profile-details-right{
    margin-bottom: 20px;
}
.user-dashboard-panel-row .user-dashboard-right-panel .profile-details-right label{
        display: block;
    color: #000;
    opacity: 0.5;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 3px;
}
.user-dashboard-panel-row .user-dashboard-right-panel .profile-details-right p{
        font-size: 13px;
    color: #000;
    font-weight: 600;
    line-height: unset;
}

.user-dashboard-panel-row .user-dashboard-right-panel .profile-details-right .form-control{
    border: 1px solid #dddddd;
    box-shadow: unset;
    padding: 8px 10px;
    line-height: unset;
    height: unset;
    font-size: 15px;
    color: #000;
}

.user-dashboard-right-panel  .manage-profile-dash h6{
    margin-bottom: 5px;
    color: #000;
    font-weight: 400;
    font-size: 15px;
    opacity: 0.8;
    line-height: unset;
}

.user-dashboard-panel-row .user-dashboard-left-panel .profile-image-section{
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    background: linear-gradient(178.59deg, #091D1D 0.05%, #0E2020 98.35%);
}

.user-dashboard-panel-row .user-dashboard-left-panel .profile-image-section .image-profile-page img{
    height: 105px;
    width: 105px;
    border-radius: 50%;
}

.user-dashboard-panel-row .user-dashboard-left-panel .profile-image-section .details-profile-page{
    padding-top: 10px;
}

.user-dashboard-panel-row .user-dashboard-left-panel .profile-image-section .details-profile-page p{
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    line-height: unset;
}

.user-dashboard-panel-row .user-dashboard-left-panel .profile-image-section .details-profile-page p a{
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-decoration: underline;
    display: block;
    margin-top: 3px;
}

.user-dashboard-panel-row .user-dashboard-left-panel .profile-image-section .details-profile-page h6{
    font-size: 14px;
    color: #fff;
    line-height: unset;
}

.user-dashboard-panel-row .user-dashboard-left-panel .profile-menus {
    margin-top: 30px;
}
.user-dashboard-panel-row .user-dashboard-left-panel .profile-menus h5 {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    margin-bottom: 5px;
}

.user-dashboard-panel-row .user-dashboard-left-panel .profile-menus ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.user-dashboard-panel-row .user-dashboard-left-panel .profile-menus ul li {
    line-height: 30px;
}
.user-dashboard-panel-row .user-dashboard-left-panel .profile-menus ul li a {
    color: #151e28;
    font-size: 16px;
}
.user-dashboard-panel-row .user-dashboard-left-panel .profile-menus ul li a i {
    margin-right: 5px;
}

.btn-save-change{
    padding: 5px 15px;
    opacity: 1;
    color: #fff;
    background-image: linear-gradient(93deg,#53b2fe,#065af3);
    border: 0;
    border-radius: 50px;
    box-shadow: 0 1px 7px 0 rgba(0,0,0,.2);
    color: #fff;
    cursor: pointer;
    display: block;
    flex-shrink: 0;
    outline: 0;
    text-align: center;
    font-size: 16px;
    line-height: 25px;
}


.messages-row{
    display: flex;
    flex-direction: row;
    border:1px solid #dddddd;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.messages-row .messages-col-1{
    flex-basis: 5%;
}
.messages-row .messages-col-1 img {
    height: 40px;
    width: 40px;
    border-radius: 50px;
    object-position: top;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
.messages-row .messages-col-2{
    flex-basis: 95%;
    padding-left: 15px;
}

.messages-row .messages-col-2 .ettinery-details{
    font-size: 14px;
    color: #000;
    font-weight: 500;
}
.messages-row .messages-col-2 .ertinery-message{
    font-size: 13px;
    color: #000;
    font-weight: 400;
    opacity: .7;
    line-height: unset;
    margin-bottom: 5px;
}

.messages-row .messages-col-2 .time-message{
    font-size: 11px;
    color: #000;
    font-weight: 400;
    opacity: .5;
    line-height: unset;
    margin-bottom: 15px;
}

.messages-row .messages-col-2 a{
    padding: 5px 25px;
    opacity: 1;
    color: #fff;
    background-image: linear-gradient(93deg,#53b2fe,#065af3);
    border: 0;
    border-radius: 50px;
    box-shadow: 0 1px 7px 0 rgba(0,0,0,.2);
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    outline: 0;
    text-align: center;
    font-size: 16px;
    line-height: 25px;
}

.table-grid-data-res{
    max-width: 100%;
    overflow: auto;
}

.table-grid-data-res .table .btn-view-details{
    font-size: 13px;
    padding: 2px 8px 0px;
    box-shadow: 0 1px 7px 0 rgba(0,0,0,.2);
    margin-right: 5px;
}

.table-grid-data-res .table .btn-view-details::last-child{
margin-right: 0;
}

.table-grid-data-res  th, .table-grid-data-res  td{
    white-space: nowrap;
}

.table-grid-data-res table thead tr{
    border-top: unset;
}

.table-grid-data-res  th{
    font-size: 13px;
    color: #000;
    font-weight: 500;
    opacity: .5;
    vertical-align: middle;
    border-bottom:1px solid #e9ecef !important;
}

.table-grid-data-res  td{
    font-size: 13px;
    color: #000;
    font-weight: 400;
    vertical-align: middle;
}

.table-grid-data-res .btn-view-details.btn-1{
        border: 1px solid #065af3;
    color: #065af3;
}

.table-responsive{
    max-width: 100%;
    overflow: auto;
}

.table-grid-data-res .btn-view-details.btn-2{
    border: 1px solid #5cb85c;
    color: #5cb85c;
}

.Enquery-details-content{
    margin-bottom: 5px;
}

.Enquery-details-content p{
    line-height: unset;
}

.Enquery-details-content p span{
    font-size: 13px;
    color: #000;
    display: inline-block;
    opacity: .5;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.Enquery-details-content p label{
    display: inline-block;
    font-size: 14px;
    width: 170px;
    opacity: 1;
    color: #000;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.enq-head{
    color: #000;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

.borderable-rows{
    border: 1px solid #dddddd;
    padding: 10px;
    border-radius: 10px;
}

.borderable-rows h4{
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.contactus-right h4{
    line-height: 1;
    font-size: 32px;
    color: #000;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: .8;
}

.contactus-right p{
    line-height: 1;
    font-size: 16px;
    color: #1D1F21;
    font-weight: 400;
    opacity: .8;
    margin-bottom: 30px;
}

.contactus-right{
    margin-top: 20px;
}

.contactus-right label {
    display: block;
    color: #000;
    opacity: 0.5;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 3px;
}
.contactus-right .profile-details-right {
    margin-bottom: 20px;
}
.contactus-right .form-control {
    border: 1px solid #dddddd;
    box-shadow: unset;
    padding: 8px 10px;
    line-height: unset;
    height: unset;
    font-size: 15px;
    color: #000;
}

.contact-us-left .contact-us-details-row{
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.contact-us-left .contact-us-details-row .contact-us-details-co-1{
    flex-basis: 5%;
}



.contact-us-left .contact-us-details-row .contact-us-details-co-2{
    flex-basis: 95%;
    padding-left: 15px;
}
.contact-us-left{
        padding: 60px 37px;
    background: #f7f5f5;
    border-radius: 10px;
    margin-top: 20px;
}
.contact-us-left .contact-us-details-row .contact-us-details-co-2 h5{
    color: #000;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: unset;
}
.contact-us-left .contact-us-details-row .contact-us-details-co-2 p{
    color: #000;
    font-size: 15px;
    font-weight: 400;
    opacity: .5;
    line-height: 1;
}
.contact-us-left .contact-us-details-row .contact-us-details-co-2 a{
    color: #1066f4;
    font-size: 15px;
    font-weight: 400;
    text-decoration: underline;
}

.about-top-bg{
    background-image: url(../img/all-inclusive.jpg);
    background-attachment: fixed;
    background-color: rgb(248, 248, 248);
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0px;
    margin-top: 20px;
}

.about-top-bg h3{
    font-size: 65px;
    line-height: 1em;
    margin: 0;
    text-align: center;
    font-weight: 600;
    color: #fff;
}

.about-us-contet p{
    font-size: 15px;
    font-weight: 400;
    line-height: unset;
    margin-bottom: 10px;
}
.accepted-flight-dtails{
    border: 1px solid #dddddd;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
}

.accepted-flight-dtails-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 20px;
}
.accepted-flight-dtails-row .accepted-flight-dtails-col-1{
    flex-basis: 6%;
}

.accepted-flight-dtails-row .accepted-flight-dtails-col-1 img{
    height: 40px;
    width: 40px;
    border-radius: 4px;
}

.accepted-flight-dtails-row .accepted-flight-dtails-col-2{
    flex-basis: 60%;
}

.accepted-flight-dtails-row .accepted-flight-dtails-col-2 h5{
    font-size: 16px;
    color: #000;
    font-weight: 500;
    line-height: unset;
    margin-bottom: 10px;
}

.accepted-flight-dtails-row .accepted-flight-dtails-col-2 p{
    font-size: 14px;
    color: #000;
    opacity: .5;
    line-height: unset;
}

.accepted-flight-dtails-row .accepted-flight-dtails-col-3{
    flex-basis: 13%;
}

.accepted-flight-dtails-row .accepted-flight-dtails-col-3 h4{
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.accepted-flight-dtails-row .accepted-flight-dtails-col-3 p{
    font-size: 14px;
    color: #000;
    opacity: .5;
    line-height: unset;
}

.accepted-flight-dtails-row .accepted-flight-dtails-col-4{
    flex-basis: 10%;
    padding-top: 10px;
}

.accepted-flight-dtails-row .accepted-flight-dtails-col-4 h5{
    font-size: 18px;
    font-weight: 500;
    color: #17a2b8;
}

.view-details-flight{
    font-size: 14px;
    font-weight: 500;
    color: #17a2b8;
}

.details-collapse-row{
        display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 20px;
}
.details-collapse-row .details-collapse-row-col-1{
    flex-basis: 10%;
}
.details-collapse-row .details-collapse-row-col-1 img{
    height: 30px;
    width: 30px;
    border-radius: 4px;
}
.details-collapse-row .details-collapse-row-col-2{
    flex-basis: 50%;
}
.details-collapse-row .details-collapse-row-col-2 h5{
    font-size: 14px;
    color: #000;
    font-weight: 500;
    line-height: unset;
}
.details-collapse-row .details-collapse-row-col-3{
        flex-basis: 20%;
}
.details-collapse-row .details-collapse-row-col-3 h5{
    font-size: 14px;
    color: #000;
    font-weight: 500;
    line-height: unset;
}
.details-collapse-row .details-collapse-row-col-3 p{
    font-size: 12px;
    color: #000;
    opacity: .5;
    line-height: unset;
}
.details-collapse-row .details-collapse-row-col-4{
    flex-basis: 10%;
}
.details-collapse-row .details-collapse-row-col-4 h5{
    font-size: 14px;
    color: #000;
    font-weight: 500;
    line-height: unset;
}


.accepted-flight-dtails .timeline {
  list-style: none;
  padding: 0;
  position: relative;
}

.accepted-flight-dtails .timeline:before {
  top: 6px;
    bottom: 65px;
    position: absolute;
    content: " ";
    width: 1px;
    background-color: #eeeeee;
    left: 48.5px;
    margin-left: -38.5px;
}

.accepted-flight-dtails .timeline > li {
  margin-bottom: 20px;
  position: relative;
}



.accepted-flight-dtails .timeline > li > .timeline-badge {
  color: #fff;
    width: 10px;
    height: 10px;
    line-height: 50px;
    font-size: 1.4em;
    text-align: center;
    position: absolute;
    top: 7%;
    left: 9%;
    margin-left: -25px;
    background-color: #999999;
    z-index: 100;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
}

.accepted-flight-dtails .timeline > li.timeline-inverted > .timeline-panel {
      padding-left: 30px;
}

.accepted-flight-dtails .timeline > li.timeline-inverted > .timeline-panel .tim-line-pael-row {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
}

.accepted-flight-dtails .timeline > li.timeline-inverted > .timeline-panel .tim-line-pael-row p{
    font-size: 13px;
    font-weight: 400;
    color: #000;
    opacity: .5;
    flex-basis: 49%;
    line-height: unset;
}


.radio-buttons-mobile{
        padding: 5px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 12px;
 }
  .radio-buttons-mobile .btn-group{
    flex-basis: 100%;
  }
 .radio-buttons-mobile .radio-buttons-btn{
    flex: 1;
    text-align: center;
    padding: 9px 13.5px;
    border-radius: 4px !important;
    background-color: transparent;
    font-size: 12px;
    font-weight: 900;
    outline: unset;
    border: unset;
    box-shadow: unset;
    opacity: 1;
 }
  .radio-buttons-mobile .radio-buttons-btn.active {
    color: #fff;
    background-color: rgb(0, 140, 255);
}

.input-group-prepend {
    margin-right: -1px;
}

.input-group>.input-group-prepend>.input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 10px;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}
.thank-you-details{
    padding: 30px;
  text-align: center;
}
.thank-you-details h1{
  font-size: 4em;
  letter-spacing: 3px;
  color: #065af3;
  margin: 0;
  margin-bottom: 20px;
}

.thank-you-details p {
  margin: 0;
  font-size: 1.3em;
  color: #aaa;
  letter-spacing: 1px;
}

.thank-you-details .go-home {
  color: #fff;
  background-image: linear-gradient(93deg,#53b2fe,#065af3);
  border: none;
  padding: 10px 50px;
  margin: 30px 0;
  border-radius: 30px;
  text-transform: capitalize;
  box-shadow: 0 10px 16px 1px rgba(174, 199, 251, 1);
  cursor: pointer;
}

.thank-you-details .thank-you-details-col{
        margin-bottom: 20px;
        text-align: left;
            display: flex;
    align-items: center;
}
.thank-you-details .thank-you-details-col label{
    display: block;
    color: #000;
    opacity: 0.5;
    font-weight: 500;
    font-size: 12px;
    margin-right: 10px;
    margin-bottom: 0;
}
.thank-you-details .thank-you-details-col p{
        font-size: 13px;
    color: #000;
    font-weight: 600;
    line-height: unset;
}

@media screen and (max-width: 600px){
    .btn-default-btn-backto{
        display: none;
    }
    .accepted-flight-dtails-row{
        flex-wrap: wrap;
        margin-bottom: 10px;
        justify-content: left;
    }
    .accordian-tabs .nav-link{
        padding: 5px 14px;
    }
   
   .breadcrums-panel{
    padding-top: 0px;
}

.accepted-flight-dtails-row .accepted-flight-dtails-col-1{
    flex-basis: 20%;
}
.accepted-flight-dtails-row .accepted-flight-dtails-col-2 {
    flex-basis: 80%;
}
.accepted-flight-dtails-row .accepted-flight-dtails-col-2 h5{
    font-size: 15px;
        margin-bottom: 0px;
}
.accepted-flight-dtails-row .accepted-flight-dtails-col-2 p{
    font-size: 12px;
}
.accepted-flight-dtails-row .accepted-flight-dtails-col-3 {
    flex-basis: 50%;
}
.accepted-flight-dtails-row .accepted-flight-dtails-col-4{
    flex-basis: 50%;
}


    footer{
        padding: 35px 0px;
    }
    #home_one_banner {
    padding: 30px 0 70px 0 !important;
    }
    .new-york-img{
        min-height: unset;
    }
    .btn_theme{
            display: inline-block;
    word-wrap: break-word;
    white-space: normal;
    line-height: 25px;
    }
    .main_header_arae{
        position: relative;
    }

    .search-mobile-view{
        position: relative;
    padding: 20px 15px 15px;
    box-shadow: inset 0 4px 6px 0 rgba(0, 0, 0, 0.2);
    display: block;
    }
    .mobile-text-field{
        position: relative;
    }

    .mobile-text-field label {
    display: flex;
    align-items: center;
    min-height: 61px;
    padding: 3px 7px;
    border-radius: 2px;
    background-color: rgb(247, 247, 247);
    border: 1px solid rgb(231, 231, 231);
    margin-bottom: 10px;
    width: 100%;
}
.mobile-text-field label .mobile-search-icon span{
    background-position: -30px -29px;
    width: 20px;
    height: 17px;
        background-image: url(../img/searchFormsSprite4.png);
    -webkit-background-size: 300px 300px;
    -moz-background-size: 300px 300px;
    background-size: 300px 300px;
    background-repeat: no-repeat;
    display: inline-block;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}
.mobile-text-field label .mobile-search-icon-return span{
    background-position: -6px -28px;
    width: 20px;
    height: 17px;
        background-image: url(../img/searchFormsSprite4.png);
    -webkit-background-size: 300px 300px;
    -moz-background-size: 300px 300px;
    background-size: 300px 300px;
    background-repeat: no-repeat;
    display: inline-block;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}
.mobile-text-field label .mobile-search-icon-pesenger span{
    background-position: -156px -4px;
    width: 20px;
    height: 17px;
        background-image: url(../img/searchFormsSprite4.png);
    -webkit-background-size: 300px 300px;
    -moz-background-size: 300px 300px;
    background-size: 300px 300px;
    background-repeat: no-repeat;
    display: inline-block;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}
.mobile-text-field label .mobile-search-icon-departure span{
        background-position: -25px -5px;
    width: 16px;
    height: 15px;
        background-image: url(../img/searchFormsSprite4.png);
    -webkit-background-size: 300px 300px;
    -moz-background-size: 300px 300px;
    background-size: 300px 300px;
    background-repeat: no-repeat;
    display: inline-block;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}
.direction-arrow-mobile{
    z-index: 1;
    position: absolute;
    right: 10px;
    top: 52px;
}
.direction-arrow-mobile span{
        background-position: -93px -29px;
    width: 36px;
    height: 37px;
        background-image: url(../img/searchFormsSprite4.png);
    -webkit-background-size: 300px 300px;
    -moz-background-size: 300px 300px;
    background-size: 300px 300px;
    background-repeat: no-repeat;
    display: inline-block;
    -webkit-flex-shrink: 0;

}
.mobile-text-field span {
    color: #747474;
    line-height: unset;
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 11px;
    display: block;
}

.mobile-text-field .form-field {
    border: 0;
    outline: 0;
    background: none;
    width: 100%;
    line-height: unset;
    cursor: pointer;
    padding: 0px;
    margin: 0px;
    font-weight: 900;
    font-size: 16px;
    display: block;
}

 .mobile-text-field p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    display: inline-block;
    font-weight: 400;
    font-size: 11px;
    color: #747474;
    line-height: unset;
    display: block;
}

 .mobile-text-field p span{
    color: #4a4a4a;
    font-size: 12px;
    display: inline-block;
 }

 .mobile-text-field .departure-date span{
    font-size: 14px;
    color: #000000;
    font-weight: 900;
    display: inline-block;
 }
 .btn-mobile-search{
    margin-top: 10px;
    background-image: linear-gradient(97deg, #53b2fe, #065af3 130%);
    font-weight: 900;
    line-height: 16px;
    font-size: 16px;
    color: #fff;
    box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.22);
    cursor: pointer;
    text-transform: uppercase;
    height: 44px;
    width: 100%;
    border: none;
    display: block;
    outline: none;
 }

 .special-fare h4{
    line-height: unset;
    color: #9b9b9b;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 12px;
 }
 .special-fare ul{
    width: 100%;
    display: flex;
    overflow-y: auto;
    padding: 8px 0;
    position: relative;
 }
  .special-fare ul li:first-child {
    margin-left: 5px;
}
 .special-fare ul li{
    text-align: center;
    font-size: 14px;
    border-radius: 4px;
    flex-shrink: 0;
    margin-right: 12px;
    padding: 8px 20px;
    border: 1px solid transparent;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
 }

 

.mobile-arrival-departure-modal .modal-dialog{
    height: 100vh;
    padding: 0;
    margin: 0;
    border-radius: unset;
}

.mobile-arrival-departure-modal .modal-dialog .modal-content{
    height: 100vh;
    border-radius: unset;
    border:unset;
}
.mobile-arrival-departure-modal .modal-dialog .modal-content .modal-body .search-mobile-view{
    position: unset;
    padding: unset;
    box-shadow: unset;
    display: unset;
}
.mobile-arrival-departure-modal .modal-dialog .modal-content .modal-body .search-mobile-view .mobile-text-field .mobile-search-icon span{
        background-position: -172px -28px;
    width: 16px;
    height: 16px;
}
.mobile-arrival-departure-modal .modal-dialog .modal-content .modal-body .search-mobile-view .mobile-text-field label{
    border: 1px solid rgb(209, 226, 242);
    background-color: rgb(241, 248, 254);
    min-height: 50px;
}
.mobile-arrival-departure-modal .modal-dialog .modal-content .modal-body .search-mobile-view .mobile-text-field .mobile-search-icon{
    flex-basis: 5%;
}
.mobile-arrival-departure-modal .modal-dialog .modal-content .modal-body .search-mobile-view .mobile-text-field .mobile-form-right{
    flex-basis: 95%;
    padding-left: 20px;
}
.mobile-arrival-departure-modal .modal-dialog .modal-content .modal-body .search-mobile-view .mobile-text-field .mobile-form-right span{
    font-weight: 700;
    color: rgb(155, 155, 155);
    text-transform: uppercase;
    font-size: 11px;
}
.mobile-arrival-departure-modal .modal-dialog .modal-content .modal-body .search-mobile-view .mobile-text-field .mobile-form-right .form-field{
    height: 23px;
    outline: none;
    background-color: rgb(241, 248, 254);
    border: 0 none;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.mobile-modal-arrival-listing .label-and-icon span{
background-position: -150px -48px;
    width: 17px;
    height: 17px;
    margin-right: 10px;
    background-image: url(../img/searchFormsSprite4.png);
    -webkit-background-size: 300px 300px;
    -moz-background-size: 300px 300px;
    background-size: 300px 300px;
    background-repeat: no-repeat;
    display: inline-block;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}
.mobile-modal-arrival-listing .label-and-icon{
    color: #9b9b9b;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.mobile-modal-arrival-listing ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.mobile-modal-arrival-listing ul li{
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    margin: 15px 0px;
}
.mobile-modal-arrival-listing{
    max-height: 515px;
    overflow-y: auto;
}
.mobile-modal-arrival-listing ul li .icon{
    flex-basis: 5%;
}
.mobile-modal-arrival-listing ul li .icon span{
        background-image: url(../img/ic-flight-onward.png);
    height: 20px;
    width: 20px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    background-size: contain;
    }
.mobile-modal-arrival-listing ul li .flight-name-detail{
    flex-basis: 85%;
    padding-left: 10px;
    padding-right: 10px;
}
.mobile-modal-arrival-listing ul li .flight-name-detail .city-name{
    font-size: 16px;
    line-height: 1;
    display: block;
}
.mobile-modal-arrival-listing ul li .flight-name-detail .address-sirport{
        color: #9b9b9b;
        font-size: 14px;
        display: block;
}
.mobile-modal-arrival-listing ul li .flight-name-short{
    flex-basis: 10%;
    color: #9b9b9b;
    font-weight: 700;
    font-size: 16px;
    text-align: right;
}

.mobile-trevler-hisory .modal-dialog {
    height: 100vh;
    padding: 0;
    margin: 0;
}
.mobile-trevler-hisory .modal-dialog .modal-content{
    background: transparent;
    height: 100vh;
}
.mobile-trevler-hisory .modal-dialog .modal-content .modal-body{
    background: #fff;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 100px;
    padding: 0;
    position: fixed;
}
.mobile-trevler-hisory .modal-dialog .modal-content .modal-body .header-travel{
        position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    align-items: center;
    background-color: #fff;
    z-index: 1;
    box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.2);
        padding: 15px 16px 15px 15px;
}
.mobile-trevler-hisory .modal-dialog .modal-content .modal-body .header-travel .icon span{
    background-image: url(../img/searchFormsSprite4.png);
    -webkit-background-size: 300px 300px;
    -moz-background-size: 300px 300px;
    background-size: 300px 300px;
    background-repeat: no-repeat;
    display: inline-block;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
        background-position: -153px -30px;
    width: 14px;
    height: 14px;
    margin-right: 16px;
}
.mobile-trevler-hisory .modal-dialog .modal-content .modal-body .header-travel .heading p{
        color: #000000;
            text-align: left;
            font-weight: 700;
            font-size: 16px;
            line-height: unset;
}

.mobile-trevler-hisory .modal-dialog .modal-content .modal-body .bottom-details-main-travel{
    height: 100%;
    overflow-y: auto;
    padding: 20px 15px 40px;
}
.mobile-trevler-hisory .modal-dialog .modal-content .modal-body .bottom-details-main-travel .category-rows p{
        color: #9b9b9b;
            margin-bottom: 8px;
            line-height: unset;
            font-weight: 700;
            font-size: 12px;
}
.mobile-trevler-hisory .modal-dialog .modal-content .modal-body .bottom-details-main-travel .category-rows .cat-and-toggle{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.mobile-trevler-hisory .modal-dialog .modal-content .modal-body .bottom-details-main-travel .category-rows .cat-and-toggle .cat-and-toggle-col-1{
margin-bottom: 30px;
flex-basis: 70%;
}

.mobile-trevler-hisory .modal-dialog .modal-content .modal-body .bottom-details-main-travel .category-rows .cat-and-toggle .cat-and-toggle-col-1 h6{
    margin-bottom: 3px;
    line-height: unset;
    font-size: 16px;
    color: #4a4a4a;
    font-weight: 700;

}
.mobile-trevler-hisory .modal-dialog .modal-content .modal-body .bottom-details-main-travel .category-rows .cat-and-toggle .cat-and-toggle-col-1 p{
    margin:0;
    line-height: unset;
    font-size: 12px;
    font-weight: normal;
        color: #9b9b9b;
}
.mobile-trevler-hisory .modal-dialog .modal-content .modal-body .bottom-details-main-travel .category-rows .cat-and-toggle .cat-and-toggle-col-2{
margin-bottom: 30px;
flex-basis: 30%;
text-align: right;
}

.quantity {
  display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: rgb(4, 4, 4);
    width: 120px;
    padding: 2px;
    min-height: 40px;
    border-radius: 4px;
    background-color: #ffffff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
}
.adquantity__minus,
.adquantity__plus {
      flex-basis: 33.33%;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #000 !important;
}

.adquantity__input {
  flex-basis: 33.33%;
  max-width: 40px;
  text-align:center;
  margin: 0;
  padding: 0;
  color: #000;
    font-size: 22px;
    font-weight: 700;
    border: unset;
    background-color: transparent;
}
.chquantity__minus,
.chquantity__plus {
      flex-basis: 33.33%;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #000 !important;
}

.chquantity__input {
  flex-basis: 33.33%;
  max-width: 40px;
  text-align:center;
  margin: 0;
  padding: 0;
  color: #000;
    font-size: 22px;
    font-weight: 700;
    border: unset;
    background-color: transparent;
}
.inquantity__minus,
.inquantity__plus {
      flex-basis: 33.33%;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #000 !important;
}

.inquantity__input {
  flex-basis: 33.33%;
  max-width: 40px;
  text-align:center;
  margin: 0;
  padding: 0;
  color: #000;
    font-size: 22px;
    font-weight: 700;
    border: unset;
    background-color: transparent;
}

.traveler-bottom-bg{
    background-color: #eaf5ff;
    border-radius: 4px;
    padding: 8px;
    min-height: 48px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.traveler-bottom-bg .icon span{
    background-image: url(../img/group-booking-icon.png);
    background-repeat: no-repeat;
    background-size: 22px 22px;
    -webkit-background-size: 22px 22px;
    -moz-background-size: 22px 22px;
    width: 22px;
    display: block;
    height: 22px;
    align-self: center;
    margin-right: 10px;
}

.traveler-bottom-bg .interduce p{
    font-size: 12px;
    line-height: unset;
    color: #4a4a4a;
    font-weight: 400;
}

.cabin-radio-button  .btn-group {
    width: 100%;
    overflow-x: auto;
    padding: 10px 0px;
}
.cabin-radio-button .radio-buttons-btn.active {
    font-weight: 700;
    color: rgb(0, 140, 255);
    background-color: rgb(242, 249, 255);
    border: 1px solid rgb(0, 140, 255);
    box-shadow: none;
}

.cabin-radio-button .radio-buttons-btn {
    font-size: 14px;
    color: #4a4a4a;
    font-weight: 400;
    border-radius: 4px;
    flex-shrink: 0;
    margin-right: 12px;
    border-radius: 4px !important;
    padding: 8px 20px;
    border: 1px solid transparent;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
}

.btn-cabin-filter{
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    border-radius: 34px;
    background-image: -webkit-linear-gradient(354deg, #53b2fe, #065af3);
    background-image: -moz-linear-gradient(354deg, #53b2fe, #065af3);
    background-image: -o-linear-gradient(354deg, #53b2fe, #065af3);
    background-image: linear-gradient(96deg, #53b2fe, #065af3);
    -webkit-box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.2);
    display: inline-block;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    cursor: pointer;
    outline: 0;
    border: 0;
    text-align: center;
    font-size: 16px;
        height: 44px;
    margin-top: 20px;
    width: 100%;
}

.top-search-banner{
    display: none;
}
.mobile-view-search-col-listing{
    display: block;
    background-image: linear-gradient(0deg,#15457b,#051423);
    padding: 10px 0px 30px;
}

.mobile-view-search-col-listing .nav-tabs{
    border: unset;
    justify-content: space-between;
}
.mobile-view-search-col-listing .nav-tabs li{
        margin: unset;
    flex-basis: 49%;
    margin-top: 15px;
    margin-left: unset;
}

.mobile-view-search-col-listing .nav-tabs li a{
        border-radius: 8px;
    box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.2);
    padding: 10px;
    color: #000000 !important;
    background-color: #fff;
    border: 1px solid rgb(0, 140, 255);
    display: block;
    font-weight: 700;
    text-align: center;
}

}

.mobile-filters-button-container{
    display:none;
}