Browse Source

Merge branch 'diff/june-2024'

# Conflicts:
#	gfi-ihk-2024/storybook-static/iframe.html
#	gfi-ihk-2024/storybook-static/index.json
#	gfi-ihk-2024/storybook-static/main.d1749640.iframe.bundle.js
#	gfi-ihk-2024/storybook-static/pages-event-overview-EventOverview-stories.7b38b31e.iframe.bundle.js
#	gfi-ihk-2024/storybook-static/pages-magazine-interview-MagazineInterview-stories.09e5c58f.iframe.bundle.js
#	gfi-ihk-2024/storybook-static/pages-participation-start-ParticipationStart-stories.180b631a.iframe.bundle.js
#	gfi-ihk-2024/storybook-static/project.json
#	gfi-ihk-2024/storybook-static/runtime~main.1cde2277.iframe.bundle.js
#	gfi-ihk-2024/storybook-static/sections-participation-stage-ParticipationStage-stories.b6ebb8b4.iframe.bundle.js
#	gfi-ihk-2024/storybook-static/stories.json
diff/feb-2025
Florian Eisenmenger 1 year ago
parent
commit
d29550bb4f
36 changed files with 1391 additions and 898 deletions
  1. +9
    -0
      gfi-ihk-2024/stories/_global/gfi-styles/_verteiler.scss
  2. +5
    -1
      gfi-ihk-2024/stories/_global/scripts/ihk.js
  3. +3
    -3
      gfi-ihk-2024/stories/_global/styles/grid.scss
  4. +2
    -0
      gfi-ihk-2024/stories/_global/styles/main.scss
  5. +31
    -17
      gfi-ihk-2024/stories/_global/styles/pictograms.scss
  6. +10
    -0
      gfi-ihk-2024/stories/_global/styles/typography.scss
  7. +961
    -765
      gfi-ihk-2024/stories/assets/fonts/pictograms/config.json
  8. BIN
      gfi-ihk-2024/stories/assets/fonts/pictograms/pictograms.eot
  9. +50
    -22
      gfi-ihk-2024/stories/assets/fonts/pictograms/pictograms.svg
  10. BIN
      gfi-ihk-2024/stories/assets/fonts/pictograms/pictograms.ttf
  11. BIN
      gfi-ihk-2024/stories/assets/fonts/pictograms/pictograms.woff
  12. BIN
      gfi-ihk-2024/stories/assets/fonts/pictograms/pictograms.woff2
  13. +1
    -1
      gfi-ihk-2024/stories/components/anchor-links/anchor-links.scss
  14. +37
    -0
      gfi-ihk-2024/stories/components/common-content/common-content.js
  15. +3
    -3
      gfi-ihk-2024/stories/components/contact/contact.scss
  16. +1
    -1
      gfi-ihk-2024/stories/components/footer/footer.scss
  17. +3
    -4
      gfi-ihk-2024/stories/components/header/header.js
  18. +4
    -1
      gfi-ihk-2024/stories/components/howto-list/howto-list.scss
  19. +22
    -19
      gfi-ihk-2024/stories/components/ihk-switch/ihk-switch.js
  20. +3
    -0
      gfi-ihk-2024/stories/components/ihk-switch/ihk-switch.scss
  21. +4
    -3
      gfi-ihk-2024/stories/components/image-text/image-text.scss
  22. +5
    -1
      gfi-ihk-2024/stories/components/mini-teaser/miniteaser.scss
  23. +130
    -13
      gfi-ihk-2024/stories/components/search-form/search-form.js
  24. +30
    -1
      gfi-ihk-2024/stories/pages/article/Article.stories.js
  25. +8
    -1
      gfi-ihk-2024/stories/pages/article/ArticlePage.js
  26. +1
    -1
      gfi-ihk-2024/stories/pages/magazine-interview/MagazineInterviewPage.js
  27. +2
    -2
      gfi-ihk-2024/stories/sections/feature/feature.scss
  28. +2
    -1
      gfi-ihk-2024/stories/sections/intro/intro.scss
  29. +4
    -3
      gfi-ihk-2024/stories/sections/marketingheader/marketingheader-typeahead.js
  30. +7
    -0
      gfi-ihk-2024/stories/sections/marketingheader/marketingheader.scss
  31. +1
    -1
      gfi-ihk-2024/stories/sections/marketingheader/marketingheaderslider.js
  32. +2
    -1
      gfi-ihk-2024/stories/sections/marketingheader/searchAccordion.js
  33. +1
    -1
      gfi-ihk-2024/stories/sections/participation-stage/participation-stage.scss
  34. +2
    -0
      gfi-ihk-2024/stories/sections/search/search.scss
  35. +39
    -31
      gfi-ihk-2024/stories/sections/slider/slider.js
  36. +8
    -1
      gfi-ihk-2024/stories/sections/teasers/teasers.scss

+ 9
- 0
gfi-ihk-2024/stories/_global/gfi-styles/_verteiler.scss View File

@@ -731,7 +731,16 @@
}
}

.right {
margin-right: 34px;
@media(max-width: 767px) {
margin-right: 20px;
}

@media(max-width: 359px) {
margin-right: 16px;
}
}

.verteiler-article-btn {
position: relative;


+ 5
- 1
gfi-ihk-2024/stories/_global/scripts/ihk.js View File

@@ -35,6 +35,10 @@ export default class ihk {
static realVH() {
const vh = window.innerHeight * 0.01;
document.documentElement.style.setProperty('--viewport-height', vh + 'px');

let scroller = document.scrollingElement;
// Width of the scrollbar
scroller.style.setProperty('--scrollbar-width', (window.innerWidth - scroller.clientWidth) + 'px');
}
}

@@ -49,4 +53,4 @@ $(document).ready(function () {
// trigger das init event auf der globale jquery instanz so dass es alle modulle mitkriegen (z.B. cookie.js)
//global.$('body').trigger('ihk-init');
UiUtils.initUI();
});
});

+ 3
- 3
gfi-ihk-2024/stories/_global/styles/grid.scss View File

@@ -23,9 +23,9 @@
max-width: 100%;
margin: 0 auto;

/*&.medium {
--container-width: 1100px;
}*/
&.medium {
//--container-width: 1220px;
}

&.small {
--container-width: 1000px;


+ 2
- 0
gfi-ihk-2024/stories/_global/styles/main.scss View File

@@ -3,6 +3,7 @@
--theme-color-background: #ffffff;

--theme-color-primary: #003366;
--theme-color-primary-microsite: #003366;
--theme-color-primary-rgb: 0, 51, 102;
--theme-color-primary-dimmed-01: #335C85;
--theme-color-primary-dimmed-02: #B0C4D6;
@@ -11,6 +12,7 @@


--theme-color-secondary: #56BD66;
--theme-color-secondary-microsite: #56BD66;
--theme-color-secondary-intensed: #2E8533;
--theme-color-secondary-dimmed: #E4F1E4;



+ 31
- 17
gfi-ihk-2024/stories/_global/styles/pictograms.scss View File

@@ -3,15 +3,15 @@
.pictogram-aeskulapstab:before { content: '\e802'; } /* '' */
.pictogram-anker:before { content: '\e803'; } /* '' */
.pictogram-anstossen:before { content: '\e804'; } /* '' */
.pictogram-arbeitsplatz:before { content: '\e805'; } /* '' */
.pictogram-bodensee-oberschwaben-a:before { content: '\e805'; } /* '' */
.pictogram-auktionshammer:before { content: '\e806'; } /* '' */
.pictogram-batterie:before { content: '\e807'; } /* '' */
.pictogram-ausruf:before { content: '\e808'; } /* '' */
.pictogram-bauhelm:before { content: '\e809'; } /* '' */
.pictogram-benefit-vorteil-geschenk:before { content: '\e80a'; } /* '' */
.pictogram-hand-geben-b:before { content: '\e80a'; } /* '' */
.pictogram-bett:before { content: '\e80b'; } /* '' */
.pictogram-blatt:before { content: '\e80c'; } /* '' */
.pictogram-blume:before { content: '\e80d'; } /* '' */
.pictogram-blume-a:before { content: '\e80d'; } /* '' */
.pictogram-blume-b:before { content: '\e80e'; } /* '' */
.pictogram-brief:before { content: '\e80f'; } /* '' */
.pictogram-brille-auf-buch:before { content: '\e810'; } /* '' */
@@ -31,7 +31,7 @@
.pictogram-dokument-a:before { content: '\e81e'; } /* '' */
.pictogram-dokument-b:before { content: '\e81f'; } /* '' */
.pictogram-dokument-c:before { content: '\e820'; } /* '' */
.pictogram-e-auto:before { content: '\e821'; } /* '' */
.pictogram-e-auto-a:before { content: '\e821'; } /* '' */
.pictogram-e-learning:before { content: '\e822'; } /* '' */
.pictogram-einfamilienhaus:before { content: '\e823'; } /* '' */
.pictogram-einkaufstasche-mit-eurozeichen:before { content: '\e824'; } /* '' */
@@ -45,9 +45,9 @@
.pictogram-fahne-kreuz:before { content: '\e82c'; } /* '' */
.pictogram-fahne-neutral:before { content: '\e82d'; } /* '' */
.pictogram-fahne-vertikal-gestreift:before { content: '\e82e'; } /* '' */
.pictogram-fahrrad-jobrad-dienstfahrrad:before { content: '\e82f'; } /* '' */
.pictogram-fahrrad-sportlich:before { content: '\e830'; } /* '' */
.pictogram-fahrrad:before { content: '\e831'; } /* '' */
.pictogram-fahrrad-c:before { content: '\e82f'; } /* '' */
.pictogram-fahrrad-b:before { content: '\e830'; } /* '' */
.pictogram-fahrrad-a:before { content: '\e831'; } /* '' */
.pictogram-faq-a:before { content: '\e832'; } /* '' */
.pictogram-faq-b:before { content: '\e833'; } /* '' */
.pictogram-fernglas:before { content: '\e834'; } /* '' */
@@ -55,17 +55,17 @@
.pictogram-flugzeug:before { content: '\e836'; } /* '' */
.pictogram-frage:before { content: '\e837'; } /* '' */
.pictogram-fragezeichen:before { content: '\e838'; } /* '' */
.pictogram-geld-zuschuss-foerderung:before { content: '\e839'; } /* '' */
.pictogram-erfurt:before { content: '\e839'; } /* '' */
.pictogram-geldsack:before { content: '\e83a'; } /* '' */
.pictogram-freiheitsstatue:before { content: '\e83b'; } /* '' */
.pictogram-gruppe-gespraech:before { content: '\e83c'; } /* '' */
.pictogram-gruppe-idee:before { content: '\e83d'; } /* '' */
.pictogram-globus:before { content: '\e83e'; } /* '' */
.pictogram-gutschein-zuschuss-benefit:before { content: '\e83f'; } /* '' */
.pictogram-gutschein-a:before { content: '\e83f'; } /* '' */
.pictogram-hand-a:before { content: '\e840'; } /* '' */
.pictogram-hand-b:before { content: '\e841'; } /* '' */
.pictogram-hand-c:before { content: '\e842'; } /* '' */
.pictogram-hand-geben:before { content: '\e843'; } /* '' */
.pictogram-hand-geben-a:before { content: '\e843'; } /* '' */
.pictogram-hand-mit-werkzeug:before { content: '\e844'; } /* '' */
.pictogram-hand-gespreizt:before { content: '\e845'; } /* '' */
.pictogram-hand-zeigen-b:before { content: '\e846'; } /* '' */
@@ -82,7 +82,7 @@
.pictogram-ihk-giessen-friedberg:before { content: '\e851'; } /* '' */
.pictogram-ihk-hagen:before { content: '\e852'; } /* '' */
.pictogram-ihk-heilbronn-franken:before { content: '\e853'; } /* '' */
.pictogram-ihk-köln:before { content: '\e854'; } /* '' */
.pictogram-ihk-koeln:before { content: '\e854'; } /* '' */
.pictogram-ihk-rhein-neckar:before { content: '\e855'; } /* '' */
.pictogram-ihk-stuttgart:before { content: '\e856'; } /* '' */
.pictogram-ihk-wahl:before { content: '\e857'; } /* '' */
@@ -102,7 +102,6 @@
.pictogram-paket-mit-euro:before { content: '\e865'; } /* '' */
.pictogram-paket:before { content: '\e866'; } /* '' */
.pictogram-paragraph:before { content: '\e867'; } /* '' */
.pictogram-persoenliche_entwicklung:before { content: '\e868'; } /* '' */
.pictogram-person-an-tafel-a:before { content: '\e869'; } /* '' */
.pictogram-person-an-tafel-b:before { content: '\e86a'; } /* '' */
.pictogram-person-auf-schild:before { content: '\e86b'; } /* '' */
@@ -130,7 +129,6 @@
.pictogram-social-facebook:before { content: '\e881'; } /* '' */
.pictogram-social-instagram:before { content: '\e882'; } /* '' */
.pictogram-social-linkedin:before { content: '\e883'; } /* '' */
.pictogram-social-twitter:before { content: '\e884'; } /* '' */
.pictogram-social-youtube:before { content: '\e885'; } /* '' */
.pictogram-solidaritaetsschleife:before { content: '\e886'; } /* '' */
.pictogram-stadt:before { content: '\e887'; } /* '' */
@@ -140,14 +138,11 @@
.pictogram-stoppuhr:before { content: '\e88b'; } /* '' */
.pictogram-strommast:before { content: '\e88c'; } /* '' */
.pictogram-system-prozess:before { content: '\e88d'; } /* '' */
.pictogram-teamwork-team-zusammenarbeit:before { content: '\e88e'; } /* '' */
.pictogram-teller-besteck:before { content: '\e88f'; } /* '' */
.pictogram-treppe:before { content: '\e890'; } /* '' */
.pictogram-tropfen-a:before { content: '\e891'; } /* '' */
.pictogram-tropfen-b:before { content: '\e892'; } /* '' */
.pictogram-tulpe:before { content: '\e893'; } /* '' */
.pictogram-veranstaltung-intern-beruf:before { content: '\e894'; } /* '' */
.pictogram-veranstaltung-intern-feier:before { content: '\e895'; } /* '' */
.pictogram-videocall-a:before { content: '\e896'; } /* '' */
.pictogram-videocall-b:before { content: '\e897'; } /* '' */
.pictogram-videos:before { content: '\e898'; } /* '' */
@@ -184,8 +179,27 @@
.pictogram-kamera:before { content: '\e8b7'; } /* '' */
.pictogram-musiknote:before { content: '\e8b8'; } /* '' */
.pictogram-recycling-b:before { content: '\e8b9'; } /* '' */
.pictogram-recycling:before { content: '\e8ba'; } /* '' */
.pictogram-recycling-a:before { content: '\e8ba'; } /* '' */
.pictogram-parken:before { content: '\e8bb'; } /* '' */
.pictogram-telefon:before { content: '\e8bc'; } /* '' */
.pictogram-mauszeiger:before { content: '\e8bd'; } /* '' */
.pictogram-video:before { content: '\e8be'; } /* '' */
.pictogram-tisch-mit-computer-und-uhr:before { content: '\e8bf'; } /* '' */
.pictogram-sparschwein:before { content: '\e8c0'; } /* '' */
.pictogram-person-mit-treppe-aufwaerts:before { content: '\e8c1'; } /* '' */
.pictogram-kalender-b:before { content: '\e8c2'; } /* '' */
.pictogram-kalender-c:before { content: '\e8c3'; } /* '' */
.pictogram-handkreis:before { content: '\e8c4'; } /* '' */
.pictogram-e-auto-b:before { content: '\e8c5'; } /* '' */
.pictogram-eurozeichen:before { content: '\e8c6'; } /* '' */
.pictogram-flensburg:before { content: '\e8c7'; } /* '' */
.pictogram-cuxhaven:before { content: '\e8c8'; } /* '' */
.pictogram-kiel:before { content: '\e8c9'; } /* '' */
.pictogram-gluehbirne:before { content: '\e8ca'; } /* '' */
.pictogram-kulturhauptstadt-europa-2025-a:before { content: '\e8cb'; } /* '' */
.pictogram-bodensee-oberschwaben-b:before { content: '\e8cc'; } /* '' */
.pictogram-sprechblase-b:before { content: '\e8cd'; } /* '' */
.pictogram-sprechblase-a:before { content: '\e8cf'; } /* '' */
.pictogram-suedwestsachsen:before { content: '\e8d0'; } /* '' */
.pictogram-wasserstoff:before { content: '\e8d1'; } /* '' */
.pictogram-luebeck:before { content: '\e8d2'; } /* '' */

+ 10
- 0
gfi-ihk-2024/stories/_global/styles/typography.scss View File

@@ -136,3 +136,13 @@ p, .text, ul.nobreaks {
margin-top: 0.113em;
}
}

.has-sidebar {
.main-col {
p {
&:not(.kicker) {
color: var(--theme-color-primary-microsite);
}
}
}
}

+ 961
- 765
gfi-ihk-2024/stories/assets/fonts/pictograms/config.json
File diff suppressed because it is too large
View File


BIN
gfi-ihk-2024/stories/assets/fonts/pictograms/pictograms.eot View File


+ 50
- 22
gfi-ihk-2024/stories/assets/fonts/pictograms/pictograms.svg View File

@@ -16,7 +16,7 @@

<glyph glyph-name="anstossen" unicode="&#xe804;" d="M489 479l-276 74c-8 2-15 1-22-3-7-3-11-10-13-17l-44-161c-11-45-5-91 18-130a170 170 0 0 1 87-75l-41-153-38 10c-10 3-20-3-22-13-3-9 3-19 12-21l111-30a18 18 0 0 1 22 13 18 18 0 0 1-13 22l-38 10 41 153c9-1 18-2 27-2 30 0 59 8 86 23 39 23 68 60 80 104l43 161c2 8 1 16-3 22-4 7-10 11-17 13z m-58-187a135 135 0 0 0-63-82 135 135 0 0 0-103-14 135 135 0 0 0-83 64c-8 15-14 31-16 48l25 15c18 10 40 9 57-2l8-5a89 89 0 0 1 77-11l55 17c10 3 15 14 12 23-3 9-14 14-23 11l-55-18c-15-5-33-2-46 7l-8 5a89 89 0 0 1-95 4l-7-5c1 5 2 9 3 13l41 155 262-70-41-155 0 0z m444-211l-38-10-41 153c37 14 67 40 87 75 23 39 29 86 17 130l-43 161c-2 8-7 14-13 18-7 3-14 4-22 2l-276-74a29 29 0 0 1-20-35l43-161c12-44 41-81 80-104a170 170 0 0 1 86-23c9 0 18 1 27 2l41-153-38-11c-10-2-15-12-13-21 2-8 10-14 18-14 1 0 3 0 4 1l111 29c9 3 15 13 12 22-2 10-12 15-22 13v0z m-208 186a135 135 0 0 0-59 69l26 15c18 11 40 10 57-2l8-5a89 89 0 0 1 77-11l55 18c10 3 15 13 12 22-3 10-14 15-23 12l-55-18c-15-5-33-3-46 7l-8 5a89 89 0 0 1-95 3l-18-10-36 132 263 70 41-154c9-35 5-72-14-103a135 135 0 0 0-82-64c-35-9-72-4-103 14z m-130 379v86a18 18 0 0 1-36 0v-86a18 18 0 0 1 36 0z m39-46c5 0 11 2 14 7l43 57c6 8 4 19-4 25-7 6-19 5-25-3l-42-57c-6-8-5-20 3-25 3-3 7-4 11-4z m-129 7a18 18 0 0 1 25-3c8 5 10 17 4 25l-43 57c-6 8-17 9-25 3-8-6-9-17-4-25l43-57z" horiz-adv-x="1000" />

<glyph glyph-name="arbeitsplatz" unicode="&#xe805;" d="M744 624h0a28 28 0 0 0-19 49v32a18 18 0 1 0 36 0v-31a28 28 0 0 0 10-26l11-11a18 18 0 1 0-25-26l-13 13z m0-144c94 0 170 76 170 171s-76 170-170 170c-95 0-171-76-171-170s76-171 171-171z m134 188h-40v-36h39a135 135 0 0 0-116-115v38h-36v-38a135 135 0 0 0-115 115h38v36h-39a135 135 0 0 0 116 117v-40h36v40a135 135 0 0 0 117-117z m-707-104a43 43 0 0 0 43 43h229a43 43 0 0 0 43-43v-140a43 43 0 0 0-43-43h-52l3-26a18 18 0 0 0-35-5l-4 31h-53l-8-56h606a61 61 0 0 0 61-61v-74a61 61 0 0 0-61-60h-54v-223a18 18 0 0 0-35 0v223h-99a18 18 0 0 0 0 35h188a25 25 0 0 1 25 25v74a25 25 0 0 1-25 25h-800a25 25 0 0 1-25-25v-74c0-13 11-25 25-25h508a18 18 0 0 0 0-35h-419v-223a18 18 0 0 0-35 0v223h-54a61 61 0 0 0-61 60v74a61 61 0 0 0 61 61h158l8 56h-52a43 43 0 0 0-43 43v140z m43 7a7 7 0 0 1-7-7v-140a7 7 0 0 1 7-7h229a7 7 0 0 1 7 7v140a7 7 0 0 1-7 7h-229z" horiz-adv-x="1000" />
<glyph glyph-name="bodensee-oberschwaben-a" unicode="&#xe805;" d="M343 550c9 1 17-4 20-12l136-371 0 0 17-47 54-6c5 0 9-3 12-7 3-3 4-8 4-13l-8-50c-1-9-9-16-18-15l-350 21c-5 0-9 2-13 6l-64 71c-5 6-6 14-2 20 3 7 10 11 17 10l65-6 116 313v68c0 9 6 16 14 18z m-11-181l-82-222 89-9-1 36 0 1-6 194z m42-214l1-21 102-10-8 20-95 11z m82 27l-91 246 8-237 83-9z m-265-65l28-32 326-20 3 16-357 36z m123 602c-56-38-117-84-156-115-7-5-15-5-22-1l-114 79c-8 5-10 16-5 25 6 8 17 10 25 4l104-71c39 31 95 73 148 109 28 19 56 37 79 50 12 6 22 12 32 16 9 3 19 6 27 6 9 0 18-2 26-6 9-4 18-9 28-15 20-13 43-30 67-49 39-32 82-69 121-103 9-8 18-16 27-24 7-6 8-17 2-25-7-7-18-8-25-2-9 8-18 16-28 24-38 34-81 71-119 102-24 19-46 35-64 46-9 6-17 10-23 13-7 3-11 4-12 4-1 0-5-1-14-4-7-3-17-8-28-14-21-12-48-30-76-49z m448-147c-26-23-56-50-91-76-7-5-19-4-25 4-5 8-4 19 4 25 33 25 61 50 87 73 11 10 21 19 32 28 17 15 33 27 49 37 16 9 32 16 50 16 14 0 27-8 38-15 11-8 22-18 31-29 18-20 34-43 39-50 5-8 3-19-5-25-9-5-20-3-25 5-5 7-19 28-36 46-8 10-17 18-25 24-9 6-14 8-17 8-9 0-19-3-32-11-13-8-28-19-44-33-9-8-20-17-30-27z m-291-197c0 10 8 18 18 18h457c10 0 18-8 18-18 0-10-8-18-18-18h-457c-10 0-18 8-18 18z m-457 0c0 10 8 18 18 18h186c10 0 18-8 18-18 0-10-8-18-18-18h-186c-10 0-18 8-18 18z m846-263c-15-12-25-32-32-63-1-5-4-10-9-12-5-3-10-3-15-1-50 21-86 14-111-1-27-16-44-42-51-60-3-8-12-13-20-11-77 12-113-34-115-62 0-10-9-18-19-17-10 0-17 9-16 19 2 50 56 105 142 97 12 22 31 47 60 65 32 18 74 26 124 10 8 26 20 48 40 64 26 20 61 27 110 23 10 0 17-9 16-19 0-10-9-17-19-16-44 3-69-4-85-16z" horiz-adv-x="1000" />

<glyph glyph-name="auktionshammer" unicode="&#xe806;" d="M611 260a57 57 0 0 1 88-10l169 169a57 57 0 0 1-5 86l-73 56a944 944 0 0 0-164 163l-71 90c-21 27-61 29-86 5l-169-169a57 57 0 0 1 10-89c44-27 85-58 123-91l-272-246c-8-7-8-18-1-25 7-7 17-7 24-1l274 247s0 1 1 1c14-13 27-27 40-41l0 0-1-1-353-390c-4-5-11-5-15-1l-63 64c-5 4-4 11 0 15l4 4c8 7 8 18 1 25-7 7-17 7-24 1l-4-4a45 45 0 0 1-2-66l63-63a45 45 0 0 1 66 1l352 389c32-37 62-77 88-119l0 0z m-282 331a21 21 0 0 0-4 33l170 170c9 9 24 8 32-2l71-90c49-63 107-120 170-169l73-56c10-8 11-23 2-33l-169-168c-10-10-26-8-33 3a976 976 0 0 1-312 312z m200-483a75 75 0 0 1-75-75v-43a18 18 0 0 1 35 0v43c0 21 18 39 40 39h314c22 0 39-18 39-39v-43a18 18 0 0 1 36 0v43c0 41-34 75-75 75h-314z m-115-172h543a18 18 0 0 0 0-35h-543a18 18 0 0 0 0 35z" horiz-adv-x="1000" />

