:root {
	--dynamic-color: 'gray';
	--dynamic-border-color: 'gray';
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Bold.eot');
	src: url('../fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Montserrat-Bold.woff2') format('woff2'),
		url('../fonts/Montserrat-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Italic.eot');
	src: url('../fonts/Montserrat-Italic.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Montserrat-Italic.woff2') format('woff2'),
		url('../fonts/Montserrat-Italic.woff') format('woff');
	font-weight: normal;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Regular.eot');
	src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Montserrat-Regular.woff2') format('woff2'),
		url('../fonts/Montserrat-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

html,
body {
	height: 100vh;
	max-height: 100vh;
	width: 100%;
	overflow: hidden;
	font-family: 'Montserrat', sans-serif;

}

main {
	/* background-image: url(/images/bg.jpg);
	background-repeat: no-repeat;
	background-size: cover; */
	background-color: #576071;
	position: relative;
	width: 100%;
	height: 100%;
	font-family: 'Montserrat', sans-serif;
}

main:after {
	display: block;
	position: absolute;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 30%, #000 100%);
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 1;
	z-index: -1;
}

:focus,
input:focus,
select:focus {
	outline: none !important;
	border: none;
	box-shadow: none;
}

select, .form-control:focus {
	outline: none !important;
	border: none;
	box-shadow: none;
}

select.form-control option:hover {
	box-shadow: 0 0 10px 100px var(--dynamic-border-color) inset;
	background-color: var(--dynamic-border-color);
}

select:active, select:hover {
	outline: none;
	background-color: transparent;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
	background: transparent;
}

.active .page-button {
	background: var(--dynamic-color);
	border: 2px solid var(--dynamic-border-color);
	backdrop-filter: blur(10px);
}

a {
	text-decoration: none;
}


a:hover {
	color: #fff;
}

.filter {
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(20px);
	border-radius: 1.5rem;
}

.active-filter {
	background: var(--dynamic-color);
	border: 2px solid var(--dynamic-border-color);
	backdrop-filter: blur(10px);
	border-radius: 1.5rem;
}

main .coverer-fluid {
	z-index: 999 !important;
	width: 100%;
	height: 100%;
}

main a {
	color: #fff;
}

.mainpage-buttons-wrapper {
	margin-top: 7vh;
	padding: 0px;
}

.mainpage-buttons-wrapper img {
	height: 80px;
}

/* ******header start*/

.h-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 15vh;
	/*background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);*/
}

.vh-80 {
	height: 80vh;
}

.h-container button {
	display: flex;
	align-items: center;
	gap: 10px;
}

.h-left {
	width: 20%;
	flex: 0 0 auto;
	justify-content: center;

}

.h-left img {
	width: calc(100% - 50px);
	height: 100%;
	background-size: cover;
}

.h-mid {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 65%;
	flex: 0 0 auto;
	gap: 10px;
}

.h-mid button {
	height: 80px;
	background: rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(20px);
	border-radius: 200px;
	width: 100%;
	color: #ffffff;
	padding: 0rem 1rem;
}

.h-mid-map, .h-mid-home-map {
	display: none;
}


#search-input {
	padding-left: 30px;
	padding-right: 30px;
	width: 100%;
	justify-content: space-between;
	background: none;
	border: 0px;
	text-decoration: none !important;
	outline: none !important;
	color: #FFFFFF;
}

input:-webkit-autofill {
	border: none;
	text-decoration: none !important;
	outline: none !important;
	color: #FFFFFF;
	background: transparent;
}

input:autofill {
	border: none;
	text-decoration: none !important;
	outline: none !important;
	color: #FFFFFF;
	background: transparent;
}

.h-search-wrapper {
	top: 40px;
	padding-right: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
	width: 100%;
	background: rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(20px);
	border-radius: 200px;
	-moz-transition: width 0.3s ease-in-out;
	-o-transition: width 0.3s ease-in-out;
	-webkit-transition: width 0.3s ease-in-out;
	transition: width 0.9s ease-in-out;
}

/* .h-search-wrapper:focus-within {
	cursor: pointer;
	left: 5%;
	width: 90% ;
	position: absolute;
	padding-right: 25px;
	z-index: 2;
	
} */

.btn-home, .btn-help, .btn-emergency {
	justify-content: center;
}


