.noUi-target, .noUi-target * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: none;
    touch-action: none
}

.noUi-target {
    position: relative;
    direction: ltr !important
}

.noUi-base, .noUi-connects {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%
}

.noUi-connects {
    z-index: 0;
    overflow: hidden
}

.noUi-connect, .noUi-origin {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    will-change: transform
}

.noUi-vertical .noUi-origin {
    width: 0
}

.noUi-horizontal .noUi-origin {
    height: 0
}

html:not([dir=rtl]) .noUi-horizontal .noUi-origin {
    right: 0;
    left: auto
}

.noUi-handle {
    position: absolute;
    outline: none !important;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s
}

.noUi-handle::before {
    content: "";
    position: absolute;
    display: block;
    top: -1rem;
    right: -1rem;
    bottom: -1rem;
    left: -1rem;
    z-index: -1
}

.noUi-handle.noUi-active {
    -webkit-transform: scale(1.4, 1.4);
    transform: scale(1.4, 1.4)
}

.noUi-horizontal .noUi-handle.noUi-active .noUi-tooltip {
    -webkit-transform: translate(-50%, 10%) scale(0.8, 0.8);
    transform: translate(-50%, 10%) scale(0.8, 0.8)
}

.noUi-vertical .noUi-handle.noUi-active .noUi-tooltip {
    -webkit-transform: translate(10%, -50%) scale(0.8, 0.8);
    transform: translate(10%, -50%) scale(0.8, 0.8)
}

.noUi-state-tap .noUi-connect, .noUi-state-tap .noUi-origin {
    -webkit-transition: top .3s, right .3s, bottom .3s, left .3s;
    transition: top .3s, right .3s, bottom .3s, left .3s
}

.noUi-state-drag * {
    cursor: inherit !important
}

.noUi-horizontal {
    height: .125rem
}

.noUi-horizontal .noUi-handle {
    top: -.3125rem;
    left: -.375rem;
    width: .75rem;
    height: .75rem
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
    right: -.375rem;
    left: auto
}

.noUi-vertical {
    width: .125rem
}

.noUi-vertical .noUi-handle {
    top: -.375rem;
    left: -.3125rem;
    width: .75rem;
    height: .75rem
}

.noUi-target {
    border-radius: 10rem
}

.noUi-draggable {
    cursor: ew-resize
}

.noUi-vertical .noUi-draggable {
    cursor: ns-resize
}

.noUi-handle {
    border-radius: 10rem;
    background: #fff;
    cursor: default
}

[disabled] .noUi-connect {
    opacity: .3
}

[disabled] .noUi-handle {
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05)
}

[disabled].noUi-target, [disabled].noUi-handle, [disabled] .noUi-handle {
    cursor: not-allowed
}

.noUi-pips, .noUi-pips * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.noUi-pips {
    position: absolute;
    color: #999
}

.noUi-value {
    position: absolute;
    text-align: center;
    white-space: nowrap;
    font-size: .625rem
}

.noUi-marker {
    position: absolute
}

.noUi-pips-horizontal {
    top: 100%;
    left: 0;
    padding: .6875rem 0 0 0;
    width: 100%;
    height: 5rem
}

.noUi-value-horizontal {
    padding-top: .125rem;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%)
}

[dir=rtl] .noUi-value-horizontal {
    -webkit-transform: translate(50%, 50%);
    transform: translate(50%, 50%)
}

.noUi-marker-horizontal.noUi-marker {
    width: 1px;
    height: .5rem
}

.noUi-pips-vertical {
    top: 0;
    left: 100%;
    padding: 0 0 0 .6875rem;
    height: 100%
}

[dir=rtl] .noUi-pips-vertical {
    right: 100%;
    left: auto
}

.noUi-value-vertical {
    padding-left: .875rem;
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%)
}

[dir=rtl] .noUi-value-vertical {
    right: 100%;
    padding-right: .875rem;
    padding-left: 0
}

[dir=rtl] .noUi-marker-vertical {
    right: 100%
}

