.md-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.md-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.md-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.md-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .md-slider {
    background-color: #2196F3;
}

input:focus + .md-slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .md-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.md-slider.round {
    border-radius: 34px;
}

.md-slider.round:before {
    border-radius: 50%;
}

.md-switch.md-switch-small{
    height: 22px;
    width: 54px;
}

.md-switch.md-switch-small .md-slider:before{
    height: 16px;
    width: 16px;
    bottom: 3px;
}

.md-switch.md-switch-small input:checked + .md-slider:before{
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
}

.md-switch-form{
    display: block;
    margin-top: 3px;
    margin-bottom: 15px;
}



/********************* state toggler ************************/
input + .md-slider.md-slider-state-toggle {
    background-color: #009688;
}

input:checked + .md-slider.md-slider-state-toggle {
    background-color: #ccc;
}

input[disabled] + .md-slider.md-slider-state-toggle {
    background-color: #76bdb7;
}

input[disabled]:checked + .md-slider.md-slider-state-toggle {
    background-color: #e6e6e6;
}



input:checked + .md-slider.md-slider-state-toggle:before {
    -webkit-transform: translateX(-30px) !important;
    -ms-transform: translateX(-30px) !important;
    transform: translateX(-30px) !important;
}

.md-slider-state-toggle:before{
    left: 34px;
}

