Help checkbox does not display

uses a front-end framework called skel. The checkbox in the form form is not displayed and checked by F12. The code in the framework is as follows:

input[type="checkbox"],
input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    display: block; 
    float: left;
    margin-right: -2em;
    opacity: 0;
    width: 1em;
    
}

what does this mean? How to make checkbox display. I can"t even comment out this code.

Css
Aug.08,2021

opacity: 0; change to opacity: 1;


input[type="checkbox"],
input[type="radio"] {
    -moz-appearance: checkbox;
    -webkit-appearance: checkbox;
    -ms-appearance: checkbox;
    appearance: checkbox;
    display: block; 
    float: left;
    opacity: 1;
    margin-right: -2em;
    width: 1em;
}
Menu