<script>
// DAC-46345 inone-mobile move for UBER
if (!document.querySelector('.cq_isEditMode')) {
const lang = document.firstElementChild.lang || 'de';
const aliases = {
de: 'privatkunden/mobile',
fr: 'clients-prives/mobile',
it: 'clienti-privati/mobile',
en: 'residential/mobile',
}[lang];
const selectorsMatch = location.pathname.match(/[/][^/.]+([^/]*)[.]html/) || '';
const selectors = selectorsMatch[1];
const suffix = location.href.replace(/^.*[.]html/, '');
location.href = `/${lang}/${aliases}${selectors}.html${suffix}`;
}
</script>