body{
	font-family: 'Roboto', arial, sans-serif;
	background-color: #b6c8d8;
	padding: 0;
	margin: 0;
}
div{
	box-sizing: border-box;
}
div#upper{
	height: 50vh;
	padding: 3vmin 0;
}
div#lower{
	height:  50vh;
}

div#top_buttons{
	margin: 0 3vmin;
	display:flex;
	flex-flow:row wrap;
	justify-content:space-around;
}

div#top_buttons button{
	width: 40vw;
	height: 10vw;
	max-width: 200px;
	max-height: 50px;
	padding: 1%;
	border: 1px solid #456685;
	border-radius: 12px;
	font-weight: bold;
	font-size: 11px;
	letter-spacing: 0;
	text-transform:  none;
	color: #456685;
	background: #fff;
	cursor: pointer;
}
div#top_buttons button .clock_icon{
	float: left;
	width: 20%;
	height: 100%;
	font-size: 25px;
	letter-spacing: 0;
}
div#top_buttons button .button_label{
	float: left;
	width: 80%;
	height: 100%;
	padding-top: 5%;
}

div#top_buttons button.on{
	color: #fff;
	background: #456685;
}


#clock_stage{
	height: 32vh;
	width: 32vh;
	margin: 4vh auto 12vh;
}
#stage{
	height: 100%;
	width: 100%;
	border-radius: 50%;
	background-color:#fff;
	border: 2px solid #3a5975;
	position: relative;
}


.numbers{
	font-size: 20px;
	position: absolute;
	color: #333;
}
#twelve{
	left: 47%;
	top: 1%;
}
#three{
	left: 94%;
	top: 46%;
}
#six{
	left: 49%;
	top: 91%;
}
#nine{
	left: 3%;
	top: 46%;
}

#one{
	left: 71%;
	top: 7%;
}
#two{
	left: 87%;
	top: 24%;
}
#four{
	left: 87%;
	top: 68%;
}
#five{
	left: 71%;
	top: 84%;
}

#seven{
	left: 25%;
	top: 84%;
}
#eight{
	left: 10%;
	top: 68%;
}
#ten{
	left: 9%;
	top: 24%;
}
#eleven{
	left: 25%;
	top: 7%;
}

#standard_clock{
	width: 100%;
	height: 100%;
	position: relative;
}

#radian_clock{
	width: 100%;
	height: 100%;
	position: relative;
}

.minute, .hour, .second{
	position: absolute;
	bottom: 50%;
	left: 50%;
	z-index: 200;
}

.minute{
	background: #998;
	width: 0.6vmin;
	border-radius: 0.5vmin;
	height: 37%;
	transform: rotate(300deg);
	transform-origin: bottom;
}
.hour{
	background: #998;
	width: 0.7vmin;
	border-radius: 0.5vmin;
	height: 30%;
	transform: rotate(30deg);
	transform-origin: bottom;
}
.second{
	background: #998;
	width: 0.2vmin;
	border-radius: 0.5vmin;
	height: 45%;
	transform: rotate(90deg);
	transform-origin: bottom;
}

#standard_clock .minute{
	background: #998;
}

#standard_clock .hour{
	background: #998;
}
#standard_clock .second{
	background: #998;
}


#radian_clock .minute{
	background: #3a5975;
}

#radian_clock .hour{
	background: #3a5975;
}

#radian_clock .second{
	background: #3a5975;
}



#digital{
	position: absolute;
	top: 45vh;
	width: 100%;
	margin: auto;
	z-index: 200;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 18px;
}
#digital div{
	display: inline-block;
	margin: auto;
	text-align: center;
	width: 100%;
}

#tabs{
	height: 30px;
	width: 96%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
	border-bottom: 1px solid #999;
}
#tabs div{
	cursor: pointer;
	height: 100%;
	background: #fff;
	border: #456685;
	border-radius: 8px 8px 0 0;
	width: 30%;
	text-align: center;
	padding: 6px 0;
	color: #456685;
}

#tabs div.on{
	color: #fff;
	background: #456685;
}

.infoscreen{
	width: 100vw;
	height: calc(50vh - 30px);
	background: #fff;
	overflow-y: auto;
}

#map{
	background: #fff;
}
#info{
	background: #fff;
	padding: 30px;
	line-height: 1.5em;
}
#settings{
	background: #fff;
	padding:  30px;
}

#info .info_item{

}
.info_item .info_label{
	font-size: 0.8em;
	color: #456685;
	font-weight: bold;
}
.info_item .info_value{
	font-size:  0.9em;
	color: #666;
}
.setting{
	width: 100%;
	height: 40px;

}
.setting .setting_label{
	width: 40%;
	float: left;
}
.setting .setting_switch{
	width: 60%;
	float: right;
	text-align: right;
}