.h-right {
	align-items: center;
	gap: 15px;
	width: 15%;
	flex: 0 0 auto;
	justify-content: flex-end;
}

.h-right .h-date {
	font-weight: 500;
	font-size: 24px;
	line-height: 24px;
	color: #FFFFFF;
}

.h-right .h-temperature {
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
	color: #FDB012;
	display: flex;
	align-items: center;
}

.h-temperature img {
	/* margin-top: 6px; */
	height: 29px;
}

.temperature-number {
	margin-top: -2px;
}

.temperature-degree {
	padding: 0 5px;
}

.h-right .h-languages {
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
	color: #FFFFFF;
	background: none;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.h-right .h-languages .languages-select {
	background: none;
	color: #fff;
	border: 0px;
	backdrop-filter: blur(20px);
}

.flag-icon {
	background-size: contain;
	background-position: 50%;
	background-repeat: no-repeat;
}

.lang-flag img {
	width: 21px;
	height: 21px;
}

/* ******header end*/



.welcome-wrapper {
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 220px;
	background-position-x: right;
	/* background-image: url('/images/left-rect-green.svg'); */
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 100px;
}

.welcome-h1 {
	font-weight: 600;
	font-size: 4.3rem;
	/*80px*/
	line-height: 130%;
	letter-spacing: 0.02em;
}

.welcome-h1,
.welcome-h2 {
	color: #FFFFFF;
}

.welcome-h2 {
	font-weight: 100;
	font-size: 1.8rem;
}


.search-home, .scan-ticket {
	cursor: pointer;

}

.search-home, .scan-ticket {
	background-size: cover;
	background-repeat: no-repeat;
	background-position-x: left;
	font-style: normal;
	font-weight: 600;
	font-size: 1.8rem;
	letter-spacing: 0.02em;
	color: #FFFFFF;

	min-height: 100px;
	padding-left: 100px;
	display: flex;
	flex-direction: row;
	gap: 10px;
	align-items: center;
}

.scan-ticket {
	margin-top: 20px;
	margin-left: -60px;
	/* background-image: url('/images/bottom-right-rect-green.svg'); */

}

.mainpage-content {
	height: 100%;
}

.mainpage-button {
	padding: 0.5rem;
	min-height: 22vh;
	border-radius: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid var(--dynamic-border-color);
	flex-direction: column;
}

.mainpage-button span {
	font-size: 1rem;
	text-align: center;
}

.mainpage-button a,
.mainpage-button a:hover,
.mainpage-button a:active,
.mainpage-button a:visited,
.mainpage-button a:link,
.mainpage-button a span,
.mainpage-button a:hover span,
.mainpage-button a:active span,
.mainpage-button a:visited span,
.mainpage-button a:link span {
	font-style: normal;
	font-weight: 600;
	font-size: 22px;
	line-height: 130%;
	text-align: center;
	letter-spacing: 0.02em;
	color: #FFFFFF;
	text-decoration: none;
}

.quicklinks {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 1rem 2rem 4rem;
	font-style: normal;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	letter-spacing: 0.02em;
	color: #FFFFFF;
	min-height: 20vh;
	margin-bottom: 2vh;
	/* background-image: url('/images/main-right-menu-green.svg'); */
}

.n-margin {
	margin-top: -3rem;
}


/*MAINPAGE SLICK*/
/**
 * Title:
 *    Animations
 * Description:
 *    List all the animations of the site in one file
 * Sections:
 *    $. Keyframes
 *    $. Classes
 */



/* $. Keyframes
\*----------------------------------------------------------------*/


@keyframes shrink {
	0% {
		color: green;
		transform: scale(2);
	}

	100% {
		transform: scale(1);
		color: grey;
	}
}

@keyframes grow {
	0% {
		transform: scale(1);
		color: grey;
	}

	100% {
		transform: scale(2);
		color: green;
	}
}


/* $. Classes
\*----------------------------------------------------------------*/

.banner-section {
	/*background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(10px);
}

.vehicle-detail-banner .car-slider-desc {
	/* max-width: 180px; */
	margin: 0 auto;
}

.banner-slider .slider.slider-for {
	max-width: 84%;
	padding-right: 35px;
}

.banner-slider .slider.slider-nav {
	/* max-width: 16%; */
}

.banner-slider .slider.slider-for,
.banner-slider .slider.slider-nav {
	width: 100%;
	float: left;
}

.banner-slider .slider.slider-nav {
	height: 100vh;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(10px);
	overflow: hidden;
	max-width: 350px;
	padding: 0;
	width: calc(100% - 25px);
}

.slider-banner-image {
	height: 610px;
}


.slider-nav .slick-slide .thumbnail-image .thumbImg {
	max-width: 19rem;
	width: 100%;
	margin: 0 auto;
	margin-top: -1px;
	border-radius: 20px;
	cursor: pointer;
	padding-left: 10px;
	padding-right: 10px;
	height: 10rem;
}

.slider-banner-image img,
.slider-nav .slick-slide .thumbnail-image .thumbImg img {
	width: 100%;
	border-radius: 20px;
	border: 1px solid #EBEBEB;
	background-size: cover;
	height: 100%;
}

.slick-vertical .slick-slide:active,
.slick-vertical .slick-slide:focus,
.slick-arrow:hover,
.slick-arrow:focus {
	border: 0;
	outline: 0;
}

.slider-nav .slick-slide.slick-current.thumbnail-image .thumbImg {
	border: 2px solid #196DB6;
}

.slider-nav .slick-slide.slick-current span {
	color: #196DB6;
}

.slider-nav .slick-slide {
	text-align: center;
	margin-top: 10px;
}

.slider-nav .slick-slide span {
	font-size: 14px;
	display: block;
	padding: 5px 0 15px;
}

.slick-arrow {
	width: 100%;
	background-color: transparent;
	border: 0;
	background-position: center;
	background-repeat: no-repeat;
	font-size: 0;
	height: 18px;
	position: absolute;
	left: 0;
	right: 0;
	z-index: 99;
}

.slick-prev {
	top: 0;
}

.slick-next {
	bottom: 0;
	background-color: #fff;
}

.slick-prev.slick-arrow {
	background-image: url(../icons/arrow-down-left.svg);
}

.slick-next.slick-arrow {
	background-image: url(../icons/arrow-down-right.svg);
}

/*End USE CSS for Slider*/


.banner-slider .slider.slider-for,
.banner-slider .slider.slider-nav {
	max-width: 100%;
	float: none;
}

.banner-slider .slider.slider-for {
	padding-right: 0;
}

.banner-slider .slider.slider-nav {
	height: auto;
}

.slider-banner-image {
	height: 500px;
}

.slider.slider-nav.thumb-image {
	padding: 10px 30px 0;
}

.slider-nav .slick-slide span {
	padding: 5px 0;
}

.slick-arrow {
	padding: 0;
	width: 15px;
	top: 50%;
	bottom: 0;
	-webkit-transform: translateY(-50%) rotate(-90deg);
	-moz-transform: translateY(-50%) rotate(-90deg);
	-ms-transform: translateY(-50%) rotate(-90deg);
	/* transform: translateY(-50%) rotate(-90deg); */
	transform: translateY(-50%) rotate(0deg);
}

.slick-prev {
	left: 0;
	right: unset;
}

.slick-next {
	left: unset;
	right: 0;
	background-color: transparent;
}

.vehicle-detail-banner .car-slider-desc {
	/* max-width: 340px; */
}

.bid-tag {
	padding: 10px 0 15px;
}

.slider.slider-nav.thumb-image {
	white-space: nowrap;
}

.thumbnail-image.slick-slide {
	padding: 0px 5px;
	min-width: 75px;
	display: inline-block;
	float: none;
}


@media screen and (max-width : 767px) {
	.slider-banner-image {
		height: 400px;
	}

	.slider.slider-nav.thumb-image {
		padding: 0px 20px 0;
		margin: 10px 0px 0;
	}

	.slider-nav .slick-slide.thumbnail-image .thumbImg {
		max-width: 140px;
		height: 80px;
	}

	.slick-prev.slick-arrow {
		/* background-position: center 10px; */
	}

	.slick-next.slick-arrow {
		/* background-position: center 10px, center; */
	}

	.slider-nav .slick-slide span {
		font-size: 12px;
		white-space: normal;
	}
}



@media screen and (max-width: 580px) {
	.slider-banner-image {
		height: 340px;
	}
}

@media screen and (max-width : 480px) {
	.slider-banner-image {
		height: 280px;
	}
}


/*END MAINPAGE SLICK*/

/* SUB PAGE */
/*Navigation*/
.page-buttons-wrapper {
	margin-top: 9vh;
}

.page-button {
	border-radius: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid var(--dynamic-border-color);
	flex-direction: column;
	height: 100%;
	padding: 0px 5px;
}

.page-button span {
	font-size: 14px !important;
}

.page-button img {
	height: 30%;
	/*2.3rem*/
}

.page-button a,
.page-button a:hover,
.page-button a:active,
.page-button a:visited,
.page-button a:link,
.page-button a span,
.page-button a:hover span,
.page-button a:active span,
.page-button a:visited span,
.page-button a:link span,
a.page-button,
a.page-button:hover,
a.page-button:active,
a.page-button:visited,
a.page-button:link,
a.page-button span,
a.page-button:hover span,
a.page-button:active span,
a.page-button:visited span,
a.page-button:link span {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	letter-spacing: 0.02em;
	color: #FFFFFF;
	text-decoration: none;
}

.nav-pills .nav-link {
	flex: 1;
	/*for left nav to get %100 height*/
	overflow: hidden;
}

.page-content-wrapper {
	/* height: 100%; */
	height: 80vh;
	border-radius: 20px;
	border: 2px solid var(--dynamic-border-color);

	padding-top: 12px;
	padding-bottom: 12px;
}

.main-title {
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 29px;
	text-align: left;
	color: #FFFFFF;
	margin-top: 1rem;
	margin-left: 1rem;
}


.menu-content-title {
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	text-align: left;
	color: #FFFFFF;
	margin-bottom: 1rem;
	cursor: pointer;
	display: flex;
	gap: 10px;
	align-items: center;
}

.left-sub-nav {
	list-style: none;
	margin: 0;
	padding: 1rem;
}

.left-sub-second-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.left-sub-nav-item {
	padding: 1rem;
	margin-bottom: 1rem;
}

.left-sub-nav-item a {
	display: flex;
	align-items: center;
	justify-content: left;
	gap: 1rem;
}

.left-sub-nav-img-wrapper {
	display: flex;
	width: 33.5px;
	height: 33.5px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	padding: 0.5rem;
	justify-content: center;
}

.left-sub-nav-img-wrapper img {
	display: flex;
	height: 100%;
}

.nav.flex-column {
	gap: 0.5rem;
	height: 100%;
	flex-wrap: no-wrap;
}

/*Page Layout*/
.kiosk-row {
	display: flex;
	gap: 1rem;
}

.col-nav {
	max-width: 200px;
	width: 200px;
}

.col-content {
	max-width: 400px;
	width: 400px;
}

.col-map {
	flex: 1;
}

/* flights********** start */
.fromFlight, .toFlight {
	flex: 0 2 7.5em !important;
}

.fromFlight p, .toFlight p {
	margin-bottom: 0px;
}

.flight-list-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 1rem;
}

