input[type=range] {
    -webkit-appearance: none;
    background: transparent;

    width: 12rem;
}

input[type=range]:focus {
    outline: none;
}

/* webkit thumb */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: #cccccc;

    margin-top: 0px;

    height: 8px;
    width: 7px;
    border: 0 solid transparent;
    border-radius: 2px;

    cursor: pointer;
}


/* firefox thumb */
input[type=range]::-moz-range-thumb {
    background: #cccccc;

    height: 8px;
    width: 7px;
    border: 0 solid transparent;
    border-radius: 2px;

    cursor: pointer;
}

/* webkit track */
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    border-radius: 2px;
    margin: 6px 0;

    background: #b4b4b455;

    cursor: pointer;
}

/* firefox track */
input[type=range]::-moz-range-track {
    width: 100%;
    height: 8px;
    border-radius: 2px;

    background: #b4b4b455;

    cursor: pointer;
}