/* Moved all stylesheets within Oxygen called 'destinations-map'
 * 
.destinations {
	display: flex;
	position: relative;
	width: 100%;
	flex-direction: column;
	align-items: stretch;
}

.destinations-wrap {
	position: relative;
	margin-bottom: 2em;
}

.destinations-map {
	position: relative;
	width: 100vw;
	height: 650px;
	left: 50%;
	transform: translate(-50%);
}

.destinations-airlines-wrapper {
    position: absolute;
    display: flex;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 10px;
    width: 220px;
    align-items: center;
}

.destinations-airlines {
	width: 100%;
	max-height: 100%;

	overflow-y: auto;
	border-radius: 2px;
	z-index: 1; 
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
	background: rgba(255, 255, 255, 0.75);
}

.destinations-airline {
	display: flex;
	position: relative;
	width: 100%;
	height: 48px;
	justify-content: center;
	align-items: center;
	overflow: hidden;

	transition: background 0.3s;
}

.destinations-airline-all { background: #fff; }

.destinations-airline:hover, .destinations-airline.active { background: #fff; }

.destinations-airline img { height: 100%; }

.destinations-label {
	padding: 0.5em 1em;
	color: #000;
	text-shadow: 0 0 2px rgba(255, 255, 255, 0.50);
}

.destinations-label-home {
	font-size: 1rem;
	color: #fff;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.20);
}

.destinations-airports {
	width: 100%;
	display: flex;
	position: relative;
	flex-wrap: wrap;
	margin-right: -1em;
	margin-bottom: -1em;
}

.destinations-airport {
	display: flex;
	padding: 1em;
	width: calc(33.333%);
	flex-direction: column;
	align-items: stretch;
}

.destinations-airport-img {
	display: block;
	height: 0;
	padding-bottom: 100%;
	margin-bottom: 1em;

	background-color: #ccc;
	background-size: cover;
	background-position: center;
}

.destinations-airport-title {
	display: block;
	font-size: 1.5em;
	line-height: 1.2;
	text-align: left;
}

@media (max-width: 992px) {
	.destinations-airlines-wrapper {
	    right: 50%;
	    margin-right: -50vw;
	}
}

*/