* {
	margin: 0;
	padding: 0;
}

body {
	overflow: hidden;
	background-color: rgb(56, 63, 71);
}

#map {
	width: 100%;
	height: 100%;
}

#logo {
	z-index: 1;
	border-radius: 0 0 0 20px;
	background-color: rgba(0, 0, 0, 0.4);
	position: absolute;
	top: 0;
	right: 0;
	padding: 10px;
}

#logo img {
	width: 180px;
}

.hidden {
	visibility: none !important;
	display: none !important;
	opacity: 0 !important;
	height: 0 !important;
	width: 0 !important;
}

.spinner {
	position: relative;
	width: 100px;
	height: 100px;
	margin: 1em auto;
}

.spinner::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 50%;
	border: 1px solid #0d2a37;
	border-top-color: #0fa7e7;
	animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}
