#progressbar {
	margin-bottom: 0px;
	overflow: hidden;
	counter-reset: step;
	flex: 1;
	z-index: 0;
	display: flex;
	flex-direction: row;
	padding-left: 0px;
}


#progressbar .container {
	display: flex;
	flex-direction: column;
	flex: 1 1 25%;
	padding: 0px;
}


#progressbar .img-container {
	align-self:center;
	margin-bottom: 12px;
}


#progressbar .img-container i {
	font-size:16px;
	color:var(--default-white);
}


#progressbar .img-container i.active {
	font-size:16px;
	color: #27AE60;
}


#progressbar li {
	list-style-type: none;
	text-transform: uppercase;
	font-family: 'Montserrat';
	font-size: 15px;
	font-weight: 600;
	color: var(--default-white);
	width: 100%;
	float: left;
	position: relative;
	text-align:center;
	display: flex;
	flex-direction: column;
}


#progressbar li.active {
	color: white;
}

#progressbar li.active span {
	color: white;
}


#progressbar li span {
	font-family: 'Montserrat';
	font-size: 12px;
	font-weight: 600;
	color: var(--default-white);
}


#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 35px;
	height: 35px;
	line-height: 35px;
	display: block;
	font-family: 'Montserrat';
	font-size: 15px;
	font-weight: 600;
	color: #333;
	background: var(--default-white);
	border-radius: 3px;
	margin: 0 auto 15px auto;
}


#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 16px;
	z-index: -1; /*put it behind the numbers*/
}


#progressbar .first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}


#progressbar li.active:before {
	background: #27AE60;
	color: #333;
}


#progressbar li.active:after {
	background: #27AE60;
	color: white;
}
