.price-target {
    position: relative;
    direction: ltr;
}

.price-base {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    /* Fix 401 */
}

.price-origin {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
}

.price-handle {
    position: relative;
    z-index: 1;
}

.price-stacking .price-handle {
    /* This class is applied to the lower origin when
       its values is > 50%. */
    z-index: 10;
}

.price-state-tap .price-origin {
    -webkit-transition: left 0.3s,top .3s;
    transition: left 0.3s,top .3s;
}

.price-state-drag * {
    cursor: inherit !important;
}

/* Painting and performance;
 * Browsers can paint handles in their own layer.
 */
.price-base,.price-handle {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

/* Slider size and handle placement;
 */
.price-horizontal {
    height: 4px;
}

.price-horizontal .price-handle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    left: -11px;
    top: -9px;
    border: 3px solid #fff;
    background-color: #5F6FCC;
    filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.15));
}

/* Styling;
 */
.price-background {
    background: #D6D7D9;
}

.price-connect {
    background: #5F6FCC;
    -webkit-transition: background 450ms;
    transition: background 450ms;
    height: 5px;
}

.price-origin {
    border-radius: 2px;
}

.price-target {
    border-radius: 2px;
}

.price-target.price-connect {
}

/* Handles and cursors;
 */
.price-draggable {
    cursor: w-resize;
}

.price-vertical .price-draggable {
    cursor: n-resize;
}

.price-handle {
    cursor: default;
    -webkit-box-sizing: content-box !important;
    -moz-box-sizing: content-box !important;
    box-sizing: content-box !important;
}

.price-handle:active {
    border: 8px solid #fff;
    border: 8px solid rgba(66, 85, 195, 0.1);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    left: -14px;
    top: -14px;
}

/* Disabled state;
 */
[disabled].price-connect,[disabled] .price-connect {
    background: #EDF0F3;
}

[disabled].price-origin,[disabled] .price-handle {
    cursor: not-allowed;
}

