@charset "UTF-8";

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

body {
	font-size: inherit;
	height: 100%;
}

.body-content {
	padding: 0 1em;
}

.pad {
	margin-bottom: 2em;
	position: relative;
}

.pad.setting {
	padding: 60px 20px 40px;
}

.btns {
	top: 10px;
	right: 10px;
	position: absolute;
}

header.small {
	height: 100px;
	margin-bottom: 0;
	background-image: url('../images/logo_adp.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	text-align: center;
}

header a {
	color: #ffffff;
	text-decoration: underline;
	font-size: .8em;
}

ul {
	margin: 0;
	padding: 0;
}

li {
	display: block;
	list-style-image: none;
	background-color: #111C4E;
	color: #fff;
	margin: 5%;
	border: 0;
	padding: 1em;
	text-align: center;
	font-size: 2em;
}

li.active, li.active a {
	color: #ffffff;
}

li a {
	color: #fff;
	text-decoration: none;
	padding: .5em 1em;
	display: block;
	width: 100%;
	height: 100%;
}

li.text {
	background-color: transparent;
}

li.text a {
	color: #000;
}

h4 {
	margin: 2em 0 .5em 0;
}

.statistic {
	position: relative;
	text-align: center;
	display: inline-block;
	border-radius: 4px;
	border: 1px solid #00874E;
	background-color: #fff;
	margin: 0 1% 10px 0;
	min-width: 110px;
}

.statistic.spacer {
	margin-right: 30px;
}

.stat {
	line-height: 1;
	font-size: 1.5em;
	font-weight: 700;
	padding: .75em;
	color: #00874E;
}

.stat.pad {
	padding: 1.5em .75em .5em .75em;
}

.stat-label {
	position: relative;
	background-color: #00874E;
	border: 1px solid #00874E;
	padding: 0.75em 1em 0.5em;
	text-align: center;
	color: #ffffff;
}


.toggle-wrapper {
	display: inline-block;
	width: 80px;
	height: 40px;
	background: #CCE7DC;
	border-radius: 50px;
	border: 0;
	padding: 5px 5px;
	cursor: pointer;
	vertical-align: middle;
}

.toggle-wrapper > * {
	cursor: pointer;
}

.toggle-wrapper .toggle-handler {
	background: #00874E;
	width: 30px;
	height: 30px;
	display: block;
	border-radius: 30px;
	position: relative;
	z-index: 2;
	transition: all 100ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.toggle-handler.complete {
	background-image: url('../images/check.png');
	background-size: 50%;
	background-position: center center;
	background-repeat: no-repeat;
}

.toggle-wrapper input {
	position: absolute;
	left: -999em;
}

.toggle-wrapper input:checked + .toggle .toggle-handler {
	transform: translateX(40px);
}

#login {
	margin: 10% auto;
	width: 60%;
	font-size: 20px;
}

input {
	padding: 0.5em;
	margin-bottom: 1em;
	width: 100%;
	font-size: 1.5em;
	text-transform: lowercase;
}

.error {
	float: right;
	margin-top: 13px;
}

@media only screen and (max-width: 500px) {

	.pad {
		padding: 10px 20px;
	}
	
	.pad.setting {
		padding: 20px 20px 10px;
	}

	
}

@media only screen and (min-width: 950px) {

	input {
		padding: 0.5em;
		font-size: 1.5em;
	}
	
	body {
		font-size: 40px;
	}
	
}