.enginediv {
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
	border: none;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0;
}

.bt-engine-inline-error {
	display: block;
	margin: 0 0 12px;
	padding: 10px 14px;
	border-radius: 10px;
	border: 1px solid #fecaca;
	background: #fef2f2;
	color: #b91c1c;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.4;
}

.bt-engine-inline-error[hidden] {
	display: none !important;
}

.customer-border-right-1 {
	border-right: none !important;
}

.form-group {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
}

.form-group.has-icon {
	background: #fff;
	border: 1px solid #d9dee6;
	border-radius: 12px;
	padding: 8px 12px 8px 44px;
	height: 64px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
	transition: border-color .15s ease, box-shadow .15s ease;
}

.form-group.has-icon:focus-within {
	border-color: #1670EA;
	box-shadow: 0 0 0 3px rgba(22, 112, 234, 0.12);
}

.form-group .field-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #1670EA;
	font-size: 18px;
	pointer-events: none;
}

.form-group input {
	width: 100%;
	height: 28px;
	font-size: 14px;
	font-weight: 600;
	border: none;
	border-radius: 0;
	color: #111827;
	background-color: transparent;
	padding: 0;
}

.form-group input::placeholder {
	color: #9aa3b2;
	font-weight: 500;
}

/* Bootstrap paints readonly inputs grey; override inside our card layout
   so the date inputs match the From/To look. */
.form-group.has-icon input,
.form-group.has-icon input.form-control,
.form-group.has-icon input[readonly],
.form-group.has-icon input.form-control[readonly],
.form-group.has-icon input:read-only {
	background-color: transparent !important;
	background-image: none !important;
}

.form-group input:focus {
	color: #111827;
	outline: none;
	box-shadow: none;
}

.form-group.has-icon label {
	position: static;
	display: block;
	color: #6b7280;
	font-size: 11px;
	font-weight: 500;
	background: transparent;
	padding: 0;
	margin: 0 0 2px;
	line-height: 1;
	pointer-events: none;
	transition: color .15s ease;
}

.form-group.has-icon:focus-within label {
	color: #1670EA;
}

/* Disable old floating label behavior for icon variant */
.form-group.has-icon input:focus + label,
.form-group.has-icon input:not(:placeholder-shown) + label {
	top: auto;
	font-size: 11px;
}

/* Swap circle between From / To */
.swipeicondiv {
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #d9dee6;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #1670EA;
	font-size: 16px;
	cursor: pointer;
	margin: 0;
	z-index: 2;
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
	transition: transform .2s ease, background .15s ease;
}
.swipeicondiv:hover {
	background: #f0f6ff;
	transform: rotate(180deg);
}
.swipeicondiv img { display: none; }

/* Search button - gradient */
.searchbtndiv {
	flex: 0 0 auto;
	height: 64px;
	min-width: 132px;
	padding: 0 26px;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(135deg, #1670EA 0%, #0a51c0 100%);
	box-shadow: 0 6px 18px rgba(22, 112, 234, 0.32);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.searchbtndiv:hover {
	filter: brightness(1.06);
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(22, 112, 234, 0.42);
}
.searchbtndiv:active {
	transform: translateY(0);
	box-shadow: 0 4px 12px rgba(22, 112, 234, 0.35);
}

/* Traveller card readonly input + value display */
.traveller-group { cursor: pointer; padding-right: 32px; }
.traveller-group input#showtravellerDetailContainer {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 1px;
	height: 1px;
	margin: 0;
	padding: 0;
}
.traveller-group #total {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
	line-height: 28px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.traveller-group .arrowtrpxd {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #6b7280;
	font-size: 14px;
	pointer-events: none;
	display: inline-flex;
	align-items: center;
}
.traveller-group .travellerdetail-container {
	right: 0;
	left: auto;
}

.radio-container {
	display: flex;
	border-radius: 8px;
	padding: 5px;
	margin-bottom: 15px;
}

.engine-trip-tabs {
	display: inline-flex;
	gap: 22px;
	align-items: center;
	padding: 8px 0;
	margin-bottom: 14px;
	border-bottom: 1px solid #e8edf5;
	width: auto;
}

.engine-trip-tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	user-select: none;
}

