/**
 * Styleguide conform variables, mostly provided by CoreUI.
 * A comprehensive list can be found here: https://core-ui.schwarz/design-guidelines/colors
 */
[data-v-48c61bd8]: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;
}

/**
/* 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-48c61bd8] {
  /* 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
 */
.page[data-v-48c61bd8] {
  margin: var(--sit-space-l);
  max-width: none;
}
.tab[data-v-48c61bd8] {
  display: flex;
}
.table[data-v-48c61bd8] {
  min-width: 100%;
}
.loading-wrapper[data-v-48c61bd8] {
  position: relative;
  min-width: 100%;
  min-height: 100px;
}
@media (min-width: 1600px) {
.loading-wrapper[data-v-48c61bd8] {
    min-width: 800px;
}
}
.error-wrapper[data-v-48c61bd8] {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
}
.filter-bar-atom[data-v-48c61bd8] {
  margin-bottom: var(--sit-space-l);
}