.progress-steps {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  margin: 0;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step.has-line::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 80%;
  width: 40px;
  height: 2px;
  background: #ccc;
  z-index: 0;
  transition: background 0.3s ease;
}

.step.passed.has-line::after {
  background: #e60023;
}

.step:last-child::after {
  content: none;
}

.status-icon {
  width: 30px;
  height: 30px;
  display: block;
  margin: auto;
  z-index: 1;
  position: relative;
  background: white;
  color: #ccc;
  stroke: currentColor;
  fill: none;
  transition: color 0.4s ease;
}

.step.passed .status-icon,
.step.active .status-icon {
  color: #e60023;
}

.label {
  font-size: 13px;
  margin-top: 5px;
  display: block;
  color: #ccc;
}

.step.passed .label,
.step.active .label {
  color: #e60023;
}
