/*search form*/
.hero-section {
    position: relative;
    height: 550px;
    padding-top: 150px;
}

.hero-section .banner-sec {
    position: absolute;
    top: 0;
}

.hero-section .banner-sec img {
    height: 550px;
    object-fit: cover;
}

.hero-section .banner-sec::after {
    content: "";
    background: radial-gradient(47.9% 121.75% at 50% 0%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 32.98%, rgba(0, 0, 0, 0.6) 100%);
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.hero-section .banner-sec .owl-dots {
    position: absolute;
    right: 50px;
    top: 50%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
}

.hero-section .banner-sec .owl-dots button {
    color: #ffffff;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(228, 235, 241, 0.2);
    margin: 3px 0;
}

.hero-section .banner-sec .owl-dots button.active {
    background: #ffffff;
    outline: 1px solid #ffffff;
    outline-offset: 3px;
    margin: 5px 0;
}

/*=========search_form=======*/
.banner-search {
    position: relative;
    padding: 100px 0 100px;
    /* height: 550px; */
    /* background: linear-gradient(90deg, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.1)  100%), url('../../img/bg/faretrav-banner.jpg') no-repeat center / cover; */
    /* border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px; */
    /* display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center; */
}


.banner-search .hero-content {
    position: relative;
    z-index: 2;
}

/*=========================================
 Banner Content
=========================================*/

.banner-search .hero-content .banner-content {
    /* position: relative;
    z-index: 2; */
    max-width: 700px;
    width: 100%;
    margin: 0 auto 30px auto;
    text-align: center;
}

.banner-search .hero-content .trusted-travel-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 22px;
    margin-bottom: 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    line-height: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
    transition: all .35s ease;
}

.banner-search .hero-content .trusted-travel-badge:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
}

.banner-search .hero-content .trusted-travel-badge i {
    font-size: 17px;
    color: #ffd54f;
}

.banner-search .hero-content .trusted-travel-badge span {
    white-space: nowrap;
}


.banner-search .hero-content .banner-content h1 {
    color: #fff;
    font-size: clamp(2.8rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 8px 25px rgba(0, 0, 0, .35);
    animation: fadeUp .8s ease;
}

.banner-search .hero-content .banner-content h1 span {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.banner-search .hero-content .banner-content h1 span::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 16px;
    border-radius: 30px;
    background: linear-gradient(90deg, var(--tts-buttton-bg), #ff9800);
    z-index: -1;
}

.banner-search .hero-content .banner-content p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .95);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.8;
    text-shadow: 0 3px 10px rgba(0, 0, 0, .25);
    animation: fadeUp 1s ease;
}

.banner-search .hero-content .banner-content .btn {
    margin-top: 35px;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    transition: .35s;
}

.banner-search .hero-content .banner-content .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@media (max-width: 991px) {

    .banner-search .hero-content .banner-content {
        max-width: 700px;
    }

    .banner-search .hero-content .banner-content h1 {
        font-size: 3.4rem;
    }

    .banner-search .hero-content .banner-content p {
        font-size: 1rem;
    }

}

@media (max-width: 767px) {

    .banner-search .hero-content .banner-content {
        padding: 0 15px;
    }

    .banner-search .hero-content .trusted-travel-badge {
        padding: 8px 10px;
        font-size: 12px;
        margin-bottom: 20px;
    }

    .banner-search .hero-content .trusted-travel-badge i {
        font-size: 15px;
    }

    .banner-search .hero-content .trusted-travel-badge span {
        white-space: normal;
    }

    .banner-search .hero-content .banner-content h1 {
        font-size: 2.4rem;
        line-height: 1.25;
    }

    .banner-search .hero-content .banner-content h1 span::before {
        height: 12px;
        bottom: 6px;
    }

    .banner-search .hero-content .banner-content p {
        font-size: .85rem;
        line-height: 1.7;
    }

}

.banner-form.card {
	background-color: var(--tts-buttton-bg1);
	transition: all 0.5sease-in-out;
	position: relative;
	border-radius: 10px;
	border: none;
	color: inherit;
}

.banner-form .card-header {
	position: relative;
	background: var(--tts-buttton-bg1);
}

.banner-search .hero-content .banner-form-tab {
	display: inline-block;
}

.banner-search .hero-content .search_tabs {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	justify-content: space-between;
}

.banner-search .hero-content .search_tabs li {
	margin-right: 10px;
}

.banner-search .hero-content .search_tabs li:last-child {
	margin-right: 0;
}


.banner-search .hero-content .search_tabs li a {
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
	border-radius: 74px;
	padding: 8px 16px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	position: relative;
	align-items: center;
}

