﻿/* NEW RANGE SLIDER */

.slider-track {
    height: 2px;
    width: 100%;
    margin-top: 0px;
    top: 50%;
    left: 0;
    background-image: none;
    background-color: #E2E2E2;
    box-shadow: none;
}

.slider-handle {
    width: 7px;
    border-radius: 35px;
    margin-left: -3px;
}

/* NEW RANGE SLIDER */


.middle {
    position: relative;
    width: 75%;
    max-width: 500px;
}

.middle > .show-values {
    right:0;
    top: 5px;
    width: 100%;
}

.middle > .show-values > span{
    font-size: 14px;
    color: #9AA0A6;
}

.slider {
    position: relative;
    z-index: 1;
    height: 2px;
}

.slider > .track {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    background-color: #E2E2E2;
}

.slider > .range {
    position: absolute;
    z-index: 2;
    left: 25%;
    right: 25%;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    background-color: #0083E2; /*PRIMARY COLOR*/
}

.slider > .range:disabled {
    background-color: #cccccc;
    cursor: default;
}

.slider > .thumb {
    position: absolute;
    z-index: 3;
    width: 6px;
    height: 16px;
    background-color: #0083E2; /*PRIMARY COLOR*/
    border-radius: 5px;
    border:1px solid #ffffff;
    box-shadow: 0 0 0 0 rgba(98,0,238,.1);
    transition: box-shadow .3s ease-in-out;
}

.slider > .thumb:disabled {
    background-color: #cccccc;
    cursor: default;
}

.slider > .thumb.left {
    left: 25%;
    transform: translate(0px, -7px);
}

.slider > .thumb.right {
    right: 25%;
    transform: translate(0px, -7px);
}


.slider > .thumb > .thumb-value{
    position: relative;
    width: 6px;
}
.slider > .thumb > .thumb-value > .value-price {
    position: absolute;
    bottom: 0;
    left: -8px;
    font-size: 14px;
    color: #363E46;
}

.input-radius {
    width: 100%;
    
}

.input-radius::-webkit-slider-runnable-track {
    height: 2px;
    background: #0478b2;
    border: none;
    border-radius: 3px;
}

.input-radius:disabled::-webkit-slider-runnable-track {
    background: #cccccc;
    cursor: default;
}

.input-radius::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 26px;
    width: 16px;
    border-radius: 50%;
    background: #0478b2;
    margin-top: -7px;
}

.input-radius:disabled::-webkit-slider-thumb {
    background: #cccccc;
    cursor: default;
}

.input-radius:disabled {
    background: #cccccc;
    cursor: default;
}

.input-radius:focus {
    outline: none;
}

.input-radius:focus::-webkit-slider-runnable-track {
    background: #ccc;
}