Created as a result of AFB accessibility testing results T323634
```
a. Additionally, what are your thoughts on this alternate option, which uses aria-hidden on the label element to reduce verbosity for screen readers?
This would be an improvement for screen reader users. When navigating with the arrow keys, the screen reader announces the button a single time rather than twice where the second announcement does not provide any additional information.
```
AFB validated approah of using `aria-hidden` to hide the `<label>` element in the checkbox hack, as the `<input>` element is already labeled and is already acting as the "button" for the dropdown. Ordinarily it's considered bad practice to use `aria-hidden` on a visible element, but given AFB's guidance, it should be safe to use in this specific case