.checkbox > label {
    font-family: 'robotoregular' !important;
    display: inline-block;
    position: relative;
    padding-left: 26px;
    line-height: 20px;
}

/*
.checkbox.small label {
    padding-left: 22px;
}
*/
    .checkbox > label:before {
        content: "";
        display: inline-block;
        position: absolute;
        height: 19px;
        width: 19px;
        left: 0;
        margin-top: 1px;
        border: 1px solid #cccccc;
        border-radius: 3px;
        background-color: #fff;
        -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
        -moz-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
        -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
        transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    }

/*
.checkbox.small label:before {
    height: 15px;
    width: 15px;
}
*/

.checkbox > label:after {
    display: inline-block;
    position: absolute;
    padding-left: 4px;
    font-size: 12px;
    height: 19px;
    width: 19px;
    color: #555;
    left: -3px;
    top: 0;
}

#divAcceptTerms .checkbox > label:after {
    display: inline-block;
    position: absolute;
    padding-left: 5px;
    font-size: 12px;
    height: 19px;
    width: 19px;
    left: -3px;
    top: 0;
}
/*
.checkbox.small label:after {
    padding-left: 3px;
    padding-top: 0;
    font-size: 9px;
    height: 15px;
    width: 15px;
}
*/

.text-center .checkbox > label:after {
    margin-left: -2px !important;
}

.text-center .checkbox {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.checkbox input[type=checkbox] {
    /*display: none;*/
    position: absolute;
    /*top: -1px;*/
    margin-left: 5px;
    opacity: 0;
    height: 0;
    width: 0;
}

    .checkbox input[type=checkbox]:focus + label:before {
        border-color: #bbd6e6;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
        outline: 0 none;
    }

    .checkbox input[type=checkbox]:checked + label:before {
        background-color: #0c73ac;
        border-color: #0c73ac;
    }

    .checkbox input[type=checkbox]:checked + label:after {
        font-family: 'FontAwesome';
        content: "\f00c";
        color: #fff;
    }

    .checkbox input[type=checkbox]:disabled + label {
        opacity: 0.50;
        cursor: not-allowed;
    }

        .checkbox input[type=checkbox]:disabled + label:before {
            background-color: #ccc;
            cursor: not-allowed;
        }
        .checkbox input[type=checkbox]:disabled + label:after {
            color: #000;
        }

.checkbox.checkbox-circle > label:before {
    border-radius: 50%;
}

.checkbox-primary input[type=checkbox]:checked + label:before {
    background-color: #0c73ac;
    border-color: #0c73ac;
}

.checkbox-primary input[type=checkbox]:checked + label:after {
    color: #fff;
}

.checkbox-danger input[type=checkbox]:checked + label:before {
    background-color: #d9534f;
    border-color: #d9534f;
}

.checkbox-danger input[type=checkbox]:checked + label:after {
    color: #fff;
}

.checkbox-info input[type=checkbox]:checked + label:before {
    background-color: #5bc0de;
    border-color: #bbd6e6;
}

.checkbox-info input[type=checkbox]:checked + label:after {
    color: #fff;
}

.checkbox-warning input[type=checkbox]:checked + label:before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.checkbox-warning input[type=checkbox]:checked + label:after {
    color: #fff;
}

.checkbox-success input[type=checkbox]:checked + label:before {
    background-color: #0c73ac;
    border-color: #0c73ac;
}

.checkbox-success input[type=checkbox]:checked + label:after {
    color: #fff;
}

.radio > label {
    font-family: 'robotoregular' !important;
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding-left: 26px;
}

    .radio > label:before {
        border: 1px solid #0c73ac;
        background-color: #fff;
        border-radius: 100%;
        position: absolute;
        height: 15px;
        content: "";
        width: 15px;
        top: 2px;
        left: 0;
    }

    .radio > label:after {
        -webkit-transition: opacity 0.25s ease;
        -moz-transition: opacity 0.25s ease;
        -o-transition: opacity 0.25s ease;
        transition: opacity 0.25s ease;
        background-color: #bbd6e6;
        border-radius: 100%;
        position: absolute;
        content: " ";
        opacity: 0;
        height: 9px;
        width: 9px;
        left: 3px;
        top: 5px;
    }

.radio input[type=radio] {
    position: absolute;
    margin-left: 5px;
    opacity: 0;
    height: 0;
    width: 0;
}

    .radio input[type=radio]:checked + label:after {
        opacity: 1;
    }

    .radio input[type=radio]:disabled + label {
        opacity: 0.65;
    }

        .radio input[type=radio]:disabled + label:before {
            cursor: not-allowed;
        }

.radio-primary input[type=radio] + label:after {
    background-color: #0c73ac;
}

.radio-primary input[type=radio]:checked + label:before {
    border-color: #0c73ac;
}

.radio-primary input[type=radio]:checked + label:after {
    background-color: #0c73ac;
}

.radio-danger input[type=radio] + label:after {
    background-color: #d9534f;
}

.radio-danger input[type=radio]:checked + label:before {
    border-color: #d9534f;
}

.radio-danger input[type=radio]:checked + label:after {
    background-color: #d9534f;
}

.radio-info input[type=radio] + label:after {
    background-color: #5bc0de;
}

.radio-info input[type=radio]:checked + label:before {
    border-color: #5bc0de;
}

.radio-info input[type=radio]:checked + label:after {
    background-color: #5bc0de;
}

.radio-warning input[type=radio] + label:after {
    background-color: #f0ad4e;
}

.radio-warning input[type=radio]:checked + label:before {
    border-color: #f0ad4e;
}

.radio-warning input[type=radio]:checked + label:after {
    background-color: #f0ad4e;
}

.radio-success input[type=radio] + label:after {
    background-color: #5cb85c;
}

.radio-success input[type=radio]:checked + label:before {
    border-color: #bbd6e6;
}

.radio-success input[type=radio]:checked + label:after {
    background-color: #bbd6e6;
}
