/**
 * Styleguide conform variables, mostly provided by CoreUI.
 * A comprehensive list can be found here: https://core-ui.schwarz/design-guidelines/colors
 */
[data-v-fe935a42]: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-fe935a42] {
  /* 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
 */
.loading-wrapper[data-v-fe935a42] {
  position: relative;
  min-width: 100%;
  min-height: 100px;
}
@media (min-width: 1600px) {
.loading-wrapper[data-v-fe935a42] {
    min-width: 800px;
}
}.action-buttons-wrapper[data-v-64e96f9d] {
  display: flex;
  gap: var(--onyx-spacing-md);
  align-items: center;
}.copy-button[data-v-23f3e335] {
  margin-top: 5px;
}
.input--with-top-label[data-v-23f3e335] {
  margin-top: -10px;
  padding-bottom: 10px;
  min-width: 25%;
}
.wrapper[data-v-23f3e335] {
  --input-label-focus-transform: scale(0);
  display: flex;
  flex-direction: column;
  gap: var(--sit-space-xs);
}
.table__top-bar[data-v-23f3e335] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.table__top-bar__title[data-v-23f3e335] {
  margin-top: 0;
  margin-bottom: 0;
}
.table__head[data-v-23f3e335] {
  display: grid;
  grid-template-columns: subgrid;
  column-gap: var(--sit-space-s);
}
.table__body[data-v-23f3e335] {
  display: grid;
  grid-template-columns: subgrid;
  overflow: visible;
}
.table__row[data-v-23f3e335] {
  display: grid;
  grid-template-columns: subgrid;
  overflow: visible;
  padding-left: 28px;
  padding-right: var(--sit-space-m);
}
.table__row__separator[data-v-23f3e335] {
  background-color: white;
  grid-column: 1/3;
  border-top: 1px var(--sit-color-darkgrey) solid;
  border-bottom: 1px var(--sit-color-darkgrey) solid;
  border-right: none;
  border-left: none;
}
.table__cell[data-v-23f3e335] {
  display: flex;
  align-items: center;
  gap: var(--sit-space-xs);
}
.table__cell__values[data-v-23f3e335] {
  display: flex;
  justify-content: space-between;
}
.table__cell__setting_inputs[data-v-23f3e335] {
  display: flex;
  gap: var(--sit-space-xs);
  flex: 1;
}
.table__cell__separator[data-v-23f3e335] {
  font-weight: 600;
}
.table__cell__info[data-v-23f3e335] {
  display: flex;
  align-items: center;
  gap: var(--sit-space-xs);
}
.table__cell__info-red[data-v-23f3e335] {
  color: var(--sit-color-red);
}
.table .invisible[data-v-23f3e335] {
  display: none;
}
.table .tooltip[data-v-23f3e335] {
  --tooltip-width: 256px;
}