@@ -26,13 +26,13 @@

<glyph glyph-name="bauhelm" unicode="&#xe809;" d="M836 204h-672c-35 0-64-29-64-65s29-64 64-64h672c35 0 64 29 64 64s-29 65-64 65z m0-93h-672c-15 0-28 13-28 28s13 29 28 29h672c15 0 28-13 28-29s-13-28-28-28z m-439 254c10-2 19 5 21 15l39 254c1 5 5 9 10 9h61c5 0 10-4 11-9l39-254c1-9 9-16 17-16 1 0 2 0 3 1 10 1 17 10 15 20l-39 254c-4 23-23 40-46 40h-61c-23 0-42-17-46-40l-39-254c-1-10 5-19 15-20l0 0z m-222-119c10 0 18 9 18 19 0 92 40 175 103 231v-176a18 18 0 0 1 36 0v204c11 7 22 14 34 19 6 3 10 9 11 15 2 14-12 25-25 19-115-56-195-175-195-312 0-10 8-19 18-19h0z m459 297c12-5 23-12 34-19v-200a18 18 0 0 1 36 0v172a310 310 0 0 0 103-232c0-10 8-18 18-18s18 8 18 18c0 138-80 257-196 313-13 6-26-5-24-19 1-7 5-12 11-15h0z" horiz-adv-x="1000" />

<glyph glyph-name="benefit-vorteil-geschenk" unicode="&#xe80a;" d="M345 205l-150 78a62 62 0 0 1-60-108l262-152a222 222 0 0 1 211-7 43 43 0 0 0 27 4 61 61 0 0 1 23-83l44-25a61 61 0 0 1 82 22l18 31a18 18 0 0 1-31 18l-17-31a25 25 0 0 0-35-9l-43 25a25 25 0 0 0-9 35l114 198a25 25 0 0 0 34 9l44-25a25 25 0 0 0 9-35l-57-99a18 18 0 0 1 31-17l57 99a61 61 0 0 1-22 83l-44 25a61 61 0 0 1-83-23l-1-1c-20 18-50 37-89 37-28 0-53-4-71-9l-3-1c-20-5-39-9-57-9h-136a32 32 0 0 1-2-1 62 62 0 0 1-23-6c-7-3-14-9-20-17a48 48 0 0 1-3-6z m-167 46l163-84c1-7 4-12 7-18 6-8 13-13 20-16a62 62 0 0 1 25-7c46 0 92 0 138 0a18 18 0 1 1 0 36h-137l-1 0a27 27 0 0 0-9 3 14 14 0 0 0-6 4c-1 2-3 5-3 11 0 6 2 10 3 11a14 14 0 0 0 6 5 27 27 0 0 0 10 3h135c23 0 45 5 65 10l4 1a256 256 0 0 0 63 8c31 0 56-18 70-33l-77-133-2 0a79 79 0 0 1-60-4 186 186 0 0 0-177 6l-262 152a26 26 0 0 0 25 45z m183 342a18 18 0 0 1-36 0v-68h-68a18 18 0 1 1 0-36h68v-68a18 18 0 1 1 36 0v68h68a18 18 0 0 1 0 36h-68v68z m257-86a18 18 0 0 1-36 0v-82h-82a18 18 0 1 1 0-36h82v-82a18 18 0 1 1 36 0v82h82a18 18 0 0 1 0 36h-82v82z m-86 257a18 18 0 1 1-35 0v-48h-48a18 18 0 1 1 0-35h48v-49a18 18 0 0 1 35 0v49h49a18 18 0 1 1 0 35h-49v48z" horiz-adv-x="1000" />
<glyph glyph-name="hand-geben-b" unicode="&#xe80a;" d="M345 205l-150 78a62 62 0 0 1-60-108l262-152a222 222 0 0 1 211-7 43 43 0 0 0 27 4 61 61 0 0 1 23-83l44-25a61 61 0 0 1 82 22l18 31a18 18 0 0 1-31 18l-17-31a25 25 0 0 0-35-9l-43 25a25 25 0 0 0-9 35l114 198a25 25 0 0 0 34 9l44-25a25 25 0 0 0 9-35l-57-99a18 18 0 0 1 31-17l57 99a61 61 0 0 1-22 83l-44 25a61 61 0 0 1-83-23l-1-1c-20 18-50 37-89 37-28 0-53-4-71-9l-3-1c-20-5-39-9-57-9h-136a32 32 0 0 1-2-1 62 62 0 0 1-23-6c-7-3-14-9-20-17a48 48 0 0 1-3-6z m-167 46l163-84c1-7 4-12 7-18 6-8 13-13 20-16a62 62 0 0 1 25-7c46 0 92 0 138 0a18 18 0 1 1 0 36h-137l-1 0a27 27 0 0 0-9 3 14 14 0 0 0-6 4c-1 2-3 5-3 11 0 6 2 10 3 11a14 14 0 0 0 6 5 27 27 0 0 0 10 3h135c23 0 45 5 65 10l4 1a256 256 0 0 0 63 8c31 0 56-18 70-33l-77-133-2 0a79 79 0 0 1-60-4 186 186 0 0 0-177 6l-262 152a26 26 0 0 0 25 45z m183 342a18 18 0 0 1-36 0v-68h-68a18 18 0 1 1 0-36h68v-68a18 18 0 1 1 36 0v68h68a18 18 0 0 1 0 36h-68v68z m257-86a18 18 0 0 1-36 0v-82h-82a18 18 0 1 1 0-36h82v-82a18 18 0 1 1 36 0v82h82a18 18 0 0 1 0 36h-82v82z m-86 257a18 18 0 1 1-35 0v-48h-48a18 18 0 1 1 0-35h48v-49a18 18 0 0 1 35 0v49h49a18 18 0 1 1 0 35h-49v48z" horiz-adv-x="1000" />

<glyph glyph-name="bett" unicode="&#xe80b;" d="M889 379h-25v253c0 10-8 18-18 18h-128a18 18 0 0 1 0-36h111v-235h-28l-9 45c-10 48-52 83-102 83h-59c-49 0-92-35-102-83l-9-45h-33l-9 45c-10 48-53 83-102 83h-59c-49 0-92-35-102-83l-9-45h-27v235h403a18 18 0 0 1 0 36h-421c-10 0-18-8-18-18v-253h-25c-10 0-18-8-18-18v-272c0-10 8-18 18-18h128c4 0 8 2 11 4l96 74h302l95-74c3-2 7-4 11-4h128c10 0 18 8 18 18v272c0 10-8 18-18 18z m-325 38c7 31 35 54 67 54h59c33 0 61-23 67-54l8-38h-208l8 38h-1z m-314 0c6 31 34 54 67 54h59c32 0 60-23 67-54l7-38h-207l7 38h0z m621-138h-639a18 18 0 0 1 0-36h639v-136h-104l-95 74c-3 3-7 4-11 4h-315c-4 0-7-1-11-4l-95-74h-104v236h735v-64z" horiz-adv-x="1000" />

<glyph glyph-name="blatt" unicode="&#xe80c;" d="M949 531c-3 88-4 159-4 209 0 10-5 19-14 22-9 4-19 2-26-5a460 460 0 0 0-187-113l-24-8c-10-3-15-13-12-22 3-9 13-15 23-12l24 8c67 21 129 56 181 103 0-48 1-109 4-183 7-231-119-431-324-511-61-24-137-39-193-39-106 0-198 68-229 169l-5 16c33 30 71 59 110 82 106 60 239 93 294 102a18 18 0 0 1 15 21c-2 10-11 16-21 15-57-10-196-44-306-107-36-21-70-47-102-74-4 22-5 44-3 67 10 115 91 212 202 242l145 39c9 3 15 13 12 22-2 10-12 15-21 13l-146-40c-125-34-217-143-227-273-3-33 0-66 8-98-49-46-86-93-105-120-6-8-4-19 4-25 3-2 7-3 10-3 6 0 12 3 15 8 16 23 47 62 87 102 36-116 142-194 263-194 61 0 140 16 207 42 218 85 354 299 346 546l-1-1z" horiz-adv-x="1000" />

<glyph glyph-name="blume" unicode="&#xe80d;" d="M771 150h-153c24 21 39 52 39 86v43h-43c-38 0-73-17-96-44v59a115 115 0 0 1 92 80c47-11 99 10 125 54 26 45 18 100-16 136a114 114 0 0 1 16 136 114 114 0 0 1-125 54 114 114 0 0 1-110 82c-52 0-96-35-110-82-47 11-99-9-125-54-26-45-18-100 16-136a114 114 0 0 1-16-136 114 114 0 0 1 125-54 114 114 0 0 1 92-80v-31a128 128 0 0 1-96 44h-72v-71c0-34 15-65 39-86h-124c-8 0-15-6-15-14v-86c0-8 7-14 15-14h15l46-118c8-17 24-29 44-29h332c19 0 36 12 43 29l47 118h15c8 0 15 6 15 14v86c0 8-7 14-15 14h0z m-157 93h7v-7c0-44-35-79-78-79h-21c3 48 43 86 92 86z m-189 142a36 36 0 0 1-43 24c-33-8-68 7-86 37a79 79 0 0 0 11 94c13 13 13 35 0 49a79 79 0 0 0-11 93 79 79 0 0 0 86 37c19-4 37 7 43 25a79 79 0 0 0 75 56c36 0 66-24 75-56a36 36 0 0 1 43-25c33 8 68-6 86-37 18-31 13-69-11-93-13-14-13-35 0-49a79 79 0 0 0 11-94c-18-30-53-45-86-37-19 5-37-6-43-24a79 79 0 0 0-75-56c-36 0-66 23-75 56z m-75-114h36c51 0 93-41 93-92v-22h-50a79 79 0 0 0-79 79v35z m-100-157h500v-43h-500v43z m426-182c-1-4-5-7-10-7h-332c-5 0-9 3-10 7l-42 104h436l-42-104z m-69 625c0 59-48 107-107 107-59 0-107-48-107-107 0-59 48-107 107-107 59 0 107 48 107 107z m-178 0c0 40 32 72 71 72s71-32 71-72-32-71-71-71-71 32-71 71z" horiz-adv-x="1000" />
<glyph glyph-name="blume-a" unicode="&#xe80d;" d="M771 150h-153c24 21 39 52 39 86v43h-43c-38 0-73-17-96-44v59a115 115 0 0 1 92 80c47-11 99 10 125 54 26 45 18 100-16 136a114 114 0 0 1 16 136 114 114 0 0 1-125 54 114 114 0 0 1-110 82c-52 0-96-35-110-82-47 11-99-9-125-54-26-45-18-100 16-136a114 114 0 0 1-16-136 114 114 0 0 1 125-54 114 114 0 0 1 92-80v-31a128 128 0 0 1-96 44h-72v-71c0-34 15-65 39-86h-124c-8 0-15-6-15-14v-86c0-8 7-14 15-14h15l46-118c8-17 24-29 44-29h332c19 0 36 12 43 29l47 118h15c8 0 15 6 15 14v86c0 8-7 14-15 14h0z m-157 93h7v-7c0-44-35-79-78-79h-21c3 48 43 86 92 86z m-189 142a36 36 0 0 1-43 24c-33-8-68 7-86 37a79 79 0 0 0 11 94c13 13 13 35 0 49a79 79 0 0 0-11 93 79 79 0 0 0 86 37c19-4 37 7 43 25a79 79 0 0 0 75 56c36 0 66-24 75-56a36 36 0 0 1 43-25c33 8 68-6 86-37 18-31 13-69-11-93-13-14-13-35 0-49a79 79 0 0 0 11-94c-18-30-53-45-86-37-19 5-37-6-43-24a79 79 0 0 0-75-56c-36 0-66 23-75 56z m-75-114h36c51 0 93-41 93-92v-22h-50a79 79 0 0 0-79 79v35z m-100-157h500v-43h-500v43z m426-182c-1-4-5-7-10-7h-332c-5 0-9 3-10 7l-42 104h436l-42-104z m-69 625c0 59-48 107-107 107-59 0-107-48-107-107 0-59 48-107 107-107 59 0 107 48 107 107z m-178 0c0 40 32 72 71 72s71-32 71-72-32-71-71-71-71 32-71 71z" horiz-adv-x="1000" />

<glyph glyph-name="blume-b" unicode="&#xe80e;" d="M661 749l-51-44a77 77 0 0 1-18-93l53 45a73 73 0 0 1 16 92z m41-66a109 109 0 0 0 33-1c9 10 13 25 15 38 0 1 0 2-1 3 0 0-1 1-2 1-13 0-28-2-40-9a109 109 0 0 0-5-32z m68-14a108 108 0 0 0 28-24c8-9 7-23-2-30l-63-54a112 112 0 0 0-146 171l63 54a22 22 0 0 0 31-3 108 108 0 0 0 19-32c16 7 34 9 47 9a39 39 0 0 0 38-46c-2-12-6-29-15-45z m-155-84a77 77 0 0 1 95 3l51 44a73 73 0 0 1-93-2l-53-45z m-261-51a72 72 0 0 0 70 27 82 82 0 0 0 61-51 193 193 0 0 0 35 41 18 18 0 1 0 24-27 157 157 0 0 1-54-111v-115a86 86 0 0 0 41 15 76 76 0 0 0 56-16l9-8c52 51 135 56 193 9l86-69c10-8 12-23 4-33a140 140 0 0 0-42-35c18-24 25-53 28-72a40 40 0 0 0-38-47c-19-1-48 0-76 11a140 140 0 0 0-25-48 23 23 0 0 0-33-3l-86 69c-58 47-71 129-33 190l-9 8a40 40 0 0 1-30 9 50 50 0 0 1-45-50v-314a18 18 0 1 0-35 0v452h0v40c0 3 0 5 0 8v66a46 46 0 0 1-38 45 36 36 0 0 1-35-13l-15-19c51-52 56-134 10-192l-69-87c-8-10-23-12-33-4a140 140 0 0 0-35 42c-24-18-53-25-72-28a40 40 0 0 0-46 37c-2 19-1 49 10 77a140 140 0 0 0-48 25 23 23 0 0 0-4 32l70 87c46 58 128 71 189 33l15 19z m-37-47a110 110 0 0 1-139-27l-61-77a104 104 0 0 1 136 24l64 80z m-93-145a141 141 0 0 0-55-10c-12-21-13-48-12-68a5 5 0 0 1 2-4 5 5 0 0 1 4-1c19 4 46 11 64 27a141 141 0 0 0-3 56z m57 43a104 104 0 0 1 7-138l61 76a110 110 0 0 1-4 142l-64-80z m321-146a110 110 0 0 1 27-140l76-61a104 104 0 0 1-23 136l-80 65z m145-94a141 141 0 0 0 10-55c21-12 48-13 68-12a5 5 0 0 1 3 2 5 5 0 0 1 1 3c-3 20-10 46-26 64-19-4-38-5-56-2z m-43 57a104 104 0 0 1 139 7l-77 61a110 110 0 0 1-142-4l80-64z" horiz-adv-x="1000" />

@@ -72,7 +72,7 @@

<glyph glyph-name="dokument-c" unicode="&#xe820;" d="M846 21v600a18 18 0 0 1-35 0v-600c0-13-12-25-25-25h-572a18 18 0 0 1 0-35h572a61 61 0 0 1 60 60z m40 561c-10 0-18-8-18-18v-557c0-37-31-68-68-68h-529a18 18 0 0 1 0-35h529c57 0 104 46 104 103v557c0 10-8 18-18 18z m-143-561c23 0 43 20 43 43v589c0 19-8 38-22 52l-100 96a71 71 0 0 1-49 20h-415c-24 0-43-19-43-42v-715c0-23 19-43 43-43h543z m-550 43v715c0 4 3 7 7 7h382v-122c0-25 21-46 47-46h57a18 18 0 0 1 0 36h-57c-6 0-11 4-11 10v121c8 0 16-4 22-9l99-97c7-7 11-16 11-26v-589c0-4-3-7-7-7h-543c-4 0-7 3-7 7z m468 390h-379v-36h379v36z m0-100h-379v-36h379v36z m0-100h-379v-36h379v36z" horiz-adv-x="1000" />

<glyph glyph-name="e-auto" unicode="&#xe821;" d="M155 291v3c23-8 57-19 91-19 42 0 84 16 110 73 39 87-13 259-29 309a31 31 0 0 1-37 21c-46-11-202-55-257-181-21-49-24-91-10-123 19-41 62-58 96-69 0-5 0-10 0-15 2-95 29-131 32-134a18 18 0 0 1 25-3c8 6 9 18 3 25 0 1-23 31-24 113l0 0z m-99 98c-10 23-7 54 10 94 46 107 181 148 228 159 32-97 56-220 29-280-32-70-93-56-158-34l-8 3h-1c8 72 35 136 35 137 4 9 0 19-9 23-9 4-19 0-23-9-2-3-29-66-37-140-27 9-55 22-66 47l0 0z m851-119l-169 42-72 93a188 188 0 0 1-149 73h-88a18 18 0 0 1 0-36h88c48 0 92-21 121-59l53-69h-263a18 18 0 0 1 0-35h298l173-43c10-3 18-8 25-15h-71v-36h86v-53c0-6-5-11-11-11h-72c-5 46-44 82-92 82s-87-36-92-82c-1 0-1 0-1 0h-243c-6 46-45 82-93 82-51 0-92-42-92-93s41-93 92-93c43 0 79 30 90 69 1 0 2-1 3-1h243c1 0 2 1 3 1 11-39 47-69 90-69 43 0 78 29 89 68h75c26 0 47 21 47 47v52c0 41-28 77-68 86l0 0z m-571-217c-32 0-57 26-57 57s25 57 57 57 57-25 57-57-26-57-57-57z m428 0c-31 0-57 26-57 57s26 57 57 57 57-25 57-57-25-57-57-57z" horiz-adv-x="1000" />
<glyph glyph-name="e-auto-a" unicode="&#xe821;" d="M155 291v3c23-8 57-19 91-19 42 0 84 16 110 73 39 87-13 259-29 309a31 31 0 0 1-37 21c-46-11-202-55-257-181-21-49-24-91-10-123 19-41 62-58 96-69 0-5 0-10 0-15 2-95 29-131 32-134a18 18 0 0 1 25-3c8 6 9 18 3 25 0 1-23 31-24 113l0 0z m-99 98c-10 23-7 54 10 94 46 107 181 148 228 159 32-97 56-220 29-280-32-70-93-56-158-34l-8 3h-1c8 72 35 136 35 137 4 9 0 19-9 23-9 4-19 0-23-9-2-3-29-66-37-140-27 9-55 22-66 47l0 0z m851-119l-169 42-72 93a188 188 0 0 1-149 73h-88a18 18 0 0 1 0-36h88c48 0 92-21 121-59l53-69h-263a18 18 0 0 1 0-35h298l173-43c10-3 18-8 25-15h-71v-36h86v-53c0-6-5-11-11-11h-72c-5 46-44 82-92 82s-87-36-92-82c-1 0-1 0-1 0h-243c-6 46-45 82-93 82-51 0-92-42-92-93s41-93 92-93c43 0 79 30 90 69 1 0 2-1 3-1h243c1 0 2 1 3 1 11-39 47-69 90-69 43 0 78 29 89 68h75c26 0 47 21 47 47v52c0 41-28 77-68 86l0 0z m-571-217c-32 0-57 26-57 57s25 57 57 57 57-25 57-57-26-57-57-57z m428 0c-31 0-57 26-57 57s26 57 57 57 57-25 57-57-25-57-57-57z" horiz-adv-x="1000" />

<glyph glyph-name="e-learning" unicode="&#xe822;" d="M484 388c7-3 15-5 22-5 8 0 15 2 22 4l262 106c12 5 12 21 0 26l-267 115a58 58 0 0 1-43 0l-263-105c-11-5-12-22 0-27l12-5v-90a18 18 0 0 1 35 0v75l65-28v-116c0-18 10-35 27-43l126-58a47 47 0 0 1 38 0l130 59a47 47 0 0 1 27 42v33a18 18 0 0 1-35 0v-33c0-4-3-8-7-10l-129-58c-3-2-6-2-9 0l-126 58a11 11 0 0 0-6 10v101l119-51 0 0z m9 213c5 2 11 2 16 0l220-94-215-86c-5-3-11-2-16 0l-220 94 215 86z m-389 149a75 75 0 0 1-75-75v-493c0-41 33-75 75-75h523l40-171h-315l26 91c3 10-3 20-12 22-10 3-20-2-22-12l-29-100v-1h-68a18 18 0 0 1 0-36h514a18 18 0 0 1 0 36h-57l-40 171h240c41 0 75 34 75 75v493c0 41-34 75-75 75h-800z m839-568c0-22-18-39-39-39h-800c-22 0-40 17-40 39v493c0 22 18 39 40 39h800c21 0 39-17 39-39v-493z" horiz-adv-x="1000" />

@@ -100,11 +100,11 @@

<glyph glyph-name="fahne-vertikal-gestreift" unicode="&#xe82e;" d="M29 839c9 0 17-8 17-18v-118l103 35a446 446 0 0 0 275 2l196-73a18 18 0 0 0 8-6 18 18 0 0 0 4-11v-561a454 454 0 0 1 238-1l61 17a11 11 0 0 1 8 10v526a11 11 0 0 1-13 11l-47-13a489 489 0 0 0-67-13 18 18 0 0 0-4 36 453 453 0 0 1 62 12l47 12a46 46 0 0 0 58-45v-526a46 46 0 0 0-34-45l-62-16a489 489 0 0 0-272 5l-194 61a411 411 0 0 1-65 15 18 18 0 0 0-2 0 18 18 0 0 0-21 18v568c0 1 0 2 0 2a411 411 0 0 1-165-19l-114-38v-548l103 34a18 18 0 0 0 11-34l-114-38v-201a18 18 0 1 0-35 0v942c0 10 8 18 18 18z m332-120v-550c21-3 42-8 62-15l173-54v538l-184 68a411 411 0 0 1-51 13z" horiz-adv-x="1000" />

<glyph glyph-name="fahrrad-jobrad-dienstfahrrad" unicode="&#xe82f;" d="M775 612l-28 20h1c-10 8-14 20-10 32 4 12 14 20 27 20h34l10 32c4 12 15 20 27 20 13 0 24-8 27-20l11-32h34c12 0 23-8 27-20 4-12 0-24-11-32l-27-20 10-32c4-12 0-25-10-32-10-7-23-7-34 0l-27 20-27-20c-6-4-11-6-17-6-6 0-12 2-17 6-10 7-14 20-11 32l11 32z m50 63a29 29 0 0 0-27-20l0 0h-34l27-19c10-8 15-21 11-32l-11-33 28 20c10 7 23 7 33 0l28-20-11 32c-4 12 1 25 11 32l27 20h-34c-12 0-23 8-27 20l-10 32-11-32z m-61-232c-14 0-27-2-40-5l-20 61v76c0 10-8 18-18 18h-100a18 18 0 0 1 0-36h82v-43l-212-126 0 2-67 146h40a18 18 0 0 1 0 35h-143a18 18 0 0 1 0-35h64l16-37-138-222c-4-5-4-12-1-18s9-9 16-9h218a43 43 0 0 1 39-25c24 0 43 19 43 43 0 4-1 7-2 11l137 184 12-36c-63-28-108-92-108-166 0-101 82-182 182-182s183 81 183 182-82 182-183 182l0 0z m-380 17l79-171c-1-1-1-2-2-3h-186l109 174h0z m116-206c-8 0-14 6-14 14s6 14 14 14 14-6 14-14-6-14-14-14z m18 53c-6 2-12 4-18 4-2 0-5-1-7-1l-21 46 146 87-100-136z m246-193c-80 0-146 66-146 147 0 58 34 108 83 132l46-138c3-7 10-12 17-12 2 0 4 0 6 1 9 3 14 13 11 22l-46 138c10 2 19 3 29 3 81 0 147-66 147-146s-66-147-147-147v0z m-370 101c-9 3-19-1-23-10a146 146 0 0 0-50-63c-22-16-49-26-76-28-27-1-55 5-79 18a146 146 0 0 0-77 135c2 27 10 54 26 76a146 146 0 0 0 142 62c10-1 19 6 20 15 2 10-5 19-15 21a182 182 0 0 1-177-78 181 181 0 0 1-31-95c-2-34 6-68 23-97 17-30 42-54 72-71a182 182 0 0 1 87-22c4 0 7 0 11 1 34 2 67 14 95 34 28 19 49 47 62 78 4 9 0 20-10 24z" horiz-adv-x="1000" />
<glyph glyph-name="fahrrad-c" unicode="&#xe82f;" d="M775 612l-28 20h1c-10 8-14 20-10 32 4 12 14 20 27 20h34l10 32c4 12 15 20 27 20 13 0 24-8 27-20l11-32h34c12 0 23-8 27-20 4-12 0-24-11-32l-27-20 10-32c4-12 0-25-10-32-10-7-23-7-34 0l-27 20-27-20c-6-4-11-6-17-6-6 0-12 2-17 6-10 7-14 20-11 32l11 32z m50 63a29 29 0 0 0-27-20l0 0h-34l27-19c10-8 15-21 11-32l-11-33 28 20c10 7 23 7 33 0l28-20-11 32c-4 12 1 25 11 32l27 20h-34c-12 0-23 8-27 20l-10 32-11-32z m-61-232c-14 0-27-2-40-5l-20 61v76c0 10-8 18-18 18h-100a18 18 0 0 1 0-36h82v-43l-212-126 0 2-67 146h40a18 18 0 0 1 0 35h-143a18 18 0 0 1 0-35h64l16-37-138-222c-4-5-4-12-1-18s9-9 16-9h218a43 43 0 0 1 39-25c24 0 43 19 43 43 0 4-1 7-2 11l137 184 12-36c-63-28-108-92-108-166 0-101 82-182 182-182s183 81 183 182-82 182-183 182l0 0z m-380 17l79-171c-1-1-1-2-2-3h-186l109 174h0z m116-206c-8 0-14 6-14 14s6 14 14 14 14-6 14-14-6-14-14-14z m18 53c-6 2-12 4-18 4-2 0-5-1-7-1l-21 46 146 87-100-136z m246-193c-80 0-146 66-146 147 0 58 34 108 83 132l46-138c3-7 10-12 17-12 2 0 4 0 6 1 9 3 14 13 11 22l-46 138c10 2 19 3 29 3 81 0 147-66 147-146s-66-147-147-147v0z m-370 101c-9 3-19-1-23-10a146 146 0 0 0-50-63c-22-16-49-26-76-28-27-1-55 5-79 18a146 146 0 0 0-77 135c2 27 10 54 26 76a146 146 0 0 0 142 62c10-1 19 6 20 15 2 10-5 19-15 21a182 182 0 0 1-177-78 181 181 0 0 1-31-95c-2-34 6-68 23-97 17-30 42-54 72-71a182 182 0 0 1 87-22c4 0 7 0 11 1 34 2 67 14 95 34 28 19 49 47 62 78 4 9 0 20-10 24z" horiz-adv-x="1000" />

