No matter what I try, I just can't seem to get the checkbox positioned correctly next to the label. Moving the checkbox to the right of the label is easy when it's a standard checkbox, but for some reason, I can't achieve the same result with a custom-checkbox type.
<div class="custom-control custom-checkbox mb-3">
<input type="checkbox" class="custom-control-input" id="customCheck" name="example1">
<label class="custom-control-label" for="customCheck">Label</label>
</div>