.flight-title h1 {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 29px;
}

.flight-search {
	align-items: center;
	justify-content: center;
	display: flex;
	position: relative;
	flex: 1.5;
}

.flight-search input {
	background: rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
	border-radius: 200px;
	width: calc(100% - 30px);
	height: 60px;
	color: #fff;
	padding-left: 20px;
}

.flight-search img {
	position: absolute;
	right: 40px;
	z-index: 2;
	height: 1.5rem;
}

#main-content {
	padding: 20px;
}

.content-staticPage-type,
.content-staticPage-location {
	font-weight: 500;
	font-size: 1.3em;
}

::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: #fff;
}

:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #fff;
	opacity: 1;
}

::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #fff;
	opacity: 1;
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #fff;
}

::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #fff;
}

::placeholder {
	/* Most modern browsers support this now. */
	color: #fff;
}

.flight-types {
	display: flex;
	gap: 10px;
	flex: 1;
}

.flight-types .page-button {
	height: 60px;
	width: 100%;
	min-height: 60px !important;
	border: 0px;
	flex-direction: row !important;
	gap: 10px;
	padding: 0.5rem 1rem;
}

.flight-types button {
	background: none;
	border: 0px;
	width: 100%;

}

.flight-types button img {
	height: 1rem;

}

.tbl-flight-list {
	border-collapse: separate;
	border-spacing: 0 0.5em;
}

