<label class="radio-container">
<input type="radio" name="" id="" value="" aria-label="Input Radio" aria-checked="false" />
<span class="checkmark"></span>
<span class="form-label">Label</span>
</label>
<!-- CHECKED ---------->
<label class="radio-container">
<input type="radio" name="" id="" value="" aria-label="Input Radio" aria-checked="true" checked />
<span class="checkmark"></span>
<span class="form-label">Label</span>
</label>
<!-- CHECKED DISABLED ---------->
<label class="radio-container disabled">
<input type="radio" name="" id="" value="" aria-label="Input Radio" aria-checked="true" checked disabled />
<span class="checkmark"></span>
<span class="form-label">Label</span>
</label>
<!-- DISABLED ---------->
<label class="radio-container disabled">
<input type="radio" name="" id="" value="" aria-label="Input Radio" aria-checked="false" disabled />
<span class="checkmark"></span>
<span class="form-label">Label</span>
</label>
<!-- SUCCESS ---------->
<label class="radio-container is-valid">
<input type="radio" name="" id="" value="" aria-label="Input Radio" aria-checked="true" checked />
<span class="checkmark"></span>
<span class="form-label">Label</span>
</label>
<!-- ERROR ---------->
<label class="radio-container is-invalid">
<input type="radio" name="" id="" value="" aria-label="Input Radio" aria-checked="false" />
<span class="checkmark"></span>
<span class="form-label">Label</span>
</label>