html,
body {
	height: 100dvh;
	margin: 0;
	padding: 0;
}

body {
	display: grid;
	grid-template-rows: 50px 1fr 80px;

	font-family: Arial, Helvetica, sans-serif;
	color: #333;
}

#header {
	background-color: #fafafa;
	border-bottom: #ccc solid 1px;
}

#map {
	background-color: #fff;
	height: 100%;
}

#footer {
	background-color: #fafafa;
	border-top: #ccc solid 1px;
	padding: 8px;

	/* display: grid;
	grid-template-columns: 100px 1fr 100px; */

	text-align: center;
}

#logo {
	background-image: url("../img/je-logo.svg");
	background-size: 100%;
	width: 160px;
	height: 30px;
	position: absolute;
	top: 14px;
	right: 14px;
	cursor: pointer;
}

#caption1 {
	width: 150px;
	/* height: 30px; */
	text-align: center;
	padding: 3px;

	position: absolute;
	top: 12px;
	left: 12px;
	/* transform: translate(-50%, -50%); */
	z-index: 10;

	background-color: #ffffffcc;
	border-radius: 5px;
	/* font-weight: bold; */
}

/* #caption1 select{
	font-weight: bold;
} */

#caption2 {
	width: 150px;
	/* height: 30px; */
	text-align: center;
	padding: 3px;

	position: absolute;
	top: 12px;
	right: 12px;
	/* transform: translate(50%, -50%); */
	z-index: 10;

	background-color: #ffffffcc;
	border-radius: 5px;
	/* font-weight: bold; */
}

/* #caption2 select{
	font-weight: bold;
} */

#mode {
	position: absolute;
	bottom: 45px;
	left: 10px;
}

#colormap {
	position: absolute;
	bottom: 40px;
	right: 10px;
	width: 200px;
	height: 30px;

	background-color: #00000000;
}

#credit {
	position: absolute;
	bottom: 15px;
	left: 0px;
	right: 0px;
	text-align: center;

	font-size: 0.5em;
	margin: 0;
}

.basemap {
	filter: grayScale(1);
}

select {
	font-size: 1.2em;
	border: none;
	background-color: #00000000;
	cursor: pointer;
}

@media (max-width:500px) {

	#mode {
		left: 10px;
		right: 10px;
		text-align: center;
	}

	#colormap {
		position: absolute;
		bottom: 90px;
		right: 10px;
		z-index: 10;

		background-color: #fff;
		padding: 5px;
		border-radius: 5px;
	}

	#logo {
		background-image: url("../img/je-logo.png");
		width: 30px;
		top: 10px;
		right: 10px;
	}
}

@media (max-height:500px) {
	body {
		display: grid;
		grid-template-rows: 0px 1fr 50px;
	}

	#credit {
		display: none;
	}

	#mode {
		bottom: 15px;
	}

	#colormap {
		bottom: 10px;
	}

}

.popup {
	padding: 5px;
	border-radius: 5px;
	font-size: 10px;
	background-color: rgba(255, 255, 255, 0.8);
}

.popup .close {
	cursor: pointer;
	border-radius: 10px;
	background-color: #555;
	width: 11px;
	height: 11px;
	position: absolute;
	top: -8px;
	left: -8px;
	border-color: #fff;
	border-width: 2px;
	border-style: solid;
	background-size: cover;
	/* background-image: url("../img/close_FILL0_wght700_GRAD200_opsz40.svg"); */
}