Checkbox List Click

I noticed the checkboxlist items will span the entire width of the rz-checkbox-list-vertical container.

So I can toggle the checkbox by clicking the whitespace to right, instead of only the label and checkbox element.

You can see it happen in your demo:

Can this be fixed or what do you recommend outside of manually changing the rz-checkbox-list element to display as inline-block

You can easily modify this if you don't like the default behavior using the following style:

<style type="text/css">
.rz-checkbox-list-vertical .rz-checkbox {
   width: fit-content;
}
</style>

That is perfect. Thank you.