body,
html {
	margin: 0;
	padding: 0;
}

#mainContainer {
	min-height: 100vh;
	position: relative;
	background-image: url("/images/background.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#content {
	padding-bottom: 2.5rem;
}

#bapoLogo {
	width: 230px;
}

#content {
	padding-top: 50px;
}

.boxShadow {
	-webkit-box-shadow: 5px 5px 15px -4px #222222;
	box-shadow: 5px 5px 15px -4px #222222;
	border: 1px solid #0091d0;
}

footer {
	width: 100%;
	position: absolute;
	height: 2.5rem;
	left: 0;
	bottom: 0;
}


.panel-default>.panel-heading {
	color: #222 !important;
	background-color: #AAD3DF !important;
}



/*COMPASS*/

#compass {
	z-index: 99999;
	width: 200px;
	height: 200px;
	text-align: center;
	background-color: #F3F3F3;
	border-radius: 100%;
	background-image: -webkit-linear-gradient(top, #F7F7F7, #ECECEC);
	position: absolute;
	top: 150px;
	left: 0;
	right: 0;
	margin: auto
}

.compass-inner {
	width: 170px;
	height: 170px;
	left: 13px;
	top: 13px;
	background-color: #3D3D3D;
	border-radius: 100%;
	position: relative;
	border: 3px solid #C5C5C5;
}

.main-arrow {
	left: 78px;
	width: 15px;
	padding-top: 3px;
	height: 100%;
	position: relative;
	box-sizing: border-box;
	transform: rotate(20deg);
	animation: spin 2.0s alternate infinite;
	-ms-transform: rotate(20deg);
	-o-transform: rotate(20deg);
	-o-animation: spin 2.0s alternate infinite;
	-moz-transform: rotate(20deg);
	-moz-animation: spin 2.0s alternate infinite;
	-webkit-transform: rotate(20deg);
	-webkit-animation: spin 2.0s alternate infinite;

}

.arrow-up {
	width: 0;
	height: 0;
	border-bottom: 82.5px solid #EF5052;
	border-left: 7.5px solid transparent;
	border-right: 7.5px solid transparent;
	position: relative;


}

.arrow-down {
	-webkit-transform: rotate(180deg);
	/* Safari and Chrome */
	width: 0;
	transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	height: 0;
	border-bottom: 82.5px solid #F3F3F3;
	border-left: 7.5px solid transparent;
	border-right: 7.5px solid transparent;
	position: relative;
}

.north {
	font-family: 'Lobster Two', cursive;
	color: #FFF;
	position: absolute;
	left: 78px;
	top: 10px;
	font-size: 16px;
}

.east {
	font-family: 'Lobster Two', cursive;
	color: #FFF;
	position: absolute;
	font-size: 16px;
	top: 72.5px;
	left: 145px;
}

.west {
	font-family: 'Lobster Two', cursive;
	color: #FFF;
	position: absolute;
	font-size: 16px;
	left: 10px;
	top: 72.5px;
}

.south {
	font-family: 'Lobster Two', cursive;
	color: #FFF;
	position: absolute;
	font-size: 16px;
	left: 78px;
	top: 140px;
}

@keyframes spin {
	0% {
		transform: scale(1) rotate(0deg);
	}

	50% {
		transform: scale(1) rotate(80deg);
	}

	100% {
		transform: scale(1) rotate(-180deg);
	}
}

@-o-keyframes spin {
	0% {
		-webkit-transform: scale(1) rotate(0deg);
	}

	50% {
		-webkit-transform: scale(1) rotate(80deg);
	}

	100% {
		-webkit-transform: scale(1) rotate(-180deg);
	}
}

@-moz-keyframes spin {
	0% {
		-webkit-transform: scale(1) rotate(0deg);
	}

	50% {
		-webkit-transform: scale(1) rotate(80deg);
	}

	100% {
		-webkit-transform: scale(1) rotate(-180deg);
	}
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: scale(1) rotate(0deg);
	}

	50% {
		-webkit-transform: scale(1) rotate(80deg);
	}

	100% {
		-webkit-transform: scale(1) rotate(-180deg);
	}
}


/* SWITCH */

.switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 25px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 4px;
	bottom: 3px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked+.slider {
	background-color: #2196F3;
}

input:focus+.slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
	-webkit-transform: translateX(24px);
	-ms-transform: translateX(24px);
	transform: translateX(24px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}