<glyph glyph-name="fahrrad-sportlich" unicode="&#xe830;" d="M725 442c12 3 26 5 39 5 101 0 182-82 182-183s-81-182-182-182-182 82-182 182c0 75 45 139 109 167l-12 34-143-170c4-7 7-15 7-23 0-24-19-43-43-43a43 43 0 0 0-39 25h-218c-7 0-13 3-16 9-3 6-3 13 1 18l138 221-38 80h-42a18 18 0 0 0 0 36h143a18 18 0 0 0 0-36h-61l30-64h270v75c0 10 8 18 18 18h100a68 68 0 0 0 48-20 68 68 0 0 0 20-48 68 68 0 0 0-20-48 68 68 0 0 0-48-20 18 18 0 0 0 0 36c4 0 8 1 12 2 4 2 7 4 10 7a32 32 0 0 1 10 23c0 4-1 8-3 12-1 4-4 8-7 11a32 32 0 0 1-22 9h-82v-72l21-61z m-262-149l-79 170 0 0-109-173h186c1 1 1 2 2 3z m23-21c0-8 6-15 14-15s14 7 14 15-6 14-14 14-14-7-14-14z m19 42l142 168h-233l79-168c2 0 5 0 7 0 1 0 2 0 3 0 1 0 1 0 2 0z m113-50c0-80 66-146 146-146s147 66 147 146-66 147-147 147c-9 0-19-1-28-3l45-131a18 18 0 0 0-17-23c-7 0-14 4-17 12l-45 131c-49-23-84-74-84-133z m-247-55c4 9 14 13 23 9 10-3 14-14 10-23-13-32-34-59-62-79a182 182 0 0 0-95-33c-4-1-7-1-11-1-30 0-60 8-87 22-30 16-55 41-72 70a181 181 0 0 0-23 98c1 34 12 67 31 95a182 182 0 0 0 177 77c10-1 17-10 15-20-1-10-10-17-20-15a146 146 0 0 1-168-139 146 146 0 0 1 77-135c24-13 52-19 79-17 27 2 54 11 76 27 22 16 40 38 50 64z" horiz-adv-x="1000" />
<glyph glyph-name="fahrrad-b" unicode="&#xe830;" d="M725 442c12 3 26 5 39 5 101 0 182-82 182-183s-81-182-182-182-182 82-182 182c0 75 45 139 109 167l-12 34-143-170c4-7 7-15 7-23 0-24-19-43-43-43a43 43 0 0 0-39 25h-218c-7 0-13 3-16 9-3 6-3 13 1 18l138 221-38 80h-42a18 18 0 0 0 0 36h143a18 18 0 0 0 0-36h-61l30-64h270v75c0 10 8 18 18 18h100a68 68 0 0 0 48-20 68 68 0 0 0 20-48 68 68 0 0 0-20-48 68 68 0 0 0-48-20 18 18 0 0 0 0 36c4 0 8 1 12 2 4 2 7 4 10 7a32 32 0 0 1 10 23c0 4-1 8-3 12-1 4-4 8-7 11a32 32 0 0 1-22 9h-82v-72l21-61z m-262-149l-79 170 0 0-109-173h186c1 1 1 2 2 3z m23-21c0-8 6-15 14-15s14 7 14 15-6 14-14 14-14-7-14-14z m19 42l142 168h-233l79-168c2 0 5 0 7 0 1 0 2 0 3 0 1 0 1 0 2 0z m113-50c0-80 66-146 146-146s147 66 147 146-66 147-147 147c-9 0-19-1-28-3l45-131a18 18 0 0 0-17-23c-7 0-14 4-17 12l-45 131c-49-23-84-74-84-133z m-247-55c4 9 14 13 23 9 10-3 14-14 10-23-13-32-34-59-62-79a182 182 0 0 0-95-33c-4-1-7-1-11-1-30 0-60 8-87 22-30 16-55 41-72 70a181 181 0 0 0-23 98c1 34 12 67 31 95a182 182 0 0 0 177 77c10-1 17-10 15-20-1-10-10-17-20-15a146 146 0 0 1-168-139 146 146 0 0 1 77-135c24-13 52-19 79-17 27 2 54 11 76 27 22 16 40 38 50 64z" horiz-adv-x="1000" />

<glyph glyph-name="fahrrad" unicode="&#xe831;" d="M704 575c0 10-8 18-18 18v0h-100a18 18 0 0 1 0-36h82v-43l-212-126 0 2-67 146h40a18 18 0 0 1 0 35h-143a18 18 0 0 1 0-35h64l16-37-138-222c-4-5-4-12-1-18 3-5 9-9 16-9h218a43 43 0 0 1 39-25c24 0 43 19 43 43 0 4-1 8-2 11l137 184 12-36c-64-28-108-92-108-166 0-101 82-182 182-182s182 81 182 182-81 182-182 182c-14 0-27-2-40-5l-20 61v76z m-186-268a43 43 0 0 1-18 4c-2 0-5 0-7-1l-21 46 146 87-100-136z m-55-17c-1-2-1-3-2-4h-186l109 174 39-85h0l40-85z m238 103l46-138a18 18 0 0 1 34 12l-46 137c9 2 19 3 29 3 81 0 147-65 147-146s-66-147-147-147-146 66-146 147c0 58 34 109 83 132z m-187-125c0-8-6-14-14-14s-14 6-14 14 6 14 14 14 14-6 14-14z m-429 96a182 182 0 0 1-31-96c-2-34 7-68 23-97 17-30 42-54 72-70 30-17 64-24 98-22 34 2 67 14 95 34 28 20 49 47 62 79 4 9 0 19-10 23-9 4-19-1-23-10a146 146 0 0 0-50-63c-22-16-49-26-76-27-27-2-55 4-79 17a146 146 0 0 0-77 135c2 27 10 54 26 76a146 146 0 0 0 142 63c10-2 19 5 20 15 2 9-5 18-15 20-34 5-68 0-99-13-31-14-58-36-78-64z" horiz-adv-x="1000" />
<glyph glyph-name="fahrrad-a" unicode="&#xe831;" d="M704 575c0 10-8 18-18 18v0h-100a18 18 0 0 1 0-36h82v-43l-212-126 0 2-67 146h40a18 18 0 0 1 0 35h-143a18 18 0 0 1 0-35h64l16-37-138-222c-4-5-4-12-1-18 3-5 9-9 16-9h218a43 43 0 0 1 39-25c24 0 43 19 43 43 0 4-1 8-2 11l137 184 12-36c-64-28-108-92-108-166 0-101 82-182 182-182s182 81 182 182-81 182-182 182c-14 0-27-2-40-5l-20 61v76z m-186-268a43 43 0 0 1-18 4c-2 0-5 0-7-1l-21 46 146 87-100-136z m-55-17c-1-2-1-3-2-4h-186l109 174 39-85h0l40-85z m238 103l46-138a18 18 0 0 1 34 12l-46 137c9 2 19 3 29 3 81 0 147-65 147-146s-66-147-147-147-146 66-146 147c0 58 34 109 83 132z m-187-125c0-8-6-14-14-14s-14 6-14 14 6 14 14 14 14-6 14-14z m-429 96a182 182 0 0 1-31-96c-2-34 7-68 23-97 17-30 42-54 72-70 30-17 64-24 98-22 34 2 67 14 95 34 28 20 49 47 62 79 4 9 0 19-10 23-9 4-19-1-23-10a146 146 0 0 0-50-63c-22-16-49-26-76-27-27-2-55 4-79 17a146 146 0 0 0-77 135c2 27 10 54 26 76a146 146 0 0 0 142 63c10-2 19 5 20 15 2 9-5 18-15 20-34 5-68 0-99-13-31-14-58-36-78-64z" horiz-adv-x="1000" />

<glyph glyph-name="faq-a" unicode="&#xe832;" d="M978-86l-79 193a474 474 0 0 1 70 249c0 102-32 200-92 282-6 8-17 9-25 3-8-5-10-17-4-25 56-75 86-166 86-260 0-83-23-163-66-232-6-9-7-20-3-29l77-187-187 77c-9 4-20 3-29-3a438 438 0 0 0-232-66c-242 0-439 197-439 440s197 439 439 439c63 0 123-13 179-38a18 18 0 0 1 14 33c-60 27-125 41-193 41-261 0-475-213-475-475s214-475 475-475c89 0 175 24 249 70l193-79c4-2 8-3 13-3 8 0 16 4 22 10 9 9 12 23 7 35v0z m-434 281c10 0 18 8 18 18v200c0 49-40 89-89 89s-89-40-89-89v-200a18 18 0 0 1 35 0v96h108v-96c0-10 8-18 17-18z m-125 150v68c0 29 24 53 54 53 30 0 54-24 54-53v-68h-108z m186 68v-129c0-49 40-89 89-89 18 0 35 5 50 15l24-24c3-3 8-5 12-5 5 0 9 1 13 5 7 7 7 18 0 25l-24 24c9 15 15 32 15 49v129c0 49-40 89-90 89s-89-40-89-89l0 0z m143 0v-129c0-8-2-16-5-23l-29 29a18 18 0 0 1-25 0 18 18 0 0 1 0-26l29-28c-8-4-15-5-24-5-29 0-53 24-53 53v129c0 29 24 53 53 53 30 0 54-24 54-53z m-439 53h35a18 18 0 0 1 0 36h-35c-50 0-90-40-90-89v-200a18 18 0 0 1 36 0v96h61a18 18 0 0 1 0 36h-61v68c0 29 24 53 54 53z" horiz-adv-x="1000" />

@@ -120,7 +120,7 @@

<glyph glyph-name="fragezeichen" unicode="&#xe838;" d="M500 18a50 50 0 1 1 0-101 50 50 0 0 1 0 101z m-86-50a86 86 0 1 0 172 0 86 86 0 0 0-172 0z m86 821c-140 0-254-113-254-253v-61a50 50 0 1 1 100 0v61c0 81 66 146 147 146h36a118 118 0 0 0 117-118v-14a18 18 0 1 0-35 0v14a82 82 0 0 1-82 82h-36a111 111 0 0 1-111-110v-61a86 86 0 0 0-171 0v61c0 160 129 289 289 289s289-129 289-289v-110c0-112-89-204-200-208v-25a89 89 0 1 0-178 0v86a104 104 0 0 0 103 103h29a68 68 0 0 1 68 68v14a18 18 0 1 0 35 0v-14a104 104 0 0 0-103-104h-29a68 68 0 0 1-68-67v-86a54 54 0 1 1 108 0v33a28 28 0 0 0 27 28c96 0 173 77 173 172v110c0 140-114 253-254 253z" horiz-adv-x="1000" />

<glyph glyph-name="geld-zuschuss-foerderung" unicode="&#xe839;" d="M577 512c60 0 109 49 109 110 0 60-49 109-109 109s-110-49-110-109 49-110 110-110z m0 36a74 74 0 0 0-74 74c0 41 33 74 74 74s74-33 74-74-33-74-74-74z m-168 105c-30-4-59-12-87-22l0 1c-21 20-46 41-67 55-12 7-25 14-38 15-7 0-14 0-21-5-7-4-12-10-15-18-7-18-7-43-5-67 2-21 6-43 10-63-30-29-55-62-72-99l-44-8a47 47 0 0 1-38-46v-95c0-23 16-42 38-46l33-6c21-64 64-119 122-161l-13-50c-7-25 8-51 32-57l40-11c25-6 50 8 57 33l7 26c39-11 82-17 126-17 58 0 112 10 161 29l10-38a46 46 0 0 1 57-33l39 11a46 46 0 0 1 33 57l-20 75c60 53 100 124 105 204h36c18 0 35 7 47 19l10 11a52 52 0 0 1 0 74 52 52 0 0 1-74 0l-10-10 25-25 10 10c7 6 18 6 24 0 7-7 7-18 0-24l-10-10c-6-6-14-9-22-9h-36c-6 87-53 164-124 219-8 6-19 5-25-3-6-8-5-19 3-25 69-53 110-131 110-209s-38-150-101-203c-6-5-8-14-5-21 1-1 1-2 1-2l22-80c1-6-2-12-8-14l-39-10a11 11 0 0 0-14 7l-15 58c-1 5-5 9-10 11-4 2-10 2-15 0-49-22-105-34-165-34-47 0-92 8-133 22-5 1-10 1-14-1-5-3-8-7-9-12l-12-44a11 11 0 0 0-13-7l-39 10a11 11 0 0 0-8 13l17 63c2 7-1 15-8 20-60 40-104 96-121 159-2 6-8 11-14 12l-44 8a11 11 0 0 0-8 11v95c0 5 3 10 8 11l54 9c6 1 11 5 13 11 16 38 41 73 74 102 5 4 7 11 6 17-5 22-10 46-11 69s-1 40 2 51c4-1 12-3 22-10 21-13 47-35 69-58 5-5 13-6 19-4 28 11 59 19 90 24 10 1 17 10 16 20-2 10-11 17-21 15z m-136-230c0-17-14-31-32-31s-32 14-32 31 15 32 32 32 32-14 32-32z" horiz-adv-x="1000" />
<glyph glyph-name="erfurt" unicode="&#xe839;" d="M506 642l61-98a18 18 0 1 1 30 19l-64 102c-12 20-41 21-54 1l-402-631c-14-21 1-49 27-49h805c25 0 40 28 27 49l-147 230-46 76a18 18 0 1 1-31-18l47-77a12 12 0 0 1 0 0l143-225h-792l396 621z m298 75a18 18 0 0 0 1-25l-285-329a18 18 0 1 0-27 24l285 328a18 18 0 0 0 26 2z m0-114a18 18 0 0 0 1-26l-286-314a18 18 0 0 0-26 24l286 314a18 18 0 0 0 25 2z m0-100a18 18 0 0 0 1-26l-286-314a18 18 0 0 0-26 24l286 314a18 18 0 0 0 25 2z" horiz-adv-x="1000" />

<glyph glyph-name="geldsack" unicode="&#xe83a;" d="M455 689a25 25 0 0 1-22-36l26-52a18 18 0 1 0-32-16l-26 52c-20 41 9 88 54 88h90c45 0 74-47 54-88l-26-52a18 18 0 1 0-32 16l26 52a25 25 0 0 1-22 36h-90z m-130-182c0 10 8 18 18 18h297a18 18 0 0 0 0-36h-297c-10 0-18 8-18 18z m171-149c13 6 34 11 62 10a18 18 0 1 0-2-36c-22 1-37-3-46-7a76 76 0 0 1-24-16c-10-10-19-27-26-48-1-2-2-5-3-7h100a18 18 0 1 0 0-36h-107a298 298 0 0 1-3-64h110a18 18 0 1 0 0-36h-104c5-22 13-41 23-54 12-14 28-25 46-31 9-3 21-6 38-8a18 18 0 0 0-5-36c-19 3-33 7-44 10-23 8-46 22-62 42-17 21-27 48-33 77h-30a18 18 0 1 0 0 36h25a330 330 0 0 0 3 64h-28a18 18 0 1 0 0 36h34c2 6 4 12 6 18 8 25 19 47 35 62a112 112 0 0 0 35 24z m-119 51a18 18 0 1 1-25 25c-9-8-18-17-26-25-65-61-130-123-130-238 0-84 24-162 76-219 52-57 131-91 235-91 105 0 183 34 235 91 52 57 76 135 76 219 0 115-65 177-129 238a2091 2091 0 0 0-27 25 18 18 0 1 1-25-25c10-9 19-18 28-27 65-62 117-112 117-211 0-77-22-146-66-195-44-48-112-80-209-80-96 0-164 32-208 80-45 49-67 118-67 195 0 99 53 149 118 211 9 9 18 18 27 27z" horiz-adv-x="1000" />

@@ -132,7 +132,7 @@

<glyph glyph-name="globus" unicode="&#xe83e;" d="M910 112l-50 50a18 18 0 0 1-26 0c0-1-1-2-1-3l-14-13c-159-160-419-160-578 0-159 159-159 419 0 578l15 15c1 2 3 4 4 6 3 6 2 15-4 20l-51 51a18 18 0 0 1-25 0 18 18 0 0 1 0-25l39-39-3-3c-174-173-174-455 0-628 86-87 200-130 314-130 114 0 228 43 315 130l2 2 37-36c4-4 8-6 13-6 4 0 9 2 12 6 7 7 7 18 0 25h1z m-120-193h-240v39a18 18 0 0 1-35 0v-39h-240a18 18 0 0 1 0-36h515a18 18 0 0 1 0 36z m-572 518c0-140 94-258 222-295 1-1 3-1 5-1 26-7 53-11 80-11s55 4 80 11c2 0 4 0 6 1 128 37 221 155 221 295s-93 257-221 295c-1 0-3 1-5 1-26 7-53 11-81 11s-55-4-80-11c-2 0-4-1-6-2-127-37-221-155-221-294v0z m198 248c-8-23-15-47-21-72h-76c27 31 60 56 97 72z m-123-388c-22 36-35 77-38 122h120c1-41 5-82 12-122h-91c-1 0-2 0-3 0h0z m-38 158c3 45 17 87 39 123 1 0 1 0 2 0h91c-7-41-11-82-12-123h-120z m64-194h76c6-24 13-49 21-72a273 273 0 0 0-97 72z m141-87c-11 28-21 58-28 87h18a18 18 0 0 1 0 36h-26a729 729 0 0 0-13 122h229a713 713 0 0 0-13-122h-94a18 18 0 0 1 0-36h86c-8-29-17-59-28-87-21-5-43-9-66-9s-44 3-65 9h0z m297 404c22-37 36-78 39-123h-12a18 18 0 0 1 0-36h12c-3-45-17-86-39-122 0 0-1 0-2 0h-92c8 40 12 81 13 122h34a18 18 0 0 1 0 36h-34c-1 41-5 82-13 123h92s1 0 2 0z m-123-390a771 771 0 0 1 22 73h76a271 271 0 0 0-98-73z m97 425h-75c-6 25-13 49-21 72 37-16 70-41 96-72z m-140 87c11-28 20-57 28-87h-21a18 18 0 0 1 0-35h29c8-41 12-82 13-123h-229c1 41 5 82 13 123h81a18 18 0 0 1 0 35h-73c7 30 17 59 28 87 21 5 43 8 65 8s45-3 66-8z" horiz-adv-x="1000" />

<glyph glyph-name="gutschein-zuschuss-benefit" unicode="&#xe83f;" d="M82 426a36 36 0 0 0 24 45l622 197a36 36 0 0 0 45-23l49-155h71a36 36 0 0 0 35-36v-388a36 36 0 0 0-35-36h-653a35 35 0 0 0-11 1 36 36 0 0 0-30 25l-117 370z m158-360h423v137l-43-41a18 18 0 1 0-25 26l48 45a715 715 0 0 0-17 4c-13 4-28 8-41 13-12 4-25 10-33 18a68 68 0 0 0-22 49c0 19 8 37 22 50a74 74 0 0 0 51 20c19 0 38-7 51-20 4-3 7-7 9-12v99h-423v-191h264a18 18 0 0 0 0-35h-264v-162z m459 0h194v162h-169l42-40a18 18 0 0 0-24-26l-43 40v-136z m194 197v191h-194v-97c3 4 5 7 8 10a74 74 0 0 0 51 20c19 0 38-7 51-20a68 68 0 0 0 22-50 68 68 0 0 0-22-49c-1-2-3-3-5-5h89z m-689-104v295c0 4 1 8 2 11l-90-28 88-278z m78 331h502l-45 144-457-144z m422-223a705 705 0 0 1 22 5c13 3 27 7 38 11 11 5 18 8 21 11a33 33 0 0 1 10 23c0 9-3 17-10 24a39 39 0 0 1-27 10c-10 0-19-4-26-10-3-2-7-9-11-20-4-10-8-22-12-34a595 595 0 0 1-5-20z m-47 0a599 599 0 0 1-5 20c-3 12-7 24-11 34-5 11-9 18-11 20a39 39 0 0 1-27 10c-10 0-19-4-26-10a33 33 0 0 1-11-24c0-8 4-17 11-23 2-3 9-6 21-11 11-4 24-8 37-11a721 721 0 0 1 22-5z" horiz-adv-x="1000" />
<glyph glyph-name="gutschein-a" unicode="&#xe83f;" d="M82 426a36 36 0 0 0 24 45l622 197a36 36 0 0 0 45-23l49-155h71a36 36 0 0 0 35-36v-388a36 36 0 0 0-35-36h-653a35 35 0 0 0-11 1 36 36 0 0 0-30 25l-117 370z m158-360h423v137l-43-41a18 18 0 1 0-25 26l48 45a715 715 0 0 0-17 4c-13 4-28 8-41 13-12 4-25 10-33 18a68 68 0 0 0-22 49c0 19 8 37 22 50a74 74 0 0 0 51 20c19 0 38-7 51-20 4-3 7-7 9-12v99h-423v-191h264a18 18 0 0 0 0-35h-264v-162z m459 0h194v162h-169l42-40a18 18 0 0 0-24-26l-43 40v-136z m194 197v191h-194v-97c3 4 5 7 8 10a74 74 0 0 0 51 20c19 0 38-7 51-20a68 68 0 0 0 22-50 68 68 0 0 0-22-49c-1-2-3-3-5-5h89z m-689-104v295c0 4 1 8 2 11l-90-28 88-278z m78 331h502l-45 144-457-144z m422-223a705 705 0 0 1 22 5c13 3 27 7 38 11 11 5 18 8 21 11a33 33 0 0 1 10 23c0 9-3 17-10 24a39 39 0 0 1-27 10c-10 0-19-4-26-10-3-2-7-9-11-20-4-10-8-22-12-34a595 595 0 0 1-5-20z m-47 0a599 599 0 0 1-5 20c-3 12-7 24-11 34-5 11-9 18-11 20a39 39 0 0 1-27 10c-10 0-19-4-26-10a33 33 0 0 1-11-24c0-8 4-17 11-23 2-3 9-6 21-11 11-4 24-8 37-11a721 721 0 0 1 22-5z" horiz-adv-x="1000" />

<glyph glyph-name="hand-a" unicode="&#xe840;" d="M493 789a32 32 0 0 0 32-32v-307a18 18 0 1 1 36 0v221a32 32 0 0 0 64 0v-413a18 18 0 0 1 36 0v228a32 32 0 0 0 64 0v-94l7-67a196 196 0 0 0-19-109l-7-14a168 168 0 0 0-57-64l-56-38a89 89 0 0 1-39-74v-147a18 18 0 1 1 35 0v147a54 54 0 0 0 24 45l56 37a204 204 0 0 1 69 78l7 14a232 232 0 0 1 23 129l-7 65v92a68 68 0 0 1-100 60v125a68 68 0 0 1-100 60v26a68 68 0 0 1-134 16 68 68 0 0 1-102-59v-26a68 68 0 0 1-100-59v-416c0-25 5-50 16-73l22-49a154 154 0 0 0 14-64v-148a18 18 0 1 1 35 0v148a189 189 0 0 1-16 78l-23 50a139 139 0 0 0-12 58v416a32 32 0 0 0 64 0v-222a18 18 0 1 1 36 0v307a32 32 0 0 0 64 0v-221a18 18 0 1 1 36 0v264a32 32 0 0 0 32 32z" horiz-adv-x="1000" />

@@ -140,7 +140,7 @@

