How to use TinyMCE editor with Framework7?

Hello, im trying to use TinyMCE with my framework7 app.

I have all tinymce files inside public folder and linked it through index.html
<script type="module" src="/addons/tinymce/js/tinymce/tinymce.min.js"></script>

Im calling tinymce.init… on $on pageinit and it works, theme and its half working. I can use functions like bolding, underline but when tryint to use emojis, tables or anything that opens custom tinymce popup/window it does not work. It just wont open, no errors or anything. Im new to freamework7 so is there any options to enable that popups?

Fixed by adding custom css:

.tox{
  z-index: 9999999999999999999 !important;
}