This commit is contained in:
2026-03-04 09:51:17 +01:00
parent e1ef6af9a9
commit ed6066357a
2 changed files with 24 additions and 1 deletions

View File

@@ -197,6 +197,7 @@ document.addEventListener("DOMContentLoaded", function() {
} }
}); });
} }
*/
} }
initPhoneCallFunctionality(); initPhoneCallFunctionality();

View File

@@ -56,10 +56,18 @@
} }
/* Cookiebot Banner - Force to bottom of screen */ /* Cookiebot Banner - Force to bottom of screen */
#CybotCookiebotDialog { #CybotCookiebotDialog,
#CybotCookiebotDialog.CybotEdge,
div#CybotCookiebotDialog {
top: auto !important; top: auto !important;
bottom: 0 !important; bottom: 0 !important;
position: fixed !important; position: fixed !important;
transform: none !important;
}
#CybotCookiebotDialogBody {
max-height: 40vh !important;
overflow-y: auto !important;
} }
* { * {
@@ -2224,4 +2232,18 @@ body {
align-items: center; align-items: center;
gap: 15px; gap: 15px;
} }
}
/* Cookiebot Banner Override - End of file for maximum specificity */
#CybotCookiebotDialog,
#CybotCookiebotDialog.CybotEdge,
div#CybotCookiebotDialog,
#CybotCookiebotDialog[style] {
top: auto !important;
bottom: 0 !important;
left: 0 !important;
right: 0 !important;
position: fixed !important;
transform: none !important;
margin: 0 !important;
} }