<glyph glyph-name="hand-c" unicode="&#xe842;" d="M367 9c-15 0-28-13-28-29v-91c0-15 13-28 28-28h387c16 0 28 13 28 28v91c0 16-12 29-28 29h-387z m8-113v77h372v-77h-372z m34 155v-5a18 18 0 0 1 35 0v5c0 30-15 58-39 74l-56 37c-24 17-44 39-57 65l-7 14a196 196 0 0 0-19 109l7 66v95c0 17 14 32 32 32 18 0 32-15 32-32v-228a18 18 0 0 1 36 0v413c0 18 14 33 32 33s32-15 32-33v-221a18 18 0 0 1 36 0v307c0 18 14 32 32 32s32-14 32-32v-264a18 18 0 0 1 36 0v221c0 18 14 32 32 32s32-14 32-32v-307a18 18 0 0 1 36 0v222c0 17 14 32 32 32s32-15 32-32v-417c0-19-4-39-12-57l-23-50c-11-24-16-51-16-78v-6a18 18 0 0 1 35 0v6c0 22 5 44 14 64l22 49c11 23 16 47 16 72v417c0 37-30 67-68 67-12 0-22-3-32-8v26c0 38-30 68-68 68-12 0-24-3-34-9-7 30-34 52-66 52-37 0-68-30-68-68v-26c-9 5-20 8-32 8-37 0-68-30-68-68v-126c-9 5-20 9-32 9-37 0-68-31-68-68v-92l-7-65c-5-44 3-89 23-129l7-14a204 204 0 0 1 69-78l56-37c15-10 24-27 24-45l0 0z" horiz-adv-x="1000" />

<glyph glyph-name="hand-geben" unicode="&#xe843;" d="M802 849a18 18 0 0 1-24-10l-32-76a218 218 0 0 1-18-86v-6c0-6-2-11-6-15l-100-101a68 68 0 0 1 96-98l11 10v-478a39 39 0 0 0-40-39h-285a18 18 0 0 1 0-36h285a75 75 0 0 1 75 75v512l52 50a18 18 0 1 1-25 25l-97-93a33 33 0 0 0-46 47l99 101a57 57 0 0 1 17 40v6c0 25 5 49 15 72l32 76a18 18 0 0 1-9 24z m130-64a18 18 0 0 0 29-20l-46-71a25 25 0 0 1-5-12l-12-179a175 175 0 0 0-21-73l-43-78a18 18 0 0 0-32 17l44 79a139 139 0 0 1 17 58l12 178a61 61 0 0 0 10 30l47 71z m-871-877a18 18 0 0 0-29 20l53 80a25 25 0 0 1 4 12l13 159a175 175 0 0 0 24 75l77 130c2 5 7 8 11 9v239c0 42 34 75 75 75h315a18 18 0 0 0 0-36h-315a39 39 0 0 1-39-39v-442l51 47a69 69 0 0 0 95-100l-103-100a21 21 0 0 1-6-15v-4c0-31-7-62-19-90l-34-75a18 18 0 1 0-32 15l33 75a182 182 0 0 1 16 75v4a56 56 0 0 0 17 40l103 100a34 34 0 0 1-46 49l-76-70a18 18 0 0 0-28 6 18 18 0 0 0-7 14v173l-58-98a139 139 0 0 1-19-60l-13-159a61 61 0 0 0-10-29l-53-80z" horiz-adv-x="1000" />
<glyph glyph-name="hand-geben-a" unicode="&#xe843;" d="M802 849a18 18 0 0 1-24-10l-32-76a218 218 0 0 1-18-86v-6c0-6-2-11-6-15l-100-101a68 68 0 0 1 96-98l11 10v-478a39 39 0 0 0-40-39h-285a18 18 0 0 1 0-36h285a75 75 0 0 1 75 75v512l52 50a18 18 0 1 1-25 25l-97-93a33 33 0 0 0-46 47l99 101a57 57 0 0 1 17 40v6c0 25 5 49 15 72l32 76a18 18 0 0 1-9 24z m130-64a18 18 0 0 0 29-20l-46-71a25 25 0 0 1-5-12l-12-179a175 175 0 0 0-21-73l-43-78a18 18 0 0 0-32 17l44 79a139 139 0 0 1 17 58l12 178a61 61 0 0 0 10 30l47 71z m-871-877a18 18 0 0 0-29 20l53 80a25 25 0 0 1 4 12l13 159a175 175 0 0 0 24 75l77 130c2 5 7 8 11 9v239c0 42 34 75 75 75h315a18 18 0 0 0 0-36h-315a39 39 0 0 1-39-39v-442l51 47a69 69 0 0 0 95-100l-103-100a21 21 0 0 1-6-15v-4c0-31-7-62-19-90l-34-75a18 18 0 1 0-32 15l33 75a182 182 0 0 1 16 75v4a56 56 0 0 0 17 40l103 100a34 34 0 0 1-46 49l-76-70a18 18 0 0 0-28 6 18 18 0 0 0-7 14v173l-58-98a139 139 0 0 1-19-60l-13-159a61 61 0 0 0-10-29l-53-80z" horiz-adv-x="1000" />

<glyph glyph-name="hand-mit-werkzeug" unicode="&#xe844;" d="M942 596a27 27 0 0 1-22 11h-131c-15 0-28 13-28 29v28c0 16 13 29 28 29h131c8 0 17 4 22 11 5 7 6 15 2 23a186 186 0 0 1-169 109c-102 0-186-84-186-186 0-49 19-93 50-126l-75-74-33 34a89 89 0 0 1-126 0 88 88 0 0 1-26-64 60 60 0 0 1-54-17l-204-203c-11-12-18-27-18-43s7-32 18-43l90-90c31-31 71-47 112-47l97-97c3-4 8-5 12-5 5 0 9 1 13 5 7 7 7 18 0 25l-78 78c26 7 51 20 72 41l62 62c60 60 62 156 8 219l0 0-79 79a53 53 0 0 0 0 75 53 53 0 0 0 75 0l34-34-41-41a18 18 0 0 1 0-26c3-3 8-5 13-5 4 0 9 2 12 5l142 142c31-22 69-36 110-36 72 0 139 43 169 109 3 8 3 16-3 23l1 0z m-466-484l-63-63a124 124 0 0 0-88-36c-33 0-65 13-88 36l-91 90a25 25 0 0 0-7 18c0 7 3 13 7 18l204 204c5 4 11 7 18 7 6 0 13-3 18-7l90-91a124 124 0 0 0 36-88c0-33-13-65-36-88v0z m299 388c-83 0-150 67-150 150s67 150 150 150c52 0 101-28 128-71h-114c-35 0-64-29-64-65v-28c0-36 29-65 64-65h114c-27-43-76-71-128-71z m-71-339l2 2a104 104 0 0 1 0 146l-90 89a18 18 0 0 1-25 0 18 18 0 0 1 0-25l89-89a68 68 0 0 0 0-96l-2-2a61 61 0 0 1 0-86l192-191 25 25-191 191a25 25 0 0 0 0 35v1z m-563-134l-93-93a18 18 0 0 1 0-25c4-4 8-6 13-6 4 0 9 2 12 6l93 93c7 7 7 18 0 25a18 18 0 0 1-25 0h0z" horiz-adv-x="1000" />

@@ -174,7 +174,7 @@

<glyph glyph-name="ihk-heilbronn-franken" unicode="&#xe853;" d="M350 564h-64v-35h64v35z m371 0h-64v-35h64v35z m-428-57h-64v-36h64v36z m486 0h-65v-36h65v36z m-275 249c9 0 17 8 17 18v44a18 18 0 0 1-35 0v-44c0-10 8-18 18-18z m-340-435h-35v-121h35v121z m86 0h-36v-121h36v121z m543 0h-36v-121h36v121z m-86 0h-36v-121h36v121z m-371 0h-36v-121h36v121z m543 0h-36v-121h36v121z m-375-214a75 75 0 0 1-75-75v-43a18 18 0 0 1 35 0v43c0 22 18 39 40 39s39-17 39-39v-43a18 18 0 0 1 36 0v43c0 42-34 75-75 75z m185 0a75 75 0 0 1-75-75v-43a18 18 0 0 1 36 0v43c0 22 18 39 39 39s40-17 40-39v-43a18 18 0 0 1 35 0v43c0 42-33 75-75 75z m-371 0a75 75 0 0 1-75-75v-43a18 18 0 0 1 36 0v43c0 22 17 39 39 39s39-17 39-39v-43a18 18 0 0 1 36 0v43c0 42-34 75-75 75z m638-74l-199 122c-10 6-21 9-32 9h-443c-11 0-22-3-31-9l-200-122a18 18 0 1 1 19-30l199 122c4 2 9 4 13 4h443c4 0 9-2 13-4l199-122a18 18 0 1 1 19 30h0z m8 385c-1 3-2 6-4 8l-186 228-1 0c-6 7-14 10-23 10h-132a18 18 0 0 1 0-35h130l161-196h-302v86c0 15-7 29-19 37l-18 13a11 11 0 0 0-4 9v95c0 35-28 63-62 63s-63-28-63-63v-95c0-3-1-7-4-9l-18-13a46 46 0 0 1-19-37v-86h-302l161 196h130a18 18 0 0 1 0 35h-132c-9 0-17-3-23-10l0 0-187-228c-2-3-3-6-4-9 0-1 0-2 0-3v-296a18 18 0 0 1 35 0v279h326c17 0 32 14 32 32v90c0 3 1 7 4 9l18 13a46 46 0 0 1 19 37v95c0 15 12 27 26 27 15 0 27-12 27-27v-95c0-15 7-29 19-37l18-13c3-2 4-6 4-9v-90c0-18 15-32 32-32h325v-279a18 18 0 0 1 36 0v297c0 1 0 2 0 3h0z m-460 2c27 0 50 22 50 50 0 27-23 50-50 50-28 0-51-23-51-50 0-28 23-50 51-50z m0 64c8 0 14-6 14-14s-6-15-14-15-15 7-15 15 7 14 15 14z m0-210c27 0 50 23 50 50 0 28-23 51-50 51-28 0-51-23-51-51 0-27 23-50 51-50z m0 65c8 0 14-6 14-14s-6-15-14-15-15 7-15 15 7 14 15 14z" horiz-adv-x="1000" />

<glyph glyph-name="ihk-köln" unicode="&#xe854;" d="M580 810a18 18 0 0 0 35 0l55-342h13c9 0 17-6 18-15l12-78 11 78a18 18 0 0 0 18 15h13l55 342a18 18 0 0 0 35 0l55-342h13c9 0 16-6 18-15l20-136c7-44 10-88 10-132v-278a18 18 0 1 0-36 0v278c0 43-3 85-9 126l-18 121h-14a18 18 0 0 0-17 15l-40 247-39-247a18 18 0 0 0-18-15h-13l-18-122a854 854 0 0 1-8-101c0-8 0-16 0-24v-278c0-10-8-18-18-18h-1c-9 0-17 8-17 18v280c0 7 0 15 0 22a854 854 0 0 1-9 102l-18 121h-13a18 18 0 0 0-18 15l-40 247-39-247a18 18 0 0 0-18-15h-13l-18-122a854 854 0 0 1-9-123v-266a32 32 0 0 0-32-32h-398a18 18 0 1 0 0 36h395v262c0 43 3 86 9 128l20 138a18 18 0 0 0 18 15h13l55 342z m247-471c-10 0-18-8-18-18v-89h36v89c0 10-8 18-18 18z m-247-18a18 18 0 1 0 35 0v-89h-35v89z m276-196c-10 0-18-8-18-18v-89h36v89c0 10-8 18-18 18z m-248-18a18 18 0 1 0 36 0v-89h-36v89z m191 18c-10 0-18-8-18-18v-89h36v89c0 10-8 18-18 18z m-248-18a18 18 0 1 0 36 0v-89h-36v89z m-323 209l-55-58a61 61 0 0 0-44-19h-59a18 18 0 1 0 0 36h59c7 0 13 3 18 8l58 61a32 32 0 0 0 45 1l66-63c4-4 11-7 17-7h94a18 18 0 0 0 0-36h-94a61 61 0 0 0-42 17l-63 60z m71-199c0 29-43 76-62 95a13 13 0 0 1-19 1c-20-20-62-65-62-96v-96a14 14 0 0 1 14-14h114c8 0 15 7 15 14v96z m-107 0a12 12 0 0 0 0 3c1 2 2 4 3 7 3 6 8 13 13 21a301 301 0 0 0 19 23c6-8 13-16 19-24 6-8 11-15 14-21 2-5 3-8 3-9 0 0 0 0 0 0v-74h-71v74z m192 8c-9 0-17-8-17-18v-86a18 18 0 1 1 35 0v86c0 10-8 18-18 18z m-332-18a18 18 0 1 0 36 0v-86a18 18 0 1 0-36 0v86z" horiz-adv-x="1000" />
<glyph glyph-name="ihk-koeln" unicode="&#xe854;" d="M580 810a18 18 0 0 0 35 0l55-342h13c9 0 17-6 18-15l12-78 11 78a18 18 0 0 0 18 15h13l55 342a18 18 0 0 0 35 0l55-342h13c9 0 16-6 18-15l20-136c7-44 10-88 10-132v-278a18 18 0 1 0-36 0v278c0 43-3 85-9 126l-18 121h-14a18 18 0 0 0-17 15l-40 247-39-247a18 18 0 0 0-18-15h-13l-18-122a854 854 0 0 1-8-101c0-8 0-16 0-24v-278c0-10-8-18-18-18h-1c-9 0-17 8-17 18v280c0 7 0 15 0 22a854 854 0 0 1-9 102l-18 121h-13a18 18 0 0 0-18 15l-40 247-39-247a18 18 0 0 0-18-15h-13l-18-122a854 854 0 0 1-9-123v-266a32 32 0 0 0-32-32h-398a18 18 0 1 0 0 36h395v262c0 43 3 86 9 128l20 138a18 18 0 0 0 18 15h13l55 342z m247-471c-10 0-18-8-18-18v-89h36v89c0 10-8 18-18 18z m-247-18a18 18 0 1 0 35 0v-89h-35v89z m276-196c-10 0-18-8-18-18v-89h36v89c0 10-8 18-18 18z m-248-18a18 18 0 1 0 36 0v-89h-36v89z m191 18c-10 0-18-8-18-18v-89h36v89c0 10-8 18-18 18z m-248-18a18 18 0 1 0 36 0v-89h-36v89z m-323 209l-55-58a61 61 0 0 0-44-19h-59a18 18 0 1 0 0 36h59c7 0 13 3 18 8l58 61a32 32 0 0 0 45 1l66-63c4-4 11-7 17-7h94a18 18 0 0 0 0-36h-94a61 61 0 0 0-42 17l-63 60z m71-199c0 29-43 76-62 95a13 13 0 0 1-19 1c-20-20-62-65-62-96v-96a14 14 0 0 1 14-14h114c8 0 15 7 15 14v96z m-107 0a12 12 0 0 0 0 3c1 2 2 4 3 7 3 6 8 13 13 21a301 301 0 0 0 19 23c6-8 13-16 19-24 6-8 11-15 14-21 2-5 3-8 3-9 0 0 0 0 0 0v-74h-71v74z m192 8c-9 0-17-8-17-18v-86a18 18 0 1 1 35 0v86c0 10-8 18-18 18z m-332-18a18 18 0 1 0 36 0v-86a18 18 0 1 0-36 0v86z" horiz-adv-x="1000" />

<glyph glyph-name="ihk-rhein-neckar" unicode="&#xe855;" d="M500 175c-10 0-18-8-18-18v-60h36v60c0 10-8 18-18 18z m0 563c10 0 18 8 18 18v30a18 18 0 0 1-36 0v-30c0-10 8-18 18-18z m-114-199c10 0 18 8 18 18v49l96 72 96-72v-49a18 18 0 0 1 36 0v50c0 10-5 20-13 26l-100 75c-11 9-27 9-38 0l-100-75c-8-6-13-16-13-26v-50c0-10 8-18 18-18z m473-443v120c48 8 84 49 84 98 0 56-45 100-100 100s-100-44-100-100c0-48 35-89 81-98v-111c-60 15-124 22-163 26v66h39c10 0 18 8 18 17v43a18 18 0 0 1-36 0v-25h-36v250h11a18 18 0 0 1 0 36h-314a18 18 0 0 1 0-36h11v-250h-36v25a18 18 0 0 1-36 0v-43c0-9 8-17 18-17h39v-66c-40-4-106-12-165-26v111c47 8 83 49 83 98 0 56-45 100-100 100s-100-44-100-100c0-48 35-89 81-98v-121c-56-18-99-43-99-78 0-89 276-121 461-121s461 32 461 121c0 36-45 61-102 79z m-80 218c0 36 28 65 64 65s64-29 64-65-29-64-64-64-64 29-64 64z m-218 168h50v-250h-50v250z m-86 0h50v-250h-50v250z m-86 0h50v-250h-50v250z m-296-168c0 36 29 65 64 65s64-29 64-65-28-64-64-64-64 29-64 64z m407-382c-279 0-425 55-425 85 0 18 72 63 285 80v0c8 2 15 9 15 17v83h250v-83c0-9 8-17 18-17 211-17 282-62 282-80 0-30-146-85-425-85z" horiz-adv-x="1000" />

@@ -214,8 +214,6 @@

<glyph glyph-name="paragraph" unicode="&#xe867;" d="M647 324c0 38-17 73-50 100-19 17-55 27-89 37-19 6-36 11-49 16-14 7-62 35-47 106 5 21 15 35 33 43 36 18 99 10 161-20 8-4 19 0 23 9 5 8 1 19-8 23-56 28-136 48-192 21-27-14-45-37-52-68-16-78 24-126 67-146 15-7 34-12 54-18 29-9 62-18 76-30 25-21 37-45 37-73 0-38-31-61-57-69-15 7-33 12-53 18-29 8-62 18-76 30-24 21-37 45-37 72 0 13 4 25 11 36 5 8 3 19-6 25-8 5-19 3-24-6a100 100 0 0 1-16-55c0-38 17-72 49-100 20-16 55-27 89-36 19-6 37-11 49-17 15-7 63-34 47-106-4-20-15-34-32-43-36-18-99-10-161 20-9 5-19 1-24-8-4-9 0-20 9-24 37-18 85-33 129-33 22 0 44 4 63 13 27 13 45 37 51 68 12 56-6 97-33 123 36 19 58 53 58 92h0z m124 469h-542c-95 0-172-77-172-172v-542c0-95 77-172 172-172h542c95 0 172 77 172 172v542c0 95-77 172-172 172z m136-714c0-75-61-136-136-136h-542c-75 0-136 61-136 136v542c0 75 61 136 136 136h542c75 0 136-61 136-136v-542z" horiz-adv-x="1000" />

<glyph glyph-name="persoenliche_entwicklung" unicode="&#xe868;" d="M257 807c-62 0-109-55-99-116l9-50a92 92 0 0 1 90-77 92 92 0 0 1 90 77l9 50c10 61-37 116-99 116z m0-36c40 0 70-35 63-74l-8-50a56 56 0 0 0-55-47 56 56 0 0 0-55 47l-8 50c-7 39 23 74 63 74z m386 8h161c9 0 17-8 17-18v-161a18 18 0 0 0-35 0v118l-199-199a18 18 0 0 0-25 25l199 199h-118a18 18 0 1 0 0 36z m161-382c-10 0-18-8-18-17v-102h-97c-10 0-18-8-18-18v-96h-96c-10 0-18-8-18-18v-96h-96c-10 0-18-8-18-18v-115a18 18 0 1 1 36 0v97h96c10 0 18 8 18 18v96h96c10 0 18 8 18 18v97h97c9 0 17 8 17 17v102h97a18 18 0 1 1 0 35h-114z m-629-160a18 18 0 1 1-36-3l27-288a46 46 0 0 1 47-42h88a46 46 0 0 1 46 42l28 288a18 18 0 1 1-36 3l-27-288a11 11 0 0 0-11-10h-88a11 11 0 0 0-11 10l-27 288z m-59 208a61 61 0 0 0 61 59 8 8 0 0 0 4-1l44-25a61 61 0 0 1 59 0l44 25a9 9 0 0 0 4 1c33 0 60-26 62-59v0l13-182a18 18 0 1 1 35 3l-13 181a97 97 0 0 1-97 92c-7 0-15-2-22-5l-43-25c-8-4-17-4-25 0l-43 25a44 44 0 0 1-22 5 97 97 0 0 1-97-92l-8-182a18 18 0 0 1 35-2l9 182z" horiz-adv-x="1000" />

<glyph glyph-name="person-an-tafel-a" unicode="&#xe869;" d="M918 807h-500a18 18 0 0 1 0-36h500c14 0 25-11 25-25v-514c0-14-11-25-25-25h-393a18 18 0 0 1 0-36h393a61 61 0 0 1 61 61v514a61 61 0 0 1-61 61z m-541-571c-10 0-19-7-20-16l-25-274a11 11 0 0 0-11-10h-92a11 11 0 0 0-11 10l-25 274c-1 9-10 17-20 16-10-1-17-10-16-20l25-274a46 46 0 0 1 47-42h92c24 0 44 18 47 42l25 274c1 10-7 19-16 20z m-192 373a91 91 0 0 1 90-77c45 0 83 32 90 77l9 50a100 100 0 0 1-99 116 100 100 0 0 1-99-116l9-50z m41 108a64 64 0 0 0 49 22 64 64 0 0 0 63-74l-8-50a56 56 0 0 0-55-47c-27 0-51 20-55 47l-8 50c-3 18 2 37 14 52z m128-196c-7 0-15-2-22-6l-45-26c-8-4-18-4-25 0l-46 26c-7 4-14 6-22 6-53 0-97-41-99-94l-9-194c-1-10 7-18 17-19 10 0 18 7 18 17l10 194a63 63 0 0 0 63 61c2 0 3-1 5-2l45-26c19-11 42-11 60 0l46 26c1 1 3 2 4 2 34 0 62-27 64-61l11-194c0-10 8-17 17-17h1c10 1 18 9 17 19l-10 194c-3 53-47 94-100 94v0z" horiz-adv-x="1000" />

<glyph glyph-name="person-an-tafel-b" unicode="&#xe86a;" d="M889 807h-500a18 18 0 0 1 0-36h500c14 0 25-11 25-25v-385c0-14-11-25-25-25h-393a18 18 0 0 1 0-36h393a61 61 0 0 1 61 61v385a61 61 0 0 1-61 61z m-541-571c-10 0-19-7-19-16l-26-274a11 11 0 0 0-10-10h-93a11 11 0 0 0-11 10l-25 274c-1 9-9 16-19 16-10-1-17-10-16-20l25-274a46 46 0 0 1 46-42h93c24 0 44 18 46 42l25 274c1 10-6 19-16 20z m-192 373a91 91 0 0 1 90-77c46 0 84 32 91 77l8 50a100 100 0 0 1-99 116 100 100 0 0 1-98-116l8-50z m41 108a64 64 0 0 0 49 22 64 64 0 0 0 64-74l-8-50a56 56 0 0 0-56-47c-27 0-50 20-55 47l-8 50c-3 18 2 37 14 52z m285-157l50 69c6 8 4 19-4 25-8 6-19 4-25-4l-50-69a111 111 0 0 0-64-42l-68-17c-6-1-12-3-17-6l-46-27c-8-4-17-4-25 0l-45 26c-7 4-15 6-23 6-53 0-96-41-99-94l-9-194c0-10 7-18 17-19h1c9 0 17 8 18 17l9 194a63 63 0 0 0 63 61c2 0 4-1 5-2l45-26c19-11 42-11 61 0l46 27c2 1 4 2 7 2l68 17c34 8 64 28 85 56v0z m311-527c39 0 73 28 79 67l7 44c5 26-3 52-19 71a88 88 0 0 1-134 0 88 88 0 0 1-20-71l8-44a80 80 0 0 1 79-67h0z m-40 159c10 12 24 19 40 19 15 0 29-7 39-19 10-11 15-27 12-42l-7-44a45 45 0 0 0-44-37c-22 0-41 16-44 37l-8 44c-2 15 2 31 12 42z m-283-92a80 80 0 0 1 80-67c39 0 73 28 79 67l8 44c4 26-3 52-20 71a88 88 0 0 1-134 0 88 88 0 0 1-20-71l8-44h-1z m40 92c10 12 25 19 40 19 15 0 30-7 40-19 10-11 14-27 11-42l-7-44a45 45 0 0 0-44-37c-22 0-41 16-44 37l-8 44c-2 15 2 31 12 42z m347-185c-7 0-13-2-19-5l-29-17c-8-4-17-4-24 0l-30 17c-6 3-12 5-19 5-42 0-77-33-79-75 0-9 7-18 17-18 10-1 18 7 19 17 1 22 20 40 43 40 1 0 1 0 2-1l29-16c18-11 41-11 60 0l30 17c23 0 42-18 43-40 0-10 8-17 18-17h1c9 0 17 8 17 18-2 42-37 75-79 75z m-214-6a78 78 0 0 1-29 6c-6 0-13-2-19-5l-29-17c-7-4-17-4-24 0l-30 17c-5 3-12 5-19 5-42 0-77-33-79-74 0-10 8-19 17-19h1c10 0 18 7 18 17 1 22 20 40 43 40 1 0 1 0 2 0l29-17c18-10 41-10 60 0l30 17c6 0 11-1 16-3 10-4 20 1 24 10 3 9-1 20-11 23v0z" horiz-adv-x="1000" />
@@ -270,8 +268,6 @@

