/* Compiled from stepper_component.scss. Edit this sidecar CSS directly. */
.stepper {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 0.5rem;
}
.stepper .step {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  min-width: 13vw;
  gap: 0.5rem;
}
.stepper .step:not(:last-child)::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 100px;
  height: 1px;
  background-color: #B6C1D2;
  margin: 10px 0px;
}
.stepper .step:not(.completed) {
  color: #B6C1D2; /* Grey */
}
.stepper .step:last-child {
  min-width: fit-content;
}
.stepper .step-circle {
  min-width: 40px;
  min-height: 40px;
  background-color: #B6C1D2;
  color: white;
  fill: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stepper .step-circle.completed {
  background-color: #007bff; /* Blue */
}
