
.route-filter {
	display: flex;
}

.route-filter > .airport-filter {
	flex: 1 1 0;
	min-width: 0;
	max-width: 100%;
}

.switch-route-button {
	margin: 37.5px 15px 0;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	padding: 0;
	color: #858485;
	background: thistle;
}

button.btn.switch-route-button:hover,
button.btn.switch-route-button:focus,
button.btn.switch-route-button:focus-visible,
button.btn.switch-route-button:target,
button.btn.switch-route-button:visited,
button.btn.switch-route-button:active
button.btn.switch-route-button:active {
	background: thistle;
	color: #858485;
	border: none;
	outline: none;
	box-shadow:none;
}

@media only screen and (max-width: 992px) {
	.route-filter {
		display: flex;
		flex-direction: column;
	}

	.switch-route-button {
		position: absolute;
	}

	.switch-route {
		display: flex;
		justify-content: center;
		height: 0;
		margin: 0;
	}

	.switch-route-button {
		margin: 0;
	}

	.airport-filter {
		margin: 10px 0;
	}
}