html, body {
	margin: 0;
	padding: 0;
	font-family: sans;
}

#map {
	position: absolute;
	top: 50px;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: -1;
}

header {
	height: 50px;
	display: flex;
	background-color: #fafafa;
	box-shadow: #3e3e3e 0 0 10px;
	align-items: center;
	justify-content: space-between;
	padding: 0 10px;
}

header h1 {
	font-size: 1.3rem;
	color: #212529;
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}

header h1 small {
	font-size: 0.9rem;
	color: #888;
}

button {
	border: 1px solid #6c757d;
	background: none;
	border-radius: 5px;
	height: 30px;
	min-width: 30px;
	cursor: pointer;
	color: #6c757d;
	text-align: center;
	vertical-align: middle;
	font-weight: 400;
	font-size: 1rem;
}

button:hover,
button.selected {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
	text-decoration: none;
}

.btn-group {
	display: flex;
}

.btn-group button {
	margin: 0;
	border-radius: 0px;
	border-right: none;
	overflow: hidden;
}

.btn-group button:first-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.btn-group button:last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-right: 1px solid #6c757d;
}

.leaflet-sidebar a.close {
	display: none;
}

ul {
	padding: 0 1rem;
}

.legend-symbol {
	margin-bottom: 5px;
	font-size: 0.9em;
}

.legend-symbol span.legend-symbol-square {
	height: 15px;
	width: 20px;
	display: inline-block;
	border: 3px solid;
	vertical-align: middle;
	margin-right: 5px;
}

.legend-symbol span.legend-symbol-circle {
	border: none;
	border-radius: 500px;
	vertical-align: middle;
	display: inline-block;
}


@media (max-width: 576px) {
	.hide-sm {
		display: none;
	}
}

@media (min-width: 576px) {
	.show-sm {
		display: none;
	}
}
