.progress-bar-wrapper {
  display: flex;
  padding: 0 50px;
  flex-direction: column;
  width: 100%;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: flex-end;
  gap: 8px;
}

.step {
  flex: 1;
  position: relative;
}

.percent-indicator {
  position: absolute;
  top: -23px;
  left: 0;
  right: 0;
  text-align: center;
}

.step-line {
  height: 4px;
  background-color: var(--bs-gray-200, #e9ecef);
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.step.current .step-line {
  background-color: var(--lead-form-color-primary, #dc3545);
  opacity: 0.5;
}

.step.completed .step-line {
  background-color: var(--lead-form-color-primary, #dc3545);
  opacity: 1;
}
