.hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    padding: 0;
}

.hero-section .carousel-item {
    height: 400px;
    position: relative;
}

.hero-section .bannerimage {
    width: 100%;
    height: 100%;
    background: #0f172a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 1.2s ease, filter 1.2s ease;
}

.hero-section .carousel-item.active .bannerimage {
    transform: scale(1.05);
}

/* .hero-section .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
} */

.hero-section .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    padding: 0px;
    max-width: 90%;
    width: 100%;
}

.hero-section .carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-section .carousel-caption p {
    font-size: 1.25rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

.hero-section .carousel-caption {
    opacity: 0;
    animation: fadeIn 1.5s forwards 0.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .hero-section .carousel-caption h1 {
        font-size: 2.2rem;
    }

    .hero-section .carousel-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section .carousel-caption h1 {
        font-size: 1.6rem;
    }

    .hero-section .carousel-caption p {
        font-size: 0.9rem;
    }
}



/* ============================= */
/*        FLIGHT SEARCH FORM     */
/* ============================= */
.banner-sec-seven {
    padding: 0;
    position: relative;
}

.banner-sec-seven .banner-form {
    margin-top: -74px;
    position: relative;
    z-index: 11;
}

.banner-sec-seven .tts_product_box {
    background: #fff;
    box-shadow: 0 0 24px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 10px 10px 10px;
    padding: 22px;
    width: 100%;
}


/* ============================= */
/*        SEARCH TABS            */
/* ============================= */
.banner-sec-seven .search_tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 0px 0;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.banner-sec-seven .search_tabs li {
    margin: 0;
}

.banner-sec-seven .search_tabs li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    height: 50px;
    font-size: 16px;
    color: #fff;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-sec-seven .search_tabs li:first-child a {
    border-radius: 8px 0 0 0;
}

.banner-sec-seven .search_tabs li:last-child a {
    border-radius: 0 8px 0 0;
}

.banner-sec-seven .search_tabs li a.current {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    color: #0ea5e9;
}

.banner-sec-seven .search_tabs i {
    margin-right: 8px;
    font-size: 16px;
}


@media screen and (max-width: 1000px) {
    .banner-sec-seven .search_tabs {
        display: flex;
        flex-direction: row;
        text-align: center;
        overflow-x: scroll;
        white-space: nowrap;
    }
}

/* ============================= */
/*        FORM LAYOUT            */
/* ============================= */


