Maybe you should reconsider RadzenLayout ,
because we lose the ability to create our own fullscreen elements, windows,,,
as full screen picture viewer or own modal windows?
The cause of the issue is that RadzenBody has transform: translateZ(0) which for some reason acts as position: absolute. As a result all fixed children of RadzenBody are positioned according RadzenBody itself and not the browser viewport. We needed this translateZ(0) as a fix for some animation flickering. Setting style="transform: none" overrides translateZ and restores the stacking order.