/** 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 --text-color: The color to use for all text
 * @prop --separator-color: The color to use for the separator
 * @prop --container-padding: The container to use for the container
 */
:host {
  --text-color: var(--text-surface-neutral-secondary);
  --separator-color: var(--text-surface-neutral-secondary);
  --container-padding: var(--spacing-2xl);
}

.wizard-header-container {
  display: flex;
  padding: var(--container-padding);
  justify-content: space-between;
}
.wizard-header-container .left-container {
  display: flex;
  align-items: center;
  flex: 1;
}
.wizard-header-container .left-container .label,
.wizard-header-container .left-container .description {
  color: var(--text-color);
}
.wizard-header-container .left-container .label {
  font-family: Proxima Nova;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.wizard-header-container .left-container .description {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: Proxima Nova;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
}
.wizard-header-container .left-container .separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin: 0 var(--spacing-md);
  background-color: var(--separator-color);
}
.wizard-header-container .left-container kv-toggle-tip .toggle-tip-open-element-container {
  cursor: pointer;
  user-select: none;
  pointer-events: all;
  margin-left: var(--spacing-md);
}