Use a semantic landmark element instead of role="search" on a div
While role="search" is valid, using the native <section role="search"> or the semantic <search> HTML5 element is more reliable.
So change <div role="search" class="...">
To : <search class="..."> or <section role="search" class="...">