@undrr/undrr-mangrove 1.4.0 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/README.md +5 -8
  2. package/components/BarChart.js +1 -1
  3. package/components/BookCard.js +2 -2
  4. package/components/Breadcrumbs.js +2 -2
  5. package/components/Checkbox.js +1 -1
  6. package/components/Chips.js +1 -1
  7. package/components/CtaButton.js +2 -2
  8. package/components/EmbedContainer.js +1 -1
  9. package/components/Fetcher.js +1 -1
  10. package/components/Footer.js +1 -1
  11. package/components/FormErrorSummary.js +1 -1
  12. package/components/FormGroup.js +1 -1
  13. package/components/FullWidth.js +1 -1
  14. package/components/Gallery.js +1 -1
  15. package/components/Hero.js +2 -2
  16. package/components/HighlightBox.js +1 -1
  17. package/components/HorizontalBookCard.js +2 -2
  18. package/components/HorizontalCard.js +2 -2
  19. package/components/IconCard.js +2 -2
  20. package/components/Loader.js +1 -1
  21. package/components/MapComponent.js +1 -1
  22. package/components/MegaMenu.js +2 -2
  23. package/components/PageHeader.js +1 -1
  24. package/components/Pager.js +1 -1
  25. package/components/QuoteHighlight.js +1 -1
  26. package/components/Radio.js +1 -1
  27. package/components/ScrollContainer.js +1 -1
  28. package/components/Select.js +1 -1
  29. package/components/ShareButtons.js +2 -2
  30. package/components/ShowMore.js +2 -2
  31. package/components/StatsCard.js +1 -1
  32. package/components/SyndicationSearchWidget.js +2 -2
  33. package/components/Tab.js +2 -2
  34. package/components/TextCta.js +1 -1
  35. package/components/TextInput.js +1 -1
  36. package/components/Textarea.js +1 -1
  37. package/components/VerticalCard.js +2 -2
  38. package/components/hydrate.js +1 -1
  39. package/css/style-delta.css +15 -12
  40. package/css/style-delta.css.map +1 -1
  41. package/css/style-gutenberg.css +6 -3
  42. package/css/style-gutenberg.css.map +1 -1
  43. package/css/style-irp-legacy.css +14 -11
  44. package/css/style-irp-legacy.css.map +1 -1
  45. package/css/style-irp.css +14 -11
  46. package/css/style-irp.css.map +1 -1
  47. package/css/style-legacy.css +14 -11
  48. package/css/style-legacy.css.map +1 -1
  49. package/css/style-mcr-legacy.css +14 -11
  50. package/css/style-mcr-legacy.css.map +1 -1
  51. package/css/style-mcr.css +14 -11
  52. package/css/style-mcr.css.map +1 -1
  53. package/css/style-preventionweb-legacy.css +14 -11
  54. package/css/style-preventionweb-legacy.css.map +1 -1
  55. package/css/style-preventionweb.css +14 -11
  56. package/css/style-preventionweb.css.map +1 -1
  57. package/css/style.css +14 -11
  58. package/css/style.css.map +1 -1
  59. package/error-pages/401.html +1 -1
  60. package/error-pages/403.html +1 -1
  61. package/error-pages/404.html +1 -1
  62. package/error-pages/429.html +1 -1
  63. package/error-pages/500.html +1 -1
  64. package/error-pages/502.html +1 -1
  65. package/error-pages/503.html +1 -1
  66. package/error-pages/504.html +1 -1
  67. package/error-pages/5xx.html +1 -1
  68. package/error-pages/challenge.html +1 -1
  69. package/error-pages/managed-challenge.html +1 -1
  70. package/js/README.md +57 -0
  71. package/js/__tests__/show-more.test.js +76 -0
  72. package/js/__tests__/table-of-contents.test.js +198 -0
  73. package/js/on-this-page-nav.js +571 -0
  74. package/js/show-more.js +24 -3
  75. package/js/table-of-contents.js +168 -0
  76. package/js/tabs.js +18 -2
  77. package/package.json +1 -1
  78. package/scss/Atom/Icons/_icon-definitions.scss +319 -0
  79. package/scss/Atom/Icons/icons.scss +153 -232
  80. package/scss/Atom/Table/table.scss +1 -1
  81. package/scss/Components/Breadcrumbs/breadcrumbs.scss +25 -9
  82. package/scss/Components/Buttons/CtaButton/cta-button.scss +4 -29
  83. package/scss/Components/Buttons/ShareButtons/share-buttons.scss +0 -6
  84. package/scss/Components/Cards/Card/card.scss +7 -7
  85. package/scss/Components/Cards/StatsCard/stats-card.scss +2 -2
  86. package/scss/Components/Gallery/gallery.scss +3 -3
  87. package/scss/Components/Hero/hero.scss +25 -6
  88. package/scss/Components/MegaMenu/mega-menu.scss +26 -13
  89. package/scss/Components/OnThisPageNav/on-this-page-nav.scss +206 -0
  90. package/scss/Components/PageHeader/page-header.scss +1 -1
  91. package/scss/Components/ScrollContainer/scroll-container.scss +1 -1
  92. package/scss/Components/Snackbar/snackbar.scss +1 -1
  93. package/scss/Components/SyndicationSearchWidget/syndication-search-widget.scss +4 -4
  94. package/scss/Components/Tab/tab.scss +2 -2
  95. package/scss/Components/TableOfContents/TableOfContents.scss +3 -0
  96. package/scss/Components/TextCta/text-cta.scss +16 -6
  97. package/scss/Utilities/FullWidth/full-width.scss +1 -1
  98. package/scss/Utilities/ShowMore/show-more.scss +1 -1
  99. package/scss/assets/scss/_components.scss +4 -0
  100. package/scss/assets/scss/_variables-delta.scss +6 -1
  101. package/scss/assets/scss/_variables.scss +35 -2
@@ -0,0 +1,168 @@
1
+ /**
2
+ * Generates a table of contents (TOC) for a given content element.
3
+ *
4
+ * Can be used in two ways:
5
+ * 1. Auto-init: place a `<section data-mg-table-of-contents>` element on the
6
+ * page and this script will find it, locate the content area, and build the
7
+ * TOC automatically on DOMContentLoaded.
8
+ * 2. Manual: import `mgTableOfContents` and call it with your own elements.
9
+ *
10
+ * Data attributes (for auto-init):
11
+ * data-mg-table-of-contents — Required. Activates the component.
12
+ * data-mg-table-of-contents-content — CSS selector for the content area
13
+ * to scan for headings. Defaults to
14
+ * document.body.
15
+ * data-mg-table-of-contents-title — Title text for the TOC header.
16
+ * Defaults to "On this page".
17
+ * Set to "hidden" for sr-only.
18
+ * data-mg-table-of-contents-show-title — Set to "false" to hide the title.
19
+ * data-mg-table-of-contents-skip-auto-init — Opt out of auto-init.
20
+ *
21
+ * @param {HTMLElement} contentElement - The element containing the content to
22
+ * generate TOC for. This only selects h2 elements.
23
+ * @param {HTMLElement} tocElement - The TOC container element.
24
+ * @param {boolean} showNumbers - Whether to use ordered list (true) or
25
+ * unordered list (false).
26
+ */
27
+ export function mgTableOfContents(
28
+ contentElement,
29
+ tocElement,
30
+ showNumbers = false
31
+ ) {
32
+ if (!contentElement || !tocElement) {
33
+ console.error('Content element or TOC element is not provided.');
34
+ return;
35
+ }
36
+
37
+ // Ensure tocElement is a valid DOM element
38
+ if (!(tocElement instanceof HTMLElement)) {
39
+ console.error('TOC element is not a valid DOM element.');
40
+ return;
41
+ }
42
+
43
+ const showTitle =
44
+ tocElement.getAttribute('data-mg-table-of-contents-show-title') !== 'false';
45
+
46
+ if (showTitle) {
47
+ const tocHeader = document.createElement('h2');
48
+ tocHeader.textContent =
49
+ tocElement.getAttribute('data-mg-table-of-contents-title') ||
50
+ 'On this page';
51
+ tocHeader.id = 'on-this-page';
52
+ tocHeader.classList.add('mg-on-this-page-header');
53
+ if (tocHeader.textContent === 'hidden') {
54
+ tocHeader.classList.add('mg-u-sr-only');
55
+ }
56
+ tocElement.prepend(tocHeader);
57
+ }
58
+
59
+ const ListComponent = showNumbers ? 'ol' : 'ul';
60
+ const tocList = document.createElement(ListComponent);
61
+ tocElement.appendChild(tocList);
62
+
63
+ // Select all H2 elements within the content
64
+ const headings = contentElement.querySelectorAll('h2');
65
+
66
+ headings.forEach(heading => {
67
+ if (heading.id === 'on-this-page') return;
68
+ if (heading.classList.contains('mg-table-of-contents--exclude')) return;
69
+ if (heading.classList.contains('mg-u-sr-only')) return;
70
+
71
+ if (!heading.id) {
72
+ heading.id = heading.textContent
73
+ .trim()
74
+ .toLowerCase()
75
+ .replace(/[^\w\s-]/g, '')
76
+ .replace(/\s+/g, '-');
77
+ }
78
+
79
+ const listItem = document.createElement('li');
80
+ const link = document.createElement('a');
81
+ link.href = `#${heading.id}`;
82
+ link.textContent = heading.textContent;
83
+
84
+ // Smooth scroll on click, with reduced-motion and focus management
85
+ link.addEventListener('click', e => {
86
+ const target = document.getElementById(heading.id);
87
+ if (!target) return;
88
+
89
+ e.preventDefault();
90
+
91
+ const smooth =
92
+ typeof window.matchMedia !== 'function' ||
93
+ !window.matchMedia('(prefers-reduced-motion: reduce)').matches;
94
+
95
+ target.scrollIntoView({
96
+ behavior: smooth ? 'smooth' : 'auto',
97
+ block: 'start',
98
+ });
99
+
100
+ // Update URL hash without triggering a second scroll
101
+ if (window.history && window.history.pushState) {
102
+ window.history.pushState(null, null, `#${heading.id}`);
103
+ }
104
+
105
+ // Move focus to target for keyboard users
106
+ target.setAttribute('tabindex', '-1');
107
+ target.focus({ preventScroll: true });
108
+ target.addEventListener(
109
+ 'blur',
110
+ () => target.removeAttribute('tabindex'),
111
+ { once: true }
112
+ );
113
+ });
114
+
115
+ listItem.appendChild(link);
116
+ tocList.appendChild(listItem);
117
+ });
118
+ }
119
+
120
+ /**
121
+ * Auto-initialize TOC elements on the page.
122
+ * @param {NodeList|HTMLElement[]|HTMLElement} [scope] - Elements to init.
123
+ * Defaults to all [data-mg-table-of-contents] on the page.
124
+ */
125
+ export function mgTableOfContentsInit(scope) {
126
+ const containers = scope
127
+ ? scope instanceof HTMLElement
128
+ ? [scope]
129
+ : scope
130
+ : document.querySelectorAll('[data-mg-table-of-contents]');
131
+
132
+ containers.forEach(tocElement => {
133
+ if (
134
+ !scope &&
135
+ tocElement.hasAttribute('data-mg-table-of-contents-skip-auto-init')
136
+ )
137
+ return;
138
+ if (tocElement.dataset.mgTableOfContentsInitialized) return;
139
+ tocElement.dataset.mgTableOfContentsInitialized = 'true';
140
+
141
+ // Determine content element from data attribute or default to document.body
142
+ const contentSelector = tocElement.getAttribute(
143
+ 'data-mg-table-of-contents-content'
144
+ );
145
+ const contentElement = contentSelector
146
+ ? document.querySelector(contentSelector)
147
+ : document.body;
148
+
149
+ if (contentElement) {
150
+ mgTableOfContents(contentElement, tocElement);
151
+ } else if (contentSelector) {
152
+ console.warn(
153
+ `[mg-table-of-contents] Content element not found: "${contentSelector}"`
154
+ );
155
+ }
156
+ });
157
+ }
158
+
159
+ // Auto-init on DOMContentLoaded
160
+ if (document.readyState === 'loading') {
161
+ document.addEventListener(
162
+ 'DOMContentLoaded',
163
+ () => mgTableOfContentsInit(),
164
+ false
165
+ );
166
+ } else {
167
+ mgTableOfContentsInit();
168
+ }
package/js/tabs.js CHANGED
@@ -67,13 +67,21 @@ function normalizeText(text) {
67
67
  }
