/**
 * Styleguide conform variables, mostly provided by CoreUI.
 * A comprehensive list can be found here: https://core-ui.schwarz/design-guidelines/colors
 */
[data-v-b3669c1f]:root {
  /* grey scales */
  --sit-color-eggshell: #f8f8f8;
  --sit-color-lightgrey: #ededed;
  --sit-color-grey: #d2d2d2;
  --sit-color-darkgrey: #a9a9a9;
  --sit-color-lightblack: #464646;
  /** spaces */
  /* xs base: 8px */
  --sit-space-xs: 0.5rem;
  /* s base: 16px */
  --sit-space-s: 1rem;
  /* m base: 24px */
  --sit-space-m: 1.5rem;
  /* l base: 32px */
  --sit-space-l: 2rem;
  /* xl base: 64px */
  --sit-space-xl: 4rem;
  /* xxl base: 128px */
  --sit-space-xxl: 8rem;
  --honeywell-width: 320px;
}
:root [scu-theme=kaufland][data-v-b3669c1f] {
  --background-image: url("assets/frau_vorm_regal.png");
}

/**
/* The CSS variables below are mapped to specific core ui variables for easier usage.
/* Since they are depending on the current scu-theme the selector must not be [scu-theme] instead
/* of :root. Otherwise they values would not update accordingly.
*/
[scu-theme][data-v-b3669c1f] {
  /* main theme color */
  --sit-color-primary: var(--brand-primary-5);
  /* status colors */
  --sit-color-green: var(--green-5);
  --sit-color-orange: var(--orange-5);
  --sit-color-red: var(--red-5);
}

/** Shorthand for applying horizontal margins */
/** Shorthand for applying vertical margins */
/**
 * Breakpoints might be consistently applied via the defined breakpoints (s, m or l)
 * @param {string} $breakpoint - the (globally defined) breakpoint
 * @param {string} $min-max - Whether the breakpoint should be considered as min or max width. Default: max
 *
 * @example breakpoint(m)
 * @example breakpoint(m, min)
 * @see https://vue-blueprint.schwarz/advanced/folders.html#styles
 */
.esl-settings[data-v-b3669c1f] {
  width: inherit;
}
@media (max-width: 600px) {
.esl-settings[data-v-b3669c1f] {
    width: var(--honeywell-width);
}
}
.esl-settings .esl-print-default[data-v-b3669c1f] {
  flex-direction: column;
  display: none;
  padding-top: 10px;
  align-items: start;
}
.esl-settings .esl-print-default label[data-v-b3669c1f] {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #a9a9a9;
}
.esl-settings .split-form-display-number[data-v-b3669c1f] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.esl-settings .split-form-display-number .visible[data-v-b3669c1f] {
  display: flex;
}
.esl-settings .split-form-display-number .remove-display-number[data-v-b3669c1f] {
  margin-top: 20px;
}
.esl-settings .split-form-display-number .hidden[data-v-b3669c1f] {
  display: none;
}
.esl-settings .split-form-display-number .input[data-v-b3669c1f] {
  flex-grow: 1;
  flex-direction: row;
  align-items: center;
}
.esl-settings .esl-buttons[data-v-b3669c1f] {
  display: none;
  margin-top: 32px;
}