jQuery(function($){
$(document).on('click touch', function (e) {
// Check if click was triggered on or within #menu_content
if( $(e.target).closest(".subFixedPortf").length > 0 ) {
return false;
}
closeRightPortf();
function closeRightPortf() {
$('.fixedRightPortf').removeClass('show');
}
});
});