/**
 * Styleguide conform variables, mostly provided by CoreUI.
 * A comprehensive list can be found here: https://core-ui.schwarz/design-guidelines/colors
 */
[data-v-d6a6c134]: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-d6a6c134] {
  --background-image: url("/assets/frau_vorm_regal-Bvq-G5QV.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-d6a6c134] {
  /* 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
 */
.main-headline[data-v-d6a6c134] {
  margin-bottom: 2em;
}
.card[data-v-d6a6c134],
.grid[data-v-d6a6c134] {
  max-width: 1000px !important;
  width: 100% !important;
}
@media (max-width: 600px) {
.card[data-v-d6a6c134],
  .grid[data-v-d6a6c134] {
    width: var(--honeywell-width) !important;
    justify-content: space-around;
}
}
.card[data-v-d6a6c134] {
  margin-bottom: 2rem;
}
.card__description[data-v-d6a6c134] {
  margin-bottom: 1.5rem;
  color: var(--onyx-color-text-icons-neutral-medium);
}
.action-bar[data-v-d6a6c134] {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.grid[data-v-d6a6c134] {
  max-height: 800px;
  overflow-y: hidden;
}
.grid[data-v-d6a6c134] .expandable {
  padding: 16px;
  background-color: white;
  display: flex;
  height: max-content;
}
.grid[data-v-d6a6c134] .expandable .onyx-data-grid,
.grid[data-v-d6a6c134] .expandable .grid {
  width: 99%;
  border: solid 1px #c4c4c4;
  overflow: auto;
}