<glyph glyph-name="social-linkedin" unicode="&#xe883;" d="M329 454c9 0 17-8 17-18v-315a18 18 0 1 0-35 0v315c0 10 8 18 18 18z m160-18a18 18 0 1 1-35 0v-315a18 18 0 1 1 35 0v186a111 111 0 0 0 222 0v-186a18 18 0 1 1 35 0v186c0 81-65 147-146 147-44 0-84-20-111-51v33z m-160 128a29 29 0 1 1 0 57 29 29 0 0 1 0-57z m-100 229c-95 0-172-77-172-172v-542c0-95 77-172 172-172h542c95 0 172 77 172 172v542c0 95-77 172-172 172h-542z m542-36a136 136 0 0 0 136-136v-542a136 136 0 0 0-136-136h-542a136 136 0 0 0-136 136v542a136 136 0 0 0 136 136h542z" horiz-adv-x="1000" />

<glyph glyph-name="social-twitter" unicode="&#xe884;" d="M771 757a136 136 0 0 0 136-136v-542a136 136 0 0 0-136-136h-542a136 136 0 0 0-136 136v542a136 136 0 0 0 136 136h542z m-542 36c-95 0-172-77-172-172v-542c0-95 77-172 172-172h542c95 0 172 77 172 172v542c0 95-77 172-172 172h-542z m196-543c0-81 66-146 146-146h79a18 18 0 1 1 0 35h-79a111 111 0 0 0-110 111v96h89a18 18 0 1 1 0 36h-89v225a18 18 0 1 1-36 0v-225h-68a18 18 0 1 1 0-36h68v-96z" horiz-adv-x="1000" />

<glyph glyph-name="social-youtube" unicode="&#xe885;" d="M771 757a136 136 0 0 0 136-136v-542a136 136 0 0 0-136-136h-542a136 136 0 0 0-136 136v542a136 136 0 0 0 136 136h542z m-542 36c-95 0-172-77-172-172v-542c0-95 77-172 172-172h542c95 0 172 77 172 172v542c0 95-77 172-172 172h-542z m162-608a21 21 0 0 0-30 20v290a21 21 0 0 0 30 20l312-146c16-7 16-31 0-38l-312-146z m327 113c44 21 44 83 0 104l-312 145c-38 18-81-10-81-52v-290c0-42 43-70 81-52l312 145z" horiz-adv-x="1000" />

<glyph glyph-name="solidaritaetsschleife" unicode="&#xe886;" d="M327-66c64 78 123 156 177 234 53-78 112-156 177-234 3-3 8-6 13-5 2 0 4 0 6 1 6 2 10 9 10 16l-10 118h62c6 0 12 3 15 9 2 5 2 12-2 17-52 69-115 166-165 244 39 67 74 135 105 206 13 32 10 67-9 96-13 20-28 42-40 61-13 19-24 35-30 41-11 13-24 23-43 30-19 7-45 10-83 10h-14c-37 0-63-3-82-10-20-7-33-17-43-30-11-12-45-63-70-102a101 101 0 0 1-9-96c31-71 66-140 105-206-73-113-124-189-165-244-4-5-4-12-2-17 3-5 9-9 15-9h62l-9-118c-1-7 3-13 10-16 2-1 4-1 6-1 5 0 9 2 13 6m339 145v-1l7-83c-56 70-109 140-156 209-31 46-60 92-87 137l-3-2h0l3 2c-41 68-77 139-108 211-9 21-7 45 6 64 18 27 32 50 44 67 3-16 7-32 13-48 0-1 1-2 1-3a283 283 0 0 1 28-54c23-36 49-76 75-117l8-13c26-41 53-83 80-125 66-102 114-173 153-228h-47c-9 0-17-7-17-16v0z m-45 555v1c6 16 10 32 14 48 11-17 26-40 44-67 12-19 15-43 6-64a1751 1751 0 0 0-95-189c-22 34-44 68-66 102l-1 3c24 38 48 76 70 110 11 17 20 36 28 55v1l0 0h-1 1l0 0z m-52-39l-3 2c-20-31-41-64-62-98-22 34-43 67-63 98-7 11-13 23-18 35a213 213 0 0 0 162 0c-5-12-11-24-19-35l3-2h0z m-77-132l0-1h0v1z m104 200a251 251 0 0 1-86 18h-13c-29-1-57-7-84-17l-12 58c5 5 12 10 25 15 15 4 37 8 71 8h13c35 0 57-4 71-9 14-4 21-10 26-16-1-19-5-39-11-57z m-255-586c0 9-6 17-15 18h-49c36 51 80 116 139 207 21-36 44-71 68-107a3159 3159 0 0 0-150-201l7 83v0z" horiz-adv-x="1000" />
@@ -290,8 +286,6 @@

<glyph glyph-name="system-prozess" unicode="&#xe88d;" d="M688 308h-384c-85 0-154 69-154 153s69 154 154 154h512l-83-83a18 18 0 0 1 0-25c7-7 18-7 25 0l114 113c7 7 7 18 0 25l-114 114a18 18 0 0 1-25 0 18 18 0 0 1 0-25l83-83h-512c-105 0-190-85-190-190 0-104 85-189 190-189h384c85 0 154-69 154-153s-69-154-154-154h-556a18 18 0 0 1 0-36h556c105 0 189 85 189 190s-84 189-189 189z m-285 54v202l-175-101 175-101z m-36 61l-67 40 67 39v-79z m237-382l51 51 52-51 25 25-51 52 51 51-25 25-52-51-51 51-25-25 51-51-51-52 25-25z" horiz-adv-x="1000" />

<glyph glyph-name="teamwork-team-zusammenarbeit" unicode="&#xe88e;" d="M229 626c9 18 30 30 51 30h4c-23 9-39 33-32 60 8 29 39 43 68 38l23-4c-20 16-27 43-11 66 16 21 45 28 69 20l126-45c25-9 53-14 81-14h33c72 0 135-50 135-118v-38c18-9 30-30 30-51v-4c9 23 33 40 60 32 29-8 43-39 38-68l-4-23c16 20 43 27 66 11 21-16 28-45 20-69l-45-126a241 241 0 0 1-14-81v-33c0-72-50-135-118-135h-38c-9-18-30-30-51-30h-4c23-9 40-33 32-60-8-29-39-43-68-38l-23 4c20-16 27-43 11-66-16-21-45-28-69-20l-126 45a241 241 0 0 1-81 14h-33c-72 0-135 50-135 118v38c-18 9-30 30-30 51v4c-9-23-33-39-60-32-29 8-43 39-38 68l4 23c-16-20-43-27-66-11-21 16-28 45-20 69l45 126c10 25 14 53 14 81v33c0 72 51 135 118 135h38z m51-36h182a18 18 0 0 0 3-35l-164-33c-14-3-18-13-17-19 2-8 12-16 27-14l230 31a27 27 0 0 0 25-10c6-8 8-20 1-30l-33-45c-4-6-4-14 4-20 10-6 23-6 32 1l0 0 45 31-12 87c-4 29 12 60 42 66 27 7 51-11 59-36v6c0 23 14 46 36 54v35c0 43-42 82-99 82h-33c-32 0-64 6-93 16l-126 45c-11 4-23 0-28-7-4-5-3-15 8-20l118-51a18 18 0 0 0-10-34l-164 29c-14 3-25-6-27-13-1-6 3-16 17-19l164-32a18 18 0 0 0-4-35h-183c-14 0-20-9-20-15 0-6 6-15 20-15z m341-183l-30-20c-21-16-51-16-73-1-23 16-30 46-13 70l19 26-84-12 22-28 0 0c17-21 17-52 2-74-16-23-46-30-70-13l-25 19 11-83 28 21c21 17 52 17 74 2 23-16 30-46 13-70l-19-25 82 11-20 29c-17 21-17 51-2 73 16 23 46 30 70 13l26-19-11 81z m-223 58l-82-12c-29-3-60 12-66 42-7 27 11 51 36 59h-6c-23 0-46 14-53 36h-36c-43 0-82-42-82-99v-33a277 277 0 0 0-16-93l-45-126c-4-11 0-23 7-28 6-4 15-3 20 8l51 118a18 18 0 0 0 34-10l-29-164c-2-14 6-25 13-27 6-1 16 3 19 17l32 164a18 18 0 0 0 35-4v-183c0-14 9-20 15-20 6 0 15 6 15 20v182a18 18 0 0 0 35 3l33-164c3-14 13-18 19-17 8 2 16 12 14 27l-31 230a27 27 0 0 0 10 25 25 25 0 0 0 30 1l45-33c6-4 14-4 20 5 6 9 6 22-1 31l-36 45z m-138-424c0-43 42-82 99-82h33c32 0 64-6 93-16l126-45c11-4 23 0 28 7 4 5 3 15-8 20l-118 51a18 18 0 0 0 11 34l163-29c14-3 25 6 27 13 1 6-2 16-17 19l-164 32a18 18 0 0 0 4 35h183c14 0 20 9 20 15 0 6-6 15-20 15h-181a18 18 0 0 0-4 35l164 33c14 3 18 13 17 19-2 8-12 16-27 14l-230-31a27 27 0 0 0-25 10 25 25 0 0 0-1 30l33 45c4 6 4 14-4 20-10 6-23 6-32-1l0 0-45-34 12-84c4-29-12-60-42-66-27-7-51 11-59 36v-6c0-23-14-46-36-53v-36z m549 69c43 0 82 42 82 99v33c0 32 6 64 16 93l45 126c4 11 0 23-7 28-5 4-15 3-20-8l-51-118a18 18 0 0 0-34 11l29 163c3 14-6 25-13 27-6 1-16-2-19-17l-32-164a18 18 0 0 0-35 4v183c0 14-9 20-15 20s-15-6-15-20v-181a18 18 0 0 0-35-4l-33 164c-3 14-13 18-19 17-8-2-16-12-14-27l31-230a27 27 0 0 0-10-25 25 25 0 0 0-30-1l-45 33c-6 4-14 4-20-4-6-10-6-23 1-32l0 0 32-45 86 12c29 4 60-12 66-42 7-27-11-51-36-59h6c23 0 46-14 54-36h35z" horiz-adv-x="1000" />

<glyph glyph-name="teller-besteck" unicode="&#xe88f;" d="M504 168c102 0 185 83 185 186s-83 185-185 185-186-83-186-185 83-186 186-186z m0 336c82 0 150-68 150-150s-68-150-150-150-150 67-150 150 67 150 150 150z m228-304c4 6 7 12 11 19 1 1 1 2 2 3a273 273 0 0 1 26 70c1 2 2 4 2 7 1 2 1 5 1 7 5 25 6 50 3 75 0 1 0 3 0 4-1 7-2 14-3 21-2 7-4 14-6 21 0 2 0 3-1 4-7 24-17 47-30 68-2 2-3 4-4 6-1 3-3 4-4 6a266 266 0 0 1-51 55c-1 1-2 2-3 3-6 4-12 9-19 13-3 2-6 4-9 6-5 3-9 5-13 8-5 2-9 4-14 6-3 1-6 3-9 5-1 0-1 0-2 0-4 2-8 3-12 5-5 1-9 3-14 5-2 0-4 1-5 1-59 16-120 13-178-10h0c-1 0-2-1-3-1-6-3-13-6-20-9-3-2-6-4-9-6-4-2-9-5-13-7-3-2-6-5-9-7-4-3-8-5-12-9-3-2-6-4-9-7-4-3-8-7-11-10-2-2-3-3-5-4-1-1-2-3-3-4-3-3-6-6-9-9a217 217 0 0 1-15-19c-2-3-4-6-6-9-3-4-5-8-7-11-2-3-4-7-6-10-1-2-2-3-3-5 0 0 0-1 0-1-17-32-28-68-31-104 0-10 7-18 17-19 10-1 18 6 19 16 3 34 13 66 29 96 2 3 3 5 5 8 2 3 4 7 6 10 2 2 4 5 6 8 2 3 4 6 7 9 2 2 4 5 6 7 2 3 5 6 7 8 3 2 5 5 7 7 4 3 7 6 11 9 2 2 4 4 7 6a289 289 0 0 0 18 14c4 2 8 4 12 6 3 2 5 3 8 5 6 3 12 6 19 8 0 1 0 1 1 1 49 20 104 23 154 8 2 0 3 0 5-1 4-1 8-3 13-4 3-1 6-3 9-4 4-1 7-3 11-5 4-1 7-3 11-5 4-2 8-5 12-7 2-2 5-3 8-5 5-3 10-7 16-12 0 0 1-1 2-1 6-5 12-11 18-17 10-9 19-20 27-31 1-2 2-4 3-6 2-1 3-3 4-5 7-12 13-24 19-37 3-7 5-15 7-23l1-3c2-6 4-13 5-19 0-3 1-6 1-9 1-5 2-9 2-14 0-4 0-8 1-12 0-4 0-8 0-11 0-4 0-7-1-11 0-5 0-9 0-14-1-1-1-3-1-4-7-52-31-101-68-139-6-6-12-11-18-16-2-2-4-3-5-4-5-4-9-7-14-10-4-3-9-5-13-8-2-1-5-3-7-4-7-4-15-7-22-10-49-20-104-23-155-9a35 35 0 0 1-4 1c-4 1-9 3-13 5-3 1-7 2-10 3-3 2-7 3-10 5-4 2-8 4-11 5-4 3-8 5-12 7-3 2-5 4-8 5a260 260 0 0 0-16 12c-1 1-2 1-3 2-6 5-12 10-17 16 0 0-1 0-1 0a240 240 0 0 0-52 79 18 18 0 0 1-33-13c17-44 45-81 81-110 1-1 2-1 3-2 6-5 12-9 18-14 3-2 6-3 9-5 5-3 9-6 14-8 4-3 8-5 13-7 3-1 6-3 9-4 1 0 2-1 2-1 4-2 8-3 13-4 4-2 9-4 14-5 1-1 3-1 4-1 24-7 49-11 75-11 34 0 69 7 103 20h0c7 3 13 6 20 9 35 18 65 42 89 71 1 1 2 3 3 4 4 5 8 11 13 17v1z m-557 429c-10 0-18-8-18-18v-93c0-15-9-29-21-35v99a18 18 0 0 1-36 0v-99c-13 6-21 20-21 35v93a18 18 0 0 1-36 0v-93c0-35 24-65 57-73v-349a18 18 0 0 1 36 0v349c32 8 57 38 57 73v93c0 10-8 18-18 18z m735 6c-7 2-15 0-20-6l-37-43c-30-35-46-80-46-125 0-46 17-90 46-125l33-39v-201a18 18 0 0 1 36 0v522c0 7-5 14-12 17h0z m-24-283l-6 7a158 158 0 0 0-37 102c0 37 13 73 37 102l6 6v-217z" horiz-adv-x="1000" />

<glyph glyph-name="treppe" unicode="&#xe890;" d="M146 244c0 10 8 18 18 18h225v224c0 10 8 18 18 18h224v225c0 10 8 18 18 18h242a18 18 0 1 0 0-36h-224v-225c0-9-8-17-18-17h-225v-225c0-10-8-18-17-18h-225v-224a18 18 0 0 0-36 0v242z m504 124c10 0 18-8 18-18v-161a18 18 0 0 0-36 0v118l-319-320a18 18 0 1 0-26 26l320 319h-118a18 18 0 0 0 0 36h161z" horiz-adv-x="1000" />
@@ -302,10 +296,6 @@

<glyph glyph-name="tulpe" unicode="&#xe893;" d="M818 587c-18 0-36-2-54-5v23c0 16-2 32-7 47l-12 34c-4 13-14 23-26 29-13 5-27 4-39-2l-72-36c-26 41-56 72-75 90a42 42 0 0 1-59 0c-18-18-48-49-75-89l-60 34a46 46 0 0 1-65-19l-16-32c-10-20-15-43-15-65v-14c-18 3-36 5-54 5-18 0-32-14-32-32v-286c0-185 146-337 329-346h36c182 9 328 161 328 346v286c0 18-14 32-31 32h-1z m-122 94c4 2 8 1 9 0s5-2 6-6l12-35c4-11 6-23 6-35v-31c-24-6-47-15-68-27-5 36-18 69-34 99l69 35v0z m-197 60c3 2 7 2 10 0 34-33 112-116 119-214a334 334 0 0 1-124-166 333 333 0 0 1-125 166c8 98 85 181 120 214h0z m-220-145c0 17 4 34 11 49l16 32c2 3 5 5 7 5 1 1 5 1 8-1l60-34c-17-30-30-64-35-100a335 335 0 0 1-67 27v22 0z m-86-327v282c162-2 293-134 293-297v-295c-163 9-293 145-293 310v0z m621 0c0-165-129-301-292-310v295c0 162 131 295 292 297v-282z" horiz-adv-x="1000" />

<glyph glyph-name="veranstaltung-intern-beruf" unicode="&#xe894;" d="M275 207h-107v-36h107v36z m-107 114h107v-35h-107v35z m664-114h-107v-36h107v36z m-107 114h107v-35h-107v35z m-405-88a19 19 0 0 0 0 26c3 4 8 6 12 6h191l-40 38a19 19 0 0 0-1 26 18 18 0 0 0 26 1l73-70a18 18 0 0 0 6-14 19 19 0 0 0-6-13l-73-70a18 18 0 0 0-13-5 18 18 0 0 0-13 6 19 19 0 0 0-5 13 19 19 0 0 0 6 13l40 38h-191c-4 0-9 2-12 5z m166-141a154 154 0 0 0-79 43 19 19 0 0 0 0 26 18 18 0 0 0 26 0 118 118 0 0 1 61-32 117 117 0 0 1 68 6 119 119 0 0 1 53 45 122 122 0 0 1 20 66 122 122 0 0 1-20 67 119 119 0 0 1-53 45 117 117 0 0 1-68 6 118 118 0 0 1-61-32 18 18 0 0 0-26 0 19 19 0 0 0 0 26 154 154 0 0 0 79 43 153 153 0 0 0 90-9 155 155 0 0 0 69-58 159 159 0 0 0 26-88 159 159 0 0 0-26-87 155 155 0 0 0-69-58 153 153 0 0 0-90-9z m-154 512h336v85a18 18 0 1 0 36 0v-85h210a29 29 0 0 0 29-29v-543a29 29 0 0 0-29-28h-828a29 29 0 0 0-29 28v543a29 29 0 0 0 29 29h210v85a18 18 0 1 0 36 0v-85z m-239-140h278a18 18 0 1 0 0-35h-278v-390h814v390h-277a18 18 0 0 0 0 35h277v104h-203v-34a18 18 0 1 0-36 0v34h-336v-34a18 18 0 1 0-36 0v34h-203v-104z" horiz-adv-x="1000" />

<glyph glyph-name="veranstaltung-intern-feier" unicode="&#xe895;" d="M435 364a14 14 0 0 1 14 10l37 116c5 13 23 13 28 0l37-116a14 14 0 0 1 14-10h122c14 0 20-18 8-26l-98-72a14 14 0 0 1-6-16l38-116c4-13-11-24-22-16l-99 72a14 14 0 0 1-16 0l-99-72c-11-8-26 3-22 16l38 116a14 14 0 0 1-6 16l-98 72c-12 8-6 26 8 26h122z m48-1a50 50 0 0 0-48-35h-56l45-33a50 50 0 0 0 19-56l-18-53 46 33a50 50 0 0 0 58 0l46-33-17 53a50 50 0 0 0 18 56l45 33h-56a50 50 0 0 0-48 35l-17 53-17-53z m-272-199h107v-35h-107v35z m107 115h-107v-36h107v36z m364-115h107v-35h-107v35z m107 115h-107v-36h107v36z m-457 410a18 18 0 1 1-36 0v-85h-210a29 29 0 0 1-29-29v-543a29 29 0 0 1 29-28h828a29 29 0 0 1 29 28v543a29 29 0 0 1-29 29h-210v85a18 18 0 1 1-36 0v-85h-336v85z m336-155a18 18 0 1 1 36 0v34h203v-104h-277a18 18 0 1 1 0-35h277v-390h-814v390h278a18 18 0 1 1 0 35h-278v104h203v-34a18 18 0 1 1 36 0v34h336v-34z" horiz-adv-x="1000" />

<glyph glyph-name="videocall-a" unicode="&#xe896;" d="M400 469c9-52 52-90 104-90 51 0 95 38 103 90l9 59c6 35-4 70-27 96-21 26-53 40-86 40-33 0-64-14-86-40-22-26-32-62-26-96l9-59h0z m45 132c15 18 36 28 59 28 22 0 43-10 58-28 16-19 23-43 19-68l-9-59c-6-34-35-60-68-60-34 0-63 26-68 60l-10 59c-4 25 3 49 19 68z m125-240l-54-31c-7-5-17-5-25 0l-54 31a48 48 0 0 1-24 7c-59 0-107-46-110-105l-3-69c0-10 7-18 17-19h1c10 0 18 7 18 17l3 70c2 39 34 70 74 70 2 0 5 0 6-2l54-31c19-11 43-11 62 0l53 31c2 2 5 2 7 2 39 0 72-31 74-70l3-70c0-10 9-18 18-17 10 0 18 9 17 19l-3 69a109 109 0 0 1-109 105c-9 0-17-2-25-7h0z m334 393h-243a18 18 0 0 1 0-36h243c21 0 39-18 39-39v-493c0-22-18-40-39-40h-800c-22 0-40 18-40 40v493c0 21 18 39 40 39h242a18 18 0 0 1 0 36h-242c-42 0-75-34-75-75v-493c0-42 33-75 75-75h523l40-172h-315l26 92c2 9-3 19-13 22-9 3-19-3-22-12l-28-100v-2h-69a18 18 0 0 1 0-35h515a18 18 0 0 1 0 35h-58l-39 172h240c41 0 75 34 75 75v493c0 41-34 75-75 75z m-400-47a36 36 0 1 1 0 72 36 36 0 0 1 0-72z" horiz-adv-x="1000" />

<glyph glyph-name="videocall-b" unicode="&#xe897;" d="M278 636c-39 0-75-17-100-47a131 131 0 0 1-30-106l11-66a120 120 0 0 1 119-101c59 0 109 43 119 101l11 66c6 38-5 77-30 106a131 131 0 0 1-100 47h0z m94-147l-11-66a84 84 0 0 0-83-71c-42 0-77 30-84 71l-11 66a96 96 0 0 0 22 77 96 96 0 0 0 73 34c28 0 54-12 73-34a96 96 0 0 0 21-77h0z m139 218a36 36 0 1 1 0 72 36 36 0 0 1 0-72z m60-244c9-50 51-86 102-86a103 103 0 0 1 102 86l9 56c5 33-4 66-25 91a112 112 0 0 1-86 40c-33 0-64-15-86-40a112 112 0 0 1-25-91l10-56h-1z m44 124a77 77 0 0 0 58 27 77 77 0 0 0 76-89l-10-56a67 67 0 0 0-66-56c-33 0-61 23-66 56l-10 56c-3 23 3 45 18 62z m127-226l-54-32c-7-4-16-4-24 0l-54 32c-7 5-15 7-24 7-31 0-61-14-82-38-6-7-5-18 2-25 7-6 19-6 25 2 14 16 34 25 55 25 2 0 4 0 6-2l54-31c19-12 42-12 61 0l53 31c2 2 4 2 6 2 40 0 72-31 74-72l3-68c0-10 8-17 18-17h0a18 18 0 0 1 17 19l-3 68c-2 59-50 106-109 106-8 0-17-2-24-7h0z m-688-22c9 0 17 8 17 18v322c0 21 18 39 40 39h250a18 18 0 0 1 0 36h-250c-42 0-75-34-75-75v-322c0-10 8-18 18-18z m850 415h-243a18 18 0 0 1 0-36h243c21 0 39-18 39-39v-500c0-22-18-40-39-40h-315a18 18 0 0 1 0-35h40v-1l38-164h-146l-13 237c-4 68-60 120-127 120-10 0-19-2-27-7l-68-38c-7-5-17-5-24 0l-68 38c-8 5-18 7-27 7-68 0-123-53-126-120l-12-254c-1-10 7-18 17-18 9-1 18 7 18 17l12 253a91 91 0 0 0 91 87c3 0 6-1 9-3l68-38c18-11 41-11 60 0l67 38c3 2 6 3 10 3 48 0 88-38 91-87l14-254c0-1 0-2 0-3 1-1 1-2 1-3 1-1 2-2 2-3 1-1 1-2 2-2 1-1 2-2 4-3 0 0 1-1 2-1 2-1 4-1 6-1h272a18 18 0 0 1 0 35h-72l-38 165h238c42 0 75 33 75 75v500c0 41-33 75-75 75h1z" horiz-adv-x="1000" />
@@ -378,7 +368,7 @@

