/* =========================================================
   GLOBAL DESIGN SYSTEM (LOCK THIS)
========================================================= */

:root {
    /* Brand */
    --cf-primary: #02253B;
    /* Header, search bg */
    --cf-accent: #FF6600;
    /* Buttons, CTA */

    /* Text */
    --cf-text-dark: #2D3748;
    --cf-text-muted: #718096;
    --cf-text-light: #FFFFFF;

    /* Neutrals */
    --cf-bg-white: #FFFFFF;
    --cf-bg-light: #F8F8F8;

    /* UI */
    --cf-border: rgba(0, 0, 0, 0.08);
    --cf-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
}

/* =========================================================
   BASE RESET
========================================================= */

body {
    font-family: 'Poppins', sans-serif;
    color: var(--cf-text-dark);
    background: var(--cf-bg-white);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================================
   HEADER / NAVBAR
========================================================= */

.cf-header {
    background: var(--cf-bg-white);
    box-shadow: var(--cf-shadow);
}

.logoimg {
    height: 60px;
}

.navbar {
    padding: 0;
}

.listing-page .navbar-nav {
    display: none;
}
.booking-page .navbar-nav {
    display: none;
}

.cf-header .nav-link {
    font-weight: 600;
    color: var(--cf-text-dark);
    padding: 22px 10px;
}

.cf-header .nav-link.active {
    color: var(--cf-accent);
}


.listing-page .liveChat {
    display: block !important;
    background-color: #FFEBE4;
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid var(--cf-accent);
}

.listing-page .liveChat a {
    display: flex;
    color: var(--cf-accent);
    text-decoration: none;
    font-size: 14px;
    align-items: center;
    gap: 6px;
}

/* Country Dropdown */
.dropdown .dropdown-toggle {
    padding-left: 0;
    border: 1px solid rgb(0 0 0 / 0%);
    border-radius: 5px;
    background: var(--cf-bg-white);
    font-weight: 500;
    color: var(--cf-text-dark);
    font-weight: 600;
}

.btn:first-child:active {
    color: var(--cf-text-dark);
    background-color: #6c757d00;
    border-color: rgba(255, 255, 255, 0);
}

.ui-range-start a,
.ui-range-end a {
    background: #02253B !important;
    color: #fff !important;
    border-radius: 50%;
}

.ui-range-middle a {
    background: rgba(2, 37, 59, 0.15) !important;
    color: #02253B !important;
    border-radius: 8px;
}

/* Multicity */
.mc-selected-date a {
    background: #ff7a00 !important;
    color: #fff !important;
    border-radius: 50%;
}

.dropdown-item {
    font-size: 14px;
    border-bottom: 1px solid #f2f2f2;
}

.listing-page .navbar-toggler {
    display: none;
}

.cf-country-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid var(--cf-text-muted);
    background: var(--cf-bg-white);
    font-size: 14px;
    font-weight: 500;
    color: var(--cf-text-dark);
}

.cf-country-toggle:focus {
    outline: none;
    box-shadow: none;
}

.dropdown-menu {
    border-radius: 10px;
    box-shadow: var(--cf-shadow);
}

.listing-page .signIn {
    display: block !important;
    background-color: #f8f8f8;
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid var(--cf-text-muted);
}

    .listing-page .signIn #loginBtn {
    display: flex;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    align-items: center;
    gap: 6px;
        cursor:pointer;
}
#desktopsinginclick .login-signup-button {
    display: flex;
    align-items: center;
    gap: 6px;
}


/* Help Bubble */
.help-bubble {
    display: flex;
    align-items: center;
    padding: 2px 0px 3px 45px;
    min-width: 180px;
    border-radius: 24px;
    border: 1.5px solid var(--cf-primary);
    /* background-color: var(--cf-bg-light); */
    background-image: url("/Content/asset/images/callback.png");
    background-repeat: no-repeat;
    background-size: 34px;
    background-position: 8px center;
}

.help-bubble .phoneNumber {
    line-height: 1.15;
}

.help-bubble small {
    font-size: 12px;
    color: var(--cf-primary);
    font-weight: 600;
}

.help-bubble .phone-number {
    font-size: 12px;
    font-weight: 600;
    color: var(--cf-accent);
}

.mobile-right .help-bubble {
    padding: 1px 0 3px 45px;
    min-width: 155px;
    border: 1.5px solid var(--cf-accent);
}

.mobile-right .help-bubble .phone-number {
    font-size: 10px;
    color: var(--cf-accent);
}

.mobile-right .help-bubble small {
    font-size: 10px;
}


/* Mobile call button */
.cf-call-icon {
    font-size: 12px;
    font-weight: 600;
    color: var(--cf-primary);
    border: 1px solid var(--cf-primary);
    padding: 5px 8px;
    border-radius: 5px;
}

/* Offcanvas */
.offcanvas.offcanvas-end {
    width: 40%;
}

.btn-custom-primary {
    background: var(--cf-primary);
    color: var(--cf-text-light);
    font-weight: 600;
    border: none;
}

.btn-custom-primary:hover {
    background: #011b2a;
}

/* =========================================================
   SECTION : HEADINGS (Hero Text)
========================================================= */
.headings {
    padding: 40px 0 25px;
}

.sub-heading {
    font-size: 18px;
    font-weight: 500;
    color: var(--cf-text-muted);
    margin-bottom: 8px;
}

.main-heading {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--cf-text-dark);
}

.main-heading span {
    color: var(--cf-accent);
}


/* =========================================================
   Search Section
========================================================= */

.booking-modes .mode-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    background: #ffffff;
    color: #02253B;
    border: 1px solid #20595E;
}

.booking-modes .mode-btn i {
    font-size: 20px;
}

.booking-modes .mode-btn.active {
    background: #02253B;
    color: #ffffff;
    border-color: #02253B;
}

.search-wrapper {
    position: relative;
}

/* common */
.search-bg {
    padding: 10px;
    border-radius: 8px;
}

/* =========================
   ACTIVE TAB BACKGROUNDS
   ========================= */

/* =======================
   TAB BUTTONS
======================= */



.booking-modes .mode-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 14px;
    background: #ffffff;
    color: #02253B;
    border: 1px solid #20595E;
    border-bottom: 1px solid #20595E;
    border-radius: 6px 6px 0 0;
}

.booking-modes .mode-btn svg path {
    color: #000;
    fill: #000;
}

.booking-modes .mode-btn.active svg path {
    color: #fff;
    fill: #fff;
}

/* inactive tabs stay separated */
.booking-modes .mode-btn:not(.active) {
    margin-bottom: 8px;
    /* 👈 gap from content */
}

/* ACTIVE TAB = OPEN BOTTOM */
.booking-modes .mode-btn.active {
    background: #02253B;
    color: #ffffff;
    border-color: #02253B;
    border-bottom: 0;
    /* 👈 THIS IS THE KEY */
    margin-bottom: 0;
    /* 👈 chipka */
}

/* =======================
   CONTENT
======================= */

.search-wrapper {
    position: relative;
    z-index: 1;
}

.search-bg {
    display: none;
    padding: 10px;
    background: #02253B;
    color: #ffffff;
    border-radius: 0 10px 10px 10px;
    border-top: 1px solid #02253B;
    /* merge with tab */
}

.search-bg.show.active {
    display: block;
}

.search-heading {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}


/* Flight search */
.trip-toggle {
    background: #ffffff;
    border-radius: 8px;
    padding: 4px;
    border: 1px solid #e5e7eb;
}

.trip-btn {
    font-size: 14px;
    font-weight: 600;
    color: #02253B;
    background: transparent;
    border-radius: 6px !important;
    padding: 6px 14px;
    border: none;
}

.btn-check:checked+.trip-btn {
    background: #02253B;
    color: #ffffff;
}


/* wrapper dark bg assumed */
.tripType {
    background: #02253B;
    /* tera dark bg */
    padding: 4px 0 15px 0px;
    border-radius: 8px;
}

.listing-page #masterRow {
    padding: 15px 0;
    --bs-gutter-y: 0;
}

.radio-group {
    display: flex;
    gap: 22px;
}

/* label text */
.trip-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    /* 🔥 LIGHT TEXT */
    cursor: pointer;
}

/* hide default radio */
.trip-option input {
    display: none;
}

/* outer circle */
.custom-radio {
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    /* 🔥 WHITE BORDER */
    border-radius: 3px;
    background: transparent;
    position: relative;
}

/* inner dot */
.trip-option input:checked+.custom-radio::after {
    content: "";
    width: 14px;
    height: 14px;
    background: var(--cf-accent);
    /* 🔥 WHITE DOT */
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* hover (optional XD feel) */
.trip-option:hover .custom-radio {
    border-color: #FF6600;
}

.tripTypeBtn {
    position: relative;
    /* padding-left: 32px;
     dot ke liye jagah */
}

/* Orange dot 
.tripTypeBtn::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 11px;
    height: 11px;
    background: var(--cf-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--cf-accent);
}*/ 


/* Bootstrap arrow ko right me hi rakho */
.tripTypeBtn::after {
    margin-left: auto;
}


/* Destination and Origin */
.row.position-relative {
    position: relative;
}

/* ROW */


/* LABEL */

.od-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.od-label i {
    font-size: 14px;
}

.listing-page .od-label {
    display: none;
}

.listing-page .info-label {
    display: none;
}

/* WHITE BOX */
.od-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 12px 10px 20px;
    min-height: 87px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    /* IMPORTANT for dropdown */
}

.listing-page .od-box {
    padding: 5px 12px 5px 15px;
    min-height: 73px;
    border-radius: 5px;
}

.list-od-lable {
    font-size: 14px;
    font-weight: 500;
    color: var(--cf-primary);
}

/* INPUT / SELECT TEXT */
.od-select,
.od-input {
    font-size: 28px;
    font-weight: 800;
    color: var(--cf-text-dark);
    line-height: 1;
    border: none;
    outline: none;
    width: 100%;
    background: transparent;
}

.od-input::placeholder {
    color: #d51d1d;
    font-weight: 800;
}

.od-input:focus::placeholder {
    color: #cbd5e1;
}


/* CITY */
.od-city {
    font-size: 15px;
    color: #272727;
    margin-top: 4px;
}

.listing-page .od-city {
    font-size: 12px;
    color: var(--cf-text-dark);
    margin-top: 0px;
    font-weight: 500;
}

/* SWAP WRAP FIX */
.swap-wrap {
    position: absolute;
    left: 50%;
    top: 62%;
    transform: translate(-50%, -50%);
    z-index: 100;
    width: auto;
    pointer-events: none;
    margin-top: 0;
}

.listing-page .swap-wrap {
    top: 54%;
}

.swap-btn {
    pointer-events: auto;
    /* Sirf button click ho */
    width: 30px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
}

.listing-page .swap-btn {
    width: 30px;
    height: 40px;
}

.swap-btn:active {
    transform: scale(0.9);
}

/* Common icon animation */
.swap-btn i,
.mc-swap-btn i {
    display: inline-block;
    transition: transform 0.4s ease-in-out;
}

/* 🔥 Rotation class – icon par directly lagegi */
.rotate-icon {
    transform: rotate(180deg);
}

/* Multicity button safe */
.mc-swap-btn {
    overflow: visible;
}


.od-input {
    padding: 0;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    text-transform: uppercase;
    border: none;
    height: 40px;
    background: transparent;
}

.listing-page .od-input {
    line-height: 0;
    height: 20px;
    font-size: 18px;
    margin-left: -2px;
}

.od-input::placeholder {
    color: #000;
    font-weight: 800;
}

/* ===== DROPDOWN FIX ===== */
.od-suggest {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    background: #ffffff;
    /* FIX: white bg */
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    position: absolute;
    top: 98%;
    left: 0;
    width: 100%;
    /* FIX: exact box width */
    z-index: 1030;
    display: none;
    max-height: 220px;
    overflow-y: auto;
}

.od-suggest li {
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
    color: #000000;
    /* FIX: text visible */
}

.od-suggest li:hover {
    background: #e8f2ff;
    /* FIX: readable hover */
}


/* ===== LABEL (same as Origin / Destination) ===== */
.d-hide {
    display: none !important;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: .5px;
    margin-bottom: 6px;
}

.info-label i {
    font-size: 14px;
}

/* ===== WHITE CARD ===== */
.info-box {
    background: #fff;
    border-radius: 10px;
    padding: 10px 10px;
    min-height: 87px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.real-date-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
    pointer-events: auto;
    /* 🔥 ensure touch works */
    -webkit-appearance: none;
    /* 🔥 iOS safe */
}

.listing-page .info-box {
    padding: 5px 0 5px 10px;
    min-height: 73px;
    border-radius: 5px;
}

/* date line */
.day {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-weight: 800;
    line-height: 1;
}

/* 25 / Select */
.depart-day,
.return-day {
    font-size: 28px;
    color: var(--cf-text-dark);
}


.listing-page .depart-day,
.listing-page .return-day {
    font-size: 20px;
}

/* Aug */
.depart-month,
.return-month {
    font-size: 20px;
    color: var(--cf-text-dark);
}

.depart-comma {
    color: var(--cf-text-dark);
}

