steps.className String
Specifies a custom class that will be set on the step container element.
Example
<div id="wizard"></div>
<script>
$("#wizard").kendoWizard({
steps: [{
title: "Initial step",
className: "custom"
},
"Second step",
"Third step"
]
});
</script>