.tbl-flight-list tr {
	text-align: center;
	vertical-align: middle;
	height: 2.5rem;
}

.tbl-flight-list tr td, .tbl-flight-list tr th {
	border: 0px;
}

.tbl-flight-list thead tr th {
	color: #FFFFFF;
	font-weight: 600;
	background: rgba(0, 0, 0, 0.5);
}

.tbl-flight-list tbody tr td {
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #FFFFFF;
	background: rgba(0, 0, 0, 0.5);
	height: 4rem;

}

.tbl-flight-list tbody tr td:first-child {
	border-bottom-left-radius: 50px;
	border-top-left-radius: 50px;
}


.tbl-flight-list tbody tr td:last-child {
	border-bottom-right-radius: 50px;
	border-top-right-radius: 50px;
}

.tbl-flight-list thead tr th:first-child {
	border-bottom-left-radius: 50px;
	border-top-left-radius: 50px;
}

.tbl-flight-list thead tr th:last-child {
	border-bottom-right-radius: 50px;
	border-top-right-radius: 50px;
}

.tbl-flight-list .flight-icon {
	height: 2rem;
	width: 60px;
	object-fit: contain;
}

.content-staticPage-container {
	display: block;
}

#flight-refresh-btn {
	text-align: center;
	cursor: pointer;
}

