
.ProgressBar {
  /*margin: 0 auto;*/
  padding: 0 0 1em;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: space-between;
  grid-column: 1 / span all;
}

.ProgressBar-step {
  text-align: center;
  position: relative;
  width: 100%;
}
.ProgressBar-step:before,
.ProgressBar-step:after {
  content: "";
  height: 0.5em;
  background-color: #777;
  position: absolute;
  z-index: 1;
  width: 100%;
  left: -50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all .25s ease-out;
}

.ProgressBar-step:first-child:before,
.ProgressBar-step:first-child:after {
  display: none;
}

  .ProgressBar-step:after {
    background-color: #84BF40;
    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: .9em !important;
  height: .9em !important;
  background-color: #999;
  color: #999;
  fill: #999;
  border-radius: 50%;
  padding: 0.3em;
  max-width: 100%;
  z-index: 10;
  position: relative;
  transition: all .25s ease-out;
  top: 50%;
  transform: translateY(-50%);
  vertical-align: 0 !important;
}

  .is-current > .ProgressBar-icon {
    color: #D39247;
    background-color: #3E5D6A;
    border: 3px solid;
    width: 1.4em !important;
    height: 1.4em !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  }


.is-complete > .ProgressBar-icon {
  color: #fff;
  background-color: #84BF40;
  border: 2px solid transparent;

}

.skipped .ProgressBar-icon {
  background-color: #3E5D6A;
  border: 2px solid;
}
.ProgressBar-stepLabel {
  display: block;
  text-transform: uppercase;
  color: #738890;
  position: absolute;
  /*padding-top: 0.5em;*/
  width: 100%;
  transition: all .25s ease-out;
  top: 100%;
}


.is-current > .ProgressBar-stepLabel {
  color: #D39247;
  font-size: 18px;
  font-weight: bold;
  top: 42px;
}
.ProgressBar-step > .check-icon {
  display: none;
}
.is-complete > .check-icon{
    display: inline;
}
.is-complete > .arrow-icon {
  display: none !important;
}

.wrapper {
  max-width: 1000px;
  margin: 4em auto;
  font-size: 16px;
}


