.stepper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  overflow-x: scroll;
  white-space: nowrap;
  scrollbar-width: none;
  gap: 20px;
}

.stepper .step {
  text-align: center;
  flex: 1;
  position: relative;
}

/* Default line */
.stepper .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 67%;
  width: 77%;
  height: 2px;
  background: #d9d9d9;
  z-index: -1;
}

.step-circle {
  width: 52px;
  height: 52px;
  padding: 10px;
  border-radius: 50%;
  border: 1.6px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 18px;
  font-weight: 500;
  background: #fff;
  color: #747474;
  position: relative;
  z-index: 1;
}

.step.active .step-circle {
  border: 1.6px solid #1e6621;
  color: #1e6621;
  box-shadow: 0 0 4px 0 #1e6621;
}

.step.completed .step-circle {
  border: 1.6px solid #1e6621;
  color: #fff;
  box-shadow: 0 0 4px 0 #1e6621;
}

.step.completed .step-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background-image: url("../images/vectors/greentick.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}

.step .status {
  font-size: 14px;
  color: #747474;
}

.step.completed .status {
  color: #1e6621;
  font-weight: 500;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

/* Completed line - full green */
.stepper .step.completed:not(:last-child)::after {
  background: #1e6621;
  margin-top: -3px;
}

/* Active line - half green, half gray */
.stepper .step.active:not(:last-child)::after {
  background: #d9d9d9;
  margin-top: -3px;
}
.multi-step-form {
  padding-top: 80px;
}
@media (max-width: 1024px) {
  .stepper .step:not(:last-child)::after {
    left: 50%;
    width: 100%;
    height: 2px;
    background: #d9d9d9;
    z-index: -1;
  }
}