.engine-trip-tab-label {
	font-size: 14px;
	font-weight: 600;
	color: #6b7280;
	padding: 8px 2px;
	position: relative;
}

.engine-trip-tab .radio-input:checked + .engine-trip-tab-label {
	color: #111827;
}

.engine-trip-tab .radio-input:checked + .engine-trip-tab-label::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -9px;
	height: 2px;
	background: #1670EA;
	border-radius: 2px;
}

.engine-trip-tab--disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.radio-option {
	display: flex;
	align-items: center;
	padding: 10px 20px;
	cursor: pointer;
}

.radio-input {
	display: none;
}

.custom-radio {
	width: 20px;
	height: 20px;
	border: 2px solid #7C7C7C;
	border-radius: 50%;
	margin-right: 10px;
	position: relative;
	transition: all 0.3s ease;
}

.radio-text {
	font-size: 16px;
	font-weight: 600;
	color: #222222;
}

.radio-input:checked+.custom-radio {
	background: #1670ea;
	border-color: #1670ea;
}

.radio-input:checked+.custom-radio::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 5px;
	height: 5px;
	background: white;
	border-radius: 50%;
}

.radio-input:checked~.radio-text {
	color: #222222;
}

.radio-option:hover .custom-radio {
	border-color: #1670ea;
}

.radio-option:hover .radio-text {
	color: #1e3c72;
}

.bannerboxdiv{
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 40px;
}

.bannercomparebox , .bannertravellerlovebox, .banner5000plusbox {
    width: 235px;
    height: 144px;
    border-radius: 14px;
    border: 1px solid #D9D9D9;
    background: #fff;
    padding: 10px;
}

.mainboxdiv{
        padding-left: 10px;
}
.bannersertxtdvcl{
    margin-bottom: 0;
    font-size: 13px;
	    font-weight: 500;
}

.bannsretxmin{
    color: #686666;
        font-size: 12px;
}
.bibiseardvbanbx{
    position: absolute;
    margin-left: 173px;
    margin-top: 13px;
    font-size: 13px;
    color: #0d6efd;
    font-weight: bold;
}
.mainboiosrexdiv{
    padding-left: 15px;
    padding-top: 25px;
}

.bannserstartdiv{
    padding-top: 10px;
    padding-left: 13px;
}

.airimgroudv{
    width: 39px;
    height: 39px;
    box-shadow: 3px 5px 9.3px 0px #00000038;
    border-radius: 50px;
    padding: 10px;
    padding-top: 5px;
}

