****My first comment would be to NOT use vlan=1 if possible. 
Create vlan11 for admin vlan.
Bridges would still retain their default pvid setting of 1, but the key here is not to assign a dhcp subnet to the bridge!! (instead set to vlan11)!
By the way that is a quick change (ip address to vlan11 interface and dhcp-server to vlan 11 interface - no need to change pool or dhcp server network easy peasy)
I refuse to ensure your interface list members is accurate LOL
What happened to eth 6,7,8,9,10 LOL
This rule looks to be wrong from my perspective. I dont think you tag VLANS, just ethports,wlans!! That could be one significant error.
add bridge=br_vlan comment=Admin tagged=br_vlan,vlan1 untagged=sfp1,ether6
vlan-ids=1
in any case if we move to vlan11 for the admin network it would be…
/interface bridge vlan
add bridge=br_vlan comment=Admin tagged=br_vlan, untagged=sfp1ether6 \ ******** see below for another modification and why.**
vlan-ids=11
FOR THE REST OF YOUR interface bridge vlan rules, REMOVE THE VLAN from the tagged or untagged portions (vlanIDs are the only way to identify vlans in these rules)
Including these four
add bridge=br_vlan comment=IPTV tagged=sfp1,br_vlan,vlan40 vlan-ids=40
add bridge=br_vlan comment=WLAN tagged=sfp1,br_vlan,vlan60 vlan-ids=60
add bridge=br_vlan comment=Gast tagged=sfp1,br_vlan,vlan70 vlan-ids=70
add bridge=br_vlan comment=Gaming tagged=sfp1,br_vlan,vlan80 vlan-ids=80
Personally since there is no difference in the interfaces listed here (all sfp1, br-vlan) one could write it as
add bridge=br_vlan comment=IPTV-WLAN-Gast-Gaming tagged=sfp1,br_vlan vlan-ids=40,60,70,80
******* HOWEVER it is clear that sfp1 is a trunk PORT.
/interface bridge port
add bridge=br_vlan hw=no interface=sfp1
and yet (in this rule I want you to get rid of…
/interface bridge vlan
add bridge=br_vlan comment=Admin tagged=br_vlan,vlan1 untagged=sfp1,ether6
vlan-ids=1
sfp1 is untagged as if it was an access port???
Therefore the new correct rule should be
/interface bridge vlan
add bridge=br_vlan comment=Admin tagged=br_vlan, sfp1 untagged=ether6
vlan-ids=11
I will stop there and let you adjust as that may fix all as you see fit and the Firewall rules need not be reviewed.