body {
	font-family: 'Arial', sans-serif;
	margin: 0;
	max-width: 100%;
	background-color: #e5ecf8;
	color: #404469;
}

* {
	box-sizing: border-box;
}

.hide {
	display: none;
}

.main {
	margin: 0 auto;
	margin-top: calc((100vh/2) - 350px);
	width: 500px;
	height: 700px;
}

.header {
	position: relative;
}
.logo {
	width: 208px;
	height: 60px;
	padding: 0;
	background-image: url('/images/coachingmonitor-logo.png');
	margin: 0 auto;
}
ul.languages {
	list-style: none;
	margin: 0;
	padding: 0;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
}
ul.languages li {
	display: inline-block;
	width: 30px;
	height: 20px;
}
ul.languages li a {
	display: block;
	width: 30px;
	height: 20px;
	text-decoration: none;
}
ul.languages li a.language-nl { background-image: url('images/flag-nl.png'); }
ul.languages li a.language-en { background-image: url('images/flag-en.png'); }
ul.languages li a.language-nl.active { background-image: url('images/flag-nl-hi.png'); }
ul.languages li a.language-en.active { background-image: url('images/flag-en-hi.png'); }

.title {
	text-align: center;
	min-height: 50px;
	font-size: 1.2rem;
	margin-top: 20px;
}

.status {
	width: 250px;
	height: 250px;
	border-radius: 50%;
	text-align: center;
	color: #404469;
	padding-top: 110px;
	font-size: 1.2rem;
	font-weight: bold;

	margin: 0 125px;

	/* https://www.cssmatic.com/box-shadow */
	-webkit-box-shadow: 0px 0px 12px -1px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 12px -1px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 12px -1px rgba(0,0,0,0.75);
}
.status.status-button {
	background-color: #b3cee1;
	cursor: pointer;
}
.status.status-busy {
	background-color: #ccc;
}
.status.status-ok {
	background-color: #00af00;
	color: #fff;
	padding-top: 90px;
}
.status.status-error {
	background-color: #f9dd34;
	padding-top: 90px;
}
.status .status-message { display: none; }
.status.status-button .status-message.status-button { display: block; }
.status.status-busy .status-message.status-busy { display: block; }
.status.status-ok .status-message.status-ok { display: block; }
.status.status-error .status-message.status-error { display: block; }

.status-detail {
	margin-top: 40px;
	text-align: justify;
}

.footer {
	margin-top: 50px;
	text-align: center;
}
a {
	color: #333;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0,0,0,0);
	border: 0;
}
.huge-indicator {
	font-size: 3.5rem;
}

@media only screen and (max-width: 500px) {
	.main {
		width: 300px;
		height: 400px;
		margin-top: calc((100vh/2) - 200px);
	}
	.status {
		width: 300px;
		height: 300px;
		padding-top: 130px;
		font-size: 2rem;
	}
}

