/* ---------------------------------
-----  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-range-input {
  display: block;
}
.ux-range-input__input {
  cursor: pointer;
  height: 100%;
  height: 40px;
  margin: 0;
  margin-top: -20px;
  opacity: 1;
  opacity: 0;
  position: absolute;
  width: 100%;
}
.ux-range-input__track {
  background: #727272;
  display: block;
  height: 2px;
  inset: 0;
  margin-bottom: 17px;
  margin-top: 15px;
  position: relative;
  width: 100%;
  z-index: 0;
}
.ux-range-input__track::before, .ux-range-input__track::after {
  background: #727272;
  content: "";
  height: 13px;
  margin-top: 1px;
  position: absolute;
  transform: translateY(-50%);
  width: 13px;
}
.ux-range-input__track::before {
  left: 0;
  top: 0;
  z-index: 0;
}
.ux-range-input__track::after {
  pointer-events: none;
  right: 0;
  top: 0;
  z-index: 0;
}
.ux-range-input__marker {
  background: #bbd03a;
  height: 30px;
  pointer-events: none;
  position: absolute;
  top: -14px;
  transition: background-color 0.25s;
  width: 30px;
  z-index: 1;
}
@media only screen and (width >= 768px) {
  .ux-range-input__marker {
    height: 36px;
    top: -17px;
    width: 36px;
  }
}
.ux-range-input__marker-line {
  background: #fff;
  height: 14px;
  position: absolute;
  top: 8px;
  width: 1px;
}
.ux-range-input__marker-line:nth-child(1) {
  left: 10px;
}
.ux-range-input__marker-line:nth-child(2) {
  left: 15px;
}
.ux-range-input__marker-line:nth-child(3) {
  left: 20px;
}
@media only screen and (width >= 768px) {
  .ux-range-input__marker-line {
    height: 16px;
    top: 10px;
  }
}
@media only screen and (width >= 768px) {
  .ux-range-input__marker-line:nth-child(1) {
    left: 12px;
  }
}
@media only screen and (width >= 768px) {
  .ux-range-input__marker-line:nth-child(2) {
    left: 18px;
  }
}
@media only screen and (width >= 768px) {
  .ux-range-input__marker-line:nth-child(3) {
    left: 24px;
  }
}
.ux-range-input__info-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.ux-range-input__info {
  max-width: 40%;
}
.ux-range-input__info > * {
  margin-top: 5px;
}