
.steps {
	display: inline-block;
	position: relative;

	z-index: 1;
	margin: 0 auto;
}

.steps:after {
	content: '';
	clear: both;
	display: table;
}

.steps li:before {
	content: '';
	display: block;
	position: absolute;
	height: 16px;
	width: 16px;
	top: 12px;
	left: 45px;
	border-radius: 5px;
	z-index: 1;
	background-image: url("../img/arrow-narrow-right.svg");
	background-size: 16px auto;
	background-repeat: no-repeat;
	opacity: 0.4;
}

.steps li:last-of-type:before {
	display: none;
}

.steps li {
	margin: 0;
	padding: 0;
	height: 40px;
	width: 40px;
	border-radius: 20px;
	text-align: center;
	line-height: 40px;
	list-style-type: none;
	float: left;
	margin-right: 30px;
	position: relative;
	z-index: 5;
	font-family: Arial, Helvetica, sans-serif;
	cursor: pointer;
	background-color: #EEEEEE;
}

.steps li:hover {
	opacity: 0.8;
}

.steps li.is-current {
	font-weight: bolder;
	background-color: #3475B4;
	color: #FFFFFF;
}

.steps li.is-solved {
	color: #FFFFFF;
	font-weight: bold;
}

.steps li:last-of-type {
	margin-right: 0;
}

.steps .step {
	background-color: #FFFFFF;
	border-radius: 5px;
	padding: 20px;
	text-align: center;
}

/* Inhaltcontainer
-------------------*/

	.steps-content {
		padding:20px;
		border-radius: 5px;
		margin-top: 20px;
		background-color: #f2f2f2;
	}

	.steps-content > div {
		display: none;
	}