﻿div.checkbox.switcher, div.radio.switcher {
    margin-top: 0px;
    margin-bottom: 0px;
}

    div.checkbox.switcher label, div.radio.switcher label {
        padding: 0;
        width: 50px;
    }

        div.checkbox.switcher label *, div.radio.switcher label * {
            vertical-align: middle;
        }

        div.checkbox.switcher label input, div.radio.switcher label input {
            display: none;
        }

            div.checkbox.switcher label input + span{
                position: relative;
                display: inline-block;
                margin-right: 0px;
                width: 50px;
                height: 28px;
                background: #C7C6C6;
                /*border: 1px solid #eee;*/
                border-radius: 50px;
                transition: all 0.3s ease-in-out;
            }

                div.checkbox.switcher label input + span small{
                    position: absolute;
                    display: block;
                    /*width: 50%;
                    height: 100%;*/
                    background: #fff;
                    border-radius: 50%;
                    transition: all 0.3s ease-in-out;
                    left: 3%;
                    width: 25px;
                    height: 25px;
                    margin-top: 0.14em;
                }

            div.checkbox.switcher label input:checked + span{
                background: #9464A7;
                border-color: #9464A7;
            }

                div.checkbox.switcher label input:checked + span small, div.radio.switcher label input:checked + span small {
                    left: 47%;
                }
