Hello,
In the config file you are resetting all the default styles including the rtl, but your main style is not RTL ready:
//register my own styles
add_filter('bbp_default_styles', 'avia_bbpress_deregister_default_assets', 10, 1);
function avia_bbpress_deregister_default_assets($styles)
{
return array();
}
I have rtled copy of the file and added a check to the config.php to load it in rtl mode,
you can check it here: https://github.com/yehudah/Enfold—bbpress-RTL-Fix.
You can use it (will be happy to get credit, please) or just removing the main bbpress style and leave his default rtl.
Thanks.