.step-indicator-header {
  gap: 5px;
  text-align: center;
  /* font-size: .9em; */
}

.step-indicator {
  position: relative;
  flex: 1;
  padding-bottom: 30px;
  color: var(--bs-secondary-color);
  text-transform: uppercase;
  font-size: .8em;
}

@media (max-width:600px) {
  .step-indicator:not(.active) .step-indicator-label {
    display: none;
  }
}

.step-indicator.active {
  color: #d62518;
  font-weight: 600;
  color: var(--bs-body-color);
}

.step-indicator.pointer {
  cursor: pointer;
}

.step-indicator.pointer:hover {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
}

.step-indicator.finish {
  font-weight: 600;
  color: #009688;
}

.step-indicator::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 9;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  border: 3px solid #f3f3f3;
}

/* a7ede8 -> d62518 */
/* d5f9f6 -> d62518cc */
.step-indicator.active::before {
  background-color: #d62518;
  border: 3px solid #f8cbc8;
}

.step-indicator.finish::before {
  background-color: #009688;
  border: 3px solid #b7e1dd;
}

.step-indicator::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 100%;
  height: 3px;
  background-color: #f3f3f3;
}

.step-indicator.active::after {
  background-color: #d62518;
}

.step-indicator.finish::after {
  background-color: #009688;
}

.step-indicator:last-child:after {
  display: none;
}
