Daniel K. yeah apologies for that Daniel. And actually, if you move that CSS to a different declaration, it'll only do what we originally intended to do which was hide the default dropdown/select arrow in forms that webflow has since it looks a bit messy.
This is the new CSS you'll want:
<!-- Keep this css code to improve the font quality-->
<style>
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-o-font-smoothing: antialiased;
}
select {
-webkit-appearance: none;
}
</style>