.banner-search .hero-content .search_tabs li a i {
	font-size: 20px;
	margin-right: 10px;
}

.banner-search .hero-content .search_tabs li a.current::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 3px;
	background: var(--accent-color, var(--tts-buttton-bg));
	border-radius: 6px;
	z-index: 2;
}

.banner-search .hero-content .search_tabs li a:hover,
.banner-search .hero-content .search_tabs li a.current {
	color: #ffffff;
}



.banner-search .hero-content .card-body {
	padding: 15px 30px 50px 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.banner-search .hero-content .banner-form-tab {
		min-width: 300px;
	}

	.banner-search .hero-content .search_tabs li {
		margin-right: 0;
	}

	.banner-search .hero-content .search_tabs li:last-child {
		margin-bottom: 0;
	}

	.banner-search .hero-content .card-body {
		padding: 15px 15px 50px 15px;
	}

	.banner-search {
		padding: 50px 0;
	}

	.banner-form .normal-trip .form-info .form-item.dropdown .dropdown-menu.dropdown-xl {
		min-width: 300px;
	}

	.banner-search .hero-content {
		padding: 0;
	}

	.banner-search .hero-content .search_tabs li a i {
		display: none;
	}

	.banner-search .hero-content .banner-content h1 {
		font-size: 25px;
	}

	.banner-search .hero-content .banner-content p {
		margin-bottom: 10px;
	}
}

@media (max-width: 991.98px) {


	.banner-search .banner-sec {
		display: none;
	}

	.banner-form .form-info {
		flex-wrap: wrap;
		margin-bottom: 16px;
	}

	.banner-form .form-info .form-item:nth-child(odd) {
		border-left: 0;
	}

	.banner-form .form-info .form-item {
		width: 50%;
		flex: unset !important;
	}

	.banner-form .form-info .form-item.dropdown .dropdown-menu {
		max-height: 300px;
	}

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

	.banner-form .makeflex {
		flex-direction: column;
		gap: 5px;
	}


	.banner-search .hero-content .search_tabs {
		justify-content: space-between;
	}

	.banner-search .hero-content .search_tabs li a {
		padding: 10px;
	}


	.banner-search .hero-content .search_tabs li a.current::after {
		bottom: 0;
	}

	.flight-search h6 {
		display: none;
	}
}

@media (max-width: 575.98px) {
	.banner-form .form-info .form-item {
		width: 100%;
		border-left: 0;
		border-bottom: 1px solid #E4EBF1;
	}

	.banner-form .normal-trip .form-info .form-item .way-icon {
		left: 50px !important;
		top: 0 !important;
		width: 20px;
		height: 20px;
		line-height: 20px;
		font-size: 12px;
	}
}


.form-destination {
	display: flex;
	align-items: center;
}

.form-destination .padding8 {
	position: relative;
}

.form-destination .padding8 .form-control,
.form-destination .padding8 .way-icon,
.form-destination .padding8 .form-select {
	font-size: 16px;
	padding: 12px 8px 12px 40px;
	background-color: #fff;
	height: 55px;
	font-weight: 600;
	color: #333;
	border: 1px solid #dedede;
	border-radius: 5px;
	cursor: pointer;
}

.form-destination .padding8 .form-select option {
	font-size: 14px;
}

.form-destination .padding8 .way-icon {
	padding: 12px 12px 12px 12px;
	font-size: 18px;
	color: var(--tts-buttton-bg);
	text-align: center;
}


.form-destination .padding8 .fly-icon {
	position: absolute;
	top: 0;
	z-index: 2;
	display: block;
	width: 40px;
	line-height: 55px;
	text-align: center;
	pointer-events: none;
	color: var(--tts-buttton-bg);
	font-size: 18px;
}

.form-destination .padding8 .search-btn {
	font-size: 14px;
	padding: 12px 15px 12px 15px;
	background-color: var(--tts-buttton-bg);
	height: 55px;
	font-weight: 600;
	color: var(--tts-buttton-txt);
	border: 1px solid var(--tts-buttton-bg);
	border-radius: 5px;
	width: 100%;
}


.form-destination .padding8 .cabinclass {
	font-size: 10px;
	display: block;
}

.form-destination .padding8.dropdown .dropdown-menu.hotel-dropdown-menu {
	max-height: 300px;
	overflow-x: auto;
}

.form-destination .padding8.dropdown .dropdown-menu {
	padding: 10px;
	min-width: 300px;
}

.form-destination .padding8.dropdown .dropdown-menu.dropdown-xl {
	min-width: 600px;
	width: 100%;
}

