#testWrapper {
	text-align: center;
}

#startStopBtn {
	display: inline-block;
	margin: 0 auto;
	padding: auto;
	color: #6060AA;
	background-color: rgba(0, 0, 0, 0);
	border: 0.15em solid #007377;
	border-radius: 0.5em;
	transition: all 0.4s;
	box-sizing: border-box;
	width: 9em;
	height: 3em;
	line-height: 2.8em;
	/* Kombination aus height & line-height bewirkt vertikale Zentrierung. */
	cursor: pointer;
	box-shadow: 0 0 0 rgba(0, 0, 0, 0.1), inset 0 0 0 rgba(0, 0, 0, 0.1);
	text-align: center;
}

#startStopBtn:hover {
	box-shadow: 0 0 2em rgba(0, 0, 0, 0.1), inset 0 0 1em rgba(0, 0, 0, 0.1);
}

#startStopBtn.running {
	background-color: #FF3030;
	border-color: #FF6060;
	color: #FFFFFF;
}

#startStopBtn:before {
	content: "Start ⏩";
}

#startStopBtn.running:before {
	content: "Abbrechen ⏸️";
}

#test {
	/*margin-top:2em;
	margin-bottom:12em;*/
	margin-top: 0.5em;
}

#test div.testArea:nth-child(2) {
	/* Platz zum oberen Download-Tacho einsparen; kein überlebenswichtiges Attribut! */
	margin-top: -1em;
}

div.testArea {
	/* Gruppe mit Down- und Upload-Tachometern */
	display: inline-block;
	width: 100%;
	height: 12.5em;
	position: relative;
	box-sizing: border-box;
	/* Platz sparen; kein überlebenswichtiges Attribut! */
	margin-top: -0.25em;
}

div.testArea2 {
	/* Jeweils Ping und Jitter Gruppe, daher 2 * 49% Breite! */
	display: inline-block;
	width: 49%;
	position: relative;
	box-sizing: border-box;
	text-align: center;
}

div.testArea div.testName {
	position: absolute;
	top: 0.3em;
	left: 0;
	width: 100%;
	font-size: 1.4em;
	z-index: 9;
}

div.testArea2 div.testName {
	display: block;
	text-align: center;
	font-size: 1.4em;
}

div.testArea div.meterText {
	position: absolute;
	bottom: 1.55em;
	left: 0;
	width: 100%;
	font-size: 2.5em;
	z-index: 9;
}

div.testArea2 div.meterText {
	display: inline-block;
	font-size: 2.5em;
}

div.meterText:empty:before {
	content: "---";
}

div.testArea div.unit {
	position: absolute;
	bottom: 2em;
	left: 0;
	width: 100%;
	z-index: 9;
}

div.testArea2 div.unit {
	display: inline-block;
}

div.testArea canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	/* Von mir hinzugefügt. Das Herumfummeln mit width und height verstümmelt die
	Canvas-Tachometer. Idee: So lassen, wie es ist und einfach nachträglich
	skalieren. Zum Glück hat CSS da was. */
	transform: scale(0.86);
}

div.testGroup {
	display: block;
	margin: 0 auto;
}

#shareArea {
	width: 95%;
	max-width: 40em;
	margin: 0 auto;
	margin-top: 2em;
}

#shareArea>* {
	display: block;
	width: 100%;
	height: auto;
	margin: 0.25em 0;
}