.banner-sec-seven .tts_product_box .flight-search {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.banner-sec-seven .tts_product_box .btn-group {
    display: flex;
    flex-wrap: wrap;
}

.banner-sec-seven .btn-group input[type="radio"] {
    display: none;
}

.banner-sec-seven .btn-group label {
    border-radius: 20px;
    display: flex;
    background-color: #f4f4f4;
    padding: 0 17px;
    height: 35px;
    line-height: 35px;
    font-weight: 500;
    color: rgb(14, 165, 233);
    cursor: pointer;
    text-transform: capitalize;
    margin: 0 8px 12px 0;
    transition: all 0.3s ease;
}

.banner-sec-seven .btn-group label:hover {
    background-color: #e0e0e0;
}

.banner-sec-seven .btn-group input[type="radio"]:checked+label {
    background-color: #0ea5e9;
    color: #fff;
}



@media screen and (max-width: 768px) {
    .banner-sec-seven .btn-group label {
        font-size: 13px;
        height: 30px;
        line-height: 30px;
        background-color: rgb(244, 244, 244);
        font-weight: 600;
        margin: 0px 5px 17px;
        border-radius: 10px;
        padding: 0px 12px;
    }

    .ui-autocomplete.tts-autocomplete {
        width: 300px !important;
    }

    .tts-autocomplete .aircode,
    .tts-autocomplete .flag {
        display: none;
    }
}

.icon_aero_up {
    display: none;
    position: absolute;
    top: 52px;
    left: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.icon_aero_down svg,
.icon_aero_up svg,
.icon_calendeer svg,
.icon_passenger svg {
    fill: var(--box-color);
    color: var(--box-color);
    width: 19px;
    display: inline-block;
    font-size: inherit;
    height: 18px;
    overflow: visible;
    vertical-align: -.125em;
}

@media screen and (max-width: 768px) {
    .icon_aero_up svg {
        fill: #828185;
        color: #828185;
    }

    .icon_aero_down,
    .icon_aero_up,
    .icon_calendeer,
    .icon_passenger {
        top: 30px;
        display: block;
    }
}

/* ============================= */
/*        FORM FIELDS            */
/* ============================= */
.banner-sec-seven .tts__form_wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    width: 100%;
}

.banner-sec-seven .tts__form_wrapper li {
    position: relative;
    padding: 0 4px;
    flex-grow: 1;
}

.banner-sec-seven [class*="adiFullWp-"] {
    flex: 0 0 auto;
}

.banner-sec-seven .adiFullWp-25 {
    width: 25%;
}

.banner-sec-seven .adiFullWp-15 {
    width: 15%;
}

.banner-sec-seven .adiFullWp-12 {
    width: 12%;
}

.banner-sec-seven .adiFullWp-11 {
    width: 11%;
}

.banner-sec-seven .adiFullWp-10 {
    width: 10%;
}

.banner-sec-seven .adiFullWp-30 {
    width: 30%;
}

.banner-sec-seven .adiFullWp-21 {
    width: 21%;
}

.banner-sec-seven .adiFullWp-34 {
    width: 34%;
}

.banner-sec-seven .adiFullWp-85 {
    width: 85%;
}

.banner-sec-seven .adiFullWp-20 {
    width: 20%;
}

/* Labels */
.banner-sec-seven .form-label {
    position: absolute;
    top: 0;
    left: 5px;
    font-weight: 400;
    font-size: 16px;
    color: rgb(14, 165, 233);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
    text-transform: capitalize;
    transform: translate(16px, 12px) scale(.75);
    transform-origin: top left;
    transition: transform .15s ease-out;
}

/* Inputs */
.banner-sec-seven .tts__input__input,
.banner-sec-seven .select_flight_pax {
    width: 100%;
    padding: 30px 15px 8px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #dfdfdf;
    border-radius: 8px;
    background: #fff;
    color: #1d1d1d;
    outline: none;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.banner-sec-seven .tts__input__input:focus,
.banner-sec-seven .select_flight_pax:focus {
    border-color: rgb(14, 165, 233);
    box-shadow: 0 0 5px rgba(0, 188, 212, 0.5);
}

.banner-sec-seven .flight_text_p {
    font-size: 12px;
    color: #666;
    margin-top: 3px;
    display: none;
}

.banner-sec-seven .tts__interchange__arrow {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 0%;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgb(14, 165, 233);
    color: #dfdfdf;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    padding: 8px;
    transition: transform .2s ease-in;
}

.banner-sec-seven .tts__form_wrapper li .dropdown-menu.show {
    width: 300px;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.banner-sec-seven .full_box_div_new_style {
    display: flex;
    flex-direction: column;
}

.banner-sec-seven .full_box_div_new_style_one {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(14, 165, 233);
    margin-bottom: 10px;
}

.banner-sec-seven .full_box_div_new_style_one .p-center {
    margin-left: 15px;
}

.banner-sec-seven .full_box_div_new_style_one .p-center p {
    color: black;
    margin: 0;
    color: #bdbdbd;
    font-size: 12px;
}

.banner-sec-seven .GwMit {
    margin-left: auto;
}

.banner-sec-seven .tts__counter {
    background-color: #bdbdbd;
    display: inline-block;
    width: 28px;
    height: 28px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    line-height: 26px;
    font-size: 18px;
    cursor: pointer;
    user-select: none;
    color: #000000;
    transition: all 0.2s ease;
}

.banner-sec-seven .tts_traveller__counter_span {
    display: inline-block;
    width: 28px;
    height: 28px;

    text-align: center;
    line-height: 26px;
    font-size: 18px;
    cursor: pointer;
    user-select: none;
    color: #000000;
}

.banner-sec-seven .tts__counter:hover {
    background-color: rgb(14, 165, 233);
    color: #fff;
}

.banner-sec-seven .tts__inputradio_label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

.banner-sec-seven .tts__inputradio_label input[type="radio"]:checked+span {
    font-weight: 600;
    color: rgb(14, 165, 233);
}

.banner-sec-seven .search-black {
    width: 100%;
    height: 60px;
    background-color: rgb(14, 165, 233);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        rgba(45, 35, 66, 0.4) 0 2px 4px,
        rgba(45, 35, 66, 0.3) 0 7px 13px -3px,
        rgba(58, 65, 111, 0.5) 0 -3px 0 inset;
    transition: box-shadow .15s, transform .15s, background .3s;
}

.addmoreflightbtn {
    width: 100%;
    height: 60px;
    background: #fff;
    color: rgb(14, 165, 233);
    border: 2px dotted #ccc;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow .15s, transform .15s, background .3s;
}

/* ============================= */
/*       FILTER STYLES           */
/* ============================= */
.filters-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filters-wrapper .filter-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 4px;
}

.filters-wrapper .filter-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgb(0, 0, 0);
    margin-bottom: 0;
}

.filters-wrapper .search_filters {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.filters-wrapper .form-check-input {
    border-radius: 50%;
    cursor: pointer;
    color: rgb(0, 0, 0);
    transition: transform 0.15s ease;
}

.filters-wrapper .form-check-input:checked {
    border: 1px solid rgb(14, 165, 233);
}

.filters-wrapper .form-check-label {
    cursor: pointer;
    color: rgb(68, 68, 68);
}

/* ============================= */
/*       RESPONSIVE STYLES       */
/* ============================= */
@media (max-width: 992px) {

    .banner-sec-seven .adiFullWp-25,
    .banner-sec-seven .adiFullWp-15,
    .banner-sec-seven .adiFullWp-12,
    .banner-sec-seven .adiFullWp-11 {
        flex: 0 0 48%;
    }
}

@media (max-width: 576px) {

    .banner-sec-seven .adiFullWp-25,
    .banner-sec-seven .adiFullWp-15,
    .banner-sec-seven .adiFullWp-12,
    .banner-sec-seven .adiFullWp-11 {
        flex: 0 0 100%;
    }

    .banner-sec-seven .form-label {
        font-size: 14px;
    }

    .filters-wrapper .form-check-inline {
        display: block;
    }

    .banner-sec-seven .tts__form_wrapper li .dropdown-menu.show {
        width: 100%;
        left: 0 !important;
        transform: none !important;
    }
}







/*calendar*/
.ui-widget.ui-widget-content.calendarOuter {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    list-style: none;
    overflow-y: auto;
    font-family: inherit !important;
}

.calendarOuter .ui-widget-header .ui-icon {
    background-image: unset;
}

.ui-datepicker.calendarOuter .ui-widget-header {
    background: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
    border: none;
    border-radius: 8px;
}

.ui-datepicker.calendarOuter .ui-datepicker-prev::after {
    content: "\f100";
    top: 5px;
    left: 5px;
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    color: #fff;
}

.ui-datepicker.calendarOuter .ui-datepicker-next::after {
    content: "\f101";
    top: 5px;
    right: 5px;
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    color: #fff;
}

.ui-datepicker.calendarOuter .ui-datepicker-header .ui-corner-all,
.ui-datepicker.calendarOuter .ui-datepicker-header .ui-state-hover {
    cursor: pointer;
    border: 0;
    background: none;
    font-weight: 700;
    top: 0px;
}

.ui-datepicker.calendarOuter td span,
.ui-datepicker.calendarOuter td a {
    display: block;
    padding: 0.2em;
    text-align: center;
    text-decoration: none;
}

.calendarOuter .ui-state-default,
.ui-widget-content.calendarOuter .ui-state-default {
    border: none;
    border-radius: 8px;
}

.calendarOuter.ui-state-highlight,
.ui-widget-content.calendarOuter .ui-state-highlight {
    border: none;
    background: var(--tts-buttton-bg1);
    color: var(--tts-buttton-txt1);
}

.calendarOuter .ui-state-active,
.ui-widget-content.calendarOuter .ui-state-active {
    background: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
}



/* UI Autocomplete */
.ui-autocomplete.tts-autocomplete {
    position: absolute;
    z-index: 1090;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    list-style: none;
    max-height: 300px;
    width: 450px;
    overflow-y: auto;
    font-family: inherit !important;
}

.tts-autocomplete .ui-menu-item-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    width: 100%;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.tts-autocomplete .dest_left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-family: inherit !important;
}

.dest_left .city {
    font-weight: bold;
    font-family: inherit !important;
}

.dest_left .airpotcode {
    font-size: 12px;
    font-family: inherit !important;
}

.tts-autocomplete .ui-menu-item-wrapper div:last-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tts-autocomplete .aircode {
    font-size: 12px;
    font-family: inherit !important;
}


.tts-autocomplete .flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    background-repeat: no-repeat;
    display: inline-block;
    background-image: url(../../../webroot/img/country-flag.png);
    position: relative;
}