.form-destination .padding8.dropdown .dropdown-menu select {
	font-size: 14px;
}


.form-destination .padding8 .custom-increment .input-group .input-number {
	border: 0;
	width: 50px;
	text-align: center;
	color: #222222;
	font-size: 14px;
}

.form-destination .padding8 .custom-increment .input-group .btn-number {
	width: 32px;
	height: 32px;
	align-items: center;
	display: flex;
	justify-content: center;
	background-color: #ffffff;
	border: 1px solid #E4EBF1;
	color: #222222;
	border-radius: 5px;
	padding: 9px 16px;
	font-size: 14px;
	transition: all 0.5s;
	font-weight: 500;
}

.form-destination .padding8 label {
	font-size: 14px;
	color: #000000;
	margin: 0;
}

.form-destination .padding8 .form-label span {
	display: block;
	color: rgb(189, 189, 189);
	font-size: 12px;
	line-height: 16px;
	margin: 4px 0 0 0;
}

.form-destination .padding8 .add-city {
	border: dashed 1px #dfdfdf;
	color: #dfdfdf;
	font-size: 14px;
	font-weight: 400;
	padding: 12px 15px 12px 15px;
	display: inline-block;
	height: 55px;
	text-transform: uppercase;
	line-height: 14px;
	text-decoration: none;
	border-radius: 30px;
	width: 100%;
}


.form-destination .padding8.dropdown .dropdown-menu.hotel-dropdown-menu .btn.btn-primary {
	background-color: var(--tts-buttton-bg);
	border: 1px solid var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
	box-shadow: none;
}

.form-destination .padding8.dropdown .dropdown-menu.hotel-dropdown-menu .btn.btn-light {
	background-color: #E4EBF1;
	border: 1px solid #E4EBF1;
	color: #222222;
	box-shadow: none;
}

/* 
.form-destination .padding8 .info-item h6{
	font-size: 16px;
    padding: 14px 0 14px 0;
    color: #20595e;
	border-bottom: solid 1px #ece1ef;
    margin: 0 -10px;
} */
/* 
.banner-form .form-info {
	border: 1px solid #E4EBF1;
	border-radius: 4px;
	width: 100%;
}

.banner-form .form-info .form-item {
	flex: 1;
	text-align: left;
	padding: 8px;
	border-left: 1px solid #E4EBF1;
	position: relative;
	display: flex;
	justify-content: start;
	flex-direction: column;
	cursor: pointer;
}

.banner-form .form-info .form-item.hide {
	display: none;
}

.banner-form .form-info .form-item:first-child {
	border-left: 0;
}

.banner-form .form-info .form-label {
	font-size: 14px;
	font-weight: 500;
	color: #4E5561;
	margin: 0;
}

.banner-form .form-info .form-item .form-control,
.banner-form .form-info .form-item .form-select {
	font-size: 20px;
	font-weight: 600;
	padding: 0;
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	min-height: 32px;
}

.banner-form .form-info .form-item .form-select option {
	font-size: 14px;
	padding: 10px;
}

.banner-search .hero-content .flight_text_p {
	max-width: 200px;
	width: 100%;
	font-size: 12px;
	margin-bottom: 0;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.banner-form .form-info .form-item .way-icon {
	position: absolute;
	top: 50%;
	left: 0;
	background: #ffffff;
	color: var(--tts-buttton-bg);

	font-weight: 600;
	letter-spacing: 0.5px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50%;
	padding: 0;
	text-align: center;
	border: 1px solid #E4EBF1;
}

.banner-form .form-info .form-item h5 .total-count {
	font-size: 20px;
}

.banner-form .form-info .form-item h5 span {
	font-size: 14px;
}

.banner-form .form-info .form-item .cabinclass {
	font-size: 12px;
	margin-bottom: 0;
}


.banner-form .form-info .form-item.dropdown .dropdown-menu {
	padding: 20px;
	max-height: 300px;
	overflow-y: auto;
}

.banner-form .form-info .form-item.dropdown .dropdown-menu.dropdown-xl {
	min-width: 600px;
	width: 100%;
}

.banner-form .form-info .form-item.dropdown .dropdown-menu select {
	font-size: 14px;
}

.banner-form .info-item {
	padding: 20px;
}

.custom-increment .input-group .input-number {
	border: 0;
	width: 50px;
	text-align: center;
	color: #222222;
	font-size: 14px;
}

.custom-increment .input-group .btn-number {
	width: 32px;
	height: 32px;
	align-items: center;
	display: flex;
	justify-content: center;
	background-color: #E4EBF1;
	border: 1px solid #E4EBF1;
	color: #222222;
	border-radius: 40px;
	padding: 9px 16px;
	font-size: 14px;
	transition: all 0.5s;
	font-weight: 500;
}

.form-check-label {
	font-size: 14px;
	color: #4E5561;
}

.form-check-input:checked~.form-check-label {
	color: #222222;
}

.form-check-input:focus {
	box-shadow: none;
}

.banner-form .search-btn {
	background-color: var(--tts-buttton-bg);
	color: #ffffff;
	position: absolute;
	border-radius: 50px;
	border: 5px solid var(--tts-buttton-bg);
	bottom: -25px;
	left: 50%;
	padding: 7px 25px;
	white-space: nowrap;
	transform: translateX(-50%);
	font-size: 20px;
	width: 216px;
}

.banner-form .search-btn:hover,
.banner-form .search-btn:focus,
.banner-form .search-btn.focus,
.banner-form .search-btn:active,
.banner-form .search-btn.active {
	background-color: var(--tts-buttton-bg1);
	border: 5px solid var(--tts-buttton-bg1);
	color: var(--tts-buttton-txt1);
}


.banner-form .add-city {
	background-color: transparent;
	color: var(--tts-buttton-bg);
	border-radius: 50px;
	border: 2px solid var(--tts-buttton-bg);
	padding: 7px 25px;
}

.makeflex {
	display: flex;
	gap: 20px;
}

.banner-form .form-info .form-item.dropdown .dropdown-menu.dropdown-xl .btn.btn-light {
	background-color: #E4EBF1;
	border: 1px solid #E4EBF1;
	color: #222222;
}

.banner-form .form-info .form-item.dropdown .dropdown-menu.dropdown-xl .btn.btn-primary {
	background-color: var(--tts-buttton-bg);
	border: 1px solid var(--tts-buttton-bg);
	color: #ffffff;
} */



