.rangeslider,
.rangeslider__fill {
    display: block;
    -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0);
    -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0);
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.0);
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 36px;
}

.rangeslider {
    position: relative;
    background-image: linear-gradient(0deg, #6ebb48, #59b949, #3ab54a);
}

.rangeslider--horizontal {
    height: 20px;
    width: 100%;
}

.rangeslider--vertical {
    width: 50px;
    min-height: 150px;
    max-height: 100%;
    height: 100%;
    margin-left: 111px;
}

.rangeslider--disabled {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    opacity: 0.4;
}

.rangeslider__fill {
    /*background: #00ff00;*/
    /*position: absolute;*/
}

.rangeslider--horizontal .rangeslider__fill {
    top: 0;
    height: 100%;
}

.rangeslider--vertical .rangeslider__fill {
    bottom: 0;
    width: 100%;
}

.rangeslider__handle:before {
    content: "€";
    font-weight: bolder;
    font-size: 30px;
    position: absolute;
    left: 9px
}
.rangeslider__handle {
    background-image: linear-gradient(0deg, #dcdfe0, #ffffff);
    border: 1px solid #ccc;
    cursor: pointer;
    display: inline-block;
    width: 40px;
    height: 40px;
    position: absolute;
    background-size: 100%;

    -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}


.rangeslider--horizontal .rangeslider__handle {
    top: -10px;
    touch-action: pan-y;
    -ms-touch-action: pan-y;
}

.rangeslider--vertical .rangeslider__handle {
    left: 5px;
    touch-action: pan-x;
    -ms-touch-action: pan-x;
    z-index: 99999999999999;
}

input[type="range"]:focus + .rangeslider .rangeslider__handle {
    -moz-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
    -webkit-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
    box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
}