<glyph glyph-name="recycling-b" unicode="&#xe8b9;" d="M146 346c0 196 159 354 354 354 93 0 178-36 241-95 25-23 47-50 64-80l-48 14c-9 3-19-2-22-11-3-10 2-20 12-23l76-23c17-5 35 4 40 21l24 77c3 9-2 19-12 22-9 3-19-2-22-11l-16-50c-19 33-44 64-72 90-69 65-163 105-265 105-215 0-389-175-389-390 0-9 8-17 17-17 10 0 18 8 18 17z m743 0c0 10-8 18-18 18-10 0-18-8-18-18 0-195-158-353-353-353-93 0-178 36-241 95-32 30-59 66-78 106l51-17c9-3 19 2 23 11 3 9-2 20-12 23l-75 25c-17 6-35-3-41-20l-26-76c-3-9 2-19 11-22 9-4 20 1 23 11l15 46c22-43 50-81 85-114 69-64 162-104 265-104 215 0 389 174 389 389z m-520-16c-11 41-7 82 26 113 33 32 101 57 225 57 1-61-9-139-41-194-17-27-38-47-66-57-24-9-55-10-94 1 17 37 44 74 86 103 8 6 9 17 4 25-6 8-17 10-25 4-55-38-88-90-106-137-17-42-23-81-23-106 0-10 8-18 18-18 10 0 18 8 18 18 0 18 3 46 14 77 47-13 86-13 120-1 37 14 65 41 84 73 39 64 48 153 46 217 0 18-15 31-31 31-130 0-210-25-254-67-45-43-49-99-35-149 2-9 12-15 22-12 9 2 15 12 12 22z" horiz-adv-x="1000" />

<glyph glyph-name="recycling" unicode="&#xe8ba;" d="M534 680c-15 27-53 27-68 0l-115-199c-5-8-16-11-24-7-9 5-12 16-7 25l115 199c29 50 101 50 130 0l129-226 31 113c3 10 13 16 22 13 10-3 15-12 13-22l-43-155c-2-10-12-15-22-13l-155 43c-9 2-15 12-12 22 2 9 12 15 22 12l113-31-129 226z m-253-251c10 2 19-3 22-13l42-155c2-10-4-20-13-22-10-3-19 3-22 13l-30 113-115-198c-15-26 4-59 34-59h237c10 0 18-8 18-18 0-10-8-18-18-18h-237c-58 0-94 63-65 113l115 198-114-30c-9-3-19 3-22 12-2 10 3 20 13 22l155 42z m460-66c9 4 20 2 24-7l100-171c30-50-7-113-64-113h-222l83-83c7-7 7-18 0-25-7-7-18-7-25 0l-114 113c-7 7-7 19 0 26l114 113c7 7 18 7 25 0 7-7 7-18 0-25l-83-83h222c30 0 49 33 33 59l-99 171c-5 9-2 20 6 25z" horiz-adv-x="1000" />
<glyph glyph-name="recycling-a" unicode="&#xe8ba;" d="M534 680c-15 27-53 27-68 0l-115-199c-5-8-16-11-24-7-9 5-12 16-7 25l115 199c29 50 101 50 130 0l129-226 31 113c3 10 13 16 22 13 10-3 15-12 13-22l-43-155c-2-10-12-15-22-13l-155 43c-9 2-15 12-12 22 2 9 12 15 22 12l113-31-129 226z m-253-251c10 2 19-3 22-13l42-155c2-10-4-20-13-22-10-3-19 3-22 13l-30 113-115-198c-15-26 4-59 34-59h237c10 0 18-8 18-18 0-10-8-18-18-18h-237c-58 0-94 63-65 113l115 198-114-30c-9-3-19 3-22 12-2 10 3 20 13 22l155 42z m460-66c9 4 20 2 24-7l100-171c30-50-7-113-64-113h-222l83-83c7-7 7-18 0-25-7-7-18-7-25 0l-114 113c-7 7-7 19 0 26l114 113c7 7 18 7 25 0 7-7 7-18 0-25l-83-83h222c30 0 49 33 33 59l-99 171c-5 9-2 20 6 25z" horiz-adv-x="1000" />

<glyph glyph-name="parken" unicode="&#xe8bb;" d="M504 700c-196 0-354-158-354-354 0-195 158-353 354-353 195 0 353 158 353 353 0 57-13 110-36 157-5 9-1 19 8 24 9 4 19 1 24-8 26-52 40-111 40-173 0-215-174-389-389-389-215 0-390 174-390 389 0 215 175 390 390 390 110 0 210-46 281-120 6-7 6-18-1-25-7-7-18-7-25 0-65 67-155 109-255 109z m-23-441v-108c0-20-15-34-36-34-21 0-36 14-36 34v332c0 19 14 32 32 32h83c75 0 131-49 131-128 0-79-53-128-131-128h-43z m102 128c0 34-22 63-59 63h-43v-126h43c39 0 59 28 59 63z" horiz-adv-x="1000" />

@@ -387,6 +377,44 @@
<glyph glyph-name="mauszeiger" unicode="&#xe8bd;" d="M296 679c-8 6-19-1-18-10l112-712c2-10 16-12 21-3l120 276c3 7 11 11 18 11l99-12c10-1 17-9 16-19-1-10-10-17-20-16l-86 10-115-264c-18-42-81-34-88 12l-112 711c-6 42 42 70 75 43l560-452c36-29 12-87-34-82l-101 11c-9 1-17 10-15 20 1 9 9 17 19 15l101-11c11-1 16 12 8 19l-560 453z" horiz-adv-x="1000" />

<glyph glyph-name="video" unicode="&#xe8be;" d="M114 675c0 26 21 46 47 46h671c26 0 47-20 47-46v-86c0-25-21-46-47-46h-671c-26 0-47 21-47 46v86z m118-96h105l106 107h-105l-106-107z m56 107h-127c-6 0-11-5-11-11v-86c0-6 5-10 11-10h21l106 107z m205 0l-106-107h106l105 107h-105z m156 0l-106-107h112l106 107h-112z m162 0l-106-107h127c6 0 11 4 11 10v86c0 6-5 11-11 11h-21z m-636-165c-33 0-61-27-61-60v-429c0-33 28-61 61-61h643c33 0 61 28 61 61v86c0 10-8 18-18 18-10 0-18-8-18-18v-86c0-14-11-25-25-25h-643c-14 0-25 11-25 25v429c0 14 11 25 25 25h643c14 0 25-11 25-25v-215c0-9 8-17 18-17 10 0 18 8 18 17v215c0 33-28 60-61 60h-643z m495-315c31 18 31 63 0 81l-215 123c-31 18-69-4-69-40v-247c0-36 38-58 69-40l215 123z m-18 50c7-4 7-15 0-19l-214-124c-8-4-17 2-17 10v247c0 8 9 14 17 9l214-123z" horiz-adv-x="1000" />

<glyph glyph-name="tisch-mit-computer-und-uhr" unicode="&#xe8bf;" d="M744 624h0a28 28 0 0 0-19 49v32a18 18 0 1 0 36 0v-31a28 28 0 0 0 10-26l11-11a18 18 0 1 0-25-26l-13 13z m0-144c94 0 170 76 170 171s-76 170-170 170c-95 0-171-76-171-170s76-171 171-171z m134 188h-40v-36h39a135 135 0 0 0-116-115v38h-36v-38a135 135 0 0 0-115 115h38v36h-39a135 135 0 0 0 116 117v-40h36v40a135 135 0 0 0 117-117z m-707-104a43 43 0 0 0 43 43h229a43 43 0 0 0 43-43v-140a43 43 0 0 0-43-43h-52l3-26a18 18 0 0 0-35-5l-4 31h-53l-8-56h606a61 61 0 0 0 61-61v-74a61 61 0 0 0-61-60h-54v-223a18 18 0 0 0-35 0v223h-99a18 18 0 0 0 0 35h188a25 25 0 0 1 25 25v74a25 25 0 0 1-25 25h-800a25 25 0 0 1-25-25v-74c0-13 11-25 25-25h508a18 18 0 0 0 0-35h-419v-223a18 18 0 0 0-35 0v223h-54a61 61 0 0 0-61 60v74a61 61 0 0 0 61 61h158l8 56h-52a43 43 0 0 0-43 43v140z m43 7a7 7 0 0 1-7-7v-140a7 7 0 0 1 7-7h229a7 7 0 0 1 7 7v140a7 7 0 0 1-7 7h-229z" horiz-adv-x="1000" />

<glyph glyph-name="sparschwein" unicode="&#xe8c0;" d="M577 512c60 0 109 49 109 110 0 60-49 109-109 109s-110-49-110-109 49-110 110-110z m0 36a74 74 0 0 0-74 74c0 41 33 74 74 74s74-33 74-74-33-74-74-74z m-168 105c-30-4-59-12-87-22l0 1c-21 20-46 41-67 55-12 7-25 14-38 15-7 0-14 0-21-5-7-4-12-10-15-18-7-18-7-43-5-67 2-21 6-43 10-63-30-29-55-62-72-99l-44-8a47 47 0 0 1-38-46v-95c0-23 16-42 38-46l33-6c21-64 64-119 122-161l-13-50c-7-25 8-51 32-57l40-11c25-6 50 8 57 33l7 26c39-11 82-17 126-17 58 0 112 10 161 29l10-38a46 46 0 0 1 57-33l39 11a46 46 0 0 1 33 57l-20 75c60 53 100 124 105 204h36c18 0 35 7 47 19l10 11a52 52 0 0 1 0 74 52 52 0 0 1-74 0l-10-10 25-25 10 10c7 6 18 6 24 0 7-7 7-18 0-24l-10-10c-6-6-14-9-22-9h-36c-6 87-53 164-124 219-8 6-19 5-25-3-6-8-5-19 3-25 69-53 110-131 110-209s-38-150-101-203c-6-5-8-14-5-21 1-1 1-2 1-2l22-80c1-6-2-12-8-14l-39-10a11 11 0 0 0-14 7l-15 58c-1 5-5 9-10 11-4 2-10 2-15 0-49-22-105-34-165-34-47 0-92 8-133 22-5 1-10 1-14-1-5-3-8-7-9-12l-12-44a11 11 0 0 0-13-7l-39 10a11 11 0 0 0-8 13l17 63c2 7-1 15-8 20-60 40-104 96-121 159-2 6-8 11-14 12l-44 8a11 11 0 0 0-8 11v95c0 5 3 10 8 11l54 9c6 1 11 5 13 11 16 38 41 73 74 102 5 4 7 11 6 17-5 22-10 46-11 69s-1 40 2 51c4-1 12-3 22-10 21-13 47-35 69-58 5-5 13-6 19-4 28 11 59 19 90 24 10 1 17 10 16 20-2 10-11 17-21 15z m-136-230c0-17-14-31-32-31s-32 14-32 31 15 32 32 32 32-14 32-32z" horiz-adv-x="1000" />

<glyph glyph-name="person-mit-treppe-aufwaerts" unicode="&#xe8c1;" d="M257 807c-62 0-109-55-99-116l9-50a92 92 0 0 1 90-77 92 92 0 0 1 90 77l9 50c10 61-37 116-99 116z m0-36c40 0 70-35 63-74l-8-50a56 56 0 0 0-55-47 56 56 0 0 0-55 47l-8 50c-7 39 23 74 63 74z m386 8h161c9 0 17-8 17-18v-161a18 18 0 0 0-35 0v118l-199-199a18 18 0 0 0-25 25l199 199h-118a18 18 0 1 0 0 36z m161-382c-10 0-18-8-18-17v-102h-97c-10 0-18-8-18-18v-96h-96c-10 0-18-8-18-18v-96h-96c-10 0-18-8-18-18v-115a18 18 0 1 1 36 0v97h96c10 0 18 8 18 18v96h96c10 0 18 8 18 18v97h97c9 0 17 8 17 17v102h97a18 18 0 1 1 0 35h-114z m-629-160a18 18 0 1 1-36-3l27-288a46 46 0 0 1 47-42h88a46 46 0 0 1 46 42l28 288a18 18 0 1 1-36 3l-27-288a11 11 0 0 0-11-10h-88a11 11 0 0 0-11 10l-27 288z m-59 208a61 61 0 0 0 61 59 8 8 0 0 0 4-1l44-25a61 61 0 0 1 59 0l44 25a9 9 0 0 0 4 1c33 0 60-26 62-59v0l13-182a18 18 0 1 1 35 3l-13 181a97 97 0 0 1-97 92c-7 0-15-2-22-5l-43-25c-8-4-17-4-25 0l-43 25a44 44 0 0 1-22 5 97 97 0 0 1-97-92l-8-182a18 18 0 0 1 35-2l9 182z" horiz-adv-x="1000" />

<glyph glyph-name="kalender-b" unicode="&#xe8c2;" d="M275 207h-107v-36h107v36z m-107 114h107v-35h-107v35z m664-114h-107v-36h107v36z m-107 114h107v-35h-107v35z m-405-88a19 19 0 0 0 0 26c3 4 8 6 12 6h191l-40 38a19 19 0 0 0-1 26 18 18 0 0 0 26 1l73-70a18 18 0 0 0 6-14 19 19 0 0 0-6-13l-73-70a18 18 0 0 0-13-5 18 18 0 0 0-13 6 19 19 0 0 0-5 13 19 19 0 0 0 6 13l40 38h-191c-4 0-9 2-12 5z m166-141a154 154 0 0 0-79 43 19 19 0 0 0 0 26 18 18 0 0 0 26 0 118 118 0 0 1 61-32 117 117 0 0 1 68 6 119 119 0 0 1 53 45 122 122 0 0 1 20 66 122 122 0 0 1-20 67 119 119 0 0 1-53 45 117 117 0 0 1-68 6 118 118 0 0 1-61-32 18 18 0 0 0-26 0 19 19 0 0 0 0 26 154 154 0 0 0 79 43 153 153 0 0 0 90-9 155 155 0 0 0 69-58 159 159 0 0 0 26-88 159 159 0 0 0-26-87 155 155 0 0 0-69-58 153 153 0 0 0-90-9z m-154 512h336v85a18 18 0 1 0 36 0v-85h210a29 29 0 0 0 29-29v-543a29 29 0 0 0-29-28h-828a29 29 0 0 0-29 28v543a29 29 0 0 0 29 29h210v85a18 18 0 1 0 36 0v-85z m-239-140h278a18 18 0 1 0 0-35h-278v-390h814v390h-277a18 18 0 0 0 0 35h277v104h-203v-34a18 18 0 1 0-36 0v34h-336v-34a18 18 0 1 0-36 0v34h-203v-104z" horiz-adv-x="1000" />

<glyph glyph-name="kalender-c" unicode="&#xe8c3;" d="M435 364a14 14 0 0 1 14 10l37 116c5 13 23 13 28 0l37-116a14 14 0 0 1 14-10h122c14 0 20-18 8-26l-98-72a14 14 0 0 1-6-16l38-116c4-13-11-24-22-16l-99 72a14 14 0 0 1-16 0l-99-72c-11-8-26 3-22 16l38 116a14 14 0 0 1-6 16l-98 72c-12 8-6 26 8 26h122z m48-1a50 50 0 0 0-48-35h-56l45-33a50 50 0 0 0 19-56l-18-53 46 33a50 50 0 0 0 58 0l46-33-17 53a50 50 0 0 0 18 56l45 33h-56a50 50 0 0 0-48 35l-17 53-17-53z m-272-199h107v-35h-107v35z m107 115h-107v-36h107v36z m364-115h107v-35h-107v35z m107 115h-107v-36h107v36z m-457 410a18 18 0 1 1-36 0v-85h-210a29 29 0 0 1-29-29v-543a29 29 0 0 1 29-28h828a29 29 0 0 1 29 28v543a29 29 0 0 1-29 29h-210v85a18 18 0 1 1-36 0v-85h-336v85z m336-155a18 18 0 1 1 36 0v34h203v-104h-277a18 18 0 1 1 0-35h277v-390h-814v390h278a18 18 0 1 1 0 35h-278v104h203v-34a18 18 0 1 1 36 0v34h336v-34z" horiz-adv-x="1000" />

<glyph glyph-name="handkreis" unicode="&#xe8c4;" d="M229 626c9 18 30 30 51 30h4c-23 9-39 33-32 60 8 29 39 43 68 38l23-4c-20 16-27 43-11 66 16 21 45 28 69 20l126-45c25-9 53-14 81-14h33c72 0 135-50 135-118v-38c18-9 30-30 30-51v-4c9 23 33 40 60 32 29-8 43-39 38-68l-4-23c16 20 43 27 66 11 21-16 28-45 20-69l-45-126a241 241 0 0 1-14-81v-33c0-72-50-135-118-135h-38c-9-18-30-30-51-30h-4c23-9 40-33 32-60-8-29-39-43-68-38l-23 4c20-16 27-43 11-66-16-21-45-28-69-20l-126 45a241 241 0 0 1-81 14h-33c-72 0-135 50-135 118v38c-18 9-30 30-30 51v4c-9-23-33-39-60-32-29 8-43 39-38 68l4 23c-16-20-43-27-66-11-21 16-28 45-20 69l45 126c10 25 14 53 14 81v33c0 72 51 135 118 135h38z m51-36h182a18 18 0 0 0 3-35l-164-33c-14-3-18-13-17-19 2-8 12-16 27-14l230 31a27 27 0 0 0 25-10c6-8 8-20 1-30l-33-45c-4-6-4-14 4-20 10-6 23-6 32 1l0 0 45 31-12 87c-4 29 12 60 42 66 27 7 51-11 59-36v6c0 23 14 46 36 54v35c0 43-42 82-99 82h-33c-32 0-64 6-93 16l-126 45c-11 4-23 0-28-7-4-5-3-15 8-20l118-51a18 18 0 0 0-10-34l-164 29c-14 3-25-6-27-13-1-6 3-16 17-19l164-32a18 18 0 0 0-4-35h-183c-14 0-20-9-20-15 0-6 6-15 20-15z m341-183l-30-20c-21-16-51-16-73-1-23 16-30 46-13 70l19 26-84-12 22-28 0 0c17-21 17-52 2-74-16-23-46-30-70-13l-25 19 11-83 28 21c21 17 52 17 74 2 23-16 30-46 13-70l-19-25 82 11-20 29c-17 21-17 51-2 73 16 23 46 30 70 13l26-19-11 81z m-223 58l-82-12c-29-3-60 12-66 42-7 27 11 51 36 59h-6c-23 0-46 14-53 36h-36c-43 0-82-42-82-99v-33a277 277 0 0 0-16-93l-45-126c-4-11 0-23 7-28 6-4 15-3 20 8l51 118a18 18 0 0 0 34-10l-29-164c-2-14 6-25 13-27 6-1 16 3 19 17l32 164a18 18 0 0 0 35-4v-183c0-14 9-20 15-20 6 0 15 6 15 20v182a18 18 0 0 0 35 3l33-164c3-14 13-18 19-17 8 2 16 12 14 27l-31 230a27 27 0 0 0 10 25 25 25 0 0 0 30 1l45-33c6-4 14-4 20 5 6 9 6 22-1 31l-36 45z m-138-424c0-43 42-82 99-82h33c32 0 64-6 93-16l126-45c11-4 23 0 28 7 4 5 3 15-8 20l-118 51a18 18 0 0 0 11 34l163-29c14-3 25 6 27 13 1 6-2 16-17 19l-164 32a18 18 0 0 0 4 35h183c14 0 20 9 20 15 0 6-6 15-20 15h-181a18 18 0 0 0-4 35l164 33c14 3 18 13 17 19-2 8-12 16-27 14l-230-31a27 27 0 0 0-25 10 25 25 0 0 0-1 30l33 45c4 6 4 14-4 20-10 6-23 6-32-1l0 0-45-34 12-84c4-29-12-60-42-66-27-7-51 11-59 36v-6c0-23-14-46-36-53v-36z m549 69c43 0 82 42 82 99v33c0 32 6 64 16 93l45 126c4 11 0 23-7 28-5 4-15 3-20-8l-51-118a18 18 0 0 0-34 11l29 163c3 14-6 25-13 27-6 1-16-2-19-17l-32-164a18 18 0 0 0-35 4v183c0 14-9 20-15 20s-15-6-15-20v-181a18 18 0 0 0-35-4l-33 164c-3 14-13 18-19 17-8-2-16-12-14-27l31-230a27 27 0 0 0-10-25 25 25 0 0 0-30-1l-45 33c-6 4-14 4-20-4-6-10-6-23 1-32l0 0 32-45 86 12c29 4 60-12 66-42 7-27-11-51-36-59h6c23 0 46-14 54-36h35z" horiz-adv-x="1000" />

<glyph glyph-name="e-auto-b" unicode="&#xe8c5;" d="M893 261l-169 42-72 93a190 190 0 0 1-149 73h-189a18 18 0 0 1 0-36h189c47 0 92-22 121-59l53-69h-363a18 18 0 0 1 0-36h397l173-43c10-2 19-8 26-15h-71v-35h86v-54c0-6-5-11-11-11h-72a93 93 0 0 1-92 83c-48 0-87-36-93-83 0 0 0 0-1 0h-243c-5 47-44 83-92 83-44 0-81-31-90-72h-24c-30 0-54 24-54 53v102a93 93 0 0 1 75 91v79c0 15-13 28-28 28h-11v71a18 18 0 0 1-36 0v-71h-35v71a18 18 0 0 1-36 0v-71h-11c-16 0-28-13-28-29v-78c0-45 32-83 75-91v-102c0-49 40-89 89-89h23a93 93 0 0 1 181-10c1 0 2 0 3 0h242c2 0 3 0 4 0 11-39 47-68 90-68 43 0 78 29 89 68h75c26 0 46 21 46 46v52c0 41-27 77-67 87h0z m-757 50c-32 0-57 25-57 57v71h114v-71c0-32-26-57-57-57z m185-267c-31 0-57 25-57 57s26 57 57 57 58-26 58-57-26-57-58-57z m429 0c-32 0-57 25-57 57s25 57 57 57 57-26 57-57-25-57-57-57z" horiz-adv-x="1014" />

<glyph glyph-name="eurozeichen" unicode="&#xe8c6;" d="M306 455c40 122 154 209 289 209h80c10 0 18-8 18-18 0-9-8-17-18-17h-80c-115 0-213-72-251-174h171c10 0 18-8 18-18 0-10-8-18-18-18h-181c-5-18-7-38-7-58v-15c0-20 2-39 7-58h181c10 0 18-8 18-18 0-10-8-18-18-18h-171c38-101 136-173 251-173h80c10 0 18-8 18-18 0-10-8-18-18-18h-80c-135 0-249 88-289 209h-88c-10 0-18 8-18 18 0 10 8 18 18 18h79c-4 19-6 38-6 58v15c0 20 2 39 6 58h-79c-10 0-18 8-18 18 0 10 8 18 18 18h88z" horiz-adv-x="1000" />

<glyph glyph-name="flensburg" unicode="&#xe8c7;" d="M157 275c0 10 8 18 18 18h71c10 0 18-8 18-18v-71c0-10-8-18-18-18h-71c-10 0-18 8-18 18v71z m36-18v-36h36v36h-36z m553 36c-9 0-17-8-17-18v-71c0-10 8-18 17-18h72c10 0 18 8 18 18v71c0 10-8 18-18 18h-72z m18-72v36h36v-36h-36z m-607-75c0 10 8 18 18 18h71c10 0 18-8 18-18v-71c0-10-8-18-18-18h-71c-10 0-18 8-18 18v71z m36-17v-36h36v36h-36z m553 35c-9 0-17-8-17-18v-71c0-10 8-18 17-18h72c10 0 18 8 18 18v71c0 10-8 18-18 18h-72z m18-71v36h36v-36h-36z m-260 478c9 0 17-8 17-17v-75h-35v75c0 9 8 17 18 17z m17-167c0 9-8 17-17 17-10 0-18-8-18-17v-75h35v75z m-117 17c9 0 17-8 17-17v-75h-35v75c0 9 8 17 18 17z m217-17c0 9-8 17-17 17-10 0-18-8-18-17v-75h35v75z m-207 314c0 10 8 18 18 18h64c2 0 3 0 4-1 1 1 2 1 4 1h64c10 0 18-8 18-18v-75h68c9 0 17-8 17-18v-61h68c10 0 18-8 18-18v-67h68c10 0 18-8 18-18v-75h82c10 0 18-8 18-18v-386c0-10-8-18-18-18h-271c-10 0-18 8-18 18v97c0 75-61 135-136 135-75 0-136-60-136-135v-97c0-10-8-18-18-18h-271c-10 0-18 8-18 18v386c0 10 8 18 18 18h82v75c0 10 8 18 18 18h68v67c0 10 8 18 18 18h68v61c0 10 8 18 17 18h68v75z m86-18c-1 0-2 0-4 0h-46v-75c0-10-8-18-18-18h-68v-61c0-9-8-17-18-17h-67v-68c0-10-8-18-18-18h-68v-75c0-10-8-18-18-18h-82v-350h236v79c0 94 76 171 171 171 95 0 171-77 171-171v-79h236v350h-82c-10 0-18 8-18 18v75h-68c-10 0-18 8-18 18v68h-67c-10 0-18 8-18 17v61h-68c-10 0-18 8-18 18v75h-46c-2 0-3 0-4 0z" horiz-adv-x="1000" />

