h1 {
	color:#ffffff;
}

#loading{
	color:#ffffff;
	text-align:center;
}

span.loadCircle{
	display:inline-block;
	width:2em;
	height:2em;
	vertical-align:middle;
	background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAAAP1BMVEUAAAB2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZyFzwnAAAAFHRSTlMAEvRFvX406baecwbf0casimhSHyiwmqgAAADpSURBVHja7dbJbQMxAENRahnN5lkc//5rDRAkDeRgHszXgACJoKiIiIiIiIiIiIiIiIiIiIj4HHspsrpAVhdVVguzrA4OWc10WcEqpwKbnBo0OU1Q5NSpsoJFTgOecrrdEag85DRgktNqfoEdTjnd7hrEHMEJvmRUYJbTYk5Agy6nau6Abp5Cm7mDBtRdPi9gyKdU7w4p1fsLvyqs8hl4z9/w3n/Hmr9WoQ65lAU4d7lMYOz//QboRR5jBZibLMZdAR6O/Vfa1PlxNr3XdS3HzK/HVPRu/KnLs8iAOh993VpRRERERMT/fAN60wwWaVyWwAAAAABJRU5ErkJggg==');
	background-size:2em 2em;
	margin-right:0.5em;
	animation: spin 0.6s linear infinite;
}

@keyframes spin{
	0% {
		transform:rotate(0deg);
	}
	100% {
		transform:rotate(359deg);
	}
}

/*
#startStopBtn{
	display:inline-block;
	margin:0 auto;
	color:#6060AA;
	background-color:rgba(0,0,0,0);
	border:0.15em solid #6060FF;
	border-radius:0.3em;
	transition:all 0.3s;
	box-sizing:border-box;
	width:8em; height:3em;
	line-height:2.7em;
	cursor:pointer;
	box-shadow: 0 0 0 rgba(0,0,0,0.1), inset 0 0 0 rgba(0,0,0,0.1);
}

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

#serverArea{
	margin-top:1em;
}

#server{
	font-size:1em;
	padding:0.2em;
}

#test{
	margin-top:2em;
}

div.testArea{
	display:inline-block;
	width:16em;
	height:12.5em;
	position:relative;
	box-sizing:border-box;
}

div.testArea2{
	display:inline-block;
	width:14em;
	height:7em;
	position:relative;
	box-sizing:border-box;
	text-align:center;
}

div.testArea div.testName{
	position:absolute;
	top:0.1em;
	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:"0.00";
}

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;
}

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;
}

#privacyPolicy {
	position:fixed;
	top:2em;
	bottom:2em;
	left:2em;
	right:2em;
	overflow-y:auto;
	width:auto;
	height:auto;
	box-shadow:0 0 3em 1em #000000;
	z-index:999999;
	text-align:left;
	background-color:#FFFFFF;
	padding:1em;
}

a.privacy {
	text-align:center;
	font-size:0.8em;
	color:#808080;
	padding: 0 3em;
}

div.closePrivacyPolicy {
	width: 100%;
	text-align: center;
}

div.closePrivacyPolicy a.privacy {
	padding: 1em 3em;
}

@media all and (max-width:40em) {
	body {
		font-size:0.8em;
	}
}

div.visible {
	animation: fadeIn 0.4s;
	display:block;
}

div.hidden {
	animation: fadeOut 0.4s;
	display:none;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeOut {
	0% {
		display: block;
		opacity: 1;
	}
	100% {
		display: block;
		opacity: 0;
	}
}

.btn, #startStopBtn {
    background: #abe4f8;
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#abe4f8), to(#74d0f4));
    background: -moz-linear-gradient(#abe4f8, #74d0f4);
    background: linear-gradient(#abe4f8, #74d0f4);
    border: solid 1px #88b6c6;
    box-shadow: inset 0 0 0 1px #cdeffb;
    color: #42788e;
    text-shadow: 0 1px 0 #b6e6f9;


    -moz-box-shadow: inset 0 0 0 1px #88b6c6;
    -webkit-box-shadow: inset 0 0 0 1px #88b6c6;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px #88b6c6;
    display: inline-block;
    font: bold 12px Arial, Helvetica, Clean, sans-serif;
    margin: 0 25px 25px 0;
    padding: 10px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
}
    
.btn:hover {
    background: #80d4f5;
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#80d4f5), to(#92dbf6));
    background: -moz-linear-gradient(#80d4f5, #92dbf6);
    background: linear-gradient(#80d4f5, #92dbf6);
    border: solid 1px #79acbe;
    box-shadow: inset 0 0 0 1px #b2e6f8;
	cursor: pointer;
}

#startStopBtn.running{
    background: #991c1c !important;
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#991c1c), to(#ff5959)) !important;
    background: -moz-linear-gradient(#991c1c, #ff5959) !important;
    background: linear-gradient(#991c1c, #ff5959) !important;
    border: solid 1px #5c8d9f !important;
	cursor: pointer;
	color: #FFFFFF;
}

#startStopBtn:before{
	content:"Test starten";
}

#startStopBtn.running:before{
	content:"Test abbrechen";
}



#progressBar{
	width:90%;
	height:0.3em;
	background-color:#EEEEEE;
	position:relative;
	display:block;
	margin:0 auto;
	margin-bottom:2em;
}

#progress{
	position:absolute;
	top:0;
	left:0;
	height:100%;
	width:0%;
	transition: width 2s;
	background-color:#90BBFF;
}