.progressbar-container {
	margin-top: 40px;
}
.progressbar {
	counter-reset: step;
	padding-left: 0 !important;
}
.progressbar li{
	list-style-type: none;
	float: left;
	width: 25%;
	position:relative;
	text-align: center;
	font-size: 14px;
}
.progressbar li:before {
	content: counter(step);
	counter-increment: step;
	height: 30px;
	width: 30px;
	line-height: 30px;
	border: 2px solid #ddd;
	display: block;
	text-align: center;
	margin: 0 auto 10px auto;
	border-radius: 50%;
	background-color: white;
}
.progressbar li:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #ddd;
	top: 15px;
	left: -50%;
	z-index: -1;
}
.progressbar li:first-child:after {
	content:none;
}
.progressbar li.active {
	color:#0d6efd;
}
.progressbar li.active:before {
	border-color:#0d6efd;
}
.progressbar li.active + li:after{
	background-color:#0d6efd;
}

.cart-icons {
	background: none;
	color: inherit !important;
	font-size: 25px;
}
