/*********************************************************************************/

.checkbox-block-container {
    display: block;
    height: 25px;
    margin: 3px;
    position: relative;
}

.checkbox {
    vertical-align: top;
    margin: 0 3px 0 0;
    width: 17px;
    height: 17px;
}

.checkbox + label {
    cursor: pointer;
}

.checkbox:not(checked) {
    position: absolute;
    opacity: 0;
}

.checkbox:not(checked) + label {
    position: relative;
    padding: 0 0 0 60px;
}

.checkbox:not(checked) + label:before {
    background: #da8080 none repeat scroll 0 0;
    border-radius: 13px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.63) inset;
    content: "";
    height: 26px;
    left: 0;
    position: absolute;
    top: -4px;
    width: 50px;
}

.checkbox:not(checked) + label:after {
    background: #ffffff none repeat scroll 0 0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.47);
    content: "";
    height: 22px;
    left: 2px;
    position: absolute;
    top: -2px;
    transition: all 0.2s ease 0s;
    width: 22px;
}

.checkbox:checked + label:before {
    background: #9FD468;
}

.checkbox:checked + label:after {
    left: 26px;
}

/*.checkbox:focus + label:before {*/
/*box-shadow: 0 0 0 3px rgba(255, 255, 0, .5);*/
/*}*/

/**************************************************************************************/
