/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.3.0
* Docs at https://davidtheclark.github.io/scut
*/
.ProgressBar {
    margin: 0 auto;
    padding: 2em 7.5em 3em;
    list-style: none;
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  
  .ProgressBar-step {
    text-align: center;
    position: relative;
    width: 100%;
  }
  .ProgressBar-step:before, .ProgressBar-step:after {
    content: "";
    height: 0.5em;
    background-color: var(--color-text-pink);
    position: absolute;
    z-index: 1;
    width: 100%;
    left: -50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out;
  }
  .ProgressBar-step:first-child:before, .ProgressBar-step:first-child:after {
    display: none;
  }
  .ProgressBar-step:after {
    background-color: var(--color-green);
    width: 0%;
  }
  .ProgressBar-step.is-complete + .ProgressBar-step.is-current:after, .ProgressBar-step.is-complete + .ProgressBar-step.is-complete:after {
    width: 100%;
  }
  
  .ProgressBar-icon {
    width: 2em;
    height: 2em;
    background-color: var(--color-text-pink);
    fill: var(--color-text-pink);
    border-radius: 50%;
    padding: 0.5em;
    max-width: 100%;
    z-index: 10;
    position: relative;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out;
  }
  .is-current .ProgressBar-icon {
    fill: var(--color-white);
    background-color: var(--color-green);
  }
  .is-complete .ProgressBar-icon {
    fill: var(--color-white);
    background-color: var(--color-green);
  }
  
  .ProgressBar-stepLabel {
    display: block;
    text-transform: uppercase;
    color: var(--color-text-pink);
    position: absolute;
    padding-top: 1em;
    width: 100%;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out;
  }
  .is-current .ProgressBar-stepLabel, .is-complete .ProgressBar-stepLabel {
    color: var(--color-green);
  }
  
  .wrapper {
    max-width: 1000px;
    margin: 4em auto;
    font-size: 16px;
  }
  