/* ---------------------------------
-----  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-dot-pagination {
  box-sizing: border-box;
  display: block;
  margin: 0 auto;
}
.ux-dot-pagination__container, .ux-dot-pagination__inner {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
.ux-dot-pagination__container {
  padding: 20px 10px;
}
.ux-dot-pagination__inner {
  padding: 0 10px;
}
.ux-dot-pagination__arrow {
  cursor: pointer;
  transition: opacity 200ms ease-in-out;
}
.ux-dot-pagination__arrow--prev {
  transform: rotate(180deg);
}
.ux-dot-pagination__arrow--disabled {
  opacity: 0.25;
  pointer-events: none;
}
.ux-dot-pagination__item {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 16px;
  justify-content: center;
  transition: all 200ms ease-out;
  width: 16px;
}
.ux-dot-pagination__item--hidden {
  height: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(0);
  width: 0;
}
.ux-dot-pagination__item--small {
  transform: scale(0.85);
}
.ux-dot-pagination__dot {
  background-color: #131313;
  border-radius: 0;
  display: block;
  height: 8px;
  opacity: 0.2;
  pointer-events: none;
  transition: all 200ms ease-out;
  vertical-align: middle;
  width: 8px;
}
.ux-dot-pagination__dot:focus-visible {
  outline: 1px solid #131313;
}
.ux-dot-pagination__item--active .ux-dot-pagination__dot {
  background-color: #bbd03a;
  height: 12px;
  opacity: 1;
  width: 12px;
}