.flight-info-content {
	backdrop-filter: blur(20px);
	padding: 20px;
	color: #fff;
	position: absolute;
	bottom: 0px;
	padding-bottom: 0px;
	width: 100%;
	left: 0px;
	background: 0 0;
	border: 0;
	border-radius: 0.25rem;


	font-size: 12px;
	height: 15%;
	overflow: auto;
}

.flight-detail,
.page-detail {
	color: #fff;
}

.flight-detail .main-title,
.page-detail .main-title {
	display: flex;
	gap: 1rem;
	font-size: 1.25rem;
	margin-top: 0;
	margin-left: 0;
}

.page-detail {
	display: flex;
	flex-direction: column;
}

.flight-detail {
	height: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.flight-detail p {
	margin: 0;
}

.page-detail p {
	margin: 0;
}

.flight-heading {
	font-weight: 400;
	font-size: 0.9rem;
}

.page-heading {
	font-weight: 400;
	font-size: 1rem;
}

.flight-airline-icon {
	height: 2rem;
	width: 60px;
	object-fit: contain;
}

.flight-subheading {
	font-weight: 500;
	font-size: 1rem;
}

.page-subheading {
	font-weight: 500;
	font-size: 1.5rem;
}

.flight-button {
	padding: 0.75rem 0.75rem;
	border-radius: 3rem;
	text-align: center;
	cursor: pointer;
	font-size: 1rem;
	/* margin-top: 1rem; */
}

.flight-detail-icon {
	padding: 5px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
}

.flightList-item {
	cursor: pointer;
}

.origin {
	font-weight: bold;
	font-size: 1.5rem;
}

.dep-arr {
	font-size: 0.6rem;
}

.flight-list-wrapper {
	max-height: 55vh;
	overflow: hidden;
	overflow-y: scroll;
}

.h-mid-search-map {
	flex-basis: 45%;
}

.banner-wrapper {
	border-radius: 1.5rem;
	border: 2px solid var(--dynamic-border-color);
	overflow: hidden;

	/**/
	width: 100%;
	height: 200px;
	flex: none;
}

.banner-wrapper img {
	height: 100%;
}

::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	background-color: #919191;
	border-radius: 50px;

}

::-webkit-scrollbar {
	width: 12px;
	background-color: #919191;
	border-radius: 50px;
}

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #444141;
}

/* flights********** end */

.hg-theme-default {
	width: 75%;
}

.keyboard {
	background-color: rgba(0, 0, 0, 0.8) !important;
	backdrop-filter: blur(20px);
	width: 90%;
	left: 5%;
}

.error-container {
	position: absolute;
	flex-direction: column;
	display: flex;
	width: 100%;
	justify-content: center;
	color: #fff;
	left: 0px;
	top: 0px;
	height: 109px;
	background: #EA1C1C;
	align-items: center;
	padding: 40px 30px;

}

.error-partial-container {
	display: flex;
	justify-content: center;
	height: 50%;
	align-items: center;
	flex-direction: column;
	gap: 50px;
}

