#sidebar_menu li a, .sidebar-nav li a {
    color: #999;
    display: block;
    float: left;
    text-decoration: none;
    width: 140px;
    /*background: #252525;*/
    /*border-top: 1px solid #373737;*/
    /*border-bottom: 1px solid #1A1A1A;*/
    -webkit-transition: background .5s;
    -moz-transition: background .5s;
    -o-transition: background .5s;
    -ms-transition: background .5s;
    transition: background .5s;
}

.sidebar-nav li {
    line-height: 40px;
    text-indent: 20px;
}

.sidebar-nav li a {
    color: #999999;
    display: block;
    text-decoration: none;
}

.sidebar-nav li.stream_watcher:hover {
    text-decoration: none;
}

.sidebar-nav li.stream_user:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.sidebar-nav li.stream_user svg {
    visibility: hidden;
}

.sidebar-nav li.stream_user.selected_stream svg {
    visibility: visible;
}

/*.sidebar-nav li a:active,*/
/*.sidebar-nav li a:focus {*/
/*    text-decoration: none;*/
/*}*/

.sidebar-nav > .sidebar-brand {
    height: 65px;
    line-height: 60px;
    font-size: 18px;
}

.sidebar-nav > .sidebar-brand a {
    color: #999999;
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: none;
}

#sidebar-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}


.sidebar-nav {
    display: block;
    float: right;
    width: 140px;
    list-style: none;
    margin: 0;
    padding: 0;
}

input[type="range"] {
    width: 100%; /* Full-width slider */
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    margin-top: -6px; /* Adjust based on your slider's specific styling */
    height: 20px;
    width: 20px;
    background: #999999;
    cursor: pointer;
    border-radius: 50%;
}

input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    background: #ccc;
    cursor: pointer;
}

input[type="range"] {
    width: 100%; /* Full-width slider */
}

/* For Firefox: Style the thumb */
input[type="range"]::-moz-range-thumb {
    margin-top: -6px;
    width: 20px;
    height: 20px;
    background: #999999; /* Same as your WebKit styling */
    border-radius: 50%;
    cursor: pointer;
    border: none; /* Remove default border */
}

/* For Firefox: Style the track */
input[type="range"]::-moz-range-track {
    width: 100%;
    height: 8px;
    background: #ccc; /* Same as your WebKit styling */
    cursor: pointer;
}

/* Optional: For Firefox to remove the focus ring */
input[type="range"]:focus {
    outline: none;
}

/* ############################################### */
.custom-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

.custom-checkbox {
    display: flex;
    align-items: center;
}

.custom-checkbox span {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #ccc;
    position: relative;
    cursor: pointer;
    margin-right: 5px;
}

/* Styling for when checkbox is checked */
.custom-checkbox input[type="checkbox"]:checked + span {
    background: #999;
}

.custom-checkbox input[type="checkbox"]:checked + span:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
}

.custom-checkbox label {
    margin-bottom: 0;
    color: #999;
    font-size: 18px;
    cursor: pointer;
}