@font-face {
font-family: "fira";
src: url("../fonts/firasans.woff") format("woff"),
	url("../fonts/firasans.woff2") format("woff2");
}

body {
	background-color: #36393c;
	color: #f2f2f2;
	font-family: fira;
}

a:link, a:visited, a:hover, a:active {
	color: #f2f2f2;
	text-decoration: none;
}

#container {
	width: 100%;
	min-width: 350px;
	max-width: 800px;
	margin: 0 auto;
	font-size: 12px;
	line-height: 1.7;
}

.menu {
	text-align: center;
}

.graph {
	width: 100%;
}

.graph.top {
	height: 150px;
	margin-top: 25px;
	margin-bottom: -25px;
}

.graph.bottom {
	min-height: 350px;
	max-height: 550px;
	height: 75vh;
	height: calc(90vh - 150px);
}

svg {
	width: 100%;
	height: 100%;
}

svg text {
	fill: #f2f2f2;
}

.intext {
	display: inline-block;
	width: 20px;
	height: 10px;
	margin-left: 3px;
	margin-right: 3px;
}

.button {
	display: inline;
	cursor: pointer;
	padding: 2px;
}

.button:hover {
	color: #36393c;
	background-color: #f2f2f2;
}

.ridge {
	stroke-width; 2px;
	stroke: #f2f2f2;
	fill-opacity: 1;
	stroke-opacity: 1;
}

.bezridge {
	stroke-width; 2px;
	stroke: #f2f2f2;
	stroke-dasharray: 2, 2;
	fill: none;
}

.hit {
	display: none;
}

.labels {
	pointer-events: none;
}

.labels.bezirke {
	font-size: 11px;
	text-anchor: start;
	display: none;
	pointer-events: all;
	cursor: pointer;
}

.labels.bezirke.small {
	font-size: 11px;
	display: block;
	text-anchor: middle;
}

.labels.jahr {
	text-anchor: middle;
}

.labels.rings {
	font-size: 10px;
	text-anchor: start;
	fill: #8a8a8a;
}

.labels.around {
	font-size: 10px;
	text-anchor: middle;
	fill: #8a8a8a;
}

.median.val {
	font-size: 11px;
	text-anchor: end;
}

.grid {
	stroke-dasharray: 1, 3;
	stroke: #c0c0c0;
}

.grid.hl {
	stroke: #f2f2f2;
}

.grid.rings {
	stroke: #c0c0c0;
	fill: none;
}

.guides {
	stroke: #8a8a8a;
	stroke-opacity: 0.2;
}

.guides.temp {
	stroke-opacity: 1;
	stroke-dasharray: 1, 3;
}

.arrowhead {
	fill: #f2f2f2;
}

.arrow {
	stroke: #f2f2f2;
	stroke-width: 1.5px;
	fill: none;
	display: none;
}

.arrowtext {
	font-size: 12px;
	font-weight: bold;
	text-anchor: middle;
	stroke: none;
	fill: #f2f2f2;
	display: none;
}

.arrowtextbg {
	font-size: 12px;
	font-weight: bold;
	text-anchor: middle;
	fill: none;
	stroke: #36393c;
	stroke-width: 3px;
	display: none;
}

.dot {
	fill: #dda032;
	stroke: #36393c;
	display: none;
}

.flowers {
	fill: none;
	stroke-opacity: 1;
}

.footer {
	font-size: 10px;
}

.text {
	width: 80%;
	max-width: 520px;
	margin: 25px auto;
	font-size: 15px;
	line-height: 1.7;
}

.results {
	font-size: 12px;
	font-weight: bold;
	text-anchor: middle;
	stroke: none;
	fill: #f2f2f2;
}

.resultsbg {
	font-size: 12px;
	font-weight: bold;
	text-anchor: middle;
	fill: none;
	stroke: #36393c;
	stroke-width: 3px;
}


@media screen and (min-height: 500px) {
	.graph.top {
		height: 200px;
	}
	
	.graph.bottom {
		height: 75vh;
		height: calc(90vh - 200px);
	}
}

@media screen and (min-height: 700px) {
	.graph.top {
		height: 300px;
	}
	
	.graph.bottom {
		height: 75vh;
		height: calc(90vh - 300px);
	}
}

@media screen and (min-width: 600px) {
	.labels.bezirke {
		display: block;
	}
	
	.labels.bezirke.small {
		display: none;
	}
	
	.median.val {
		font-size: 15px;
		text-anchor: end;
	}
}