.step-list {
  margin-bottom: 30px;
}
.step {
  display: inline-block;
  width: 16.6%;
  text-align: center;
  background: url("/assets/img/icons/step-next-inline.svg") no-repeat center center;
  background-size: 35px 35px;
  padding-top: 70px;
  position: relative;
  border-top: 5px solid #ddd;
}
.step-active {
  background-image:  url("/assets/img/icons/step-active-inline.svg");
}
.green-stepper .step-active {
  background-image: url("/assets/img/icons/step-active-inline-green.svg");
}
.step-done {
  background-image:  url("/assets/img/icons/step-checked-inline.svg");
  border-color: #f0832b;
}
.step-list-inline .step:not(:first-of-type):after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #ddd;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  left: -50%;
}

.generic-stepper .step-list{
  margin-bottom: 0px;
  display: flex;
}

.generic-stepper .step-content{
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.generic-stepper .step-content-2{
  width: calc(100% / 2);
}

.generic-stepper .step-content-3{
  width: calc(100% / 3);
}

.generic-stepper .step-content-4{
  width: calc(100% / 4);
}

.step-list-inline .step-content:not(:first-of-type):after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #ddd;
  position: absolute;
  top: 33%;
  transform: translateY(-50%);
  z-index: -1;
  left: -50%;
}

.generic-stepper .step{
  border-top: 0px;
  width: 35px;
  height: 35px;
  padding-top: 0px;
  margin: 0 auto;
}

.title-credentials {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 40px;
}


@media (max-width: 500px) {
  .step-list-inline .step-content:not(:first-of-type):after {
    top: 23%;
  }
}

@media (max-width: 1023px) {
  .title-credentials {
    margin-bottom: 15px;
  }
}
