I want you to click on the pseudo-element, the menu opens, I tried several codes but none worked, the last one I tried was this:
$('#overlay-menu').after().click(function(){
var menu = $('#overlay-menu'); //Antes eu tentei usar o this, porém, sem sucesso também
if (menu.className != 'open') {
menu.className == 'open';
}
});