/* ---------------------------------
-----  dimension variables --------
---------------------------------- */
/* ------  standard elements padding & margin  ------- */
/* spacing */
/**
* mobile first breakpoints based on design specification
* deprecated variables
*/
/**
* mobile first breakpoints based on design specification
* $bp-m: >= 768px
* $bp-l: >= 1024px
* $bp-xl: >= 1440px
* @media only screen and (min-width: $bp-m) {}
*/
/**
**  Official Font sizes
------------------------------- */
/**
** Line-heights
------------------------------- */
/*
  Mixin to progressively-enhance :focus-visible, keeping :focus where not supported
  Add an arbitrary list of selectors into the arguments, and the styling in the block.
  I you pass no selectors to the mixin the parent ("ampersand") operator is used instead.

  There are two mixins:
  - focus-visible: a generic focus-visible, giving you "slots" to decide what to render for :focus, :focus reset, and :focus-visible
  - focus-visible-outline: a focus-visible, which only resets the outline. If you don't need more custom resets, use this one!

  Use focus-visible:
  The key thing here is checking which slot is being rendered.
  For example, you can reset box-shadow here, or anything else.

  @include focus-visible using ($slot) {
      @if $slot == focus {
          outline: 2px solid transparent;
          box-shadow: 0 0 0 4px blue;
      }
      @if $slot == focusReset {
          box-shadow: none;
      }
      @if $slot == focusVisible {
          box-shadow: 0 0 0 4px blue;
      }
  }

  Use focus-visible-outline:
  @include focus-visible-outline("button", "a[href]") {
      outline: 2px solid blue;
  }

  Resulting CSS (compressed):

  button:focus,
  a[href]:focus {
      outline: 2px solid blue;
  }

  button:focus:not(:focus-visible),
  a[href]:focus:not(:focus-visible) {
      outline: none;
  }
  button:focus-visible,
  a[href]:focus-visible {
      outline: 2px solid blue;
  }
*/
/**
* mobile first breakpoints based on design specification
* deprecated variables
*/
/**
* mobile first breakpoints based on design specification
* $bp-m: >= 768px
* $bp-l: >= 1024px
* $bp-xl: >= 1440px
* @media only screen and (min-width: $bp-m) {}
*/
/**
@prop --ux-table-bg-color: default background-color of the table
@prop --ux-table-border-color: border-color of table cells
@prop --ux-table-text-color: text-color of the table
@prop --ux-table-header-font-size: font size of the table header
@prop --ux-table-header-font-weight: font weight of the table header
@prop --ux-table-header-bg-color: background-color of the table header
@prop --ux-table-header-text-color: text-color of the table header
@prop --ux-table-header-text-transform: text-transform applied the the table header
@prop --ux-table-header-padding-vertical: vertical padding of table header
@prop --ux-table-row-bg-color-even: background-color of even rows
@prop --ux-table-row-bg-color-odd: background-color of odd rows
@prop --ux-table-row-hover-border-color: row border-color when hovered
@prop --ux-table-row-hover-text-color: row text-color when hovered
@prop --ux-table-row-selected-bg-color: background-color of selected rows
@prop --ux-table-row-selected-text-color: text-color of selected rows
@prop --ux-table-row-padding-vertical: vertical padding of table rows
@prop --ux-table-cell-min-height: min-height of table cells
@prop --ux-table-cell-padding-horizontal: horizontal padding of table cells
@prop --ux-table-cell-padding-vertical: vertical padding of table cells
@prop --ux-table-sort-active-color: color of the active sort arrow
@prop --ux-table-sort-inactive-color: color of the inactive sort arrow
@prop --ux-table-sort-inactive-opacity: opacity of the inactive sort arrow
 */
.ux-table-data {
  display: block;
  font-family: var(--ux-font);
  margin: 0;
  max-width: 100%;
  position: relative;
}
.ux-table-data__table {
  border-collapse: collapse;
  border-spacing: 0;
}
.ux-table-data--full-width .ux-table-data__table {
  min-width: 100%;
}
.ux-table-data__th {
  background-color: var(--ux-table-header-bg-color);
  color: var(--ux-table-header-text-color);
  font-size: var(--ux-table-header-font-size);
  font-weight: var(--ux-table-header-font-weight);
  padding: var(--ux-table-header-padding-vertical) var(--ux-table-cell-padding-horizontal);
  text-align: start;
  text-transform: var(--ux-table-header-text-transform);
  white-space: nowrap;
}
.ux-table-data__td {
  padding: var(--ux-table-row-padding-vertical) 0;
  white-space: nowrap;
}
.ux-table-data__td--multiline {
  hyphens: auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.ux-table-data__tr {
  border-bottom: 1px solid var(--ux-table-border-color);
  border-top: 1px solid var(--ux-table-border-color);
  display: table-row;
}
.ux-table-data__tr:not(.ux-table-data__tr--selected):nth-child(odd) td {
  background-color: var(--ux-table-row-bg-color-odd);
}
.ux-table-data__tr:not(.ux-table-data__tr--selected):nth-child(even) td {
  background-color: var(--ux-table-row-bg-color-even);
}
.ux-table-data__tr--selected td {
  background-color: var(--ux-table-row-selected-bg-color);
  color: var(--ux-table-row-selected-text-color);
}
.ux-table-data__tr:hover, .ux-table-data__tr:hover td {
  border-bottom: 1px solid var(--ux-table-row-hover-border-color);
  border-top: 1px solid var(--ux-table-row-hover-border-color);
  color: var(--ux-table-row-hover-text-color);
}
.ux-table-data__cell {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  min-height: var(--ux-table-cell-min-height);
  padding: var(--ux-table-cell-padding-vertical) var(--ux-table-cell-padding-horizontal);
  position: relative;
}
.ux-table-data__cell--group {
  border-left: 1px solid var(--ux-table-border-color);
}
.ux-table-data .ux-checkbox__label {
  margin: 0;
}
.ux-table-data .ux-checkbox__label::before {
  background-color: var(--ux-table-bg-color);
}