.switchField
{
    display: block;
    clear: both;
    height: 30px;
    margin: 10px 0px 0px 10px;
}

.switchField .field
{
    display: inline-block;
    height: 30px;
    width: 50px;
    float: left;
}

.switchField .field label
{
    position: relative;
    display: block;
    height: 15px;
    width: 40px;
    background: #b8b8b8;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.switchField .field label:after
{
    position: absolute;
    left: -2px;
    top: -5px;
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 100px;
    background: #f2f2f2;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    content: '';
    transition: all 0.3s ease;
}

.switchField .field label:active:after
{
    transform: scale(1.15, 0.85);
}

.switchField .field input:checked ~ label
{
    background: #7fcae8;
}

.switchField .field input:checked ~ label:after
{
    left: 20px;
    background: #0091d1;
}

.switchField .field input:disabled ~ label
{
    pointer-events: none;
}

.switchField .field input:disabled ~ label:after
{
    background: #F2F2F2;
}

.switchField .label
{
    display: inline-block;
    margin: 2px 0px 0px 10px;
    font-weight: normal;
    font-size: 2;
    color: #646464;
}