/*calendar*/
.calendarOuter.ui-datepicker {
	padding: 0.5em;
	border-radius: 8px;
	background: linear-gradient(to bottom, #ffffff, #f9f9f9);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	font-family: inherit !important;
}

.calendarOuter.ui-datepicker .ui-datepicker-header {
	padding: 0.5em;
	background: var(--tts-buttton-bg);
	color: #ffffff;
	text-align: center;
	border-bottom: 1px solid #ddd;
	position: relative;
}

.calendarOuter.ui-datepicker th {
	padding: 0.5em;
	text-align: center;
	color: #888;
	font-weight: bold;
}

.calendarOuter .ui-state-disabled {
	pointer-events: none;
	opacity: 0.4;
}

.calendarOuter .ui-state-active {
	background: var(--tts-buttton-bg);
	color: #ffffff !important;
	border-radius: 4px;
	border: 1px solid var(--tts-buttton-bg);
}

.calendarOuter.ui-datepicker td span,
.calendarOuter.ui-datepicker td a {
	display: block;
	text-align: center;
	padding: 0.5em;
	border-radius: 4px;
	transition: background-color 0.3s ease;
}

/* .calendarOuter.ui-datepicker td span:hover,
.calendarOuter.ui-datepicker td a:hover {
    background: var(--tts-buttton-bg);
    color: #ffffff;
} */

.calendarOuter .ui-state-highlight {
	background: #222222;
	border: 1px solid#222222;
	color: #ffffff;
}

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

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


/* Left section with city and airport code */
.tts-autocomplete .dest_left {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-family: inherit !important;
}

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

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

/* Right section with airport code and flag */
.tts-autocomplete .ui-menu-item-wrapper div:last-child {
	display: flex;
	align-items: center;
	gap: 8px;
}

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


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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


.flight-search {
	color: #ffffff;
}


.flight-search h6 {
	color: #fff;
}

.flight-search .form-check-input:checked~.form-check-label {
	color: #ffffff;
}

.search-wrapper .tab-content {
	background: #fff;
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	border: 1px solid #f6dc0a9e;
}

.theme-btn {
	font-size: 16px;
	color: #ffffff;
	padding: 11px 20px;
	transition: all 0.5s;
	text-transform: capitalize;
	position: relative;
	border-radius: 10px;
	font-weight: 500;
	cursor: pointer;
	text-align: center;
	overflow: hidden;
	border: none;
	background: var(--tts-buttton-bg);
	box-shadow: 0 3px 24px rgb(0 0 0 / 12%);
	z-index: 1;
}


@media screen and (max-width: 480px) {
	.flight-search .form-check-input:checked~.form-check-label {
		font-size: 13px;
	}
}