/* ---------------------------------
-----  dimension variables --------
---------------------------------- */
/* ------  standard elements padding & margin  ------- */
/* spacing */
/**
**  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;
  }
*/
.ux-tooltip {
  height: 0;
  overflow: visible;
  width: 0;
}
.ux-tooltip *[data-ux-tooltip-close] {
  cursor: pointer;
}
.ux-tooltip.hydrated {
  display: block;
}
.ux-tooltip__tip {
  background-color: #fff;
  box-shadow: -2px 0 22px 2px rgba(19, 19, 19, 0.08);
  height: auto;
  overflow: visible;
  padding: 30px 10px 30px 30px;
  position: fixed;
  text-align: left;
  visibility: hidden;
  width: 300px;
  z-index: 999;
}
.ux-tooltip__tip--active {
  visibility: inherit;
}
.ux-tooltip__tip::after {
  border-color: #fff transparent transparent;
  border-style: solid;
  border-width: 18px;
  content: "";
  left: 50%;
  margin-left: -18px;
  position: absolute;
  top: 100%;
  z-index: 1;
}
.ux-tooltip__tip::before {
  box-shadow: 0 10px 15px 0.6px rgba(0, 0, 0, 0.3);
  content: "";
  height: 15px;
  left: 50%;
  position: absolute;
  top: 100%;
  width: 2px;
  z-index: -1;
}
.ux-tooltip__tip > * {
  padding-right: 20px;
}
.ux-tooltip__tip--right {
  transform: translateY(-50%);
}
.ux-tooltip__tip--right::after {
  border-color: transparent #fff transparent transparent;
  left: -30px;
  top: 50%;
  transform: translate(50%, -50%);
}
.ux-tooltip__tip--right::before {
  box-shadow: -10px 5px 15px 0.6px rgba(0, 0, 0, 0.3);
  height: 2px;
  left: -20px;
  top: 50%;
  transform: translate(50%, -50%);
  width: 15px;
}
.ux-tooltip__tip--left {
  transform: translate(-100%, -50%);
}
.ux-tooltip__tip--left::after {
  border-color: transparent transparent transparent #fff;
  left: 100%;
  top: 50%;
  transform: translate(50%, -50%);
}
.ux-tooltip__tip--left::before {
  box-shadow: 5px 5px 15px 0.6px rgba(0, 0, 0, 0.3);
  height: 2px;
  left: 100%;
  top: 50%;
  width: 15px;
}
.ux-tooltip__tip--top {
  transform: translate(-50%, -100%);
}
.ux-tooltip__tip--top::before {
  bottom: 0;
}
.ux-tooltip__tip--top::after {
  bottom: 0;
}
.ux-tooltip__tip--bottom {
  transform: translateX(-50%);
}
.ux-tooltip__tip--bottom::after {
  border-color: transparent transparent #fff transparent;
  top: -30px;
}
.ux-tooltip__tip--bottom::before {
  box-shadow: 0 -10px 15px 0.6px rgba(0, 0, 0, 0.3);
  top: -5px;
}