.dt-wizard__steps {
  width: 100%;
  margin: 0 0 var(--dt-space-4);
  padding: 0;
  list-style: none;
  display: grid;
  grid-auto-flow: column;
  gap: 50px;
}
.dt-wizard__step {
  display: inline-block;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 3px solid currentColor;
  color: var(--dt-color-on-surface-muted);
}
.dt-wizard__step--active {
  color: var(--dt-color-primary);
}
.dt-wizard__step-title {
  float: left;
  margin-bottom: 0;
  font-weight: var(--dt-font-weight-medium);
}
.dt-wizard__step-title small {
  font-weight: var(--dt-font-weight-semibold);
}
.dt-wizard__actions {
  display: flex;
  justify-content: flex-end;
  gap: var(--dt-space-4);
}
