.el-radio.el-radio-sm, .el-checkbox.el-checkbox-sm, .el-switch.el-switch-sm {
    font-size: 85%;
}
.el-switch {
    display: inline-block;
    font-size: 100%;
    height: 1.6em;
    position: relative;
}
.el-switch, .el-switch-style, .el-switch-style:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


.el-switch > input[type="checkbox"] {
    display: none;
}
input[type=checkbox], input[type=radio] {
    margin: 4px 0 0;
    margin-top: 1px\9;
    line-height: normal;
}
input[type=checkbox], input[type=radio] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}


.el-switch > input[type="checkbox"]:checked + .el-switch-style {
    background-color: #5d9fe4;
}
.el-switch .el-switch-style {
    height: 1.5em;
    left: 0;
    background: #C0CCDA;
    -webkit-border-radius: 0.8em;
    border-radius: 0.8em;
    display: inline-block;
    position: relative;
    top: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 3em;
    cursor: pointer;
}
.el-switch, .el-switch-style, .el-switch-style:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


.el-switch .el-switch-style:before {
    display: block;
    content: '';
    height: 1.4em;
    position: absolute;
    width: 1.4em;
    background-color: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    left: 0.1em;
    top: 0.1em;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


.el-switch > input[type="checkbox"]:checked + .el-switch-style:before {
    left: 50%;
}