.steps-wrapper ul.steps-progress-bar {
  width: 100%;
  max-width: 225px;
  list-style: none;
  padding: 0;
}

.steps-wrapper ul.steps-progress-bar li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.steps-wrapper ul.steps-progress-bar li .passo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #3a3a3a;
  border-radius: 30px;
  position: relative;
}

.steps-wrapper ul.steps-progress-bar li .passo span {
  margin-top: 0;
  font-weight: 800;
  font-size: 21px;
}

.steps-wrapper ul.steps-progress-bar li.active .passo {
  background: #DD303E;
}

.steps-wrapper ul.steps-progress-bar li:not(:first-child) .passo::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 160px;
  right: 0;
  z-index: -1;
  background: #424242;
}

.steps-wrapper ul.steps-progress-bar li.active .passo::before {
  background: linear-gradient(90deg, #DF303E 0%, #FF616D 100%);
}

@media (max-width: 372px) {
  .steps-wrapper ul.steps-progress-bar li:not(:first-child) .passo::before {
    width: 140px;
  }
}

.steps-wrapper ul.steps-progress-bar li i {
  font-size: 21px;
}

.steps-wrapper ul.steps-progress-bar li span {
  font-family: 'Mulish', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #ababab;
  margin-top: 15px;
}

.steps-wrapper ul.steps-progress-bar li.active span {
  color: #fff;
}
