/* ---------------------------------
-----  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-charts-data-group-color: color of a specific data group, set it inside of the datagroups css class.
* @prop --ux-charts-font-size: bar chart base text font size
* @prop --ux-charts-text-color: bar chart text color (labels, tooltip etc.)
* @prop --ux-charts-tick-line-color: color of tick lines
* @prop --ux-charts-x-axis-label-font-weight: x axis label font weight
* @prop --ux-charts-x-axis-label-font-size: x axis label font size
* @prop --ux-charts-y-axis-tick-font-weight: y axis tick label font weight
* @prop --ux-charts-y-axis-tick-font-size: y axis tick label font size
* @prop --ux-charts-y-axis-label-font-weight: y axis label font weight
* @prop --ux-charts-bar-chart-in-bar-label-font-size: font size for text within the bars
* @prop --ux-charts-bar-chart-in-bar-label-font-weight: font weight for text within the bars
* @prop --ux-charts-loading-overlay-bgcolor: color of the loading overlay
*/
.ux-bar-chart {
  align-items: center;
  color: var(--ux-charts-text-color, #000);
  display: flex;
  font-family: var(--ux-font);
  font-size: var(--ux-charts-font-size);
  justify-content: center;
  position: relative;
}
.ux-bar-chart__x-axis .tick line {
  display: none;
}
.ux-bar-chart__x-axis text {
  font-size: var(--ux-charts-x-axis-label-font-size);
  font-weight: var(--ux-charts-x-axis-label-font-weight);
}
.ux-bar-chart__y-axis path {
  display: none;
}
.ux-bar-chart__y-axis .tick line {
  stroke: var(--ux-charts-tick-line-color, #eee);
}
.ux-bar-chart__y-axis text {
  font-size: var(--ux-charts-y-axis-tick-font-size);
  font-weight: var(--ux-charts-y-axis-tick-font-weight);
}
.ux-bar-chart__y-axis-label {
  font-size: var(--ux-charts-y-axis-label-font-size);
  font-weight: var(--ux-charts-y-axis-label-font-weight);
}
.ux-bar-chart__datagroup {
  fill: var(--ux-charts-data-group-color);
}
.ux-bar-chart__tooltip-color-indicator {
  background-color: var(--ux-charts-data-group-color);
  display: inline-block;
  height: 1em;
  margin: 0 0.5em 0 0;
  vertical-align: middle;
  width: 1em;
}
.ux-bar-chart__in-bar-label {
  font-size: var(--ux-charts-bar-chart-in-bar-label-font-size);
  font-weight: var(--ux-charts-bar-chart-in-bar-label-font-weight);
}
.ux-bar-chart__no-data-indicator {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  position: absolute;
  width: 100%;
}
.ux-bar-chart .ux-spinner-overlay {
  position: absolute;
}
.ux-bar-chart .ux-spinner-overlay__backdrop {
  background-color: var(--ux-charts-loading-overlay-bgcolor);
}