.vinumplay-range-slider-input {
    box-sizing: border-box;
    appearance: none;
    width: 400px;
    margin: 0;
    padding: 0 2px;
    overflow: hidden;
    border: 0;
    border-radius: 1px;
    outline: none;
    background: linear-gradient(#AE475A,#AE475A) no-repeat center;
    background-size: 100% 4px;
    pointer-events: none;
    transition: none !important;
    height: 100%;
}

.vinumplay-range-slider-input:active, .vinumplay-range-slider-input:focus {
    outline: none;
}
.vinumplay-range-slider-input::-webkit-slider-thumb{
    height: 28px;
    width: 28px;
    border-radius: 28px;
    background-color: #fff;
    position: relative;
    margin: 5px 0;
    cursor: pointer;
    appearance: none;
    pointer-events: all;
    box-shadow: 0 1px 4px 0.5px rgba(0,0,0,0.25);
}

.vinumplay-range-slider-input::-moz-range-thumb{
    height: 28px;
    width: 28px;
    border-radius: 28px;
    background-color: #fff;
    position: relative;
    margin: 5px 0;
    cursor: pointer;
    appearance: none;
    pointer-events: all;
    box-shadow: 0 1px 4px 0.5px rgba(0,0,0,0.25);
}

.vinumplay-range-slider-input::-webkit-slider-thumb::before {
    content: '';
    display: block;
    position: absolute;
    top: 13px;
    left: 100%;
    width: 2000px;
    height: 2px;
}
.vinumplay-range-slider .vinumplay-range-slider-inputs-container{
    position: relative;
    height: 50px;
    min-width: 400px;
    width: 100%;
    background: linear-gradient(#cecece,#cecece) no-repeat center;
    background-size: 100% 4px;
    display: flex;
    align-items: center;
}
.vinumplay-range-slider .vinumplay-range-slider-inputs-container .vinumplay-range-slider-input {
    position: absolute;
}
.vinumplay-range-slider .vinumplay-range-slider-inputs-container .vinumplay-range-slider-input:nth-child(1)::-webkit-slider-thumb::before {
    background-color: none;
}
.vinumplay-range-slider .vinumplay-range-slider-inputs-container .vinumplay-range-slider-input:nth-child(2) {
    background: none;
}
.vinumplay-range-slider .vinumplay-range-slider-inputs-container .vinumplay-range-slider-input:nth-child(2)::-webkit-slider-thumb::before {
    background-color: grey;
}
.vinumplay-range-slider-label{
    display: flex;
    justify-content: space-between;
}