$(".parent .children1").click(function() {
$(".parent input").prop("checked", false);
});
$(".parent .children1").click(function() {
$(this).next('input').prop("checked", false);
});
$(".parent .children1").click(function() {
$(this).prev('input').prop("checked", false);
});
$(".parent .children1").click(function() {
$(this).closest('.parent').find('input').prop("checked", false);
});