/* Scrollbar Styling */
.tts-autocomplete::-webkit-scrollbar {
    width: 6px;
}

.tts-autocomplete::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.tts-autocomplete::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}

/* Datepicker specific styles */
.tts-autocomplete.ui-datepicker .ui-datepicker-header .ui-corner-all,
.tts-autocomplete.ui-datepicker .ui-datepicker-header .ui-state-hover {
    cursor: pointer;
    border: 0;
    background: none;
    font-weight: 700;
    top: 3px;
}

/* Datepicker day styling */
.tts-autocomplete.ui-datepicker td span,
.tts-autocomplete.ui-datepicker td a {
    display: block;
    padding: 0.2em;
    text-align: center;
    text-decoration: none;

}

/* Highlight and active states */
.tts-autocomplete .ui-state-highlight,
.tts-autocomplete.ui-widget-content .ui-state-highlight {
    border: none;
    background: var(--tts-buttton-bg);
    color: #ffffff;
}

.tts-autocomplete .ui-state-active,
.tts-autocomplete.ui-widget-content .ui-state-active {
    background: var(--tts-buttton-bg);
    color: #ffffff;
}

.tts-autocomplete .ui-state-active:hover,
.tts-autocomplete.ui-widget-content .ui-state-active:hover {
    background: var(--tts-buttton-bg);
    color: #ffffff;
}


