/*
    Created on : 02.02.2024, 14:41:04
    Author     : ruediger
*/

input[type=range] {
    position: relative;
    display: block;
    width: 90%;
    height: 32px;

    margin: 0px auto;
    border: solid 0px;
    border-color: transparent;
    padding: 0px;

    background-color: transparent;
    color: transparent;
    box-shadow: none;

    -webkit-appearance: none;
}

input[type=range]:focus {
    border: solid 0px;
    outline: none;
}

input[type=range]::-moz-focus-outer {
    border: solid 0px;
}

/* range button */
input[type=range]::-webkit-slider-thumb {
    position: relative;
    top: -6px;

    width: 12px;
    height: 12px;

    border-radius: 8px;

    background-color: #3E9BD5;

    cursor: pointer;
    -webkit-appearance: none;
}

input.sw-disable[type=range]::-webkit-slider-thumb {
    background-color: #a0a0a0;
    cursor: auto;
}

input[type=range]::-moz-range-thumb {
    width: 12px;
    height: 12px;

    border: solid 0px;
    border-radius: 8px;

    background-color: #3E9BD5;

    cursor: pointer;
}

input.sw-disable[type=range]::-moz-range-thumb {
    background-color: #a0a0a0;
    cursor: auto;
}

input[type=range]::-ms-thumb {
    width: 12px;
    height: 12px;

    border-radius: 8px;

    background-color: #3E9BD5;

    cursor: pointer;
}

input.sw-disable[type=range]::-ms-thumb {
    background-color: #a0a0a0;
    cursor: auto;
}

/* range bar */
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 0px;

    border-bottom: solid 1px #d0d0d0;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 0px;

    border-bottom: solid 1px #d0d0d0;
}

input[type=range]::-ms-track {
    width: 100%;
    height: 0px;

    border: solid 0px transparent;
    border-bottom: solid 1px #d0d0d0;

    background-color: transparent;
}