<glyph glyph-name="cuxhaven" unicode="&#xe8c8;" d="M468 721c0 18 10 33 25 39v76h36v-76c14-6 25-21 25-39 0-23-20-42-43-42s-43 19-43 42z m-18-460v396h-36v-148l-64-52c-4-3-7-8-7-13s2-10 5-14l44-43-118-376h-99c-10 0-18-8-18-18v-100c0-10 8-18 18-18s18 8 18 18v82h621v-82c0-10 8-18 18-18s18 8 18 18v100c0 10-8 18-18 18h-94l-117 374 45 45c4 4 6 9 5 14s-2 10-6 13l-65 52v148h-36v-396h-14v396h-36v-396h-14v396h-36v-396z m-46 164l-17 16 27 22v-3z m223 16l-18-17-9 29v10z m74-430h-3l-98 132v82h34z m-47 0h-54v72z m-90 0h-114v126l54 76 60-82z m-150 0h-54l54 76z m-98 0h-5l67 214h36v-76z m248 180l-25 34h25z m-114 8v26h19z m-36 62h-24l24 79z m186 0v72l23-72z" horiz-adv-x="1000" />

<glyph glyph-name="kiel" unicode="&#xe8c9;" d="M596 529c10 0 18-8 18-18v-36h-35v36c0 10 8 18 17 18z m18 75c0 9-8 17-18 17-9 0-17-8-17-17v-36h35v36z m-18-168c10 0 18-8 18-18v-36h-35v36c0 10 8 18 17 18z m18-111c0 10-8 18-18 18-9 0-17-8-17-18v-36h35v36z m25 18c10 0 18-8 18-18v-36h-36v36c0 10 8 18 18 18z m-25-118c0 10-8 18-18 18-9 0-17-8-17-18v-36h35v36z m25 18c10 0 18-8 18-18v-36h-36v36c0 10 8 18 18 18z m61-18c0 10-8 18-18 18-10 0-18-8-18-18v-36h36v36z m-218 582c-10 0-18-8-18-18v-650c0-10 8-18 18-18h486c10 0 18 8 18 18 0 10-8 18-18 18h-124c-74 43-122 138-150 244-30 108-38 223-37 295 0 5-2 10-5 13-3 3-8 5-13 5h-25v75c0 10-8 18-18 18h-114z m97-93h-33c-9 0-17-8-17-18v-539h-29v614h79v-57z m-15-35h57c1-76 10-184 38-287 24-90 63-178 125-235h-220v522z m270-383c-16-5-30-18-36-30-5-8-16-11-25-6-8 5-11 16-6 24 10 17 29 38 57 46 30 8 65 0 99-35 7-7 7-18 0-25-7-7-18-7-25 0-28 28-50 30-64 26z m-685 13c-23-4-46-22-60-39-7-7-18-8-26-1-7 6-8 17-1 25 16 19 46 44 81 50 18 3 37 1 56-8 14-8 28-21 40-38 24 10 56 18 84 14 18-3 35-11 47-28 12-16 17-39 16-67-1-10-9-17-19-17-10 1-17 9-17 19 1 23-3 37-9 44-5 7-13 12-24 13-23 4-54-6-77-17-8-4-19-1-23 7-12 21-24 32-35 38-11 6-22 7-33 5z m162-341c12 0 21 9 21 21 0 12-9 22-21 22-12 0-22-10-22-22 0-12 10-21 22-21z m93 21c0-12-10-21-22-21-12 0-21 9-21 21 0 12 9 22 21 22 12 0 22-10 22-22z m50-21c11 0 21 9 21 21 0 12-10 22-21 22-12 0-22-10-22-22 0-12 10-21 22-21z m-238 103c-6 0-12-1-17-3l-56-23v30c0 10-8 18-18 18-10 0-18-8-18-18v-44l-28-12c-26-11-26-49 0-60l28-11 0-44c0-10 8-18 18-18 10 0 18 8 18 18v29l56-22c5-3 11-4 17-4h316c46 0 82 37 82 82 0 46-36 82-82 82h-75v54c0 6-3 12-8 15l-64 43c-6 3-13 4-18 1-6-3-10-10-10-16v-97h-141z m-4-36c2 0 3 1 4 1h316c26 0 47-21 47-47 0-25-21-46-47-46h-316c-1 0-2 0-4 1l-111 45 111 46z m209 80v-44h-28v64l28-20z m-389 42c-10 0-18-8-18-18 0-10 8-18 18-18h279c10 0 18 8 18 18 0 10-8 18-18 18h-279z" horiz-adv-x="1000" />

<glyph glyph-name="gluehbirne" unicode="&#xe8ca;" d="M675 267c-17-21-34-41-47-65l-16-29c-6-10-17-17-28-17h-166c-11 0-22 7-28 17l-16 29c-13 24-30 44-47 65-7 9-13 17-20 26-31 40-49 90-49 145 0 133 109 241 243 241 134 0 243-108 243-241 0-55-18-105-49-145-7-9-13-17-20-26z m-29 29c6 8 12 15 17 21 26 34 41 76 41 121 0 110-90 200-203 200-113 0-203-90-203-200 0-45 15-87 41-121 5-6 11-13 17-21 18-22 38-47 53-74l14-25h58v115l-92 91c-8 8-8 21 0 29 8 8 21 8 29 0l83-83 83 83c8 8 21 8 29 0 8-8 8-21 0-29l-92-91v-115h58l14 25c15 27 35 52 53 74z m242 332c-8 8-20 8-28 0l-65-66c-8-8-8-20 0-28 8-8 21-8 28 0l65 65c8 8 8 21 0 29z m55-211c0-11-9-20-20-20h-98c-11 0-20 9-20 20s9 21 20 21h98c11 0 20-9 20-21z m-523-289c-11 0-20-10-20-21s9-20 20-20h162c11 0 20 9 20 20s-9 21-20 21z m0-66c-11 0-20-9-20-20 0-11 9-21 20-21h162c11 0 20 10 20 21 0 11-9 20-20 20z m440 147c8-8 20-8 28 0s8 20 0 28l-65 66c-7 8-20 8-28 0s-8-21 0-29z m-797 188c-11 0-20 9-20 20s9 21 20 21h97c12 0 21-9 21-21s-9-20-21-20z m34-188c8-8 21-8 29 0l65 65c8 8 8 21 0 29s-21 8-29 0l-65-66c-7-8-7-20 0-28z m29 419c-8 8-21 8-29 0s-7-21 0-29l65-65c8-8 21-8 29 0 8 8 8 20 0 28z" horiz-adv-x="1000" />

<glyph glyph-name="kulturhauptstadt-europa-2025-a" unicode="&#xe8cb;" d="M262 510c0 63-54 120-129 120-44 0-78-22-101-42-7-8-15-19-15-32 0-17 15-33 33-33 13 0 22 5 30 12 12 11 32 25 53 25 30 0 53-23 53-50 0-26-17-47-38-74-1-2-3-4-4-6l-107-134c-14-17-20-35-20-53 0-18 12-36 33-36h190c0 0 1 0 2 0 13-17 29-33 47-46 45-33 99-48 154-43 55 5 106 30 144 70 38 39 60 91 62 146 1 7 1 13 0 19 9 4 18 7 27 7 30 0 52-23 52-50 0-26-16-47-37-74-1-2-3-4-4-6l-107-134c-14-17-21-35-21-53 0-18 13-36 34-36h190c18 0 30 14 30 34 0 18-13 34-30 34h-132l101 123c6 7 12 14 17 21 20-10 44-17 70-17 75 0 129 54 129 119v36c0 66-41 119-107 119-17 0-36-9-47-15-4-2-8 2-8 6l7 92h112c18 0 31 15 31 33 0 18-13 33-31 33h-149c-20 0-34-14-35-32l-12-173c-16 6-34 10-53 10-15 0-29-2-41-6-8 22-20 43-35 62-10 12-28 14-40 4-11-8-14-22-9-33 12-13 21-28 28-44 13-30 16-61 12-90 0 0 0 0 0 0-5-36-20-70-46-96-28-30-66-48-107-52-41-4-82 8-115 32-33 24-57 59-66 100-9 40-3 82 17 118 19 36 51 64 90 78 38 14 80 14 119 0 15-6 31 2 37 16 5 15-2 32-17 37-51 20-108 20-159 1-31-12-59-30-82-53 0 2 0 4 0 6z m-60-216c1-7 3-13 5-19h-99l92 111c-6-30-5-62 2-92z m690 27c0-28-24-49-53-49-13 0-25 4-37 12 2 8 3 17 3 26 0 29-12 57-31 78 5 2 10 4 17 6l0 0c1 1 2 1 3 1 3 1 5 2 8 3 11 5 23 10 38 10 30 0 52-24 52-51v-36z m-415 65c-24 30-68 36-99 11-30-24-35-68-11-99 24-30 68-35 99-11 7 6 13 13 18 21 7 13 25 18 39 10 13-7 18-25 11-38-8-15-19-27-32-38-56-44-136-34-180 21-44 55-34 135 21 179 55 44 135 35 179-21 10-12 8-30-4-40-13-10-31-7-41 5z" horiz-adv-x="1000" />

<glyph glyph-name="bodensee-oberschwaben-b" unicode="&#xe8cc;" d="M650 807h114c18 0 32-14 32-32v-50c0-18-14-32-32-32h-43c-9 0-17 8-17 18 0 10 8 18 17 18h40v42h-93v-160c0-1 0-3 0-4h0c18 0 32-14 32-32v-11h14v11c0 18 15 32 32 32h22c18 0 32-14 32-32v-150c0-10-8-18-18-18-10 0-18 8-18 18v146h-14v-10c0-18-14-32-32-32h-22c-17 0-32 14-32 32v10h-35v-10c0-18-15-32-33-32h-28c-18 0-32 14-32 32v10h-15v-146c0-10-8-18-17-18-10 0-18 8-18 18v150c0 18 14 32 32 32h21c18 0 32-14 32-32v-11h22v11c0 18 14 32 32 32h8c-1 1-1 3-1 4v178c0 10 8 18 18 18z m-129-450v-425c0-10-8-18-17-18-10 0-18 8-18 18v429c0 18 14 32 32 32h250c18 0 32-14 32-32v-143c0-10-8-18-18-18-10 0-18 8-18 18v139h-243z m104-64c10 0 18-8 18-18v-61h-36v61c0 10 8 18 18 18z m0-136c10 0 18-8 18-18v-60h-36v60c0 10 8 18 18 18z m-582 104c0 10 8 18 18 18h378c10 0 18-8 18-18 0-10-8-18-18-18h-378c-10 0-18 8-18 18z m859-93c-8 16-14 33-19 49-4 16-5 31-3 42 2 11 6 17 15 22 9 4 26 7 54 2 10-2 19 5 21 15 2 9-5 19-15 20-31 6-57 4-76-5-21-11-31-28-35-47-3-19 0-39 5-58 3-13 7-25 12-37-23 5-43 5-60 1-23-5-39-17-50-33-17-26-18-61-14-90-19 1-35-2-48-10-16-9-25-24-29-39-8-29 2-63 12-85 4-9 14-13 23-9 9 4 13 14 9 23-8 20-14 45-10 62 2 8 6 13 13 17 7 4 19 7 39 5 17-2 32 14 28 31-6 27-5 57 7 75 6 9 14 15 28 19 14 3 34 2 63-6 11-3 21 2 27 8 5 7 8 18 3 28z" horiz-adv-x="1000" />

<glyph glyph-name="sprechblase-b" unicode="&#xe8cd;" d="M96 607c0 34 27 61 61 61h443c10 0 18-8 18-18 0-10-8-18-18-18h-443c-14 0-25-11-25-25v-328c0-14 11-25 25-25h414c10 0 18-8 18-18v-129l141 141c4 4 8 6 13 6h100c14 0 25 11 25 25v328c0 14-11 25-25 25h-122c-9 0-17 8-17 18 0 10 8 18 17 18h122c33 0 61-27 61-61v-328c0-34-28-61-61-61h-93l-166-166c-5-5-13-7-19-4-7 3-11 9-11 16v154h-397c-33 0-61 27-61 61v328z" horiz-adv-x="1000" />

<glyph glyph-name="sprechblase-a" unicode="&#xe8cf;" d="M492 700c-189 0-342-153-342-342 0-189 153-342 342-342 66 0 128 19 180 51 8 5 18 6 27 3l138-57-57 138c-3 9-2 19 3 27 32 52 51 114 51 180 0 76-25 146-67 203-6 8-4 19 4 25 8 6 19 4 25-4 46-62 74-140 74-224 0-72-20-139-55-196l61-150c10-24-14-48-38-38l-150 61c-57-34-124-55-196-55-209 0-378 170-378 378 0 209 169 378 378 378 55 0 107-12 153-33 9-4 13-14 9-23-4-9-14-13-23-9-43 19-90 29-139 29z" horiz-adv-x="1000" />

<glyph glyph-name="suedwestsachsen" unicode="&#xe8d0;" d="M951 397c0 0 0 1-1 2l-16 11-7 11c-3 4-5 7-5 7-2 4-6 7-11 8l-4 1v11c0 3-1 7-3 9l-46 70c0 0-8 13-12 19 4 7 12 20 12 20 3 5 3 11 1 16l-11 29c-2 3-4 5-6 7l-27 20c-4 2-9 4-13 3l-18-3c-3 0-6-1-8-3l-18-12 2 6c0 3 1 5 0 8l-26 117c-1 2-1 3-2 4l-6 11c-3 7-12 11-19 9l-81-18-19 9c-5 2-10 2-14 1l-27-11c-4-1-7-4-9-7l-26-45c-2-4-3-9-1-13 1-5 4-9 8-11l10-5 1-3-49 8c-7 1-15-3-18-9l-14-24c-2-4-3-8-2-12l7-39-33-4c-5-1-10-4-13-9l-5-9c-2-4-3-8-2-13 1-1 6-22 9-35h-21c-3 0-6-1-8-2l-147-67c-5-3-8-7-10-12l-11-49c-1-4-1-7 1-11l18-43c2-5 5-8 9-10l11-4-10-10-29-9-1 2c-4 5-9 8-15 8-6 0-12-3-15-8l-21-32c-3-4-4-9-3-14 0-1 1-2 1-3-1 0-2 0-3-1 0 0-1 1-2 1 1 11 3 34 3 35 0 2 0 4-1 6l-5 16c-2 5-6 9-11 11-4 2-10 2-15-1l-10-5c-4-3-7-7-9-11l-4-16c-3-2-11-8-17-12-4-3-8-5-8-5-3-2-5-5-7-9l-3-10h-5c-8 0-15-6-17-13l-6-24c-2-8 1-15 8-20l12-7c4-3 9-4 15-2 1 0 3 1 5 2 1-2 2-4 3-6-8-6-24-17-25-18-4-4-7-9-7-15 1-6 4-11 9-14l15-9c4-4 16-19 18-20 0-1 0-1 1-2 0-2 1-5 2-7-1-2-2-7-3-10 0-2-1-2-1-3-2-8 2-17 11-21l37-15c1-1 2-1 4-1l56-8c0-6 0-15 0-15 0-5 2-10 6-13 11-11 29-26 30-27 0-1 1-1 1-1 1-2 3-6 4-9-1-2-2-5-4-7-3-6-2-13 2-19l11-14c2-4 6-6 10-7l14-3c1-1 2-1 4-1 3 0 7 1 10 3l8 6c6 4 9 10 8 17l-2 10c-1 7-2 14-2 14 0 0 0 0 0 1 5 8 30 60 35 72l35 29c1 1 2 3 3 4 4 6 9 15 12 18 23 5 47 11 48 11l-1 7 3-7c2 0 19-4 24-6l2 0c8-2 16 2 20 8 0 1 9 16 9 17l29 14c9-7 41-30 42-30 5-4 11-5 17-2l34 15c5 3 9 7 10 13 2 13 6 30 7 41 2-1 5-1 7-1l66 4c7 1 13 5 15 12l18 47c2-2 4-3 7-4 5-1 10-1 14 1l13 8c5 3 8 8 9 13 0 3 1 6 1 9 4 2 7 4 9 5l7-3c3-1 11-5 29-11 8-3 17 0 21 7l12 18 7 3c6 2 10 7 12 13l6 34c1 3 0 6 0 8 5 0 10-1 13-2 4 0 9 1 12 3l24 15c5 3 8 8 8 14 0 5-2 10-6 14l0 0z m-86-18c-7-5-10-15-6-23 0 0 0-1 1-1 1-2 3-7 5-9l-2-10c-8 7-19 18-29 28l-16 31c-1 1-2 3-3 4l-8 8c-3 3-8 5-13 5 0 0-1 0-1 0l-9-1-29 19c-1 1-3 2-5 2l-36 9c-2 0-5 0-8 0l-22-5-19 10c0 1 0 3 0 4l-6 20c-2 5-5 9-10 11-5 2-11 4-14 6l1 7c2 5 1 10-2 14l-6 9c-5 8-16 11-24 6l-2-2c-3-1-7-4-9-5-1 0-3 1-5 1-1 1-2 2-2 3-5 6-13 9-20 7l-30-9c-4-1-7-3-10-6-2-3-5-7-8-10l-25 12c0 0-1 1-2 1-8 3-20 7-25 9-1 5-5 22-9 38l39 5c5 0 10 3 12 7 3 4 4 9 4 13l-10 51c2 3 4 6 5 8 14-2 59-8 59-9 9-1 17 4 19 12l4 10c2 4 2 9 0 13l-10 25c-2 3-4 6-8 8 4 8 11 20 14 24 0 0 0 0 0 0 3 1 11 4 14 5 3-2 18-8 18-8 4-2 8-2 12-2l72 17c1-4 13-58 24-108 0-2-6-23-9-37-2-9 3-18 13-21l10-2c5-2 10-1 14 2l40 29 7 1 17-12c1-3 3-8 7-16l-14-23c-3-5-3-12 1-18l17-28 26-38c6-9 15-24 18-27v-20c0-8 5-15 13-17l5-1c2 0 5-1 7-1 2-4 6-10 9-15-6 1-13 2-14 2-4 0-8 0-12-3l-14-9-1 0z m-28-69c-4 2-8 3-9 4-3 1-11 5-14 6-6 3-12 3-17-1l-25-14c-3-2-6-5-7-9-3 1-6 2-9 1l-14-2c-6-1-12-5-14-11-5-14-17-46-21-56-10-1-37-3-49-4l-12 6c-8 4-18 1-23-6l-5-7c-1-3-2-5-3-7-2-14-6-38-7-45-4-2-12-5-16-7-9 6-40 29-42 30-5 4-12 5-18 2l-43-21c-4-1-6-4-8-7-2-3-4-7-6-10l-9 2c-5 1-9 2-9 2-3 1-6 1-8 0l-15-3-44 42v14l17 19h13c5 0 9 2 13 5 3 3 5 8 5 13v12l6 16 38 21c4 3 7 7 8 12l7 31c2 7-1 14-7 18l-15 11 6 1c4 2 7 4 9 7l12 17 15 10h11c4 0 8 2 11 4l8 6c1-1 4-2 5-3 0-1 0-2 0-3v-2c0-5 2-10 6-13l17-17c5-6 15-7 22-2l38 25c2 1 4 2 5 4l10 13 23-12c4-2 8-2 12-2l25 6 29-7 31-20c3-2 6-3 9-3 1 0 2 0 2 0l7 0 16-30c1-2 2-4 4-5l6-6c8-7 20-19 27-26-1 1-2 1-4 1l0 0z m-561 122c18 8 133 61 134 61 1 1 2 1 4 1h32c0 0 1 0 1 0l31-11 6-3c7-4 18-9 24-12-2-5-7-15-11-23-2-4-2-8-1-12l0-2-17-11c-2-1-3-3-5-5l-10-15-16-5c-6-2-10-5-12-10l-5-14c-3-8 0-16 6-21l23-16-3-12-36-20c-3-2-6-5-8-9l-10-25c0-2-1-3-1-5h-3l-22 0-7 6v20c0 2-1 5-2 7l-17 35c-2 4-5 7-9 9l-39 16c-7 3-17 7-22 9-2 4-7 18-13 32 1 4 6 24 9 35h-1z m270 40c0 0 0 1-1 1l-1 5c2 1 4 4 5 6l2 2c2 1 9 3 13 4 3-4 7-7 12-7l19-2c0 0 2 0 3 0 0-3 0-5 2-7l4-8c1-3 5-6 8-8l2-1c4-1 10-3 13-5 1-1 1-3 2-5-1-2-3-5-3-6l-4-4c-3-5-8-11-8-12-1 0-1-1-2-1-1-1-16-10-23-15 0 0-1 1-1 1 0 2 0 7 0 9 0 7-4 14-10 17l-26 12c-5 2-10 2-15 0 2 5 5 9 7 14 1 3 2 7 1 10l1 0z m37 256c0 0 1 0 1 1 0 0 0-1-1-1z m-400-498l38 14c6 3 11 9 11 15 1 6-2 12-6 16 1 0 2 0 3 0 3 1 46 13 47 13 3 1 5 3 7 5l24 23 15-6 12-25v-25c0-6 3-11 8-15l19-14c0 0 1 0 1 0l-3-4c-3-4-5-8-5-12v-28c0-5 2-9 6-13l32-31-4-1c-4-1-8-4-11-8-7-11-13-21-13-21-2-2-21-18-37-31-2-1-3-3-4-6l-34-70-5 9c-1 2-2 3-3 4-1 1-21 19-27 25v22c0 9-7 16-15 18l-69 10c-7 3-16 6-21 8l0 2c1 3 1 6 0 9l-4 17c-1 2-2 5-4 7l-22 26c7 6 16 13 17 13 7 6 9 16 4 24l-19 30c-2 3-4 5-7 6 0 1 1 3 1 4l2 3c1 5 3 12 4 15 3 1 11 7 18 11l-2-17c0-9 6-17 15-18l22-5c3-1 6 0 9 1v0z" horiz-adv-x="1000" />

<glyph glyph-name="wasserstoff" unicode="&#xe8d1;" d="M637 332c-22 0-39-17-39-39v-8c0-10-8-18-18-18-10 0-18 8-18 18v8c0 41 34 75 75 75 66 0 100-79 54-127l0 0-90-87h94c10 0 18-8 18-18 0-10-8-18-18-18h-103c-28 0-43 35-22 55l95 93c24 25 7 66-28 66z m-276 218c0 10-8 18-18 18-10 0-18-8-18-18v-357c0-10 8-18 18-18 10 0 18 8 18 18v161h107v-161c0-10 8-18 18-18 10 0 18 8 18 18v357c0 10-8 18-18 18-10 0-18-8-18-18v-161h-107v161z m-132 243h542c95 0 172-77 172-172v-542c0-95-77-172-172-172h-542c-95 0-172 77-172 172v542c0 95 77 172 172 172z m0-36c-75 0-136-61-136-136v-542c0-75 61-136 136-136h542c75 0 136 61 136 136v542c0 75-61 136-136 136h-542z" horiz-adv-x="1000" />

<glyph glyph-name="luebeck" unicode="&#xe8d2;" d="M464 332v-64h-35v64c0 10 8 18 17 18 10 0 18-8 18-18z m0-178v64c0 10-8 18-18 18-9 0-17-8-17-18v-64h35z m57 178v-64h-35v64c0 10 8 18 18 18 9 0 17-8 17-18z m0-178v64c0 10-8 18-17 18-10 0-18-8-18-18v-64h35z m58 178v-64h-36v64c0 10 8 18 18 18 10 0 18-8 18-18z m0-178v64c0 10-8 18-18 18-10 0-18-8-18-18v-64h36z m-343 107l0 43c0 9-8 17-18 17-10 0-18-8-18-17l0-43h36z m535 43v-43h36v43c0 9-8 17-18 17-10 0-18-8-18-17z m-546 460c7 0 14-4 17-11l139-346h26v61c0 10 8 18 18 18h25v53c0 10 8 18 18 18h64c10 0 18-8 18-18v-53h25c10 0 18-8 18-18v-61h32v-1l0 0 141 347c2 7 9 11 16 11 7 0 14-4 17-11l150-357c1-2 1-4 1-7v-428c0-9-6-16-14-18l-57-11c-64-12-130-12-194 0l-54 11h-63c-10 0-18 8-18 18v78c0 26-21 47-46 47-26 0-47-21-47-47v-78c0-10-8-18-18-18h-62l-55-11c-64-12-130-12-194 0l-56 11c-9 2-15 9-15 18v428c0 3 1 5 2 7l150 357c2 7 9 11 16 11z m196-785v60c0 46 37 82 83 82 45 0 82-36 82-82v-60h28v392h-39c-10 0-18 8-18 18v61h-25c-10 0-18 8-18 18v53h-28v-53c0-10-8-18-18-18h-25v-61c0-10-8-18-18-18h-32v-392h28z m-196 721l-125-297 35-7c59-11 121-11 180 0l30 6-120 298z m-132-725l42-8c59-11 121-11 180 0l42 8v136l-35-7c-64-12-130-12-194 0l-35 7v-136z m42 164c59-11 121-11 180 0l42 8v64l-35-7c-64-12-130-12-194 0l-35 7v-64l42-8z m0 100c59-11 121-11 180 0l42 8v121l-35-7c-64-12-130-12-194 0l-35 7v-121l42-8z m772 164l-124 297-121-298 30-6c60-11 121-11 180 0l35 7z m7-156v121l-35-7c-64-12-130-12-194 0l-35 7v-121l42-8c60-11 121-11 180 0l42 8z m0-36l-35-7c-64-12-130-12-194 0l-35 7v-64l42-8c60-11 121-11 180 0l42 8v64z m0-100l-35-7c-64-12-130-12-194 0l-35 7v-136l42-8c60-11 121-11 180 0l42 8v136z" horiz-adv-x="1000" />
</font>
</defs>
</svg>

