/** HEADINGS **/
/** LABELS **/
/** SPANS **/
/** PARAGRAPHS **/
/** TODO: CODE/CONSOLE **/
@property --rotation {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotate-border {
  to {
    --rotation: 360deg;
  }
}
/**
* Design Tokens - Auto-generated by Style Dictionary
* Do not edit manually - run `pnpm tokens:build` to regenerate
*/
kv-dropdown-base:not(.hydrated) > [slot=list] {
  display: none;
}

/**
* @prop --step-label-color: The color of the label.
* @prop --step-counter-color: The color of the step counter.
*/
:host {
  --step-label-color: var(--text-surface-neutral-secondary);
  --step-counter-color: var(--text-surface-neutral-secondary);
}

.label-container .label {
  font-family: Proxima Nova;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0;
  color: var(--step-label-color);
}
.label-container .step-counter {
  font-family: Proxima Nova;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0;
  color: var(--step-counter-color);
  margin-left: var(--spacing-xs);
}

.progress-bar-container {
  margin-top: var(--spacing-xs);
}
.progress-bar-container kv-step-progress-bar {
  --progress-bar-height: 2px;
  --progress-height: 14px;
}
.progress-bar-container kv-step-indicator {
  --indicator-radius: 14px;
}
.progress-bar-container .step-indicator-container {
  display: flex;
  align-items: center;
}