content{
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
}

.elevator_wrap{
	display: flex;
}

.elevator_shaft{
	width: 50px;
	background: red;
	height: 0px;
	position: relative;
	overflow: hidden;
}

.elevator{
	background: black;
	width: 50px;
	height: 50px;
	position: absolute;
	left: 0;
	bottom: 0;
}

.elevator_buttons_wrap{
	margin: 0 0 0 10px;
	overflow: hidden;
}

.elevator_button{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background: #8c8c8c;
	margin: 20px 0 0 0;
	cursor: pointer;
	border-radius: 3px;
	color: white;
	user-select: none;
}

.elevator_button[active="1"]{
	background: red;
}

.elevator_states{
	margin: 20px 0 0 10px;
}

.elevator_state{
/*	display: flex;
	align-items: center;
	height: 25px;*/
}

.elevator_state_name{
	width: 170px;
}

.elevator_state_value{
	width: 170px;
	text-align: right;
	background: #d3d3d3;
	padding: 0 5px;
}

.elevator_state_value[type="height"]::after{
	content: '\a0mm';
}

.elevator_state_value[type="speed"]::after{
	content: '\a0mm/s';
}

input{
	font-size: 16px;
	text-align: right;
	width: 100%;
}

.elevator_zoom{
	display: flex;
}

.elevator_floor{
	text-align: center;
	font-size: 125px;
}