.tts-autocomplete.ui-datepicker .ui-datepicker-prev::after {
    content: "\f100";
    left: 5px;
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    color: #fff;
}

.tts-autocomplete.ui-datepicker .ui-datepicker-next::after {
    content: "\f101";
    right: 5px;
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    color: #fff;
}


/*@@@@@@@@@@@@@@@@@@ position flag images @@@@@@@@@@@@@@@@@@@@@@*/

.ad {
    background-position: 0 -352px
}

.ae {
    background-position: 0 -368px
}

.af {
    background-position: 0 -384px
}

.ag {
    background-position: 0 -400px
}

.ai {
    background-position: 0 -416px
}

.al {
    background-position: 0 -432px
}

.am {
    background-position: 0 -448px
}

.an {
    background-position: 0 -464px
}

.ao {
    background-position: 0 -480px
}

.aq {
    background-position: 0 -496px
}

.ar {
    background-position: 0 -512px
}

.as {
    background-position: 0 -528px
}

.at {
    background-position: 0 -544px
}

.au {
    background-position: 0 -560px
}

.aw {
    background-position: 0 -576px
}

.az {
    background-position: 0 -592px
}

.ba {
    background-position: 0 -608px
}

.bb {
    background-position: 0 -624px
}

.bd {
    background-position: 0 -640px
}

.be {
    background-position: 0 -656px
}

.bf {
    background-position: 0 -672px
}

.bg {
    background-position: 0 -688px
}

.bh {
    background-position: 0 -704px
}