68
68
 
69
69
  /**
70
- * Initialize tabs on a page
70
+ * Initialize tabs on a page.
71
+ *
72
+ * @param {NodeList|HTMLElement[]|HTMLElement} [scope] - Elements to init.
73
+ * Accepts a NodeList, array, or a single HTMLElement.
74
+ * Defaults to all [data-mg-js-tabs] in the document.
71
75
  * @param {boolean} [activateDeepLinkOnLoad] - if deep linked tabs should be activated on page load, defaults to true
72
76
  * @example mgTabs();
73
77
  */
74
78
  export function mgTabs(scope, activateDeepLinkOnLoad = true) {
75
- const tabContainers = scope || document.querySelectorAll('[data-mg-js-tabs]');
79
+ const tabContainers = scope
80
+ ? (scope instanceof HTMLElement ? [scope] : scope)
81
+ : document.querySelectorAll('[data-mg-js-tabs]');
76
82
  tabContainers.forEach(container => {
83
+ // Skip auto-init if the element opts out
84
+ if (!scope && container.hasAttribute('data-mg-js-tabs-skip-auto-init')) return;
77
85
  mgTabsRuntime(container, activateDeepLinkOnLoad);
78
86
  });
79
87
  }
@@ -124,6 +132,7 @@ export function mgTabsRuntime(scope, activateDeepLinkOnLoad) {
124
132
  : Array.from(tabsList);
125
133
 
126
134
  // Check if tabs have already been initialized
135
+ // Supports both the new dataset property and the legacy attribute for backward compat
127
136
  if (tabsList.hasAttribute && tabsList.hasAttribute('data-mg-tabs-initialized')) {
128
137
  return;
129
138
  }
@@ -602,3 +611,10 @@ function mgTabsDeepLinkOnLoad(tabs, panels) {
602
611
  }
603
612
  }
604
613
  }
