body {
	margin: 0;
	padding: 0;
	height: 100%;
	overflow: auto;
}

#viewport {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.container {
	position: absolute;
	top: 0;
	left: 0;
}

.x-axis-container {
	top: 450px;
	left: 50px;
}

.draw-container {
	top: 6px;
	left: 50px;
}

.logo {
	margin-top: 50px;
	padding-left: 50px;
}

.kopf {
	height: 40px;
	display: flex;
	justify-content: center;
}

.zeichnen-toolbar {
	height: 40px;
	display: flex;
	background-color: #F5F5F5;
	border-radius: 3px;
}

.info {
	float: left;
	height: 40px;
	margin: 20px 0 0 50px;
	display: flex;
	color: #9B9B9B;
	align-items: center;
	font-family: "Courier New", Courier, monospace;
	font-size: 12px;
}

.toolbar {
	float: right;
	height: 40px;
	margin: 20px 50px 0 0;
	display: flex;
	background-color: #F5F5F5;
	border-radius: 3px;
}

.aktion {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9B9B9B;
	font-size: 19px;
	border-radius: 3px;
	cursor: pointer;
}

.aktion:hover {
	background-color: #e6e6e6;
}

.aktion.aktiv {
	color: #ffffff;
	background-color: #002D5F;
}

.aktion.aktiv:hover {
	background-color: #002D5F;
}