I am currently working with a list that contains checkboxes, but they are displaying with the default CSS style. How can I change the CSS style of the checkboxes? Below is the code I am using, and I need to modify the CSS of the checkboxes.
<div id="DepartmentList">
<ul data-role="listview" data-style="inset" data-template="script-id" data-source="listData"></ul>
<script id="script-id" type="text/x-kendo-template">
<div>
<input type="checkbox" value="#: department#" class="checkclass" onchange="handleDepartmentChange(this);" />
<h3 class="checkclass">#: department#</h3>
</div>
</script>
</div>