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;
}
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b35de2-2bfc4.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b35de2-2bfc4.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?