@import '../less/variables/colors.less';

.c-progress-bar {
	background-color: @color-gray-xxx-light;
	position: relative;
}

.c-progress-bar__fill {
	background-color: @color-ui-theme-primary-light;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition: width 0.2s;
	width: 0%;
	z-index: 1;
}

.c-progress-bar__contents {
	color: #fff;
	padding: 0 4px;
	position: relative;
	z-index: 2;
}