.banroudaircldv{
    display: flex;
    justify-content: flex-start;
    margin-top: 6px;
    margin-left: 10px;
}


		.custom-airport-dropdown {
			position: absolute;
			display: block;
			width: 520px;
			max-width: calc(100vw - 40px);
			max-height: 420px;
			overflow-y: auto;
			border: 1px solid #e6eaf2;
			border-radius: 14px;
			box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
			background: #fff;
			z-index: 9999;
			list-style: none;
			margin: 4px 0 0;
			padding: 0;
		}

		.airport-dropdown-header {
			padding: 14px 16px;
			font-size: 13px;
			font-weight: 700;
			color: #111827;
			border-bottom: 1px solid #eef2f7;
			background: #fff;
		}

		.airport-item {
			cursor: pointer;
			padding: 12px 14px;
			border-bottom: 1px solid #f1f4f9;
		}

		.airport-item:last-child {
			border-bottom: none;
		}

		/* jQuery UI 1.13's Menu widget applies .ui-state-active to the FIRST
		   child of the <li>, not the <li> itself, and the base theme paints it
		   bright blue. We override at both levels and force the soft tint. */
		.airport-item:hover,
		.airport-item.ui-state-active,
		.airport-item.ui-state-focus,
		.airport-item .ui-state-active,
		.airport-item .ui-state-focus,
		.airport-item .ui-state-hover,
		.custom-airport-dropdown .ui-state-active,
		.custom-airport-dropdown .ui-state-focus,
		.custom-airport-dropdown .ui-state-hover {
			background: #f4f8ff !important;
			background-image: none !important;
			color: inherit !important;
			border: none !important;
			margin: 0 !important;
			font-weight: inherit !important;
		}
		.airport-item--parent:hover,
		.airport-item--parent.ui-state-active,
		.airport-item--parent .ui-state-active,
		.airport-item--parent .ui-state-focus {
			background: #eef4ff !important;
			background-image: none !important;
		}

		.no-results {
			padding: 18px 16px;
			color: #6b7280;
			font-style: italic;
		}

		.airport-item-icon {
			width: 36px;
			height: 36px;
			border-radius: 10px;
			background: #edf3fd;
			color: #1670EA;
			display: flex;
			align-items: center;
			justify-content: center;
			flex-shrink: 0;
		}

		.airport-item-title {
			font-weight: 700;
			color: #111827;
			font-size: 14px;
		}

		.airport-item--parent {
			background: #f7fbff;
		}
		.airport-item--parent .airport-item-title {
			color: #0a3a82;
		}
		.airport-item--child {
			padding-left: 36px;
			background: #ffffff;
		}
		.airport-item--child .airport-item-icon {
			width: 24px;
			height: 24px;
			background: transparent;
			color: #6b7280;
			font-size: 16px;
		}
		.airport-child-arrow {
			display: inline-block;
			color: #6b7280;
			font-size: 18px;
			line-height: 1;
		}

		.airport-item-subtitle {
			color: #6b7280;
			font-size: 13px;
			margin-top: 2px;
		}

		.customebadge{
			font-size: 12px;
			font-weight: 700;
			color: #111827;
			border: 1px solid #e5e7eb;
			padding: 6px 10px;
			border-radius: 9999px;
			background: #fff;
		}
 
        @media (max-width: 768px) {
            .custom-airport-dropdown {
                position: fixed !important;
                left: 10px !important;
                right: 10px !important;
                width: auto !important;
                max-height: 50vh;
                top: 50% !important;
                transform: translateY(-50%);
            }
            
            .ui-autocomplete-input {
                font-size: 16px !important;  
            }
        }


		/*datepicker css work start */

		.date-input-group {
            margin-bottom: 30px;
            position: relative;
        }        
        .input-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
            font-size: 14px;
        }        
        .date-input-wrapper {
            position: relative;
        }        
        /* date-input now inherits the same look as text inputs inside .form-group.has-icon */
        .date-input {
            width: 100%;
            border: none;
            background: transparent;
            cursor: pointer;
            box-sizing: border-box;
        }
        .date-input:hover,
        .date-input:focus {
            border: none;
            outline: none;
            box-shadow: none;
        }
        
        .date-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #0068ef;
            font-size: 18px;
            pointer-events: none;
        }
        
        .hidden-fields {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-top: 10px;
            font-size: 12px;
            color: #666;
        }
        
        .hidden-fields div {
            margin-bottom: 5px;
        }
        
        .demo-buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .demo-btn {
            padding: 10px 20px;
            background: #0068ef;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
        }
        
        .demo-btn:hover {
            background: #0056cc;
        }
        
        .desktop-calendar-container {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            z-index: 1000;
            background: white;
            border: 1px solid #ddd;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            margin-top: 5px;
            padding: 10px;
            min-width: 680px;
        }
        
        .desktop-calendar-container.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .dual-month-wrapper {
            
            gap: 20px;
            justify-content: space-between;
        }
        
        .calendar-month-wrapper {
            flex: 1;
            width: 50%;
            float: left;
        }
        .calendar-month-header {
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
            padding: 10px;
            background: #f8f9fa;
            border-radius: 8px;
        }
        
        .calendar-days-of-week {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
            margin-bottom: 10px;
        }
        
        .calendar-day-header {
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            color: #666;
            padding: 5px;
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
        }
        
        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            border: 2px solid transparent;
            background: white;
            color: #333;
            position: relative;
            user-select: none;
        }

        /* Fare heat map (low/med/high) */
        .calendar-day.fare-low { background: #8ed7a7; color: #1a1a1a; }
        .calendar-day.fare-med { background: #f6c560; color: #1a1a1a; }
        .calendar-day.fare-high { background: #f08a85; color: #1a1a1a; }

        .calendar-day.today.fare-low,
        .calendar-day.today.fare-med,
        .calendar-day.today.fare-high {
            box-shadow: inset 0 0 0 2px rgba(0, 104, 239, 0.45);
        }
        
        .calendar-day:hover:not(.disabled):not(.selected) {
            background: #f0f7ff !important;
            border-color: #0068ef !important;
            transform: scale(1.05);
        }
        
        .calendar-day.empty {
            background: transparent;
            cursor: default;
        }
        
        .calendar-day.disabled {
            color: #ccc !important;
            cursor: not-allowed !important;
            background: #f8f9fa !important;
        }
        
        .calendar-day.today {
            font-weight: 700 !important;
        }
        .calendar-day.today:not(.fare-low):not(.fare-med):not(.fare-high) {
            color: #0068ef !important;
            background: #f0f7ff !important;
        }
        
        .calendar-day.selected {
            background: #0068ef !important;
            color: white !important;
            font-weight: 600 !important;
            box-shadow: 0 2px 8px rgba(0, 104, 239, 0.5);
        }
        
        .calendar-day.selected::after {
            background: white !important;
        }

        /* Unified calendar: depart / return / range highlight */
        .calendar-day.depart,
        .calendar-day.return {
            background: #1670EA !important;
            color: white !important;
            font-weight: 600 !important;
            box-shadow: 0 2px 8px rgba(22, 112, 234, 0.5);
        }
        .calendar-day.depart .date-badge,
        .calendar-day.return .date-badge {
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 9px;
            font-weight: 700;
            line-height: 1;
            white-space: nowrap;
            pointer-events: none;
        }
        .calendar-day.in-range {
            background: #e8f0fe !important;
            color: #1670EA !important;
        }
        .calendar-day.in-range.fare-low,
        .calendar-day.in-range.fare-med,
        .calendar-day.in-range.fare-high {
            background: #e8f0fe !important;
        }
        .calendar-day.depart.fare-low,
        .calendar-day.depart.fare-med,
        .calendar-day.depart.fare-high,
        .calendar-day.return.fare-low,
        .calendar-day.return.fare-med,
        .calendar-day.return.fare-high {
            background: #1670EA !important;
        }
        .calendar-day.today.depart,
        .calendar-day.today.return {
            color: white !important;
            background: #1670EA !important;
        }

        .calendar-nav {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            padding: 10px;
            grid-column: 1 / -1;
            float: left;
            width: 100%;
        }

        .calendar-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 12px 10px 0;
            width: 100%;
            float: left;
        }

        .calendar-legend {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .calendar-legend-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 26px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 700;
            color: #111827;
        }

        .calendar-legend-pill--low { background: #8ed7a7; }
        .calendar-legend-pill--med { background: #f6c560; }
        .calendar-legend-pill--high { background: #f08a85; }

        .calendar-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .calendar-reset-btn {
            background: transparent;
            border: none;
            color: #6b7280;
            font-weight: 600;
            padding: 8px 10px;
            cursor: pointer;
        }

        .calendar-done-btn {
            padding: 10px 22px;
            border-radius: 9999px;
            border: none;
            background: #1670EA;
            color: #fff;
            font-weight: 700;
            cursor: pointer;
        }
        
        .nav-button {
            padding: 8px 16px;
            background: white;
            border: 1px solid #ddd;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            color: #333;
            transition: all 0.3s;
        }
        
        .nav-button:hover {
            background: #f8f9fa;
            border-color: #666;
        }
        
        .mobile-calendar-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            animation: fadeIn 0.3s ease;
        }
        
        .mobile-calendar-modal.active {
            display: flex;
            justify-content: center;
            align-items: flex-end;
        }
        
        .mobile-calendar-container {
            background: white;
            width: 100%;
            max-height: 80%;
            border-radius: 20px 20px 0 0;
            overflow: hidden;
            animation: slideUp 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        @keyframes slideUp {
            from { transform: translateY(100%); }
            to { transform: translateY(0); }
        }
        
        .mobile-calendar-header {
            padding: 20px;
            background: #0068ef;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        
        .mobile-calendar-title {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            text-align: center;
            flex: 1;
        }
        
        .mobile-close-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 20px;
        }
        
        .mobile-calendar-body {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }
        
        .mobile-month-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding: 0 10px;
        }
        
        .mobile-month-year {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }
        
        .mobile-nav-btn {
            background: #f0f7ff;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #0068ef;
            font-size: 18px;
        }
        
        .mobile-days-of-week {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            margin-bottom: 10px;
        }
        
        .mobile-day-header {
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            color: #666;
            padding: 10px 5px;
        }
        
        .mobile-calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
        }
        
        .mobile-calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            border: 2px solid transparent;
            background: white;
            color: #333;
        }

        .mobile-calendar-day.fare-low { background: #8ed7a7; color: #1a1a1a; }
        .mobile-calendar-day.fare-med { background: #f6c560; color: #1a1a1a; }
        .mobile-calendar-day.fare-high { background: #f08a85; color: #1a1a1a; }
        
        .mobile-calendar-day.empty {
            background: transparent;
            cursor: default;
        }
        
        .mobile-calendar-day.disabled {
            color: #ccc;
            cursor: not-allowed;
            background: #f8f9fa;
        }
        
        .mobile-calendar-day.today {
            font-weight: 700;
            color: #0068ef;
            background: #f0f7ff;
        }
        
        .mobile-calendar-day.selected {
            background: #0068ef;
            color: white;
            font-weight: 600;
            transform: scale(1.1);
        }
        
        .mobile-calendar-footer {
            padding: 20px;
            border-top: 1px solid #e9ecef;
            display: flex;
            gap: 10px;
            background: #f8f9fa;
        }
        
        .mobile-footer-btn {
            flex: 1;
            padding: 15px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.3s;
        }
        
        .mobile-footer-btn.clear {
            background: white;
            border: 2px solid #ddd;
            color: #666;
        }
        
        .mobile-footer-btn.apply {
            background: #0068ef;
            color: white;
        }
        
        .mobile-footer-btn.apply:active {
            background: #0056cc;
            transform: scale(0.98);
        }
        
        .desktop-calendar-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: transparent;
            z-index: 999;
        }
        
        @media (max-width: 768px) {
            .desktop-calendar-container {
                display: none !important;
            }
            
            .container {
                padding: 15px;
                margin: 0;
                border-radius: 0;
                /*min-height: 100vh;*/
            }
        }
        
        .today-indicator {
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 9px;
            font-weight: 600;
            color: #0068ef;
            line-height: 1;
            letter-spacing: 0.2px;
        }
        .today-indicator::before { content: "Today"; }
        
        .selected-indicator {
            position: absolute;
            bottom: 3px;
            left: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 4px;
            background: white;
            border-radius: 50%;
        }
        
        .mobile-calendar-body::-webkit-scrollbar {
            width: 0;
            background: transparent;
        }

		/*calendar css work end here*/

		#cityfrom{
			border-right: 0px solid #cccc !important;
		}

		.jsRotateClass{
				transform: rotate(180deg);
				transition: all 0.2s ease;
		}

		.goToRight {
			-moz-animation: goingRight .3s 1 ease-in-out;
			-webkit-animation: goingRight .3s 1 ease-in-out;
			-o-animation: goingRight .3s 1 ease-in-out;
			-ms-animation: goingRight .3s 1 ease-in-out;
			animation: goingRight .3s 1 ease-in-out;
		}
		@-moz-keyframes goingRight {
			0% {
				-moz-transform: translateX(0);
				border-right-color: transparent;
			}

			60% {
				-moz-transform: translateX(60%);
				opacity: 0;
				border-right-color: transparent;
			}

			to {
				-moz-transform: translateX(0);
				opacity: 1;
				border-right-color: transparent;
			}
		}
		@-webkit-keyframes goingRight {
			0% {
				-webkit-transform: translateX(0);
				border-right-color: transparent;
			}

			60% {
				-webkit-transform: translateX(60%);
				opacity: 0;
				border-right-color: transparent;
			}

			to {
				-webkit-transform: translateX(0);
				opacity: 1;
				border-right-color: transparent;
			}
		}
		.goToLeft {
			-moz-animation: goingLeft .3s 1 ease-in-out;
			-webkit-animation: goingLeft .3s 1 ease-in-out;
			-o-animation: goingLeft .3s 1 ease-in-out;
			-ms-animation: goingLeft .3s 1 ease-in-out;
			animation: goingLeft .3s 1 ease-in-out;
		}
		@-moz-keyframes goingLeft {
			0% {
				-moz-transform: translateX(0);
			}

			60% {
				-moz-transform: translateX(-60%);
				opacity: 0;
			}

			to {
				-moz-transform: translateX(0);
				opacity: 1;
			}
		}
		@-webkit-keyframes goingLeft {
			0% {
				-webkit-transform: translateX(0);
			}

			60% {
				-webkit-transform: translateX(-60%);
				opacity: 0;
			}

			to {
				-webkit-transform: translateX(0);
				opacity: 1;
			}
		}

.travellerdetail-container {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-top: 5px;
    padding: 0px;
    min-width: 394px;
}

.aduimaindivrow{
    display: flex;
    padding: 15px 20px;
    justify-content: space-between;
        align-items: baseline;
}

.button-groupady{
    display: flex;
} 
.minusdivcd{
    font-weight: 500;
    font-size: 20px;
    border: 1px solid #BEBEBE;
    background: #fff;
    border-radius: 5px;
    width: 29px;
    height: 31px;
    padding: 2px;
    line-height: 1;
    text-align: center;
}
.plusdivcd{
    font-weight: 500;
    font-size: 20px;
    border: 1px solid #BEBEBE;
    background: #fff;
    border-radius: 5px;
    width: 29px;
    height: 31px;
    padding: 2px;
    line-height: 1;
    text-align: center;
}

#adult, #child, #infant {
    width: 40px;
    text-align: center;
    border: none;
    height: 32px;
    font-size: 17px;
}

.travellerdetail-box{
    padding: 10px;
}

.travellerdetail-economybox{
        border-top: 1px solid #BEBEBE; 
}

.economyselectdiv{
        padding: 28px;
        float: left;
}

.economybox{
    padding: 15px;
    border-radius: 6px;
    border-width: 1px;
    border-style: dashed;
    border-color: #BEBEBE;
    color: #656565;
    float: left;
    width: 160px;
    text-align: center;
    font-size: 14px;
    margin-top: 15px;
    cursor: pointer;
}
    .active-cabin{
        background: #0d6efd;
        color: #fff;
        cursor: pointer;
    }

.marginrgt{
    margin-right: 15px;
}

.cuspadpeno{
    padding: 15px 0px;
}

/* Legacy absolute positioning removed - now handled by .traveller-group rules in the modern card layout */

  @media only screen and (max-width: 680px) {
    .bgimage-home {
        /*display: none;*/
    }

    .searchbtndiv{
            margin-left: 0px !important;
            width: 100%;
    }

    .enginediv{
        display: flex;
        flex-direction: column;
        gap: 10px;
        border: none;
        box-shadow: none;
        padding: 0;
    }
    .form-group {
        width: 100%;
        flex: 1 1 auto;
    }
    .form-group.has-icon {
        width: 100%;
    }
    .form-group input{
        border: none !important;
        box-shadow: none;
        border-radius: 0;
        margin-bottom: 0;
    }

    /* Stack from/to with circular swap overlaid on the right (matches mobile homepage UX) */
    #standardFields {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        position: relative;
    }

    #standardFields > .form-group.has-icon:has(#cityfrom),
    #standardFields > .form-group.has-icon:has(#cityto) {
        padding-right: 52px;
    }

    .enginediv > .swipeicondiv,
    #standardFields > .swipeicondiv {
        position: absolute;
        right: 12px;
        top: 69px;
        left: auto;
        margin: 0;
        transform: translateY(-50%);
        align-self: auto;
        z-index: 5;
        width: 34px;
        height: 34px;
        flex: none;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
    }

    .enginediv > .swipeicondiv:hover,
    #standardFields > .swipeicondiv:hover {
        transform: translateY(-50%) rotate(180deg);
        background: #f0f6ff;
    }

    .searchbtndiv{
        width: 100%;
        margin-left: 0 !important;
    }
        .travellerdetail-container{
                position: fixed;
                bottom: 0;
                left: 0;
                top: 47%;
        }

    /* Results page modify engine — reuse homepage stacked card layout */
    body.modify-engine-open.bt-results-page #modifysectiodiv .enginediv {
        display: flex;
        flex-direction: column;
        gap: 8px;
        border: none;
        box-shadow: none;
        padding: 0;
        background: transparent;
    }

    body.modify-engine-open.bt-results-page #modifysectiodiv .form-group.has-icon {
        background: #fff;
        border: 1px solid #d9dee6;
        border-radius: 12px;
        height: 56px;
        padding: 6px 12px 6px 40px;
        box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    }

    body.modify-engine-open.bt-results-page #modifysectiodiv .searchbtndiv,
    body.modify-engine-open.bt-results-page #modifysectiodiv .searchbtndivnew {
        width: 100%;
        height: 48px;
        min-height: 48px;
        border-radius: 10px;
    }

    body.modify-engine-open.bt-results-page #modifysectiodiv .engine-trip-tabs {
        display: inline-flex;
        gap: 18px;
        padding: 0 0 4px;
        margin-bottom: 4px;
    }
         
  }

