/*
 * icon-shim.css — inline-SVG icon renderer for Font Awesome class names.
 *
 * History
 *   • Originally a text-fallback shim ("DOC" / "NAV" / "TEL" / etc.) that
 *     showed 3-letter abbreviations when Font Awesome failed to load. Per
 *     production CSP (no remote font CSS) Font Awesome was never wired up,
 *     so the shim text became the live UI — meaningless labels next to
 *     every nav item, chip, button, and composer affordance.
 *   • Replaced 2026-05-17 with inline-SVG masks (data URIs) so the canonical
 *     Font Awesome class names render real icons with zero font dependency
 *     and zero remote CSS — fully CSP-safe.
 *
 * Source
 *   Icon SVG paths are from Font Awesome 6 Free (CC BY 4.0 / SIL OFL),
 *   condensed to single-path `<svg>` data URIs. Each glyph is the SOLID
 *   variant (fa-solid-900).
 *
 * Adding a new icon
 *   1. Find the FA class name in apps/dashboard/runtime/index.html.
 *   2. Get the SVG path data from fontawesome.com (free icons only).
 *   3. Add a rule `.fa-<name>::before { --ww-icon: url("data:image/svg+xml,..."); --ww-icon-bg: currentColor;}`.
 *
 * Single-character symbols (arrows, plus/minus, check, ×) stay as
 * pseudo-content because they render perfectly in the system font and
 * inline-SVG would be heavier than a single glyph.
 */

/* Base — every fa-* element is a 1em square that may carry an SVG mask
 * painted with `currentColor`. We only paint the background when a mask
 * is actually set; otherwise the element falls through to its
 * `::before` pseudo (single-char glyphs below) or stays empty. Setting
 * background-color unconditionally would render every un-masked icon
 * as a solid colored square. */
.fas,
.fa,
.fab,
.far {
  display: inline-block;
  width: 1em;
  height: 1em;
  min-width: 1em;
  line-height: 1;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  vertical-align: -0.125em;
  background: var(--ww-icon-bg, transparent);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: var(--ww-icon, none);
  mask-image: var(--ww-icon, none);
}

/* Icons that don't have a mask drop to empty content so we never leak
 * text fallback. Single-char symbols (`<`, `>`, `?`, etc.) opt in below. */
.fas::before,
.fa::before,
.fab::before,
.far::before {
  content: "";
}

/* Single-character glyphs that render cleanly without SVG. These are the
 * only pseudo-content survivors — every other class uses an SVG mask. */
.fa-arrow-right::before,
.fa-arrow-up-right-dots::before,
.fa-arrow-up-right-from-square::before,
.fa-external-link-alt::before,
.fa-chevron-right::before,
.fa-caret-right::before { content: ">"; background: none; }

.fa-arrow-left::before,
.fa-chevron-left::before,
.fa-angles-left::before,
.fa-reply::before { content: "<"; background: none; }

.fa-arrow-up::before,
.fa-chevron-up::before,
.fa-forward::before { content: "↑"; background: none; }

.fa-arrow-down::before,
.fa-chevron-down::before,
.fa-chevron::before,
.fa-caret-down::before { content: "↓"; background: none; }

.fa-check::before,
.fa-check-circle::before,
.fa-circle-check::before,
.fa-check-double::before,
.fa-hand-paper::before,
.fa-thumbs-up::before { content: "✓"; background: none; }

.fa-xmark::before,
.fa-times::before,
.fa-thumbs-down::before { content: "×"; background: none; }

.fa-plus::before,
.fa-plus-circle::before,
.fa-plus-square::before { content: "+"; background: none; }

.fa-minus::before { content: "−"; background: none; }

.fa-ellipsis-h::before,
.fa-ellipsis::before { content: "…"; background: none; }

.fa-warning::before,
.fa-triangle-exclamation::before,
.fa-exclamation::before,
.fa-exclamation-circle::before,
.fa-exclamation-triangle::before,
.fa-circle-exclamation::before { content: "!"; background: none; }

.fa-info-circle::before,
.fa-circle-info::before,
.fa-circle-question::before { content: "?"; background: none; }

.fa-bars::before { content: "≡"; background: none; }

.fa-circle::before,
.fa-circle-dot::before { content: "●"; background: none; font-size: 0.6em; }

/* ─────────────────────────────────────────────────────────
 * SVG-masked icons — Font Awesome 6 Free Solid paths
 *
 * Inline SVG data URIs keep us CSP-safe (`img-src data:` is allowed),
 * font-free, and one fetch lighter than self-hosted webfonts.
 * Each viewBox is FA's canonical 512×512. Single-path icons only.
 * ───────────────────────────────────────────────────────── */

