﻿
        .scroller .alert {
    padding: 3px 17px 3px 15px;
    margin: 0px 4px 0px 0px;
}
        .switch
        {
            position: relative;
            display: inline-block;
            width: 51px;
            height: 25px;
        }
        
        .switch input
        {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .lockslider
        {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            -webkit-transition: .4s;
            transition: .4s;
        }
        
        .lockslider:before
        {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            -webkit-transition: .4s;
            transition: .4s;
        }
        
        input:checked + .lockslider
        {
            background-color: #429053;
        }
        
        input:focus + .lockslider
        {
            box-shadow: 0 0 1px #2196F3;
        }
        
        input:checked + .lockslider:before
        {
            -webkit-transform: translateX(26px);
            -ms-transform: translateX(26px);
            transform: translateX(26px);
        }
        
        /* Rounded sliders */
        .lockslider.round
        {
            border-radius: 34px;
        }
        
        .lockslider.round:before
        {
            border-radius: 50%;
        }
        
        .max-width120
        {
            width: 120px;
        }
        
        .ml5
        {
            margin-left: 5px;
        }
        
        .selectAllset
        {
            padding: 5px 10px 5px 5px;
            margin: 5px;
        }