My website is designed with the Materialize framework which includes a select field feature:
.input-field
Region(s)
= select_tag 'user[region_ids][]', options_for_select(@regions_list), :multiple => true, :class => %w(toHide regionSelector validate), :required => true
%label{ for: "user[region_ids][]" } The region is required
https://i.sstatic.net/nNpmN.png
Currently, the validation popup appears at the top-left corner of the input-field. However, I would like it to be aligned either at the bottom-left or bottom-center. What steps can I take to make this change?