@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
	font-family: "Poppins", sans-serif;
	min-height: 100vh;
	overflow-x: hidden;
}

.sidebar {
	background: #EBF5FF;
	height: 100vh;
	padding: 2rem 2rem 2rem 4rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-right: 1px solid #dee2e6;
	margin-right: 5%;
}

.logo {
	max-width: 200px;
}


.stepper {
	margin-top: 3rem;
	font-size: 0.95rem;
	color: #1a2a58;
}

.stepper .step {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	position: relative;
	margin-bottom: 2rem;
	cursor: default;
}

.stepper .step .circle {
	border-radius: 50px;
	width: 15px;
	height: 15px;
	border: 2px solid transparent;
	display: flex;
	font-size: 6px;
	line-height: 15px;
	text-align: center;
}

.stepper .step.active .circle {
	background-color: #007CF7;
}

.stepper .step.inactive .circle {
	border: 2px solid #1B3D6D;
	background: #1B3D6D;
	color: #1B3D6D;
}

.stepper .step.active .label {
	font-weight: 700;
	color: #007CF7;
}

.stepper .step.inactive .label {
	color: #1B3D6D;
}

.stepper .step:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 19px;
	width: 2px;
	height: 40px;
	background: #1B3D6D;
	z-index: 0;
}

.sidebar-footer {
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
}

.sidebar-footer .features-text {
	margin-bottom: 1rem;
	font-weight: 600;
	font-size: 14px;
}

.sidebar-footer .logos {
	display: flex;
	justify-content: center;
	gap: 1.7rem;
}

.sidebar-footer .logos img {
	filter: grayscale(1) brightness(1.2);
	max-height: 28px;
	max-width: 110px;
	object-fit: contain;
}

.sidebar-footer .logos img:hover {
	filter: none;
}

main.container {
	padding: 3rem 2rem 6rem 2rem;
	min-height: 100vh;
	background-color: #fff;
}

.topbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.25rem;
	font-size: 16px;
	color: #1B3D6D;
	margin-bottom: 1.75rem;
	user-select: none;
	font-weight: 500;
}

.topbar svg {
	height: 18px;
	width: 18px;
	fill: #0940a7;
}

.top-bar-logo {
	display: none;
}

.language-switch {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	cursor: pointer;
}

.language-switch img {
	width: 22px;
	height: 15px;
	border-radius: 2px;
	object-fit: cover;
	border: 1.5px solid transparent;
	transition: border-color 0.3s ease;
}

.language-switch:hover img {
	border-color: #0940a7;
}

.form-section {
	margin-bottom: 1.75rem;
	background: #f7faff;
	border-radius: 0.6rem;
	padding: 1.5rem 2rem 1.7rem 2rem;
	color: #1B3D6D;
	box-shadow: 0 0 3px rgb(9 54 140 / 0.05);
}

.form-section h5 {
	font-weight: 500;
	margin-bottom: 1.1rem;
	font-size: 16px;
}

.form-section label {
	font-weight: 600;
	font-size: 16px;
	color: #1B3D6D;
}

.form-section .form-check {
	position: relative;
	padding: 0;
}

.form-section .btn-check {
	clip: auto;
	top: 18px;
	left: 5px;
}

/* Input icons left */
.input-icon-left {
	position: relative;
}

.input-icon-left .form-control {
	padding-left: 2.5rem !important;
	font-size: 16px;
}

.input-icon-left svg {
	position: absolute;
	top: 70%;
	left: 1rem;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	fill: #8596b0;
	pointer-events: none;
}

/* Radio Button style cards */
.btn-check:checked+label {
	border-color: #2571c7;
	background-color: #e7f0ff;
	color: #0940a7;
	font-weight: 600;
	box-shadow: 0 0 6px rgb(37 113 199 / 0.5);
}

.btn-check+label {
	border: 1px solid #ced4da;
	border-radius: 6px;
	font-size: 16px;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	height: 3.1rem;
	display: flex;
	align-items: center;
	cursor: pointer;
	color: #47526e;
	user-select: none;
	transition: background-color 0.2s ease, border-color 0.2s ease;
	font-weight: 500 !important;
}

.btn-check+label svg {
	margin-right: 0.7rem;
	fill: #8596b0;
	width: 18px;
	height: 18px;
}

.add-airport-link {
	font-size: 0.9rem;
	font-weight: 600;
	color: #2569c6;
	cursor: pointer;
	user-select: none;
	display: inline-block;
	margin-top: 0.65rem;
}

.airport-input {
  flex: 50%;
}

.airport-action {
  flex: 20%;
}

.add-airport-link:hover {
	text-decoration: underline;
	color: #0d47a1;
}

.info-box {
	background: #ebf2fa;
	border-radius: 0.5rem;
	padding: 0.85rem 1.25rem;
	font-size: 16px;
	color: #1B3D6D;
	margin-bottom: 2rem;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.info-box svg {
	flex-shrink: 0;
	fill: #1B3D6D;
	width: 18px;
	height: 18px;
}

button.continue-btn {
	width: 140px;
	height: 44px;
	background: #007CF7;
	border: none;
	border-radius: 8px;
	color: #f7faff;
	font-weight: 600;
	transition: background-color 0.25s ease;
}

button.continue-btn:hover {
	background: #0473E2;
}

button.continue-btn.enabled {
	cursor: pointer;
	background: #0046c3;
	color: white;
}


@media only screen and (max-width: 1280px) {

	.top-bar-logo {
		display: flex;
	}

	.sidebar {
		display: none;
	}

	.main-content {
		width: 95%;
		margin-left: auto;
		margin-right: auto;
	}
	
	.topbar { 
		flex-direction: column;
	}

	.airport-input {
	  flex: 80%;
	}

	.airport-action {
	  flex: 20%;
	}	
}


.btn-remove {
	font-size: 16px;
	font-weight: 500;
	margin-top: 15px;
}

.btn-check+.btn:hover {
	background: inherit !important;
	color: inherit !important;
	border-color: #ced4da;
	box-shadow: none !important;
}


.remove-passenger-btn {
    position: absolute;
    right: 15px;
    top: 15px;
}