#container #interface {
	position: absolute;
	left: 0;
	right: 5px;
	bottom: 50px;
	
	height: 120px;
	
	border-radius: 18px;
}

#container #interface .box {
	float: left;
	width: 33.33%;
	height: 100%;
	padding-left: 5px;
	box-sizing: border-box;
}

#container #interface .box .content {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	
	border-radius: 18px;
	
	background-color: rgba(0, 0, 0, 0.3);
	
	text-decoration: none;
	color: inherit;
	text-align: center;
}


#container #interface .box .content .title {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 40px;
	line-height: 40px;
	
	font-weight: 500;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.5);
}

#container #interface .box .content .value {
	position: absolute;
	top: 40px;
	left: 0;
	right: 0;
	bottom: 0;
	
	font-family: 'ShareTech';
}

#container #interface .box .content .value .value_b span {
	font-size: 30%;
}


#container #status {
	position: absolute;
	bottom: 5px;
	left: 5px;
	right: 5px;
	
	
	height: 40px;
	line-height: 40px;
	
	border-radius: 18px;
	
	background-color: rgba(0, 0, 0, 0.3);
	font-weight: 300;
	font-size: 20px;
	text-align: center;
}



#trainLength input {
	max-width: none;
}


@media only screen and (min-width: 900px) {
	
	#container #interface {
		left: 50%;
	}
	
}