/* Toggle buttons */
.toggle-active {
    color: green;
}
.toggle-inactive {
    color: #ff6600;
}

.title {
    display: inline-block;
    width:300px;
    height: 40px;
    padding-top: 10px;
}
.t-wens {
    color: black;
    background-color: #D9ECFB;
}

.t-status {
    color: black;
    background-color: #FFE1E6;
}

input[type="range"]  {
    /* -webkit-appearance: none !important; */
    width: 160px;
    height: 2px;
    background: black;
    border: none;
    outline: none;
}

.wens::-webkit-slider-thumb {
    background-color: #D9ECFB;
}

.status::-webkit-slider-thumb {
    background-color: #FFE1E6;
}



