/*
    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;
    }
*/
.uic-progress-bar {
  display: block;
}
.uic-progress-bar.uic-progress-bar--dark {
  --uic-progress-bar-color: var(--uic-color-blue4);
  --uic-progress-bar-background-color: var(--uic-color-blue4a50);
}
.uic-progress-bar.uic-progress-bar--light {
  --uic-progress-bar-color: var(--uic-color-white);
  --uic-progress-bar-background-color: var(--uic-color-grey10);
}
.uic-progress-bar progress {
  border: 0;
  background: var(--uic-progress-bar-background-color);
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  color: var(--uic-progress-bar-color);
  width: 100%;
}
@media only screen and (max-width: 1919px) {
  .uic-progress-bar progress {
    height: 12px;
    background: repeating-linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 5px, var(--uic-progress-bar-background-color) 5px, var(--uic-progress-bar-background-color) 20px);
  }
}
@media only screen and (min-width: 1920px) {
  .uic-progress-bar progress {
    height: 15px;
    background: repeating-linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 6px, var(--uic-progress-bar-background-color) 6px, var(--uic-progress-bar-background-color) 24px);
  }
}
.uic-progress-bar progress::-webkit-progress-bar {
  background-color: transparent;
}
.uic-progress-bar progress::-webkit-progress-value {
  background-color: var(--uic-progress-bar-color);
}
.uic-progress-bar progress::-moz-progress-bar {
  background-color: var(--uic-progress-bar-color);
}
.uic-progress-bar progress::-ms-fill {
  border: 0;
}