.return-comma {
    color: var(--cf-text-dark);
}

/* 26 */
.depart-year,
.return-year {
    font-size: 24px;
    color: var(--cf-text-dark);
}

/* Default return date */


.listing-page #returnBox .return-day {
    font-size: 18px;
}

/* 🔥 ADD RETURN STATE */
#returnBox.add-return .return-day {
    font-size: 18px;
    font-weight: 600;
    color: #FF6600;
    /* brand accent */
}

#returnBox.add-return .meta {
    display: none;
}



/* weekday */
.meta {
    margin-top: 4px;
    font-size: 15px;
    color: #222222;
}

.listing-page .meta {
    margin-top: 0px;
    font-size: 12px;
}

/* ===== Traveller layout ===== */
.info-traveller {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    justify-content: start;
}

.trav-count {
    font-size: 40px;
    font-weight: 800;
    color: var(--cf-text-dark);
    line-height: 1;
}

.listing-page .trav-count {
    font-size: 22px;
}

.trav-text {
    font-size: 14px;
    color: var(--cf-text-dark);
    font-weight: 600;
}

.trav-sub {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}
.info-traveller .small-text-pe {
    font-size: 10px;
    font-weight: 400;
}
/* SEARCH BUTTON */
.search-btn {
    min-height: 87px;
    border-radius: 10px;
    background: #FF6600;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border: none;
}


.modify-btn {
    font-weight: 500;
    min-height: 73px;
    font-size: 20px;
    background: #fff;
    color: var(--cf-accent);
    border: 1px solid var(--cf-accent);
    border-radius:8px;
}

/* Jab multicity me buttons niche shift hon */
/* Multicity + mobile me niche gaye buttons ke liye */
.multicity-mobile-spacing {
    /* padding-top: 12px; */
    padding-bottom: 12px;
}




/* ===== OVERLAY ===== */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.panel1 {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    max-width: 720px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

/* Calendar input ko hide rakhein */
/* --- 1. Hidden Input Fix --- */

#theDatepicker {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* --- 2. Main Calendar Container --- */
.flatpickr-calendar {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: none;
    z-index: 99999999 !important;
    overflow: hidden;
    width: auto !important;
}

/* --- 3. Header Setup (Centered & Glossy) --- */
.flatpickr-months {
    background: #02253B !important;
    /* Brand Dark Blue */
    padding: 5px 5px !important;
    display: flex !important;
    align-items: center !important;
    position: relative;
}

.flatpickr-current-month {
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 16px;
}

/* --- 3. Buttons edges se door aur Glossy --- */
.flatpickr-prev-month,
.flatpickr-next-month {
    position: relative !important;
    /* Absolute se edges par chipakte hain, isliye relative */
    background: linear-gradient(135deg, #ff8c00 0%, #f60 100%) !important;
    border-radius: 6px !important;
    width: 30px !important;
    height: 30px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    cursor: pointer;
    top: 0 !important;
    /* Static position inside flex header */
    margin: 0 5px !important;
    /* Deewal se door rakhne ke liye margin */
}

/* Icons Centering */
.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: #fff !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 !important;
}

/* Hide Prev Button on Current Month */
.flatpickr-prev-month.flatpickr-disabled {
    display: none !important;
}

/* --- 5. Weekdays Section --- */
.flatpickr-weekdays {
    background: #fff;
    padding: 10px 0 5px 0 !important;
}

span.flatpickr-weekday {
    color: #333 !important;
    font-weight: 700;
}

/* --- 6. Date Boxes Setup (Rounded Rectangles) --- */
.flatpickr-day {
    border-radius: 8px !important;
    /* Rounded box shape */
    border: 1px solid #f0f0f0 !important;
    margin: 2px !important;
    max-width: 38px;
    height: 38px;
    line-height: 36px;
    color: #333;
    transition: all 0.2s ease;
}

/* Hover Effect */
.flatpickr-day:hover:not(.selected) {
    background: #f5f5f5 !important;
    border-color: #ddd !important;
}

/* --- 7. Selection & Today (Branding) --- */

/* Today's Date: Dark Blue Highlit */
/* Aaj ki date ko hamesha dark blue highlight rakhne ke liye */
.flatpickr-calendar .flatpickr-day.today:not(.selected):not(.startRange):not(.endRange) {
    background: #ffffff !important;
    color: #02253B !important;
    border-color: #02253B !important;
    border-radius: 8px !important;
}

/* Agar aaj ki date selection ke andar (range mein) aa jaye, toh bhi dark blue dikhe */
.flatpickr-calendar .flatpickr-day.today.inRange:not(.startRange):not(.endRange) {
    background: #ffffff !important;
    color: #02253B !important;
    border-color: #02253B !important;
    opacity: 1 !important;
    /* Range ki transparency ko override karega */
}

/* Jab aaj ki date hi select ho jaye (Start ya End date), toh brand orange dikhe */
.flatpickr-day.today.selected,
.flatpickr-day.today.startRange,
.flatpickr-day.today.endRange {
    background: linear-gradient(180deg, #ff8c00 0%, #f60 100%) !important;
    border-color: #f60 !important;
    color: #fff !important;
}

/* Hover effect on today's date */
.flatpickr-day.today:hover {
    background: #011a2a !important;
    /* Thoda aur dark blue */
    color: #fff !important;
}

/* Selected/Range Edge: Glossy Orange */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.range-start,
.range-end,
.oneway-selected,
.multicity-selected {
    background: linear-gradient(180deg, #ff8c00 0%, #f60 100%) !important;
    border-color: #f60 !important;
    color: #fff !important;
    box-shadow: 0 2px 5px rgba(255, 102, 0, 0.3) !important;
}

/* Range Middle: Light Highlight */
.flatpickr-day.inRange,
.range-mid {
    background: rgba(255, 102, 0, 0.12) !important;
    border-color: transparent !important;
    border-radius: 5 !important;
    /* Middle area stays flat for seamless range */
}

/* Disabled Dates Opacity */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #ccc !important;
    border-color: transparent !important;
    background: transparent !important;
}

/* --- 8. Responsive Fixes --- */
@media (max-width: 992px) {
    .flatpickr-calendar {
        width: 310px !important;
    }
}

/* ===== HARD FIX FOR JQUERY UI DATEPICKER ===== */

.ui-datepicker {
    box-sizing: border-box;
}

.ui-datepicker *,
.ui-datepicker *::before,
.ui-datepicker *::after {
    box-sizing: border-box;
}

/* Calendar header (January 2026 / February 2026 bar) */
.ui-datepicker .ui-widget-header {
    background: #02253B;
    /* jo color chahiye */
    border: none;
    color: #ffffff;
}

.ui-datepicker .ui-datepicker-title {
    color: #ffffff;
    font-weight: 700;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
    filter: invert(1);
}



.ui-datepicker table {
    border-collapse: separate !important;
    border-spacing: 6px !important;
}

.ui-datepicker td {
    padding: 0 !important;
}

.ui-datepicker td a,
.ui-datepicker td span {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 10px;
    text-decoration: none;
}

/* prevent overlap */
.ui-datepicker-calendar a {
    position: relative;
    z-index: 1;
}

/* selected day */
.ui-datepicker-current-day a {
    background: #02253B !important;
    color: #fff !important;
}

/* hover */
.ui-datepicker td a:hover {
    background: #e6eef5;
}


/* DISABLED / PAST */
.ui-datepicker-unselectable span {
    color: #cbd5e1;
}

/* ===== REMOVE LINK STYLE ===== */
.ui-datepicker a {
    text-decoration: none;
}

/* Force width for 2 month calendar */
.ui-datepicker.ui-datepicker-multi-2 {
    width: 640px !important;
}


/* RANGE BETWEEN */
.ui-datepicker td.ui-datepicker-range a {
    background: var(--cf-accent) !important;
    color: #02253B !important;
}


/* TODAY (sirf outline) */
.ui-datepicker td.ui-datepicker-today a {
    background: var(--cf-text-dark) !important;
    color: var(--cf-text-light) !important;
    border: 1.5px solid #ff7a00 !important;
    font-weight: 600;
}

/* START & END */
.ui-datepicker td a.ui-state-active {
    background: var(--cf-accent) !important;
    color: #fff !important;
    border: 1px solid #c5c5c5;
}

/* RANGE BETWEEN */
.ui-datepicker td.ui-datepicker-range a {
    background: rgba(255, 122, 0, 0, 0.25) !important;
    color: var(--cf-text-light) !important;
}

/* Priority: start/end upar dikhe */
.ui-datepicker td a.ui-state-active {
    position: relative;
    z-index: 2;
}


/* TODAY == START or END */
.ui-datepicker-today .ui-state-active {
    background: var(--cf-accent) !important;
    color: #fff !important;
}

/* Date picker end */

.d-hide {
    display: none !important;
}

.empty-slot {
    min-height: 97px;
}

.multiaddbtn {
    background: transparent;
    border: 1px solid #fff;
    color: #FFFFFF;
    padding: 10px 16px;
    border-radius: 22px;
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s;
    font-size: 18px;
    line-height: 27px;
}

.listing-page .multiaddbtn {
    padding: 5px 10px;
}

.multirmvbtn {
    background: transparent;
    border: 1px solid #fff;
    color: #FFFFFF;
    padding: 10px 16px;
    border-radius: 22px;
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s;
    font-size: 18px;
    line-height: 27px;
}

.listing-page .multirmvbtn {
    padding: 5px 10px;
}

/* Filter and modify overlay */
.mobile-summary-bar {
    top: 50px;
    z-index: 50;
    background: #02253B;
    color: #fff;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-summary-bar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
}


.ms-left {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    line-height: 1.3;
}

.ms-right {
    display: flex;
    gap: 8px;
}

.ms-btn {
    border: none;
    background: #f1f5f9;
    padding: 5px 10px;
    border-radius: 8px;
}

.mobile-panel {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: none;
    overflow: auto;
}

.mp-header {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 9999;
}
    .mp-header i {
        font-size: 30px;
        cursor: pointer;
        line-height: 1;
        color: rgb(219, 34, 34);
    }



#mobileFilterPanel .fareAlert {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0 !important;
    /* because container handles padding */
}

.fareAlert .fare-alert-email {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins',sans-serif;
    outline: none;
    background: #ffffff;
    color: #333;
}

.fareAlert .fare-alert-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
    border: 1px solid #ff7a00;
    border-radius: 8px;
    background: #fff;
    color: #ff7a00;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Poppins',sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}

/* List Page style start */
.listing-page .main-container {
    background-color: #02253B;
    box-shadow: 0px 3px 6px #00000029;
}

.listing-page .widget {
    margin-bottom: 15px !important;
}

.listing-page .fareDeal {
    display: flex;
    gap: 10px;
}

/* Filter */
.fare-alert-box {
    border: 1px solid #dbe3ea;
    border-radius: 8px;
    padding: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}
    .fare-alert-box-dv{
        width:100%;
    }

    .filter-box {
        background: #fff;
        border: 1px solid #dbe3ea;
        border-radius: 10px;
        padding: 10px 12px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 10px;
    }

.filter-group {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
}



.filter-group {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 2px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--cf-primary);
    user-select: none;
    transition: color 0.2s;
}

.filter-header:hover {
    color: var(--cf-accent);
}

.filter-toggle {
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.filter-group.active .filter-toggle {
    transform: rotate(45deg);
}

.filter-content {
    display: none;
    padding: 10px 0 0 0;
    flex-direction: column;
    gap: 10px;
}

.filter-group.active .filter-content {
    display: flex;
}

.filter-chk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #333;
    cursor: pointer;
    position: relative;
}

    .filter-chk input[type="checkbox"] {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        border: 0;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        overflow: hidden;
        white-space: nowrap;
    }

.filter-chk-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 25%;
    border: 2px solid #ddd;
    background: #fff;
    transition: all 0.2s ease;
    flex-shrink: 0;
    position: relative;
}

.filter-chk-box::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 25%;
    background: transparent;
    position: absolute;
}

.filter-chk input[type="checkbox"]:checked + .filter-chk-box {
    background: #ffffff;
    border-color: #ff7a00;
}

.filter-chk input[type="checkbox"]:checked + .filter-chk-box::after {
    background: #ff7a00;
}

.price-range-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 0;
}

.price-labels {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 600;
    color: var(--cf-accent);
    font-size: 14px;
}

.price-slider-container {
    position: relative;
    width: 100%;
    height: 8px;
    display: flex;
    align-items: center;
}

.price-slider {
    position: absolute;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: transparent;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
    z-index: 5;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--cf-accent);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    pointer-events: auto;
    z-index: 10;
}

.price-slider::-webkit-slider-thumb:hover {
    box-shadow: 0 2px 8px rgba(16, 119, 128, 0.4);
    transform: scale(1.15);
}

.price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #107780;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    pointer-events: auto;
}

.price-slider::-moz-range-thumb:hover {
    box-shadow: 0 2px 8px rgba(16, 119, 128, 0.4);
    transform: scale(1.15);
}

.price-slider::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 4px;
    border: none;
    background: transparent;
}

.price-slider::-moz-range-track {
    height: 8px;
    border-radius: 4px;
    border: none;
    background: transparent;
}