.bi {
    background-position: 0 -720px
}

.bj {
    background-position: 0 -736px
}

.bm {
    background-position: 0 -752px
}

.bn {
    background-position: 0 -768px
}

.bo {
    background-position: 0 -784px
}

.br {
    background-position: 0 -800px
}

.bs {
    background-position: 0 -816px
}

.bt {
    background-position: 0 -832px
}

.bw {
    background-position: 0 -848px
}

.by {
    background-position: 0 -864px
}

.bz {
    background-position: 0 -880px
}

.ca {
    background-position: 0 -896px
}

.cg {
    background-position: 0 -912px
}

.cf {
    background-position: 0 -928px
}

.cd {
    background-position: 0 -944px
}

.ch {
    background-position: 0 -960px
}

.ci {
    background-position: 0 -976px
}

.ck {
    background-position: 0 -992px
}

.cl {
    background-position: 0 -1008px
}

.cm {
    background-position: 0 -1024px
}

.cn {
    background-position: 0 -1040px
}

.co {
    background-position: 0 -1056px
}

.cr {
    background-position: 0 -1072px
}

.cu {
    background-position: 0 -1088px
}

.cv {
    background-position: 0 -1104px
}

.cy {
    background-position: 0 -1120px
}

.cz {
    background-position: 0 -1136px
}

.de {
    background-position: 0 -1152px
}

.dj {
    background-position: 0 -1168px
}

.dk {
    background-position: 0 -1184px
}

.dm {
    background-position: 0 -1200px
}

.do {
    background-position: 0 -1216px
}

.dz {
    background-position: 0 -1232px
}

.ec {
    background-position: 0 -1248px
}

.ee {
    background-position: 0 -1264px
}

.eg {
    background-position: 0 -1280px
}

.eh {
    background-position: 0 -1296px
}

.er {
    background-position: 0 -1312px
}

.es {
    background-position: 0 -1328px
}

.et {
    background-position: 0 -1344px
}

.fi {
    background-position: 0 -1360px
}

.fj {
    background-position: 0 -1376px
}

.fm {
    background-position: 0 -1392px
}

.fo {
    background-position: 0 -1408px
}

.fr {
    background-position: 0 -1424px
}

.ga {
    background-position: 0 -1440px
}

.gb {
    background-position: 0 -1456px
}

.gd {
    background-position: 0 -1472px
}

.ge {
    background-position: 0 -1488px
}

.gg {
    background-position: 0 -1504px
}

.gh {
    background-position: 0 -1520px
}

.gi {
    background-position: 0 -1536px
}

.gl {
    background-position: 0 -1552px
}

.gm {
    background-position: 0 -1568px
}

.gn {
    background-position: 0 -1584px
}

.gp {
    background-position: 0 -1600px
}

.gq {
    background-position: 0 -1616px
}

.gr {
    background-position: 0 -1632px
}

.gt {
    background-position: 0 -1648px
}

.gu {
    background-position: 0 -1664px
}

.gw {
    background-position: 0 -1680px
}

.gy {
    background-position: 0 -1696px
}

.hk {
    background-position: 0 -1712px
}

.hn {
    background-position: 0 -1728px
}

.hr {
    background-position: 0 -1744px
}

.ht {
    background-position: 0 -1760px
}

.hu {
    background-position: 0 -1776px
}

.id {
    background-position: 0 -1792px
}

.mc {
    background-position: 0 -1792px
}

.ie {
    background-position: 0 -1808px
}

.il {
    background-position: 0 -1824px
}

.im {
    background-position: 0 -1840px
}

.in {
    background-position: 0 -1856px
}

.iq {
    background-position: 0 -1872px
}

.ir {
    background-position: 0 -1888px
}

.is {
    background-position: 0 -1904px
}

.it {
    background-position: 0 -1920px
}

.je {
    background-position: 0 -1936px
}

.jm {
    background-position: 0 -1952px
}

.jo {
    background-position: 0 -1968px
}

.jp {
    background-position: 0 -1984px
}

