@rededor/cura 0.3.0 → 0.3.2

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 (85) hide show
  1. package/dist/assets/icons/iconset-default-list.ts +1 -1
  2. package/dist/assets/icons/iconset-default.svg +1 -1
  3. package/dist/cjs/{app-globals-5f5b9fbf.js → app-globals-0f70160b.js} +57 -15
  4. package/dist/cjs/cura-display_4.cjs.entry.js +257 -0
  5. package/dist/cjs/cura-icons-view.cjs.entry.js +2 -2
  6. package/dist/cjs/cura.cjs.js +2 -2
  7. package/dist/cjs/loader.cjs.js +2 -2
  8. package/dist/collection/api/cura-api.js +4 -1
  9. package/dist/collection/api/modules/cura-theme-module.js +2 -0
  10. package/dist/collection/api/modules/cura-theme-spacing-module.js +12 -0
  11. package/dist/collection/api/theme-presets/static.js +0 -13
  12. package/dist/collection/api/theme-presets/theme-oncology.js +38 -0
  13. package/dist/collection/api/theme-presets/theme-presets.js +3 -1
  14. package/dist/collection/assets/icons/iconset-default-list.js +1 -1
  15. package/dist/collection/assets/icons/iconset-default.svg +1 -1
  16. package/dist/collection/assets-raw/icons/default/facebook.svg +3 -0
  17. package/dist/collection/assets-raw/icons/default/google.svg +3 -0
  18. package/dist/collection/assets-raw/icons/default/instagram.svg +5 -0
  19. package/dist/collection/assets-raw/icons/default/lattes.svg +3 -0
  20. package/dist/collection/assets-raw/icons/default/likeHand.svg +4 -0
  21. package/dist/collection/assets-raw/icons/default/linkedin.svg +5 -0
  22. package/dist/collection/assets-raw/icons/default/twitter.svg +3 -0
  23. package/dist/collection/assets-raw/icons/default/unlikeHand.svg +4 -0
  24. package/dist/collection/assets-raw/icons/default/whatsapp.svg +4 -0
  25. package/dist/collection/assets-raw/icons/default/youtube.svg +4 -0
  26. package/dist/collection/collection-manifest.json +1 -0
  27. package/dist/collection/components/cura-icons-view/cura-icons-view.css +1 -15
  28. package/dist/collection/components/cura-page-template/cura-page-template.css +123 -0
  29. package/dist/collection/components/cura-page-template/cura-page-template.js +54 -0
  30. package/dist/collection/components/text/cura-display/cura-display.css +25 -2
  31. package/dist/collection/components/text/cura-display/cura-display.js +56 -5
  32. package/dist/collection/components/text/cura-heading/cura-heading.css +25 -2
  33. package/dist/collection/components/text/cura-heading/cura-heading.js +53 -2
  34. package/dist/collection/components/text/cura-paragraph/cura-paragraph.css +25 -2
  35. package/dist/collection/components/text/cura-paragraph/cura-paragraph.js +54 -3
  36. package/dist/components/cura-display.js +24 -7
  37. package/dist/components/cura-heading.js +21 -4
  38. package/dist/components/cura-icons-view.js +2 -2
  39. package/dist/components/cura-page-template.d.ts +11 -0
  40. package/dist/components/cura-page-template.js +47 -0
  41. package/dist/components/cura-paragraph.js +22 -5
  42. package/dist/components/index.d.ts +1 -0
  43. package/dist/components/index.js +58 -15
  44. package/dist/cura/cura.esm.js +1 -1
  45. package/dist/cura/cura.js +1 -1
  46. package/dist/cura/p-32769783.system.js +1 -0
  47. package/dist/cura/p-5b5cf2e4.system.entry.js +1 -0
  48. package/dist/cura/p-84b2ad25.entry.js +1 -0
  49. package/dist/cura/p-8b416bc6.system.js +1 -0
  50. package/dist/cura/p-aca36c98.js +1 -0
  51. package/dist/cura/p-e3facf6a.system.entry.js +1 -0
  52. package/dist/cura/p-fbcea891.entry.js +1 -0
  53. package/dist/esm/{app-globals-d7dd3a4d.js → app-globals-cb45bff3.js} +57 -15
  54. package/dist/esm/cura-display_4.entry.js +250 -0
  55. package/dist/esm/cura-icons-view.entry.js +2 -2
  56. package/dist/esm/cura.js +2 -2
  57. package/dist/esm/loader.js +2 -2
  58. package/dist/esm-es5/app-globals-cb45bff3.js +1 -0
  59. package/dist/esm-es5/cura-display_4.entry.js +1 -0
  60. package/dist/esm-es5/cura-icons-view.entry.js +1 -1
  61. package/dist/esm-es5/cura.js +1 -1
  62. package/dist/esm-es5/loader.js +1 -1
  63. package/dist/types/api/cura-api.type.d.ts +4 -1
  64. package/dist/types/api/modules/cura-theme-module.d.ts +2 -0
  65. package/dist/types/api/modules/cura-theme-spacing-module.d.ts +6 -0
  66. package/dist/types/api/theme-presets/static.d.ts +0 -11
  67. package/dist/types/api/theme-presets/theme-oncology.d.ts +50 -0
  68. package/dist/types/api/theme-presets/theme-presets.d.ts +50 -0
  69. package/dist/types/components/cura-page-template/cura-page-template.d.ts +8 -0
  70. package/dist/types/components/text/cura-display/cura-display.d.ts +13 -3
  71. package/dist/types/components/text/cura-heading/cura-heading.d.ts +10 -0
  72. package/dist/types/components/text/cura-paragraph/cura-paragraph.d.ts +10 -0
  73. package/dist/types/components.d.ts +63 -0
  74. package/package.json +2 -2
  75. package/dist/cjs/cura-display_3.cjs.entry.js +0 -187
  76. package/dist/cura/p-265c1706.js +0 -1
  77. package/dist/cura/p-3d8bbf37.system.js +0 -1
  78. package/dist/cura/p-5ae0d10c.system.entry.js +0 -1
  79. package/dist/cura/p-80dc1c9f.entry.js +0 -1
  80. package/dist/cura/p-9312a846.system.entry.js +0 -1
  81. package/dist/cura/p-a8dcaaed.system.js +0 -1
  82. package/dist/cura/p-d29b9e16.entry.js +0 -1
  83. package/dist/esm/cura-display_3.entry.js +0 -181
  84. package/dist/esm-es5/app-globals-d7dd3a4d.js +0 -1
  85. package/dist/esm-es5/cura-display_3.entry.js +0 -1
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="0" height="0"><defs><symbol id="360" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12.302 14.595a6.067 6.067 0 0 0 5.348-6.677A6.006 6.006 0 0 0 11 2.593 6.067 6.067 0 0 0 5.65 9.27a6.006 6.006 0 0 0 6.65 5.325ZM10 6v4M8 8.039h4M12 20c-5.5 0-10-1.507-10-3 0-.759 1.149-1.51 3-2m12.103 4.583C20 19 22 17.989 22 17c0-.759-1.149-1.51-3-2M13 20l-2 2M13 20l-2-2"/></symbol><symbol id="accessibility" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M6 13a5 5 0 1 0 7.584 6"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12.336 8.963s1.244 0 1.335 1.326V13H16c1 0 1.773.875 2 1.5l2 4.5a.787.787 0 0 1-.5 1h-2c-.345 0-.89-.183-1-.5L15 16h-5c-.484 0-1-.5-1-1v-4.5c0-.81.695-1.5 1.5-1.537h1.836ZM11.253 2c-.801 0-1.45.73-1.45 1.63 0 .208.034 1.145.097 1.328.21.61.736 1.042 1.353 1.042.616 0 1.143-.432 1.353-1.042.063-.183.097-1.12.097-1.328 0-.9-.65-1.63-1.45-1.63Z"/></symbol><symbol id="alertCircle" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 17v-1M12 13V7"/></symbol><symbol id="alertTriangle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m12 3 10 18H2L12 3ZM12 18v-1M12 14V9.5"/></symbol><symbol id="arrowDown" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M20 12.045 12.013 20m-.105-.116V4v15.884ZM4 12.045 12.013 20 4 12.045Z"/></symbol><symbol id="arrowDownCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m15 11-2.997 3L9 11"/></symbol><symbol id="arrowLeft" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M11.955 4 4 11.987m.116.105H20 4.116ZM11.955 20 4 11.987 11.955 20Z"/></symbol><symbol id="arrowLeftCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m13 9-3 2.997L13 15"/></symbol><symbol id="arrowRight" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12.045 4 20 11.987m-.116.105H4h15.884ZM12.045 20 20 11.987 12.045 20Z"/></symbol><symbol id="arrowRightCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m11 9 3 2.997L11 15"/></symbol><symbol id="arrowUp" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 11.955 11.987 4m.105.116V20 4.116ZM20 11.955 11.987 4 20 11.955Z"/></symbol><symbol id="arrowUpCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m9 13 2.997-3L15 13"/></symbol><symbol id="attach" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m3 13 9.681-9.585a4.904 4.904 0 0 1 6.892 0 4.8 4.8 0 0 1 0 6.831L8.692 21.032a3.355 3.355 0 0 1-4.715 0 3.285 3.285 0 0 1 0-4.674l9.43-9.348a1.806 1.806 0 0 1 2.539 0 1.769 1.769 0 0 1 0 2.517L7.5 18"/></symbol><symbol id="avatarF" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M14 12.555v1.787l5.75 2.304c1.355.501 2.25 1.754 2.25 3.152V22M16 7v1.853c0 1.698-1.137 3.138-2.717 3.653M8 6v2.853c0 1.34.705 2.52 1.785 3.215l.215.144v2.164l-5.735 2.275C2.9 17.147 2 18.405 2 19.808V22"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M18 15.5V8A6 6 0 0 0 6 8v7.5M7 6h5"/></symbol><symbol id="avatarM" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M14 12.555v1.787l5.75 2.304c1.355.501 2.25 1.754 2.25 3.152V22M2 22v-2.192c0-1.403.9-2.66 2.265-3.157L10 14.376v-2.164l-.215-.144C8.705 11.374 8 10.193 8 8.853V5.856C8 3.726 9.79 2 12 2s4 1.725 4 3.856v2.997c0 1.698-1.137 3.138-2.717 3.653M9 4l4.5 2.5"/></symbol><symbol id="biometry" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M10 22c2.992-4.303 3.446-6.887 4-9 .361-1.378-.206-2.733-1.5-3-1.121-.231-2.204 1.143-2.5 2.5-.052.23-1.131 4.16-4.057 7.5m8.458-17.782.227.06c5.175 1.393 8.304 6.88 7.123 12.49-.089.426-.573 3.644-2.251 7.232M9.322 2.4a9.964 9.964 0 0 1 1.964-.4M2 10.565c.647-2.889 2.332-5.276 4.535-6.801m10.39 13.118c-.49 1.392-1.396 3.265-2.425 5.118m-9.988-6.857c1.013-1.899 1.425-3.618 1.431-3.649.78-3.582 4.069-5.976 7.32-5.311.12.025.211.047.303.072 3.092.833 4.948 4.204 4.217 7.675"/></symbol><symbol id="bloodGroup" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M20 14a8 8 0 1 1-16 0c0-4.418 4-7 8-12 4 5 8 7.582 8 12Z"/></symbol><symbol id="calendar" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 7.994h20M8 2v1.998M16 2v1.998M5 3.012H2v18.967h20V2.999h-3M11 2.999h2"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M18 11.99h-3v2.997h3V11.99Z"/></symbol><symbol id="cam" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 8a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8ZM17.5 12.5 22 8v9l-4.5-4.5Z"/></symbol><symbol id="camOff" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M15 13v3a2 2 0 0 1-2 2h-3m5-9V8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h1.5M17.5 12.5 22 8v9l-4.5-4.5ZM21 3 3 21"/></symbol><symbol id="central" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 14s-2-.771-2-1.714V9.714C2 8 4 8 4 8v6ZM20 14s2-.771 2-1.714V9.714C22 8 20 8 20 8v6ZM14 21c3.017-.04 6-2 6-6v-1M13.2 22h-2.4c-.44 0-.8-.45-.8-1s.36-1 .8-1h2.4c.44 0 .8.45.8 1s-.36 1-.8 1ZM20 10v-.444C20 5.386 16.414 2 12 2S4 5.387 4 9.556V10"/></symbol><symbol id="chatCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m6.904 20.6-2.452.7L2 22l1.557-4.66A9.825 9.825 0 0 1 2 12C2 6.478 6.478 2 12 2s10 4.478 10 10-4.478 10-10 10a9.93 9.93 0 0 1-5.096-1.4Z"/><circle cx="7" cy="12" r="1" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><circle cx="12" cy="12" r="1" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><circle cx="17" cy="12" r="1" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/></symbol><symbol id="check" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M22 5 9 19l-7-7.051"/></symbol><symbol id="checkBadge" viewBox="0 0 24 24"><path fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4.111 15.268c-.263 1.681-.022 2.963.818 3.803.84.84 2.122 1.081 3.803.818C9.735 21.264 10.812 22 12 22c1.188 0 2.265-.736 3.268-2.111 1.681.263 2.963.022 3.803-.818.84-.84 1.081-2.122.818-3.803C21.264 14.265 22 13.188 22 12c0-1.188-.736-2.265-2.111-3.268.263-1.681.022-2.963-.818-3.803-.84-.84-2.122-1.081-3.803-.818C14.265 2.736 13.188 2 12 2c-1.188 0-2.265.736-3.268 2.111-1.681-.263-2.963-.022-3.803.818-.84.84-1.081 2.122-.818 3.803C2.736 9.735 2 10.812 2 12c0 1.188.736 2.265 2.111 3.268Z" clip-rule="evenodd"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m16 9-5.5 6L8 12"/></symbol><symbol id="checkCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m21 6-9 9-5-5"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M17.118 3.408a9.98 9.98 0 0 0-3.22-1.224C8.476 1.136 3.232 4.682 2.184 10.104c-1.047 5.42 2.498 10.665 7.92 11.713 5.421 1.047 10.666-2.498 11.713-7.92a10 10 0 0 0 .14-2.83"/></symbol><symbol id="checkDouble" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M18 6 7 16.5 2 11M22 7.5 12 17l-1-1"/></symbol><symbol id="clock" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12ZM12 12V6M12 12h4"/></symbol><symbol id="close" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m4 4 16 16M4 20 20 4"/></symbol><symbol id="closeCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4.929 19.071c3.905 3.905 10.237 3.905 14.142 0 3.905-3.905 3.905-10.237 0-14.142-3.905-3.905-10.237-3.905-14.142 0-3.905 3.905-3.905 10.237 0 14.142ZM9 9l6 6M9 15l6-6"/></symbol><symbol id="collapse" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m18 21-6-6-6 6M6 3l6 6 6-6"/></symbol><symbol id="config" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m15.535 5.256 2.567-1.295 1.937 1.937-1.295 2.567.523 1.26 2.733.914v2.722l-2.733.915-.523 1.26 1.295 2.566-1.937 1.937-2.567-1.295-1.26.523L13.362 22h-2.722l-.915-2.733-1.26-.523-2.566 1.295-1.937-1.937 1.295-2.567-.523-1.26L2 13.362v-2.722l2.733-.915.523-1.26-1.295-2.566L5.898 3.96l2.567 1.295 1.26-.523L10.638 2h2.722l.915 2.733 1.26.523Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"/></symbol><symbol id="delete" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M3 6h18M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6h14ZM10 11v6M14 11v6"/></symbol><symbol id="desktop" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8 22h8M10 17v5M14 17v5M2 3h20v14H2z"/></symbol><symbol id="deslike" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 10a8 8 0 1 1 16 0v4a8 8 0 1 1-16 0v-4Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M14.5 15.997c-1.263-1.326-3.737-1.33-5 .003M9 9.5v1M15 9.5v1"/></symbol><symbol id="download" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 17V4m0 13 7-6.456M12 17l-7-6.456M5 20h14"/></symbol><symbol id="duplicate" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 22V8h14v14H2Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8 4V2h14v14h-2"/></symbol><symbol id="edit" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 17 19 2l3 3L7 20l-5 2 2-5ZM16 6l2 2M5 17l2 2"/></symbol><symbol id="exam" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8 6h8v12a4 4 0 0 1-8 0V6ZM16 12h-4M17 6H7M9 6V2h6v4"/></symbol><symbol id="expand" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m18 15-6 6-6-6M6 9l6-6 6 6"/></symbol><symbol id="fileBmp" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 12V7l5-5h15v10"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 6v3H6M2 16h3M2 19h4M2 22h4M18 16h4M18 19h4M2 16v6M18 16v6M9 16v6M9 16l2.5 3.5L14 16M14 16v6M5 16v3M6 19v3M22 16v3"/></symbol><symbol id="fileJpg" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 12V7l5-5h15v10"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 6v3H6M6 16v6H2v-2.5M22 16h-4v6h4v-3h-1M10 16h4v3h-4M10 16v6"/></symbol><symbol id="filePdf" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 12V7l5-5h15v10"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 6v3H6M2 16h4v3H2M2 16v6M10 22v-6h3l1 6h-4ZM18 22v-6M22 16h-4M21 19h-3"/></symbol><symbol id="filePng" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 12V7l5-5h15v10"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 6v3H6M2 16h4v3H2M2 16v6M10 16v6M14 16v6M10 16l4 6M22 16h-4v6h4v-3h-1"/></symbol><symbol id="fileUpload" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M22 10V2H7L2 7v15h9.5"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 6v3H6M14 17l4-4m0 0v9m0-9 4 4"/></symbol><symbol id="fileXls" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 12V7l5-5h15v10"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 6v3H6M2 16l4 6M2 22l4-6M10 16v6h4M22 16h-4v3h4v3h-4"/></symbol><symbol id="filter" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12.017 13v9M11.967 2.16v2.777M11.996 8.974c1.104 0 2-.897 2-2.004a2.002 2.002 0 0 0-2-2.005c-1.104 0-2 .898-2 2.005 0 1.107.896 2.004 2 2.004ZM4.038 13v9M4.038 2v3M4 12.983c1.103 0 1.998-.898 1.998-2.005A2.002 2.002 0 0 0 4 8.974C2.895 8.974 2 9.871 2 10.978s.895 2.005 2 2.005ZM19.997 19v3M19.997 2v8M20 18.323c1.105 0 2-.897 2-2.004a2.002 2.002 0 0 0-2-2.004c-1.103 0-1.998.897-1.998 2.004s.895 2.004 1.999 2.004Z"/></symbol><symbol id="fullscreen" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8 2H2v6M16 22h6v-6M22 8V2h-6M2 16v6h6"/></symbol><symbol id="gallery" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 2h8v8H2zM2 14h8v8H2zM14 2h8v8h-8zM14 14h8v8h-8z"/></symbol><symbol id="geotag" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 2C8 2 5 5 5 9c0 5 4.5 8 7 13 2.5-5 7-8 7-13 0-4-3-7-7-7Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 9c0 1.654 1.345 3 3 3s2.987-1.346 3-3c0-1.654-1.345-3-3-3S9 7.346 9 9Z"/></symbol><symbol id="hate" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 10a8 8 0 1 1 16 0v4a8 8 0 1 1-16 0v-4Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 17c0-4 6-4.005 6 0ZM8.5 9.5l.5 1M15.5 9.5l-.5 1"/></symbol><symbol id="healthPlan" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M11 21H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v6M2 7h20M2 12h10"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M20 15v-2h-4v2h-2v4h2v2h4v-2h2v-4h-2Z"/></symbol><symbol id="height" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M5 20.5V2.127M8 5 4.995 2 2 5M8 19l-3.005 3L2 19M12 2h10M14 7h8M16 12h6M18 17h4M20 22h2"/></symbol><symbol id="height2" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12.17 11.5v1.608L16 14.5"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 22v-3.973c0-1.262.763-2.394 1.92-2.841l4.86-2.047V11.19l-.182-.13a3.49 3.49 0 0 1-1.513-2.893V5.47c0-1.917 1.517-3.47 3.39-3.47 1.873 0 3.39 1.553 3.39 3.47v2.698c0 1.528-.964 2.824-2.303 3.288M19 2h3v20h-3M20.5 7h1M20.5 12h1M20.5 17h1"/></symbol><symbol id="home" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m2 11 10-9s2.337 2.438 4 4M22 11.478 19.022 8.5"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4.037 9.5V22H9v-5.437C9 15.5 9.963 14 12 14s3 1.5 3 2.563V22h5V10M16 6V3h3v5.5"/></symbol><symbol id="horizontalList" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M22 2v20h-8V2zM10 2v20H2V2z"/></symbol><symbol id="imageUp" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M22 11V7a1 1 0 0 0-1-1l-3.465-.001a1 1 0 0 1-.832-.445l-1.406-2.108A1 1 0 0 0 14.465 3h-4.93a1 1 0 0 0-.832.445l-1.406 2.11a1 1 0 0 1-.832.444H3a1 1 0 0 0-1 1V20a1 1 0 0 0 1 1h10"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M15.465 11A4 4 0 1 0 10 16.465M16 17l3-3m0 0v7m0-7 3 3"/></symbol><symbol id="info2" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M14 21.5h-.5l-.5.5h-2l-.5-.5H10M9 18h6M9.5 20h5M14.5 17v-1c0-.905.315-1.735.94-2.375C16.385 12.66 17 11.47 17 10c0-2.76-2.24-5-5-5s-5 2.24-5 5c0 1.47.615 2.66 1.56 3.625.625.64.94 1.47.94 2.375v1M12 17v-5"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m11 11 1.037 1.037L13.075 11M8 2l.5.5M4 6l.5.5M20 6l-.5.5M16 2l-.5.5"/></symbol><symbol id="infoCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10ZM12 7v1M12 12v5"/></symbol><symbol id="key" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M15.83 2.003a5.494 5.494 0 0 0-1.4.212c-2.883.567-5.041 3.07-5.041 6.092 0 .755.13 1.475.38 2.136C7.905 12.285 2.13 17.94 2.13 17.94a.428.428 0 0 0-.13.307v3.317c0 .236.202.437.439.437h3.475c.249 0 .439-.2.439-.437V19.71h1.814a.487.487 0 0 0 .487-.484V17.42h1.28c.285 0 .51-.225.51-.508v-1.31l.926-.944.32.342a.431.431 0 0 0 .605.012s.522-.532.984-.968c.724.295 1.53.46 2.36.46a6.245 6.245 0 0 0 6.144-5.005 6.37 6.37 0 0 0 .213-1.346c.119-3.435-2.704-6.256-6.167-6.15Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M16.5 6c.832 0 1.5.668 1.5 1.5S17.322 9 16.5 9c-.832 0-1.5-.668-1.5-1.5S15.668 6 16.5 6Z"/></symbol><symbol id="language" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12.002 2c-1.046 0-2.054.16-3.002.458A9.997 9.997 0 0 0 5 4.86a9.972 9.972 0 0 0-3 7.143C2 17.526 6.478 22 12.002 22 17.526 22 22 17.522 22 12.002 22 6.478 17.522 2 12.002 2ZM12.006 22V2M22 12.013H2"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M19.518 18.327c-2.949-1.767-8.408-3.727-15.037.007M19.601 5.662c-2.949 1.789-8.495 3.835-15.238-.028"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M11 2s-9 8.604 0 19.928M13 2s9 8.604 0 19.928"/></symbol><symbol id="language2" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8.276 2.78 8.5 6.5 5.5 9l.295 1.541L9 10l3 2.5-3 6-2.002-4L5 13.5l.795-2.789-2.87-2.896a9.982 9.982 0 0 1 10.306-5.74"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M21.656 9.548 19 14.5l-1.157 1.554L17 12h-1s-2.5-1.5-.5-3l3-.5 1-2h-4l-1-.5 1.635-3.114A10.006 10.006 0 0 1 22 11.998C22 17.522 17.524 22 11.996 22 6.476 22 2 17.522 2 11.998c0-.379.021-.752.062-1.12"/></symbol><symbol id="languageEN" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 2h20v20H2z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M10 9H7v3m3 0H7m0 0v3h3M13 15V9l4 6V9"/></symbol><symbol id="languagePT" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 2h20v20H2z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M7 15v-2m0 0V9h2a2 2 0 1 1 0 4H7ZM15 15V9h-2 4"/></symbol><symbol id="like" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 10a8 8 0 1 1 16 0v4a8 8 0 1 1-16 0v-4Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M14.5 16c-1.263 1.326-3.737 1.332-5 0M9 9.5v1M15 9.5v1"/></symbol><symbol id="link" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m11 13.883-.917-.917a3.402 3.402 0 0 1 0-4.782l5.197-5.201a3.396 3.396 0 0 1 4.78 0l.958.959a3.402 3.402 0 0 1 0 4.782L17.742 12"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m13 10.144.903.903a3.402 3.402 0 0 1 0 4.783L8.72 21.017a3.396 3.396 0 0 1-4.78 0l-.958-.959a3.402 3.402 0 0 1 0-4.782L6.258 12"/></symbol><symbol id="linkExternal" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8 2H2v20h20v-6M15 2h7v7m-.164-6.86L12 12"/></symbol><symbol id="list" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM4 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM4 22a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM10.019 4H22M10.019 12H22M10.019 20H22"/></symbol><symbol id="login" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M13 4h3v2m-3 14h3v-2M2 20V4l8-2v20l-8-2ZM13 12l3-3m-3 3 3 3m-3-3h9"/></symbol><symbol id="logout" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M13 4h3v3m-3 13h3v-3m6-5h-9m9 0-3 3m3-3-3-3M2 20V4l8-2v20l-8-2Z"/></symbol><symbol id="love" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 10a8 8 0 1 1 16 0v4a8 8 0 1 1-16 0v-4Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M16 15c-.5 4-7.5 4-8 0M9 9.5v1M15 9.5v1"/></symbol><symbol id="mail" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M22 20.01H2V4h20v16.01Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m3 5 7 7.5c.5.5 1 1 2 1s1.5-.5 2-1L21 5M3 19l6-6M21 19l-6-6"/></symbol><symbol id="mail2" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 20V4h20v15.984L2 20Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M15 7h4v4h-4zM5 14h7M5 17h7"/></symbol><symbol id="medical" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M21 16.5c0 1.386-1.114 2.5-2.5 2.5a2.494 2.494 0 0 1-2.5-2.5c0-1.386 1.115-2.5 2.5-2.5 1.386 0 2.5 1.114 2.5 2.5ZM14 2v1.875M9 3H7.553C6.68 3 6 3.711 6 4.552V8c0 1.067.389 2.082 1.262 2.664C8.135 11.246 12 13 12 13M15 3h1.448C17.321 3 18 3.711 18 4.552V8c0 1.067-.387 2.082-1.26 2.664C15.865 11.246 12 13 12 13M10 2v1.875M14 21c3 .5 3.5-2 3.5-2M12 13.456V16c0 4-2.817 6-5 6-2.742 0-4-2-4-3.5C3 16 6 15 9 17"/></symbol><symbol id="menuHamburguer" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M3 12h18M3 20h18M3 4h18"/></symbol><symbol id="menuKebab" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M10 4a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM10 20a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z"/></symbol><symbol id="menuMeatballs" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M20 10a2 2 0 1 1 0 4 2 2 0 0 1 0-4ZM12 10a2 2 0 1 1 0 4 2 2 0 0 1 0-4ZM4 10a2 2 0 1 1 0 4 2 2 0 0 1 0-4Z"/></symbol><symbol id="mic" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8 7a4 4 0 1 1 8 0v5a4 4 0 0 1-8 0V7Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M19 11v1a7 7 0 1 1-14 0v-1M12 19v2"/></symbol><symbol id="micOff" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M16 12a4.002 4.002 0 0 1-3 3.874M16 7.5V7a4 4 0 0 0-8 0v5c0 .986.357 1.89.949 2.587"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M19 11v1a7 7 0 0 1-9 6.71M5 11v1c0 1.838.708 3.51 1.867 4.76M12 19v2M21 3 3 21"/></symbol><symbol id="minus" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 12h16"/></symbol><symbol id="minusCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10ZM8 11.988h8"/></symbol><symbol id="minusSquare" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 2h20v20H2zM8 12h8"/></symbol><symbol id="mobile" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M6 2h12v20H6zM11 18h2"/></symbol><symbol id="neutral" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 10a8 8 0 1 1 16 0v4a8 8 0 1 1-16 0v-4ZM15 16H9M9 9.5v1M15 9.5v1"/></symbol><symbol id="news" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M18.016 14h-2.002v4.04h2.002V14ZM9.007 14h3.003M9.007 18h3.003M9.007 10h9.009M9.007 6h9.009"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M3.5 22h16.727C21.22 22 22 21.213 22 20.21V2H5v18.5c0 1-.578 1.5-1.5 1.5Zm0 0c-.922 0-1.5-.5-1.5-1.5V13"/></symbol><symbol id="notification" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M5 12a7 7 0 0 1 14 0v7H5v-7ZM3 19h18"/><circle cx="12" cy="3" r="1" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M14 20a2 2 0 1 1-4 0"/></symbol><symbol id="order" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M7 18V3M17 6v15M10 6 6.995 3 4 6M14 18l3.005 3L20 18"/></symbol><symbol id="partner" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M14 5V2h-4v3H7v3.667h3V12h4V9h3V5h-3ZM12.8 17.724l5.67-2.527a1.456 1.456 0 0 1 2.002.547c.4.712.164 1.624-.539 2.038l-1.977.945-5.686 2.718c-.294.174-.63.256-.973.256H6.493c-.35 0-.702.1-1.004.282l.01.017"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M7.989 18.32h3.488c.825 0 1.495-.679 1.495-1.516 0-.836-.67-1.516-1.495-1.516H6.804a3.29 3.29 0 0 0-1.479.348L2 17.31"/></symbol><symbol id="phone" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2.129 4.837c-.17.284-.146.674-.073 1.08a19.93 19.93 0 0 0 5.5 10.562c2.786 2.784 6.563 4.87 10.536 5.471.406.065.796.09 1.08-.073.098-.057.228-.162.26-.325l1.555-3.828c.049-.251-.04-.511-.244-.722-.097-.098-2.315-.901-3.363-1.405-.43-.21-.934-.089-1.145.26l-.407.698a1.043 1.043 0 0 1-.633.48c-1.024.259-4.192-2.655-4.883-3.345-.714-.715-3.728-3.962-3.468-4.985a1.02 1.02 0 0 1 .479-.633c.617-.357.447-.26.699-.406.357-.211.479-.715.268-1.145-.455-.933-.723-1.81-1.024-2.809-.13-.438-.552-.787-.975-.698 0 0-1.124.42-3.845 1.563-.155.033-.26.163-.317.26ZM14 5c2.764 0 5 2.236 5 5M15 2a7 7 0 0 1 7 7"/></symbol><symbol id="play" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M10 16V8l6 4-6 4Z"/></symbol><symbol id="plus" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 12h16M12 4v16"/></symbol><symbol id="plusCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10ZM8 12h8M12 16V8"/></symbol><symbol id="plusSquare" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 2h20v20H2zM8 12h8M12 8v8"/></symbol><symbol id="print" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M5.828 17H2V6h20v11h-3.816M6 5V2h12v3"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M18 15H6v7h12v-7ZM9 18h6M18 9h1"/></symbol><symbol id="profile" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M19 19v-1.034c0-.958 0-1.966-1.5-2.466l-4-1.5v-1c1-.5 1.5-1.5 1.5-2.5V8c0-2-1.421-3-3-3S9 6 9 8v2.5c0 1 .5 2 1.5 2.5v1l-4 1.5C5 16 5 17.073 5 18.02V19"/></symbol><symbol id="profile2" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M13.5 11.5v1.608L19 15c1.281.451 2 1.742 2 3v4"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M3 22v-3.973C3 16.5 3.5 15.5 5 15s5-2 5-2v-1.5l.01-.44c-.972-.624-1.51-1.686-1.51-2.892V5.47C8.5 3.553 10.015 2 12.005 2S15.5 3.553 15.5 5.47v2.698c0 1.528-1 2.832-2.5 3.332"/></symbol><symbol id="pulldownG" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m20 8-8 8-8-8"/></symbol><symbol id="pulldownP" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m16 10-4 4-4-4"/></symbol><symbol id="pullupG" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m4 15 8-8 8 8"/></symbol><symbol id="pullupP" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m8 13 4-4 4 4"/></symbol><symbol id="questionCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 8.943C9 7.318 10.343 6 12 6s3 1.318 3 2.943C15 10.57 13.657 12 12 12v2m0 4v-1"/></symbol><symbol id="questionSquare" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 2h20v20H2z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 8.943C9 7.318 10.343 6 12 6s3 1.318 3 2.943C15 10.57 13.657 12 12 12v2m0 4v-1"/></symbol><symbol id="range" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2.019 11.995H22M7 6h15M2 6h1M17 17.989H2m20 0h-1.017"/></symbol><symbol id="reload" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2a9.988 9.988 0 0 1 8.196 4.27"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M20.333 2v4.444H15.89"/></symbol><symbol id="schedule" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 7.994h20M8 2v1.998M16 2v1.998M5 3.012H2v18.967h20V2.999h-3M11 2.999h2M12 11.989v5.993M15 14.986H9"/></symbol><symbol id="search" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m17 15 5 5-2 2-5-5"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z"/></symbol><symbol id="secure" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 22a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8 11V6.05C8 3.815 9.792 2 12 2c1.104 0 2.104.454 2.832 1.183A4.094 4.094 0 0 1 16 6.05V11M12 17v2M12 17a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"/></symbol><symbol id="share" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M19 22a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM19 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM5 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM8 11l8-4.5M8 13l8 4.5"/></symbol><symbol id="share2" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8 2H2v20h20v-6"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M20.5 6h-9a5.5 5.5 0 1 0 0 11H14"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m18 2 4 4-4 4"/></symbol><symbol id="sound" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 9v6h3.983L11 21V3L5.983 9H2ZM15 9c1.5.5 2 2 2 3s-.5 2.5-2 3"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M15 4c4 .5 7 4 7 8s-3 7.5-7 8"/></symbol><symbol id="soundOff" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8.983 15H5V9h3.983L14 3v5.5m0 5.5v7l-3-4M19 3 4 21"/></symbol><symbol id="subItem" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m15 19 5-5-5-5"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M19.53 14H5.6c-.8 0-1.6-.8-1.6-1.6V5"/></symbol><symbol id="target" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 19a7 7 0 1 0 0-14 7 7 0 0 0 0 14Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM20 12h2M2 12h2M12 4V2M12 22v-2"/></symbol><symbol id="team" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M16.545 20v-1.364A3.636 3.636 0 0 0 12.91 15H5.636A3.636 3.636 0 0 0 2 18.636V20M9.5 11a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7ZM22 20v-1.455a3.636 3.636 0 0 0-2.727-3.518M15.636 4a3.636 3.636 0 0 1 0 7.046"/></symbol><symbol id="unLink" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m11.518 6.747 3.747-3.752a3.397 3.397 0 0 1 4.805 0l.936.938a3.408 3.408 0 0 1 0 4.81l-3.787 3.793M12.428 17.333l-3.693 3.672a3.397 3.397 0 0 1-4.805 0l-.936-.938a3.408 3.408 0 0 1 0-4.811L6.7 11.57M3.5 8h2M8 3.5v2M3.5 3.5 5 5M20.5 16h-2M16 20.5v-2M20.5 20.5 19 19"/></symbol><symbol id="unSecure" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 22a6 6 0 1 0 0-12 6 6 0 0 0 0 12ZM8 11V6.05C8 3.815 9.792 2 12 2c1.104 0 2.104.454 2.832 1.183A4.094 4.094 0 0 1 16 6.05M12 17v2"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 17a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"/></symbol><symbol id="upload" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 7v13m0-13 7 6.456M12 7l-7 6.456M5 4h14"/></symbol><symbol id="verticalList" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 2h20v8H2zM2 14h20v8H2z"/></symbol><symbol id="viewFalse" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M6.114 16C4.043 14.6 2.557 12.835 2 12c1-1.5 5-6 10-6 1.05 0 2.056.199 3 .526M18.583 8.5C20.289 9.797 21.508 11.262 22 12c-1 1.5-5 6-10 6a8.94 8.94 0 0 1-2.5-.367"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M15.874 11A4 4 0 0 1 11 15.874M13.938 8.5A4 4 0 0 0 8.535 14M4 19 19 4"/></symbol><symbol id="viewTrue" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M22 12c-1 1.5-5 6-10 6s-9-4.5-10-6c1-1.5 5-6 10-6s9 4.5 10 6Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 16a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"/></symbol><symbol id="weight" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m17 12 2-5c-1.5-1-4-2-7-2S6.5 6 5 7l2 5c1.5-.5 2.5-1 5-1s3.5.5 5 1ZM12 10.5l-2-2"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 20V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2Z"/></symbol><symbol id="wifi" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M14 19c0 1.107-.893 2-2 2s-2-.893-2-2c0-1.106.893-1.999 2-1.999 1.107-.036 2 .893 2 2ZM8 14.875c2-2.5 6-2.5 8 0M5 11c3.5-4 10.5-4 14 0M3 6.75c5-5 13-5 18 0"/></symbol><symbol id="zoomIn" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m17 15 5 5-2 2-5-5"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16ZM10 7v6M13 10H7"/></symbol><symbol id="zoomOut" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m17 15 5 5-2 2-5-5"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16ZM13 10H7"/></symbol></defs></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="0" height="0"><defs><symbol id="360" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12.302 14.595a6.067 6.067 0 0 0 5.348-6.677A6.006 6.006 0 0 0 11 2.593 6.067 6.067 0 0 0 5.65 9.27a6.006 6.006 0 0 0 6.65 5.325ZM10 6v4M8 8.039h4M12 20c-5.5 0-10-1.507-10-3 0-.759 1.149-1.51 3-2m12.103 4.583C20 19 22 17.989 22 17c0-.759-1.149-1.51-3-2M13 20l-2 2M13 20l-2-2"/></symbol><symbol id="accessibility" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M6 13a5 5 0 1 0 7.584 6"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12.336 8.963s1.244 0 1.335 1.326V13H16c1 0 1.773.875 2 1.5l2 4.5a.787.787 0 0 1-.5 1h-2c-.345 0-.89-.183-1-.5L15 16h-5c-.484 0-1-.5-1-1v-4.5c0-.81.695-1.5 1.5-1.537h1.836ZM11.253 2c-.801 0-1.45.73-1.45 1.63 0 .208.034 1.145.097 1.328.21.61.736 1.042 1.353 1.042.616 0 1.143-.432 1.353-1.042.063-.183.097-1.12.097-1.328 0-.9-.65-1.63-1.45-1.63Z"/></symbol><symbol id="alertCircle" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 17v-1M12 13V7"/></symbol><symbol id="alertTriangle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m12 3 10 18H2L12 3ZM12 18v-1M12 14V9.5"/></symbol><symbol id="arrowDown" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M20 12.045 12.013 20m-.105-.116V4v15.884ZM4 12.045 12.013 20 4 12.045Z"/></symbol><symbol id="arrowDownCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m15 11-2.997 3L9 11"/></symbol><symbol id="arrowLeft" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M11.955 4 4 11.987m.116.105H20 4.116ZM11.955 20 4 11.987 11.955 20Z"/></symbol><symbol id="arrowLeftCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m13 9-3 2.997L13 15"/></symbol><symbol id="arrowRight" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12.045 4 20 11.987m-.116.105H4h15.884ZM12.045 20 20 11.987 12.045 20Z"/></symbol><symbol id="arrowRightCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m11 9 3 2.997L11 15"/></symbol><symbol id="arrowUp" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 11.955 11.987 4m.105.116V20 4.116ZM20 11.955 11.987 4 20 11.955Z"/></symbol><symbol id="arrowUpCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m9 13 2.997-3L15 13"/></symbol><symbol id="attach" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m3 13 9.681-9.585a4.904 4.904 0 0 1 6.892 0 4.8 4.8 0 0 1 0 6.831L8.692 21.032a3.355 3.355 0 0 1-4.715 0 3.285 3.285 0 0 1 0-4.674l9.43-9.348a1.806 1.806 0 0 1 2.539 0 1.769 1.769 0 0 1 0 2.517L7.5 18"/></symbol><symbol id="avatarF" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M14 12.555v1.787l5.75 2.304c1.355.501 2.25 1.754 2.25 3.152V22M16 7v1.853c0 1.698-1.137 3.138-2.717 3.653M8 6v2.853c0 1.34.705 2.52 1.785 3.215l.215.144v2.164l-5.735 2.275C2.9 17.147 2 18.405 2 19.808V22"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M18 15.5V8A6 6 0 0 0 6 8v7.5M7 6h5"/></symbol><symbol id="avatarM" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M14 12.555v1.787l5.75 2.304c1.355.501 2.25 1.754 2.25 3.152V22M2 22v-2.192c0-1.403.9-2.66 2.265-3.157L10 14.376v-2.164l-.215-.144C8.705 11.374 8 10.193 8 8.853V5.856C8 3.726 9.79 2 12 2s4 1.725 4 3.856v2.997c0 1.698-1.137 3.138-2.717 3.653M9 4l4.5 2.5"/></symbol><symbol id="biometry" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M10 22c2.992-4.303 3.446-6.887 4-9 .361-1.378-.206-2.733-1.5-3-1.121-.231-2.204 1.143-2.5 2.5-.052.23-1.131 4.16-4.057 7.5m8.458-17.782.227.06c5.175 1.393 8.304 6.88 7.123 12.49-.089.426-.573 3.644-2.251 7.232M9.322 2.4a9.964 9.964 0 0 1 1.964-.4M2 10.565c.647-2.889 2.332-5.276 4.535-6.801m10.39 13.118c-.49 1.392-1.396 3.265-2.425 5.118m-9.988-6.857c1.013-1.899 1.425-3.618 1.431-3.649.78-3.582 4.069-5.976 7.32-5.311.12.025.211.047.303.072 3.092.833 4.948 4.204 4.217 7.675"/></symbol><symbol id="bloodGroup" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M20 14a8 8 0 1 1-16 0c0-4.418 4-7 8-12 4 5 8 7.582 8 12Z"/></symbol><symbol id="calendar" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 7.994h20M8 2v1.998M16 2v1.998M5 3.012H2v18.967h20V2.999h-3M11 2.999h2"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M18 11.99h-3v2.997h3V11.99Z"/></symbol><symbol id="cam" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 8a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8ZM17.5 12.5 22 8v9l-4.5-4.5Z"/></symbol><symbol id="camOff" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M15 13v3a2 2 0 0 1-2 2h-3m5-9V8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h1.5M17.5 12.5 22 8v9l-4.5-4.5ZM21 3 3 21"/></symbol><symbol id="central" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 14s-2-.771-2-1.714V9.714C2 8 4 8 4 8v6ZM20 14s2-.771 2-1.714V9.714C22 8 20 8 20 8v6ZM14 21c3.017-.04 6-2 6-6v-1M13.2 22h-2.4c-.44 0-.8-.45-.8-1s.36-1 .8-1h2.4c.44 0 .8.45.8 1s-.36 1-.8 1ZM20 10v-.444C20 5.386 16.414 2 12 2S4 5.387 4 9.556V10"/></symbol><symbol id="chatCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m6.904 20.6-2.452.7L2 22l1.557-4.66A9.825 9.825 0 0 1 2 12C2 6.478 6.478 2 12 2s10 4.478 10 10-4.478 10-10 10a9.93 9.93 0 0 1-5.096-1.4Z"/><circle cx="7" cy="12" r="1" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><circle cx="12" cy="12" r="1" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><circle cx="17" cy="12" r="1" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/></symbol><symbol id="check" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M22 5 9 19l-7-7.051"/></symbol><symbol id="checkBadge" viewBox="0 0 24 24"><path fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4.111 15.268c-.263 1.681-.022 2.963.818 3.803.84.84 2.122 1.081 3.803.818C9.735 21.264 10.812 22 12 22c1.188 0 2.265-.736 3.268-2.111 1.681.263 2.963.022 3.803-.818.84-.84 1.081-2.122.818-3.803C21.264 14.265 22 13.188 22 12c0-1.188-.736-2.265-2.111-3.268.263-1.681.022-2.963-.818-3.803-.84-.84-2.122-1.081-3.803-.818C14.265 2.736 13.188 2 12 2c-1.188 0-2.265.736-3.268 2.111-1.681-.263-2.963-.022-3.803.818-.84.84-1.081 2.122-.818 3.803C2.736 9.735 2 10.812 2 12c0 1.188.736 2.265 2.111 3.268Z" clip-rule="evenodd"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m16 9-5.5 6L8 12"/></symbol><symbol id="checkCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m21 6-9 9-5-5"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M17.118 3.408a9.98 9.98 0 0 0-3.22-1.224C8.476 1.136 3.232 4.682 2.184 10.104c-1.047 5.42 2.498 10.665 7.92 11.713 5.421 1.047 10.666-2.498 11.713-7.92a10 10 0 0 0 .14-2.83"/></symbol><symbol id="checkDouble" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M18 6 7 16.5 2 11M22 7.5 12 17l-1-1"/></symbol><symbol id="clock" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12ZM12 12V6M12 12h4"/></symbol><symbol id="close" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m4 4 16 16M4 20 20 4"/></symbol><symbol id="closeCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4.929 19.071c3.905 3.905 10.237 3.905 14.142 0 3.905-3.905 3.905-10.237 0-14.142-3.905-3.905-10.237-3.905-14.142 0-3.905 3.905-3.905 10.237 0 14.142ZM9 9l6 6M9 15l6-6"/></symbol><symbol id="collapse" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m18 21-6-6-6 6M6 3l6 6 6-6"/></symbol><symbol id="config" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m15.535 5.256 2.567-1.295 1.937 1.937-1.295 2.567.523 1.26 2.733.914v2.722l-2.733.915-.523 1.26 1.295 2.566-1.937 1.937-2.567-1.295-1.26.523L13.362 22h-2.722l-.915-2.733-1.26-.523-2.566 1.295-1.937-1.937 1.295-2.567-.523-1.26L2 13.362v-2.722l2.733-.915.523-1.26-1.295-2.566L5.898 3.96l2.567 1.295 1.26-.523L10.638 2h2.722l.915 2.733 1.26.523Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"/></symbol><symbol id="delete" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M3 6h18M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6h14ZM10 11v6M14 11v6"/></symbol><symbol id="desktop" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8 22h8M10 17v5M14 17v5M2 3h20v14H2z"/></symbol><symbol id="deslike" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 10a8 8 0 1 1 16 0v4a8 8 0 1 1-16 0v-4Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M14.5 15.997c-1.263-1.326-3.737-1.33-5 .003M9 9.5v1M15 9.5v1"/></symbol><symbol id="download" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 17V4m0 13 7-6.456M12 17l-7-6.456M5 20h14"/></symbol><symbol id="duplicate" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 22V8h14v14H2Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8 4V2h14v14h-2"/></symbol><symbol id="edit" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 17 19 2l3 3L7 20l-5 2 2-5ZM16 6l2 2M5 17l2 2"/></symbol><symbol id="exam" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8 6h8v12a4 4 0 0 1-8 0V6ZM16 12h-4M17 6H7M9 6V2h6v4"/></symbol><symbol id="expand" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m18 15-6 6-6-6M6 9l6-6 6 6"/></symbol><symbol id="facebook" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9.268 22h4.36V11.913h3.047L17 8.536h-3.364V6.611c0-.795.174-1.11 1.006-1.11H17V2h-3.023c-3.243 0-4.71 1.318-4.71 3.844v2.692H7v3.419h2.268V22Z"/></symbol><symbol id="fileBmp" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 12V7l5-5h15v10"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 6v3H6M2 16h3M2 19h4M2 22h4M18 16h4M18 19h4M2 16v6M18 16v6M9 16v6M9 16l2.5 3.5L14 16M14 16v6M5 16v3M6 19v3M22 16v3"/></symbol><symbol id="fileJpg" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 12V7l5-5h15v10"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 6v3H6M6 16v6H2v-2.5M22 16h-4v6h4v-3h-1M10 16h4v3h-4M10 16v6"/></symbol><symbol id="filePdf" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 12V7l5-5h15v10"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 6v3H6M2 16h4v3H2M2 16v6M10 22v-6h3l1 6h-4ZM18 22v-6M22 16h-4M21 19h-3"/></symbol><symbol id="filePng" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 12V7l5-5h15v10"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 6v3H6M2 16h4v3H2M2 16v6M10 16v6M14 16v6M10 16l4 6M22 16h-4v6h4v-3h-1"/></symbol><symbol id="fileUpload" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M22 10V2H7L2 7v15h9.5"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 6v3H6M14 17l4-4m0 0v9m0-9 4 4"/></symbol><symbol id="fileXls" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 12V7l5-5h15v10"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 6v3H6M2 16l4 6M2 22l4-6M10 16v6h4M22 16h-4v3h4v3h-4"/></symbol><symbol id="filter" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12.017 13v9M11.967 2.16v2.777M11.996 8.974c1.104 0 2-.897 2-2.004a2.002 2.002 0 0 0-2-2.005c-1.104 0-2 .898-2 2.005 0 1.107.896 2.004 2 2.004ZM4.038 13v9M4.038 2v3M4 12.983c1.103 0 1.998-.898 1.998-2.005A2.002 2.002 0 0 0 4 8.974C2.895 8.974 2 9.871 2 10.978s.895 2.005 2 2.005ZM19.997 19v3M19.997 2v8M20 18.323c1.105 0 2-.897 2-2.004a2.002 2.002 0 0 0-2-2.004c-1.103 0-1.998.897-1.998 2.004s.895 2.004 1.999 2.004Z"/></symbol><symbol id="fullscreen" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8 2H2v6M16 22h6v-6M22 8V2h-6M2 16v6h6"/></symbol><symbol id="gallery" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 2h8v8H2zM2 14h8v8H2zM14 2h8v8h-8zM14 14h8v8h-8z"/></symbol><symbol id="geotag" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 2C8 2 5 5 5 9c0 5 4.5 8 7 13 2.5-5 7-8 7-13 0-4-3-7-7-7Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 9c0 1.654 1.345 3 3 3s2.987-1.346 3-3c0-1.654-1.345-3-3-3S9 7.346 9 9Z"/></symbol><symbol id="google" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M16.79 6.802c-.383.375-.989.372-1.437.079-.916-.6-1.986-.904-3.149-.904-2.658 0-4.907 1.76-5.71 4.123-.204.6-.32 1.241-.32 1.9 0 .66.116 1.3.32 1.9.803 2.364 3.052 4.123 5.71 4.123 1.373 0 2.542-.355 3.455-.955a4.66 4.66 0 0 0 1.662-1.874c.272-.565-.206-1.144-.832-1.144h-3.285a1 1 0 0 1-1-1v-1.868a1 1 0 0 1 1-1h7.778c.482 0 .9.344.953.823.043.398.065.805.065 1.222 0 3.046-1.113 5.61-3.043 7.35C17.27 21.104 14.96 22 12.204 22c-3.989 0-7.44-2.24-9.119-5.509a9.834 9.834 0 0 1 0-8.982C4.765 4.241 8.215 2 12.205 2c2.344 0 4.37.72 6.01 1.933.462.341.472 1.01.062 1.411l-1.488 1.458Z"/></symbol><symbol id="hate" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 10a8 8 0 1 1 16 0v4a8 8 0 1 1-16 0v-4Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 17c0-4 6-4.005 6 0ZM8.5 9.5l.5 1M15.5 9.5l-.5 1"/></symbol><symbol id="healthPlan" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M11 21H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v6M2 7h20M2 12h10"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M20 15v-2h-4v2h-2v4h2v2h4v-2h2v-4h-2Z"/></symbol><symbol id="height" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M5 20.5V2.127M8 5 4.995 2 2 5M8 19l-3.005 3L2 19M12 2h10M14 7h8M16 12h6M18 17h4M20 22h2"/></symbol><symbol id="height2" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12.17 11.5v1.608L16 14.5"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 22v-3.973c0-1.262.763-2.394 1.92-2.841l4.86-2.047V11.19l-.182-.13a3.49 3.49 0 0 1-1.513-2.893V5.47c0-1.917 1.517-3.47 3.39-3.47 1.873 0 3.39 1.553 3.39 3.47v2.698c0 1.528-.964 2.824-2.303 3.288M19 2h3v20h-3M20.5 7h1M20.5 12h1M20.5 17h1"/></symbol><symbol id="home" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m2 11 10-9s2.337 2.438 4 4M22 11.478 19.022 8.5"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4.037 9.5V22H9v-5.437C9 15.5 9.963 14 12 14s3 1.5 3 2.563V22h5V10M16 6V3h3v5.5"/></symbol><symbol id="horizontalList" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M22 2v20h-8V2zM10 2v20H2V2z"/></symbol><symbol id="imageUp" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M22 11V7a1 1 0 0 0-1-1l-3.465-.001a1 1 0 0 1-.832-.445l-1.406-2.108A1 1 0 0 0 14.465 3h-4.93a1 1 0 0 0-.832.445l-1.406 2.11a1 1 0 0 1-.832.444H3a1 1 0 0 0-1 1V20a1 1 0 0 0 1 1h10"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M15.465 11A4 4 0 1 0 10 16.465M16 17l3-3m0 0v7m0-7 3 3"/></symbol><symbol id="info2" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M14 21.5h-.5l-.5.5h-2l-.5-.5H10M9 18h6M9.5 20h5M14.5 17v-1c0-.905.315-1.735.94-2.375C16.385 12.66 17 11.47 17 10c0-2.76-2.24-5-5-5s-5 2.24-5 5c0 1.47.615 2.66 1.56 3.625.625.64.94 1.47.94 2.375v1M12 17v-5"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m11 11 1.037 1.037L13.075 11M8 2l.5.5M4 6l.5.5M20 6l-.5.5M16 2l-.5.5"/></symbol><symbol id="infoCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10ZM12 7v1M12 12v5"/></symbol><symbol id="instagram" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12.005 2c3.256 0 3.641.01 4.927.075 1.192.056 1.84.253 2.262.422.572.226.976.488 1.398.91.432.433.695.836.91 1.4.17.43.367 1.079.423 2.261.056 1.286.075 1.67.075 4.927 0 3.257-.01 3.642-.075 4.928-.056 1.192-.253 1.84-.422 2.261a3.919 3.919 0 0 1-.91 1.408 3.762 3.762 0 0 1-1.4.91c-.43.17-1.079.367-2.261.423-1.286.056-1.67.075-4.927.075-3.257 0-3.642-.01-4.928-.075-1.191-.056-1.84-.253-2.261-.422a3.919 3.919 0 0 1-1.408-.91 3.797 3.797 0 0 1-.91-1.409c-.17-.431-.367-1.079-.423-2.261C2.02 15.637 2 15.252 2 11.995c0-3.256.01-3.641.075-4.927.056-1.192.253-1.84.422-2.262.226-.572.488-.976.91-1.398a3.684 3.684 0 0 1 1.409-.91c.431-.17 1.079-.367 2.261-.423C8.354 2.02 8.74 2 12.005 2Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 16c-2.208 0-4-1.792-4-4s1.792-4 4-4 4 1.792 4 4-1.792 4-4 4ZM19 6c0 .551-.449 1-1 1-.551 0-1-.449-1-1 0-.551.449-1 1-1 .551 0 1 .449 1 1Z"/></symbol><symbol id="key" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M15.83 2.003a5.494 5.494 0 0 0-1.4.212c-2.883.567-5.041 3.07-5.041 6.092 0 .755.13 1.475.38 2.136C7.905 12.285 2.13 17.94 2.13 17.94a.428.428 0 0 0-.13.307v3.317c0 .236.202.437.439.437h3.475c.249 0 .439-.2.439-.437V19.71h1.814a.487.487 0 0 0 .487-.484V17.42h1.28c.285 0 .51-.225.51-.508v-1.31l.926-.944.32.342a.431.431 0 0 0 .605.012s.522-.532.984-.968c.724.295 1.53.46 2.36.46a6.245 6.245 0 0 0 6.144-5.005 6.37 6.37 0 0 0 .213-1.346c.119-3.435-2.704-6.256-6.167-6.15Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M16.5 6c.832 0 1.5.668 1.5 1.5S17.322 9 16.5 9c-.832 0-1.5-.668-1.5-1.5S15.668 6 16.5 6Z"/></symbol><symbol id="language" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12.002 2c-1.046 0-2.054.16-3.002.458A9.997 9.997 0 0 0 5 4.86a9.972 9.972 0 0 0-3 7.143C2 17.526 6.478 22 12.002 22 17.526 22 22 17.522 22 12.002 22 6.478 17.522 2 12.002 2ZM12.006 22V2M22 12.013H2"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M19.518 18.327c-2.949-1.767-8.408-3.727-15.037.007M19.601 5.662c-2.949 1.789-8.495 3.835-15.238-.028"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M11 2s-9 8.604 0 19.928M13 2s9 8.604 0 19.928"/></symbol><symbol id="language2" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8.276 2.78 8.5 6.5 5.5 9l.295 1.541L9 10l3 2.5-3 6-2.002-4L5 13.5l.795-2.789-2.87-2.896a9.982 9.982 0 0 1 10.306-5.74"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M21.656 9.548 19 14.5l-1.157 1.554L17 12h-1s-2.5-1.5-.5-3l3-.5 1-2h-4l-1-.5 1.635-3.114A10.006 10.006 0 0 1 22 11.998C22 17.522 17.524 22 11.996 22 6.476 22 2 17.522 2 11.998c0-.379.021-.752.062-1.12"/></symbol><symbol id="languageEN" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 2h20v20H2z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M10 9H7v3m3 0H7m0 0v3h3M13 15V9l4 6V9"/></symbol><symbol id="languagePT" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 2h20v20H2z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M7 15v-2m0 0V9h2a2 2 0 1 1 0 4H7ZM15 15V9h-2 4"/></symbol><symbol id="lattes" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M6.117 20.275c-2.162-4.396-3.448-7.05-3.448-7.117 0-.107.132-.092 1.431.16 2.284.446 3.504.571 5.538.572 2.692 0 4.883-.422 6.586-1.273.9-.45 1.443-.848 1.886-1.388.547-.666.722-1.124.729-1.896.005-.734-.094-1.12-.522-2.019-.17-.354-.318-.762-.332-.905-.023-.23-.003-.263.167-.282.374-.044 2.216 1.731 2.895 2.789 1.17 1.823 1.264 3.796.274 5.703-.608 1.172-1.28 1.983-2.405 2.904-1.87 1.531-4.045 2.597-7.047 3.456C10.256 21.44 7.649 22 7.112 22c-.114 0-.328-.37-.994-1.726h-.001Zm.602-7.09c-2.1-.27-3.862-.504-3.917-.521-.093-.03-.427-1.135-.615-2.035-.048-.227-.117-.83-.155-1.34-.17-2.277.33-3.85 1.667-5.266 2.264-2.394 7.112-2.685 12.582-.756.96.34 1.341.575 1.165.721-.13.109-1.015.107-2.543-.004-2.388-.174-4.206.155-5.144.934-1.426 1.185-1.209 3.783.632 7.532.199.405.4.803.446.883.106.186.029.36-.157.35a371.99 371.99 0 0 1-3.961-.497Zm7.044-2.039c-1.676-.299-3.183-1.33-3.669-2.51-.233-.567-.222-1.306.027-1.749.225-.4.807-.863 1.329-1.057.867-.323 2.386-.194 3.494.297 1.05.465 1.982 1.284 2.329 2.045.444.978.074 2.068-.878 2.588-.631.345-1.857.525-2.632.386Z"/></symbol><symbol id="like" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 10a8 8 0 1 1 16 0v4a8 8 0 1 1-16 0v-4Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M14.5 16c-1.263 1.326-3.737 1.332-5 0M9 9.5v1M15 9.5v1"/></symbol><symbol id="likeHand" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M6.07 20.54h12.54c1.08 0 1.65-.75 1.81-1.41 0 0 1.42-7.21 1.5-7.68.08-.47.16-1.11-.12-1.58-.41-.7-1.15-.66-1.34-.66h-4.73c1.01-2.02.64-5.09.64-5.09-.15-1.6-1.57-1.46-1.57-1.46-1.29 0-1.38 1.17-1.38 1.17 0 4.59-3.95 6.07-5.02 6.39-1.07.31-2.36.26-2.36.26"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 9.64h4.07v11.71H2V9.64Z"/></symbol><symbol id="link" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m11 13.883-.917-.917a3.402 3.402 0 0 1 0-4.782l5.197-5.201a3.396 3.396 0 0 1 4.78 0l.958.959a3.402 3.402 0 0 1 0 4.782L17.742 12"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m13 10.144.903.903a3.402 3.402 0 0 1 0 4.783L8.72 21.017a3.396 3.396 0 0 1-4.78 0l-.958-.959a3.402 3.402 0 0 1 0-4.782L6.258 12"/></symbol><symbol id="linkExternal" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8 2H2v20h20v-6M15 2h7v7m-.164-6.86L12 12"/></symbol><symbol id="linkedin" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M6.52 8.666H2.387v13.325H6.52V8.666ZM4.441 6.926a2.452 2.452 0 0 0 2.441-2.463A2.452 2.452 0 0 0 4.442 2 2.452 2.452 0 0 0 2 4.463a2.441 2.441 0 0 0 2.441 2.463ZM13.128 15.005c0-1.874.867-2.992 2.517-2.992 1.515 0 2.247 1.067 2.247 2.992V22H22v-8.44c0-3.573-2.029-5.297-4.857-5.297-2.828 0-4.024 2.203-4.024 2.203v-1.8H9.155v13.326h3.965c.008.008.008-4.935.008-6.987Z"/></symbol><symbol id="list" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM4 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM4 22a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM10.019 4H22M10.019 12H22M10.019 20H22"/></symbol><symbol id="login" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M13 4h3v2m-3 14h3v-2M2 20V4l8-2v20l-8-2ZM13 12l3-3m-3 3 3 3m-3-3h9"/></symbol><symbol id="logout" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M13 4h3v3m-3 13h3v-3m6-5h-9m9 0-3 3m3-3-3-3M2 20V4l8-2v20l-8-2Z"/></symbol><symbol id="love" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 10a8 8 0 1 1 16 0v4a8 8 0 1 1-16 0v-4Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M16 15c-.5 4-7.5 4-8 0M9 9.5v1M15 9.5v1"/></symbol><symbol id="mail" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M22 20.01H2V4h20v16.01Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m3 5 7 7.5c.5.5 1 1 2 1s1.5-.5 2-1L21 5M3 19l6-6M21 19l-6-6"/></symbol><symbol id="mail2" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 20V4h20v15.984L2 20Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M15 7h4v4h-4zM5 14h7M5 17h7"/></symbol><symbol id="medical" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M21 16.5c0 1.386-1.114 2.5-2.5 2.5a2.494 2.494 0 0 1-2.5-2.5c0-1.386 1.115-2.5 2.5-2.5 1.386 0 2.5 1.114 2.5 2.5ZM14 2v1.875M9 3H7.553C6.68 3 6 3.711 6 4.552V8c0 1.067.389 2.082 1.262 2.664C8.135 11.246 12 13 12 13M15 3h1.448C17.321 3 18 3.711 18 4.552V8c0 1.067-.387 2.082-1.26 2.664C15.865 11.246 12 13 12 13M10 2v1.875M14 21c3 .5 3.5-2 3.5-2M12 13.456V16c0 4-2.817 6-5 6-2.742 0-4-2-4-3.5C3 16 6 15 9 17"/></symbol><symbol id="menuHamburguer" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M3 12h18M3 20h18M3 4h18"/></symbol><symbol id="menuKebab" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M10 4a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM10 20a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z"/></symbol><symbol id="menuMeatballs" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M20 10a2 2 0 1 1 0 4 2 2 0 0 1 0-4ZM12 10a2 2 0 1 1 0 4 2 2 0 0 1 0-4ZM4 10a2 2 0 1 1 0 4 2 2 0 0 1 0-4Z"/></symbol><symbol id="mic" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8 7a4 4 0 1 1 8 0v5a4 4 0 0 1-8 0V7Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M19 11v1a7 7 0 1 1-14 0v-1M12 19v2"/></symbol><symbol id="micOff" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M16 12a4.002 4.002 0 0 1-3 3.874M16 7.5V7a4 4 0 0 0-8 0v5c0 .986.357 1.89.949 2.587"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M19 11v1a7 7 0 0 1-9 6.71M5 11v1c0 1.838.708 3.51 1.867 4.76M12 19v2M21 3 3 21"/></symbol><symbol id="minus" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 12h16"/></symbol><symbol id="minusCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10ZM8 11.988h8"/></symbol><symbol id="minusSquare" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 2h20v20H2zM8 12h8"/></symbol><symbol id="mobile" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M6 2h12v20H6zM11 18h2"/></symbol><symbol id="neutral" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 10a8 8 0 1 1 16 0v4a8 8 0 1 1-16 0v-4ZM15 16H9M9 9.5v1M15 9.5v1"/></symbol><symbol id="news" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M18.016 14h-2.002v4.04h2.002V14ZM9.007 14h3.003M9.007 18h3.003M9.007 10h9.009M9.007 6h9.009"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M3.5 22h16.727C21.22 22 22 21.213 22 20.21V2H5v18.5c0 1-.578 1.5-1.5 1.5Zm0 0c-.922 0-1.5-.5-1.5-1.5V13"/></symbol><symbol id="notification" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M5 12a7 7 0 0 1 14 0v7H5v-7ZM3 19h18"/><circle cx="12" cy="3" r="1" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M14 20a2 2 0 1 1-4 0"/></symbol><symbol id="order" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M7 18V3M17 6v15M10 6 6.995 3 4 6M14 18l3.005 3L20 18"/></symbol><symbol id="partner" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M14 5V2h-4v3H7v3.667h3V12h4V9h3V5h-3ZM12.8 17.724l5.67-2.527a1.456 1.456 0 0 1 2.002.547c.4.712.164 1.624-.539 2.038l-1.977.945-5.686 2.718c-.294.174-.63.256-.973.256H6.493c-.35 0-.702.1-1.004.282l.01.017"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M7.989 18.32h3.488c.825 0 1.495-.679 1.495-1.516 0-.836-.67-1.516-1.495-1.516H6.804a3.29 3.29 0 0 0-1.479.348L2 17.31"/></symbol><symbol id="phone" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2.129 4.837c-.17.284-.146.674-.073 1.08a19.93 19.93 0 0 0 5.5 10.562c2.786 2.784 6.563 4.87 10.536 5.471.406.065.796.09 1.08-.073.098-.057.228-.162.26-.325l1.555-3.828c.049-.251-.04-.511-.244-.722-.097-.098-2.315-.901-3.363-1.405-.43-.21-.934-.089-1.145.26l-.407.698a1.043 1.043 0 0 1-.633.48c-1.024.259-4.192-2.655-4.883-3.345-.714-.715-3.728-3.962-3.468-4.985a1.02 1.02 0 0 1 .479-.633c.617-.357.447-.26.699-.406.357-.211.479-.715.268-1.145-.455-.933-.723-1.81-1.024-2.809-.13-.438-.552-.787-.975-.698 0 0-1.124.42-3.845 1.563-.155.033-.26.163-.317.26ZM14 5c2.764 0 5 2.236 5 5M15 2a7 7 0 0 1 7 7"/></symbol><symbol id="play" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M10 16V8l6 4-6 4Z"/></symbol><symbol id="plus" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M4 12h16M12 4v16"/></symbol><symbol id="plusCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10ZM8 12h8M12 16V8"/></symbol><symbol id="plusSquare" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 2h20v20H2zM8 12h8M12 8v8"/></symbol><symbol id="print" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M5.828 17H2V6h20v11h-3.816M6 5V2h12v3"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M18 15H6v7h12v-7ZM9 18h6M18 9h1"/></symbol><symbol id="profile" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M19 19v-1.034c0-.958 0-1.966-1.5-2.466l-4-1.5v-1c1-.5 1.5-1.5 1.5-2.5V8c0-2-1.421-3-3-3S9 6 9 8v2.5c0 1 .5 2 1.5 2.5v1l-4 1.5C5 16 5 17.073 5 18.02V19"/></symbol><symbol id="profile2" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M13.5 11.5v1.608L19 15c1.281.451 2 1.742 2 3v4"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M3 22v-3.973C3 16.5 3.5 15.5 5 15s5-2 5-2v-1.5l.01-.44c-.972-.624-1.51-1.686-1.51-2.892V5.47C8.5 3.553 10.015 2 12.005 2S15.5 3.553 15.5 5.47v2.698c0 1.528-1 2.832-2.5 3.332"/></symbol><symbol id="pulldownG" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m20 8-8 8-8-8"/></symbol><symbol id="pulldownP" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m16 10-4 4-4-4"/></symbol><symbol id="pullupG" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m4 15 8-8 8 8"/></symbol><symbol id="pullupP" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m8 13 4-4 4 4"/></symbol><symbol id="questionCircle" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 8.943C9 7.318 10.343 6 12 6s3 1.318 3 2.943C15 10.57 13.657 12 12 12v2m0 4v-1"/></symbol><symbol id="questionSquare" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 2h20v20H2z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M9 8.943C9 7.318 10.343 6 12 6s3 1.318 3 2.943C15 10.57 13.657 12 12 12v2m0 4v-1"/></symbol><symbol id="range" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2.019 11.995H22M7 6h15M2 6h1M17 17.989H2m20 0h-1.017"/></symbol><symbol id="reload" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2a9.988 9.988 0 0 1 8.196 4.27"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M20.333 2v4.444H15.89"/></symbol><symbol id="schedule" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 7.994h20M8 2v1.998M16 2v1.998M5 3.012H2v18.967h20V2.999h-3M11 2.999h2M12 11.989v5.993M15 14.986H9"/></symbol><symbol id="search" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m17 15 5 5-2 2-5-5"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z"/></symbol><symbol id="secure" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 22a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8 11V6.05C8 3.815 9.792 2 12 2c1.104 0 2.104.454 2.832 1.183A4.094 4.094 0 0 1 16 6.05V11M12 17v2M12 17a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"/></symbol><symbol id="share" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M19 22a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM19 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM5 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM8 11l8-4.5M8 13l8 4.5"/></symbol><symbol id="share2" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8 2H2v20h20v-6"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M20.5 6h-9a5.5 5.5 0 1 0 0 11H14"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m18 2 4 4-4 4"/></symbol><symbol id="sound" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 9v6h3.983L11 21V3L5.983 9H2ZM15 9c1.5.5 2 2 2 3s-.5 2.5-2 3"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M15 4c4 .5 7 4 7 8s-3 7.5-7 8"/></symbol><symbol id="soundOff" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8.983 15H5V9h3.983L14 3v5.5m0 5.5v7l-3-4M19 3 4 21"/></symbol><symbol id="subItem" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m15 19 5-5-5-5"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M19.53 14H5.6c-.8 0-1.6-.8-1.6-1.6V5"/></symbol><symbol id="target" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 19a7 7 0 1 0 0-14 7 7 0 0 0 0 14Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM20 12h2M2 12h2M12 4V2M12 22v-2"/></symbol><symbol id="team" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M16.545 20v-1.364A3.636 3.636 0 0 0 12.91 15H5.636A3.636 3.636 0 0 0 2 18.636V20M9.5 11a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7ZM22 20v-1.455a3.636 3.636 0 0 0-2.727-3.518M15.636 4a3.636 3.636 0 0 1 0 7.046"/></symbol><symbol id="twitter" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 18.184A11.738 11.738 0 0 0 8.29 20c7.618 0 11.914-6.336 11.661-12.018A8.354 8.354 0 0 0 22 5.894a8.49 8.49 0 0 1-2.358.639 4.076 4.076 0 0 0 1.804-2.237c-.79.46-1.67.803-2.603.982A4.12 4.12 0 0 0 15.853 4c-2.65 0-4.597 2.432-3.995 4.964A11.717 11.717 0 0 1 3.4 4.74a4.011 4.011 0 0 0 1.266 5.393 4.156 4.156 0 0 1-1.859-.506c-.047 1.87 1.321 3.624 3.291 4.013a4.21 4.21 0 0 1-1.851.07 4.092 4.092 0 0 0 3.829 2.806A8.353 8.353 0 0 1 2 18.184Z"/></symbol><symbol id="unLink" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m11.518 6.747 3.747-3.752a3.397 3.397 0 0 1 4.805 0l.936.938a3.408 3.408 0 0 1 0 4.81l-3.787 3.793M12.428 17.333l-3.693 3.672a3.397 3.397 0 0 1-4.805 0l-.936-.938a3.408 3.408 0 0 1 0-4.811L6.7 11.57M3.5 8h2M8 3.5v2M3.5 3.5 5 5M20.5 16h-2M16 20.5v-2M20.5 20.5 19 19"/></symbol><symbol id="unSecure" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 22a6 6 0 1 0 0-12 6 6 0 0 0 0 12ZM8 11V6.05C8 3.815 9.792 2 12 2c1.104 0 2.104.454 2.832 1.183A4.094 4.094 0 0 1 16 6.05M12 17v2"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 17a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"/></symbol><symbol id="unlikeHand" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M6.07 3.467h12.54c1.08 0 1.65.75 1.81 1.41 0 0 1.42 7.21 1.5 7.68.08.47.16 1.11-.12 1.58-.41.7-1.15.66-1.34.66h-4.73c1.01 2.02.64 5.09.64 5.09-.15 1.6-1.57 1.46-1.57 1.46-1.29 0-1.38-1.17-1.38-1.17 0-4.59-3.95-6.07-5.02-6.39-1.07-.31-2.36-.26-2.36-.26"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 14.367h4.07V2.657H2v11.71Z"/></symbol><symbol id="upload" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 7v13m0-13 7 6.456M12 7l-7 6.456M5 4h14"/></symbol><symbol id="verticalList" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 2h20v8H2zM2 14h20v8H2z"/></symbol><symbol id="viewFalse" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M6.114 16C4.043 14.6 2.557 12.835 2 12c1-1.5 5-6 10-6 1.05 0 2.056.199 3 .526M18.583 8.5C20.289 9.797 21.508 11.262 22 12c-1 1.5-5 6-10 6a8.94 8.94 0 0 1-2.5-.367"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M15.874 11A4 4 0 0 1 11 15.874M13.938 8.5A4 4 0 0 0 8.535 14M4 19 19 4"/></symbol><symbol id="viewTrue" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M22 12c-1 1.5-5 6-10 6s-9-4.5-10-6c1-1.5 5-6 10-6s9 4.5 10 6Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M12 16a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"/></symbol><symbol id="weight" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m17 12 2-5c-1.5-1-4-2-7-2S6.5 6 5 7l2 5c1.5-.5 2.5-1 5-1s3.5.5 5 1ZM12 10.5l-2-2"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2 20V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2Z"/></symbol><symbol id="whatsapp" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M7.28 20.813a1.059 1.059 0 0 0-.791-.094l-2.76.787a1 1 0 0 1-1.235-1.236l.787-2.759a1.058 1.058 0 0 0-.094-.791A9.935 9.935 0 0 1 2 12C2 6.478 6.478 2 12 2s10 4.478 10 10-4.478 10-10 10a9.933 9.933 0 0 1-4.72-1.187Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M10.19 9.433c-.024.032-.048.055-.072.087-.232.266-.12.659.04 1.09.497 1.358 1.874 2.707 3.108 3.35.408.212.849.244 1.113.008.032-.023.056-.047.088-.078.265-.235.665-.416 1.034-.267.224.094.424.189.752.314.473.188.81.667.737 1.114-.088.518-.4 1.06-.56 1.342-.185.33-.994.734-1.554.569-4.502-1.326-6.568-4.017-7.81-7.807-.176-.542 0-1.27.505-1.566.28-.164.745-.565 1.346-.588.472-.016.897.18 1.177.698.112.212.184.455.288.675.169.353.04.792-.192 1.06Z"/></symbol><symbol id="wifi" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M14 19c0 1.107-.893 2-2 2s-2-.893-2-2c0-1.106.893-1.999 2-1.999 1.107-.036 2 .893 2 2ZM8 14.875c2-2.5 6-2.5 8 0M5 11c3.5-4 10.5-4 14 0M3 6.75c5-5 13-5 18 0"/></symbol><symbol id="youtube" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M21.584 7.187a2.51 2.51 0 0 0-1.77-1.768C18.254 5 12 5 12 5s-6.254 0-7.813.419a2.51 2.51 0 0 0-1.77 1.768C2 8.746 2 11.037 2 12c0 .963 0 3.254.416 4.813a2.51 2.51 0 0 0 1.77 1.768C5.747 19 12 19 12 19s6.254 0 7.814-.419a2.51 2.51 0 0 0 1.77-1.768C22 15.254 22 12.963 22 12c0-.963 0-3.26-.416-4.813Z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M11.493 13.871C10.836 14.23 10 13.8 10 13.104v-2.208c0-.695.836-1.125 1.493-.767l2.028 1.104c.639.347.639 1.187 0 1.534l-2.028 1.104Z"/></symbol><symbol id="zoomIn" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m17 15 5 5-2 2-5-5"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16ZM10 7v6M13 10H7"/></symbol><symbol id="zoomOut" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="m17 15 5 5-2 2-5-5"/><path stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16ZM13 10H7"/></symbol></defs></svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9.26757 22H13.6289V11.9128H16.675L17 8.53645H13.6364C13.6364 8.53645 13.6364 7.27381 13.6364 6.61109C13.6364 5.81584 13.8103 5.50192 14.6417 5.50192C15.3144 5.50192 17 5.50192 17 5.50192V2C17 2 14.5132 2 13.9766 2C10.7339 2 9.26757 3.31845 9.26757 5.84374C9.26757 8.04116 9.26757 8.53645 9.26757 8.53645H7V11.9547H9.26757V22Z" stroke="#4F4F4F" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.7892 6.802C16.4066 7.17697 15.8011 7.174 15.3529 6.88056C14.4374 6.2812 13.3668 5.97727 12.2041 5.97727C9.54639 5.97727 7.29686 7.73642 6.49443 10.1C6.29036 10.7 6.1744 11.341 6.1744 12.0001C6.1744 12.6591 6.29033 13.3 6.49439 13.8999C7.2968 16.2636 9.54639 18.0227 12.2041 18.0227C13.577 18.0227 14.7458 17.6681 15.6595 17.0681C16.3919 16.5875 16.9582 15.9461 17.3208 15.1936C17.5928 14.6289 17.1155 14.0499 16.4887 14.0499H13.2041C12.6518 14.0499 12.2041 13.6022 12.2041 13.0499V11.1817C12.2041 10.6294 12.6518 10.1817 13.2041 10.1817H20.9819C21.4643 10.1817 21.8828 10.5258 21.9346 11.0054C21.9776 11.4032 22 11.8105 22 12.2271C22 15.2726 20.8868 17.8363 18.9573 19.5772C17.269 21.1044 14.9592 22 12.2041 22C8.21526 22 4.76442 19.7591 3.08536 16.491C2.39428 15.141 2 13.6137 2 12.0001C2 10.3864 2.39427 8.8591 3.08536 7.50911C4.7644 4.24094 8.21522 2 12.2041 2C14.5494 2 16.5743 2.72049 18.2156 3.93319C18.6773 4.27434 18.6866 4.94261 18.2766 5.34442L16.7892 6.802Z" stroke="#4F4F4F" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.0047 2C15.2614 2 15.6462 2.00939 16.932 2.07508C18.1239 2.13139 18.7715 2.32848 19.1938 2.49742C19.7663 2.72267 20.1699 2.98545 20.5922 3.40779C21.0239 3.83951 21.2867 4.24308 21.5026 4.80619C21.6715 5.23792 21.8686 5.8855 21.9249 7.06804C21.9812 8.35382 22 8.73862 22 11.9953C22 15.252 21.9906 15.6368 21.9249 16.9226C21.8686 18.1145 21.6715 18.7621 21.5026 19.1844C21.2773 19.7569 21.0145 20.1605 20.5922 20.5922C20.1699 21.0145 19.7569 21.2867 19.1938 21.5026C18.7621 21.6715 18.1145 21.8686 16.932 21.9249C15.6462 21.9812 15.2614 22 12.0047 22C8.74801 22 8.36321 21.9906 7.07743 21.9249C5.8855 21.8686 5.23792 21.6715 4.81558 21.5026C4.24308 21.2773 3.83951 21.0145 3.40779 20.5922C2.98545 20.1605 2.71328 19.7569 2.49742 19.1844C2.32848 18.7527 2.13139 18.1051 2.07508 16.9226C2.01877 15.6368 2 15.252 2 11.9953C2 8.73862 2.00938 8.35382 2.07508 7.06804C2.13139 5.87611 2.32848 5.22853 2.49742 4.80619C2.72266 4.23369 2.98545 3.83013 3.40779 3.40779C3.83951 2.97607 4.24308 2.71328 4.81558 2.49742C5.2473 2.32848 5.89489 2.13139 7.07743 2.07508C8.35383 2.01877 8.73862 2 12.0047 2Z" stroke="#4F4F4F" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M12 16C9.79215 16 8 14.2079 8 12C8 9.79215 9.79215 8 12 8C14.2079 8 16 9.79215 16 12C16 14.2079 14.2079 16 12 16Z" stroke="#4F4F4F" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M19 6C19 6.55128 18.5513 7 18 7C17.4487 7 17 6.55128 17 6C17 5.44872 17.4487 5 18 5C18.5513 5 19 5.44872 19 6Z" stroke="#4F4F4F" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.1167 20.2747C3.95523 15.8789 2.66926 13.2242 2.66926 13.1583C2.66926 13.0508 2.80133 13.0657 4.09996 13.3184C6.38401 13.7635 7.60434 13.8891 9.63848 13.8899C12.3298 13.8907 14.5214 13.4676 16.2241 12.6175C17.1249 12.1677 17.6667 11.7689 18.1104 11.2289C18.6569 10.5632 18.8324 10.1048 18.8388 9.33323C18.8443 8.59929 18.7447 8.21231 18.3168 7.31433C18.1475 6.95953 17.9989 6.55214 17.9846 6.40928C17.9625 6.17929 17.9815 6.14632 18.1523 6.12669C18.5256 6.08274 20.3683 7.8583 21.0469 8.91563C22.2166 10.7391 22.3115 12.7117 21.3213 14.6191C20.7132 15.791 20.0409 16.6019 18.9155 17.5234C17.0451 19.0541 14.8709 20.12 11.8688 20.9788C10.2562 21.4403 7.64863 22 7.11162 22C6.99774 22 6.7842 21.6295 6.11828 20.2739L6.1167 20.2747ZM6.71856 13.1858C4.61877 12.9157 2.8567 12.681 2.80213 12.6638C2.7088 12.634 2.37505 11.5287 2.18682 10.6292C2.13937 10.4015 2.06977 9.7987 2.03181 9.28848C1.86256 7.01212 2.36161 5.43829 3.69898 4.02302C5.96327 1.62892 10.8114 1.3377 16.2811 3.26711C17.2412 3.60621 17.6224 3.8417 17.446 3.98849C17.3155 4.09681 16.4313 4.09524 14.9034 3.98378C12.5149 3.80952 10.6967 4.1392 9.75948 4.91787C8.33274 6.10315 8.55023 8.70134 10.3906 12.4495C10.5899 12.8553 10.7908 13.2525 10.8367 13.3333C10.9434 13.5194 10.8659 13.6921 10.6801 13.6834C10.601 13.6795 8.81834 13.4558 6.71856 13.1858ZM13.7629 11.1465C12.087 10.8474 10.5804 9.81597 10.094 8.63619C9.86072 8.06945 9.87179 7.33003 10.1209 6.88731C10.3463 6.48699 10.9284 6.02387 11.4496 5.82998C12.3172 5.50737 13.8365 5.6361 14.9437 6.12669C15.9948 6.59217 16.9264 7.41088 17.2728 8.17228C17.7173 9.14955 17.3472 10.2398 16.395 10.7603C15.7638 11.1049 14.538 11.2846 13.7629 11.1465Z" stroke="#4F4F4F" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.07001 20.5401C6.07001 20.5401 17.54 20.5401 18.61 20.5401C19.69 20.5401 20.26 19.7901 20.42 19.1301C20.42 19.1301 21.84 11.9201 21.92 11.4501C22 10.9801 22.08 10.3401 21.8 9.87009C21.39 9.17009 20.65 9.21009 20.46 9.21009C20.27 9.21009 15.73 9.21009 15.73 9.21009C16.74 7.19009 16.37 4.12009 16.37 4.12009C16.22 2.52009 14.8 2.66009 14.8 2.66009C13.51 2.66009 13.42 3.83009 13.42 3.83009C13.42 8.42009 9.47001 9.90009 8.40001 10.2201C7.33001 10.5301 6.04001 10.4801 6.04001 10.4801" stroke="#4F4F4F" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M2 9.64014H6.07V21.3501H2V15.9101V9.64014Z" stroke="#4F4F4F" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.52026 8.6665H2.38727V21.9915H6.52026V8.6665Z" stroke="#4F4F4F" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M4.44113 6.92645C5.78792 6.92645 6.88219 5.82515 6.88219 4.46323C6.88219 3.10131 5.78792 2 4.44113 2C3.09433 2 2.00005 3.10131 2.00005 4.46323C1.99163 5.82515 3.08591 6.92645 4.44113 6.92645Z" stroke="#4F4F4F" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M13.128 15.0055C13.128 13.1308 13.995 12.0127 15.6448 12.0127C17.1599 12.0127 17.8923 13.0803 17.8923 15.0055C17.8923 16.9223 17.8923 22.0001 17.8923 22.0001H22C22 22.0001 22 17.1325 22 13.5595C22 9.9866 19.9714 8.26318 17.1431 8.26318C14.3148 8.26318 13.1195 10.4658 13.1195 10.4658V8.66671H9.15491V21.9917H13.1195C13.128 22.0001 13.128 17.0568 13.128 15.0055Z" stroke="#4F4F4F" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2 18.1841C3.81171 19.3298 5.97152 20 8.28956 20C15.9082 20 20.2041 13.6639 19.951 7.98246C20.75 7.41354 21.4462 6.70434 22 5.89381C21.2642 6.21335 20.4731 6.43156 19.6424 6.53288C20.4889 6.0341 21.1377 5.23916 21.4462 4.29615C20.6551 4.75597 19.7769 5.09888 18.8434 5.27813C18.0918 4.49099 17.0316 4 15.8529 4C13.2025 4 11.2563 6.43156 11.8576 8.96444C8.44779 8.79299 5.42564 7.18753 3.40032 4.74038C2.32437 6.55626 2.84652 8.93327 4.66614 10.1335C3.99367 10.1101 3.36076 9.93083 2.80697 9.62689C2.7595 11.4973 4.12816 13.2509 6.0981 13.6405C5.52057 13.7964 4.88766 13.8276 4.24684 13.7107C4.76899 15.3161 6.28006 16.4851 8.07595 16.5163C6.35127 17.8412 4.17563 18.4413 2 18.1841Z" stroke="#4F4F4F" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.06998 3.46699C6.06998 3.46699 17.54 3.46699 18.61 3.46699C19.69 3.46699 20.26 4.21699 20.42 4.87699C20.42 4.87699 21.84 12.087 21.92 12.557C22 13.027 22.08 13.667 21.8 14.137C21.39 14.837 20.65 14.797 20.46 14.797C20.27 14.797 15.73 14.797 15.73 14.797C16.74 16.817 16.37 19.887 16.37 19.887C16.22 21.487 14.8 21.347 14.8 21.347C13.51 21.347 13.42 20.177 13.42 20.177C13.42 15.587 9.46998 14.107 8.39998 13.787C7.32998 13.477 6.03998 13.527 6.03998 13.527" stroke="#4F4F4F" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M2 14.3669H6.07V2.65694H2V8.09694V14.3669Z" stroke="#4F4F4F" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7.28023 20.8132C7.03742 20.6824 6.75396 20.6429 6.48875 20.7186L3.72991 21.5062C2.97571 21.7215 2.27853 21.0243 2.49382 20.2701L3.28136 17.5112C3.35707 17.246 3.31759 16.9626 3.18678 16.7198C2.43135 15.3175 2 13.7063 2 12C2 6.47826 6.47826 2 12 2C17.5217 2 22 6.47826 22 12C22 17.5217 17.5217 22 12 22C10.2937 22 8.68247 21.5687 7.28023 20.8132Z" stroke="#4F4F4F" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M10.1902 9.43327C10.1661 9.46465 10.1421 9.48819 10.1181 9.51958C9.88579 9.78636 9.99793 10.1787 10.1581 10.6102C10.6547 11.9677 12.0324 13.3173 13.2658 13.9607C13.6743 14.1725 14.1148 14.2039 14.3791 13.9685C14.4112 13.945 14.4352 13.9214 14.4673 13.8901C14.7316 13.6547 15.132 13.4742 15.5005 13.6233C15.7248 13.7174 15.925 13.8116 16.2534 13.9371C16.7259 14.1254 17.0623 14.6041 16.9903 15.0513C16.9022 15.5692 16.5898 16.1106 16.4296 16.3931C16.2454 16.7226 15.4364 17.1267 14.8758 16.962C10.3744 15.6359 8.30794 12.9446 7.06646 9.15474C6.89025 8.61333 7.06645 7.88593 7.57103 7.58935C7.85137 7.42457 8.31592 7.02441 8.91664 7.00087C9.3892 6.98517 9.81371 7.18133 10.094 7.6992C10.2062 7.91105 10.2783 8.1543 10.3824 8.374C10.5506 8.72709 10.4224 9.16649 10.1902 9.43327Z" stroke="#4F4F4F" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M21.5838 7.18685C21.3519 6.32885 20.6776 5.64873 19.8135 5.41853C18.2539 5 12 5 12 5C12 5 5.74605 5 4.18652 5.41853C3.32772 5.64873 2.64805 6.32362 2.41623 7.18685C2 8.74589 2 11.0375 2 12C2 12.9625 2 15.2541 2.41623 16.8132C2.64805 17.6711 3.32245 18.3513 4.18652 18.5815C5.74605 19 12 19 12 19C12 19 18.2539 19 19.8135 18.5815C20.6723 18.3513 21.3519 17.6764 21.5838 16.8132C22 15.2541 22 12.9625 22 12C22 11.0375 22 8.74066 21.5838 7.18685Z" stroke="#4F4F4F" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M11.4935 13.8711C10.8362 14.2289 10 13.7994 10 13.1039V10.8961C10 10.2006 10.8362 9.77108 11.4935 10.1289L13.5212 11.2328C14.1596 11.5803 14.1596 12.4197 13.5212 12.7672L11.4935 13.8711Z" stroke="#4F4F4F" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -2,6 +2,7 @@
2
2
  "entries": [
3
3
  "./components/cura-icon/cura-icon.js",
4
4
  "./components/cura-icons-view/cura-icons-view.js",
5
+ "./components/cura-page-template/cura-page-template.js",
5
6
  "./components/text/cura-display/cura-display.js",
6
7
  "./components/text/cura-heading/cura-heading.js",
7
8
  "./components/text/cura-paragraph/cura-paragraph.js"
@@ -1,21 +1,7 @@
1
- /* SASS Variables Map */
2
- /* Private */
3
- /*
4
- * Family
5
- * $scope: body (default) | title.
6
- */
7
- /*
8
- * Size
9
- * $scope: base (default) | title.
10
- * $level (for titles): 1 (default) | 2 | 3 | 4 | 5 | 6
11
- */
12
- /* Private */
13
- /* Colors */
14
- /* Lists */
15
1
  :host {
16
2
  display: block;
17
3
  padding: 24px;
18
- font-family: var(--cura-font-family-body);
4
+ font-family: "Roboto", Arial, Helvetica, sans-serif;
19
5
  }
20
6
 
21
7
  .iconDetail {
@@ -0,0 +1,123 @@
1
+ /* Breakpoints variables */
2
+ /**
3
+ * Responsive media for mobile (small) only.
4
+ * Use: @include mobile-only() { ... }
5
+ */
6
+ /**
7
+ * Responsive media for medium only.
8
+ * Use: @include medium-only() { ... }
9
+ */
10
+ /**
11
+ * Responsive media for large only.
12
+ * Use: @include large-only() { ... }
13
+ */
14
+ /**
15
+ * Responsive media for large and up.
16
+ * Use: @include large-up() { ... }
17
+ */
18
+ /**
19
+ * Responsive media for xlarge only.
20
+ * Use: @include xlarge-only() { ... }
21
+ */
22
+ :host {
23
+ display: block;
24
+ }
25
+ :host .grid-template {
26
+ display: grid;
27
+ grid-template-rows: auto;
28
+ grid-template-columns: auto;
29
+ grid-template-areas: "sub-header" "header" "pre-content" "content-container" "post-body" "footer" "sub-footer";
30
+ }
31
+ :host .grid-template #sub-header {
32
+ grid-area: sub-header;
33
+ }
34
+ :host .grid-template #header {
35
+ grid-area: header;
36
+ }
37
+ :host .grid-template #pre-content {
38
+ grid-area: pre-content;
39
+ }
40
+ :host .grid-template #content-container {
41
+ grid-area: content-container;
42
+ }
43
+ :host .grid-template #post-body {
44
+ grid-area: post-body;
45
+ }
46
+ :host .grid-template #footer {
47
+ grid-area: footer;
48
+ }
49
+ :host .grid-template #sub-footer {
50
+ grid-area: sub-footer;
51
+ }
52
+ @media (max-width: 360px) {
53
+ :host .grid-template {
54
+ padding: 0px;
55
+ }
56
+ :host .grid-template #pre-content,
57
+ :host .grid-template #content-container,
58
+ :host .grid-template #post-body,
59
+ :host .grid-template #footer {
60
+ margin-top: calc(var(--spacing) * 4px);
61
+ }
62
+ }
63
+ @media (min-width: 768px) and (max-width: 1365px) {
64
+ :host .grid-template {
65
+ padding: 0px;
66
+ }
67
+ :host .grid-template #pre-content,
68
+ :host .grid-template #content-container,
69
+ :host .grid-template #post-body,
70
+ :host .grid-template #footer {
71
+ margin-top: calc(var(--spacing) * 5px);
72
+ }
73
+ }
74
+ @media (min-width: 1366px) and (max-width: 1919px) {
75
+ :host .grid-template {
76
+ padding: 0px;
77
+ }
78
+ :host .grid-template #content-container #sidebar-left ::slotted(div[slot=sidebar-left]) {
79
+ margin-right: calc(var(--spacing) * 5px);
80
+ }
81
+ :host .grid-template #content-container #sidebar-right ::slotted(div[slot=sidebar-right]) {
82
+ margin-left: calc(var(--spacing) * 5px);
83
+ }
84
+ :host .grid-template #pre-content,
85
+ :host .grid-template #content-container,
86
+ :host .grid-template #post-body,
87
+ :host .grid-template #footer {
88
+ margin-top: calc(var(--spacing) * 5px);
89
+ }
90
+ :host .grid-template #content-container {
91
+ display: flex;
92
+ }
93
+ :host .grid-template #content-container #sidebar-left, :host .grid-template #content-container #sidebar-right {
94
+ max-width: 20%;
95
+ }
96
+ }
97
+ @media (min-width: 1920px) {
98
+ :host .grid-template {
99
+ padding: 0px;
100
+ }
101
+ :host .grid-template #content-container #sidebar-left ::slotted(div[slot=sidebar-left]) {
102
+ margin-right: calc(var(--spacing) * 7px);
103
+ }
104
+ :host .grid-template #content-container #sidebar-right ::slotted(div[slot=sidebar-right]) {
105
+ margin-left: calc(var(--spacing) * 7px);
106
+ }
107
+ :host .grid-template #pre-content,
108
+ :host .grid-template #content-container,
109
+ :host .grid-template #post-body,
110
+ :host .grid-template #footer {
111
+ margin-top: calc(var(--spacing) * 7px);
112
+ }
113
+ :host .grid-template #content-container {
114
+ display: flex;
115
+ }
116
+ :host .grid-template #content-container #sidebar-left, :host .grid-template #content-container #sidebar-right {
117
+ max-width: 20%;
118
+ }
119
+ :host .grid-template #content-container.centered {
120
+ max-width: 1920px;
121
+ justify-self: center;
122
+ }
123
+ }
@@ -0,0 +1,54 @@
1
+ import { Host, h } from '@stencil/core';
2
+ export class CuraPageTemplate {
3
+ constructor() {
4
+ this.contentwidth = 'default';
5
+ }
6
+ connectedCallback() {
7
+ this.styles = {
8
+ '--spacing': window.CuraAPI.theme.spacing.getSpacing(),
9
+ };
10
+ }
11
+ getClasses() {
12
+ const classes = {};
13
+ classes[this.contentwidth.toLowerCase()] = true;
14
+ return classes;
15
+ }
16
+ render() {
17
+ return (h(Host, null, h("div", { style: this.styles, class: "grid-template" }, h("div", { id: "sub-header" }, h("slot", { name: 'sub-header' })), h("div", { id: "header" }, h("slot", { name: 'header' })), h("div", { id: "pre-content" }, h("slot", { name: 'pre-content' })), h("div", { id: "content-container", class: this.getClasses() }, h("div", { id: "sidebar-left" }, h("slot", { name: 'sidebar-left' })), h("div", { id: "content" }, h("slot", { name: "content" }), h("slot", null)), h("div", { id: "sidebar-right" }, h("slot", { name: 'sidebar-right' }))), h("div", { id: "post-body" }, h("slot", { name: 'post-body' })), h("div", { id: "footer" }, h("slot", { name: 'footer' })), h("div", { id: "sub-footer" }, h("slot", { name: 'sub-footer' })))));
18
+ }
19
+ static get is() { return "cura-page-template"; }
20
+ static get encapsulation() { return "shadow"; }
21
+ static get originalStyleUrls() {
22
+ return {
23
+ "$": ["cura-page-template.scss"]
24
+ };
25
+ }
26
+ static get styleUrls() {
27
+ return {
28
+ "$": ["cura-page-template.css"]
29
+ };
30
+ }
31
+ static get properties() {
32
+ return {
33
+ "contentwidth": {
34
+ "type": "string",
35
+ "mutable": false,
36
+ "complexType": {
37
+ "original": "'default' | 'centered'",
38
+ "resolved": "\"centered\" | \"default\"",
39
+ "references": {}
40
+ },
41
+ "required": false,
42
+ "optional": false,
43
+ "docs": {
44
+ "tags": [],
45
+ "text": ""
46
+ },
47
+ "attribute": "contentwidth",
48
+ "reflect": true,
49
+ "defaultValue": "'default'"
50
+ }
51
+ };
52
+ }
53
+ static get elementRef() { return "host"; }
54
+ }
@@ -1,3 +1,24 @@
1
+ /* Breakpoints variables */
2
+ /**
3
+ * Responsive media for mobile (small) only.
4
+ * Use: @include mobile-only() { ... }
5
+ */
6
+ /**
7
+ * Responsive media for medium only.
8
+ * Use: @include medium-only() { ... }
9
+ */
10
+ /**
11
+ * Responsive media for large only.
12
+ * Use: @include large-only() { ... }
13
+ */
14
+ /**
15
+ * Responsive media for large and up.
16
+ * Use: @include large-up() { ... }
17
+ */
18
+ /**
19
+ * Responsive media for xlarge only.
20
+ * Use: @include xlarge-only() { ... }
21
+ */
1
22
  :host {
2
23
  display: block;
3
24
  font-size: var(--font-size);
@@ -10,6 +31,8 @@
10
31
  color: var(--color-body);
11
32
  line-height: 120%;
12
33
  letter-spacing: -4%;
34
+ margin-block-start: var(--block-margin);
35
+ margin-block-end: var(--block-margin);
13
36
  }
14
37
  :host h1.large, :host h2.large, :host h3.large, :host h4.large, :host h5.large, :host h6.large {
15
38
  font-size: 6.21em;
@@ -18,7 +41,7 @@
18
41
  font-size: 3em;
19
42
  font-weight: var(--font-weight-bold);
20
43
  }
21
- @media screen and (min-width: 768px) and (max-width: 1366px) {
44
+ @media (min-width: 768px) and (max-width: 1365px) {
22
45
  :host h1, :host h2, :host h3, :host h4, :host h5, :host h6 {
23
46
  font-size: 4.92em;
24
47
  }
@@ -29,7 +52,7 @@
29
52
  font-size: 3.428em;
30
53
  }
31
54
  }
32
- @media screen and (min-width: 1367px) {
55
+ @media (min-width: 1366px) {
33
56
  :host h1, :host h2, :host h3, :host h4, :host h5, :host h6 {
34
57
  font-size: 6.14em;
35
58
  line-height: 125%;