@import url(https://fonts.googleapis.com/css?family=Inconsolata:100,700|Open+Sans:100,600);
:root {
	--spacer: 10px;
}

* {
	font-weight: 100;
	box-sizing: border-box;
	user-select: none;
}
html,body {
	font-family: 'Open Sans', sans-serif;
	width: 100vw;
	height: 100vh;
	padding: 0;
	margin: 0;
	overflow: hidden;
}
.app {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	height: 100vh;
	width: 100vw;
}
.map {
	height: 100vh;
	min-height: 100vh;
	width: 100vw;
}
.info {
	z-index: 100;
	position: fixed;
	bottom: 0;
	border: solid 2px hsla(0,0%,20%,.5);
	width: 100%;
	height: 10vh;
	max-height: 10vh;
	min-height: 10vh;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.info__header {
	width: 100%;
	padding: var(--spacer);
	background: hsl(0,0%,80%);
	font-weight:600;
	margin: 0;
	height: 100%;
	transition: all .4s;
}

.error {
	color: red;
}

code {
	font-family: 'Inconsolata', monospace ;
}

.loading {
	opacity: .25;
}

.hidden {
	display: none;
}
.updated {
	background: hsla(90,100%,80%,.85);
	transition: all .4s;
}

.help {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	white-space: nowrap;
	width: 30%;
	min-width: 300px;
}
.help>* {
 padding: calc(var(--spacer) / 2)	;
}
.help img {
	height: 28px;
	padding-right: 0;
	margin: 0;
}
.latest {
	font-size: 10px;
	float: right;
}


.info {
	position: fixed;
	z-index: 1000;
	background: white;
}