.error-partial-container h5 {
	color: #fff;
}

.error-partial-container img {
	width: 100px;
}

.kiosk-button {
	border-radius: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid var(--dynamic-border-color);
	background: var(--dynamic-color);
	backdrop-filter: blur(10px);
	direction: column;
}

/*MODAL*/

.kiosk-modal .modal-content {
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(20px);
	color: #fff;
	border-radius: 1.5rem;
	border: 2px solid var(--dynamic-border-color)
}

.kiosk-modal .modal-body {
	background: transparent;
	color: #fff;
	overflow: auto;
	max-height: 70vh;
}

.kiosk-modal .modal-body table,
.kiosk-modal .modal-body div,
.kiosk-modal .modal-body p {
	background: transparent;
	color: #fff;
}

.kiosk-modal .modal-body div.active-filter {
	background: var(--dynamic-color);
	border: 2px solid var(--dynamic-border-color);
	backdrop-filter: blur(10px);
	border-radius: 1.5rem;
}

.kiosk-modal td {
	font-size: 1.75rem;
	padding: 1rem;
	color: #fff;
}

.kiosk-modal td p {
	border: none;
	padding: 0;
	margin: 0;
	color: #fff;
}

.kiosk-modal tr {
	background: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	color: #fff;
	margin-bottom: 1rem;
	border-radius: 1.5rem;
	border: 1px solid transparent;
	display: flex;
}

.kiosk-modal li {
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(20px);
	color: #fff;
	margin-bottom: 1rem;
	border-radius: 1.5rem;
	border: 1px solid transparent;
	display: flex;
	align-items: center;
	padding: 1rem;
	justify-content: left;
	gap: 1rem;
}

.kiosk-modal .modal-header {
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.5rem;
	color: #FDB012;
	border-bottom: none;
}

.kiosk-modal button.btn-close {
	color: #FDB012;
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
	font-size: 3rem;
}

.kiosk-modal .btn-close:focus {
	outline: 0;
	box-shadow: none;
	opacity: 1;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
	color: #fff;
}

.kiosk-modal .vertical-alignment-helper {
	display: table;
	height: 100%;
	width: 100%;
	pointer-events: none;
}

.kiosk-modal .vertical-align-center {
	/* To center vertically */
	display: table-cell;
	vertical-align: middle;
	pointer-events: none;
}

.kiosk-modal .modal-content {
	/* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
	width: inherit;
	max-width: inherit;
	/* For Bootstrap 4 - to avoid the modal window stretching full width */
	height: inherit;
	/* To center horizontally */
	margin: 0 auto;
	pointer-events: all;
}


.search-result-wrapper {
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid var(--dynamic-border-color);
	backdrop-filter: blur(10px);
	border-radius: 30px;
	color: #fff;
	position: absolute;
	left: 1%;
	top: 125px;
	width: 98%;
	padding: 1rem;
	z-index: 3;
	max-height: calc(100% - 490px);
	overflow: auto;
}

.search-result-content {
	list-style-type: none;
	padding: 1rem;
}

.search-item {
	padding: 0.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 15px;
}

.search-item:hover {
	background: rgba(0, 0, 0, 0.08);
	/* border-radius: 25px; */
}

.simple-keyboard {
	position: absolute;
	bottom: 15px;
	width: 100%;
	left: 0;
	display: none;
	z-index: 9999;
}

.hg-rows {
	margin: 1rem 15rem;
}

.hg-row:nth-child(3) .hg-button:last-child {
	/* background: var(--dynamic-border-color); */
}

.hg-button span {
	font-weight: 700;
}

.search-island {
	display: block !important;
	width: 100%;
	flex-basis: 100%;
}

.scan-ticket-detail {
	padding: 0px 10px 0px 10px;
}

.scan-ticket-detail .card {
	background-color: #fff;
	color: #000;
	border: none;
	border-radius: 30px;

}

.scan-ticket-detail .card-body {
	background: url('../icons/map-90-bg.svg') no-repeat;
	background-position: center center;
	color: #000;
}

.scan-ticket-detail .card-body .flight-heading {
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 29px;
	color: #999999;
}

.scan-ticket-detail .card-body .flight-subheading {
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 29px;
	color: #000;
}

