ul.SteppedProgress {
  counter-reset: step;
  display: flex;
  margin: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: center;
  z-index: 1;
}
.SteppedProgress li {
  list-style-type: none;
  color: #7a8fac;
  line-height: normal;
  flex: 1;
  font-size: 18px;
  position: relative;
  padding: 0 2%;
}
.SteppedProgress li span {
  color: #011e6c;
}
.SteppedProgress li.boxed span,
.SteppedProgress li.current span {
  background: silver;
  border: 1px solid silver;
  color: gray;
  display: inline-block;
  padding: 3px 6px;
  position: relative;
  margin: 0px -6px;
  width: 100%;
}
.SteppedProgress li.boxed span:after,
.SteppedProgress li.current span:after {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: silver;
  border-width: 10px;
  margin-left: -10px;
}
.SteppedProgress li.current span {
  background: #4170b0;
  color: #fff;
}
.SteppedProgress li.current span:after {
  border-bottom-color: #4170b0;
}
.SteppedProgress li.current.canHover span:hover {
  background: #b9cce5;
  border-color: #4170b0;
  color: #4170b0;
}
.SteppedProgress li.current.canHover span:hover:after {
  border-bottom-color: #b9cce5;
}
.SteppedProgress li.complete.boxed span {
  background: #23b900;
  color: #fff;
}
.SteppedProgress li.complete.boxed span:after {
  border-bottom-color: #23b900;
}
.SteppedProgress li.complete.boxed.canHover span:hover {
  background: #95ff7c;
  border-color: #23b900;
  color: #23b900;
  cursor: pointer;
}
.SteppedProgress li.complete.boxed.canHover span:hover:after {
  border-bottom-color: #23b900;
  cursor: pointer;
}
.SteppedProgress li:before {
  content: counter(step);
  counter-increment: step;
  width: 30px;
  line-height: 30px;
  display: block;
  font-size: 18px;
  color: #fff;
  background: #011e6c;
  border-radius: 15px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 1;
}

.SteppedProgress li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #7a8fac;
  position: absolute;
  left: -50%;
  top: 17px;
  z-index: -1;
}
.SteppedProgress li:first-child:after {
  content: none;
}

/* Update Color */
.SteppedProgress li.complete:before {
  border: solid 1px #7a8fac;
  background: #efefef;
  color: #7a8fac;
}
.SteppedProgress li.complete:after {
  background: #7a8fac;
}
.SteppedProgress li.complete span {
  color: #7a8fac;
}

ul.SteppedProgress.Vertical {
  display: block;
}
.SteppedProgress.Vertical li {
  flex: none;
  clear: both;
  text-align: left;
  padding: 0;
  margin-left: 0;
  min-height: 2.2em;
}
.SteppedProgress.Vertical li span {
  white-space: nowrap;
}
ul.SteppedProgress.Vertical li:before {
  float: none;
  display: inline-block;
  margin-right: 10px;
  text-align: center;
  margin-left: 0;
}
.SteppedProgress.Vertical li:after {
  content: "";
  width: 6px;
  height: 100%;
  position: absolute;
  left: 12px;
  top: -50%;
  z-index: -1;
}
ul.SteppedProgress.Vertical li.boxed,
ul.SteppedProgress.Vertical li.current {
  min-width: 90%;
}
ul.SteppedProgress.Vertical li.boxed span,
ul.SteppedProgress.Vertical li.current span {
  display: inline;
  margin-left: 0;
}
ul.SteppedProgress.Vertical li.boxed span:after,
ul.SteppedProgress.Vertical li.current span:after {
  bottom: auto;
  left: auto;
  right: 100%;
  top: 7px;
  border-color: rgba(255, 255, 255, 0);
  border-right-color: silver;
  margin: 0;
}
ul.SteppedProgress.Vertical li.current span:after {
  border-right-color: #4170b0;
}
ul.SteppedProgress.Vertical li.complete.boxed span:after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #23b900;
}
@media (max-width: 480px) {
  ul.SteppedProgress {
    display: block;
  }
  .SteppedProgress li {
    flex: none;
    clear: both;
    text-align: left;
    padding: 0;
    margin-left: 0;
    min-height: 3.3em;
  }
  .SteppedProgress li span {
    white-space: nowrap;
  }
  ul.SteppedProgress li:before {
    float: none;
    display: inline-block;
    margin-right: 10px;
    text-align: center;
    margin-left: 0;
  }
  .SteppedProgress li:after {
    content: "";
    width: 2px;
    height: 100%;
    position: absolute;
    left: 14px;
    top: -50%;
    z-index: -1;
  }
  ul.SteppedProgress li.boxed,
  ul.SteppedProgress li.current {
    min-width: 90%;
  }
  ul.SteppedProgress li.boxed span,
  ul.SteppedProgress li.current span {
    display: inline;
    margin-left: 0;
  }
  ul.SteppedProgress li.boxed span:after,
  ul.SteppedProgress li.current span:after {
    bottom: auto;
    left: auto;
    right: 100%;
    top: 7px;
    border-color: rgba(255, 255, 255, 0);
    border-right-color: silver;
    margin: 0;
  }
  ul.SteppedProgress li.current span:after {
    border-right-color: #4170b0;
  }
  ul.SteppedProgress li.complete.boxed span:after {
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #23b900;
  }
}
/*# sourceMappingURL=ProgressIndicator.css.map */
