﻿ .ios7-switch {
    display: inline-block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;

    width: 100%;
     line-height: 40px;
}

.ios7-switch input {
    opacity: 0;
    position: absolute;
}

.ios7-switch input + span {
position: relative;
    display: inline-block;
    width: 2.1em;
    height: 1.2em;
    margin-top: 5px;
    background: white;
    box-shadow: inset 0px 2px 3px 1px #71767c!important;
    border-radius: 1em !important;
    vertical-align: -0.15em;
    transition: all 0.40s cubic-bezier(.17,.67,.43,.98);
}

.ios7-switch:active input + span,
.ios7-switch input + span:active {
    box-shadow: inset 0 0 0 0.73em #e9e9e9 !important;
}

.ios7-switch input + span:after {
    position: absolute;
    display: block;
    content: '';
    width: 0.875em;
    height: 0.875em;
    border-radius: 0.4375em;
    top: 0.1425em;
    left: 0.1925em;
    /*background: #ff3838;*/
        background: radial-gradient(circle at 10px 10px, #e86161, #ff3838);
    box-shadow: inset 0 0 0 -3.97em rgba(0,0,0,0.1), 0 0 1.05em rgba(0,0,0,0.05), 0 0.1em 0.2em rgba(0,0,0,0.2);
    transition: all 0.25s ease-out;
}

.ios7-switch:active input + span:after,
.ios7-switch input + span:active:after {
    width: 1.15em;
}

/*.ios7-switch input:checked + span {
    box-shadow: inset 0 0 0 0.73em #4cd964 !important;
}*/

.ios7-switch input:checked + span:after {
    left: 1.0125em;
    /*background: #33be4b;*/
    background: radial-gradient(circle at 10px 10px, #61f352, #33be4b);
}

/*.ios7-switch:active input:checked + span:after,
.ios7-switch input:checked + span:active:after {
    left: 0.4375em;
}*/

/* accessibility styles */
/*.ios7-switch input:focus + span:after {
    box-shadow: inset 0 0 0 0.03em rgba(0,0,0,0.15),
                0 0 0.05em rgba(0,0,0,0.08),
                0 0.1em 0.2em rgba(0,0,0,0.3);
    background: #fff;
}*/

/*.ios7-switch input:focus + span {
    box-shadow: inset 0 0 0 0.0625em #dadada;
}*/

/*.ios7-switch input:focus:checked + span {
    box-shadow: inset 0 0 0 0.73em #33be4b !important;
}*/

/* reset accessibility style on hover */
/*.ios7-switch:hover input:focus + span:after {
    box-shadow: inset 0 0 0 0.03em rgba(0,0,0,0.1),
                0 0 0.05em rgba(0,0,0,0.05),
                0 0.1em 0.2em rgba(0,0,0,0.2);
    background: #fff;
}

.ios7-switch:hover input:focus + span {
    box-shadow: inset 0 0 0 0.0625em #e9e9e9 !important;
}

.ios7-switch:hover input:focus:checked + span {
    box-shadow: inset 0 0 0 0.73em #4cd964 !important;
}*/