#checkin-section .flight-subheading {
	gap: 10px;
}


.scan-ticket-detail .card-body .flight-subheading.yellow {
	color: #F89701;
}

.scan-ticket-detail .card-header,
.scan-ticket-detail .card-footer {
	background-color: #F89701;
	color: #fff;
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 29px;
}

.scan-ticket-detail .card-header:first-child {
	border-radius: 30px 30px 0px 0px;
}

.scan-ticket-detail .card-footer:last-child {
	border-radius: 0px 0px 30px 30px;
}

.scan-ticket-detail .flight-button {
	padding: 15px 20px;
	background: var(--dynamic-border-color);
	border: 2px solid #FFFFFF;
	backdrop-filter: blur(10px);
	border-radius: 50px;
	font-weight: 600;
	font-size: 24px;
	line-height: 29px;
	text-align: center;
	color: #FFFFFF;
}

.scan-ticket-detail .flight-button-invert {
	padding: 10px;
	background: #fff;
	border: 2px solid var(--dynamic-border-color);
	backdrop-filter: blur(10px);
	border-radius: 50px;
	font-weight: 500;
	font-size: 18px;
	line-height: 18px;
	text-align: center;
	color: var(--dynamic-border-color);
	cursor: pointer;
}

.scan-ticket-detail .show-map-wrapper {
	border: 1px solid;
	border-color: #B3C4D4;
	border-radius: 10px;
	margin: 0.5rem 2rem;
	padding: 1rem;
}

.yellow {
	color: #F89701;
}

/* Arrow BP*/
@-webkit-keyframes background {
	0% {
		fill-opacity: 0.1;
	}

	30% {
		fill-opacity: 0.3;
	}

	100% {
		fill-opacity: 1;
	}
}

.arrow-bp {
	fill: #FDB012;
	-webkit-animation: background 2s infinite;
}

.arrow-bp:nth-child(1) {
	-webkit-animation-delay: 0.3s;
}

.arrow-bp:nth-child(2) {
	-webkit-animation-delay: 0.6s;
}

.arrow-bp:nth-child(3) {
	-webkit-animation-delay: 1s;
}

.fDeparted, .fGateClosed, .fLastCall, .fCheckIn, .fDefault {
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
}


.fDeparted {
	color: #A0D699 !important;
}

.fGateClosed {
	color: #FDB012 !important;
}

.fLastCall {
	color: #F35252 !important;
}

.fCheckIn {
	color: #72B9D6 !important;
}

.fDefault {
	columns: #fff !important;
}


.content-staticPage {
	display: flex;
	flex-wrap: inherit;
	flex-direction: column;
	gap: 0.5rem;
	height: calc(100% - 40px);
	width: 100%;
}

@media screen and (max-width : 1399px) {
	.welcome-wrapper {
		min-height: 190px;
	}

	.search-home, .scan-ticket {
		min-height: 85px;
	}

	.mainpage-buttons-wrapper {
		margin-top: 5vh;
	}

	.mainpage-buttons-wrapper img {
		height: 55px !important;
	}

}

.search-result-header {
	display: flex;
	align-items: center;
	gap: 20px;
}

.search-result-header .search-icon {
	height: 24px;
	width: 24px;
}

.search-item .search-icon {
	height: 18px;
	width: 18px;
}


.search-result-header .search-title {
	font-family: 'Montserrat';
	color: var(--dynamic-border-color);
	font-size: 18px;
	font-weight: 600;
	line-height: 22px;
}

.search-item-padding {
	padding-left: 45px;
}

.tblSearchResult-flightList {
	width: calc(100% - 25px);
	margin-left: 25px;
}

.tblSearchResult-flightList tr td {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	color: #FFFFFF;
	border: 0px;
}

.tblSearchResult-flightList tr:hover {
	background: rgba(0, 0, 0, 0.08);
}

.tblSearchResult-flightList .flight-icon {
	height: 2rem;
	width: 60px;
	object-fit: contain;
}

.tblSearchResult-flightList .airlineNumber {
	font-weight: 600;
}

.tblSearchResult-flightList .flightNameWithIcon {
	display: flex;
	width: 100%;
	gap: 15px;
	align-items: center;
}

.h-languages .languages-select option {
	background: #5b5d6a;
}

.countdown {
	margin-right: 10px;
	font-size: 18px;
}

