// ==========================================================================
// Plyr mixins
// https://github.com/selz/plyr
// ==========================================================================

// <input type="range"> styling
@mixin plyr-range-track() {
    height: -range-track-height;
    background: transparent;
    border: 0;
    border-radius: (-range-track-height / 2);
    user-select: none;
}
@mixin plyr-range-thumb() {
    position: relative;
    height: -range-thumb-height;
    width: -range-thumb-width;
    background: -range-thumb-bg;
    border: -range-thumb-border;
    border-radius: 100%;
    transition: background .2s ease, border .2s ease, transform .2s ease;
    box-shadow: -range-thumb-shadow;
    box-sizing: border-box;
}
@mixin plyr-range-thumb-active() {
    background: -range-thumb-active-bg;
    border-color: -range-thumb-active-border-color;
    transform: scale(-range-thumb-active-scale);
}