.price-slider-container::before {
    content: '';
    position: absolute;
    height: 8px;
    border-radius: 4px;
    background: var(--cf-primary);
    left: 0;
    right: 0;
    top: 100%;
    transform: translateY(-50%);
    z-index: 1;
}

#priceSliderMin::-webkit-slider-runnable-track {
    background: transparent;
}

#priceSliderMax::-webkit-slider-runnable-track {
    background: transparent;
}

/* Time Filter Grid (Departure/Return Time) */
.time-filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0px 0 !important;
}

.time-filter-item {
    position: relative;
    cursor: pointer;
}

.time-filter-item input[type="radio"] {
    display: none;
}

.time-filter-radio {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s;
    z-index: 5;
    display: none;
}

.time-filter-item input[type="radio"]:checked+.time-filter-radio {
    border-color: #065b66;
    background: #065b66;
    box-shadow: inset 0 0 0 4px #fff;
}

.time-filter-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 8px;
    font-size: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    min-height: 90px;
    transition: all 0.2s;
    background: #fff;
}

.timeFilter {
    background-color: #e0e8f6;
}





.IsAlternateContent {
    font-size: 12px;
    background-color: #3ab54a;
    font-weight: 500;
    color: white;
    padding: 5px;
    border-radius: 5px;
}

.IsNearbyContent {
    font-size: 12px;
    background-color: #007bff;
    font-weight: 500;
    color: white;
    padding: 5px;
    border-radius: 5px;
}

.hid {
    display: none;
}



.deals-wrapper {
    position: relative;
    display: block;
}

.deals-carousel {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Edge */
}

.deals-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome / Safari */
}



.deals-nav {
    position: absolute;
    transform: translateY(-50%);
    border: none;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.deals-nav.left {
    right: 55px;
    top: -9px;
}

.deals-nav.right {
    right: 10px;
    top: -9px;
}

.deals-carousel {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
}

.deal-item {
    flex: 0 0 auto;
    background: #fff;
    border: 1px solid #eef3f6;
    border-radius: 0;
    padding: 5px 8px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    min-width: 100px;
    text-align: center;
    height:80px;
}

    .deal-item.active-airline {
        background: #e6f1fc;
    }

.deal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    /*width: 40px;*/
     height: 45px; 

}
#dealsCarousel .deal-logo img {
   /* transform: scale(1.5);*/
}

#dealsCarousel a:first-child div {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.deal-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.deal-price {
    font-weight: 700;
    color: var(--cf-primary);
    font-size: 14px;
}


.deal-tabs {
    display: flex;
    gap: 12px;
    margin-top: 0px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #fff;
    border: 1px solid #e6e6e6;
    padding: 4px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-direction: column;
    font-size: 12px;
}

.tab-btn.active {
    background: var(--cf-primary);
    color: #fff;
    border-color: transparent;
    align-items: flex-start;
}

.tab-btn.active .chip {
    color: #fff;
}

.tab-btn .chip {
    display: inline-block;
    padding: 0;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--cf-primary);
}

.label_filter_text {
    border-radius: 8px;
    padding: 5px;
    background: lightblue;
    font-size: 12px
}

.label_filter_text_close {
    cursor: pointer;
    font-size: 14px;
}

.listing-page .org-des-listings {
    display: flex !important;
    /* gap: 20px; */
    justify-content: end;
    margin-top: 0px;
}

.listing-page .org-des-listings .route-pill {
    display: flex;
    gap: 6px;
    background-color: #F8F8F8;
    align-items: center;
    border-radius: 5px;
    padding: 0 10px 0 10px;
}

.listing-page .org-des-listings .sort-pill {
    background-color: #F8F8F8;
    border-radius: 5px;
    padding: 0 10px 0 10px;
    display: flex;
    align-items: center;
}

.listing-page .org-des-listings .route-pill .route-segment {
    font-size: 13px;
    color: #000;
    font-weight: 600;
}
    .listing-page .org-des-listings .route-pill .route-arrow {
        margin-bottom: 4px;
    }

.listing-page .org-des-listings .sort-pill select {
    font-size: 9px;
    background-color: transparent;
    border: transparent;
}






.flight-card {
    border: 1px solid #a5b4be;
    border-radius: 12px;
    background: #fff;
    max-width: 1000px;
    margin: auto;
}

.flight-card-alternate {
    border: 1px solid #3ab54a;
    border-radius: 12px;
    background: #fff;
    max-width: 1000px;
    margin: auto;
}

    .flight-card-alternate .altern_green {
       /* position: absolute;
        left: 0;*/
        background: #3ab54a;
        font-weight: 500;
        font-size: 12px;
        padding: 5px 15px 6px 14px;
        color: #fff;
        line-height: 12px;
        border-radius: 11px 11px 0 0;
        width: 100%;
        margin: 0 0 0 0;
        top: 0;
        display: flex;
    }

.flight-card-nearby {
    border: 1px solid #007bff;
    border-radius: 12px;
    background: #fff;
    max-width: 1000px;
    margin: auto;
}

    .flight-card-nearby .nearby_blue {
        /*position: absolute;
        left: 0;*/
        background: #007bff;
        font-weight: 500;
        font-size: 12px;
        padding: 5px 15px 6px 14px;
        color: #fff;
        line-height: 12px;
        border-radius: 11px 11px 0 0;
        width: 100%;
        margin: 0 0 0 0;
        top: 0;
        display: flex;
    }

/* This css code for altenate date and nearby airport icon on hover start css*/

.ruot_ttyps_icon {
    cursor: pointer;
    position: relative;
}

    .ruot_ttyps_icon:hover .promo_detai3 {
        display: block;
    }

.promo_detai3 {
    position: absolute;
    left: 46%;
    top: 35px;
    width: 260px;
    border: solid 1px #b1b7c7;
    background: #fff;
    color: black;
    text-align: left;
    padding: 8px 10px 8px 10px;
    border-radius: 4px;
    display: none;
    box-shadow: inset 0 0 4px #00000033;
    transform: translate(-50%, 0px);
    z-index: 9999;
}

    .promo_detai3 h5:before {
        font-family: fontawesome;
        content: "\f0d8";
        position: absolute;
        top: -17px;
        left: 48%;
        font-size: 27px;
        color: #fff;
        text-shadow: 0 -2px 0 #b1b7c7;
    }

    .promo_detai3 h5 {
        font-size: 11px;
        font-weight: 400;
        margin: 0 0 0 0;
        padding: 4px 0 4px 0;
    }

/* This css code for altenate date and nearby airport icon on hover end css*/


.airline-info-width {
    width: 25%;
    overflow:clip;
}

.flight-details-width {
    width: 75%;
}

.depart-width {
    width: 35%;
}

.duration-stops-width {
    width: 30%;
}

.arrival-width {
    width: 35%;
}

/* Airline Brand Section */
.airline-logo {
    width: 75px;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 5px;
}

.airline-name {
    font-size: 12px;
    color: #333;
    margin-bottom: 0;
    width: 110px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.flight-no {
    font-size: 10px;
    color: #777;
}


.operated-row {
    font-size: 10px;
    color: #7d7d7d;
    padding: 2px;
    border-radius: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Flight Path Line */
.flight-path-container {
    position: relative;
    text-align: center;
    min-width: 120px;
}

.duration-text {
    font-size: 12px;
    color: #777;
    display: block;
}

.path-line {
    height: 1px;
    border-top: 1px dashed #999;
    width: 100%;
    display: block;
    margin: 4px 0;
    position: relative;
}

/* Path Line Icons (Dots) */
.path-line::before,
.path-line::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #999;
    border-radius: 50%;
    top: -3.5px;
}

.path-line::before {
    left: 0;
}

.path-line::after {
    right: 0;
}


/* Second path line */
.flight-path-line {
    display: flex;
    align-items: center;
    width: 100%;
}

/* ICONS */
.path-icon {
    font-size: 12px;
    color: #6a6a6a;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .path-icon.end i {
        transform: rotate(90deg);
    }


/* TRACK */
.path-track {
    display: flex;
    align-items: center;
    justify-content: center;
    /* center base */
    gap: 10px;
    /* stops ke beech space */
    flex: 1;
    height: 1px;
    margin: 0 2px;
    position: relative;
    border-top: 1px dashed #b4b4b4;
}


/* LAYOVER DOT */
.layover-dot {
    border-radius: 50%;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    width: 6px;
    height: 6px;
    background: #999;
}
.stop-point {
    margin-top: 20px;
    position: relative;
    text-align: center;
    padding-top: 3px;
    /* text ke liye space */
}


.stop-text {
    font-size: 12px;
    color: #555;
    white-space: nowrap;
}

/* Time & City */
.time-display {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.city-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    color: black;
    margin-left: 0;
}

.city-name span {
    font-size: 12px;
}

.city-full {
    font-weight: 400;
    color: #555;
}

.travel-date {
    font-size: 12px;
    color: #888;
}

/* Bottom Section */
.card-footer-custom {
    border-top: 1px dashed #dfe6ed;
    padding-top: 8px;
    margin-top: 15px;
    font-size: 0.8rem;
}

.flight-details-link {
    color: var(--cf-primary);
    text-decoration: underline;
    font-weight: 500;
    font-size: 14px;
    cursor:pointer;
    /* margin-right: 108px; */
}

/*.listing-page .text-muted {
    display: flex;
}*/

.listing-page .amenity-icon {
    width: 20px;
    height: 20px;
}


/* Baggage Tooltip */
.baggage-wrap {
    display: flex;
    align-items: center;
    justify-content:center;
    gap: 8px;
}

.bag-item {
    position: relative;
    cursor: pointer;
    color: #6b7280;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    outline: none;
    /* optional */
}

    .bag-item i {
        color: #02253B;
    }

.baggage-wrap .bag-item img {
    width: 16px;
}

    /* Tooltip box */
    .bag-tooltip {
        position: absolute;
        bottom: calc(100% + 8px);
        left: 50%;
        transform: translateX(-50%) translateY(4px);
        background: #02253B;
        color: #fff;
        text-align: center;
        padding: 6px 0px;
        border-radius: 6px;
        min-width: 140px;
        font-size: 10px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
        opacity: 0;
        visibility: hidden;
        /* 🔑 ADD */
        pointer-events: none;
        /* tooltip itself not clickable */
        transition: opacity .15s ease, transform .15s ease;
        z-index: 999;
    }


.bag-tooltip::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #02253B transparent transparent transparent;
    /* border */
}

.bag-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -1px;
    border-width: 7px;
    border-style: solid;
    border-color: #02253B transparent transparent transparent;
    /* fill */
}



/* show on hover + mobile tap */
.bag-item:hover .bag-tooltip,
.bag-item:focus .bag-tooltip {
    opacity: 1;
    visibility: visible;
    /* 🔑 ADD */
    transform: translateX(-50%) translateY(0);
}


.bag-tooltip strong {
    display: block;
    margin-bottom: 0px;
}

/* Price Section (Right Side Desktop) */
.price-col {
    border-left: 1px solid #dfe6ed;
    padding: 8px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 0 12px 12px 0;
}


.price-value {
    color: var(--cf-primary);
    font-size: 20px;
    font-weight: 700;
}

.price-decimal {
    font-size: 0.9rem;
    vertical-align: super;
    top: 0;
}

.per-person {
    font-size: 12px;
    margin-top: -5px;
}

.tax-info {
    font-size: 0.7rem;
    color: #888;
}

/* Buttons */
.btn-book-desktop {
    color: #ffffff;
    background: #ff6d00;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
}

.flight-card:hover .price-col,
.flight-card-nearby:hover .price-col,
.flight-card-alternate:hover .price-col {
    background-color: #FFEBE4;
}

.flight-card:hover .btn-book-desktop,
.flight-card-nearby:hover .btn-book-desktop,
.flight-card-alternate:hover .btn-book-desktop {
    background-color: #ff4400;
    color: #ffffff;
}

.flight-card:hover {
    border: 1px solid #f38a6a;
    cursor: pointer;
}
.flight-card-nearby:hover {
    border: 1px solid #007bff;
    cursor: pointer;
}
.flight-card-alternate:hover {
    border: 1px solid #3ab54a;
    cursor: pointer;
}

/* Mobile Logo Styling */
.mob_logo {
    width: 20px;
    /* Adjust as per your svg size */
    display: block;
    height: auto;
    position: absolute;
    top: -10px;
}

.fdb {
    font-size: 12px;
}

/*Traveler and class OVERLAY */
.trav-overlay {
    position: fixed;
    /* 🔥 MOST IMPORTANT */
    inset: 0;
    /* top right bottom left = 0 */
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    /* sabse upar */
    display: none;
    align-items: center;
    justify-content: center;
}


/* POPUP */
.trav-popup {
    background: #fff;
    width: 100%;
    max-width: 380px;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    z-index: 10000;
    /* overlay se bhi upar */
}


/* HEADER */
.trav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #02253B;
}

.trav-header h4 {
    margin: 0;
}

.trav-close {
    border: none;
    background: #f1f1f1;

    color: #f82a2a;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

/* ROW */
.trav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0;
}

.trav-age {
    font-size: 12px;
    color: #6b7280;
}

