/*
 * Author:  Nikola Vujović / www.ics.ba
 * Def:     Custom Checkbox
 */

.custom_check_box_v1 {height: 16px;display: inline-block;}
.custom_check_box_v1 .check_box {width: 14px;height: 14px;background-color: transparent;float: left;margin: 0;text-align: center;cursor: pointer;border: 1px solid #52cdd8;}
.custom_check_box_v1 .check_box {
    -webkit-border-radius: 8px;
    -moz-border-radius:    8px;
    border-radius:         8px;
}
.custom_check_box_v1 .check_box i.fa {width: 4px;height: 4px;background: #ffffff;display: none;margin: 4px auto 0;}
.custom_check_box_v1 .check_box i.fa {
    -webkit-border-radius: 5px;
    -moz-border-radius:    5px;
    border-radius:         5px;
}
.custom_check_box_v1 .check_box i.fa:before {content: ""}
.custom_check_box_v1 label {margin: -1px 0 0 21px !important;padding: 0 !important;}
.custom_check_box_v1.active .check_box i.fa {display: block;}