Select drop-down broken under Firefox
Firefox has problems if you use <select> element inside a container which has CSS translate applied. To fix that you have to avoid translating and apply the following hack, targeting the element only under Firefox.
@-moz-document url-prefix() { .your-translated-element { transform: none; } }
P.S. the answer was found here.