/** HEADINGS **/
/** LABELS **/
/** SPANS **/
/** PARAGRAPHS **/
/** CODE/CONSOLE **/
@property --rotation {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotate-border {
  to {
    --rotation: 360deg;
  }
}
:host {
  /**
   * @prop --stepper-width: defines in px how much space the stepper should take up
  */
  --stepper-width: 100%;
}

.wizard-footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--kv-spacing-4x, 16px);
}
.wizard-footer-container .actions-container {
  display: flex;
  flex: 1;
}
.wizard-footer-container .actions-container .wizard-stepper {
  width: var(--stepper-width);
  padding-right: var(--kv-spacing-4x, 16px);
}
.wizard-footer-container .buttons-container {
  display: flex;
  gap: var(--kv-spacing-3x, 12px);
}