/**
* Rangeslider
*/
.rangeslider {
    margin: 20px 0;
    position: relative;
    background: #e6e6e6;
    -ms-touch-action: none;
    touch-action: none;
}

.rangeslider,
.rangeslider .rangeslider__fill {
    display: block;
}

.rangeslider .rangeslider__handle {
    background: #46bc01;
    border: none;
    cursor: pointer;
    display: inline-block;
    position: absolute;
}

.rangeslider .rangeslider__handle .rangeslider__active {
    opacity: 1;
}

.rangeslider .rangeslider__handle-tooltip {
    width: 40px;
    height: 40px;
    text-align: center;
    position: absolute;
    background-color: #46bc01;
    font-weight: normal;
    font-size: 14px;
    transition: all 200ms ease-in;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: inline-block;
    color: white;
    left: -13px;
    top: -50px;
    outline: none;
}

.rangeslider .rangeslider__handle-tooltip span {
    margin-top: 12px;
    display: inline-block;
    line-height: 100%;
    transform: rotate(45deg);
}

.rangeslider .rangeslider__handle-tooltip:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
}

/**
* Rangeslider - Horizontal slider
*/
.rangeslider-horizontal {
    height: 2px;
    border-radius: 5px;
}

.rangeslider-horizontal .rangeslider__fill {
    height: 2px;
    background-color: #46bc01;
    border-radius: 10px;
    top: 0;
    cursor: pointer;
}

.rangeslider-horizontal .rangeslider__handle {
    width: 14px;
    height: 14px;
    outline: none;
    border-radius: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.rangeslider-horizontal .rangeslider__handle:focus {
    outline: none;
}

.rangeslider-horizontal .rangeslider__handle:after {
    display: none;
    content: ' ';
    position: absolute;
    width: 14px;
    height: 14px;
    top: -2px;
    left: 6px;
    border-radius: 50%;
    background-color: #dadada;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) inset, 0 -1px 3px rgba(0, 0, 0, 0.4) inset;
}

/**
* Rangeslider - Reverse
*/
.rangeslider-reverse.rangeslider-horizontal .rangeslider__fill {
    right: 0;
}

.rangeslider-reverse.rangeslider-vertical .rangeslider__fill {
    top: 0;
    bottom: inherit;
}

/**
* Rangeslider - Labels
*/
.rangeslider__labels {
    position: relative;
    margin: -3px;
}

.rangeslider-vertical .rangeslider__labels {
    position: relative;
    list-style-type: none;
    margin: 0 0 0 24px;
    padding: 0;
    text-align: left;
    width: 250px;
    height: 100%;
    left: 10px;
}

.rangeslider-vertical .rangeslider__labels .rangeslider__label-item {
    position: absolute;
    transform: translate3d(0, -50%, 0);
}

.rangeslider-vertical .rangeslider__labels .rangeslider__label-item::before {
    content: '';
    width: 10px;
    height: 2px;
    background: black;
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.rangeslider__labels .rangeslider__label-item {
    position: absolute;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    top: 14px;
    font-family: 'WorkSans', Arial, Helvetica, sans-serif;
    transform: translate3d(-50%, 0, 0);
}