BIN
gfi-ihk-2024/stories/assets/fonts/pictograms/pictograms.ttf View File


BIN
gfi-ihk-2024/stories/assets/fonts/pictograms/pictograms.woff View File


BIN
gfi-ihk-2024/stories/assets/fonts/pictograms/pictograms.woff2 View File


+ 1
- 1
gfi-ihk-2024/stories/components/anchor-links/anchor-links.scss View File

@@ -75,7 +75,7 @@
left: 3px;
top: 50%;
margin-top: -15px;
color: var(--theme-color-secondary);
color: var(--theme-color-secondary-microsite);
z-index: 1;
pointer-events: none;
}


+ 37
- 0
gfi-ihk-2024/stories/components/common-content/common-content.js View File

@@ -0,0 +1,37 @@
import $ from "jquery";
import IHKSwitch from "../ihk-switch/ihk-switch";

class IHKCommonContent {
constructor(wrapper) {
this.wrapper = wrapper;
this.wrapper = wrapper.addClass('initiated');
wrapper.find('a.primary-light').on('click', (e) => {
e.preventDefault();
wrapper.addClass("hidden");
});
wrapper.find('a.secondary').on('click', (e) => {
e.preventDefault();
this.changeSwitcher(e);
});
}
changeSwitcher() {
let ihkSwitchZip = document.getElementById("ihk-switch-zip");
if (ihkSwitchZip) {
//hide already shown ihk switcher
let ihkSwitchSep = document.getElementById("ihk-switch-step");
if (ihkSwitchSep) {
ihkSwitchSep.classList.add("hide");
}
//show ihk switcher with finder
ihkSwitchZip.classList.remove("initialized");
ihkSwitchZip.setAttribute("data-show-step", "");
new IHKSwitch($(ihkSwitchZip));
}
}
}
export default IHKCommonContent;
$('body').on('ihk-init dynamic-component-loaded gfi-dynamic-init', function () {
$('.common-content:not(.initiated)').each(() => {
new IHKCommonContent($(this));
});
});

+ 3
- 3
gfi-ihk-2024/stories/components/contact/contact.scss View File

@@ -10,7 +10,7 @@
font-size: var(--font-size-small);
margin: var(--section-margin) 0;

> h2, > h3 {
> h2, > h3, > .like-h2 {
margin-top: var(--section-headline-margin);
}

@@ -167,7 +167,7 @@
}
}

.sidebar .contact-wrapper h2 {
.sidebar .contact-wrapper h2, .sidebar .contact-wrapper .like-h2 {
margin-top: var(--section-headline-margin);
margin-bottom: 0.6em;
}
@@ -185,7 +185,7 @@
margin-top: 48px;
}

h2 {
h2, .like-h2 {
@extend h3;
margin-top: 0;
}


+ 1
- 1
gfi-ihk-2024/stories/components/footer/footer.scss View File

@@ -33,7 +33,7 @@
margin-top: var(--section-headline-margin);
}

h6:first-child {
h6:first-child, .like-h6:first-child {
margin-top: 0;
margin-bottom: 0.5em;
}


+ 3
- 4
gfi-ihk-2024/stories/components/header/header.js View File

@@ -276,7 +276,7 @@ class IHKHeader {
a.attr('href', itemUrl);
}

if (this.linktype == 'external') {
if (this.linktype && this.linktype === 'external') {
li.addClass('external');
$(li).find("a").attr("target", "_blank")
}
@@ -290,7 +290,7 @@ class IHKHeader {
a.text('').append($('<img src="' + this.titleImage + '" alt="' + this.title + '" />'))
}
}
if (this.viewType === 'themenseite' && !parentElement.root) {
if (this.viewType === 'themenseite' && (!parentElement.root || this.skipEmptyMenu)) {
li.addClass('overview');
li.removeClass('deep');
a.attr('href', itemUrl);
@@ -306,8 +306,7 @@ class IHKHeader {
li.addClass('intranet');
}

if (this.doctype &&
(this.doctype.indexOf('Datei') > -1 || this.doctype.indexOf('PDF') > -1 || this.doctype.indexOf('PIC') > -1)) {
if (this.linktype && this.linktype === 'document') {
li.addClass('download');
}



+ 4
- 1
gfi-ihk-2024/stories/components/howto-list/howto-list.scss View File

@@ -42,10 +42,10 @@
li {
list-style: none;
padding: 0 0 32px 0;
position: relative;
}
a {
display: block;
position: relative;
text-decoration: none;
}
h3 {
@@ -78,6 +78,8 @@
top: 0;
width: 100%;
height: 100%;
max-width: 100px;
max-height: 100px;
border-radius: 50%;
background: var(--theme-color-secondary);
}
@@ -85,6 +87,7 @@
position: static;
left: auto;
top: auto;
margin-bottom: 16px;
}
}
}


+ 22
- 19
gfi-ihk-2024/stories/components/ihk-switch/ihk-switch.js View File

@@ -34,7 +34,18 @@ class IHKSwitch {
}

this.checkState();
this.initClosing();
this.initClosing()
this.initStayHereZipBtn(section);
}

initStayHereZipBtn(section) {
let stayHereBtn = section.find('button.stay-here-zip');
if (stayHereBtn) {
stayHereBtn.on('click', (e) => {
e.preventDefault();
this.getCurrentIhkAndSetCookie(true);
});
}
}

isSessionStorageKeySet() {
@@ -52,7 +63,7 @@ class IHKSwitch {
this.section.find('.closer').on('click', () => {
this.setSessionStorageCookie();
this.hideSwitch();
})
});
}

hideSwitch() {
@@ -101,8 +112,7 @@ class IHKSwitch {
}
}

const input = t.form.find('#zipSwitchInput');
t.zipInput = input;
t.zipInput = t.form.find('#zipSwitchInput');

t.zipInput.typeahead({
highlight: true,
@@ -141,7 +151,7 @@ class IHKSwitch {
this.section.attr('data-show-step', 'form');

this.section.find('.stay-here').on('click', () => {
this.getCurrentIhkAndSetCookie();
this.getCurrentIhkAndSetCookie(false);
this.hideSwitch();
});
this.section.find('.set-session-cookie').on('click', () => {
@@ -150,17 +160,7 @@ class IHKSwitch {
})
}

// todo: delete this method after qs tests
fakeIHKsForTest(json) {
if (json.ihknr === 107 && ihk.settings.bIhkTestUrl !== "") {
json.homepage = ihk.settings.bIhkTestUrl;
} else if (json.ihknr === 118 && ihk.settings.doIhkTestUrl !== "") {
json.homepage = ihk.settings.doIhkTestUrl;
}
}

setMyLocationAsObj(item) {
this.fakeIHKsForTest(item);
this.myLocation = {
city: item.city,
country: item.country,
@@ -196,7 +196,7 @@ class IHKSwitch {
}

this.section.find('.stay-here').on('click', () => {
this.getCurrentIhkAndSetCookie();
this.getCurrentIhkAndSetCookie(false);
this.hideSwitch();

});
@@ -217,7 +217,7 @@ class IHKSwitch {
}
}

getCurrentIhkAndSetCookie() {
getCurrentIhkAndSetCookie(withReload) {
this.getIhkList().then(() => {
let myIHK;
const currIHK = parseInt(this.section.find('.current-ihk').attr('data-ihknr'));
@@ -226,6 +226,9 @@ class IHKSwitch {
});
this.setMyLocationAsObj(myIHK);
this.setCookie();
if (withReload) {
window.location.reload();
}
});

}
@@ -270,6 +273,7 @@ class IHKSwitch {
try {
if (this.myLocation) {
Cookies.set('my-ihk', JSON.stringify(this.myLocation).toString(), {expires: 365});
Cookies.set('ihknr', this.myLocation.ihknr, {expires: 365});
}
} catch (e) {
console.log("Unable to set cookie");
@@ -281,8 +285,7 @@ class IHKSwitch {
const p = 0.017453292519943295;
const c = Math.cos;
const a = 0.5 - c((ihk.latitude - currentPosition.latitude) * p) / 2 + c(currentPosition.latitude * p) * c(ihk.latitude * p) * (1 - c((ihk.longitude - currentPosition.longitude) * p)) / 2;
const distance = 12742 * Math.asin(Math.sqrt(a));
return distance;
return 12742 * Math.asin(Math.sqrt(a));
}

getIhkList(position) {


+ 3
- 0
gfi-ihk-2024/stories/components/ihk-switch/ihk-switch.scss View File

@@ -63,6 +63,9 @@
@media(max-width: 767px) {
padding: 44px 20px 22px;
}
section {
margin: 0;
}
}

&[data-show-step="geolocation"] [data-step="geolocation"],


+ 4
- 3
gfi-ihk-2024/stories/components/image-text/image-text.scss View File

@@ -2,10 +2,11 @@
@import '../../_global/styles/vars';

.image-text {
max-width: 1340px;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: var(--section-margin);
margin: 0 auto var(--section-margin) auto;
padding: 45px 0;
position: relative;
z-index: 1;
@@ -36,9 +37,9 @@
position: absolute;
left: 50%;
top: 0;
width: 100vw;
width: calc(100vw - var(--scrollbar-width));
height: 100%;
margin: 0 -50vw;
margin: 0 calc(-50vw + 7px);
z-index: -1;
}
}


+ 5
- 1
gfi-ihk-2024/stories/components/mini-teaser/miniteaser.scss View File

@@ -37,6 +37,10 @@
}
.text-box{
position: relative;

.mini-container {
width: 100%;
}
}
&.infoteaser{
background: linear-gradient(161deg, rgba(var(--theme-color-primary-rgb), 1) 0%, rgba(var(--theme-color-primary-rgb), 0.2) 100%);
@@ -93,8 +97,8 @@
.btn{
background-color: transparent;
border: 1px solid white;
align-self: flex-start;
margin-left: 54px;
align-self: flex-start;
display: inline-block;
padding:8px 10px;
line-height: 22px;


+ 130
- 13
gfi-ihk-2024/stories/components/search-form/search-form.js View File

@@ -1,15 +1,135 @@
import $ from 'jquery';

const maxTextLength = 48;

export class IHKSearchTiles {
static lastReqId = "";

constructor(tileWrapper) {
this.tiles = tileWrapper.find('.tile a');
tileWrapper.addClass("initiated");
this.itemTitles = tileWrapper[0].getElementsByTagName('a');

this.tiles.each((i, el) => {
const tile = $(el);
if (tile.text().length > 48) {
tile.text( tile.text().substr(0, 48) + '…' );
const regex = new RegExp("^[a-zA-Z0-9äÄöÖüÜß._\b ]+$");

this.shortenTileText(this.itemTitles);
// find input element
this.input = document.getElementById("search-field-infobar");
if (!this.input) {
return;
}
this.objId = this.input.getAttribute("data-tile-search");
this.formAction = document.getElementById("mainTeaserSearchForm");
this.searchButton = this.formAction.querySelector("button");
// if we have no object id configured we do not want to perform a dynamic search
if (this.objId == null || this.objId.trim().length === 0 || this.formAction == null) {
return;
}
this.rateLimit = this.checkRateLimit(this.input.getAttribute("data-tile-search-rl"));
// create the search button under the tiles
this.allResultButton = document.createElement("span");
this.allResultButton.classList.add("all-button-wrapper");
this.buttonString = '<div class=\"btn has-icon icon-small-arrow-right-simple\">Alle Suchergebnisse</div>';
this.allResultButton.innerHTML = this.buttonString;
this.allResultButton.addEventListener("click", () => {
this.searchButton.click();
});

const tiles = tileWrapper[0].innerHTML;
let coolDown = false;
let sendValue = "";
let lastValue = "";
let lastSend = null;
this.doAjaxCall.bind(this);
this.shortenTileText.bind(this);
this.input.addEventListener("keyup", function (event) {
if (!regex.test(event.key)) {
return;
}
})
// read the current value from the input field
let input = event.target;
let currentText = input.value;
let self = this;

let delta = (lastSend === null) ? this.rateLimit + 1 : new Date().getTime() - lastSend.getTime();
if (!coolDown && currentText.length > 1) {
if (delta > this.rateLimit) {
sendValue = currentText;
// trigger the ajax call and the search action here
this.doAjaxCall(input, sendValue);
lastSend = new Date();
coolDown = true;
}
setTimeout(function () {
coolDown = false;

if (lastValue != sendValue && lastValue.length > 1) {
self.doAjaxCall(input, lastValue);
sendValue = lastValue;
lastSend = new Date();
}
}, this.rateLimit);
} else if (currentText.length < 2) {
// show initial tiles here
let newTiles = document.getElementById("tilesSearch");
let span = newTiles.nextElementSibling;
newTiles.innerHTML = tiles;
if (span) {
span.remove();
}
}
lastValue = currentText;
}.bind(this));
// remove initial search input in case of the user uses the back function of the browser
window.onload = () => {
this.input.value = "";
};
}

shortenTileText(tiles) {
for (let tile of tiles) {
if (tile.innerText.length > maxTextLength) {
tile.innerText = tile.innerText.substring(0, maxTextLength) + '…';
}
}
}

doAjaxCall(ajaxObj, query) {
const self = this;
const q = query;
const objId = ajaxObj.getAttribute("data-tile-search");
const url = "/blueprint/servlet/serviceport/search/" + objId;
const urlAndQuery = url + "?query=" + query;
const requestId = Math.floor(Math.random() * 100000);
IHKSearchTiles.lastReqId = requestId;
$.ajax({
url: urlAndQuery,
method: "GET",
timeout: 0,
success: function (result) {
if (requestId == IHKSearchTiles.lastReqId) {
let tiles = document.getElementById("tilesSearch");
// replace tiles here
tiles.innerHTML = result;
// find tile a and shorten the text if needed
let itemTitles = tiles.getElementsByClassName('item-title');
self.shortenTileText(itemTitles);
// add the "all results" button
tiles.insertAdjacentElement("afterend", self.allResultButton);
}
}
});
}

checkRateLimit(rl) {
if (rl.trim().length > 0) {
let num = parseInt(rl);
if (num >= 100) {
return num;
} else {
return 300;
}
}
return 300;
}
}

@@ -25,7 +145,6 @@ class IHKExtendedSearch {

section.find('.ev-search-btn').on('click', (e) => {
e.preventDefault();
console.log('click');
const target = $(e.currentTarget);
target.next('.ev-filter').stop().slideToggle(400, 'easeOutQuad');
window.requestAnimationFrame(() => {
@@ -58,7 +177,7 @@ class IHKExtendedSearch {
}
}

class FormAccordion{
class FormAccordion {
constructor(toggle) {
const t = this;

@@ -90,17 +209,15 @@ class FormAccordion{
const checked = this.subs.find('input[type="checkbox"]:checked').length;
const unchecked = this.subs.find('input[type="checkbox"]:not(:checked)').length;

if (checked+unchecked === 0) {
if (checked + unchecked === 0) {
this.checkbox.removeClass('half-checked');
return;
}
if (checked === 0) {
this.checkbox.prop('checked', false).removeClass('half-checked');
}
else if (unchecked === 0) {
} else if (unchecked === 0) {
this.checkbox.prop('checked', true).removeClass('half-checked');
}
else {
} else {
this.checkbox.prop('checked', false).addClass('half-checked');
}
}


+ 30
- 1
gfi-ihk-2024/stories/pages/article/Article.stories.js View File

@@ -15,4 +15,33 @@ const Template = ({...args}) => {
};

export const ArticlePage = Template.bind({});
ArticlePage.args = {};
ArticlePage.args = {};

export const ArticlePageMicrosite = Template.bind({});
ArticlePageMicrosite.args = {
styleBlock: `
:root {
--theme-color-primary: #E6007E !important;
--theme-color-primary-microsite: #000000 !important;
--theme-color-primary-rgb: 230,0,126 !important;
--theme-color-primary-dimmed-01: #EB3398 !important;
--theme-color-primary-dimmed-02: #F063B0 !important;
--theme-color-primary-dimmed-03: #F9BFDF !important;
--theme-color-primary-dimmed-04: #FCE6F2 !important;
--theme-color-secondary: #563F54 !important;
--theme-color-secondary-microsite: #E6007E !important;
--theme-color-secondary-intensed: #563F54 !important;
--theme-color-secondary-dimmed: #EEECEE !important;
--theme-color-neutral: #E6007E !important;
--theme-color-neutral-background: #EFF3F6 !important;
--theme-color-background: #FFFFFF !important;
--theme-color-text-intensed: #000000 !important;
--theme-color-text: #000000 !important;
--theme-color-link: #E6007E !important;
--theme-color-link-hover: #E6007E !important;
--theme-color-gradient-01: #E6007E !important;
--theme-color-gradient-02: #9f1f69 !important;
--theme-color-gradient-03: #563f54 !important;
}
`
};

+ 8
- 1
gfi-ihk-2024/stories/pages/article/ArticlePage.js View File

@@ -14,7 +14,7 @@ import {createVideo} from "../../components/video/VideoComponent";

export const createArticlePage =
({
styleBlock = '',
}) => {
const page = createSidebarPage({
breadcrumb: ['Start', 'Inhalte Level 1', 'Digitalisierung'],
@@ -22,6 +22,13 @@ export const createArticlePage =
const main = page.main;
const aside = page.aside;

// START Microsite Styling
const styleContent = styleBlock;
const styleElement = document.createElement('style');
styleElement.textContent = styleContent;
document.head.appendChild(styleElement);
// END

createElement('p', ['kicker'], 'Förderung', main);
createElement('h1', [], 'Finanzierung und Förderung für digitale Projekte', main);
createElement('p', ['initial', 'strong'], 'Mehrere Programme unterstützen bei der Digitalisierung und Umsetzung Ihrer innovativen Ideen. Es gibt sowohl Förderungen für eine begleitenden Beratung als auch für Investitionen und Betriebsmittel.', main);


+ 1
- 1
gfi-ihk-2024/stories/pages/magazine-interview/MagazineInterviewPage.js View File

@@ -21,7 +21,7 @@ export const createMagazineInterviewPage = ({
wrapper.appendChild(createPageDetails({}));

const pageContent = createElement('main', ['page-content'], null, wrapper);
// pageContent.appendChild(createMagazineCover({}));
pageContent.appendChild(createMagazineCover({}));

const container = createElement('div', ['container'], null, pageContent);
const row = createElement('div', ['row'], null, container);


+ 2
- 2
gfi-ihk-2024/stories/sections/feature/feature.scss View File

@@ -18,9 +18,9 @@
position: absolute;
left: 50%;
top: 0;
width: 100vw;
width: calc(100vw - var(--scrollbar-width));
height: calc(100% + var(--border-width));
margin: 0 -50vw;
margin: 0 calc(-50vw + 7px);
z-index: -1;
}
.has-sidebar & {


+ 2
- 1
gfi-ihk-2024/stories/sections/intro/intro.scss View File

@@ -60,7 +60,8 @@

[data-browser="firefox"] {
.intro > p:first-of-type::first-letter,
.intro > .text:first-of-type::first-letter {
.intro > .text:first-of-type::first-letter,
.initial::first-letter {
margin-top: 0.113em;
}
}

+ 4
- 3
gfi-ihk-2024/stories/sections/marketingheader/marketingheader-typeahead.js View File

@@ -1,8 +1,8 @@
const $ = require('jquery');
const $ = global.$;

class IHKSearchTypeahead {
constructor(input) {
this.input = input;
this.input = input.addClass('initiated');
this.api = input.data('api');
this.tileWrapper = input.closest('form').next('.tiles');
this.allResults = $('<a href="#" class="btn has-icon icon-small-arrow-right-simple" />').text('Alle Suchergebnisse');
@@ -10,7 +10,8 @@ class IHKSearchTypeahead {
this.resultCount = $('<span class="count" />').appendTo(this.allResults);

//$('.results-wrapper').find('.h-kicker').each(function(i) {if (i < 10) {console.log($(this).text())}});
this.handleKeyEvents();
// unused function at the moment
//this.handleKeyEvents();
}

handleKeyEvents() {


+ 7
- 0
gfi-ihk-2024/stories/sections/marketingheader/marketingheader.scss View File

@@ -15,6 +15,13 @@ section.marketingheader{
color:white;
}
}
.rotation .slider .outer {
max-height: 427px;
@media(max-width: 999px) {
max-height:none;
height:auto;
}
}
.search {
position: relative;
overflow: hidden;


+ 1
- 1
gfi-ihk-2024/stories/sections/marketingheader/marketingheaderslider.js View File

@@ -1,4 +1,4 @@
import $ from 'jquery';
const $ = global.$;
import 'jquery.easing';
import Slider from "../slider/slider";



+ 2
- 1
gfi-ihk-2024/stories/sections/marketingheader/searchAccordion.js View File

@@ -70,7 +70,8 @@ class IHKSearchAccordion {
export default IHKSearchAccordion;

$('body').on('ihk-init dynamic-component-loaded gfi-dynamic-init', function () {
$('form:not(.initiated)').each(function(i) {
$('.marketingheader > .search:not(.initiated)').each(function (i) {
new IHKSearchAccordion($(this));
});
});


+ 1
- 1
gfi-ihk-2024/stories/sections/participation-stage/participation-stage.scss View File

@@ -16,7 +16,7 @@
}

&.first-element {
@media(min-width: 1200px) {
@media(min-width: 1400px) {
margin-top: -60px;
}
}


+ 2
- 0
gfi-ihk-2024/stories/sections/search/search.scss View File

@@ -94,9 +94,11 @@ section.search {
}

&[data-type="download"]::before {
color: var(--theme-color-link);
@include icon-small-download;
}
&[data-type="external"]::before {
color: var(--theme-color-link);
@include icon-small-link-external;
}



+ 39
- 31
gfi-ihk-2024/stories/sections/slider/slider.js View File

@@ -111,42 +111,50 @@ class IHKSlider {
.html('/<span class="total">' + this.slides.length + '</span></span>')
.prepend(this.count);

this.slides.each(function (i) {
const s = $(this);
const li = $('<li/>').appendTo(tabsWrapper);
var button = $('<button />').addClass('btn').appendTo(li);
const span = $('<span/>').appendTo(button);
span.text(s.data('title') ? s.data('title') : i + 1);
});

this.tabs = tabsWrapper.children();

tabsWrapper.find('button').on('click', (e) => {
e.preventDefault();
this.sectionInitialClicked = true;
this.changeSlide($(e.currentTarget).parent().index());
});
if (this.slides.length > 1) {
this.slides.each(function (i) {
const s = $(this);
const li = $('<li/>').appendTo(tabsWrapper);

this.prevButton.on('click', (e) => {
e.preventDefault();
this.sectionInitialClicked = true;
this.onPrev();
});
var button = $('<button />').addClass('btn').appendTo(li);
const span = $('<span/>').appendTo(button);

this.nextButton.on('click', (e) => {
e.preventDefault();
this.sectionInitialClicked = true;
this.onNext();
});
span.text(s.data('title') ? s.data('title') : i + 1);
});
this.tabs = tabsWrapper.children();

this.controls = $('<div class="controls" />')
.append(this.prevButton)
.append(tabsWrapper)
.append(countWrapper)
.append(this.nextButton)
.appendTo(this.section);
tabsWrapper.find('button').on('click', (e) => {
e.preventDefault();
this.sectionInitialClicked = true;
this.changeSlide($(e.currentTarget).parent().index());
});

this.prevButton.on('click', (e) => {
e.preventDefault();
this.sectionInitialClicked = true;
this.onPrev();
});

this.nextButton.on('click', (e) => {
e.preventDefault();
this.sectionInitialClicked = true;
this.onNext();
});

this.controls = $('<div class="controls" />')
.append(this.prevButton)
.append(tabsWrapper)
.append(countWrapper)
.append(this.nextButton)
.appendTo(this.section);
} else {
this.controls = $('<div class="controls" />')
.append(tabsWrapper)
.append(countWrapper)
.appendTo(this.section);
}
}

changeSlide(index, offset, transition = true) {


+ 8
- 1
gfi-ihk-2024/stories/sections/teasers/teasers.scss View File

@@ -543,7 +543,7 @@
color: var(--theme-color-background);
font-size: 12px;
line-height: 1.2;
text-shadow: 0px 0px 3px rgba(var(--theme-color-text-intensed), 0.6), 0px 0px 8px rgba(var(--theme-color-text-intensed), 0.6);
text-shadow: 0 0 3px rgba(var(--theme-color-text-intensed), 0.6), 0 0 8px rgba(var(--theme-color-text-intensed), 0.6);
z-index: 2;
width: 66%;
padding: 8px 20px;
@@ -669,3 +669,10 @@
}
}
}

.no-container {
position: relative;
left: 50%;
width: calc(100vw - var(--scrollbar-width));
margin: 0 calc(-50vw + 7px);
}

Loading…
Cancel
Save