customCheckbox = function (arr, obj) {
const form = Inputs.checkbox(arr, obj);
const scope = DOM.uid().id;
form.classList.add(scope);
form.append(htl.html`<style>
form.${scope}, .${scope} > div label { display: block }
form.${scope} > label {font-weight: bold;}
`);
return form;
}