.progress-bar {
	margin-bottom: 15px;

	&__title {
			color: $color-charcoal3;
			display: block;
			letter-spacing: 1px;
			font-size: 11px;
			margin: 0 0 4px;
			position: relative;
			text-transform: uppercase;
	}

	&__empty {
			background-color: $color-green1;
			border-radius: 4px;
			height: 5px;
			width: 100%;
			z-index: 1;
	}

	&__fill {
			background-color: $color-green5;
			border-radius: 4px;
			height: 5px;
			overflow: hidden;
			position: relative;
			top: -5px;
			transition: width .65s;
			width: 0%;
			z-index: 2;
	}

	&__percentage {
			display: none;
			position: absolute;
			right: 0;
	}
}
