.custom_radio {
    display: inline-block;
    cursor: pointer;
    width: 15px;
    height: 15px;
    background-image: url('./../../images/bg_radio_unchecked.png');
    margin-right: 10px;
}

.custom_radio.checked {
    width: 15px;
    height: 15px;
    background-image: url('./../../images/bg_radio_checked.png');
}
.custom_checkbox {
    display: inline-block;
    cursor: pointer;
    width: 15px;
    height: 15px;
    background: url('./../../images/bg_checkbox_unchecked.png') 0 0 no-repeat;
    margin-right: 10px;
}

.custom_checkbox.checked {
    width: 15px;
    height: 15px;
    background: url('./../../images/bg_checkbox_checked.png') 0 0 no-repeat;
}