diff --git a/backend/src/schema/resolvers/users/location.spec.js b/backend/src/schema/resolvers/users/location.spec.js
index 92f08893e..c0525ca1c 100644
--- a/backend/src/schema/resolvers/users/location.spec.js
+++ b/backend/src/schema/resolvers/users/location.spec.js
@@ -121,7 +121,7 @@ describe('Location Service', () => {
const result = await query({ query: queryLocations, variables })
expect(result.data.queryLocations).toEqual(
expect.arrayContaining([
- { id: 'place.14094307404564380', place_name: 'Berlin, Germany' },
+ { id: expect.stringMatching(/^place\.[0-9]+$/), place_name: 'Berlin, Germany' },
{
id: expect.stringMatching(/^place\.[0-9]+$/),
place_name: 'Berlin, Maryland, United States',
diff --git a/webapp/assets/_new/styles/tokens.scss b/webapp/assets/_new/styles/tokens.scss
index 53abd01f8..6aa6410df 100644
--- a/webapp/assets/_new/styles/tokens.scss
+++ b/webapp/assets/_new/styles/tokens.scss
@@ -356,3 +356,22 @@ $media-query-x-large: (min-width: 1200px);
/**
* @tokens Background Images
*/
+
+/**
+ * @tokens Header Color
+ */
+
+$color-header-background: $color-neutral-100;
+
+/**
+ * @tokens Footer Color
+ */
+
+$color-footer-background: $color-neutral-100;
+$color-footer-link: $color-primary;
+
+/**
+ * @tokens Locale Menu Color
+ */
+
+$color-locale-menu: $text-color-soft;
\ No newline at end of file
diff --git a/webapp/assets/styles/imports/_branding.scss b/webapp/assets/styles/imports/_branding.scss
new file mode 100644
index 000000000..75058595d
--- /dev/null
+++ b/webapp/assets/styles/imports/_branding.scss
@@ -0,0 +1,5 @@
+/*
+ *
+ * Here, all SCSS variables and classes can be adapted to your custom design.
+ *
+*/
\ No newline at end of file
diff --git a/webapp/assets/styles/main.scss b/webapp/assets/styles/main.scss
index d6821e013..144701f83 100644
--- a/webapp/assets/styles/main.scss
+++ b/webapp/assets/styles/main.scss
@@ -179,4 +179,4 @@ hr {
.dropdown-arrow {
font-size: $font-size-xx-small;
-}
+}
\ No newline at end of file
diff --git a/webapp/components/Dropdown.vue b/webapp/components/Dropdown.vue
index c01b12bd9..7e4d21223 100644
--- a/webapp/components/Dropdown.vue
+++ b/webapp/components/Dropdown.vue
@@ -8,7 +8,7 @@
:offset="offset"
>