/* element for Google Maps */
.map {
	width: 440px;  /* default size for desktop */
	height: 800px;
	background-color: beige;
	position: relative;
	/*display: none;*/
}



/* InfoBox: window with information about an activity on the map */
#infobox {
	position: fixed;
	top: 54px;
	right: 1%;
	overflow: auto;

	background-color: white;
	box-shadow: 0px 0px 10px 6px rgba(180, 180, 180, 0.6);
	padding: 0px 0px 1px 0px;
	/*height: 98%;*/
	width: 50%;
	z-index: 501;
}
#infobox .x {
	position: absolute;
	right: 10px; top: 10px;
	cursor: pointer;
}
#infobox h1 {
	font-size: 1em;
	font-weight: normal;
	background-color: #BAE7FB;
	width: 50%;
}
#infobox > h1, #infobox > p, #infobox > div, #infobox > button {
	padding: 1em 1em;
	margin: 1em;
	/*border: 1px dotted gray;*/
}

#infobox button {
	font-size: 1.1em;
	background-color: #2EC1FD;
	display: block;
	margin: 1em auto 1em auto;
}
#infobox button:hover {
	background-color: #2CB4EA;
}

/* Pie charts */
.pies {
	margin: auto;
}
.pies > div {
	display: block;
	flex-direction: row;
	text-align: center;
	/*margin-left: auto;
	margin-right: auto;*/
	/*display: block;*/
	/*background-color: beige;*/
}
.pies > div > div {
	display: inline-block;
	/*border: 1px solid lime;*/
	margin: 10px;
	text-align: center;
}

#infobox .pies > div > div {
	padding: 4px;
}
#infobox .pie {
	/*width: 64px; height: 64px;
	background-color: #ecc;*/
	display: inline;
	text-align: center;
}
@media (max-width: 1048px) {
	.map {
		width: 100%;
		height: 800px;
	}

}
@media (max-width: 982px) {

	#infobox {
		width: 98%;
	}
}

@media (max-width: 700px) {
	.map {
		/*width: 600px;*/
		height: 800px;
	}
}

/*button {
	color: #fff;
	background-color: #5cb85c;
	border-color: #4cae4c;
	border: 1px solid transparent;
	border-radius: 4px;
	padding: 6px 12px;
	line-height: 1.429;
	vertical-align: middle;
	touch-action: manipulation;
	user-select: none;
}
button:hover {
	background-color: #449d44;
	border-color: #398439;
}
button:disabled {
	background-color: #ACB7AC;
	cursor: not-allowed;
}
button:hover:disabled {
	background-color: #949E94;
	border-color: #7A8279;
}*/
