@font-face {
	font-family: 'Raleway-Thin';
	src: url('./fonts/Raleway-Thin.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

html, body {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: fixed;
}

::-webkit-scrollbar {
    display: none;
}

#svg {
	position: relative;
	left: 0px;
}

.biplane-blue {
    color: #009eef;
}

.biplane-blue-back {
    background-color: #009eef;
}

#menu {
	background: #009eef;
	float: left;
	width: 270px;
	height: 100%;
}

#top {
	height: 40px;
}

#main {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	background: #ffffff;
	float: left;
	height: calc(100% - 40px);
	-ms-overflow-style: none;
	scrollbar-width: none;
}

#ob {
	height: 100%;
}

#gray {
	background: #000000;
	width: 100%;
	height: 100%;
	margin-top: -40px;
	z-index: 100;
	position: absolute;
	margin-left: 270px;
	opacity: 0.3;
}

.btn-default {
	color: #ffffff !important;
	outline: none !important;
	border: none !important;
	-webkit-box-shadow: none !important;
    box-shadow: none !important;
}

@media (orientation: portrait) {
	#menu {
		width: 0px !important;
		height: 100%;
	}
	
	#main {
		width: 100% !important;
	}
	
	#gray {
		display: none;
	}
}

@media (orientation: landscape) {
	#top {
		width: 100% !important;
	}

	#menu {
		width: 270px;
	}

	#main {
		width: calc(100% - 270px);
	}

	#ob {
		width: 100% !important;
	}
	
	#gray {
		display: none !important;
	}
}