.ke {
    background-position: 0 -2000px
}

.kg {
    background-position: 0 -2016px
}

.kh {
    background-position: 0 -2032px
}

.ki {
    background-position: 0 -2048px
}

.km {
    background-position: 0 -2064px
}

.kn {
    background-position: 0 -2080px
}

.kp {
    background-position: 0 -2096px
}

.kr {
    background-position: 0 -2112px
}

.kw {
    background-position: 0 -2128px
}

.ky {
    background-position: 0 -2144px
}

.kz {
    background-position: 0 -2160px
}

.la {
    background-position: 0 -2176px
}

.lb {
    background-position: 0 -2192px
}

.lc {
    background-position: 0 -2208px
}

.li {
    background-position: 0 -2224px
}

.lk {
    background-position: 0 -2240px
}

.lr {
    background-position: 0 -2256px
}

.ls {
    background-position: 0 -2272px
}

.lt {
    background-position: 0 -2288px
}

.lu {
    background-position: 0 -2304px
}

.lv {
    background-position: 0 -2320px
}

.ly {
    background-position: 0 -2336px
}

.ma {
    background-position: 0 -2352px
}

.md {
    background-position: 0 -2368px
}

.me {
    background-position: 0 -2384px
}

.mg {
    background-position: 0 -2400px
}

.mh {
    background-position: 0 -2416px
}

.mk {
    background-position: 0 -2432px
}

.ml {
    background-position: 0 -2448px
}

.mm {
    background-position: 0 -2464px
}

.mn {
    background-position: 0 -2480px
}

.mo {
    background-position: 0 -2496px
}

.mq {
    background-position: 0 -2512px
}

.mr {
    background-position: 0 -2528px
}

.ms {
    background-position: 0 -2544px
}

.mt {
    background-position: 0 -2560px
}

.mu {
    background-position: 0 -2576px
}

.mv {
    background-position: 0 -2592px
}

.mw {
    background-position: 0 -2608px
}

.mx {
    background-position: 0 -2624px
}

.my {
    background-position: 0 -2640px
}

.mz {
    background-position: 0 -2656px
}

.na {
    background-position: 0 -2672px
}

.nc {
    background-position: 0 -2688px
}

.ne {
    background-position: 0 -2704px
}

.ng {
    background-position: 0 -2720px
}

.ni {
    background-position: 0 -2736px
}

.nl {
    background-position: 0 -2752px
}

.no {
    background-position: 0 -2768px
}

.np {
    background-position: 0 -2784px
}

.nr {
    background-position: 0 -2800px
}

.nz {
    background-position: 0 -2816px
}

.om {
    background-position: 0 -2832px
}

.pa {
    background-position: 0 -2848px
}

.pe {
    background-position: 0 -2864px
}

.pf {
    background-position: 0 -2880px
}

.pg {
    background-position: 0 -2896px
}

.ph {
    background-position: 0 -2912px
}

.pk {
    background-position: 0 -2928px
}

.pl {
    background-position: 0 -2944px
}

.pr {
    background-position: 0 -2960px
}

.ps {
    background-position: 0 -2976px
}

.pt {
    background-position: 0 -2992px
}

.pw {
    background-position: 0 -3008px
}

.py {
    background-position: 0 -3024px
}

.qa {
    background-position: 0 -3040px
}

.re {
    background-position: 0 -3056px
}

.ro {
    background-position: 0 -3072px
}

.rs {
    background-position: 0 -3088px
}

.ru {
    background-position: 0 -3104px
}

.rw {
    background-position: 0 -3120px
}

.sa {
    background-position: 0 -3136px
}

.sb {
    background-position: 0 -3152px
}

.sc {
    background-position: 0 -3168px
}

.sd {
    background-position: 0 -3184px
}

.se {
    background-position: 0 -3200px
}

.sg {
    background-position: 0 -3216px
}

.si {
    background-position: 0 -3232px
}

.sk {
    background-position: 0 -3248px
}

.sl {
    background-position: 0 -3264px
}

