.stepper {
  font-family: "Lato";
  font-weight: 400;
}
.stepper.vertical .steps {
  display: flex;
  flex-direction: column;
}
.stepper.vertical .steps .step {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.stepper.vertical .steps .step .marker {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-weight: 400;
}
.stepper.vertical .steps .step .label {
  font-size: 14px;
  font-weight: 400;
}
.stepper.vertical .steps .step.active .marker {
  background-color: var(--primary-main);
  color: #fff;
}
.stepper.horizontal .steps {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.stepper.horizontal .steps .step {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.stepper.horizontal .steps .step .marker {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  margin-right: 10px;
}
.stepper.horizontal .steps .step .label {
  font-size: 14px;
  font-weight: 400;
}
.stepper.horizontal .steps .step.active .marker {
  background-color: var(--primary-main);
  color: #fff;
}
.stepper .step-line {
  border: none;
  height: 1px;
  background-color: #000;
  margin: 0.5rem 0;
}
.stepper .navigation {
  margin-top: 20px;
}
.stepper .navigation .btn-previous,
.stepper .navigation .btn-next {
  padding: 8px 16px;
  background-color: var(--primary-main);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
}
.stepper .navigation .btn-previous[disabled],
.stepper .navigation .btn-next[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}