/* COUNTER */
.trav-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trav-counter button {
    width: 34px;
    height: 34px;
    border: none;
    background: #f3f3f3;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

.trav-counter span {
    min-width: 18px;
    text-align: center;
    color: #000000;
    font-weight: bold;
}

/* CLASS */
.trav-class label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #000000;
}

.trav-class select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* DONE */
.trav-done {
    margin-top: 16px;
    width: 100%;
    background: var(--cf-accent);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

#multiCityRows {
    padding-bottom: 15px;
}

.row.multicity-row:not([data-index="1"]) {
    margin-top: 0px;
}

.listing-page .row.multicity-row:not([data-index="1"]) {
    margin-top: 8px;
}


/* Multicity mobile fix */
.multicity-mobile-stack {
    flex-direction: column !important;
}

.multicity-mobile-stack>[data-role="traveller"],
.multicity-mobile-stack>[data-role="search"] {
    order: 99 !important;
}





/* ===============================
   FLIGHT DETAILS PANEL
   =============================== */
.fd-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    display: none;
    z-index: 1049;
}

.flight-details-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1050;
    background-color: #F3F3F3;
    transform: translateX(100%);
    transition: .35s ease;
}
body.fd-open {
    overflow: hidden;
}

body.fd-open .flight-details-panel {
    transform: translateX(0);
}

.fd-tabs .nav-link {
    color: black;
    border: 1px solid #0B2A3F;
    margin-right: 6px;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 4px;
    background-color: #ffffff;
}

.fd-tabs .nav-link.active {
    background: #0B2A3F;
    color: #fff;
}

.fd-tab-content {
    display: none;
}

.fd-tab-content.active {
    display: block;
}

.fd-body {
    border-radius: 4px;
}

.trip-section {
    display: none;
}

.trip-section.active {
    display: block;
}

.flight-line {
    display: flex;
    align-items: center;
    gap: 6px;
}

.flight-detail-header {
    background: #02253b;
    padding: 4px 8px;
    border-radius: 6px;
}

/* Tooltip Background Color Change */

.tooltip-inner {
    background-color: #f60 !important;
    color: #fff;
    font-weight: 500;
}

/* Tooltip Arrow Color */

.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #f60 !important;
}

.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #f60 !important;
}

.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: #f60 !important;
}

.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: #f60 !important;
}

/* ORANGE TOOLTIP THEME */

.tooltip.orange-tooltip {
    --bs-tooltip-bg: #f60;
    --bs-tooltip-color: #fff;
    font-weight: 500;
}

.flight-line span {
    flex: 1;
    height: 1px;
    background: #d1d5db;
}

.fd-footer {
    background: #02253B;
}


.fd-book-btn {
    background: #ff6d00;
    color: #fff;
    padding: 8px 16px;
    font-size: 20px;
}

.fd-book-btn:hover,
.fd-book-btn:active {
    background: #ff4400 !important;
    color: #fff !important;
}


.flight-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.flight-line span {
    width: 60px;
    height: 1px;
    background: #ccc;
}

.flight-line i {
    font-size: 18px;
    color: #000;
}

.layover-badge {
    background: #f1f1f1;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
}

.detail-city-name,
.detail-travel-date {
    font-size: 12px;
    font-weight: 600;
}

.detail-airport-name {
    font-size: 12px;
    color: #888;
}

.detail-terminal {
    color: #FF6A00;
    font-size: 13px;
}

.detail-opratedby,
.detail-class {
    font-size: 12px;
}

.detail-airline {
    font-size: 14px;
    line-height: 0.9;
}

.detail-flightno {
    font-size: 12px;
    color: #999;
}

.detail-grand-total {
    line-height: 1;
}

.border-bottom-dashed {
    border-bottom: 1px dashed #e5e7eb;
}

.flight-path-container {
    text-align: center;
    flex-shrink: 0;
}

.layover-divider {
    position: relative;
    border-bottom: 1px dashed #e5e7eb;
    /* light dashed */
    text-align: center;
    margin-top: 24px;
}

.layover-divider .layover-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #ececec;
    /* card background */
    padding: 5px 8px;
    font-size: 11px;
    color: #555;
    border-radius: 20px;
}

/* Remove Bootstrap row borders */
.fare-table> :not(caption)>*>* {
    border-bottom: none;
}

/* Font control */
.fare-table th {
    font-size: 14px;
    font-weight: 600;
}

.fare-table td {
    font-size: 12px;
}

/* Padding control */
.fare-table th,
.fare-table td {
    padding: 10px 12px;
}


/* Footer  */
.footer-payments {
    background: #023554;
    padding-top: 16px;
    margin-top: 12px;
}
    .footer-payments .disclemar {
        font-size: 13px;
        color:#fff;
    }

.payments {
    background: #02253B;
    padding: 15px 0 15px;
}

    .payments .trustbox_sec .trustpilot-widget {
        position: relative;
        left: 0;
        top: 0;
        border: solid 1px #ffffff52;
        padding: 7px 10px 5px 10px;
        color: #333 !important;
        width: 204px;
        border-radius: 4px;
    }

.payment_icons ul li {
    display: inline-block;
}

.payment_icons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.socialLink {
    margin: 0px 0 0;
    padding: 0;
    list-style: none;
    text-align: end;
    flex-wrap: wrap;
}

.socialLink a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgb(17, 17, 17);
    font-size: 16px;
    border-radius: 50%;
    text-decoration: none;
    background: linear-gradient(to top, rgb(255, 102, 0) 50%, rgb(243, 244, 246) 50%);
    background-size: 100% 200%;
    background-position: top;
    transition: background-position 0.85s ease, color 0.85s ease;
}

    .socialLink a:hover {
        color: #fff;
        background-position: bottom;
    }



.copyright_bottoms {
    background: #001726;
    text-align: center;
    padding: 10px 0;
}

    .copyright_bottoms p {
        font-size: 12px;
        color: #fff;
        margin: 0px;
        text-transform: capitalize;
        letter-spacing: 0;
    }

    /*Skelton loader css start*/
/* Skeleton Base Class */
.skeleton {
    background-color: #e2e5e7;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    background-size: 200px 100%;
    background-repeat: no-repeat;
    border-radius: 4px;
    display: inline-block;
    animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Custom dimensions for different skeleton parts */
.sk-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.sk-text {
    width: 100%;
    height: 14px;
    margin-bottom: 6px;
}

.sk-text-sm {
    width: 60%;
    height: 10px;
}

.sk-title {
    width: 80px;
    height: 24px;
    margin-bottom: 8px;
}

.sk-btn {
    width: 100%;
    height: 40px;
    border-radius: 8px;
}

.sk-chip {
    width: 120px;
    height: 45px;
    border-radius: 8px;
}

.sk-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.sk-path {
    width: 100%;
    height: 2px;
    margin: 10px 0;
}
    /*Skelton loader css end*/



/* ===============================
   MOBILE FLIGHT DETAILS PANEL
   =============================== */
@media (max-width: 991.98px) {
    .main_popup {
        width: 100% !important;
        margin: 20px auto !important;
    }
    .pkfty h3 {
        font-size: 15px !important;
        padding: 4px 20px 4px 20px !important;
    }
    .dating_dsdr {
        width: 100% !important;
    }
        .dating_dsdr ul li h6 {
            font-size: 14px !important;
        }
    .Popup_call a {
        padding: 8px 17px 8px 48px !important;
        font-size: 16px !important;
    }

    .flight-details-panel {
        position: fixed;
        top: auto;
        left: 0;
        bottom: 0 !important;
        width: 100%;
        height: 88%;
        z-index: 1051;
        border-radius: 10px 10px 0 0;
        transform: translateY(100%);
        transition: transform .3s ease;
        display: flex;
    }

    body.fd-open .flight-details-panel {
        transform: translateY(0);
    }

    /* backdrop */
    .fd-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .45);
        z-index: 1050;
        display: none;
    }

    body.fd-open .fd-backdrop {
        display: block;
    }

    /* prevent body scroll */
    body.fd-open {
        overflow: hidden;
        touch-action: none;
    }

    .detail-middle {
        line-height: normal;
    }

    .fare-table th,
    .fare-table td {
        padding: 8px 8px;
    }



    /* 1. Calendar ko poori screen par phailao */
    .flatpickr-calendar {
        width: 100% !important;
        height: 100% !important;
        max-height: 100vh !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        border-radius: 0 !important;
        /* Mobile pe corners sharp ache lagte hain full screen mein */
        margin: 0 !important;
        display: flex;
        flex-direction: column;
    }

    /* 2. Month aur Days ka section scrollable banao agar height kam ho */
    .flatpickr-innerContainer {
        flex: 1;
        overflow-y: auto;
        background: #fff;
    }

    /* 3. Months header ko sticky rakho top pe */
    .flatpickr-months {
        position: sticky;
        top: 0;
        z-index: 10;
        padding: 20px 10px !important;
        /* Mobile pe thoda bada header */
    }

    /* 4. Dates ko screen ke hisaab se bara-bar set karo */
    .flatpickr-days {
        width: 100% !important;
    }

    .dayContainer {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        justify-content: space-around;
    }

    /* 5. Date box thoda bada karo mobile touch ke liye */
    .flatpickr-day {
        max-width: 13% !important;
        /* 7 columns hote hain, 13-14% sahi hai */
        height: 50px !important;
        line-height: 50px !important;
        margin: 5px 0 !important;
    }

    /* Bas ye final touch check kar lena */
    .flatpickr-rContainer {
        width: 100% !important;
    }

    .flatpickr-days {
        width: 100% !important;
        display: flex;
        justify-content: center;
        /* Dates ko center mein rakhne ke liye */
    }

    .flight-detail-header h6 {
        font-size: 14px;
    }

    .flight-detail-header i {
        font-size: 14px;
    }

    .flight-detail-header span {
        font-size: 14px;
    }

    .layover-dot {
        top: 0px;
    }

    .promo_detai2 {
        top: 35px;
    }

        .promo_detai2:before {
            top: -24px;
        }
    .timeout_title{
        width:60% !important;
        padding:25px 15px !important;
    }
}


@media (min-width: 992px) {
    .filter-box {
        top: 108px;
        height: calc(100vh - 115px);
        overflow-y: auto;
        position:sticky;
        z-index:0;
    }
    .mstickyup {
        top: 84px;
        height: calc(100vh - 95px);
    }

}

/* =========================
   TABLET (iPad) OPTIMIZATION
========================= */
@media (min-width: 768px) and (max-width: 991.98px) {
    .flight-detail-header h6 {
        font-size: 14px;
    }

    .flight-detail-header i {
        font-size: 14px;
    }

    .flight-detail-header span {
        font-size: 14px;
    }

    #header {
        display: none;
    }

    .cf-blue-strip {
        display: none;
    }

    .payments {
        display: none;
    }

    .copyright_bottoms {
        display: none;
    }

    .od-group,
    .info-group {
        margin-top: 8px;
    }

    .flight-card {
        border-radius: 8px;
    }

    .time-display {
        font-size: 14px;
    }

    .city-name {
        font-size: 14px;
    }

    .city-name .city-full {
        font-size: 12px;
    }

    .duration-text,
    .stop-text {
        font-size: 12px;
    }
    .airline-info-width {
        width: 20%;
    }

    .flight-details-width {
        width: 80%;
    }

    .airline-name {
        font-size: 10px;
        width: 80px;
    }

    .flight-no {
        font-size: 10px;
    }


    .price-value {
        font-size: 15px;
    }

    .btn-book-desktop {
        font-size: 13px;
        padding: 6px 10px;
    }

    /* Footer thoda compact */
    .card-footer-custom {
        font-size: 12px;
        margin-top: 8px;
    }

    .flight-details-link {
        margin-right: 0px;
        font-size: 12px;
    }

    .bag-item {
        font-size: 12px;
    }

    .logoimg {
        height: 45px;
    }

    .offcanvas.offcanvas-end {
        width: 40%;
    }

    .cf-header .nav-link {
        padding: 12px 0;
    }

    .widgetSection {
        display: none;
    }

    .fareAlert {
        display: none;
    }

    .listing-page .od-label {
        display: block;
    }

    .listing-page .info-label {
        display: block;
    }

    .list-od-lable {
        display: none;
    }

    .listing-page .swap-wrap {
        top: 67%;
    }
}