.sm {
    background-position: 0 -3280px
}

.sn {
    background-position: 0 -3296px
}

.so {
    background-position: 0 -3312px
}

.sr {
    background-position: 0 -3328px
}

.st {
    background-position: 0 -3344px
}

.sv {
    background-position: 0 -3360px
}

.sy {
    background-position: 0 -3376px
}

.sz {
    background-position: 0 -3392px
}

.tc {
    background-position: 0 -3408px
}

.td {
    background-position: 0 -3424px
}

.tg {
    background-position: 0 -3440px
}

.th {
    background-position: 0 -3456px
}

.tj {
    background-position: 0 -3472px
}

.tl {
    background-position: 0 -3488px
}

.tm {
    background-position: 0 -3504px
}

.tn {
    background-position: 0 -3520px
}

.to {
    background-position: 0 -3536px
}

.tr {
    background-position: 0 -3552px
}

.tt {
    background-position: 0 -3568px
}

.tv {
    background-position: 0 -3584px
}

.tw {
    background-position: 0 -3600px
}

.tz {
    background-position: 0 -3616px
}

.ua {
    background-position: 0 -3632px
}

.ug {
    background-position: 0 -3648px
}

.us {
    background-position: 0 -3664px
}

.uy {
    background-position: 0 -3680px
}

.uz {
    background-position: 0 -3696px
}

.va {
    background-position: 0 -3712px
}

.vc {
    background-position: 0 -3728px
}

.ve {
    background-position: 0 -3744px
}

.vg {
    background-position: 0 -3760px
}

.vi {
    background-position: 0 -3776px
}

.vn {
    background-position: 0 -3792px
}

.vu {
    background-position: 0 -3808px
}

.ws {
    background-position: 0 -3824px
}

.ye {
    background-position: 0 -3840px
}

.za {
    background-position: 0 -3856px
}

.zm {
    background-position: 0 -3872px
}

.zw {
    background-position: 0 -3872px
}


/*@@@@@@@@@@@@@@@@@@ position flag images @@@@@@@@@@@@@@@@@@@@@@*/



.recent-search {
    margin-top: 20px;
}

.recent-search-header {
    margin-bottom: 15px;
}

.recent-para {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.recent-search-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.recent-search-item {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
}

.recent-search-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.search-link {
    text-decoration: none;
    color: inherit;
}

.recent-search-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.recent-search-route {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.recent-origin,
.recent-destination {
    font-weight: 700;
    color: #333;
}

.journey-icon {
    display: inline-block;
    margin: 0 8px;
    vertical-align: middle;
}

.recent-search-dates {
    font-size: 14px;
    color: #777;
}

.recent-search-item .recent-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    background: var(--tts-buttton-bg);
    text-align: center;
    line-height: 35px;
    border-radius: 20px 0 8px 0;
    color: var(--tts-buttton-txt);
}

@media screen and (max-width: 768px) {
    .banner-sec-seven .tts__form_wrapper li:first-child .tts__input__input {
        border-radius: 20px 20px 0px 0px;
    }

    .banner-sec-seven .tts__form_wrapper li.passg-item .select_flight_pax {
        border-radius: 0px 0px 20px 20px;
    }

    .banner-sec-seven .tts__input__input,
    .banner-sec-seven .select_flight_pax {
        border-radius: 0;
        padding: 30px 15px 8px 40px;
        font-size: 15px;
        border-bottom: 0px;
        height: 70px;
    }

    .banner-sec-seven .select_flight_pax {
        border-bottom: 1px solid #dfdfdf;
    }
}

@media screen and (max-width: 768px) {
    .banner-sec-seven .form-label {
        left: 30px;
    }

    .banner-sec-seven .search-black {
        border-radius: 100px;
        box-shadow: none;
        height: 50px;
        font-weight: 500;
        font-size: 18px;
        text-transform: capitalize;
        margin-top: 10px;
        padding: 15px 15px;
    }

    .banner-sec-seven .tts__interchange__arrow {
        right: 0;
        top: 0;
        left: inherit;
    }
}