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

body {
	background-color: #34495e;
	color: #f2f2f2;
	font-family: fira;
}

#search {
	position: relative;
	width: 250px;
	margin: 15px auto;
	text-align: center;
	visibility: hidden;
}

input[type="text"]  {
	width: 250px;
	background-color: #34495e;
	border: 1px solid #f2f2f2;
	padding: 0.2em;
	color: #f2f2f2;
}

.hitlist {
	position: absolute;
	width: 254px;
	background-color: #f2f2f2;
	border: 1px solid #34495e;
	text-align: left;
	z-index: 10;
}

.hits {
	padding: 0.3em 0.2em;
	cursor: pointer;
	color: #34495e
}

.hits:hover {
	background-color: #F7D425
}

.graphs  {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	/*border: 1px solid white;*/
}

.infos {
	width: 98%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: flex-start;
}

.info {
	width: 100%;
	font-size: 15px;
	}

.graph {
	width: 100%;
	min-height: 45vh;
	height: 45vh;
	position: relative;
}

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

svg text {
	fill: #f2f2f2;
	stroke: none;
}

.svg {
	position: absolute;
}

.canvas {
	position: absolute;
	pointer-events: none;
}

.marker {
	fill: #F7D425;
	stroke: #34495e;
	display: none;
	pointer-events: none;
}

.grid {
	stroke: #f2f2f2;
	stroke-opacity: 0.1;
	pointer-events: none;
}

.vgrid, .vmgrid, .hgrid, .mgrid, .mgridr {
	text-anchor: middle;
	font-size: 10px;
	pointer-events: none;
	stroke: none;
}

.vgrid.large, .vmgrid, .vmgrid.large {
	display: none;
}

.hgrid {
	text-anchor: end;
}

.mgrid  {
	text-anchor: end;
	display: none;
}

.mgridr {
	text-anchor: start;
	display: none;
}

.units {
	fill-opacity: 0;
	fill: #f2f2f2;
	stroke: #f2f2f2;
	cursor: default;
}

.paths {
	stroke: #F7D425;
	stroke-width: 2px;
	fill: none;
	pointer-events: none;
}

.hlt {
	fill: #F7D425;
}

.gemname {
	font-size: 16px;
	pointer-events: none;
	text-anchor: middle;
}

a:link, a:visited, a:hover, a:active  {
	color: #f2f2f2;
	text-style: italic;
}

.info {
	/*margin: 1% 0 2% 2%;*/
	margin: 2% 0;
	max-width: 800px;
	font-size: 15px;
	line-height: 1.5;
}

.vals {
	font-size: 15px;
	fill: #F7D425;
	stroke: none;
	text-anchor: middle;
	pointer-events: none;
}

.vals.bg {
	font-size: 15px;
	fill: none;
	stroke: #34495e;
	stroke-width: 2px;
	text-anchor: middle;
}

.oevpt {
	font-weight: bold;
	color: #dbdbdb;
}

.spoet {
	font-weight: bold;
	color: #de6635;
}

.fpoet {
	font-weight: bold;
	color: #04B2D9;
}

@media screen and (min-width: 1024px) {
	.graph {
		width: 49%;
	}
	
	.info {
		width: 45%;
	}
	
	.gemname {
		font-size: 20px;
	}
	
	.vgrid {
		display: none;
	}

	.vmgrid {
		display: block;
	}
}

@media screen and (min-width: 1300px) {
	.vmgrid.large, .mgrid, .mgridr {
		display: block;
	}
	
	.hgrid {
		display: none;
	}

	.gemname {
		font-size: 24px;
	}
	
	.units {
		cursor: pointer;
	}
}