/* Mobile Specific Adjustments */
@media (max-width: 767.98px) {
    #header {
        display: none;
    }
    .flight-detail-header h6 {
        font-size: 14px;
    }

    .flight-detail-header i {
        font-size: 14px;
    }

    .flight-detail-header span {
        font-size: 14px;
    }

    .cf-blue-strip {
        display: none;
    }

    .payments {
        display: none;
    }

    .copyright_bottoms {
        display: none;
    }
    #travellerCol {
        margin-bottom: 16px;
    }

    .od-input {
        font-size: 18px;
        height: 18px;
    }

    .depart-day,
    .return-day {
        font-size: 22px;
    }

    .od-group,
    .info-group {
        margin-top: 8px;
    }

    .offcanvas.offcanvas-end {
        width: 60%;
    }

    .widgetSection {
        display: none;
    }

    .fareAlert {
        display: none;
    }

    .listing-page .od-label {
        display: block;
    }

    .listing-page .info-label {
        display: block;
    }

    .list-od-lable {
        display: none;
    }

    .listing-page .swap-wrap {
        top: 67%;
    }
    .airline-info-width {
        width: 15%;
    }

    .flight-details-width {
        width: 85%;
    }

    .airline-name {
        font-size: 8px;
        width: 50px;
    }

    .flight-nn {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-end;
        font-size: 7px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .flight-nn span {
        font-size: 8px;
    }

    .time-display {
        font-size: 12px;
    }

    .city-name {
        font-size: 12px;
    }

    .city-name .city-full {
        font-size: 8px;
    }

    .duration-text,
    .stop-text {
        font-size: 7px;
    }

    .travel-date {
        font-size: 9px;
    }

    .flight-path-container {
        position: relative;
        text-align: center;
        min-width: 70px;
        line-height: 0px;
    }

    .detail-middle {
        line-height: normal;
    }

    .fdb {
        font-size: 8px;
    }

    .btn-book-desktop {
        font-size: 8px;
        background: #ff6d00;
        color: #fff;
        padding: 6px 10px;
    }

    .per-person {
        font-size: 7px;
    }

    .flex-grow-1 {
        display: flex ;
        gap: 10px !important;
    }

    .fd-body {
        display: block;
    }

    /* Main row ko flex-column hi rehne denge but footer aur price ko handle karenge */
    .flight-card .row {
        display: flex;
        flex-direction: column;
    }

    .stop-point {
        margin-top: 14px;
        position: relative;
        text-align: center;
        padding-top: 2px;
    }

    /* Footer section ko hide karke price section ke andar flexbox se manage karenge */
    .card-footer-custom {
        border-top: none !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        flex: 1;
        /* Left side space cover karega */
    }

    .flight-details-link {
        margin-right: 0px;
        font-size: 8px;
    }

    .bag-item {
        font-size: 10px;
    }

    .price-col {
        border-left: none;
        border-top: 1px dashed #dfe6ed;
        flex-direction: row !important;
        /* Forces 1 row on mobile */
        justify-content: space-between;
        align-items: center;
        padding: 3px 10px !important;
        width: 100%;
        border-radius: 0px 0px 12px 12px;
    }

    /* Price display tweak for mobile row */
    .price-value {
        font-size: 12px;
        margin-bottom: 0;
        font-weight: 600;
    }

    .price-decimal {
        font-size: 9px;
        top: 0;
    }

    .tax-info {
        display: none;
    }

    .path-line {
        border-top-style: solid;
    }

    .panel1 {
        border-radius: 16px 16px 0 0;
        max-width: 100%;
    }

    .ui-datepicker.ui-datepicker-multi {
        width: 100% !important;
    }

    .ui-datepicker-group {
        float: none !important;
        width: 100% !important;
    }

    .logoimg {
        height: 40px;
    }

    .sub-heading {
        font-size: 15px;
    }

    .main-heading {
        font-size: 28px;
    }

    .payment_icons {
        text-align: center;
        padding: 10px 0;
    }

    ul.socialLink {
        justify-content: center;
    }
    .layover-dot {
        top:-8px !important;
    }
    .promo_detai2{
        top:20px !important;
    }
    .promo_detai2:before {
        top: -4px !important;
    }
    .timeout_title{
        width:90% !important;
        padding: 25px 15px !important;
    }
    .layover-divider .layover-badge {
        left: 42%;
        transform: translateX(-35%);
    }
}



@media (max-width: 400px) {
    .radio-group{
        gap: 10px;
    }
    .trip-option {
        font-size: 12px;
    }

    .listing-page .org-des-listings .route-pill .route-segment {
        font-size: 10px;
    }

    .bag-title-mob {
        display: none;
    }
}


/** NEW-Autocomplete search locations CSS  starts */
.dropdown_autocomplete {
    position: absolute;
    top: 70px;
    color: #02253b;
    background: #fff;
    border: 1px solid #02253b;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    width: 100%;
    max-width: 360px;
    padding-left: 0px;
    z-index: 1;
    box-shadow: 0 0px 3px #777;
    border-radius: 1px;
    display: none;
    overflow-x: hidden;
}

