I've managed a Checkbox on the first Line in a Block. Plase help with CSS to hide one of the two bullets

This should hide the bullet points only for lists that have at least a checkbox:

.block-body dl>li:has(.form-checkbox), .block-body ol>li:has(.form-checkbox), .block-body ul>li:has(.form-checkbox) {
    list-style-type: none;
}
.block-body dl:has(.form-checkbox), .block-body ol:has(.form-checkbox), .block-body ul:has(.form-checkbox), li p:has(.form-checkbox) {
    margin-left: 0;
}