.noUi-marker-vertical.noUi-marker {
    width: .5rem;
    height: 1px
}

.noUi-tooltip {
    position: absolute;
    display: block;
    padding: .1875rem .25rem;
    border-radius: .25rem;
    background: #fff;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
    text-align: center;
    line-height: 1;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s
}

.noUi-horizontal .noUi-tooltip {
    bottom: 125%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

.noUi-vertical .noUi-tooltip {
    top: 50%;
    right: 125%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

[dir=rtl] .noUi-vertical .noUi-tooltip {
    right: auto;
    left: 125%
}

[dir=rtl] .noUi-vertical .noUi-handle.noUi-active .noUi-tooltip {
    -webkit-transform: translate(-10%, -50%) scale(0.8, 0.8);
    transform: translate(-10%, -50%) scale(0.8, 0.8)
}

.default-style .noUi-target {
    background: rgba(24, 28, 33, 0.1)
}

.default-style .noUi-handle {
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 1px 6px rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 1px 6px rgba(0, 0, 0, 0.09)
}

.default-style .noUi-target[disabled] {
    background: rgba(24, 28, 33, 0.06)
}

.default-style .noUi-value {
    color: #babbbc
}

.default-style .noUi-marker {
    background: #e1e1e2
}

.default-style .noUi-tooltip {
    color: #4E5155;
    font-size: 85%
}

.default-style .noUi-connect {
    background: rgba(24, 28, 33, 0.3)
}

.default-style .noUi-secondary .noUi-connect {
    background: #8897AA
}

.default-style .noUi-success .noUi-connect {
    background: #02BC77
}

.default-style .noUi-info .noUi-connect {
    background: #28c3d7
}

.default-style .noUi-warning .noUi-connect {
    background: #FFD950
}

.default-style .noUi-danger .noUi-connect {
    background: #d9534f
}

.default-style .noUi-light .noUi-connect {
    background: rgba(24, 28, 33, 0.06)
}

.default-style .noUi-dark .noUi-connect {
    background: rgba(24, 28, 33, 0.9)
}

.material-style .noUi-target {
    background: rgba(24, 28, 33, 0.1)
}

.material-style .noUi-handle {
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.07), 0px 4px 5px 0px rgba(0, 0, 0, 0.05), 0px 1px 10px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.07), 0px 4px 5px 0px rgba(0, 0, 0, 0.05), 0px 1px 10px 0px rgba(0, 0, 0, 0.03)
}

.material-style .noUi-target[disabled] {
    background: rgba(24, 28, 33, 0.06)
}

.material-style .noUi-value {
    color: #babbbc
}

.material-style .noUi-marker {
    background: #e1e1e2
}

.material-style .noUi-tooltip {
    color: #4E5155;
    font-size: 85%
}

.material-style .noUi-connect {
    background: rgba(24, 28, 33, 0.3)
}

.material-style .noUi-secondary .noUi-handle {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #8897AA
}

.material-style .noUi-secondary .noUi-connect {
    background: #8897AA
}

.material-style .noUi-success .noUi-handle {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #02BC77
}

.material-style .noUi-success .noUi-connect {
    background: #02BC77
}

.material-style .noUi-info .noUi-handle {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #28c3d7
}

.material-style .noUi-info .noUi-connect {
    background: #28c3d7
}

.material-style .noUi-warning .noUi-handle {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #FFD950
}

.material-style .noUi-warning .noUi-connect {
    background: #FFD950
}

.material-style .noUi-danger .noUi-handle {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #d9534f
}

.material-style .noUi-danger .noUi-connect {
    background: #d9534f
}

.material-style .noUi-light .noUi-handle {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: rgba(24, 28, 33, 0.06)
}

.material-style .noUi-light .noUi-connect {
    background: rgba(24, 28, 33, 0.06)
}

.material-style .noUi-dark .noUi-handle {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: rgba(24, 28, 33, 0.9)
}

.material-style .noUi-dark .noUi-connect {
    background: rgba(24, 28, 33, 0.9)
}