614
+
615
+ // Auto-wrap so the browser Event object is not passed as scope
616
+ if (document.readyState === 'loading') {
617
+ document.addEventListener('DOMContentLoaded', () => mgTabs(), false);
618
+ } else {
619
+ mgTabs();
620
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@undrr/undrr-mangrove",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
4
4
  "description": "Mangrove design System for UNDRR",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -0,0 +1,319 @@
1
+ // Auto-generated by scripts/icon-build.cjs — do not edit by hand.
2
+ // To regenerate: yarn build:icons
3
+ // 79 icons from Lucide, OCHA, and custom SVG sources.
4
+
5
+ .mg-icon-globe::before {
6
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10'/><path d='M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20M2 12h20'/></svg>");
7
+ }
8
+
9
+ .mg-icon-search::before {
10
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='m21 21-4.34-4.34'/><circle cx='11' cy='11' r='8'/></svg>");
11
+ }
12
+
13
+ .mg-icon-calendar-alt::before {
14
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M8 2v4M16 2v4'/><rect width='18' height='18' x='3' y='4' rx='2'/><path d='M3 10h18M8 14h.01M12 14h.01M16 14h.01M8 18h.01M12 18h.01M16 18h.01'/></svg>");
15
+ }
16
+
17
+ .mg-icon-chart-bar::before {
18
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M3 3v16a2 2 0 0 0 2 2h16M18 17V9M13 17V5M8 17v-3'/></svg>");
19
+ }
20
+
21
+ .mg-icon-envelope::before {
22
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7'/><rect width='20' height='16' x='2' y='4' rx='2'/></svg>");
23
+ }
24
+
25
+ .mg-icon-newspaper::before {
26
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M15 18h-5M18 14h-8M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2'/><rect width='8' height='4' x='10' y='6' rx='1'/></svg>");
27
+ }
28
+
29
+ .mg-icon-building::before {
30
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M10 12h4M10 8h4M14 21v-3a2 2 0 0 0-4 0v3'/><path d='M6 10H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2'/><path d='M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16'/></svg>");
31
+ }
32
+
33
+ .mg-icon-landmark::before {
34
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M10 18v-7M11.12 2.198a2 2 0 0 1 1.76.006l7.866 3.847c.476.233.31.949-.22.949H3.474c-.53 0-.695-.716-.22-.949zM14 18v-7M18 18v-7M3 22h18M6 18v-7'/></svg>");
35
+ }
36
+
37
+ .mg-icon-graduation-cap::before {
38
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M21.42 10.922a1 1 0 0 0-.019-1.838L12.83 5.18a2 2 0 0 0-1.66 0L2.6 9.08a1 1 0 0 0 0 1.832l8.57 3.908a2 2 0 0 0 1.66 0zM22 10v6'/><path d='M6 12.5V16a6 3 0 0 0 12 0v-3.5'/></svg>");
39
+ }
40
+
41
+ .mg-icon-business-time::before {
42
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M12 12h.01M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2M22 13a18.15 18.15 0 0 1-20 0'/><rect width='20' height='14' x='2' y='6' rx='2'/></svg>");
43
+ }
44
+
45
+ .mg-icon-pen-nib::before {
46
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z'/><path d='m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18M2.3 2.3l7.286 7.286'/><circle cx='11' cy='11' r='2'/></svg>");
47
+ }
48
+
49
+ .mg-icon-code-branch::before {
50
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M15 6a9 9 0 0 0-9 9V3'/><circle cx='18' cy='6' r='3'/><circle cx='6' cy='18' r='3'/></svg>");
51
+ }
52
+
53
+ .mg-icon-life-ring::before {
54
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10'/><path d='m4.93 4.93 4.24 4.24M14.83 9.17l4.24-4.24M14.83 14.83l4.24 4.24M9.17 14.83l-4.24 4.24'/><circle cx='12' cy='12' r='4'/></svg>");
55
+ }
56
+
57
+ .mg-icon-lightbulb::before {
58
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5M9 18h6M10 22h4'/></svg>");
59
+ }
60
+
61
+ .mg-icon-cubes::before {
62
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M2.97 12.92A2 2 0 0 0 2 14.63v3.24a2 2 0 0 0 .97 1.71l3 1.8a2 2 0 0 0 2.06 0L12 19v-5.5l-5-3zM7 16.5l-4.74-2.85M7 16.5l5-3M7 16.5v5.17M12 13.5V19l3.97 2.38a2 2 0 0 0 2.06 0l3-1.8a2 2 0 0 0 .97-1.71v-3.24a2 2 0 0 0-.97-1.71L17 10.5zM17 16.5l-5-3M17 16.5l4.74-2.85M17 16.5v5.17'/><path d='M7.97 4.42A2 2 0 0 0 7 6.13v4.37l5 3 5-3V6.13a2 2 0 0 0-.97-1.71l-3-1.8a2 2 0 0 0-2.06 0zM12 8 7.26 5.15M12 8l4.74-2.85M12 13.5V8'/></svg>");
63
+ }
64
+
65
+ .mg-icon-sort-alpha-down::before {
66
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='m3 16 4 4 4-4M7 20V4M20 8h-5M15 10V6.5a2.5 2.5 0 0 1 5 0V10M15 14h5l-5 6h5'/></svg>");
67
+ }
68
+
69
+ .mg-icon-tags::before {
70
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M13.172 2a2 2 0 0 1 1.414.586l6.71 6.71a2.4 2.4 0 0 1 0 3.408l-4.592 4.592a2.4 2.4 0 0 1-3.408 0l-6.71-6.71A2 2 0 0 1 6 9.172V3a1 1 0 0 1 1-1zM2 7v6.172a2 2 0 0 0 .586 1.414l6.71 6.71a2.4 2.4 0 0 0 3.191.193'/><circle cx='10.5' cy='6.5' r='.5' fill='currentColor'/></svg>");
71
+ }
72
+
73
+ .mg-icon-power-off::before {
74
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M12 2v10M18.4 6.6a9 9 0 1 1-12.77.04'/></svg>");
75
+ }
76
+
77
+ .mg-icon-user::before {
78
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2'/><circle cx='12' cy='7' r='4'/></svg>");
79
+ }
80
+
81
+ .mg-icon-file::before {
82
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z'/><path d='M14 2v5a1 1 0 0 0 1 1h5'/></svg>");
83
+ }
84
+
85
+ .mg-icon-file-alt::before {
86
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z'/><path d='M14 2v5a1 1 0 0 0 1 1h5M10 9H8M16 13H8M16 17H8'/></svg>");
87
+ }
88
+
89
+ .mg-icon-times::before {
90
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M18 6 6 18M6 6l12 12'/></svg>");
91
+ }
92
+
93
+ .mg-icon-link::before {
94
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'/><path d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/></svg>");
95
+ }
96
+
97
+ .mg-icon-clone::before {
98
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><rect width='14' height='14' x='8' y='8' rx='2' ry='2'/><path d='M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2'/></svg>");
99
+ }
100
+
101
+ .mg-icon-share::before {
102
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><circle cx='18' cy='5' r='3'/><circle cx='6' cy='12' r='3'/><circle cx='18' cy='19' r='3'/><path d='m8.59 13.51 6.83 3.98M15.41 6.51l-6.82 3.98'/></svg>");
103
+ }
104
+
105
+ .mg-icon-qrcode::before {
106
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><rect width='5' height='5' x='3' y='3' rx='1'/><rect width='5' height='5' x='16' y='3' rx='1'/><rect width='5' height='5' x='3' y='16' rx='1'/><path d='M21 16h-3a2 2 0 0 0-2 2v3M21 21v.01M12 7v3a2 2 0 0 1-2 2H7M3 12h.01M12 3h.01M12 16v.01M16 12h1M21 12v.01M12 21v-1'/></svg>");
107
+ }
108
+
109
+ .mg-icon-rss::before {
110
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M4 11a9 9 0 0 1 9 9M4 4a16 16 0 0 1 16 16'/><circle cx='5' cy='19' r='1'/></svg>");
111
+ }
112
+
113
+ .mg-icon-left::before {
114
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='m12 19-7-7 7-7M19 12H5'/></svg>");
115
+ }
116
+
117
+ .mg-icon-right::before {
118
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M5 12h14M12 5l7 7-7 7'/></svg>");
119
+ }
120
+
121
+ .mg-icon-angle-circled-left::before {
122
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10'/><path d='m14 16-4-4 4-4'/></svg>");
123
+ }
124
+
125
+ .mg-icon-angle-circled-right::before {
126
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10'/><path d='m10 8 4 4-4 4'/></svg>");
127
+ }
128
+
129
+ .mg-icon-menu::before {
130
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M4 5h16M4 12h16M4 19h16'/></svg>");
131
+ }
132
+
133
+ .mg-icon-info-circle::before {
134
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10'/><path d='M12 16v-4M12 8h.01'/></svg>");
135
+ }
136
+
137
+ .mg-icon-handshake::before {
138
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='m11 17 2 2a1 1 0 1 0 3-3'/><path d='m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4'/><path d='m21 3 1 11h-2M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3M3 4h8'/></svg>");
139
+ }
140
+
141
+ .mg-icon-map::before {
142
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M14.106 5.553a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619v12.764a1 1 0 0 1-.553.894l-4.553 2.277a2 2 0 0 1-1.788 0l-4.212-2.106a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0zM15 5.764v15M9 3.236v15'/></svg>");
143
+ }
144
+
145
+ .mg-icon-bar-chart::before {
146
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M3 3v16a2 2 0 0 0 2 2h16M18 17V9M13 17V5M8 17v-3'/></svg>");
147
+ }
148
+
149
+ .mg-icon-close::before {
150
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M18 6 6 18M6 6l12 12'/></svg>");
151
+ }
152
+
153
+ .mg-icon-copy::before {
154
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><rect width='14' height='14' x='8' y='8' rx='2' ry='2'/><path d='M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2'/></svg>");
155
+ }
156
+
157
+ .mg-icon-arrow-left::before {
158
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='m12 19-7-7 7-7M19 12H5'/></svg>");
159
+ }
160
+
161
+ .mg-icon-arrow-right::before {
162
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M5 12h14M12 5l7 7-7 7'/></svg>");
163
+ }
164
+
165
+ .mg-icon-hamburger::before {
166
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M4 5h16M4 12h16M4 19h16'/></svg>");
167
+ }
168
+
169
+ .mg-icon-calendar::before {
170
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M8 2v4M16 2v4'/><rect width='18' height='18' x='3' y='4' rx='2'/><path d='M3 10h18M8 14h.01M12 14h.01M16 14h.01M8 18h.01M12 18h.01M16 18h.01'/></svg>");
171
+ }
172
+
173
+ .mg-icon-exclamation-triangle::before {
174
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3M12 9v4M12 17h.01'/></svg>");
175
+ }
176
+
177
+ .mg-icon-circle-plus::before {
178
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10'/><path d='M8 12h8M12 8v8'/></svg>");
179
+ }
180
+
181
+ .mg-icon-user-circle::before {
182
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10'/><circle cx='12' cy='10' r='3'/><path d='M7 20.662V19a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v1.662'/></svg>");
183
+ }
184
+
185
+ .mg-icon-user-tag::before {
186
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='M11.5 15H7a4 4 0 0 0-4 4v2M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z'/><circle cx='10' cy='7' r='4'/></svg>");
187
+ }
188
+
189
+ .mg-icon-sign-out-alt::before {
190
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'><path d='m16 17 5-5-5-5M21 12H9M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/></svg>");
191
+ }
192
+
193
+ .mg-icon-earthquake::before {
194
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 40 48'><path d='M39.6 18 20.7.3c-.4-.4-1-.4-1.4 0L.4 18c-.2.3-.4.6-.4 1v28c0 .6.4 1 1 1h13.2l8.9-8.9-8.4-7.6c-.5-.4-.7-.9-.7-1.5s.3-1.1.7-1.5l5.4-4.6-3.5-3.5c-.8-.8-.8-2 0-2.8l4-4c.8-.8 2-.8 2.8 0s.8 2 0 2.8L20.8 19l3.6 3.6q.6.6.6 1.5c0 .6-.3 1.1-.7 1.4L19 30l8.3 7.5c.8.7.9 2 .1 2.8l-.1.1-7.5 7.6H39c.6 0 1-.4 1-1V19c0-.4-.2-.7-.4-1' style='fill:%23011e41'/></svg>");
195
+ }
196
+
197
+ .mg-icon-tsunami::before {
198
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 48'><path d='m47.9 19.5-7.8-5.4h-.3L32 19.5c-.1 0-.1.1-.1.2v6.4h-.7c-1.6 0-3.2.4-4.6 1.2-.8.5-1.7.8-2.7.8-3.3-.1-5.9-2.7-6-6-.1-3.1 2.4-5.8 5.5-5.9.9 0 1.8.2 2.5.7 1 .5 2.2.2 2.7-.8s.2-2.2-.8-2.7q-2.1-1.2-4.5-1.2c-5.4.1-9.6 4.5-9.5 9.9.1 5.5 4.5 9.8 10 10 1.6 0 3.2-.4 4.6-1.2.8-.5 1.7-.8 2.7-.8s1.9.2 2.7.8c1.2.7 2.6 1.2 4 1.2h.7c1.6 0 3.2-.4 4.6-1.2.5-.3 1.1-.6 1.7-.7h1c.7 0 1.3.1 2 .2V19.6c.2 0 .2-.1.1-.1M46 42c-1.6 0-3.2.4-4.6 1.2-1.7 1-3.8 1-5.4 0-1.4-.8-3-1.3-4.6-1.2-1.6 0-3.2.4-4.6 1.2-.9.6-1.8.8-2.8.8s-1.9-.2-2.7-.8c-1.4-.8-3-1.3-4.6-1.2-1.6 0-3.2.4-4.6 1.2-.8.5-1.7.8-2.7.8s-1.9-.2-2.7-.8C5.2 42.4 3.6 42 2 42c-1.1 0-2 .9-2 2s.9 2 2 2c1 0 1.9.2 2.7.8 1.4.8 3 1.3 4.6 1.2 1.6 0 3.2-.4 4.6-1.2.8-.5 1.7-.8 2.7-.8s1.9.2 2.7.8c1.4.8 3 1.3 4.6 1.2 1.6 0 3.2-.4 4.6-1.2 1.7-1 3.8-1 5.4 0 2.9 1.7 6.4 1.7 9.3 0 .9-.6 1.8-.8 2.8-.8 1.1 0 2-.9 2-2s-.9-2-2-2M46 34c-1.6 0-3.2.4-4.6 1.2-1.7 1-3.8 1-5.4 0-1.4-.8-3-1.3-4.6-1.2-1.6 0-3.2.4-4.6 1.2-.9.6-1.8.8-2.8.8s-1.9-.2-2.7-.8c-1.4-.8-3-1.3-4.6-1.2-1.6 0-3.2.4-4.6 1.2-.8.5-1.7.8-2.7.8s-1.9-.2-2.7-.8C5.2 34.4 3.6 34 2 34c-1.1 0-2 .9-2 2s.9 2 2 2c1 0 1.9.2 2.7.8 1.4.8 3 1.3 4.6 1.2 1.6 0 3.2-.4 4.6-1.2.8-.5 1.7-.8 2.7-.8s1.9.2 2.7.8c1.4.8 3 1.3 4.6 1.2 1.6 0 3.2-.4 4.6-1.2 1.7-1 3.8-1 5.4 0 2.9 1.7 6.4 1.7 9.3 0 .9-.6 1.8-.8 2.8-.8 1.1 0 2-.9 2-2s-.9-2-2-2' style='fill:%23011e41'/><path d='M4.1 31.1c1.1 0 2-.9 2-2 0-.3-.1-.6-.2-.9-4.2-8.1-1.1-18.1 7-22.3 2.4-1.2 5-1.9 7.6-1.9 4.2.1 8.1 1.7 11.1 4.5.8.7 2.1.7 2.8-.1s.7-2.1-.1-2.8C30.6 2.1 25.7.1 20.5 0 9.2 0 0 9.2 0 20.5c0 3.3.8 6.6 2.3 9.5.4.7 1.1 1.1 1.8 1.1' style='fill:%23011e41'/></svg>");
199
+ }
200
+
201
+ .mg-icon-flood::before {
202
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 48'><path d='M47.8 12 33.2.1q-.15-.15-.3 0L18.2 12c-.1.1-.2.2-.2.4v17.7c1.2.2 2.3.5 3.3 1.1.8.6 1.7.8 2.7.8s1.9-.2 2.7-.8c1.4-.8 3-1.3 4.6-1.2 1.6 0 3.2.4 4.6 1.2 1.7 1 3.8 1 5.4 0 1.4-.8 3-1.3 4.6-1.2.7 0 1.3.1 2 .2V12.4c.1-.2 0-.3-.1-.4M46 42c-1.6 0-3.2.4-4.6 1.2-1.7 1-3.8 1-5.4 0-1.4-.8-3-1.3-4.6-1.2-1.6 0-3.2.4-4.6 1.2-.9.6-1.8.8-2.8.8s-1.9-.2-2.7-.8c-1.4-.8-3-1.3-4.6-1.2-1.6 0-3.2.4-4.6 1.2-.8.5-1.8.8-2.7.8-1 0-1.9-.2-2.7-.8C5.2 42.4 3.6 42 2 42c-1.1 0-2 .9-2 2s.9 2 2 2c1 0 1.9.2 2.7.8 1.4.8 3 1.3 4.6 1.2 1.6 0 3.2-.4 4.6-1.2.8-.5 1.8-.8 2.7-.8 1 0 1.9.2 2.7.8 1.4.8 3 1.3 4.6 1.2 1.6 0 3.2-.4 4.6-1.2 1.7-1 3.8-1 5.4 0 2.9 1.7 6.4 1.7 9.3 0 .9-.6 1.8-.8 2.8-.8 1.1 0 2-.9 2-2s-.9-2-2-2M46 34c-1.6 0-3.2.4-4.6 1.2-1.7 1-3.8 1-5.4 0-1.4-.8-3-1.3-4.6-1.2-1.6 0-3.2.4-4.6 1.2-.9.6-1.8.8-2.8.8s-1.9-.2-2.7-.8c-1.4-.8-3-1.3-4.6-1.2-1.6 0-3.2.4-4.6 1.2-.8.5-1.7.8-2.7.8s-1.9-.2-2.7-.8C5.2 34.4 3.6 34 2 34c-1.1 0-2 .9-2 2s.9 2 2 2c1 0 1.9.2 2.7.8 1.4.8 3 1.3 4.6 1.2 1.6 0 3.2-.4 4.6-1.2.8-.5 1.7-.8 2.7-.8s1.9.2 2.7.8c1.4.8 3 1.3 4.6 1.2 1.6 0 3.2-.4 4.6-1.2 1.7-1 3.8-1 5.4 0 2.9 1.7 6.4 1.7 9.3 0 .9-.6 1.8-.8 2.8-.8 1.1 0 2-.9 2-2s-.9-2-2-2' style='fill:%23011e41'/></svg>");
203
+ }
204
+
205
+ .mg-icon-flash-flood::before {
206
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 48'><path d='M1.5 9h11.4l-3.4 3.4c-.6.6-.6 1.5 0 2.1s1.5.6 2.1 0l6-6c.6-.6.6-1.5 0-2.1l-6-6C11-.1 10-.1 9.4.4s-.5 1.6 0 2.2L12.9 6H1.5C.7 6 0 6.7 0 7.5S.7 9 1.5 9M47.8 12 33.2.1q-.15-.15-.3 0L18.2 12c-.1.1-.2.2-.2.4v17.7c1.2.2 2.3.5 3.3 1.1.8.6 1.7.8 2.7.8s1.9-.2 2.7-.8c1.4-.8 3-1.3 4.6-1.2 1.6 0 3.2.4 4.6 1.2 1.7 1 3.8 1 5.4 0 1.4-.8 3-1.3 4.6-1.2.7 0 1.3.1 2 .2V12.4c.1-.2 0-.3-.1-.4M46 42c-1.6 0-3.2.4-4.6 1.2-1.7 1-3.8 1-5.4 0-1.4-.8-3-1.3-4.6-1.2-1.6 0-3.2.4-4.6 1.2-.9.6-1.8.8-2.8.8s-1.9-.2-2.7-.8c-1.4-.8-3-1.3-4.6-1.2-1.6 0-3.2.4-4.6 1.2-.8.5-1.8.8-2.7.8-1 0-1.9-.2-2.7-.8C5.2 42.4 3.6 42 2 42c-1.1 0-2 .9-2 2s.9 2 2 2c1 0 1.9.2 2.7.8 1.4.8 3 1.3 4.6 1.2 1.6 0 3.2-.4 4.6-1.2.8-.5 1.8-.8 2.7-.8 1 0 1.9.2 2.7.8 1.4.8 3 1.3 4.6 1.2 1.6 0 3.2-.4 4.6-1.2 1.7-1 3.8-1 5.4 0 2.9 1.7 6.4 1.7 9.3 0 .9-.6 1.8-.8 2.8-.8 1.1 0 2-.9 2-2s-.9-2-2-2M46 34c-1.6 0-3.2.4-4.6 1.2-1.7 1-3.8 1-5.4 0-1.4-.8-3-1.3-4.6-1.2-1.6 0-3.2.4-4.6 1.2-.9.6-1.8.8-2.8.8s-1.9-.2-2.7-.8c-1.4-.8-3-1.3-4.6-1.2-1.6 0-3.2.4-4.6 1.2-.8.5-1.7.8-2.7.8s-1.9-.2-2.7-.8C5.2 34.4 3.6 34 2 34c-1.1 0-2 .9-2 2s.9 2 2 2c1 0 1.9.2 2.7.8 1.4.8 3 1.3 4.6 1.2 1.6 0 3.2-.4 4.6-1.2.8-.5 1.7-.8 2.7-.8s1.9.2 2.7.8c1.4.8 3 1.3 4.6 1.2 1.6 0 3.2-.4 4.6-1.2 1.7-1 3.8-1 5.4 0 2.9 1.7 6.4 1.7 9.3 0 .9-.6 1.8-.8 2.8-.8 1.1 0 2-.9 2-2s-.9-2-2-2' style='fill:%23011e41'/></svg>");
207
+ }
208
+
209
+ .mg-icon-cyclone::before {
210
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 48'><path d='M47.6 24.3c-.9-1.5-2.7-2-4.1-1.2l-4.6 2.7c.4-3.1-.2-6.3-1.8-9.1 0-.1-.1-.1-.1-.2l-8.7-15c-.8-1.4-2.6-1.9-4-1.1h-.1c-1.4.8-1.9 2.6-1.1 4L25.8 9c-3.2-.4-6.5.3-9.3 1.9l-.1.1-15 8.6c-1.4.8-1.9 2.6-1.1 4v.1c.8 1.4 2.6 1.9 4 1.1L9 22.1c-.4 3.2.3 6.4 1.9 9.2v.1l8.7 15c.8 1.4 2.6 1.9 4 1.1h.1c1.4-.8 1.9-2.6 1.1-4l-2.7-4.6c3.1.4 6.2-.2 8.9-1.7.1-.1.2-.1.4-.2l15-8.7c1.6-.8 2-2.6 1.2-4m-31.4 4.2c-2.5-4.3-1-9.7 3.2-12.3h.1c.1 0 0 0 0 0 4.3-2.4 9.7-1 12.2 3.3v.1c0 .1 0 0 0 0 2.4 4.3 1 9.8-3.3 12.3-4.2 2.4-9.7.9-12.2-3.4' style='fill:%23011e41'/></svg>");
211
+ }
212
+
213
+ .mg-icon-drought::before {
214
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 48'><path d='M45.5 43H35V20c0-2.2 1.8-4 4-4s4 1.8 4 4v.7c-1.2.6-2 1.8-2 3.2 0 1.7 2.9 5.4 3.4 6.1 0 0 .1.1.2 0 .5-.7 3.4-4.4 3.4-6.1 0-1.3-.8-2.6-2-3.2V20c0-3.8-3.1-6.9-7-7-3.9 0-7 3.1-7 7v5h-3c-2.6.3-4.7 2.3-5 5v1.7c-1.2.6-2 1.8-2 3.2 0 1.7 2.9 5.4 3.4 6.1 0 0 .1.1.2 0 .5-.7 3.4-4.4 3.4-6.1 0-1.3-.8-2.6-2-3.2v-1.2c0-1.4 1.1-2.5 2.5-2.5H32v15H2.5C1.1 43 0 44.1 0 45.5S1.1 48 2.5 48h43c1.4 0 2.5-1.1 2.5-2.5S46.9 43 45.5 43M12.5 6c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5S11 .7 11 1.5v3c0 .8.7 1.5 1.5 1.5M11 20.5v3c0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5M19.2 7.9l2.1-2.1c.6-.6.6-1.5 0-2.1s-1.5-.6-2.1 0l-2.1 2.1c-.6.6-.6 1.5 0 2.1s1.5.6 2.1 0M5.8 17.1l-2.1 2.1c-.6.6-.6 1.5 0 2.1s1.5.6 2.1 0l2.1-2.1c.6-.6.6-1.5 0-2.1s-1.5-.6-2.1 0M19 12.5c0 .8.7 1.5 1.5 1.5h3c.8 0 1.5-.7 1.5-1.5s-.7-1.5-1.5-1.5h-3c-.8 0-1.5.7-1.5 1.5M1.5 14h3c.8 0 1.5-.7 1.5-1.5S5.3 11 4.5 11h-3c-.8 0-1.5.7-1.5 1.5S.7 14 1.5 14M17.1 17.1c-.6.6-.6 1.5 0 2.1l2.1 2.1c.6.6 1.5.6 2.1 0s.6-1.5 0-2.1l-2.1-2.1c-.6-.6-1.5-.6-2.1 0M5.8 7.9c.6.6 1.5.6 2.1 0s.6-1.5 0-2.1L5.8 3.7c-.6-.6-1.5-.6-2.1 0s-.6 1.5 0 2.1z' style='fill:%23011e41'/><circle cx='12.5' cy='12.5' r='4.5' style='fill:%23011e41'/></svg>");
215
+ }
216
+
217
+ .mg-icon-volcano::before {
218
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 48'><path d='M47.9 47.2 29.3 29.6c-.7-.7-1.7-.8-2.5-.3-1.7 1.2-3.9 1.2-5.6 0-.8-.5-1.8-.4-2.5.3L.1 47.2c-.2.2-.2.5 0 .7.1 0 .3.1.4.1h47c.3 0 .5-.2.5-.5 0-.1-.1-.3-.1-.3M25 24.5c0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5v-8c-.2-3.4 2.4-6.3 5.8-6.4 2.5-.1 4.7 1.8 4.8 4.4.1 1.9-1.3 3.5-3.2 3.6-1.3-.1-2.4-1.1-2.5-2.4 0-.8-.7-1.5-1.6-1.4-.8 0-1.5.7-1.4 1.6.2 3 2.7 5.3 5.7 5.1 3.5-.2 6.2-3.2 6.1-6.7-.2-4.2-3.8-7.4-8-7.2-5 .2-8.9 4.5-8.7 9.5zM14.2 11.9c.8 0 1.5-.6 1.6-1.4 0-.8-.6-1.5-1.4-1.6-1.4-.1-2.5-1.3-2.4-2.6.1-1.9 1.7-3.4 3.6-3.3 2.6.2 4.6 2.4 4.4 5v16.5c0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5V8.1c.2-4.2-3-7.8-7.3-8.1C12.2-.2 9.2 2.6 9 6.1c-.1 3 2.2 5.6 5.2 5.8' style='fill:%23011e41'/></svg>");
219
+ }
220
+
221
+ .mg-icon-landslide::before {
222
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 48'><path d='M47.6 19.7c-.4-1.1-1.3-2-2.4-2.4s-2.4-.4-3.5 0c-.7.3-1 1.2-.6 1.8v.1c.3.6 1 .9 1.7.7.4-.1.8 0 1.2.1.3.1.6.4.8.8.4 1.1-.1 2.4-1.2 2.9-.8.3-1.7.3-2.5 0s-1.4-.9-1.7-1.7L32.9 7.9c-.4-.7-1.2-1.1-2-.7-.7.4-1.1 1.2-.7 2l6.5 14.1c.6 1.5 1.8 2.7 3.3 3.3.7.3 1.6.5 2.4.5s1.6-.2 2.4-.5c2.6-1.2 3.9-4.2 2.8-6.9M21 7.3c-.5-1.1-1.8-1.6-3-1.1-.5.2-.9.6-1.1 1.1L.2 44.8c-.5 1.1 0 2.5 1.1 3 .3.1.6.2 1 .2h33.5c1.2 0 2.3-1 2.3-2.2 0-.3-.1-.6-.2-.9zM37.1 9.5c.2.3.5.5.9.5h5c.4 0 .7-.2.9-.5l2-4c.2-.3.2-.7 0-1l-2-4c-.2-.3-.5-.5-.9-.5h-5c-.4 0-.7.2-.9.5l-2 4c-.2.3-.2.7 0 1z' style='fill:%23011e41'/></svg>");
223
+ }
224
+
225
+ .mg-icon-storm-surge::before {
226
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 48'><path d='M46 42c-1.6 0-3.2.4-4.6 1.2-1.7 1-3.8 1-5.4 0-1.4-.8-3-1.3-4.6-1.2-1.6 0-3.2.4-4.6 1.2-.9.6-1.8.8-2.8.8s-1.9-.2-2.7-.8c-1.4-.8-3-1.3-4.6-1.2-1.6 0-3.2.4-4.6 1.2-.8.5-1.8.8-2.7.8-1 0-1.9-.2-2.7-.8C5.2 42.4 3.6 42 2 42c-1.1 0-2 .9-2 2s.9 2 2 2c1 0 1.9.2 2.7.8 1.4.8 3 1.3 4.6 1.2 1.6 0 3.2-.4 4.6-1.2.8-.5 1.8-.8 2.7-.8 1 0 1.9.2 2.7.8 1.4.8 3 1.3 4.6 1.2 1.6 0 3.2-.4 4.6-1.2 1.7-1 3.8-1 5.4 0 2.9 1.7 6.4 1.7 9.3 0 .9-.6 1.8-.8 2.8-.8 1.1 0 2-.9 2-2s-.9-2-2-2M46 34c-1.6 0-3.2.4-4.6 1.2-1.7 1-3.8 1-5.4 0-1.4-.8-3-1.3-4.6-1.2-1.6 0-3.2.4-4.6 1.2-.9.6-1.8.8-2.8.8s-1.9-.2-2.7-.8c-1.4-.8-3-1.3-4.6-1.2-1.6 0-3.2.4-4.6 1.2-.8.5-1.8.8-2.7.8-1 0-1.9-.2-2.7-.8C5.2 34.4 3.6 34 2 34c-1.1 0-2 .9-2 2s.9 2 2 2c1 0 1.9.2 2.7.8 1.4.8 3 1.3 4.6 1.2 1.6 0 3.2-.4 4.6-1.2.8-.5 1.8-.8 2.7-.8 1 0 1.9.2 2.7.8 1.4.8 3 1.3 4.6 1.2 1.6 0 3.2-.4 4.6-1.2 1.7-1 3.8-1 5.4 0 2.9 1.7 6.4 1.7 9.3 0 .9-.6 1.8-.8 2.8-.8 1.1 0 2-.9 2-2s-.9-2-2-2M8 22h28.5c3.5 0 6.6-2.5 7.3-5.9.1-.5.2-1.1.2-1.6 0-4.1-3.4-7.5-7.5-7.5-.9 0-1.8.2-2.7.5A9.51 9.51 0 0 0 22.5.2C18.2 1.1 15 5 15 9.4c-2.5-1.1-5.5 0-6.6 2.6-.3.6-.4 1.3-.4 2-2.2 0-4 1.8-4 4s1.8 4 4 4M11 24.5 7.5 28c-.7.7-.7 1.8 0 2.5s1.8.7 2.5 0l3.5-3.5c.7-.7.7-1.8 0-2.5s-1.8-.7-2.5 0M23 24.5 19.5 28c-.7.7-.7 1.8 0 2.5s1.8.7 2.5 0l3.5-3.5c.7-.7.7-1.8 0-2.5s-1.8-.7-2.5 0M35 24.5 31.5 28c-.7.7-.7 1.8 0 2.5s1.8.7 2.5 0l3.5-3.5c.7-.7.7-1.8 0-2.5s-1.8-.7-2.5 0' style='fill:%23011e41'/></svg>");
227
+ }
228
+
229
+ .mg-icon-tornado::before {
230
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 48'><path d='M24.5 41h-3c-1.9 0-3.5 1.6-3.5 3.5s1.6 3.5 3.5 3.5h3c1.9 0 3.5-1.6 3.5-3.5S26.4 41 24.5 41M30.5 31h-9c-1.9 0-3.5 1.6-3.5 3.5s1.6 3.5 3.5 3.5h9c1.9 0 3.5-1.6 3.5-3.5S32.4 31 30.5 31M32 24.5c0-1.9-1.6-3.5-3.5-3.5h-16C10.6 21 9 22.6 9 24.5s1.6 3.5 3.5 3.5h16c1.9 0 3.5-1.6 3.5-3.5M39.5 11h-26c-1.9 0-3.5 1.6-3.5 3.5s1.6 3.5 3.5 3.5h26c1.9 0 3.5-1.6 3.5-3.5S41.4 11 39.5 11M44.5 0h-41C1.6 0 0 1.6 0 3.5S1.6 7 3.5 7h41C46.4 7 48 5.4 48 3.5S46.4 0 44.5 0' style='fill:%23011e41'/></svg>");
231
+ }
232
+
233
+ .mg-icon-heatwave::before {
234
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 34 48'><path d='M16 6.5C16 2.9 13.1 0 9.5 0S3 2.9 3 6.5v25.1c-3.8 3.6-4 9.6-.4 13.4s9.6 4 13.4.4c1.9-1.8 3-4.3 3-6.9s-1.1-5.1-3-6.9zM9.5 45C5.9 45 3 42.1 3 38.5c0-2 .9-3.8 2.4-5.1L6 33V6.5C6 4.6 7.6 3 9.5 3S13 4.6 13 6.5V33l.6.5c2.8 2.2 3.3 6.3 1 9.1-1.3 1.5-3.1 2.4-5.1 2.4' style='fill:%23011e41'/><path d='M11 34.8V8.5c0-.8-.7-1.5-1.5-1.5S8 7.7 8 8.5v26.3C6 35.6 5 38 5.8 40S9 43 11 42.2s3-3.2 2.2-5.2c-.4-1-1.2-1.8-2.2-2.2M32.5 10H28V5.5c0-.8-.7-1.5-1.5-1.5S25 4.7 25 5.5V10h-4.5c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5H25v4.5c0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5V13h4.5c.8 0 1.5-.7 1.5-1.5s-.7-1.5-1.5-1.5' style='fill:%23011e41'/></svg>");
235
+ }
236
+
237
+ .mg-icon-cold-wave::before {
238
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 34 48'><path d='M16 6.5C16 2.9 13.1 0 9.5 0S3 2.9 3 6.5v25.1c-3.8 3.6-4 9.6-.4 13.4s9.6 4 13.4.4c1.9-1.8 3-4.3 3-6.9s-1.1-5.1-3-6.9zM9.5 45C5.9 45 3 42.1 3 38.5c0-2 .9-3.8 2.4-5.1L6 33V6.5C6 4.6 7.6 3 9.5 3S13 4.6 13 6.5V33l.6.5c2.8 2.2 3.3 6.3 1 9.1-1.3 1.5-3.1 2.4-5.1 2.4' style='fill:%23011e41'/><path d='M11 34.8v-9.3c0-.8-.7-1.5-1.5-1.5S8 24.7 8 25.5v9.3C6 35.6 5 38 5.8 40S9 43 11 42.2s3-3.2 2.2-5.2c-.4-1-1.2-1.8-2.2-2.2M32.5 10h-12c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5h12c.8 0 1.5-.7 1.5-1.5s-.7-1.5-1.5-1.5' style='fill:%23011e41'/></svg>");
239
+ }
240
+
241
+ .mg-icon-heavy-rain::before {
242
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 40'><path d='M11.2 31c-.5 0-.9.2-1.3.5L4.5 37c-.7.7-.7 1.8 0 2.5s1.8.7 2.5 0l5.5-5.5c.7-.7.7-1.8 0-2.5-.4-.3-.8-.5-1.3-.5M24.2 31c-.5 0-.9.2-1.3.5L17.5 37c-.7.7-.7 1.8 0 2.5s1.8.7 2.5 0l5.5-5.5c.7-.7.7-1.8 0-2.5-.3-.3-.8-.5-1.3-.5M37.2 31c-.5 0-.9.2-1.3.5L30.5 37c-.7.7-.7 1.8 0 2.5s1.8.7 2.5 0l5.5-5.5c.7-.7.7-1.8 0-2.5-.3-.3-.8-.5-1.3-.5M39 9c-1.1 0-2.2.2-3.2.6-1-6.3-7-10.5-13.2-9.4-5.5.9-9.5 5.6-9.6 11.2-3.1-1.1-6.5.5-7.7 3.6-.3.9-.4 2-.2 3h-.6C2 18 0 20 0 22.5S2 27 4.5 27H39c4.3 0 8-3 8.8-7.2.1-.6.2-1.2.2-1.8 0-5-4-9-9-9' style='fill:%23011e41'/></svg>");
243
+ }
244
+
245
+ .mg-icon-snowfall::before {
246
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 43.6 48'><path d='M41.1 20.3c.2 0 .3.1.5.1 1.1 0 2-.9 2-2 0-.9-.6-1.7-1.5-1.9l-2.1-.7 1.9-1.1c1-.5 1.3-1.8.7-2.7s-1.8-1.3-2.7-.7l-1.9 1 .6-2.2c.3-1.1-.3-2.2-1.4-2.5s-2.2.5-2.5 1.5l-1.6 6-6.5 3.7c-.8-.8-1.8-1.3-2.8-1.6v-6.5l4.4-4.4c.8-.8.8-2 0-2.8s-2-.8-2.8 0l-1.6 1.6V2c0-1.1-.9-2-2-2s-2 .9-2 2v3.2l-1.6-1.6c-.8-.8-2-.8-2.8 0s-.8 2 0 2.8l4.4 4.4v6.5c-1 .3-2 .9-2.8 1.6l-6.5-3.7-1.6-6c-.3-1.1-1.4-1.7-2.4-1.5-1.1.3-1.7 1.4-1.4 2.5l.6 2.2-1.9-1.1c-1-.6-2.2-.3-2.8.7s-.2 2.2.7 2.7l1.9 1.1-2.2.6c-1.1.3-1.7 1.4-1.4 2.5.2.9 1 1.5 1.9 1.5.2 0 .4 0 .5-.1l6-1.6 6.5 3.7c-.3 1.1-.3 2.2 0 3.2l-5.6 3.2-6-1.6c-1.1-.3-2.2.3-2.4 1.4s.3 2.2 1.4 2.4l2.2.6-2.7 1.6C.8 33.8.5 35 1 36c.6 1 1.8 1.3 2.7.7l2.7-1.6-.6 2.2c-.3 1.1.4 2.2 1.4 2.4.2 0 .3.1.5.1.9 0 1.7-.6 1.9-1.5l1.6-6 5.6-3.2c.8.8 1.8 1.3 2.8 1.6v7.5l-4.4 4.4c-.8.8-.8 2 0 2.8s2 .8 2.8 0l1.6-1.6V46c0 1.1.9 2 2 2s2-.9 2-2v-2.2l1.6 1.6c.8.8 2 .8 2.8 0s.8-2 0-2.8l-4.4-4.4v-7.5c1-.3 2-.9 2.8-1.6l5.6 3.2 1.6 6c.2.9 1 1.5 1.9 1.5.2 0 .4 0 .5-.1 1.1-.3 1.7-1.4 1.4-2.4l-.6-2.2 2.7 1.6c1 .6 2.2.2 2.7-.7.5-1 .2-2.2-.7-2.7l-2.7-1.6 2.2-.6c1.1-.3 1.7-1.4 1.4-2.4-.3-1.1-1.4-1.7-2.4-1.4l-6 1.6-5.6-3.2c.3-1.1.3-2.2 0-3.2l6.5-3.7zM21.8 27c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3' style='fill:%23011e41'/></svg>");
247
+ }
248
+
249
+ .mg-icon-fire::before {
250
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 34 48'><path d='M17.4.2c-.2-.2-.5-.3-.8-.1l-.1.1C13.9 3.5 0 22.5 0 31c0 9.4 7.6 17 17 17s17-7.6 17-17C34 22.5 20.1 3.5 17.4.2M17 43c-4.4 0-8-3.6-8-8 0-4 6.6-12.4 7.8-13.9.1-.1.2-.1.4 0C18.4 22.6 25 31 25 35c0 4.4-3.6 8-8 8' style='fill:%23011e41'/></svg>");
251
+ }
252
+
253
+ .mg-icon-epidemic::before {
254
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 42'><path d='M48 29.5V29c0-7-5.5-12.7-12.5-13 0-.1-.1-.1-.1-.2C38.1 11 37.3 5 33.5 1.1l-.4-.4c-.9-.9-2.5-1-3.4 0s-1 2.5 0 3.5l.3.4C31.4 6 32.1 8 32 10c0 .5-.1 1.1-.2 1.6-4.6-3.5-10.9-3.5-15.5 0-.2-.5-.3-1.1-.3-1.6-.1-2 .6-3.9 1.9-5.4l.3-.4c1-1 .9-2.5 0-3.5s-2.5-1-3.4 0l-.3.3c-3.8 4-4.6 9.9-1.9 14.7 0 .1-.1.1-.1.2C5.5 16.3 0 22 0 29v.5C0 30.9 1.1 32 2.5 32S5 30.9 5 29.5V29h-.1.1c0-3.7 2.5-6.8 6-7.7v.7c0 5.3 3.2 10.1 8.2 12.1A8.14 8.14 0 0 1 13 37h-.5c-1.4 0-2.5 1.1-2.5 2.5s1.1 2.5 2.5 2.5h.5c4.5 0 8.6-2.3 11-6.1 2.4 3.8 6.5 6.1 11 6.1h.6c1.4 0 2.5-1.1 2.5-2.5S37 37 35.6 37H35c-2.4 0-4.7-1.1-6.2-2.9 4.9-2 8.2-6.7 8.2-12.1v-.7c3.5.9 6 4.1 6 7.7h.1-.1v.5c0 1.4 1.1 2.5 2.5 2.5s2.5-1.1 2.5-2.5M24 13c2.2 0 4.3.8 5.9 2.2-.1.1-.2.3-.4.4-3 3.1-7.8 3.1-10.9.2l-.2-.2-.4-.4c1.7-1.4 3.8-2.2 6-2.2m-9 9v-.7c4 1 6.6 5 5.8 9.1-3.5-1.3-5.8-4.6-5.8-8.4m12.1 8.4c-.8-4.1 1.8-8.1 5.8-9.1v.7c.1 3.8-2.2 7.1-5.8 8.4' style='fill:%23011e41'/></svg>");
255
+ }
256
+
257
+ .mg-icon-resilience::before {
258
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 48'><path d='M46.7 1.3c-1.8-1.8-4.6-1.8-6.4 0-.3.3-.6.7-.8 1.1.9.7 1.6 1.7 2 2.7.6 1.6.6 3.4-.1 5L39 15.6v27.9c0 2.5 2 4.5 4.5 4.5s4.5-2 4.5-4.5v-39c0-1.2-.5-2.3-1.3-3.2' style='fill:%23011e41'/><path d='M39.6 9.3c1-2.3 0-4.9-2.3-5.9s-4.9 0-5.9 2.3l-.5 1c2.3 2.1 2.8 5.6 1 8.1L18.7 34.2l-3.3 7.5c-1 2.3 0 4.9 2.3 5.9.6.2 1.2.4 1.8.4 1.8 0 3.4-1.1 4.1-2.7L39 10.7z' style='fill:%23011e41'/><path d='m20.1 28.6 3.1-4.6 7-10.2c1.3-1.9.9-4.4-.9-5.8-.1-.1-.2-.1-.3-.2l-.6-.3c-2-.9-4.5-.3-5.7 1.5L.8 41c-.5.7-.8 1.6-.8 2.5C0 46 2 48 4.5 48c1.5 0 2.9-.7 3.7-2L17 33.2z' style='fill:%23011e41'/></svg>");
259
+ }
260
+
261
+ .mg-icon-preparedness::before {
262
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 48'><path d='M13.4 35.6c-.8-.8-2-.8-2.8 0l-3.1 3.1-3.1-3.1c-.8-.8-2-.8-2.8 0s-.8 2 0 2.8l3.1 3.1-3.1 3.1c-.8.8-.8 2 0 2.8s2 .8 2.8 0l3.1-3.1 3.1 3.1c.8.8 2 .8 2.8 0s.8-2 0-2.8l-3.1-3.1 3.1-3.1c.8-.8.8-2 0-2.8M12.6 17.6 6 24.2l-2.6-2.6c-.8-.8-2-.8-2.8 0s-.8 2 0 2.8l4 4c.8.8 2 .8 2.8 0l8-8c.8-.8.8-2 0-2.8s-2-.8-2.8 0M45 22H23c-1.7 0-3 1.3-3 3s1.3 3 3 3h22c1.7 0 3-1.3 3-3s-1.3-3-3-3M12.6.6 6 7.2 3.4 4.6c-.8-.8-2-.8-2.8 0s-.8 2 0 2.8l4 4c.8.8 2 .8 2.8 0l8-8c.8-.8.8-2 0-2.8s-2-.8-2.8 0M23 11h22c1.7 0 3-1.3 3-3s-1.3-3-3-3H23c-1.7 0-3 1.3-3 3s1.3 3 3 3M45 39H23c-1.7 0-3 1.3-3 3s1.3 3 3 3h22c1.7 0 3-1.3 3-3s-1.3-3-3-3' style='fill-rule:evenodd;clip-rule:evenodd;fill:%23011e41'/></svg>");
263
+ }
264
+
265
+ .mg-icon-response::before {
266
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 48'><path d='M2.5 26C3.9 26 5 24.9 5 23.5 5 17.1 10.3 12 16.6 12h22.8l-2.7 2.7c-1 1-1 2.6 0 3.5 1 1 2.6 1 3.5 0l7-7c1-1 1-2.6 0-3.5l-7-7c-1-1-2.6-1-3.5 0-1 1-1 2.6 0 3.5L39.5 7H16.9C7.8 6.8.2 14 0 23.1v.4C0 24.9 1.1 26 2.5 26M40.3 22.7c-1-1-2.6-1-3.5 0-1 1-1 2.6 0 3.5l2.7 2.7H16.9C7.8 28.8.2 36 0 45.1v.4C0 46.9 1.1 48 2.5 48S5 46.9 5 45.5C5 39.1 10.3 34 16.6 34h22.8l-2.7 2.7c-1 1-1 2.6 0 3.5s2.6 1 3.5 0l7-7c1-1 1-2.6 0-3.5z' style='fill:%23011e41'/></svg>");
267
+ }
268
+
269
+ .mg-icon-affected-population::before {
270
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 48'><path d='M7.7 37.4.6 44.6c-.8.8-.8 2.1 0 2.8.8.8 2.1.8 2.8 0l7.1-7.2c.8-.8.8-2.1 0-2.8-.8-.8-2-.8-2.8 0M38.8 11.1c.5 0 1-.2 1.4-.6l7.2-7.1c.8-.8.8-2 0-2.8s-2-.8-2.8 0l-7.2 7.1c-.8.8-.8 2 0 2.8.4.4.9.6 1.4.6M40.3 37.4c-.8-.8-2-.8-2.8 0s-.8 2 0 2.8l7.1 7.2c.8.8 2 .8 2.8 0s.8-2 0-2.8zM7.8 10.5c.8.8 2.1.8 2.8 0 .8-.8.8-2.1 0-2.8L3.4.6C2.6-.2 1.3-.2.6.6s-.8 2.1 0 2.8zM24 10c-7.4 0-13 5.2-13 12 0 1.1.9 2 2 2s2-.9 2-2c-.1-2.8 1.5-5.4 4-6.7V46c0 1.1.9 2 2 2s2-.9 2-2V31h2v15c0 1.1.9 2 2 2s2-.9 2-2V15.3c2.5 1.3 4.1 3.9 4 6.7 0 1.1.9 2 2 2s2-.9 2-2c0-6.8-5.6-12-13-12' style='fill:%23011e41'/><circle cx='24' cy='4' r='4' style='fill:%23011e41'/></svg>");
271
+ }
272
+
273
+ .mg-icon-people-in-need::before {
274
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 34'><path d='M1.5 19c.8 0 1.5-.7 1.5-1.5 0-2.2 1.1-4.2 3-5.4V21c0 2.2 1.8 4 4 4s4-1.8 4-4v-8.9c1.9 1.1 3 3.2 3 5.4 0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5c0-1.1.4-2.1 1-2.9V18c0 1.7 1.3 3 3 3s3-1.3 3-3v-3.5c.7.8 1 1.9 1 2.9 0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5c.2-2.5 1.7-4.7 4-5.7L33.1 19c-.5 2.7 1.2 5.4 3.9 5.9s5.4-1.2 5.9-3.9c.1-.6.1-1.3 0-2L41 11.8c2.3 1 3.8 3.2 4 5.7 0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5C48 12.1 43.7 8 38 8c-3.5-.1-6.8 1.6-8.7 4.6-2.2-3-6.4-3.5-9.4-1.3-.5.4-.9.8-1.3 1.3C16.8 9.7 13.5 7.9 10 8 4.3 8 0 12.1 0 17.5c0 .8.7 1.5 1.5 1.5' style='fill:%23011e41'/><circle cx='38' cy='3' r='3' style='fill:%23011e41'/><circle cx='10' cy='3' r='3' style='fill:%23011e41'/><path d='M24 8c1.4 0 2.5-1.1 2.5-2.5S25.4 3 24 3s-2.5 1.1-2.5 2.5S22.6 8 24 8M46 30H2c-1.1 0-2 .9-2 2s.9 2 2 2h44c1.1 0 2-.9 2-2s-.9-2-2-2' style='fill:%23011e41'/></svg>");
275
+ }
276
+
277
+ .mg-icon-internally-displaced::before {
278
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 43'><path d='m47.5 20.4-6.9-6.9c-.6-.6-1.6-.6-2.2 0s-.6 1.6 0 2.2l4.3 4.3H29.5c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5h13.3l-4.4 4.3c-.6.6-.6 1.6 0 2.2s1.6.6 2.2 0l6.9-6.9c.7-.6.7-1.6 0-2.2M29.8 2.8c-.7-2.1-3-3.2-5.1-2.5s-3.2 3-2.5 5.1 3 3.2 5.1 2.5c2-.8 3.2-3.1 2.5-5.1M20.7 23.5l3.9-7.8c1.2-2.4.2-5.3-2.1-6.5L20 7.9c-.1-.1-.3-.1-.4-.2-6.9-3-14.9-.2-18.3 6.5-.5 1-.1 2.3.9 2.8s2.3.1 2.8-.9c1.9-3.8 6-5.9 10.2-5.4L.2 40c-.5 1-.1 2.3.9 2.8s2.3.1 2.8-.9l9-17.7 4.5 2.3c4.8 2.6 6.7 8.7 4.2 13.6-.5 1-.1 2.3.9 2.8s2.3.1 2.8-.9c3.3-6.5 1.4-14.4-4.6-18.5' style='fill:%23011e41'/></svg>");
279
+ }
280
+
281
+ .mg-icon-refugee::before {
282
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 47.1'><path d='M29.8 6.8c-.7-2.1-3-3.2-5.1-2.5s-3.2 3-2.5 5.1 3 3.2 5.1 2.5c2-.7 3.2-3 2.5-5.1M20.7 27.6l3.9-7.8c1.2-2.4.2-5.3-2.1-6.5L20 12c-.1-.1-.3-.1-.4-.2-6.9-3-14.9-.2-18.3 6.5-.5 1-.1 2.3.9 2.8s2.3.1 2.8-.9c1.9-3.8 6-5.9 10.2-5.4L.2 44c-.5 1-.1 2.3.9 2.8s2.3.1 2.8-.9l9-17.7 4.5 2.3c4.8 2.6 6.7 8.7 4.2 13.6-.5 1-.1 2.3.9 2.8s2.3.1 2.8-.9c3.3-6.5 1.4-14.3-4.6-18.4M47.5 22.4l-6.9-6.9c-.6-.6-1.6-.6-2.2 0s-.6 1.6 0 2.2l4.3 4.3H29.5c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5h13.3l-4.4 4.3c-.6.6-.6 1.6 0 2.2s1.6.6 2.2 0l6.9-6.9c.7-.6.7-1.6 0-2.2' style='fill:%23011e41'/><path d='M33.5 28c-.8 0-1.5.7-1.5 1.5v5c0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5v-5c0-.8-.7-1.5-1.5-1.5M33.5 19c.8 0 1.5-.7 1.5-1.5v-5c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5v5c0 .8.7 1.5 1.5 1.5M33.5 8c.8 0 1.5-.7 1.5-1.5v-5c0-.8-.7-1.5-1.5-1.5S32 .7 32 1.5v5c0 .8.7 1.5 1.5 1.5M33.5 39c-.8 0-1.5.7-1.5 1.5v5c0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5v-5c0-.8-.7-1.5-1.5-1.5' style='fill:%23011e41'/></svg>");
283
+ }
284
+
285
+ .mg-icon-shelter::before {
286
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 48'><path d='M24 18c-6 0-10.5 4.1-10.5 9.5 0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5c0-2.4 1.4-4.5 3.5-5.6v24.6c0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5V34h2v12.5c0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5V21.9c2.1 1 3.5 3.2 3.5 5.6 0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5C34.5 22.1 30 18 24 18' style='fill:%23011e41'/><circle cx='24.1' cy='13' r='3' style='fill:%23011e41'/><path d='M46.8 12.8 25.3.3c-.8-.5-1.7-.5-2.5 0L1.2 12.8C.5 13.3 0 14.1 0 15v30.5C0 46.9 1.1 48 2.5 48S5 46.9 5 45.5V16.4l19-11 19 11v29.1c0 1.4 1.1 2.5 2.5 2.5s2.5-1.1 2.5-2.5V15c0-.9-.5-1.7-1.2-2.2' style='fill:%23011e41'/></svg>");
287
+ }
288
+
289
+ .mg-icon-infrastructure::before {
290
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 48 48'><path d='M26 0v48h22V0zm13 42c0 1.1-.9 2-2 2s-2-.9-2-2v-6c0-1.1.9-2 2-2s2 .9 2 2zm0-15c0 1.1-.9 2-2 2s-2-.9-2-2v-6c0-1.1.9-2 2-2s2 .9 2 2zm0-15c0 1.1-.9 2-2 2s-2-.9-2-2V6c0-1.1.9-2 2-2s2 .9 2 2zM0 32c4.7 0 9 3.3 9 8v8h6v-8c0-4.7 4.3-8 9-8v-8H0z' style='fill:%23011e41'/></svg>");
291
+ }
292
+
293
+ .mg-icon-facebook::before {
294
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 24 24'><path d='M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.988C18.343 21.128 22 16.991 22 12'/></svg>");
295
+ }
296
+
297
+ .mg-icon-x-social::before {
298
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 24 24'><path d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/></svg>");
299
+ }
300
+
301
+ .mg-icon-twitter::before {
302
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 24 24'><path d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/></svg>");
303
+ }
304
+
305
+ .mg-icon-linkedin::before {
306
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 24 24'><path d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.06 2.06 0 0 1-2.063-2.065 2.064 2.064 0 1 1 2.063 2.065m1.782 13.019H3.555V9h3.564zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0z'/></svg>");
307
+ }
308
+
309
+ .mg-icon-youtube::before {
310
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 24 24'><path d='M23.498 6.186a3.02 3.02 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.02 3.02 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.02 3.02 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.02 3.02 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814M9.545 15.568V8.432L15.818 12z'/></svg>");
311
+ }
312
+
313
+ .mg-icon-flickr::before {
314
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 24 24'><path d='M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12m8.5-3a3 3 0 1 0 0 6 3 3 0 0 0 0-6m7 0a3 3 0 1 0 0 6 3 3 0 0 0 0-6'/></svg>");
315
+ }
316
+
317
+ .mg-icon-sdg-wheel::before {
318
+ --mg-icon-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 166.33 166.33'><path fill='%2364ad35' d='M46.73 62.84c1.82-3.09 4.02-5.92 6.55-8.43L31.79 30.84A73.7 73.7 0 0 0 18.14 48.6z'/><path fill='%23e7b717' d='M99.42 46.19c3.26 1.49 6.28 3.4 9.01 5.65l21.55-23.53a73.7 73.7 0 0 0-19.1-11.92z'/><path fill='%23c31a23' d='m148.77 53.28-28.56 14.24a41.3 41.3 0 0 1 2.86 10.09l31.77-3a72.6 72.6 0 0 0-6.07-21.33'/><path fill='%23489835' d='m118.16 63.39 28.56-14.24a73.4 73.4 0 0 0-13.35-17.72l-21.55 23.53c2.46 2.52 4.59 5.35 6.34 8.43'/><path fill='%23417f3d' d='M41.06 83.69c0-.64.02-1.29.05-1.92L9.33 78.93c-.1 1.57-.16 3.17-.16 4.77 0 6.09.76 12.02 2.16 17.68l30.7-8.81c-.63-2.87-.97-5.83-.97-8.88'/><path fill='%23f8c300' d='M114.16 109.81c-2.26 2.75-4.87 5.2-7.75 7.29l16.78 27.17a73.8 73.8 0 0 0 16.43-15.26z'/><path fill='%23e23623' d='M123.52 83.69c0 3.01-.33 5.94-.95 8.77l30.69 8.82a72.9 72.9 0 0 0 2.01-22.08l-31.78 3c.02.5.03.99.03 1.49'/><path fill='%23f39d19' d='m50.93 110.41-25.4 19.31a73.5 73.5 0 0 0 16.59 15.03l16.78-27.14a40.7 40.7 0 0 1-7.97-7.2'/><path fill='%232693d1' d='M41.57 77.18c.57-3.59 1.61-7.02 3.05-10.24L16.06 52.72a72.9 72.9 0 0 0-6.3 21.61z'/><path fill='%23a4183d' d='m119.29 146.73-16.76-27.13a40.8 40.8 0 0 1-9.78 3.97l5.92 31.39c7.35-1.7 14.29-4.5 20.62-8.23'/><path fill='%233cb9e1' d='M121.35 96.9a41.4 41.4 0 0 1-4.46 9.19l25.49 19.22a72.7 72.7 0 0 0 9.64-19.59z'/><path fill='%23e86120' d='M88.23 124.48c-1.94.28-3.93.43-5.94.43-1.62 0-3.23-.1-4.8-.28l-5.91 31.39c3.5.52 7.07.79 10.71.79 4.03 0 7.99-.33 11.85-.96z'/><path fill='%23de1931' d='M84.92 42.54c3.54.23 6.96.9 10.2 1.97l11.46-29.79a72.7 72.7 0 0 0-21.67-4.1v31.92z'/><path fill='%23d80460' d='M72.95 123.85c-3.57-.83-6.97-2.13-10.12-3.83l-16.79 27.15c6.46 3.7 13.52 6.44 21.01 8.03z'/><path fill='%231b4469' d='M69.9 44.36a40.7 40.7 0 0 1 10.42-1.85V10.59c-7.68.2-15.04 1.6-21.96 4z'/><path fill='%23ca9a12' d='M48.13 106.75A41.3 41.3 0 0 1 43.27 97l-30.67 8.8a72.5 72.5 0 0 0 10.13 20.25z'/><path fill='%2305659b' d='M56.74 51.35c2.7-2.13 5.66-3.93 8.84-5.35L54.04 16.25a73 73 0 0 0-18.81 11.52z'/></svg>");
319
+ }