.warning-area {
	position: absolute;
	top: 0;
	width: 100%;
	display: none;
}

.warning-wrapper {
	height: 30px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	color: #fff;
	font-family: 'Montserrat';
	font-size: 1rem;
	background: rgba(234, 28, 28, 1);
}

.warning-wrapper img {
	width: 15px;
}

.slider-default-content {
	width: 100%;
	max-height: 520px;
	margin-top: -10px;
	/* padding: 15px; */
}

.slider-default-content img {
	width: 100%;
	height: 100%;
}

.image-cover {
	background: no-repeat center;
	background-size: cover;
	display: block;
	height: 100%;
	position: relative;
	z-index: 1;
}

#startExplorerModal .modal-title {
	color: #FDB012;
}

.start-explorer {
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(20px);
	color: #fff;
	border: 0px;
	padding-left: 5px;
}

#startExplorerModal .modal-body {
	display: flex;
	gap: 20px;
	padding-top: 0px;
	padding-bottom: 28px
}

.btnStartExplorer {
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(20px);
	color: #fff;
	border: 1px solid #000;
	padding-left: 10px;
	padding-right: 10px;
}

.errStartExplorerMessage {
	display: none;
}

.startExplorerModal {
	z-index: 9 !important;
}

.leftContentListMenu {
	overflow: auto;
	max-height: 77vh;
}

.lang-flag {
	padding-bottom: 5px;
}

.flightDetailHeader {
	height: 100px;
}

.notavailable-map {
	position: absolute;
	z-index: 9999;
	width: calc(100% - 40px);
	height: 100%;
	display: flex;
	font-size: 1.5rem;
	line-height: 24px;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.go-to-btns {
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 150px;
	justify-content: center;
}

.flight-destination-info {
	height: 108px;
}

.flight-detail-etad-stad {
	align-items: center;
	gap: 5px;
}

.flight-detail-etad-stad img {
	height: 12px;
}

.detail-content-area {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*ARABIC SUPPORT CSS*/
.rtl .left-sub-nav-item a {
	justify-content: right;
}

.rtl .h-search-wrapper {
	padding-left: 25px;
	padding-right: 0;
}

.rtl .flight-detail .main-title,
.rtl .page-detail .main-title,
.rtl .menu-content-title {
	flex-direction: row-reverse;
}

.rtl .page-detail p {
	text-align: right;
}

.rtl .h-left {
	display: flex;
}

.rtl .tbl-flight-list thead tr th:last-child,
.rtl .tbl-flight-list tbody tr td:last-child {
	border-bottom-left-radius: 50px;
	border-top-left-radius: 50px;
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}

.rtl .tbl-flight-list thead tr th:first-child,
.rtl .tbl-flight-list tbody tr td:first-child {
	border-bottom-right-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}

.rtl .flight-search img {
	left: 40px;
}

.rtl .flight-search input {
	padding-right: 20px;
}

.rtl .kiosk-modal li {
	justify-content: right;
}

.rtl .search-home,
.rtl .scan-ticket,
.rtl .welcome-wrapper {
	background-position-x: right;
	padding-right: 100px;
	padding-left: auto;
}

.rtl .scan-ticket {
	margin-left: auto;
	margin-right: -60px;
}

.rtl .quicklinks {
	padding: 0 4rem 2rem 1rem;
}

.rtl .banner-slider .slider.slider-for,
.rtl .banner-slider .slider.slider-nav {
	float: right;
}

.rtl .pis-map-balloon {
	direction: ltr;
}

/* @keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}

	100% {
		opacity: 1;
	}
}

.you-are-here-img {
	animation: blink 2s infinite;
} */


@keyframes glow {
	0% {
		filter: drop-shadow(0 0 20px var(--dynamic-border-color));
	}

	50% {
		filter: drop-shadow(0 0 40px var(--dynamic-border-color));
	}

	100% {
		filter: drop-shadow(0 0 20px var(--dynamic-border-color)), radial-gradient(circle, var(--dynamic-border-color) 20%, var(--dynamic-border-color) 50%);
	}
}

.you-are-here-img {
	content: "";
	background-color: var(--dynamic-border-color);
	opacity: 1;
	animation: glow 1s infinite;
}

.mobile-menu-container {
	display: none;
}