facetwp 2 column css for checkboxes

/** with a basic grid **/
.facetwp-type-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/** with floats **/
.facetwp-checkbox:nth-child(2n) {
    float: right;
}
.facetwp-checkbox:nth-child(2n+1) {
    float: left;
    clear: both;
}
.facetwp-overflow {
    clear:both;
}
.facetwp-toggle {
    float: left;
    clear: both;
}