filter close icon on IE browser issue

Hello,
when i have run below snippet on IE then close icon of filter is appearing after using filter,but this is not in case of Chrome or Mozilla.
Either i want to remove the icon which is only appearing on IE or I want to clear filter after click on that icon i.e Event on close icon click

https://snippet.webix.com/iajohxau

this is IE related option.
to remove try to add this style

::-ms-clear {
    display: none;
}

Thanks @integral it works