$("input").each(function() { //проверка после перезагрузки
if($(this).prop("checked")){
$(this).closest('.group_wrapper').find('label').addClass('active');
} else {
$(this).closest('.group_wrapper').find('label').removeClass('active');
}
});
$("input").change(function() { //по клику
if($(this).prop("checked")){
$(this).closest('.group_wrapper').find('label').addClass('active');
} else {
$(this).closest('.group_wrapper').find('label').removeClass('active');
}
});