input[type=range] {
    -webkit-appearance: none;
    height: 2px;
    border-radius: 5px;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

input[type=range]:disabled {
    background: #9e9e9e;
}

input[type=range]:enabled {
    background: #f05d08;
}

.vranger {
    margin-top: 50px;
    transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    /*do same for other browsers if required*/
}

.light-control {
    width: 100%;
    display: flex;
}

.light-slider {
    min-width: 80px;
}

.light-btn {
    width: 15%;
}

input[type='range']:hover {
    opacity: 1;
}

input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}

input[type='range']::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}