.progress-container {
	background-color: #fce4c8;
    height: 100px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.progress-container .bar {
	margin-top: 0px;
	position: relative;
}

.progress-container .line {
	position: absolute;
	height: 2px;
	background: #333;
	margin-top: 35px;
}
.progress-box {
	text-align: center;
	position: absolute;
	top: 17px;
}
.progress-box .number {
	border-radius: 100%;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: #fff;
	margin: 0 auto;
	display: block;
	border: 2px solid #333;
	color: #333;
	font-weight: bold;
	margin-bottom: 5px;
}
.progress-box .name {
	font-size: 75%;
}
.progress-box.active .number {
	border: 2px solid #F49325;
	background: #F49325;
	color: #fff;
}

.progress-box.completed .number {
	border: 2px solid #ea5d0a;
	background: #ea5d0a;
	color: #fff;
}