//** Background color of the whole progress component
@progress-bg:				 #f5f5f5;
//** Progress bar text color
@progress-bar-color:		  #fff;
//** Default progress bar color
@progress-bar-bg:			 @primary-color;

.fusion-progressbar {
	position: relative;
	margin-bottom: 10px;
	height: 37px;
	width: 100%;
	background-color: #E6E7E8;
	.border-radius( 0 );
	.box-shadow( none );
	
	.progress {
		background-color: #A0CE4E;
		.box-shadow( none );
	}
	
	.progress-title {
		left: 15px;
		top: 50%;
		.transform( translate( 0, -50% ) );
		clip: auto;
		margin: 0;
		height: auto;
		width: auto;
		color: #FFFFFF;
		font-size: 13px;
		font-weight: normal;
	}
}