
/*CSS:*/
:root {
  --brand-primary: #027f00;
  --white: #fff;
  --grey-light: #e1e1e1;
}

.remain-steps:before {
  content: counter(stepNum);
  font-family: inherit;
  font-weight: 700;
}

.remain-steps:after {
  background-color: var(--green);
}

.multi-steps {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.multi-steps > li {
  counter-increment: stepNum;
  text-align: center;
  display: table-cell;
  position: relative;
  color: var(--brand-primary);
}

.multi-steps > li:before {
  content: '\2713'; 
  display: block;
  margin: 0 auto 4px;
  background-color: var(--brand-primary);
  width: 36px;
  height: 36px;
  line-height: 32px;
  text-align: center;
  font-weight: bold;
  border-width: 2px;
  border-style: solid;
  border-color: var(--brand-primary);
  border-radius: 50%;
  color: white;
}

.multi-steps > li:last-child:after {
  display: none;
}

.multi-steps > li.is-active:before {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
  animation: pulse 2s infinite;
}

.multi-steps > li.is-active+li {
  color: #808080;
}

.multi-steps > li.is-active+li:before {
  background-color: var(--green);
  border-color: var(--green);
  color: #808080;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--brand-primary70);
  }

  100% {
    box-shadow: 0 0 0 10px var(--brand-primary00);
  }
}
@keyframes nextStep {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.progress-bar {
  cursor: pointer;
  user-select: none;
}

.progress-bar {
  height: 7px;
  overflow: hidden;
  position: absolute;
  left: 50%;
  bottom: calc(50% + 7px);
  width: 100%;
  z-index: -1;
}

.progress-barTemplate {
  height: 7px;
  overflow: hidden;
  position: absolute;
  bottom: calc(50% + 7px);
  width: 100%;
  z-index: -1;
}

.progress-bar--success {
  background-color: var(--brand-primary);
}


.progress-bar__bar {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 500ms ease-out;
}