.dropdown-item_autocomplete {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

    .dropdown-item_autocomplete:hover {
        color: #ffff !important;
        background: #010a3b;
    }

.main-airport_autocomplete {
    font-weight: 500;
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
}

.child-airport_autocomplete {
    padding-left: 20px;
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
    color: #444;
}

.right-angle-icons {
    font-size: 17px;
    font-weight: bold;
    margin-right: 6px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

    .right-angle-icons svg {
        display: inline-block;
        vertical-align: middle;
    }

.flight-icn {
    font-family: Arial, sans-serif;
    margin-right: 6px;
    display: flex;
    align-items: center;
}

    .flight-icn i {
        transform: rotate(319deg) !important;
        font-size: 17px;
    }

.autocomplete-plane-icon {
    transform: rotate(313deg) !important;
    font-size: 17px !important;
    margin-right: 10px;
}

.airport-name.main-airport_autocomplete {
    display: flex;
    align-items: center;
}
/* NEW-Autocomplete search locations CSS  end*/

/*Drop down search selection css start*/
/* Section header */
.dropdown-section {
    padding: 8px 12px;
    font-size: 13px;
    color: #666;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

/* Common row */
.dropdown-row {
    display: flex;
    gap: 7px;
    padding: 9px 12px;
    cursor: pointer;
    color: #6b7280;
}

    .dropdown-row:hover {
        color: #ffff !important;
        background: #010a3b !important;
    }

    /* Icons */
    .dropdown-row .icon {
        width: 13px;
        font-size: 16px;
        /*color: #333;*/
    }

    /* Text */
    .dropdown-row .title {
        font-size: 14px;
        font-weight: 600;
    }

    .dropdown-row .subtitle {
        font-size: 12px;
        /*color: #6b7280;*/
    }

/* Parent row */
.parent-row {
    background: #fff;
}

/* Exact match row */
.exact-row {
    background: #e9f3ff;
}

/* Child row */
.child-row {
    padding-left: 33px;
    position: relative;
}
/*Drop down search selection css end*/


/** Login - signup css starts * */
.dropdown-item-icons {
    width: 24px;
}

.spn_accountstatus {
    font-size: 14px;
    color: #343a40;
}

.error_fields {
    border: 1px solid red !important;
}

.login-signup-button {
    position: relative;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    color: #333 !important;
    /*border: solid 1px #376d72;
    border-radius: 10px;
    padding: 6px 10px !important;*/
}

    .login-signup-button img {
        margin-left: 0;
        padding-bottom: 2px
    }

.model-content-auth {
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.modal-body-auth {
    display: flex;
    flex-direction: row;
    padding: 0;
    min-height: 480px;
}

/* Custom Modal Styling */
.modal-dialog.modal-wider-auth {
    max-width: 900px;
}


/* Left form section */
.login-form {
    flex: 1;
    padding: 40px 30px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .login-form h5 {
        font-weight: 700;
        margin-bottom: 25px;
        color: #333;
    }

    .login-form button {
        border-radius: 8px;
        font-weight: 500;
    }

.otp-form {
    flex: 1;
    padding: 40px 30px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertically center form */
}

    .otp-form h5 {
        font-weight: 700;
        margin-bottom: 25px;
        color: #333;
    }

    .otp-form button {
        border-radius: 8px;
        font-weight: 500;
    }

.btn-google, .btn-facebook {
    border: 1px solid #abaeb6 !important;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.social-btn-auth {
    background: none;
    color: #73767f;
    border: .124rem solid #c4c6ce;
    padding: .6rem .5rem;
    margin: 5px;
}

    .social-btn-auth spn-fb {
        color: #3b5998;
        font-weight: 700;
    }

    .social-btn-auth .spn-google {
        color: #696767;
        font-weight: 700;
    }

.divider-auth {
    text-align: center;
    margin: 20px 0;
    font-size: 0.9rem;
    color: #888;
    position: relative;
}

    .divider-auth::before,
    .divider-auth::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 40%;
        height: 1px;
        background: #ddd;
    }

    .divider-auth::before {
        left: 0;
    }

    .divider-auth::after {
        right: 0;
    }

.btn-custom-auth {
    background: #f60;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s ease;
}

    .btn-custom-auth:hover {
        background: #e45b00;
        transform: scale(1.007);
        color: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

/* Right promo section - full height image */
.promo-section-auth {
    flex: 1;
    background: linear-gradient(rgb(27, 54, 57), rgb(42 39 37 / 66%)), url('/Content/assets/images/airplane-mid-flight2-auth.jpg') center no-repeat; /*center/cover*/
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 30px;
}

    .promo-section-auth h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .promo-section-auth p {
        font-size: 1rem;
        opacity: 0.9;
    }

#btn_save_auth {
    font-weight: 700 !important;
}

.earn-points {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px;
    font-size: 0.95rem;
}

    .earn-points button {
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.learn-link-auth {
    color: #ffd700;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}

    .learn-link-auth:hover {
        text-decoration: underline;
        color: #ffd700;
    }

.modal-wider-auth .modal-dialog {
    max-width: 900px;
}

.promo-section-auth .close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.custom-input-auth {
    padding: .6rem 1rem;
    line-height: 1.5;
    width: 100%;
    border: 1px solid #abaeb6;
    border-radius: .3125rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

    .custom-input-auth:focus {
        outline: none !important;
    }

.promo-section-auth .close-btn:hover {
    background: rgba(255,255,255,0.4);
}

.spn_auth_company {
    color: #376d72;
}

.user-card {
    position: absolute;
    top: 80%;
    right: 353px;
    margin-top: 5px;
    z-index: 1;
    width: 230px;
}

    .user-card .card {
        border-radius: 5px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        font-size: 14px;
    }

    .user-card .dropdown-item {
        display: block;
        padding: 6px 10px;
        color: #333;
        text-decoration: none;
        border: 1px solid #fff;
    }

.dropdown-item.drpdown {
    box-shadow: 0 6px 8px -7px rgba(0, 0, 0, 0.15);
}

.user-card .dropdown-item:hover {
    background-color: #bcd9e6;
    border-radius: 6px;
}

.dropdown-item-icons {
    margin-right: 6px;
    font-size: 17px;
}

    .dropdown-item-icons.ropdown-item-ic {
        color: #6e6b6b;
    }

#spn_username {
    cursor: pointer;
    font-size: small;
}

/* Popup overlay */
.confirm-popup {
    display: none; /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent background */
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Popup box */
.confirm-popup-content {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    max-width: 400px;
    width: 90%;
    font-family: Arial, sans-serif;
}

/* Buttons container */
.confirm-popup-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Yes button */
.btn-confirm {
    background-color: #f60;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

    .btn-confirm:hover {
        background-color: #FF5722;
    }

.btn-cancel {
    background-color: #39893c;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

    .btn-cancel:hover {
        background-color: #2a6d2c;
    }


.loader_container_p {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    z-index: 9999;
    text-align: center;
}

    .loader_container_p img {
        position: relative;
        top: 50%;
        left:45%;
        transform: translateY(-50%);
        max-width: 150px;
    }

    /* Login - signup css end*/

    /*More Results button css start*/
.more_results_loads {
    background: #fff;
    border: solid 1px #a5b4be;
    font-size: 16px;
    padding: 12px 10px;
    text-align: center;
    width: 100%;
    display: block;
    color: var(--cf-primary);
    border-radius: 12px;
}
/*More Results button css end*/

/*noflights_block section css code start*/
.noflights_error {
    padding: 45px 0;
}

.middle-search_no {
    width: 100%;
    text-align: center;
    float: left;
    margin: 15px 0 20px 0;
}

.no_result {
    width: 70%;
    display: inline-block;
    padding: 40px 0 40px 0;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 6px #00000029;
}

.noflights_calls {
    width: 40%;
    float: left;
}

    .noflights_calls img {
        width: 100%;
        position: relative;
        bottom: -59px;
    }

.no_result_left {
    width: 60%;
    float: left;
    padding: 0 15px;
}

    .no_result_left img {
        width: 90px;
        display: block;
        margin: 0 auto;
    }

    .no_result_left h1 {
        font-size: 22px;
        margin: 20px 0 12px 0;
        color: var(--cf-primary);
        font-weight: 600;
        text-align: center;
    }

    .no_result_left p {
        font-size: 18px;
        margin: 0px 0 15px 0;
        color: #000000;
        font-weight: 500;
        text-align: center;
    }

    .no_result_left h3 {
        font-size: 16px;
        margin: 40px 0 10px 0;
        color: #333333;
        font-weight: 500;
        text-transform: uppercase;
    }

    .no_result_left h5 {
        font-size: 18px;
        margin: 4px 0 5px 0;
        color: #333333;
        font-weight: 600;
    }
.calls_mearror {
    background: #f60;
    color: #fff !important;
    padding: 14px 25px;
    font-size: 20px;
    display: inline-block;
    line-height: 18px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none !important;
}

a.Fresh_Again {
    color: #007bff;
    text-decoration: none;
    margin: 2px 0 0 0;
    display: inline-block;
    border: solid 1px #007bff;
    padding: 2px 15px 2px 15px;
    border-radius: 10px;
}
/*noflights_block section css code end*/
.wait_popup_session {
    -webkit-backdrop-filter: blur(2px);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.6);
    z-index: 99911;
}
.session_expired {
    width: 95%;
    max-width: 500px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

    .session_expired img {
        width: 100px;
        display:block;
        margin:0 auto;
    }

    .session_expired h3 {
        font-size: 22px;
        color: #ed2223;
        font-weight: 600;
        margin: 20px 0 15px;
    }

    .session_expired p {
        color: var(--cf-primary);
        padding: 0;
        margin: 0 0 25px;
        font-size: 16px;
        font-weight: 500;
    }

    .session_expired a {
        width: 96%;
        line-height: 38px;
        max-width: 165px;
        height: 38px;
        color: #fff;
        font-size: 0.9rem;
        border-radius: 5px;
        text-align: center;
        display: inline-block;
        font-weight: bold;
        cursor: pointer;
        background: var(--cf-primary);
    }
.bgblue_home {
    background-color: #ff6600 !important;
}

/* List page Book with  an agent for Banner code css start*/
.callGrowth5 {
    margin-top:0.5rem;
    padding: 8px 13px 8px;
    border-radius: 7px !important;
    background-color: lab(12 10.45 -36.23);
    color: #ffff;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(circle 117px at 80% 20%, rgba(255,255,255,0.25), transparent 70%), radial-gradient(circle 40px at 20% 80%, rgba(255,255,255,0.25), transparent 70%), radial-gradient(circle 50px at 50% 90%, rgba(255,255,255,0.2), transparent 70%), linear-gradient(to right, rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: auto, auto, auto, 25px 25px, 25px 25px;
    background-repeat: no-repeat, no-repeat, no-repeat, repeat, repeat;
    box-shadow: 0 4px 15px rgba(2, 37, 59, 0.4);
}


.homecall_img_2 {
}

    .homecall_img_2 img {
        width: 50%;
        margin: 0;
        border-radius: 50%;
    }

    .homecall_img_2 h5 {
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 8px 0;
        color: #ffeb00;
    }

    .homecall_img_2 ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .homecall_img_2 ul li {
            font-size: 13px;
            width: 50%;
            float: left;
            padding: 0 15px 0 0;
            display: flex;
        }

            .homecall_img_2 ul li img {
                width: 10px;
                height: 10px;
                position: relative;
                top: 6px;
                margin: 0 5px 0 0;
            }

.callnow_act_rt {
    text-align: center;
    padding: 10px 0 0 0;
}

    .callnow_act_rt h6 {
        font-size: 15px;
        color: #f3a700;
        margin: 0 0 10px 0;
    }

    .callnow_act_rt a {
        display: block;
        border: solid 2px #ff6600;
        color: #fff;
        background-color: #fe4600;
        font-size: 20px;
        font-weight: 600;
        margin: 0;
        position: relative;
        text-decoration: none;
        padding: 11px 0 10px 18px;
        line-height: 18px;
        border-radius: 6px;
    }

        .callnow_act_rt a i {
            position: absolute;
            left: 4px;
            width: 32px;
            background: #ff6600;
            color: #fff;
            height: 32px;
            top: 3px;
            border-radius: 6px;
            line-height: 32px;
        }
/* List page Book with  an agent for Banner code css end*/

/** LOADER PAGE CSS start**/

.build_loader {
    background: url(/content/assets/images/skyback.jpg) left top no-repeat;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: 9999;
    background-color: #fff;
}

.main_popup {
    width: 550px;
    padding: 0px 0 0px;
    margin: 50px auto;
}

.pkfty {
    padding: 0px;
    text-align: center;
}

    .pkfty h3 {
        font-size: 18px;
        margin: 30px 0 30px 0;
        font-weight: 700;
        text-transform: uppercase;
        display: inline-block;
        background: #f9f9f9;
        padding: 4px 35px 4px 35px;
        color: #fd5003;
        border-radius: 35px;
    }

.pls_my {
    text-align: center;
    width: 80%;
    margin: 20px auto 0 auto;
}

.dating_dsdr {
    margin: 25px auto;
    width: 80%;
}

    .dating_dsdr ul {
        list-style: none;
        padding: 0px;
        margin: 0px;
        display: flex;
    }

        .dating_dsdr ul li {
            width: 33.3%;
            text-align: center;
        }

.nb_bord {
    border-right: solid 1px #ddd;
}

.dating_dsdr ul li img {
    width: 25px;
    display: block;
    margin: 0 auto;
}

.dating_dsdr ul li p {
    font-size: 14px;
    margin: 10px 0 15px 0;
    color: #777;
}

.dating_dsdr ul li h6 {
    font-size: 15px;
    margin: 10px 0 10px 0;
    color: #292929;
    font-weight: 600;
}

.progress {
    padding: 1px;
    background: rgb(222 222 222);
    border-radius: 6px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
    height: 20px;
}

.progress-bar {
    height: 18px;
    background-color: #ee303c;
    border-radius: 4px;
    transition: 0.4s linear;
    transition-property: width, background-color;
}

.progress-striped .progress-bar {
    background-color: #fcbc51;
    width: 100%;
    background-image: linear-gradient(45deg, #fca311 15%, transparent 15%, transparent 40%, #fca311 40%, #fca311 75%, transparent 75%, transparent);
    animation: progressBarAnimationStrike 15s;
    -webkit-animation: progressBarAnimationStrike 15s;
    -moz-animation: progressBarAnimationStrike 15s;
}

@keyframes progressBarAnimationStrike {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@-webkit-keyframes progressBarAnimationStrike {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.Fetching_rr {
    padding: 10px 0 0 0;
    text-align: center;
}

    .Fetching_rr i {
        font-size: 20px;
        color: #fd5003;
    }

    .Fetching_rr h4 {
        font-size: 22px;
        font-weight: 600;
        margin: 0px 0 5px 0;
        color: #376d72;
    }

    .Fetching_rr p {
        font-size: 14px;
        font-weight: 400;
        margin: 0px 0 0px 0;
        line-height: 14px;
    }

.pop_logo {
}

    .pop_logo img {
        width: 200px;
    }

.pop_tollfree {
    float: right;
    margin: 0px 0 0 0;
}

    .pop_tollfree a {
        background: #191446;
        padding: 5px 15px;
        display: inline-block;
        text-decoration: none;
        font-size: 18px;
        color: #fff;
        border-radius: 20px;
    }

        .pop_tollfree a i {
            background: #28d025;
            padding: 5px 7px;
            border-radius: 16px;
            margin: 0 0 0 -9px;
        }

.Popup_call {
    margin: 20px 0 0 0;
    text-align: center;
}

    .Popup_call a {
        background: #f60;
        padding: 8px 17px 8px 50px;
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        display: inline-block;
        border-radius: 5px;
        font-weight: 600;
        text-transform: uppercase;
        position: relative;
    }

        .Popup_call a i {
            background: #ffffff52;
            width: 32px;
            height: 32px;
            position: absolute;
            line-height: 32px;
            color: #fff;
            border-radius: 20px;
            left: 10px;
            top: 5px;
        }

    .Popup_call p {
        font-size: 12px;
        color: #777;
        margin: 20px 0 15px;
    }

/** LOADER PAGE CSS END**/

/*Point hover show tooltip like messsage code css start*/
.stop-point:hover .promo_detai2 {
    display: block;
}

.promo_detai2 {
    position: absolute;
    left: 46%;
    top: 35px;
    width: 260px;
    border: solid 1px #b1b7c7;
    background: #fff;
    text-align: left;
    padding: 8px 10px 8px 10px;
    border-radius: 4px;
    display: none;
    box-shadow: inset 0 0 4px #00000033;
    transform: translate(-50%, 0px);
    white-space: normal;
    word-break: break-word;
    z-index: 1;
}

    .promo_detai2:before {
        font-family: fontawesome;
        content: "\f0d8";
        position: absolute;
        top: -24px;
        left: 48%;
        font-size: 27px;
        color: #fff;
        text-shadow: 0 -2px 0 #b1b7c7;
    }

    .promo_detai2 h5 {
        font-size: 11px;
        font-weight: 400;
        margin: 0 0 0 0;
        padding: 4px 0 4px 0;
    }
/*Point hover show tooltip like messsage code css end*/

/*Affirm msg link code css start */
.affirm-modal-trigger {
    background: none !important;
    box-shadow: none !important;
    color: #ff6600 !important;
    font-size: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
    text-transform: capitalize !important;
    font-weight: 500 !important;
}
.affirm-d {
    display: block;
}

.affirm-m {
    display: none;
}
/*Affirm msg link code css end*/

/*Mobile view when scroll then scrolltopbtn show and callus show for best deal css start*/
.mob-callus {
    position: fixed;
    bottom: 10px;
    padding: 6px;
    z-index: 2;
    left: 27px;
    width: 94%;
    background: white;
    border-radius: 4px;
    box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ff6600;
}

    .mob-callus img {
        border-radius: 50%;
        height: 40px;
    }

.sp_scroll_callus {
    font-weight: 700;
    font-size: 14px;
    color: #20595e
}

.sp_scroll_num {
    font-weight: 600;
    font-size: 18px;
    color: #3f3535;
}

.scroll-call-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ff6600;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .scroll-call-icon i {
        color: white;
        margin-top: 2px;
        font-size: 26px;
    }

.scroll-top-btn {
    position: fixed;
    bottom: 87px;
    right: 20px;
    width: 35px;
    height: 35px;
    background-color: #f60;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    display: none; /* Initially hidden */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/*Mobile view when scroll then scrolltopbtn show and callus show for best deal css end*/
/* Promo code mobile Banner start css */

.promo_section {
    width: 100%;
}

.mob-promo {
    width: 150px;
    left: auto;
    right: auto;
    border-radius: 20px;
    border-left: 0
}

.promo_section img {
    height: auto !important;
    width: 100% !important;
    border-radius: 0 !important;
    margin-left: 7px !important;
    margin-right: 11px !important;
}

.promo-banner {
    background: #043b40;
    color: white;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.3);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.promo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}
.promo-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .promo-left img {
        border-radius: 50%;
    }

.close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.promo-content {
    margin-top: 15px;
    text-align: center;
}

.promo-subtitle {
    font-size: 16px;
    margin-bottom: 5px;
}

.promo-highlight {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.promo-email {
    width: 90%;
    max-width: 400px;
    padding: 12px;
    margin-bottom: 10px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
}

.get-code-btn {
    background: #f60;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
    width: 90%;
    max-width: 400px;
}

.promo-terms {
    font-size: 12px;
    color: #ccc;
    margin-top: 10px;
}

    .promo-terms a {
        color: #ccc;
        text-decoration: underline;
    }
/* Promo code mobile Banner end css */

@media (min-width: 220px) and (max-width: 319px) {
    .affirm-d {
        display: none;
    }

    .affirm-m {
        display: block;
    }
    .callGrowth5 {
        padding: 10px 15px 12px;
    }

    .homecall_img_2 img {
        width: 25%;
        margin: 5px auto;
        display: block;
    }
    .hid {
        display: block;
        margin-bottom: 33px;
    }

    .nearby_blue {
        font-size: 8px;
        padding: 5px 10px 6px 10px;
    }

    .altern_green {
        font-size: 8px;
        padding: 5px 10px 6px 10px;
    }

    .promo_detai3 {
        left: -95px;
    }

        .promo_detai3 h5:before {
            left: 85%;
        }
    .no_result {
        width: 100%;
    }
    .noflights_calls {
        display: none;
    }

    .no_result_left {
        width: 100%;
    }
}

@media (min-width: 320px) and (max-width: 479px) {
    .affirm-d {
        display: none;
    }

    .affirm-m {
        display: block;
    }
    .callGrowth5 {
        padding: 10px 15px 12px;
    }

    .homecall_img_2 img {
        width: 25%;
        margin: 5px auto;
        display: block;
    }
    .hid {
        display: block;
        margin-bottom: 33px;
    }

    .nearby_blue {
        font-size: 8px;
        padding: 5px 10px 6px 10px;
    }

    .altern_green {
        font-size: 8px;
        padding: 5px 10px 6px 10px;
    }

    .promo_detai3 {
        left: -95px;
    }

        .promo_detai3 h5:before {
            left: 85%;
        }
    .no_result {
        width: 100%;
    }

    .noflights_calls {
        display: none;
    }

    .no_result_left {
        width: 100%;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .affirm-d {
        display: none;
    }

    .affirm-m {
        display: block;
    }
    .callGrowth5 {
        padding: 10px 15px 12px;
    }

    .homecall_img_2 img {
        width: 25%;
        margin: 5px auto;
        display: block;
    }
    .no_result {
        width: 100%;
    }

    .noflights_calls {
        display: none;
    }

    .no_result_left {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .affirm-d {
        display: none;
    }

    .affirm-m {
        display: block;
    }
    .homecall_img_2 img {
        width: 25%;
        margin: 5px auto;
        display: block;
    }

    .hid {
        display: block;
        margin-bottom: 33px;
    }
}


/*------------------------Passenger Page css code start-----------------------------*/
.parafsize {
    font-size: 12px;
}

.red-star {
    color: #dc3545;
}
/* ==========================================================================
   2. HEADER & TOP BANNER
   ========================================================================== */
.mobile-booking-strip {
    background: #02253B;
    color: #fff;
    padding: 12px;
}

.strip-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-back-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.strip-info .route {
    font-size: 16px;
    font-weight: 600;
}

.strip-info .meta {
    font-size: 12px;
    color: #fff;
}

.cf-support-phone {
    color: var(--cf-primary);
}

.cf-blue-strip {
    background: var(--cf-primary);
    height: 70px;
    margin-bottom: -35px;
}

/* ==========================================================================
   3. GENERAL BUTTONS
   ========================================================================== */
.btn-primary {
    background: var(--cf-accent);
    border-color: var(--cf-accent);
    color: var(--cf-text-light);
}

    .btn-primary:hover {
        background: #e65c00;
        border-color: #e65c00;
    }

/* ==========================================================================
   4. BOOKING STEPS & FLIGHT DETAILS
   ========================================================================== */
.warning-strip .note_text {
    display: flex;
    border-radius: 6px;
    padding: 6px;
    font-size: 12px;
    color:white;
}

.warning-strip .ruot_ttyps_icon {
    margin-left: 3px;
}

.booking-step {
    display: none;
}

    .booking-step.is-active {
        display: block;
    }

.flight-toggle-text {
    color: #0d6efd;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}

    .flight-toggle-text:hover {
        text-decoration: underline;
    }

.trip-border-top {
    border-top: 1px dotted #ccc;
    margin-top: 12px;
    padding-top: 16px;
}

/* ==========================================================================
   5. FORM INPUT FIELDS (Common Styles)
   ========================================================================== */
.field-wrap {
    position: relative;
}

.field-label {
    position: absolute;
    top: -10px;
    left: 16px;
    background: #ffffff;
    padding: 0 6px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.field-box {
    background: #fff;
    border: 1px solid #dcdfe4;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

   /* .field-box:focus-within {
        border-color: #f60;
    }*/

    .field-box .left {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
        min-width: 0;
    }

.field-input {
    border: none;
    outline: none;
    background: transparent;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    flex: 1;
}

    .field-input::placeholder {
        font-weight: 400;
        color: #9ca3af;
    }

    /* Mobile no country code dropdown css start*/
    .iti {
        position: relative;
        display: block !important;
    }

    .iti__country {
        padding: 5px 10px;
        outline: none;
        font-size: 13px;
    }

    .iti--separate-dial-code .iti__selected-dial-code {
        margin-left: 6px;
        font-size: 14px;
    }
/* Mobile no country code dropdown css end*/

.value {
    font-weight: 600;
    font-size: 16px;
}

.flag {
    width: 22px;
}

.tick {
    font-size: 20px;
    flex-shrink: 0;
}

.country-dd {
    border: none;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
}

    .country-dd:focus {
        outline: none;
    }

/* Contact Information checkbox checked or not css code start */
.ci_chk_dv {
    position: relative;
    margin: 4px 0 0 30px;
    font-size: 14px;
    color: #4b5563;
}

    .ci_chk_dv .ci_check {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

.checkmark_ar {
    position: absolute;
    top: 11px;
    left: -25px;
    height: 15px;
    width: 15px;
    background-color: #fff;
    border-color: #376d72;
    border-style: solid;
    border-width: 1px;
    border-radius: 2px;
}
/* When the checkbox is checked, add a blue background */
.lb_check_bx input:checked ~ .checkmark_ar {
    background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark_ar:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.lb_check_bx input:checked ~ .checkmark_ar:after {
    display: block;
}

/* Style the checkmark/indicator */
.lb_check_bx .checkmark_ar:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid;
    border-color: #376d72;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Contact Information checkbox checked or not css code end */

.important-text {
    /*margin-top: 18px;*/
    font-size: 14px;
    color: #4b5563;
}

/* ===== Form Group Custom (Top Border Labels) ===== */
.form-group-custom {
    position: relative;
    margin-bottom: 12px;
}

    .form-group-custom label {
        position: absolute;
        top: -8px;
        left: 14px;
        background: #fff;
        padding: 0 6px;
        font-size: 12px;
        color: #02253B;
        font-weight: 500;
        z-index: 5;
    }

.form-control-custom {
    width: 100%;
    height: 52px;
    border: 1px solid #e0e3e7;
    border-radius: 10px;
    padding: 0px 12px;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    outline: none;
}

/* Select Box Placeholder Trick */
select.form-control-custom:invalid {
    color: #6a717b;
    /* Input placeholder jaisa grey color */
}

select.form-control-custom option {
    color: #2D3748;
    /* Dropdown khulne par list dark dikhegi */
}

select.form-control-custom:valid {
    color: #0b162a;
    /* Jab user kuch select kar lega to color dark ho jayega */
}

/* ==========================================================================
   6. TRAVELER SECTION
   ========================================================================== */
.traveler-section {
    background: #fff;
}

.traveler-card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.traveler-header {
    padding: 14px 16px;
    cursor: pointer;
    background: #fafafa;
}

    .traveler-header:hover {
        background: #f3f6f9;
    }

.traveler-body {
    padding: 10px 16px 0px;
    background: #fff;
}

.frequentflyer {
    padding: 14px;
    cursor: pointer;
}

/* Chevron icon ko ghoomne layak banaya (0.3s speed) */
.traveler-chevron {
    transition: transform 0.3s ease-in-out;
}

/* Jab tab khulega (aria-expanded="true"), icon 180 degree ghoom jayega (Upar ki taraf) */
.traveler-header[aria-expanded="true"] .traveler-chevron {
    transform: rotate(180deg);
}

.freflyer-chevron {
    display: inline-block;
}
/*Frequent Flyer Chevron icon ko ghoomne layak banaya (0.3s speed) */
.freflyer-chevron {
    transition: transform 0.3s ease-in-out;
}

/* Jab tab khulega (aria-expanded="true"), icon 180 degree ghoom jayega (Upar ki taraf) */
.toggle-ff[aria-expanded="true"] .freflyer-chevron {
    transform: rotate(180deg);
}

.important-note ul li {
    margin-bottom: 6px;
    color: #5C5C5C;
    font-size: 13px;
}

/* ==========================================================================
   7. ADD-ONS SECTION (Baggage & Plans)
   ========================================================================== */
/* --- Baggage Card --- */
.baggage-card {
    background: #fff;
    border: 1px solid #e6e9ee;
    border-radius: 14px;
    padding: 20px;
}

.baggage-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.baggage-title {
    font-size: 20px;
    font-weight: 700;
}

.rec-text {
    font-weight: 600;
    color: #111;
}

.baggage-sub {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

.baggage-price-wrap {
    text-align: right;
    display: flex;
    gap: 8px;
    align-items: center;
}

.baggage-price {
    font-size: 16px;
    font-weight: 800;
}

    .baggage-price sup {
        font-size: 14px;
    }

.baggage-add-btn {
    border: 1px solid #22c55e;
    color: #22c55e;
    background: #ecfdf5;
    border-radius: 999px;
    padding: 4px 8px;
    font-weight: 700;
}
.baggage-add-btn.active {
    border: 1px solid red;
    color: red;
} 

.baggage-divider {
    border-top: 1px dashed #d1d5db;
    margin: 15px 0;
}

.baggage-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.baggage-left h6 {
    font-weight: 700;
    margin-bottom: 10px;
}

.baggage-list {
    padding-left: 18px;
    color: #6b7280;
    font-size: 12px;
}

    .baggage-list li {
        margin-bottom: 8px;
    }

.baggage-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
}

    .baggage-link:hover {
        text-decoration: underline;
    }

.baggage-right img {
    width: 150px;
}
.mob-baggage-right img {
    width: 80px;
    margin-top: -43px;
}

/* --- Best Purchase Guarantee (BPG) --- */
.bpg-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
}

.bpg-header {
    padding: 15px;
}

.bpg-title {
    font-size: 20px;
    font-weight: 700;
}

.bpg-sub {
    font-size: 14px;
    color: #6b7280;
}

.bpg-divider {
    border-top: 1px dashed #d1d5db;
    margin: 0 20px;
}

.bpg-body {
    padding: 15px;
}

.bpg-list {
    padding-left: 18px;
    margin-bottom: 10px;
}

    .bpg-list li {
        margin-bottom: 8px;
        color: #4b5563;
        font-size: 12px;
    }

.bpg-price {
    font-size: 20px;
    font-weight: 700;
}


.bpg-add-btn {
    border: 1.5px solid #22c55e;
    color: #16a34a;
    background: #ecfdf5;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.bpg-chevron {
    font-size: 18px;
    transition: .2s;
    cursor: pointer;
}

.bpg-header[aria-expanded="true"] .bpg-chevron {
    transform: rotate(180deg);
}

/* Icon par transition lagana taaki jhatke se na ghoome */
i.bpg-chevron {
    transition: transform 0.3s ease-in-out;
}

    /* Jab icon click ho aur open ho (aria-expanded="true"), toh ghoom jaye */
    i.bpg-chevron[aria-expanded="true"] {
        transform: rotate(180deg);
    }

/* --- All-in-One Pack (AIO) --- */
.aio-pack {
    background: #fff;
    padding: 1px;
}

.aio-feature {
    margin-bottom: 26px;
}

    .aio-feature h6 {
        font-weight: 700;
        margin-bottom: 4px;
    }

    .aio-feature p {
        font-size: 14px;
        color: #6b7280;
    }

.aio-plan {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

    .aio-plan.selected {
        border: 1px solid #ff6a00;
        background: #f3f4f6;
    }

.recommended {
    height: 30px;
    background: #2c5591;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .recommended.empty {
        background: transparent;
    }

.aio-body {
    padding: 15px 22px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
}

.plan-line {
    width: 100%;
    height: 1px;
    background: #c1c2c4;
    margin: 0 auto 24px;
}

.aio-plan.selected .plan-line {
    background: #ff6a00;
}

.plan-list {
    list-style: none;
    padding: 0;
    margin-bottom: 36px;
}

    .plan-list li {
        font-size: 14px;
        color: #525b67;
        font-weight: 600;
    }

        .plan-list li:not(:last-child) {
            margin-bottom: 70px;
        }

.plan-price {
    font-size: 30px;
    font-weight: 700;
    margin-top: auto;
    margin-bottom: 20px;
}

    .plan-price sup {
        font-size: 18px;
    }

.plan-btn {
    border: 1.5px solid #ff6a00;
    color: #ff6a00;
    background: #fff;
    padding: 6px;
    border-radius: 8px;
    font-weight: 600;
}

    .plan-btn.selected {
        background: #ff6a00;
        color: #fff;
    }

/* ===== AIO PREMIUM MOBILE UX ===== */
/* ===== AIO XD EXACT MOBILE SCROLL ===== */

@media (max-width: 991px) {

    .aio-pack .row.align-items-stretch {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 10px;
    }

        /* Hide scrollbar */
        .aio-pack .row.align-items-stretch::-webkit-scrollbar {
            display: none;
        }

    /* LEFT PANEL WIDTH */
    .aio-pack .col-lg-5 {
        flex: 0 0 60%;
        max-width: 60%;
    }

    /* RIGHT PANEL WIDTH (Plans container) */
    .aio-pack .col-lg-7 {
        flex: 0 0 auto;
        max-width: none;
    }

        /* Plans row horizontal */
        .aio-pack .col-lg-7 .row {
            flex-wrap: nowrap !important;
            gap: 16px;
        }

        /* Each Plan Card */
        .aio-pack .col-lg-7 .col-md-4 {
            flex: 0 0 170px;
            max-width: 170px;
        }
}

/* ==========================================================================
   8. PAYMENT SECTION
   ========================================================================== */
.payment-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

/* --- Form Fields inside Payment Section --- */
.pay-field {
    position: relative;
}

    .pay-field label {
        position: absolute;
        top: -10px;
        left: 16px;
        background: #fff;
        padding: 0 6px;
        font-size: 12px;
        color: #6b7280;
        font-weight: 500;
        z-index: 1;
    }

.pay-input,
.pay-select {
    width: 100%;
    height: 50px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 600;
    background: #fff;
}

  /*  .pay-input:focus,
    .pay-select:focus {
        border-color: #f60;
        box-shadow: 0 0 0 1px #f60;
        outline: none;
    }*/

.pay-field .tick {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: auto;
    pointer-events: none;
}

.pay-input.pe-5 {
    padding-right: 40px !important;
}

/* --- Payment Accordion (Mobile Default) --- */
.payment-wrapper {
    display: flex;
    flex-direction: column;
}

.pay-group {
    display: flex;
    flex-direction: column;
}

.pay-head {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    cursor: pointer;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
}

.pay-group:last-child .pay-head {
    border-bottom: none;
}

.pay-group.active .pay-head {
    border-left: 4px solid #f60;
    background-color: #fff4ed;
}

    .pay-group.active .pay-head strong {
        color: #02253B;
    }

.pay-body {
    display: none !important;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.pay-group.active .pay-body {
    display: block !important;
    margin-top: 10px;
    min-height: 250px !important;
}

.desktop-form-title {
    display: none;
}

.mobile-card-logos {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

/* Wallet Buttons (PayPal / GPay) */
.wallet-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.btn-wallet {
    width: 100%;
    max-width: 300px;
    height: 50px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-paypal {
    background-color: #f0c732;
    color: #000000;
}

.btn-gpay {
    background-color: #fff;
    color: #040404;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-wallet img {
    height: 20px;
}

.pay-head-icon {
    height: 24px;
}

/* ==========================================================================
   9. BILLING INFORMATION SECTION
   ========================================================================== */
.billing-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
}

.bill-field {
    position: relative;
}

    .bill-field label {
        position: absolute;
        top: -10px;
        left: 16px;
        background: #fff;
        padding: 0 6px;
        font-size: 13px;
        color: #6b7280;
        font-weight: 500;
    }

.bill-input,
.bill-select {
    width: 100%;
    height: 56px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 0px 14px;
    font-size: 16px;
    font-weight: 600;
    background: #fff;
}

   /* .bill-input:focus,
    .bill-select:focus {
        border-color: #f60;
        box-shadow: 0 0 0 1px #f60;
        outline: none;
    }*/

#btnBackAddon {
    height: 56px;
}
.paypalbtn {
    width: 50%;
}
/* ==========================================================================
   10. PRICE SUMMARY SIDEBAR
   ========================================================================== */
.price-card {
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.price-title {
    font-weight: 600;
    font-size: 16px;
}

.price-block {
    margin-bottom: 0px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 14px;
}

    .price-row.main {
        padding: 5px 0;
        font-size: 14px;
        border-top: 1px solid #f3f3f3;
    }

.price-sub {
    padding-left: 18px;
    color: #6b7280;
}

.amount {
    font-weight: 600;
}

.toggle-row {
    cursor: pointer;
}

.promo-text {
    font-size: 12px;
    color: #6b7280;
    margin-top: 15px;
}

.promo-input {
    height: 40px;
    font-size: 14px;
    border-radius: 8px 0px 0px 8px;
}

.promo-box {
    display: flex;
    align-items: flex-start;
    /*gap: 10px;*/
}

.input-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.lblcouponmessage {
    font-size: 12px;
    margin-top: 2px;
}

.error_outline {
    border: 1px solid red;
}

.sizevalidation {
    font-size: 12px;
}

.btn-apply {
    background: #F60;
    border: none;
    font-weight: 600;
    color: #fff;
    padding: 8px 10px;
    border-radius: 0px 8px 8px 0px;
}

    .btn-apply:hover {
        background: #f60;
        color: #fff;
    }

.total-box {
    background: #e9edf3;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
    margin-top: 16px;
}

.note {
    font-size: 12px;
    color: #6b7280;
    margin-top: 10px;
}

/*Addon Page Travller's All in one section css start*/

.tcp_main_contBox {
    display: flex;
}

.tcpServiceColumn {
    width: 56%;
    float: left;
}

.serviceBox_1 {
    min-height: 160px;
    padding: 22px 0 0 0;
    position: relative;
}

    .serviceBox_1 h4 {
        font-size: 16px;
        margin: 0 0 0 0;
        padding: 60px 0 20px 0;
    }

.tcpoption_Box {
    padding: 5px 10px;
    min-height: 70px;
}

.highligh_bg {
    background: #f8f8f8;
}

.tcpoption_Box h5 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px 0;
}

.tcpoption_Box p {
    font-size: 12px;
    margin: 0 0 0 0;
    color: #777;
    font-weight: 400;
    line-height: 18px;
}

.tcpPlanColumn {
    width: 20%;
    float: left;
    text-align: center;
    border: solid 1px #ddd;
    border-radius: 5px;
    position: relative;
}

    .tcpPlanColumn label {
        display: block;
        cursor: pointer;
    }

.serviceBox_1 {
    min-height: 160px;
    padding: 22px 0 0 0;
    position: relative;
}

    .serviceBox_1 img {
        vertical-align: middle;
        border-style: none;
        margin: 0 auto;
    }

    .serviceBox_1 h5 {
        font-size: 16px;
        margin: 7px 0 7px 0;
    }

    .serviceBox_1 h3 {
        font-size: 20px;
        margin: 0 0 10px 0;
        color: #ff6600;
        font-weight: 600;
    }

.tcpradio input[type=radio]:checked {
    background-color: white;
    box-shadow: inset 0 0 0 0.2875em #406bfc;
    -webkit-transition: background 0.15s, box-shadow 0.1s;
    transition: background 0.15s, box-shadow 0.1s;
}

.tcpradio input[type=radio] {
    background-color: transparent;
    border: 2px solid rgb(58 102 252);
    border-radius: 50%;
    box-shadow: inset 0 0 0 0 white;
    cursor: pointer;
    font: inherit;
    height: 18px;
    outline: none;
    width: 18px;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.tcpoption_Box h6 {
    font-size: 13px;
    color: #333;
    margin: 0 0 0 0;
    padding: 22px 0 0 0;
}

.most_popular_ribbon {
    width: 112%;
    position: absolute;
    right: -10px;
    top: -11px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background: #02253B;
    padding: 5px 0;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    z-index: 1;
}

    .most_popular_ribbon::before {
        border-color: #02253b #02253b transparent transparent;
        position: absolute;
        display: block;
        border-style: solid;
        bottom: -10px;
        left: 0;
        content: "";
        border-width: 10px 10px 0 0;
        border-bottom-left-radius: 15px;
    }

    .most_popular_ribbon::after {
        border-color: #02253b #02253b transparent transparent;
        position: absolute;
        display: block;
        border-style: solid;
        bottom: -10px;
        right: 0;
        content: "";
        border-width: 10px 10px 0 0;
        border-bottom-right-radius: 15px;
    }

.tcpPlanColumn label {
    display: block;
    cursor: pointer;
}

.tcpoption_Box h6 {
    font-size: 13px;
    color: #333;
    margin: 0 0 0 0;
    padding: 22px 0 0 0;
}

@media(max-width: 820px) {
    .most_popular_ribbon {
        width: 118%;
    }
}

@media(max-width: 767px) {

    .tcpoption_Box p {
        display: none;
    }

    .tcpoption_Box h5 {
        font-size: 11px;
    }

    .tcpServiceColumn {
        width: 48%;
    }

    .tcpPlanColumn {
        width: 30%;
    }

    .most_popular_ribbon {
        font-size: 11px;
        width: 125%;
    }

    .serviceBox_1 h5 {
        font-size: 12px;
    }

    .serviceBox_1 h3 {
        font-size: 17px;
    }

    .serviceBox_1 h4 {
        font-size: 12px;
    }
}

/*Addon Page Travller's All in one section css end*/

/* ==========================================================================
   11. DESKTOP SPECIFIC RULES
   ========================================================================== */
@media (min-width: 992px) {

    /* Payment Tabs System */
    .payment-wrapper {
        display: grid;
        grid-template-columns: 280px 1fr;
        align-items: start;
        padding: 5px 15px 15px 15px;
    }

    .pay-group {
        display: contents;
    }

    .pay-head {
        grid-column: 1;
        border-bottom: none !important;
        margin-bottom: 5px;
        padding: 15px;
        border-radius: 6px;
        border-left: 3px solid transparent;
    }

    .pay-group.active .pay-head {
        border-left: 3px solid #000;
        background: #f8f9fa;
    }

    .pay-body {
        grid-column: 2;
        grid-row: 1 / 10;
        border-bottom: none;
        border-left: 1px solid #e5e7eb;
        padding: 0 0 0 15px;
    }

    .desktop-form-title {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-card-logos {
        display: none !important;
    }
}

/* ==========================================================================
   12. MOBILE SPECIFIC RULES (Max Width: 991px)
   ========================================================================== */
.mobile-stepper,
.mobile-sticky-footer,
.price-drawer-backdrop {
    display: none;
}

@media (max-width: 991px) {
    body.listing-page {
        padding-bottom: 60px !important;
    }

    /* Hide Desktop buttons on Mobile */
    #step-review .d-flex.gap-2,
    #step-travelers .d-flex.gap-2,
    #step-addons .d-flex.gap-2,
    #step-payment .d-flex.gap-2 {
        display: none !important;
    }

    /* --- Mobile Stepper --- */
    .mobile-stepper {
        display: block;
        background: #fff;
        padding: 15px;
        border-radius: 8px;
        margin: 14px 0;
    }

        .mobile-stepper .step-line {
            position: absolute;
            top: 12px;
            left: 15%;
            width: 70%;
            height: 2px;
            background: #e9ecef;
            z-index: 1;
        }

        .mobile-stepper .step-item {
            position: relative;
            z-index: 2;
            width: 28%;
            text-align: center;
        }

        .mobile-stepper .step-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid #e9ecef;
            margin: 5px auto 5px;
        }

        .mobile-stepper .step-item.active .step-dot {
            background: var(--cf-accent);
            border-color: var(--cf-accent);
        }

        .mobile-stepper .step-item span {
            font-size: 11px;
            color: #6c757d;
            font-weight: 500;
            display: block;
        }

        .mobile-stepper .step-item.active span {
            color: #000;
            font-weight: 700;
        }

    /* --- Sticky Footer --- */
    .mobile-sticky-footer {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 6px 12px;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
        justify-content: space-between;
        align-items: center;
        z-index: 1050;
        border-top: 1px solid #eaeaea;
    }

        .mobile-sticky-footer .price-info {
            display: flex;
            flex-direction: column;
        }

        .mobile-sticky-footer .total-label {
            font-size: 12px;
            color: #4b5563;
            font-weight: 600;
            margin-bottom: -2px;
        }

        .mobile-sticky-footer .total-amount {
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            color: #000;
        }

        .mobile-sticky-footer .fare-details-link {
            font-size: 12px;
            color: #0d6efd;
            text-decoration: underline;
            font-weight: 500;
            margin-top: 2px;
        }

        .mobile-sticky-footer .btn-mobile-continue {
            background: var(--cf-accent);
            color: #fff;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
        }

    /* --- Price Drawer Logic --- */
    .price-drawer-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1040;
    }

        .price-drawer-backdrop.show {
            display: block;
        }

    .price-card {
        position: fixed;
        bottom: -100%;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 1050;
        margin-bottom: 0 !important;
        border-radius: 20px 20px 0 0 !important;
        max-height: 85vh;
        overflow-y: auto;
        transition: bottom 0.3s ease-in-out;
        padding-bottom: 80px;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    }

        .price-card.show-drawer {
            bottom: 0;
        }

    .price-sidebar > .card.text-center {
        display: none !important;
    }
}

/* ==========================================================================
   13. OTHER MOBILE ADJUSTMENTS
   ========================================================================== */
@media(max-width:768px) {
    .baggage-content {
        flex-direction: column;
    }

    .baggage-right {
        text-align: center;
    }
}



/*_SessionExpiredNew.cshtml page code start*/
.wait_popup_atlas {
    -webkit-backdrop-filter: blur(2px);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.6);
    z-index: 99911;
}

.atlas_expired {
    width: 95%;
    max-width: 580px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

    .atlas_expired img {
    }

    .atlas_expired h3 {
        display:flex;
        justify-content:center;
        text-align:center;
        font-size: 22px;
        color: #ed2223;
        font-weight: 600;
        margin: 20px 0 15px;
    }

    .atlas_expired p {
        color: var(--cf-primary);
        padding: 0;
        margin: 0 0 20px;
        font-size: 15px;
        font-weight: 500;
    }

#manage_at_btn {
    display: flex;
    justify-content: space-between;
}

.atlas_expired .backtolist_at {
    width: 100%;
    line-height: 38px;
    max-width: 200px;
    color: #fff;
    font-size: 0.9rem;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    background: #ff6600;
    white-space: nowrap;
    padding: 0px 5px;
}

.atlas_expired .repayment_btn_at {
    width: 100%;
    line-height: 38px;
    max-width: 200px;
    color: #fff;
    font-size: 0.9rem;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    background: var(--cf-primary);
    white-space: nowrap;
    padding: 0px 5px;
    margin-bottom: 5px;
}

/*----declined by gds css code start*/
.wait_popup_atlas_gds {
    -webkit-backdrop-filter: blur(2px);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.6);
    z-index: 99911;
}

.atlas_gds_expired {
    width: 95%;
    max-width: 580px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 15px 15px 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

    .atlas_gds_expired #manage_at_gds_btn {
        display: flex;
        justify-content: space-between;
    }


#manage_at_gds_btn .goHome {
    width: 100%;
    line-height: 38px;
    max-width: 200px;
    color: #fff;
    font-size: 0.9rem;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    background: #ff6600;
    white-space: nowrap;
    padding: 0px 5px;
}

#manage_at_gds_btn .backtolist_at_gds {
    width: 100%;
    line-height: 38px;
    max-width: 200px;
    color: #fff;
    font-size: 0.9rem;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    background: var(--cf-primary);
    white-space: nowrap;
    padding: 0px 5px;
}



/*_SessionExpiredNew.cshtml page code end*/

/*------------------------Passenger Page css code end-------------------------------*/

