.steps {
  display: flex;
  justify-content: space-between;
  transition: all 0.2s ease-in-out;
  margin: 30px 0;
  width: 100%;
  counter-reset: section;
}
@media (min-width: 576px) {
  .steps {
    padding: 0 60px 20px;
  }
}
.step-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
}
.step-wrapper:last-child {
  flex: none;
  padding-bottom: 0;
}
.step-wrapper:last-child .step-line {
  display: none;
}
.step-wrapper .step-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  position: relative;
  padding: 0;
  z-index: 2;
}
.step-wrapper .step-block.disabled {
  pointer-events: none;
}
.step-wrapper .step-block .step-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  border: 1px solid #333333;
  color: #333333;
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
}
.step-wrapper .step-block .step-icon:before {
  counter-increment: section;
  content: "" counter(section);
}
.step-wrapper .step-block .step-content {
  display: none;
  position: absolute;
  flex-direction: column;
  text-align: center;
  top: calc(46px);
  white-space: nowrap;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
}
@media (min-width: 576px) {
  .step-wrapper .step-block .step-content {
    display: flex;
  }
}
.step-wrapper .step-block .step-content .step-content {
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
}
.step-wrapper .step-line {
  width: 100%;
  border-top: 1px solid rgba(51, 51, 51, 0.4);
  margin: 0 3px;
}
.step-wrapper.validated .step-icon {
  border-color: #006a53;
  color: white;
  background-color: #006a53;
}
.step-wrapper.validated .step-content {
  color: #006a53;
  font-weight: 500;
  font-style: normal;
}
.step-wrapper.validated .step-line {
  border-color: #006a53;
}
.step-wrapper.active .step-icon {
  color: #006a53;
  border-color: #006a53;
  background-color: #e4f2ef;
}
.step-wrapper.active .step-content {
  color: #333333;
  font-weight: bold;
  font-style: normal;
}
.step-wrapper.active + .step-line {
  border-color: #006a53;
}