/* Multi-city flight segments */
#standardFields {
    display: contents;
}

.enginediv--multicity {
    flex-wrap: wrap;
    align-items: flex-start;
}

#multiCityContainer {
    flex: 1 1 100%;
    width: 100%;
}

.segment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.segment-item .form-group.has-icon {
    flex: 1 1 0;
    min-width: 140px;
}

.segment-item .remove-segment {
    flex: 0 0 auto;
    background: #fff;
    border: 1px solid #d9dee6;
    color: #6b7280;
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 12px;
    height: 38px;
    align-self: center;
    transition: border-color .15s ease, color .15s ease;
}

.segment-item .remove-segment:hover:not(:disabled) {
    border-color: #1670EA;
    color: #1670EA;
}

.segment-item .remove-segment:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-add-segment {
    background: #1670EA;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    margin-top: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

.btn-add-segment:hover {
    background: #1259bb;
}

.bt-multicity-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin-top: 8px;
    flex-wrap: wrap;
}

.bt-multicity-add-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.bt-multicity-pax-slot {
    flex: 0 1 280px;
    min-width: 220px;
    margin-left: auto;
}

.bt-multicity-pax-slot .traveller-group {
    width: 100%;
    min-width: 0;
}

.bt-modify-actions {
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid #e8edf5;
}

.bt-modify-discard {
    appearance: none;
    background: transparent;
    border: none;
    padding: 8px 4px;
    color: #0f1f3d;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.bt-modify-discard:hover {
    color: #1670EA;
    text-decoration: underline;
}

.bt-modify-actions .searchbtndiv {
    margin-left: auto;
}

.multicity-note {
    font-size: 12px;
    color: #6b7280;
    margin-top: 6px;
}