A simple and accessible progress bar for use in a multi-step flow to indicate to the user where they are in the overall flow.
Steps that have not yet been reached are $cf-light-gray, the current step is $cf-green, and completed steps are $cf-dark-green. See Colors.
Classes named "passed" and "unpassed" are used to indicate past and future steps.
<div class="progress-bar-container" role="progressbar" aria-valuenow="2" aria-valuemin="1" aria-valuemax="3">
<div class="step passed"></div>
<div class="step"></div>
<div class="step unpassed"></div>
</div>