/* Calendar family — fa-calendar / fa-calendar-day / fa-calendar-plus etc. */
.fa-calendar::before,
.fa-calendar-alt::before,
.fa-calendar-check::before,
.fa-calendar-day::before,
.fa-calendar-days::before,
.fa-calendar-plus::before,
.fa-calendar-week::before,
.fa-calendar-xmark::before { content: ""; }
.fa-calendar,
.fa-calendar-alt,
.fa-calendar-check,
.fa-calendar-day,
.fa-calendar-days,
.fa-calendar-plus,
.fa-calendar-week,
.fa-calendar-xmark { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-clock { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM232 120c0-13.3 10.7-24 24-24s24 10.7 24 24V256c0 8 4 15.5 10.7 20l96 64c11 7.4 14 22.3 6.7 33.3s-22.3 14-33.3 6.7L253.3 308.9c-13.3-8.9-21.3-23.8-21.3-39.9V120z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Envelope / Message family */
.fa-envelope,
.fa-envelope-open-text,
.fa-message,
.fa-comment-dots,
.fa-comments { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-inbox { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M121 32C91.6 32 66 52 58.9 80.5L1.9 308.4C.6 313.5 0 318.7 0 323.9V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V323.9c0-5.2-.6-10.4-1.9-15.5l-57-227.9C446 52 420.4 32 391 32H121zm0 64H391l48 192H387.8c-12.1 0-23.2 6.8-28.6 17.7l-14.3 28.6c-5.4 10.8-16.5 17.7-28.6 17.7H195.8c-12.1 0-23.2-6.8-28.6-17.7l-14.3-28.6c-5.4-10.8-16.5-17.7-28.6-17.7H73L121 96z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Paperclip (attach files) */
.fa-paperclip { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M364.2 83.8c-24.4-24.4-64-24.4-88.4 0l-184 184c-42.1 42.1-42.1 110.3 0 152.4s110.3 42.1 152.4 0l152-152c10.9-10.9 28.7-10.9 39.6 0s10.9 28.7 0 39.6l-152 152c-64 64-167.6 64-231.6 0s-64-167.6 0-231.6l184-184c46.3-46.3 121.3-46.3 167.6 0s46.3 121.3 0 167.6l-176 176c-28.6 28.6-75 28.6-103.6 0s-28.6-75 0-103.6l144-144c10.9-10.9 28.7-10.9 39.6 0s10.9 28.7 0 39.6l-144 144c-6.7 6.7-6.7 17.7 0 24.4s17.7 6.7 24.4 0l176-176c24.4-24.4 24.4-64 0-88.4z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Microphone */
.fa-microphone,
.fa-microphone-lines { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M192 0C139 0 96 43 96 96V256c0 53 43 96 96 96s96-43 96-96V96c0-53-43-96-96-96zM64 216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 89.1 66.2 162.7 152 174.4V464H120c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H216V430.4c85.8-11.7 152-85.3 152-174.4V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 70.7-57.3 128-128 128s-128-57.3-128-128V216z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Phone */
.fa-phone,
.fa-phone-volume,
.fa-phone-slash,
.fa-headset { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-ear-listen { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M186.1 52.7C201.5 40 220.9 32 242 32c47.9 0 86.7 38.8 86.7 86.7c0 11.6-2.3 22.7-6.4 32.8c-3.3 8.2-1.4 17.5 4.9 23.8l37.2 37.2c12.5 12.5 32.8 12.5 45.3 0c14.6-14.6 38.3-14.6 52.9 0s14.6 38.3 0 52.9c-12.5 12.5-12.5 32.8 0 45.3l37.2 37.2c6.2 6.2 15.6 8.2 23.8 4.9c10-4.1 21.1-6.4 32.8-6.4c47.9 0 86.7 38.8 86.7 86.7c0 21.1-8 40.5-20.7 55.9c-21.1 26.3-58.1 31.3-85.4 11.5L373.2 444.5c-12-8.9-28.5-8.9-40.4 0L226.5 521.7c-27.3 19.8-64.3 14.8-85.4-11.5C128.4 494.8 120.4 475.4 120.4 454.3c0-47.9 38.8-86.7 86.7-86.7c11.6 0 22.7 2.3 32.8 6.4c8.2 3.3 17.5 1.4 23.8-4.9l37.2-37.2c12.5-12.5 12.5-32.8 0-45.3c-14.6-14.6-14.6-38.3 0-52.9s38.3-14.6 52.9 0c12.5 12.5 32.8 12.5 45.3 0l37.2-37.2c6.2-6.2 8.2-15.6 4.9-23.8C436.1 162.5 433.8 151.4 433.8 139.8c0-47.9-38.8-86.7-86.7-86.7c-21.1 0-40.5 8-55.9 20.7L186.1 52.7z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Compass (NAV) — used for Mission rail */
.fa-compass { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm306.7 69.1L162.4 380.6c-19.4 7.5-38.5-11.6-31-31l55.5-144.3c3.3-8.5 9.9-15.1 18.4-18.4l144.3-55.5c19.4-7.5 38.5 11.6 31 31L325.1 306.7c-3.2 8.5-9.9 15.1-18.4 18.4zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Home */
.fa-home,
.fa-map-marked-alt { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c0 2.7-.2 5.4-.5 8.1V472c0 22.1-17.9 40-40 40H456c-1.1 0-2.2 0-3.3-.1c-1.4 .1-2.8 .1-4.2 .1H416 392c-22.1 0-40-17.9-40-40V448 384c0-17.7-14.3-32-32-32H256c-17.7 0-32 14.3-32 32v64 24c0 22.1-17.9 40-40 40H160 128.1c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2H104c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9 .1-2.8V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L564.8 231.5c8 7 12 15 11 24z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Globe */
.fa-globe { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M352 256c0 22.2-1.2 43.6-3.3 64H163.3c-2.2-20.4-3.3-41.8-3.3-64s1.2-43.6 3.3-64H348.7c2.2 20.4 3.3 41.8 3.3 64zm28.8-64H503.9c5.3 20.5 8.1 41.9 8.1 64s-2.8 43.5-8.1 64H380.8c2.1-20.6 3.2-42 3.2-64s-1.1-43.4-3.2-64zm112.6-32H376.7c-10-63.9-29.8-117.4-55.3-151.6c78.3 20.7 142 77.5 171.9 151.6zm-149.1 0H167.7c6.1-36.4 15.5-68.6 27-94.7c10.5-23.6 22.2-40.7 33.5-51.5C239.4 3.2 248.7 0 256 0s16.6 3.2 27.8 13.8c11.3 10.8 23 27.9 33.5 51.5c11.6 26 20.9 58.2 27 94.7zm-209 0H18.6C48.6 85.9 112.2 29.1 190.6 8.4C165.1 42.6 145.3 96.1 135.3 160zM8.1 192H131.2c-2.1 20.6-3.2 42-3.2 64s1.1 43.4 3.2 64H8.1C2.8 299.5 0 278.1 0 256s2.8-43.5 8.1-64zM194.7 446.6c-11.6-26-20.9-58.2-27-94.6H344.3c-6.1 36.4-15.5 68.6-27 94.6c-10.5 23.6-22.2 40.7-33.5 51.5C272.6 508.8 263.3 512 256 512s-16.6-3.2-27.8-13.8c-11.3-10.8-23-27.9-33.5-51.5zM135.3 352c10 63.9 29.8 117.4 55.3 151.6C112.2 482.9 48.6 426.1 18.6 352H135.3zm358.1 0c-30 74.1-93.6 130.9-171.9 151.6c25.5-34.2 45.2-87.7 55.3-151.6H493.4z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Filter */
.fa-filter { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M3.9 54.9C10.5 40.9 24.5 32 40 32H472c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L320 320.9V448c0 12.1-6.8 23.2-17.7 28.6s-23.8 4.3-33.5-3l-64-48c-8.1-6-12.8-15.5-12.8-25.6V320.9L9 97.3C-.7 85.4-2.8 68.8 3.9 54.9z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* User family */
.fa-user,
.fa-user-check,
.fa-user-circle,
.fa-user-plus,
.fa-user-slash { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-users { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M144 0a80 80 0 1 1 0 160A80 80 0 1 1 144 0zM512 0a80 80 0 1 1 0 160A80 80 0 1 1 512 0zM0 298.7C0 239.8 47.8 192 106.7 192h42.7c15.9 0 31 3.5 44.6 9.7c-1.3 7.2-1.9 14.7-1.9 22.3c0 38.2 16.8 72.5 43.3 96c-.2 0-.4 0-.7 0H21.3C9.6 320 0 310.4 0 298.7zM405.3 320c-.2 0-.4 0-.7 0c26.6-23.5 43.3-57.8 43.3-96c0-7.6-.7-15-1.9-22.3c13.6-6.3 28.7-9.7 44.6-9.7h42.7C592.2 192 640 239.8 640 298.7c0 11.8-9.6 21.3-21.3 21.3H405.3zM224 224a96 96 0 1 1 192 0 96 96 0 1 1 -192 0zM128 485.3C128 411.7 187.7 352 261.3 352H378.7C452.3 352 512 411.7 512 485.3c0 14.7-11.9 26.7-26.7 26.7H154.7c-14.7 0-26.7-11.9-26.7-26.7z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-users-gear { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M144 0a80 80 0 1 1 0 160A80 80 0 1 1 144 0zM512 0a80 80 0 1 1 0 160A80 80 0 1 1 512 0zM0 298.7C0 239.8 47.8 192 106.7 192h42.7c15.9 0 31 3.5 44.6 9.7c-1.3 7.2-1.9 14.7-1.9 22.3c0 38.2 16.8 72.5 43.3 96c-.2 0-.4 0-.7 0H21.3C9.6 320 0 310.4 0 298.7zM405.3 320c-.2 0-.4 0-.7 0c26.6-23.5 43.3-57.8 43.3-96c0-7.6-.7-15-1.9-22.3c13.6-6.3 28.7-9.7 44.6-9.7h42.7C592.2 192 640 239.8 640 298.7c0 11.8-9.6 21.3-21.3 21.3H405.3zM224 224a96 96 0 1 1 192 0 96 96 0 1 1 -192 0zM128 485.3C128 411.7 187.7 352 261.3 352H378.7C452.3 352 512 411.7 512 485.3c0 14.7-11.9 26.7-26.7 26.7H154.7c-14.7 0-26.7-11.9-26.7-26.7z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-id-card,
.fa-id-badge { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M0 96C0 60.7 28.7 32 64 32H512c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM64 96V416H512V96H64zM176 320c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48zM336 96H464v32H336V96zM336 160H464v32H336V160zM336 224H464v32H336V224z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Settings / gear / sliders */
.fa-gear,
.fa-gears,
.fa-cog,
.fa-cogs,
.fa-wrench { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M495.9 166.6c3.2 8.7 .5 18.4-6.4 24.6l-43.3 39.4c1.1 8.3 1.7 16.8 1.7 25.4s-.6 17.1-1.7 25.4l43.3 39.4c6.9 6.2 9.6 15.9 6.4 24.6c-4.4 11.9-9.7 23.3-15.8 34.3l-4.7 8.1c-6.6 11-14 21.4-22.1 31.2c-5.9 7.2-15.7 9.6-24.5 6.8l-55.7-17.7c-13.4 10.3-28.2 18.9-44 25.4l-12.5 57.1c-2 9.1-9 16.3-18.2 17.8c-13.8 2.3-28 3.5-42.5 3.5s-28.7-1.2-42.5-3.5c-9.2-1.5-16.2-8.7-18.2-17.8l-12.5-57.1c-15.8-6.5-30.6-15.1-44-25.4L83.1 425.9c-8.8 2.8-18.6 .3-24.5-6.8c-8.1-9.8-15.5-20.2-22.1-31.2l-4.7-8.1c-6.1-11-11.4-22.4-15.8-34.3c-3.2-8.7-.5-18.4 6.4-24.6l43.3-39.4C64.6 273.1 64 264.6 64 256s.6-17.1 1.7-25.4L22.4 191.2c-6.9-6.2-9.6-15.9-6.4-24.6c4.4-11.9 9.7-23.3 15.8-34.3l4.7-8.1c6.6-11 14-21.4 22.1-31.2c5.9-7.2 15.7-9.6 24.5-6.8l55.7 17.7c13.4-10.3 28.2-18.9 44-25.4l12.5-57.1c2-9.1 9-16.3 18.2-17.8C227.3 1.2 241.5 0 256 0s28.7 1.2 42.5 3.5c9.2 1.5 16.2 8.7 18.2 17.8l12.5 57.1c15.8 6.5 30.6 15.1 44 25.4l55.7-17.7c8.8-2.8 18.6-.3 24.5 6.8c8.1 9.8 15.5 20.2 22.1 31.2l4.7 8.1c6.1 11 11.4 22.4 15.8 34.3zM256 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-sliders,
.fa-sliders-h,
.fa-tools { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M0 416c0 17.7 14.3 32 32 32l54.7 0c12.3 28.3 40.5 48 73.3 48s61-19.7 73.3-48L480 448c17.7 0 32-14.3 32-32s-14.3-32-32-32l-246.7 0c-12.3-28.3-40.5-48-73.3-48s-61 19.7-73.3 48L32 384c-17.7 0-32 14.3-32 32zm128 0a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM320 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm32-80c-32.8 0-61 19.7-73.3 48L32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l246.7 0c12.3 28.3 40.5 48 73.3 48s61-19.7 73.3-48l54.7 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-54.7 0c-12.3-28.3-40.5-48-73.3-48zM192 128a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm-32-80c-32.8 0-61 19.7-73.3 48L32 96C14.3 96 0 110.3 0 128s14.3 32 32 32l54.7 0c12.3 28.3 40.5 48 73.3 48s61-19.7 73.3-48L480 160c17.7 0 32-14.3 32-32s-14.3-32-32-32L233.3 96c-12.3-28.3-40.5-48-73.3-48z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Plug / connect */
.fa-plug { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8C297 398 352 333.4 352 256V224c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-plug-circle-bolt { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8C297 398 352 333.4 352 256V224c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM512 128a128 128 0 1 1 0 256 128 128 0 1 1 0-256zM516 184c5.3 0 9.1 5.1 7.6 10.2L506.4 256H560c6.6 0 10.4 7.5 6.4 12.8l-68 90.7c-5 6.7-15.6 1.7-13.3-6.3L502.4 288H448c-6.6 0-10.4-7.5-6.4-12.8l68-88c1.5-2 3.9-3.2 6.4-3.2z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-plug-circle-check { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8C297 398 352 333.4 352 256V224c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM512 128a128 128 0 1 1 0 256 128 128 0 1 1 0-256zM574.6 225.4c12.5 12.5 12.5 32.8 0 45.3l-72 72c-12.5 12.5-32.8 12.5-45.3 0l-32-32c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L480 274.7l49.4-49.4c12.5-12.4 32.8-12.4 45.2.1z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-plug-circle-xmark { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8C297 398 352 333.4 352 256V224c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM512 128a128 128 0 1 1 0 256 128 128 0 1 1 0-256zM459.5 203.5c9.4-9.4 24.6-9.4 33.9 0L512 222.1l18.5-18.5c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L545.9 256l18.5 18.5c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L512 289.9l-18.5 18.5c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L478.1 256l-18.5-18.5c-9.5-9.4-9.5-24.6-.1-34z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-link,
.fa-link-slash,
.fa-unlink { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M579.8 267.7c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114L422.3 334.8c-31.5 31.5-82.5 31.5-114 0c-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C206.5 251.2 213 330 263 380c56.5 56.5 148 56.5 204.5 0L579.8 267.7zM60.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5L217.7 177.2c31.5-31.5 82.5-31.5 114 0c27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C433.5 260.8 427 182 377 132c-56.5-56.5-148-56.5-204.5 0L60.2 244.3z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Shield / lock / security */
.fa-ban { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M367.2 412.5L99.5 144.8C77.1 176.1 64 214.5 64 256c0 106 86 192 192 192c41.5 0 79.9-13.1 111.2-35.5zm45.3-45.3C434.9 335.9 448 297.5 448 256c0-106-86-192-192-192c-41.5 0-79.9 13.1-111.2 35.5L412.5 367.2zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-shield-alt,
.fa-shield-check,
.fa-shield-halved { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 0c4.6 0 9.2 1 13.4 2.9L457.7 82.8c22 9.3 38.4 31 38.3 57.2c-.5 99.2-41.3 280.7-213.6 363.2c-16.7 8-36.1 8-52.8 0C57.3 420.7 16.5 239.2 16 140c-.1-26.2 16.3-47.9 38.3-57.2L242.7 2.9C246.8 1 251.4 0 256 0zm0 66.8V444.8C394 378 431.1 230.1 432 141.4L256 66.8l0 0z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-lock,
.fa-key { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M144 144v48H304V144c0-44.2-35.8-80-80-80s-80 35.8-80 80zM80 192V144C80 64.5 144.5 0 224 0s144 64.5 144 144v48h16c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64H80z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Eye */
.fa-eye { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM432 256A144 144 0 1 1 144 256a144 144 0 1 1 288 0zM288 192c0 35.3-28.7 64-64 64c-7.1 0-13.9-1.2-20.3-3.3c-5.5-1.8-11.9 1.6-11.7 7.4c.3 6.9 1.3 13.8 3.2 20.7c13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Magnifying glass / search */
.fa-search,
.fa-magnifying-glass { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* AI / brain / chip */
.fa-brain,
.fa-microchip,
.fa-robot { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M184 0c30.9 0 56 25.1 56 56V456c0 30.9-25.1 56-56 56c-28.9 0-52.7-21.9-55.7-50.1c-5.2 1.4-10.7 2.1-16.3 2.1c-35.3 0-64-28.7-64-64c0-7.4 1.3-14.6 3.6-21.2C21.4 367.4 0 338.2 0 304c0-31.9 18.7-59.5 45.8-72.3C37.1 220.8 32 207 32 192c0-30.7 21.6-56.3 50.4-62.6C80.8 123.9 80 118 80 112c0-29.9 20.6-55.1 48.3-62.1C131.3 21.9 155.1 0 184 0zM328 0c28.9 0 52.6 21.9 55.7 50C411.4 56.9 432 82.1 432 112c0 6-.8 11.9-2.4 17.4c28.8 6.2 50.4 31.9 50.4 62.6c0 15-5.1 28.8-13.8 39.7C493.3 244.5 512 272.1 512 304c0 34.2-21.4 63.4-51.6 74.8c2.3 6.6 3.6 13.8 3.6 21.2c0 35.3-28.7 64-64 64c-5.6 0-11.1-.7-16.3-2.1c-3 28.2-26.8 50.1-55.7 50.1c-30.9 0-56-25.1-56-56V56c0-30.9 25.1-56 56-56z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Bullseye / target */
.fa-bullseye,
.fa-radar { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M448 256A192 192 0 1 0 64 256a192 192 0 1 0 384 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm384 0a128 128 0 1 0 -256 0 128 128 0 1 0 256 0zM192 256a64 64 0 1 1 128 0 64 64 0 1 1 -128 0z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-flag { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4l34.7-13.9c12.1-4.8 20.8-16.5 20.8-30.2V66.1c0-23-23.7-38.4-44.8-29.1l-34.7 13.9c-46.2 18.5-97.5 15.8-141.7-6.3c-37.9-18.9-81.4-23.7-122.5-13.4L64 48V32z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Bolt / lightning */
.fa-bolt,
.fa-bolt-lightning,
.fa-fire { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M349.4 44.6c5.9-13.7 1.5-29.7-10.6-38.5s-28.6-8-39.9 1.8l-256 224c-10 8.8-13.6 22.9-8.9 35.3S50.7 288 64 288H175.5L98.6 467.4c-5.9 13.7-1.5 29.7 10.6 38.5s28.6 8 39.9-1.8l256-224c10-8.8 13.6-22.9 8.9-35.3s-16.6-20.7-30-20.7H272.5L349.4 44.6z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-rocket { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M156.6 384.9L125.7 354c-8.5-8.5-11.5-21-7.7-32.4l18.2-54.5L20.6 183.5C12.7 177.8 8 168.6 8 158.9C8 141.8 21.8 128 38.9 128H194.1l71.7-71.7C301.8 20.4 350.6 0 401.5 0H464c26.5 0 48 21.5 48 48v62.5c0 50.9-20.4 99.7-56.4 135.7l-71.7 71.7V473.1c0 17.1-13.8 30.9-30.9 30.9c-9.7 0-18.9-4.7-24.6-12.6L244.9 375.8l-54.5 18.2c-11.4 3.8-23.9 .8-32.4-7.7l-1.4-1.4zM384 168a40 40 0 1 0 0-80 40 40 0 1 0 0 80z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Circle-stop / brake */
.fa-stop,
.fa-square,
.fa-circle-stop { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM176 160H336c8.8 0 16 7.2 16 16V336c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Pause */
.fa-pause { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M48 64C21.5 64 0 85.5 0 112V400c0 26.5 21.5 48 48 48H80c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H48zm192 0c-26.5 0-48 21.5-48 48V400c0 26.5 21.5 48 48 48h32c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H240z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Play / paper-plane (send) */
.fa-play,
.fa-play-circle { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80V432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-paper-plane { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480V396.4c0-4 1.5-7.8 4.2-10.7L331.8 202.8c5.8-6.3 5.6-16.1-.4-22.1s-15.7-6.4-22.1-.7L116.6 351.3 27.4 306.7C11.7 298.9 1.4 283.3 .1 265.8s6.6-34.4 20.7-44.8l448-336c10.8-8.1 25.4-8.6 36.7-1.4z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Refresh / rotate */
.fa-rotate,
.fa-rotate-right,
.fa-redo,
.fa-refresh,
.fa-sync,
.fa-arrows-rotate,
.fa-repeat,
.fa-exchange-alt,
.fa-history,
.fa-clock-rotate-left { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M386.3 160H336c-17.7 0-32 14.3-32 32s14.3 32 32 32H464c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v51.2L414.4 97.6c-87.5-87.5-229.3-87.5-316.8 0s-87.5 229.3 0 316.8s229.3 87.5 316.8 0c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-62.5 62.5-163.8 62.5-226.3 0s-62.5-163.8 0-226.3s163.8-62.5 226.3 0L386.3 160z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-undo { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M48.5 224H40c-13.3 0-24-10.7-24-24V72c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l41.6 41.6C190.3 19.7 327.4 24.1 413.4 110.1c91.5 91.5 91.5 239.8 0 331.3s-239.8 91.5-331.3 0c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0c66.5 66.5 174.3 66.5 240.8 0s66.5-174.3 0-240.8c-61-61-156.7-66.1-223.5-15.5l40.3 40.3c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8H48.5z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Trash */
.fa-trash,
.fa-trash-alt { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M135.2 17.7L128 32H32C14.3 32 0 46.3 0 64S14.3 96 32 96H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H320l-7.2-14.3C307.4 6.8 296.3 0 284.2 0H163.8c-12.1 0-23.2 6.8-28.6 17.7zM416 128H32L53.2 467c1.6 25.3 22.6 45 47.9 45H346.9c25.3 0 46.3-19.7 47.9-45L416 128z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Clipboard */
.fa-clipboard-check,
.fa-clipboard-list,
.fa-clipboard-question,
.fa-copy,
.fa-paste,
.fa-stamp { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Document / file family */
.fa-file,
.fa-file-alt,
.fa-file-lines,
.fa-file-code,
.fa-file-import,
.fa-file-invoice,
.fa-file-invoice-dollar { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Credit card / dollar */
.fa-credit-card { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M64 32C28.7 32 0 60.7 0 96v32H576V96c0-35.3-28.7-64-64-64H64zM576 224H0V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V224zM112 352h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm112 16c0-8.8 7.2-16 16-16H368c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-dollar-sign,
.fa-coins,
.fa-receipt,
.fa-wallet,
.fa-money-bill-wave { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* List */
.fa-list,
.fa-list-check,
.fa-list-ul,
.fa-tasks,
.fa-timeline { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M40 48C26.7 48 16 58.7 16 72v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V72c0-13.3-10.7-24-24-24H40zM192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM16 232v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V232c0-13.3-10.7-24-24-24H40c-13.3 0-24 10.7-24 24zm0 160v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V392c0-13.3-10.7-24-24-24H40c-13.3 0-24 10.7-24 24z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Video */
.fa-video { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M0 128C0 92.7 28.7 64 64 64H320c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zM559.1 99.8c10.4 5.6 16.9 16.4 16.9 28.2V384c0 11.8-6.5 22.6-16.9 28.2s-23 5-32.9-1.6l-96-64L416 337.1V320 192 174.9l14.2-9.5 96-64c9.8-6.5 22.4-7.2 32.9-1.6z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Bell / alert */
.fa-bell { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224 0c-17.7 0-32 14.3-32 32V49.9C119.5 61.4 64 124.2 64 200v33.4c0 45.4-15.5 89.5-43.8 124.9L5.3 377c-5.8 7.2-6.9 17.1-2.9 25.4S14.8 416 24 416H424c9.2 0 17.6-5.3 21.6-13.6s2.9-18.2-2.9-25.4l-14.9-18.6C399.5 322.9 384 278.8 384 233.4V200c0-75.8-55.5-138.6-128-150.1V32c0-17.7-14.3-32-32-32zm0 96c57.4 0 104 46.6 104 104v33.4c0 47.9 13.9 94.6 39.7 134.6H80.3C106.1 328 120 281.3 120 233.4V200c0-57.4 46.6-104 104-104zm64 352H224 160c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-hand { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M80 160c0-17.7 14.3-32 32-32s32 14.3 32 32V320c0 8.8 7.2 16 16 16s16-7.2 16-16V64c0-17.7 14.3-32 32-32s32 14.3 32 32V320c0 8.8 7.2 16 16 16s16-7.2 16-16V32c0-17.7 14.3-32 32-32s32 14.3 32 32V320c0 8.8 7.2 16 16 16s16-7.2 16-16V96c0-17.7 14.3-32 32-32s32 14.3 32 32V352c0 88.4-71.6 160-160 160H240c-57.4 0-110.5-30.7-139.2-80.4L4.3 264.4c-8.8-15.3-3.6-34.9 11.7-43.7s34.9-3.6 43.7 11.7L96 295.3V160z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Database / server */
.fa-database,
.fa-server { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M448 80v48c0 44.2-100.3 80-224 80S0 172.2 0 128V80C0 35.8 100.3 0 224 0S448 35.8 448 80zM393.2 214.7c20.8-7.4 39.9-16.9 54.8-28.6V288c0 44.2-100.3 80-224 80S0 332.2 0 288V186.1c14.9 11.8 34 21.2 54.8 28.6C99.7 230.7 159.5 240 224 240s124.3-9.3 169.2-25.3zM0 346.1c14.9 11.8 34 21.2 54.8 28.6C99.7 390.7 159.5 400 224 400s124.3-9.3 169.2-25.3c20.8-7.4 39.9-16.9 54.8-28.6V432c0 44.2-100.3 80-224 80S0 476.2 0 432V346.1z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Code / terminal */
.fa-code,
.fa-terminal { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M414.8 40.79L286.8 488.8C281.9 505.8 264.2 515.6 247.2 510.8C230.2 505.9 220.4 488.2 225.2 471.2L353.2 23.21C358.1 6.216 375.8-3.624 392.8 1.232C409.8 6.087 419.6 23.8 414.8 40.79H414.8zM518.6 121.4L630.6 233.4C643.1 245.9 643.1 266.1 630.6 278.6L518.6 390.6C506.1 403.1 485.9 403.1 473.4 390.6C460.9 378.1 460.9 357.9 473.4 345.4L562.7 256L473.4 166.6C460.9 154.1 460.9 133.9 473.4 121.4C485.9 108.9 506.1 108.9 518.6 121.4V121.4zM166.6 166.6L77.25 256L166.6 345.4C179.1 357.9 179.1 378.1 166.6 390.6C154.1 403.1 133.9 403.1 121.4 390.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4L121.4 121.4C133.9 108.9 154.1 108.9 166.6 121.4C179.1 133.9 179.1 154.1 166.6 166.6V166.6z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-project-diagram { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M0 80c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80zm384 0c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48h-96c-26.5 0-48-21.5-48-48V80zM0 336c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48v-96zm192-224h192v64H192v-64zm-48 112h64v96h-64v-96zm64 96h176v64H208v-64zm176-144h64v176h-64V176z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-vector-square { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M64 64h96v96H64V64zm288 0h96v96h-96V64zM64 352h96v96H64v-96zm288 0h96v96h-96v-96zM128 160h64v32h128v-32h64v32h32v128h-32v32h-64v-32H192v32h-64v-32H96V192h32v-32zm64 96v32h128v-64H192v32z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Spinner */
.fa-spinner,
.fa-circle-notch { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M222.7 32.15c-77.45 11.34-138.7 72.59-150 150C57.59 290.5 144.1 384 255.1 384c4.273 0 8.5-.1758 12.69-.4609c-69.78-4.762-128-50.66-148.7-114.6c-15.94-49.31-1.336-99.91 27.99-138.7C160.9 105 199.8 91.62 240.1 88.27c.0938-.0078 .1875-.0156 .2813-.0234c4.785-.3613 8.711-1.121 8.711-7.469C249 75.92 246.7 71.39 241.7 70.04C236.6 68.69 231.4 68.13 226.2 67.43C224.9 67.28 223.6 67.13 222.7 32.15z'/%3E%3C/svg%3E"); animation: spin 1s linear infinite; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Download / upload */
.fa-download { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V274.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7V32zM64 352c-35.3 0-64 28.7-64 64v32c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V416c0-35.3-28.7-64-64-64H346.5l-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352H64z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
.fa-upload,
.fa-cloud-arrow-up,
.fa-cloud-upload-alt,
.fa-file-arrow-up { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M288 109.3V352c0 17.7-14.3 32-32 32s-32-14.3-32-32V109.3l-73.4 73.4c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l128-128c12.5-12.5 32.8-12.5 45.3 0l128 128c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L288 109.3zM64 352H192c0 35.3 28.7 64 64 64s64-28.7 64-64H448c35.3 0 64 28.7 64 64v32c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V416c0-35.3 28.7-64 64-64z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Star / sparkle / lightbulb */
.fa-star,
.fa-sun,
.fa-lightbulb,
.fa-sparkles,
.fa-magic,
.fa-wand-magic-sparkles { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Pen / edit */
.fa-pen,
.fa-pen-to-square,
.fa-file-pen,
.fa-pencil-ruler,
.fa-edit { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M362.7 19.3L314.3 67.7 444.3 197.7l48.4-48.4c25-25 25-65.5 0-90.5L453.3 19.3c-25-25-65.5-25-90.5 0zm-71 71L58.6 323.5c-10.4 10.4-18 23.3-22.2 37.4L1 481.2C-1.5 489.7 .8 498.8 7 505s15.3 8.5 23.7 6.1l120.3-35.4c14.1-4.2 27-11.8 37.4-22.2L421.7 220.3 291.7 90.3z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Save / hard drive */
.fa-save { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V170.5c0-17-6.7-33.3-18.7-45.3L322.7 18.7C310.7 6.7 294.5 0 277.5 0H64zm0 96c0-17.7 14.3-32 32-32H288c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V128zM224 288a64 64 0 1 1 0 128 64 64 0 1 1 0-128z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Calculator / hashtag */
.fa-calculator { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM96 64H288c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32zM64 224a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm64 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zM64 416a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm160-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm32-64a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zM192 224a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm160 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM320 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Briefcase / building */
.fa-briefcase,
.fa-building,
.fa-building-gear,
.fa-store,
.fa-archive,
.fa-folder-open,
.fa-cubes,
.fa-puzzle-piece { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96H64C28.7 96 0 124.7 0 160v96H192 320 512V160c0-35.3-28.7-64-64-64H384V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zM512 288H320v32c0 17.7-14.3 32-32 32H224c-17.7 0-32-14.3-32-32V288H0V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V288z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Chart / gauge */
.fa-chart-area,
.fa-chart-bar,
.fa-chart-line,
.fa-chart-pie,
.fa-arrow-trend-up,
.fa-gauge-high,
.fa-tachometer-alt { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M0 32V464c0 26.5 21.5 48 48 48H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V32c0-17.7-14.3-32-32-32S0 14.3 0 32zm280 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V408c0 17.7 14.3 32 32 32s32-14.3 32-32V112zm-104 96c0-17.7-14.3-32-32-32s-32 14.3-32 32V408c0 17.7 14.3 32 32 32s32-14.3 32-32V208zM448 224c0-17.7-14.3-32-32-32s-32 14.3-32 32V408c0 17.7 14.3 32 32 32s32-14.3 32-32V224zM384 304c-17.7 0-32 14.3-32 32v72c0 17.7 14.3 32 32 32s32-14.3 32-32V336c0-17.7-14.3-32-32-32z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Bullhorn / signal */
.fa-bullhorn,
.fa-broadcast-tower,
.fa-signal,
.fa-wave-square { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M480 32c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9L350.8 80h-9c-23.1 0-44.9 11.1-58.5 29.9L255.7 144H88c-48.6 0-88 39.4-88 88V296c0 13.3 10.7 24 24 24s24-10.7 24-24V232c0-22.1 17.9-40 40-40H224V336c0 35.3 28.7 64 64 64h32c35.3 0 64-28.7 64-64V224c0-26.5 21.5-48 48-48v48c0 26.5 21.5 48 48 48V32z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Heart-pulse / activity */
.fa-heart-pulse,
.fa-heartbeat { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M228.3 469.1L47.6 300.4c-4.2-3.9-8.2-8.1-11.9-12.4h87c8.6 0 16.5-4.6 20.8-12.1l32.3-56.5 67.1 188.0c2.2 6.1 7.7 10.4 14.2 10.9s12.6-2.8 15.7-8.5L300.6 320H464.4c-3.7 4.3-7.7 8.5-11.9 12.4L271.7 469.1c-6 5.6-13.9 8.7-22.2 8.7s-16.2-3.1-22.2-8.7zM503.7 240H361.9c-7.9 0-15.0 4.7-18.2 11.9l-23.7 53.3-65.7-184c-2.2-6.1-7.8-10.3-14.3-10.7s-12.5 3-15.6 8.6L189.8 240H73.4C26.7 240 0 213.3 0 167.5C0 88.4 64.5 24 144 24c40.1 0 78.0 16.6 105.2 45.3L264 84.7l14.8-15.4C306 40.6 343.9 24 384 24c79.5 0 144 64.4 144 143.5c0 25.3-8.1 47-21.3 65.7H504c0 2.3 0 4.6 0 6.8z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Memory */
.fa-memory { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M64 64C28.7 64 0 92.7 0 128v96 32 96c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V256 224 128c0-35.3-28.7-64-64-64H64zm96 192H96c-17.7 0-32-14.3-32-32V128c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32zm224 0H224c-17.7 0-32-14.3-32-32V128c0-17.7 14.3-32 32-32h160c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32zm160-32c0 17.7-14.3 32-32 32H448V96h64c17.7 0 32 14.3 32 32v96zM544 384v32c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V384h64v32c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384h128v32c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384h128z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Palette / art */
.fa-palette { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M512 256C512 397.4 397.4 512 256 512c-19.6 0-36.2-7.7-50-19.5c-9.4-8-15.7-19.2-18.0-31.6c-1.3-7.0-1.7-14.1-1.3-21.2c.4-7.0 1.8-13.8 4.1-20.1c2.3-6.3 5.6-11.9 9.7-16.6c4.1-4.7 9.0-8.5 14.5-11.0c5.5-2.5 11.6-3.6 17.7-3.4c5.7 0 11.0 .8 16.1 2.3l9.0 2.6c4.6 1.3 9.3 2.0 14.1 2.0c3.5 0 7.0-.5 10.4-1.6c3.4-1.0 6.7-2.6 9.7-4.6c3.0-2.0 5.7-4.5 8.1-7.3c2.4-2.9 4.5-6.2 6.1-9.7c1.7-3.6 3.0-7.5 3.7-11.7c.7-4.2 1.0-8.6 .7-13.1c-.3-4.5-1.0-9.0-2.2-13.4c-1.2-4.4-2.9-8.7-5.0-12.8c-2.1-4.1-4.7-7.9-7.7-11.4c-3.0-3.5-6.4-6.6-10.2-9.3c-3.8-2.7-7.9-5.0-12.3-6.8c-4.4-1.8-9.0-3.1-13.7-3.9c-4.7-.8-9.5-1.0-14.3-.7c-4.8 .3-9.5 1.2-14.0 2.7l-1.2 .4C176 247 137 192 137 128C137 57.3 194.3 0 265 0c136.7 0 247 110.3 247 256zM80 96a32 32 0 1 0 0 64 32 32 0 1 0 0-64zM48 224a32 32 0 1 0 64 0 32 32 0 1 0 -64 0zM160 64a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm160 0a32 32 0 1 0 0-64 32 32 0 1 0 0 64z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Help / book */
.fa-book,
.fa-book-open,
.fa-life-ring,
.fa-address-book { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M96 0C43 0 0 43 0 96V416c0 53 43 96 96 96H384h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V384c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H384 96zm0 384H352v64H96c-17.7 0-32-14.3-32-32s14.3-32 32-32zm32-240c0-8.8 7.2-16 16-16H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16zm16 48H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16s7.2-16 16-16z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Flask / lab */
.fa-flask,
.fa-vial,
.fa-stethoscope { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M288 0H160 128C110.3 0 96 14.3 96 32s14.3 32 32 32V196.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6C0 480.9 31.1 512 69.4 512H378.6c38.3 0 69.4-31.1 69.4-69.4c0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H288zM192 196.8V64H256V196.8c0 23.7 6.6 46.9 19.0 67.1L309.5 320h-171L173 263.9c12.4-20.2 19-43.4 19-67.1z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Pin / thumbtack */
.fa-thumbtack { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M32 32C32 14.3 46.3 0 64 0H320c17.7 0 32 14.3 32 32s-14.3 32-32 32H290.5l11.4 148.2c36.7 19.9 65.7 53.2 79.5 94.7l1 3c3.3 9.8 1.6 20.5-4.4 28.8s-15.7 13.3-26 13.3H32c-10.3 0-19.9-4.9-26-13.3s-7.7-19.1-4.4-28.8l1-3c13.8-41.5 42.8-74.8 79.5-94.7L93.5 64H64C46.3 64 32 49.7 32 32zM160 384h64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Diagram / route / network */
.fa-route,
.fa-diagram-project,
.fa-sitemap,
.fa-share-nodes,
.fa-code-branch { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M0 80C0 53.5 21.5 32 48 32h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H128v48H320V208H304c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H384v48h48c26.5 0 48 21.5 48 48v40h64V200c0-13.3 10.7-24 24-24s24 10.7 24 24V480c0 17.7-14.3 32-32 32H544c-17.7 0-32-14.3-32-32V440H480v48c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V440H64v32c0 17.7-14.3 32-32 32H16c-17.7 0-32-14.3-32-32V272c0-13.3 10.7-24 24-24s24 10.7 24 24v40h64V272c0-26.5 21.5-48 48-48h16V176H48c-26.5 0-48-21.5-48-48V80zM80 96v64h64V96H80zm240 0v64h64V96H320z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Hand / shoe / step */
.fa-shoe-prints,
.fa-handshake { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M323.4 85.2l-96.8 78.4c-16.1 13-19.2 36.4-7 53.1c12.9 17.8 38 21.3 55.3 7.8L370.7 184h54.7L555.6 314.4c14.4 14.4 36.8 16.8 53.6 5.4L640 295V128h-32V96.4c0-17-13.5-32-30.4-32h-87.4c-20.4 0-39.4 9.1-52.1 24.8l-67.4 84.1c-1.9-1.6-3.9-3.2-6.0-4.7l-87.6-70.1c-13.8-11-32.8-9.5-44.7 3.7zM48 224c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48H64v160c0 17.7 14.3 32 32 32s32-14.3 32-32V288H96V224H48z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Sticky note */
.fa-sticky-note,
.fa-n { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H288V368c0-26.5 21.5-48 48-48H448V96c0-35.3-28.7-64-64-64H64zM448 352H336c-8.8 0-16 7.2-16 16V480l128-128z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Cloud / AWS / cloud-arrow */
.fa-cloud,
.fa-aws,
.fa-github,
.fa-google-drive,
.fa-slack,
.fa-webhook { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M0 336c0 79.5 64.5 144 144 144H512c70.7 0 128-57.3 128-128c0-61.9-44-113.6-102.4-125.4c4.1-10.7 6.4-22.4 6.4-34.6c0-53-43-96-96-96c-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32C167.6 32 96 103.6 96 192c0 2.7 .1 5.4 .2 8.1C40.2 219.8 0 273.2 0 336z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Hashtag / tag */
.fa-hashtag,
.fa-tag { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M181.3 32.4c17.4 2.9 29.2 19.4 26.3 36.8L197.8 128h95.1l11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3s29.2 19.4 26.3 36.8L357.8 128H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H347.1L325.8 320H384c17.7 0 32 14.3 32 32s-14.3 32-32 32H315.1l-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l9.8-58.8H155.1l-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8L90.2 384H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l21.3-128H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3zM187.1 192L165.8 320h95.1l21.3-128H187.1z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Gavel / balance / law */
.fa-gavel,
.fa-scale-balanced,
.fa-balance-scale { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M318.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-120 120c-12.5 12.5-12.5 32.8 0 45.3l16 16c12.5 12.5 32.8 12.5 45.3 0L274.8 162.0l109.3 109.3c12.5 12.5 32.8 12.5 45.3 0l16-16c12.5-12.5 12.5-32.8 0-45.3l-126.0-126.0c-.6-.6 .6 .6 0 0zm-77.3 100.9l-92.2 92.2c-12.5 12.5-12.5 32.8 0 45.3L196.0 295.4c-3.0 8.4-4.7 17.5-4.7 26.6c0 44.2 35.8 80 80 80c44.2 0 80-35.8 80-80c0-44.2-35.8-80-80-80c-9.2 0-17.9 1.6-26.0 4.4l-50.0-50.0 102.0-102.0L362.3 184.7c12.5 12.5 32.8 12.5 45.3 0L502 89.5c12.5-12.5 12.5-32.8 0-45.3L341.2 -116.6c-12.5-12.5-32.8-12.5-45.3 0l-92.2 92.2c-12.5 12.5-12.5 32.8 0 45.3l32.7 32.7L241.3 110.3zM0 480c0 17.7 14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Boxes / inventory */
.fa-boxes-stacked,
.fa-layer-group,
.fa-grip,
.fa-th,
.fa-columns,
.fa-stream { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M50.7 58.5L0 160H208V32H93.7C75.5 32 58.9 42.3 50.7 58.5zM240 160H448L397.3 58.5C389.1 42.3 372.5 32 354.3 32H240V160zm208 32H0V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}

/* Wifi / satellite */
.fa-wifi,
.fa-satellite-dish { --ww-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M54.2 202.9C123.2 136.7 216.8 96 320 96s196.8 40.7 265.8 106.9c12.8 12.2 33 11.8 45.2-.9s11.8-33-.9-45.2C549.7 79.5 440.4 32 320 32S90.3 79.5 9.8 156.7C-2.9 169-3.3 189.2 8.9 202s32.5 13.2 45.2 .9zM320 256c56.8 0 108.6 21.1 148.2 56c13.3 11.7 33.5 10.4 45.2-2.8s10.4-33.5-2.8-45.2C459.8 219.2 393 192 320 192s-139.8 27.2-190.5 72c-13.3 11.7-14.5 31.9-2.8 45.2s31.9 14.5 45.2 2.8c39.5-34.9 91.3-56 148.2-56zm64 160a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z'/%3E%3C/svg%3E"); --ww-icon-bg: currentColor;}
