
/* ----------------------------------------------------- CSS Progress Bars -------------------------------------------------------- */
.cssProgress {
	width: 100%;
	margin-bottom: 32px;
}
.cssProgress .progress-line {
	position: relative;
	overflow: hidden;
	width: 100%;
	font-family: 'Poppins', sans-serif;
  	background-color: #e4e7eb;	 
}
.cssProgress .cssProgress-bar {
	display: block;
	float: left;
	width: 0%;
	height: 100%;
	background: #000;
	transition: width 0.8s ease-in-out;
}
/* ----------------------------------------------------- Progress Bar Line -------------------------------------------------------- */
.progress-line .cssProgress-bar {
	height: 16px;
}
.cssProgress-label {
	font-size: 14px;
	color: #292d32;
	width: 39px;
}