.nav-progress {
  display: table;
  overflow: hidden;
  margin: 0;
  width: 100%;
  height: 50px;
  border: 2px solid #3a7f14;
  background-color: #90ba55;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.nav-progress > div {
  position: relative;
  display: table-cell;
  padding: 14px 0;
  color: #ffffff;
  text-align: center;
  font-size: 1.125em;
  line-height: 1.25em;
  font-weight: bold;
}
.nav-progress > div.complete {
  background-color: #ec407a;
  color: #fff;
}
.nav-progress > div.complete .arrow {
  border: 2px solid #3a7f14 !important;
  background: #ec407a !important;
}
.nav-progress > div.active {
  background-color: #ec407a;
  color: #fff;
}
.nav-progress > div.active .arrow {
  background: #ec407a !important;
}
.arrow-wrapper {
  position: absolute;
  top: 0px;
  right: 0px;
}
.arrow-wrapper .arrow-cover {
  position: absolute;
  overflow: hidden;
  width: 24px;
  height: 50px;
}
.arrow-wrapper .arrow-cover .arrow {
  position: absolute;
  left: -34px;
  z-index: 2;
  width: 50px;
  height: 50px;
  border: 2px solid #3a7f14;
  background: transparent;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}