/* ---------------------------------
-----  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-date-range-picker {
  display: block;
  overflow: visible;
  position: relative;
}
.ux-date-range-picker .ux-date-picker {
  flex: 0 1 auto;
}
.ux-date-range-picker .ux-date-picker__field-wrapper .ux-label {
  white-space: nowrap;
}
.ux-date-range-picker__separator {
  align-items: center;
  display: flex;
  flex: 0 0 20px;
  justify-content: center;
}
.ux-date-range-picker__container {
  align-items: stretch;
  display: flex;
  flex-flow: row nowrap;
  justify-content: stretch;
}

.ux-date-range-picker--kind-form .ux-date-range-picker__separator {
  font-size: 0;
  opacity: 0;
}

@media (width <= 425px) {
  .ux-date-range-picker .ux-date-picker {
    flex: 1 1 auto;
    width: 100%;
  }
  .ux-date-range-picker__container {
    align-items: stretch;
    flex-direction: column;
    justify-content: stretch;
  }
  .ux-date-picker .ux-date-picker__container {
    left: 0;
    right: 0;
    width: auto;
  }
}
@media (width >= 426px) and (width <= 639px) {
  .ux-date-picker:first-child .ux-date-picker__container {
    left: 0;
  }
  [dir=rtl] .ux-date-picker:first-child .ux-date-picker__container {
    left: auto;
    right: 0;
  }
  .ux-date-picker:last-child .ux-date-picker__container {
    right: 0;
  }
  [dir=rtl] .ux-date-picker:last-child .ux-date-picker__container {
    left: 0;
    right: auto;
  }
}