/* PROGRESSBAR FOR STEPS*/
.progressbar {
	counter-reset: step;
	padding: 0;
	margin-bottom: 75px;
}
.progressbar li{
	list-style-type: none;
	float: left;
	width: 33.33%;
	position:relative;
	text-align: center;
	font-weight: 600;
	color: #ffffff;
}
.progressbar li:before {
	/* CSS for creating steper block before the li item*/
	content:counter(step);
	counter-increment: step;
	height:30px;
	width:30px;
	line-height: 30px;
	display:block;
	text-align: center;
	margin: 0 auto 10px auto;
	border-radius: 50%;
	background-color: white;
	color: navy;
	position: inherit;
	z-index: 1;
}
.progressbar li:after {
	/* CSS for creating horizontal line*/
	content:"";
	position: absolute;
	width:100%;
	height:2px;
	background-color: #ffffff;
	top: 15px;
	left: -50%;
	z-index: 0;
}
.progressbar li:first-child:after {
	content:none;
}
.progressbar li.active {
	color:yellow;
}

.progressbar li.active:before {
	background:yellow !important;
	color: navy !important;
}

.progressbar li.active + li:after{
	background-color:yellow;
}


.progressbar.adminProgress li {
	font-size: 16px;
	width: 25%;
	color: #02b0a6;
}
.progressbar.adminProgress li:before {
	height: 40px;
	width: 40px;
	line-height: 40px;
}
.progressbar.adminProgress li:after {
	background-color: mediumaquamarine;
	top: 20px;
}

.progressbar.adminProgress li.active {
	color: darkslateblue !important;
}
.progressbar.adminProgress li.active:before {
	background: darkslateblue !important;
	color: white !important;
}
.progressbar.adminProgress li.active + li:after{
	background-color: darkslateblue;
}


.progressbar li.done {
	color:#1b1e84;
}
.progressbar li.done:before {
	background:#1b1e84 !important;
	color: #ffffff !important;
}
.progressbar li.done + li:after{
	background-color:#1b1e84;
}
