/* ── BEGIN shared layout — scripts/build-css.py, do not edit ── */
/* SINGLE SOURCE for header + footer styling — do not edit the copies.
   scripts/build-css.py injects this block at the top of every page stylesheet,
   so page-specific rules that come later still win. The markup it styles is
   rendered from layout.py. Edit here, then run:  python3 scripts/build-css.py

   Fallbacks are spelled out in every var() because the static page stylesheets
   define only --bg and --text, not the full palette the app pages carry. */

header { background: var(--bg, #eef3ee); border-bottom: none; box-shadow: 0 3px 8px rgba(0,0,0,0.18); padding: 8px 0 0; position: relative; }
header::after { content:""; display:block; height:3px; margin-top:8px; background:linear-gradient(90deg,#1a56c4 0%,#1a56c4 33%,#FCD116 33%,#FCD116 67%,#CE1126 67%,#CE1126 100%); }
.header-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 14px; }

.brand { display: flex; align-items: center; gap: 9px; text-decoration: none; flex-shrink: 0; }
.brand-logo { flex-shrink: 0; display: block; }
.brand-text { display: flex; flex-direction: column; gap: 3px; }
.brand-title { font-size: 1.32rem; font-weight: 800; color: #1a56c4; letter-spacing: -0.5px; line-height: 1.1; }
.brand-title .wr-ro { color: #b45309; font-weight: 900; }
.brand-subtitle { font-size: 0.58rem; font-weight: 600; color: rgba(0,0,0,0.62); letter-spacing: 0.16em; line-height: 1; white-space: nowrap; text-transform: uppercase; margin-top: 3px; }

.header-location { flex: 1; display: flex; align-items: center; gap: 8px; min-width: 0; }
.location-pill { display: flex; align-items: center; gap: 7px; background: none; border: none; border-radius: 0; padding: 5px 6px 5px 0; color: rgba(0,0,0,0.75); font-size: 0.85rem; font-weight: 500; cursor: pointer; min-width: 0; max-width: 220px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.location-pill i { color: rgba(0,0,0,0.55); font-size: 0.8rem; flex-shrink: 0; }
.location-pill span { overflow: hidden; text-overflow: ellipsis; }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto; }

.lang-switcher { display: flex; align-items: center; gap: 3px; flex-shrink: 0; margin-left: auto; }
.header-actions .lang-switcher { margin-left: 0; }
.lang-btn { font-size: 0.72rem; font-weight: 700; color: rgba(0,0,0,0.68); text-decoration: none; padding: 3px 7px; border-radius: 4px; border: none; letter-spacing: 0.05em; transition: color 0.15s, background 0.15s; }
.lang-btn:hover { color: #1a1a2e; background: rgba(0,0,0,0.08); }
.lang-active { color: #1a1a2e !important; background: rgba(0,0,0,0.08); border: none; }

.icon-btn { background: none; border: none; color: rgba(0,0,0,0.62); width: 34px; height: 34px; border-radius: 4px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: color 0.2s, transform 0.15s; }
.icon-btn:hover { color: #000; background: none; transform: scale(1.12); }
.unit-toggle-btn { font-size: 0.75rem; font-weight: 900; letter-spacing: 0.04em; min-width: 34px; font-family: inherit; padding: 0; }
.gps-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--pill-bg, rgba(0,0,0,0.06)); border: none; color: rgba(0,0,0,0.72); border-radius: 4px; padding: 5px 12px; font-size: 0.81rem; font-weight: 500; cursor: pointer; white-space: nowrap; transition: background 0.2s, transform 0.15s; font-family: inherit; }
.gps-btn:hover { background: rgba(0,0,0,0.12); transform: translateY(-1px); }
.gps-btn i { font-size: 0.76rem; }

.mobile-menu-btn { display: none; background: var(--icon-btn-bg, rgba(0,0,0,0.06)); border: none; color: rgba(0,0,0,0.65); width: 34px; height: 34px; border-radius: 4px; cursor: pointer; font-size: 1rem; align-items: center; justify-content: center; flex-shrink: 0; }
.mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #ffffff; border-top: 1px solid rgba(0,0,0,0.08); box-shadow: 0 8px 24px rgba(0,0,0,0.25); border-radius: 0 0 4px 4px; z-index: 99; padding: 12px 20px 16px; flex-direction: column; gap: 12px; }
.mobile-menu.open { display: flex; }
.mobile-menu-row { display: flex; align-items: center; gap: 10px; }
.mobile-menu-label { font-size: 0.75rem; color: rgba(0,0,0,0.55); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; min-width: 64px; }
.mobile-search-btn { display: flex; align-items: center; gap: 8px; background: var(--pill-bg, rgba(0,0,0,0.06)); border: 1px solid var(--pill-border, rgba(0,0,0,0.15)); color: rgba(0,0,0,0.70); border-radius: 4px; padding: 7px 14px; font-size: 0.84rem; font-weight: 500; cursor: pointer; font-family: inherit; width: 100%; }

.site-footer { background: #212121; color: rgba(255,255,255,0.75); padding: 36px 0 24px; margin-top: 40px; }
.site-footer .footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.footer-cities-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-bottom: 14px; }
.footer-cities { display: flex; flex-wrap: wrap; gap: 8px 6px; margin-bottom: 28px; }
.footer-cities a { color: rgba(255,255,255,0.88); text-decoration: none; font-size: 0.84rem; background: rgba(255,255,255,0.12); border: none; border-radius: 4px; padding: 4px 10px; transition: background 0.15s; }
.footer-cities a:hover { background: rgba(255,255,255,0.22); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 16px; font-size: 0.78rem; color: rgba(255,255,255,0.62); display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.footer-bottom a { color: rgba(255,255,255,0.78); text-decoration: none; }
.footer-bottom a:hover { color: #fff; text-decoration: underline; }
.footer-credit { margin-top: 14px; font-size: 0.74rem; color: rgba(255,255,255,0.62); }
.footer-credit a { color: rgba(255,255,255,0.78); }

[data-theme="dark"] header { background: #181818; border-bottom-color: rgba(255,255,255,0.06); box-shadow: 0 4px 24px rgba(0,0,0,0.32); }
[data-theme="dark"] .brand-title { color: #fff; }
[data-theme="dark"] .brand-title .wr-ro { color: #fbbf24; }
[data-theme="dark"] .brand-subtitle { color: rgba(255,255,255,0.62); }
[data-theme="dark"] .location-pill { color: rgba(255,255,255,0.92); }
[data-theme="dark"] .location-pill i { color: rgba(255,255,255,0.75); }
[data-theme="dark"] .icon-btn { color: rgba(255,255,255,0.75); }
[data-theme="dark"] .icon-btn:hover { color: #fff; }
[data-theme="dark"] .gps-btn { color: rgba(255,255,255,0.88); }
[data-theme="dark"] .gps-btn:hover { background: rgba(255,255,255,0.20); }
[data-theme="dark"] .lang-btn { color: rgba(255,255,255,0.72); border: none; }
[data-theme="dark"] .lang-btn.lang-active, [data-theme="dark"] .lang-btn:hover { color: #fff; background: rgba(255,255,255,0.15); border: none; }
[data-theme="dark"] .mobile-menu-btn { color: rgba(255,255,255,0.88); }
[data-theme="dark"] .mobile-search-btn { color: rgba(255,255,255,0.9); }
[data-theme="dark"] .mobile-menu-label { color: rgba(255,255,255,0.62); }
[data-theme="dark"] .mobile-menu { background: #181818; border-top-color: rgba(255,255,255,0.10); }

@media (max-width: 768px) {
  .header-actions { display: none; }
  .search-btn-desktop { display: none; }
  .mobile-menu-btn { display: flex; }
  #gps-btn-mobile { display: flex !important; }
}
@media (max-width: 480px) {
  .brand-text { display: none; }
}
/* ── END shared layout ── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root { --accent:#1a6b3a; --bg:#eef3ee; --card-bg:#fff; --card-border:rgba(0,0,0,.07); --text:#0f172a; --muted:#556575; }
    body { font-family:'Inter',sans-serif; background:var(--bg); color:var(--text); line-height:1.6; }
    main { max-width:1100px; margin:0 auto; padding:32px 20px 80px; }
    .back { display:inline-flex; align-items:center; gap:6px; color:var(--accent); text-decoration:none; font-size:0.85rem; font-weight:500; margin-bottom:12px; }
    .back:hover { text-decoration:underline; }
    .breadcrumb { font-size:0.78rem; color:var(--muted); margin-bottom:24px; }
    .breadcrumb a { color:var(--accent); text-decoration:underline; }
    h1 { font-size:1.7rem; font-weight:700; margin-bottom:12px; }
    h2 { font-size:1.15rem; font-weight:700; margin:32px 0 12px; }
    h3 { font-size:0.95rem; font-weight:700; margin:20px 0 8px; }
    .lead { font-size:1.02rem; color:var(--muted); margin-bottom:24px; line-height:1.7; }
    .stat-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:32px; }
    .stat-card { background:var(--card-bg); border:1px solid var(--card-border); border-radius:4px; padding:16px; text-align:center; }
    .stat-icon { font-size:1.6rem; margin-bottom:6px; }
    .stat-val { font-size:1.5rem; font-weight:700; }
    .stat-label { font-size:0.75rem; color:var(--muted); margin-top:2px; }
    .activity-list { padding-left:20px; color:var(--muted); line-height:2.2; font-size:0.9rem; margin-bottom:28px; }
    .tip-box { background:#e6f9ef; border:1px solid #86efac; border-radius:4px; padding:16px 20px; margin:24px 0; font-size:0.9rem; }
    .climate-table { width:100%; border-collapse:collapse; margin:16px 0 32px; font-size:0.88rem; }
    .climate-table th { background:#1a6b3a; color:#fff; padding:10px 12px; text-align:left; font-weight:600; }
    .climate-table td { padding:9px 12px; border-bottom:1px solid var(--card-border); }
    .climate-table tr:nth-child(even) td { background:#f8faf9; }
    .month-nav, .region-nav { display:flex; flex-wrap:wrap; gap:6px; margin-top:16px; }
    .month-pill, .region-pill { text-decoration:none; padding:6px 14px; border-radius:4px; font-size:0.82rem; font-weight:600; background:var(--card-bg); border:1px solid var(--card-border); color:var(--text); transition:background .15s,border-color .15s,color .15s; }
    .month-pill:hover, .region-pill:hover, .month-pill.active, .region-pill.active { background:#1a6b3a; color:#fff; border-color:#1a6b3a; }
    .lang-links { display:inline-flex; gap:10px; margin-top:6px; }
    .lang-links a { font-size:0.75rem; font-weight:600; color:rgba(255,255,255,.55); text-decoration:none; padding:2px 8px; border:1px solid rgba(255,255,255,.25); border-radius:4px; transition:color .15s; }
    .lang-links a:hover { color:#fff; }
    @media (max-width:600px) { .stat-grid { grid-template-columns:1fr 1fr; } h1 { font-size:1.35rem; } }
    .faq-section-static { margin-top: 40px; }
    .faq-section-static h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 14px; }
    .faq-section-static details { background: #fff; border: 1px solid rgba(0,0,0,.07); border-radius: 4px; margin-bottom: 8px; }
    .faq-section-static details summary { padding: 14px 16px; font-weight: 600; font-size: 0.9rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
    .faq-section-static details summary::after { content: '+'; font-size: 1.1rem; color: #556575; flex-shrink: 0; }
    .faq-section-static details[open] summary::after { content: '−'; }
    .faq-section-static details p { padding: 0 16px 14px; font-size: 0.88rem; color: #374151; line-height: 1.65; }

/* ── BEGIN generated icons — scripts/build-css.py, do not edit ── */
/* MASTER LIST — no page links this file. scripts/build-icons.py copies the
   rules each page type needs into that page's own stylesheet, so a page
   ships ~9-25 icons instead of all 51. Edit here, then re-run the script.

   Font Awesome Free 6.5.2 — only the icons this site actually uses.
   Replaces the full CDN stylesheet (~110 KB CSS + ~400 KB of webfonts) with
   inline SVG masks, so nothing is fetched from a third party. The mask is
   painted with currentColor, so icons keep inheriting the text colour exactly
   as the webfont version did.
   Icons: CC BY 4.0 — https://fontawesome.com/license/free */
.fa-solid, .fa-regular, .fa-brands, .fas, .far, .fab {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center;  mask-position: center;
  -webkit-mask-size: contain;     mask-size: contain;
}
.fa-sm { font-size: 0.875em; }
.fa-lg { font-size: 1.25em; }
.fa-2x { font-size: 2em; }
.fa-fw { width: 1.25em; }
.fa-arrow-left { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M9.4%20233.4c-12.5%2012.5-12.5%2032.8%200%2045.3l160%20160c12.5%2012.5%2032.8%2012.5%2045.3%200s12.5-32.8%200-45.3L109.2%20288%20416%20288c17.7%200%2032-14.3%2032-32s-14.3-32-32-32l-306.7%200L214.6%20118.6c12.5-12.5%2012.5-32.8%200-45.3s-32.8-12.5-45.3%200l-160%20160z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M9.4%20233.4c-12.5%2012.5-12.5%2032.8%200%2045.3l160%20160c12.5%2012.5%2032.8%2012.5%2045.3%200s12.5-32.8%200-45.3L109.2%20288%20416%20288c17.7%200%2032-14.3%2032-32s-14.3-32-32-32l-306.7%200L214.6%20118.6c12.5-12.5%2012.5-32.8%200-45.3s-32.8-12.5-45.3%200l-160%20160z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-binoculars { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M128%2032h32c17.7%200%2032%2014.3%2032%2032V96H96V64c0-17.7%2014.3-32%2032-32zm64%2096V448c0%2017.7-14.3%2032-32%2032H32c-17.7%200-32-14.3-32-32V388.9c0-34.6%209.4-68.6%2027.2-98.3C40.9%20267.8%2049.7%20242.4%2053%20216L60.5%20156c2-16%2015.6-28%2031.8-28H192zm227.8%200c16.1%200%2029.8%2012%2031.8%2028L459%20216c3.3%2026.4%2012.1%2051.8%2025.8%2074.6c17.8%2029.7%2027.2%2063.7%2027.2%2098.3V448c0%2017.7-14.3%2032-32%2032H352c-17.7%200-32-14.3-32-32V128h99.8zM320%2064c0-17.7%2014.3-32%2032-32h32c17.7%200%2032%2014.3%2032%2032V96H320V64zm-32%2064V288H224V128h64z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M128%2032h32c17.7%200%2032%2014.3%2032%2032V96H96V64c0-17.7%2014.3-32%2032-32zm64%2096V448c0%2017.7-14.3%2032-32%2032H32c-17.7%200-32-14.3-32-32V388.9c0-34.6%209.4-68.6%2027.2-98.3C40.9%20267.8%2049.7%20242.4%2053%20216L60.5%20156c2-16%2015.6-28%2031.8-28H192zm227.8%200c16.1%200%2029.8%2012%2031.8%2028L459%20216c3.3%2026.4%2012.1%2051.8%2025.8%2074.6c17.8%2029.7%2027.2%2063.7%2027.2%2098.3V448c0%2017.7-14.3%2032-32%2032H352c-17.7%200-32-14.3-32-32V128h99.8zM320%2064c0-17.7%2014.3-32%2032-32h32c17.7%200%2032%2014.3%2032%2032V96H320V64zm-32%2064V288H224V128h64z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-chess-rook { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M32%20192V48c0-8.8%207.2-16%2016-16h64c8.8%200%2016%207.2%2016%2016V88c0%204.4%203.6%208%208%208h32c4.4%200%208-3.6%208-8V48c0-8.8%207.2-16%2016-16h64c8.8%200%2016%207.2%2016%2016V88c0%204.4%203.6%208%208%208h32c4.4%200%208-3.6%208-8V48c0-8.8%207.2-16%2016-16h64c8.8%200%2016%207.2%2016%2016V192c0%2010.1-4.7%2019.6-12.8%2025.6L352%20256l16%20144H80L96%20256%2044.8%20217.6C36.7%20211.6%2032%20202.1%2032%20192zm176%2096h32c8.8%200%2016-7.2%2016-16V224c0-17.7-14.3-32-32-32s-32%2014.3-32%2032v48c0%208.8%207.2%2016%2016%2016zM22.6%20473.4L64%20432H384l41.4%2041.4c4.2%204.2%206.6%2010%206.6%2016c0%2012.5-10.1%2022.6-22.6%2022.6H38.6C26.1%20512%2016%20501.9%2016%20489.4c0-6%202.4-11.8%206.6-16z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M32%20192V48c0-8.8%207.2-16%2016-16h64c8.8%200%2016%207.2%2016%2016V88c0%204.4%203.6%208%208%208h32c4.4%200%208-3.6%208-8V48c0-8.8%207.2-16%2016-16h64c8.8%200%2016%207.2%2016%2016V88c0%204.4%203.6%208%208%208h32c4.4%200%208-3.6%208-8V48c0-8.8%207.2-16%2016-16h64c8.8%200%2016%207.2%2016%2016V192c0%2010.1-4.7%2019.6-12.8%2025.6L352%20256l16%20144H80L96%20256%2044.8%20217.6C36.7%20211.6%2032%20202.1%2032%20192zm176%2096h32c8.8%200%2016-7.2%2016-16V224c0-17.7-14.3-32-32-32s-32%2014.3-32%2032v48c0%208.8%207.2%2016%2016%2016zM22.6%20473.4L64%20432H384l41.4%2041.4c4.2%204.2%206.6%2010%206.6%2016c0%2012.5-10.1%2022.6-22.6%2022.6H38.6C26.1%20512%2016%20501.9%2016%20489.4c0-6%202.4-11.8%206.6-16z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-chevron-right { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20320%20512%22%3E%3Cpath%20d%3D%22M310.6%20233.4c12.5%2012.5%2012.5%2032.8%200%2045.3l-192%20192c-12.5%2012.5-32.8%2012.5-45.3%200s-12.5-32.8%200-45.3L242.7%20256%2073.4%2086.6c-12.5-12.5-12.5-32.8%200-45.3s32.8-12.5%2045.3%200l192%20192z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20320%20512%22%3E%3Cpath%20d%3D%22M310.6%20233.4c12.5%2012.5%2012.5%2032.8%200%2045.3l-192%20192c-12.5%2012.5-32.8%2012.5-45.3%200s-12.5-32.8%200-45.3L242.7%20256%2073.4%2086.6c-12.5-12.5-12.5-32.8%200-45.3s32.8-12.5%2045.3%200l192%20192z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-church { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20640%20512%22%3E%3Cpath%20d%3D%22M344%2024c0-13.3-10.7-24-24-24s-24%2010.7-24%2024V48H264c-13.3%200-24%2010.7-24%2024s10.7%2024%2024%2024h32v46.4L183.3%20210c-14.5%208.7-23.3%2024.3-23.3%2041.2V512h96V416c0-35.3%2028.7-64%2064-64s64%2028.7%2064%2064v96h96V251.2c0-16.9-8.8-32.5-23.3-41.2L344%20142.4V96h32c13.3%200%2024-10.7%2024-24s-10.7-24-24-24H344V24zM24.9%20330.3C9.5%20338.8%200%20354.9%200%20372.4V464c0%2026.5%2021.5%2048%2048%2048h80V273.6L24.9%20330.3zM592%20512c26.5%200%2048-21.5%2048-48V372.4c0-17.5-9.5-33.6-24.9-42.1L512%20273.6V512h80z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20640%20512%22%3E%3Cpath%20d%3D%22M344%2024c0-13.3-10.7-24-24-24s-24%2010.7-24%2024V48H264c-13.3%200-24%2010.7-24%2024s10.7%2024%2024%2024h32v46.4L183.3%20210c-14.5%208.7-23.3%2024.3-23.3%2041.2V512h96V416c0-35.3%2028.7-64%2064-64s64%2028.7%2064%2064v96h96V251.2c0-16.9-8.8-32.5-23.3-41.2L344%20142.4V96h32c13.3%200%2024-10.7%2024-24s-10.7-24-24-24H344V24zM24.9%20330.3C9.5%20338.8%200%20354.9%200%20372.4V464c0%2026.5%2021.5%2048%2048%2048h80V273.6L24.9%20330.3zM592%20512c26.5%200%2048-21.5%2048-48V372.4c0-17.5-9.5-33.6-24.9-42.1L512%20273.6V512h80z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-circle-check { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M256%20512A256%20256%200%201%200%20256%200a256%20256%200%201%200%200%20512zM369%20209L241%20337c-9.4%209.4-24.6%209.4-33.9%200l-64-64c-9.4-9.4-9.4-24.6%200-33.9s24.6-9.4%2033.9%200l47%2047L335%20175c9.4-9.4%2024.6-9.4%2033.9%200s9.4%2024.6%200%2033.9z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M256%20512A256%20256%200%201%200%20256%200a256%20256%200%201%200%200%20512zM369%20209L241%20337c-9.4%209.4-24.6%209.4-33.9%200l-64-64c-9.4-9.4-9.4-24.6%200-33.9s24.6-9.4%2033.9%200l47%2047L335%20175c9.4-9.4%2024.6-9.4%2033.9%200s9.4%2024.6%200%2033.9z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-circle-info { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M256%20512A256%20256%200%201%200%20256%200a256%20256%200%201%200%200%20512zM216%20336h24V272H216c-13.3%200-24-10.7-24-24s10.7-24%2024-24h48c13.3%200%2024%2010.7%2024%2024v88h8c13.3%200%2024%2010.7%2024%2024s-10.7%2024-24%2024H216c-13.3%200-24-10.7-24-24s10.7-24%2024-24zm40-208a32%2032%200%201%201%200%2064%2032%2032%200%201%201%200-64z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M256%20512A256%20256%200%201%200%20256%200a256%20256%200%201%200%200%20512zM216%20336h24V272H216c-13.3%200-24-10.7-24-24s10.7-24%2024-24h48c13.3%200%2024%2010.7%2024%2024v88h8c13.3%200%2024%2010.7%2024%2024s-10.7%2024-24%2024H216c-13.3%200-24-10.7-24-24s10.7-24%2024-24zm40-208a32%2032%200%201%201%200%2064%2032%2032%200%201%201%200-64z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-city { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20640%20512%22%3E%3Cpath%20d%3D%22M480%2048c0-26.5-21.5-48-48-48H336c-26.5%200-48%2021.5-48%2048V96H224V24c0-13.3-10.7-24-24-24s-24%2010.7-24%2024V96H112V24c0-13.3-10.7-24-24-24S64%2010.7%2064%2024V96H48C21.5%2096%200%20117.5%200%20144v96V464c0%2026.5%2021.5%2048%2048%2048H304h32%2096H592c26.5%200%2048-21.5%2048-48V240c0-26.5-21.5-48-48-48H480V48zm96%20320v32c0%208.8-7.2%2016-16%2016H528c-8.8%200-16-7.2-16-16V368c0-8.8%207.2-16%2016-16h32c8.8%200%2016%207.2%2016%2016zM240%20416H208c-8.8%200-16-7.2-16-16V368c0-8.8%207.2-16%2016-16h32c8.8%200%2016%207.2%2016%2016v32c0%208.8-7.2%2016-16%2016zM128%20400c0%208.8-7.2%2016-16%2016H80c-8.8%200-16-7.2-16-16V368c0-8.8%207.2-16%2016-16h32c8.8%200%2016%207.2%2016%2016v32zM560%20256c8.8%200%2016%207.2%2016%2016v32c0%208.8-7.2%2016-16%2016H528c-8.8%200-16-7.2-16-16V272c0-8.8%207.2-16%2016-16h32zM256%20176v32c0%208.8-7.2%2016-16%2016H208c-8.8%200-16-7.2-16-16V176c0-8.8%207.2-16%2016-16h32c8.8%200%2016%207.2%2016%2016zM112%20160c8.8%200%2016%207.2%2016%2016v32c0%208.8-7.2%2016-16%2016H80c-8.8%200-16-7.2-16-16V176c0-8.8%207.2-16%2016-16h32zM256%20304c0%208.8-7.2%2016-16%2016H208c-8.8%200-16-7.2-16-16V272c0-8.8%207.2-16%2016-16h32c8.8%200%2016%207.2%2016%2016v32zM112%20320H80c-8.8%200-16-7.2-16-16V272c0-8.8%207.2-16%2016-16h32c8.8%200%2016%207.2%2016%2016v32c0%208.8-7.2%2016-16%2016zm304-48v32c0%208.8-7.2%2016-16%2016H368c-8.8%200-16-7.2-16-16V272c0-8.8%207.2-16%2016-16h32c8.8%200%2016%207.2%2016%2016zM400%2064c8.8%200%2016%207.2%2016%2016v32c0%208.8-7.2%2016-16%2016H368c-8.8%200-16-7.2-16-16V80c0-8.8%207.2-16%2016-16h32zm16%20112v32c0%208.8-7.2%2016-16%2016H368c-8.8%200-16-7.2-16-16V176c0-8.8%207.2-16%2016-16h32c8.8%200%2016%207.2%2016%2016z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20640%20512%22%3E%3Cpath%20d%3D%22M480%2048c0-26.5-21.5-48-48-48H336c-26.5%200-48%2021.5-48%2048V96H224V24c0-13.3-10.7-24-24-24s-24%2010.7-24%2024V96H112V24c0-13.3-10.7-24-24-24S64%2010.7%2064%2024V96H48C21.5%2096%200%20117.5%200%20144v96V464c0%2026.5%2021.5%2048%2048%2048H304h32%2096H592c26.5%200%2048-21.5%2048-48V240c0-26.5-21.5-48-48-48H480V48zm96%20320v32c0%208.8-7.2%2016-16%2016H528c-8.8%200-16-7.2-16-16V368c0-8.8%207.2-16%2016-16h32c8.8%200%2016%207.2%2016%2016zM240%20416H208c-8.8%200-16-7.2-16-16V368c0-8.8%207.2-16%2016-16h32c8.8%200%2016%207.2%2016%2016v32c0%208.8-7.2%2016-16%2016zM128%20400c0%208.8-7.2%2016-16%2016H80c-8.8%200-16-7.2-16-16V368c0-8.8%207.2-16%2016-16h32c8.8%200%2016%207.2%2016%2016v32zM560%20256c8.8%200%2016%207.2%2016%2016v32c0%208.8-7.2%2016-16%2016H528c-8.8%200-16-7.2-16-16V272c0-8.8%207.2-16%2016-16h32zM256%20176v32c0%208.8-7.2%2016-16%2016H208c-8.8%200-16-7.2-16-16V176c0-8.8%207.2-16%2016-16h32c8.8%200%2016%207.2%2016%2016zM112%20160c8.8%200%2016%207.2%2016%2016v32c0%208.8-7.2%2016-16%2016H80c-8.8%200-16-7.2-16-16V176c0-8.8%207.2-16%2016-16h32zM256%20304c0%208.8-7.2%2016-16%2016H208c-8.8%200-16-7.2-16-16V272c0-8.8%207.2-16%2016-16h32c8.8%200%2016%207.2%2016%2016v32zM112%20320H80c-8.8%200-16-7.2-16-16V272c0-8.8%207.2-16%2016-16h32c8.8%200%2016%207.2%2016%2016v32c0%208.8-7.2%2016-16%2016zm304-48v32c0%208.8-7.2%2016-16%2016H368c-8.8%200-16-7.2-16-16V272c0-8.8%207.2-16%2016-16h32c8.8%200%2016%207.2%2016%2016zM400%2064c8.8%200%2016%207.2%2016%2016v32c0%208.8-7.2%2016-16%2016H368c-8.8%200-16-7.2-16-16V80c0-8.8%207.2-16%2016-16h32zm16%20112v32c0%208.8-7.2%2016-16%2016H368c-8.8%200-16-7.2-16-16V176c0-8.8%207.2-16%2016-16h32c8.8%200%2016%207.2%2016%2016z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-cloud-rain { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M96%20320c-53%200-96-43-96-96c0-42.5%2027.6-78.6%2065.9-91.2C64.7%20126.1%2064%20119.1%2064%20112C64%2050.1%20114.1%200%20176%200c43.1%200%2080.5%2024.3%2099.2%2060c14.7-17.1%2036.5-28%2060.8-28c44.2%200%2080%2035.8%2080%2080c0%205.5-.6%2010.8-1.6%2016c.5%200%201.1%200%201.6%200c53%200%2096%2043%2096%2096s-43%2096-96%2096H96zm-6.8%2052c1.3-2.5%203.9-4%206.8-4s5.4%201.5%206.8%204l35.1%2064.6c4.1%207.5%206.2%2015.8%206.2%2024.3v3c0%2026.5-21.5%2048-48%2048s-48-21.5-48-48v-3c0-8.5%202.1-16.9%206.2-24.3L89.2%20372zm160%200c1.3-2.5%203.9-4%206.8-4s5.4%201.5%206.8%204l35.1%2064.6c4.1%207.5%206.2%2015.8%206.2%2024.3v3c0%2026.5-21.5%2048-48%2048s-48-21.5-48-48v-3c0-8.5%202.1-16.9%206.2-24.3L249.2%20372zm124.9%2064.6L409.2%20372c1.3-2.5%203.9-4%206.8-4s5.4%201.5%206.8%204l35.1%2064.6c4.1%207.5%206.2%2015.8%206.2%2024.3v3c0%2026.5-21.5%2048-48%2048s-48-21.5-48-48v-3c0-8.5%202.1-16.9%206.2-24.3z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M96%20320c-53%200-96-43-96-96c0-42.5%2027.6-78.6%2065.9-91.2C64.7%20126.1%2064%20119.1%2064%20112C64%2050.1%20114.1%200%20176%200c43.1%200%2080.5%2024.3%2099.2%2060c14.7-17.1%2036.5-28%2060.8-28c44.2%200%2080%2035.8%2080%2080c0%205.5-.6%2010.8-1.6%2016c.5%200%201.1%200%201.6%200c53%200%2096%2043%2096%2096s-43%2096-96%2096H96zm-6.8%2052c1.3-2.5%203.9-4%206.8-4s5.4%201.5%206.8%204l35.1%2064.6c4.1%207.5%206.2%2015.8%206.2%2024.3v3c0%2026.5-21.5%2048-48%2048s-48-21.5-48-48v-3c0-8.5%202.1-16.9%206.2-24.3L89.2%20372zm160%200c1.3-2.5%203.9-4%206.8-4s5.4%201.5%206.8%204l35.1%2064.6c4.1%207.5%206.2%2015.8%206.2%2024.3v3c0%2026.5-21.5%2048-48%2048s-48-21.5-48-48v-3c0-8.5%202.1-16.9%206.2-24.3L249.2%20372zm124.9%2064.6L409.2%20372c1.3-2.5%203.9-4%206.8-4s5.4%201.5%206.8%204l35.1%2064.6c4.1%207.5%206.2%2015.8%206.2%2024.3v3c0%2026.5-21.5%2048-48%2048s-48-21.5-48-48v-3c0-8.5%202.1-16.9%206.2-24.3z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-fish { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20576%20512%22%3E%3Cpath%20d%3D%22M180.5%20141.5C219.7%20108.5%20272.6%2080%20336%2080s116.3%2028.5%20155.5%2061.5c39.1%2033%2066.9%2072.4%2081%2099.8c4.7%209.2%204.7%2020.1%200%2029.3c-14.1%2027.4-41.9%2066.8-81%2099.8C452.3%20403.5%20399.4%20432%20336%20432s-116.3-28.5-155.5-61.5c-16.2-13.7-30.5-28.5-42.7-43.1L48.1%20379.6c-12.5%207.3-28.4%205.3-38.7-4.9S-3%20348.7%204.2%20336.1L50%20256%204.2%20175.9c-7.2-12.6-5-28.4%205.3-38.6s26.1-12.2%2038.7-4.9l89.7%2052.3c12.2-14.6%2026.5-29.4%2042.7-43.1zM448%20256a32%2032%200%201%200%20-64%200%2032%2032%200%201%200%2064%200z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20576%20512%22%3E%3Cpath%20d%3D%22M180.5%20141.5C219.7%20108.5%20272.6%2080%20336%2080s116.3%2028.5%20155.5%2061.5c39.1%2033%2066.9%2072.4%2081%2099.8c4.7%209.2%204.7%2020.1%200%2029.3c-14.1%2027.4-41.9%2066.8-81%2099.8C452.3%20403.5%20399.4%20432%20336%20432s-116.3-28.5-155.5-61.5c-16.2-13.7-30.5-28.5-42.7-43.1L48.1%20379.6c-12.5%207.3-28.4%205.3-38.7-4.9S-3%20348.7%204.2%20336.1L50%20256%204.2%20175.9c-7.2-12.6-5-28.4%205.3-38.6s26.1-12.2%2038.7-4.9l89.7%2052.3c12.2-14.6%2026.5-29.4%2042.7-43.1zM448%20256a32%2032%200%201%200%20-64%200%2032%2032%200%201%200%2064%200z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-leaf { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M272%2096c-78.6%200-145.1%2051.5-167.7%20122.5c33.6-17%2071.5-26.5%20111.7-26.5h88c8.8%200%2016%207.2%2016%2016s-7.2%2016-16%2016H288%20216s0%200%200%200c-16.6%200-32.7%201.9-48.3%205.4c-25.9%205.9-49.9%2016.4-71.4%2030.7c0%200%200%200%200%200C38.3%20298.8%200%20364.9%200%20440v16c0%2013.3%2010.7%2024%2024%2024s24-10.7%2024-24V440c0-48.7%2020.7-92.5%2053.8-123.2C121.6%20392.3%20190.3%20448%20272%20448l1%200c132.1-.7%20239-130.9%20239-291.4c0-42.6-7.5-83.1-21.1-119.6c-2.6-6.9-12.7-6.6-16.2-.1C455.9%2072.1%20418.7%2096%20376%2096L272%2096z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M272%2096c-78.6%200-145.1%2051.5-167.7%20122.5c33.6-17%2071.5-26.5%20111.7-26.5h88c8.8%200%2016%207.2%2016%2016s-7.2%2016-16%2016H288%20216s0%200%200%200c-16.6%200-32.7%201.9-48.3%205.4c-25.9%205.9-49.9%2016.4-71.4%2030.7c0%200%200%200%200%200C38.3%20298.8%200%20364.9%200%20440v16c0%2013.3%2010.7%2024%2024%2024s24-10.7%2024-24V440c0-48.7%2020.7-92.5%2053.8-123.2C121.6%20392.3%20190.3%20448%20272%20448l1%200c132.1-.7%20239-130.9%20239-291.4c0-42.6-7.5-83.1-21.1-119.6c-2.6-6.9-12.7-6.6-16.2-.1C455.9%2072.1%20418.7%2096%20376%2096L272%2096z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-lightbulb { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20384%20512%22%3E%3Cpath%20d%3D%22M272%20384c9.6-31.9%2029.5-59.1%2049.2-86.2l0%200c5.2-7.1%2010.4-14.2%2015.4-21.4c19.8-28.5%2031.4-63%2031.4-100.3C368%2078.8%20289.2%200%20192%200S16%2078.8%2016%20176c0%2037.3%2011.6%2071.9%2031.4%20100.3c5%207.2%2010.2%2014.3%2015.4%2021.4l0%200c19.8%2027.1%2039.7%2054.4%2049.2%2086.2H272zM192%20512c44.2%200%2080-35.8%2080-80V416H112v16c0%2044.2%2035.8%2080%2080%2080zM112%20176c0%208.8-7.2%2016-16%2016s-16-7.2-16-16c0-61.9%2050.1-112%20112-112c8.8%200%2016%207.2%2016%2016s-7.2%2016-16%2016c-44.2%200-80%2035.8-80%2080z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20384%20512%22%3E%3Cpath%20d%3D%22M272%20384c9.6-31.9%2029.5-59.1%2049.2-86.2l0%200c5.2-7.1%2010.4-14.2%2015.4-21.4c19.8-28.5%2031.4-63%2031.4-100.3C368%2078.8%20289.2%200%20192%200S16%2078.8%2016%20176c0%2037.3%2011.6%2071.9%2031.4%20100.3c5%207.2%2010.2%2014.3%2015.4%2021.4l0%200c19.8%2027.1%2039.7%2054.4%2049.2%2086.2H272zM192%20512c44.2%200%2080-35.8%2080-80V416H112v16c0%2044.2%2035.8%2080%2080%2080zM112%20176c0%208.8-7.2%2016-16%2016s-16-7.2-16-16c0-61.9%2050.1-112%20112-112c8.8%200%2016%207.2%2016%2016s-7.2%2016-16%2016c-44.2%200-80%2035.8-80%2080z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-location-dot { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20384%20512%22%3E%3Cpath%20d%3D%22M215.7%20499.2C267%20435%20384%20279.4%20384%20192C384%2086%20298%200%20192%200S0%2086%200%20192c0%2087.4%20117%20243%20168.3%20307.2c12.3%2015.3%2035.1%2015.3%2047.4%200zM192%20128a64%2064%200%201%201%200%20128%2064%2064%200%201%201%200-128z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20384%20512%22%3E%3Cpath%20d%3D%22M215.7%20499.2C267%20435%20384%20279.4%20384%20192C384%2086%20298%200%20192%200S0%2086%200%20192c0%2087.4%20117%20243%20168.3%20307.2c12.3%2015.3%2035.1%2015.3%2047.4%200zM192%20128a64%2064%200%201%201%200%20128%2064%2064%200%201%201%200-128z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-person-hiking { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20384%20512%22%3E%3Cpath%20d%3D%22M192%2048a48%2048%200%201%201%2096%200%2048%2048%200%201%201%20-96%200zm51.3%20182.7L224.2%20307l49.7%2049.7c9%209%2014.1%2021.2%2014.1%2033.9V480c0%2017.7-14.3%2032-32%2032s-32-14.3-32-32V397.3l-73.9-73.9c-15.8-15.8-22.2-38.6-16.9-60.3l20.4-84c8.3-34.1%2042.7-54.9%2076.7-46.4c19%204.8%2035.6%2016.4%2046.4%2032.7L305.1%20208H336V184c0-13.3%2010.7-24%2024-24s24%2010.7%2024%2024v55.8c0%20.1%200%20.2%200%20.2s0%20.2%200%20.2V488c0%2013.3-10.7%2024-24%2024s-24-10.7-24-24V272H296.6c-16%200-31-8-39.9-21.4l-13.3-20zM81.1%20471.9L117.3%20334c3%204.2%206.4%208.2%2010.1%2011.9l41.9%2041.9L142.9%20488.1c-4.5%2017.1-22%2027.3-39.1%2022.8s-27.3-22-22.8-39.1zm55.5-346L101.4%20266.5c-3%2012.1-14.9%2019.9-27.2%2017.9l-47.9-8c-14-2.3-22.9-16.3-19.2-30L31.9%20155c9.5-34.8%2041.1-59%2077.2-59h4.2c15.6%200%2027.1%2014.7%2023.3%2029.8z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20384%20512%22%3E%3Cpath%20d%3D%22M192%2048a48%2048%200%201%201%2096%200%2048%2048%200%201%201%20-96%200zm51.3%20182.7L224.2%20307l49.7%2049.7c9%209%2014.1%2021.2%2014.1%2033.9V480c0%2017.7-14.3%2032-32%2032s-32-14.3-32-32V397.3l-73.9-73.9c-15.8-15.8-22.2-38.6-16.9-60.3l20.4-84c8.3-34.1%2042.7-54.9%2076.7-46.4c19%204.8%2035.6%2016.4%2046.4%2032.7L305.1%20208H336V184c0-13.3%2010.7-24%2024-24s24%2010.7%2024%2024v55.8c0%20.1%200%20.2%200%20.2s0%20.2%200%20.2V488c0%2013.3-10.7%2024-24%2024s-24-10.7-24-24V272H296.6c-16%200-31-8-39.9-21.4l-13.3-20zM81.1%20471.9L117.3%20334c3%204.2%206.4%208.2%2010.1%2011.9l41.9%2041.9L142.9%20488.1c-4.5%2017.1-22%2027.3-39.1%2022.8s-27.3-22-22.8-39.1zm55.5-346L101.4%20266.5c-3%2012.1-14.9%2019.9-27.2%2017.9l-47.9-8c-14-2.3-22.9-16.3-19.2-30L31.9%20155c9.5-34.8%2041.1-59%2077.2-59h4.2c15.6%200%2027.1%2014.7%2023.3%2029.8z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-person-skiing { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M380.7%2048a48%2048%200%201%201%2096%200%2048%2048%200%201%201%20-96%200zM2.7%20268.9c6.1-11.8%2020.6-16.3%2032.4-10.2L232.7%20361.3l46.2-69.2-75.1-75.1c-14.6-14.6-20.4-33.9-18.4-52.1l108.8%2052%2039.3%2039.3c16.2%2016.2%2018.7%2041.5%206%2060.6L289.8%20391l128.7%2066.8c13.6%207.1%2029.8%207.2%2043.6%20.3l15.2-7.6c11.9-5.9%2026.3-1.1%2032.2%2010.7s1.1%2026.3-10.7%2032.2l-15.2%207.6c-27.5%2013.7-59.9%2013.5-87.2-.7L12.9%20301.3C1.2%20295.2-3.4%20280.7%202.7%20268.9zM118.9%2065.6L137%2074.2l8.7-17.4c4-7.9%2013.6-11.1%2021.5-7.2s11.1%2013.6%207.2%2021.5l-8.5%2016.9%2054.7%2026.2c1.5-.7%203.1-1.4%204.7-2.1l83.4-33.4c34.2-13.7%2072.8%204.2%2084.5%2039.2l17.1%2051.2%2052.1%2026.1c15.8%207.9%2022.2%2027.1%2014.3%2042.9s-27.1%2022.2-42.9%2014.3l-58.1-29c-11.4-5.7-20-15.7-24.1-27.8l-5.8-17.3-27.3%2012.1-6.8%203-6.7-3.2L151.5%20116.7l-9.2%2018.4c-4%207.9-13.6%2011.1-21.5%207.2s-11.1-13.6-7.2-21.5l9-18-17.6-8.4c-8-3.8-11.3-13.4-7.5-21.3s13.4-11.3%2021.3-7.5z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M380.7%2048a48%2048%200%201%201%2096%200%2048%2048%200%201%201%20-96%200zM2.7%20268.9c6.1-11.8%2020.6-16.3%2032.4-10.2L232.7%20361.3l46.2-69.2-75.1-75.1c-14.6-14.6-20.4-33.9-18.4-52.1l108.8%2052%2039.3%2039.3c16.2%2016.2%2018.7%2041.5%206%2060.6L289.8%20391l128.7%2066.8c13.6%207.1%2029.8%207.2%2043.6%20.3l15.2-7.6c11.9-5.9%2026.3-1.1%2032.2%2010.7s1.1%2026.3-10.7%2032.2l-15.2%207.6c-27.5%2013.7-59.9%2013.5-87.2-.7L12.9%20301.3C1.2%20295.2-3.4%20280.7%202.7%20268.9zM118.9%2065.6L137%2074.2l8.7-17.4c4-7.9%2013.6-11.1%2021.5-7.2s11.1%2013.6%207.2%2021.5l-8.5%2016.9%2054.7%2026.2c1.5-.7%203.1-1.4%204.7-2.1l83.4-33.4c34.2-13.7%2072.8%204.2%2084.5%2039.2l17.1%2051.2%2052.1%2026.1c15.8%207.9%2022.2%2027.1%2014.3%2042.9s-27.1%2022.2-42.9%2014.3l-58.1-29c-11.4-5.7-20-15.7-24.1-27.8l-5.8-17.3-27.3%2012.1-6.8%203-6.7-3.2L151.5%20116.7l-9.2%2018.4c-4%207.9-13.6%2011.1-21.5%207.2s-11.1-13.6-7.2-21.5l9-18-17.6-8.4c-8-3.8-11.3-13.4-7.5-21.3s13.4-11.3%2021.3-7.5z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-seedling { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M512%2032c0%20113.6-84.6%20207.5-194.2%20222c-7.1-53.4-30.6-101.6-65.3-139.3C290.8%2046.3%20364%200%20448%200h32c17.7%200%2032%2014.3%2032%2032zM0%2096C0%2078.3%2014.3%2064%2032%2064H64c123.7%200%20224%20100.3%20224%20224v32V480c0%2017.7-14.3%2032-32%2032s-32-14.3-32-32V320C100.3%20320%200%20219.7%200%2096z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M512%2032c0%20113.6-84.6%20207.5-194.2%20222c-7.1-53.4-30.6-101.6-65.3-139.3C290.8%2046.3%20364%200%20448%200h32c17.7%200%2032%2014.3%2032%2032zM0%2096C0%2078.3%2014.3%2064%2032%2064H64c123.7%200%20224%20100.3%20224%20224v32V480c0%2017.7-14.3%2032-32%2032s-32-14.3-32-32V320C100.3%20320%200%20219.7%200%2096z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-snowflake { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M224%200c17.7%200%2032%2014.3%2032%2032V62.1l15-15c9.4-9.4%2024.6-9.4%2033.9%200s9.4%2024.6%200%2033.9l-49%2049v70.3l61.4-35.8%2017.7-66.1c3.4-12.8%2016.6-20.4%2029.4-17s20.4%2016.6%2017%2029.4l-5.2%2019.3%2023.6-13.8c15.3-8.9%2034.9-3.7%2043.8%2011.5s3.8%2034.9-11.5%2043.8l-25.3%2014.8%2021.7%205.8c12.8%203.4%2020.4%2016.6%2017%2029.4s-16.6%2020.4-29.4%2017l-67.7-18.1L287.5%20256l60.9%2035.5%2067.7-18.1c12.8-3.4%2026%204.2%2029.4%2017s-4.2%2026-17%2029.4l-21.7%205.8%2025.3%2014.8c15.3%208.9%2020.4%2028.5%2011.5%2043.8s-28.5%2020.4-43.8%2011.5l-23.6-13.8%205.2%2019.3c3.4%2012.8-4.2%2026-17%2029.4s-26-4.2-29.4-17l-17.7-66.1L256%20311.7v70.3l49%2049c9.4%209.4%209.4%2024.6%200%2033.9s-24.6%209.4-33.9%200l-15-15V480c0%2017.7-14.3%2032-32%2032s-32-14.3-32-32V449.9l-15%2015c-9.4%209.4-24.6%209.4-33.9%200s-9.4-24.6%200-33.9l49-49V311.7l-61.4%2035.8-17.7%2066.1c-3.4%2012.8-16.6%2020.4-29.4%2017s-20.4-16.6-17-29.4l5.2-19.3L48.1%20395.6c-15.3%208.9-34.9%203.7-43.8-11.5s-3.7-34.9%2011.5-43.8l25.3-14.8-21.7-5.8c-12.8-3.4-20.4-16.6-17-29.4s16.6-20.4%2029.4-17l67.7%2018.1L160.5%20256%2099.6%20220.5%2031.9%20238.6c-12.8%203.4-26-4.2-29.4-17s4.2-26%2017-29.4l21.7-5.8L15.9%20171.6C.6%20162.7-4.5%20143.1%204.4%20127.9s28.5-20.4%2043.8-11.5l23.6%2013.8-5.2-19.3c-3.4-12.8%204.2-26%2017-29.4s26%204.2%2029.4%2017l17.7%2066.1L192%20200.3V129.9L143%2081c-9.4-9.4-9.4-24.6%200-33.9s24.6-9.4%2033.9%200l15%2015V32c0-17.7%2014.3-32%2032-32z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M224%200c17.7%200%2032%2014.3%2032%2032V62.1l15-15c9.4-9.4%2024.6-9.4%2033.9%200s9.4%2024.6%200%2033.9l-49%2049v70.3l61.4-35.8%2017.7-66.1c3.4-12.8%2016.6-20.4%2029.4-17s20.4%2016.6%2017%2029.4l-5.2%2019.3%2023.6-13.8c15.3-8.9%2034.9-3.7%2043.8%2011.5s3.8%2034.9-11.5%2043.8l-25.3%2014.8%2021.7%205.8c12.8%203.4%2020.4%2016.6%2017%2029.4s-16.6%2020.4-29.4%2017l-67.7-18.1L287.5%20256l60.9%2035.5%2067.7-18.1c12.8-3.4%2026%204.2%2029.4%2017s-4.2%2026-17%2029.4l-21.7%205.8%2025.3%2014.8c15.3%208.9%2020.4%2028.5%2011.5%2043.8s-28.5%2020.4-43.8%2011.5l-23.6-13.8%205.2%2019.3c3.4%2012.8-4.2%2026-17%2029.4s-26-4.2-29.4-17l-17.7-66.1L256%20311.7v70.3l49%2049c9.4%209.4%209.4%2024.6%200%2033.9s-24.6%209.4-33.9%200l-15-15V480c0%2017.7-14.3%2032-32%2032s-32-14.3-32-32V449.9l-15%2015c-9.4%209.4-24.6%209.4-33.9%200s-9.4-24.6%200-33.9l49-49V311.7l-61.4%2035.8-17.7%2066.1c-3.4%2012.8-16.6%2020.4-29.4%2017s-20.4-16.6-17-29.4l5.2-19.3L48.1%20395.6c-15.3%208.9-34.9%203.7-43.8-11.5s-3.7-34.9%2011.5-43.8l25.3-14.8-21.7-5.8c-12.8-3.4-20.4-16.6-17-29.4s16.6-20.4%2029.4-17l67.7%2018.1L160.5%20256%2099.6%20220.5%2031.9%20238.6c-12.8%203.4-26-4.2-29.4-17s4.2-26%2017-29.4l21.7-5.8L15.9%20171.6C.6%20162.7-4.5%20143.1%204.4%20127.9s28.5-20.4%2043.8-11.5l23.6%2013.8-5.2-19.3c-3.4-12.8%204.2-26%2017-29.4s26%204.2%2029.4%2017l17.7%2066.1L192%20200.3V129.9L143%2081c-9.4-9.4-9.4-24.6%200-33.9s24.6-9.4%2033.9%200l15%2015V32c0-17.7%2014.3-32%2032-32z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-star { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20576%20512%22%3E%3Cpath%20d%3D%22M316.9%2018C311.6%207%20300.4%200%20288.1%200s-23.4%207-28.8%2018L195%20150.3%2051.4%20171.5c-12%201.8-22%2010.2-25.7%2021.7s-.7%2024.2%207.9%2032.7L137.8%20329%20113.2%20474.7c-2%2012%203%2024.2%2012.9%2031.3s23%208%2033.8%202.3l128.3-68.5%20128.3%2068.5c10.8%205.7%2023.9%204.9%2033.8-2.3s14.9-19.3%2012.9-31.3L438.5%20329%20542.7%20225.9c8.6-8.5%2011.7-21.2%207.9-32.7s-13.7-19.9-25.7-21.7L381.2%20150.3%20316.9%2018z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20576%20512%22%3E%3Cpath%20d%3D%22M316.9%2018C311.6%207%20300.4%200%20288.1%200s-23.4%207-28.8%2018L195%20150.3%2051.4%20171.5c-12%201.8-22%2010.2-25.7%2021.7s-.7%2024.2%207.9%2032.7L137.8%20329%20113.2%20474.7c-2%2012%203%2024.2%2012.9%2031.3s23%208%2033.8%202.3l128.3-68.5%20128.3%2068.5c10.8%205.7%2023.9%204.9%2033.8-2.3s14.9-19.3%2012.9-31.3L438.5%20329%20542.7%20225.9c8.6-8.5%2011.7-21.2%207.9-32.7s-13.7-19.9-25.7-21.7L381.2%20150.3%20316.9%2018z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-sun { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M361.5%201.2c5%202.1%208.6%206.6%209.6%2011.9L391%20121l107.9%2019.8c5.3%201%209.8%204.6%2011.9%209.6s1.5%2010.7-1.6%2015.2L446.9%20256l62.3%2090.3c3.1%204.5%203.7%2010.2%201.6%2015.2s-6.6%208.6-11.9%209.6L391%20391%20371.1%20498.9c-1%205.3-4.6%209.8-9.6%2011.9s-10.7%201.5-15.2-1.6L256%20446.9l-90.3%2062.3c-4.5%203.1-10.2%203.7-15.2%201.6s-8.6-6.6-9.6-11.9L121%20391%2013.1%20371.1c-5.3-1-9.8-4.6-11.9-9.6s-1.5-10.7%201.6-15.2L65.1%20256%202.8%20165.7c-3.1-4.5-3.7-10.2-1.6-15.2s6.6-8.6%2011.9-9.6L121%20121%20140.9%2013.1c1-5.3%204.6-9.8%209.6-11.9s10.7-1.5%2015.2%201.6L256%2065.1%20346.3%202.8c4.5-3.1%2010.2-3.7%2015.2-1.6zM160%20256a96%2096%200%201%201%20192%200%2096%2096%200%201%201%20-192%200zm224%200a128%20128%200%201%200%20-256%200%20128%20128%200%201%200%20256%200z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M361.5%201.2c5%202.1%208.6%206.6%209.6%2011.9L391%20121l107.9%2019.8c5.3%201%209.8%204.6%2011.9%209.6s1.5%2010.7-1.6%2015.2L446.9%20256l62.3%2090.3c3.1%204.5%203.7%2010.2%201.6%2015.2s-6.6%208.6-11.9%209.6L391%20391%20371.1%20498.9c-1%205.3-4.6%209.8-9.6%2011.9s-10.7%201.5-15.2-1.6L256%20446.9l-90.3%2062.3c-4.5%203.1-10.2%203.7-15.2%201.6s-8.6-6.6-9.6-11.9L121%20391%2013.1%20371.1c-5.3-1-9.8-4.6-11.9-9.6s-1.5-10.7%201.6-15.2L65.1%20256%202.8%20165.7c-3.1-4.5-3.7-10.2-1.6-15.2s6.6-8.6%2011.9-9.6L121%20121%20140.9%2013.1c1-5.3%204.6-9.8%209.6-11.9s10.7-1.5%2015.2%201.6L256%2065.1%20346.3%202.8c4.5-3.1%2010.2-3.7%2015.2-1.6zM160%20256a96%2096%200%201%201%20192%200%2096%2096%200%201%201%20-192%200zm224%200a128%20128%200%201%200%20-256%200%20128%20128%200%201%200%20256%200z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-temperature-high { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M416%2064a32%2032%200%201%201%200%2064%2032%2032%200%201%201%200-64zm0%20128A96%2096%200%201%200%20416%200a96%2096%200%201%200%200%20192zM96%20112c0-26.5%2021.5-48%2048-48s48%2021.5%2048%2048V276.5c0%2017.3%207.1%2031.9%2015.3%2042.5C217.8%20332.6%20224%20349.5%20224%20368c0%2044.2-35.8%2080-80%2080s-80-35.8-80-80c0-18.5%206.2-35.4%2016.7-48.9C88.9%20308.4%2096%20293.8%2096%20276.5V112zM144%200C82.1%200%2032%2050.2%2032%20112V276.5c0%20.1-.1%20.3-.2%20.6c-.2%20.6-.8%201.6-1.7%202.8C11.2%20304.2%200%20334.8%200%20368c0%2079.5%2064.5%20144%20144%20144s144-64.5%20144-144c0-33.2-11.2-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C256%2050.2%20205.9%200%20144%200zm0%20416c26.5%200%2048-21.5%2048-48c0-20.9-13.4-38.7-32-45.3V112c0-8.8-7.2-16-16-16s-16%207.2-16%2016V322.7c-18.6%206.6-32%2024.4-32%2045.3c0%2026.5%2021.5%2048%2048%2048z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M416%2064a32%2032%200%201%201%200%2064%2032%2032%200%201%201%200-64zm0%20128A96%2096%200%201%200%20416%200a96%2096%200%201%200%200%20192zM96%20112c0-26.5%2021.5-48%2048-48s48%2021.5%2048%2048V276.5c0%2017.3%207.1%2031.9%2015.3%2042.5C217.8%20332.6%20224%20349.5%20224%20368c0%2044.2-35.8%2080-80%2080s-80-35.8-80-80c0-18.5%206.2-35.4%2016.7-48.9C88.9%20308.4%2096%20293.8%2096%20276.5V112zM144%200C82.1%200%2032%2050.2%2032%20112V276.5c0%20.1-.1%20.3-.2%20.6c-.2%20.6-.8%201.6-1.7%202.8C11.2%20304.2%200%20334.8%200%20368c0%2079.5%2064.5%20144%20144%20144s144-64.5%20144-144c0-33.2-11.2-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C256%2050.2%20205.9%200%20144%200zm0%20416c26.5%200%2048-21.5%2048-48c0-20.9-13.4-38.7-32-45.3V112c0-8.8-7.2-16-16-16s-16%207.2-16%2016V322.7c-18.6%206.6-32%2024.4-32%2045.3c0%2026.5%2021.5%2048%2048%2048z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-tree { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M210.6%205.9L62%20169.4c-3.9%204.2-6%209.8-6%2015.5C56%20197.7%2066.3%20208%2079.1%20208H104L30.6%20281.4c-4.2%204.2-6.6%2010-6.6%2016C24%20309.9%2034.1%20320%2046.6%20320H80L5.4%20409.5C1.9%20413.7%200%20419%200%20424.5c0%2013%2010.5%2023.5%2023.5%2023.5H192v32c0%2017.7%2014.3%2032%2032%2032s32-14.3%2032-32V448H424.5c13%200%2023.5-10.5%2023.5-23.5c0-5.5-1.9-10.8-5.4-15L368%20320h33.4c12.5%200%2022.6-10.1%2022.6-22.6c0-6-2.4-11.8-6.6-16L344%20208h24.9c12.7%200%2023.1-10.3%2023.1-23.1c0-5.7-2.1-11.3-6-15.5L237.4%205.9C234%202.1%20229.1%200%20224%200s-10%202.1-13.4%205.9z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M210.6%205.9L62%20169.4c-3.9%204.2-6%209.8-6%2015.5C56%20197.7%2066.3%20208%2079.1%20208H104L30.6%20281.4c-4.2%204.2-6.6%2010-6.6%2016C24%20309.9%2034.1%20320%2046.6%20320H80L5.4%20409.5C1.9%20413.7%200%20419%200%20424.5c0%2013%2010.5%2023.5%2023.5%2023.5H192v32c0%2017.7%2014.3%2032%2032%2032s32-14.3%2032-32V448H424.5c13%200%2023.5-10.5%2023.5-23.5c0-5.5-1.9-10.8-5.4-15L368%20320h33.4c12.5%200%2022.6-10.1%2022.6-22.6c0-6-2.4-11.8-6.6-16L344%20208h24.9c12.7%200%2023.1-10.3%2023.1-23.1c0-5.7-2.1-11.3-6-15.5L237.4%205.9C234%202.1%20229.1%200%20224%200s-10%202.1-13.4%205.9z%22%2F%3E%3C%2Fsvg%3E"); }
.fa-umbrella-beach { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20576%20512%22%3E%3Cpath%20d%3D%22M346.3%20271.8l-60.1-21.9L214%20448H32c-17.7%200-32%2014.3-32%2032s14.3%2032%2032%2032H544c17.7%200%2032-14.3%2032-32s-14.3-32-32-32H282.1l64.1-176.2zm121.1-.2l-3.3%209.1%2067.7%2024.6c18.1%206.6%2038-4.2%2039.6-23.4c6.5-78.5-23.9-155.5-80.8-208.5c2%208%203.2%2016.3%203.4%2024.8l.2%206c1.8%2057-7.3%20113.8-26.8%20167.4zM462%2099.1c-1.1-34.4-22.5-64.8-54.4-77.4c-.9-.4-1.9-.7-2.8-1.1c-33-11.7-69.8-2.4-93.1%2023.8l-4%204.5C272.4%2088.3%20245%20134.2%20226.8%20184l-3.3%209.1L434%20269.7l3.3-9.1c18.1-49.8%2026.6-102.5%2024.9-155.5l-.2-6zM107.2%20112.9c-11.1%2015.7-2.8%2036.8%2015.3%2043.4l71%2025.8%203.3-9.1c19.5-53.6%2049.1-103%2087.1-145.5l4-4.5c6.2-6.9%2013.1-13%2020.5-18.2c-79.6%202.5-154.7%2042.2-201.2%20108z%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20576%20512%22%3E%3Cpath%20d%3D%22M346.3%20271.8l-60.1-21.9L214%20448H32c-17.7%200-32%2014.3-32%2032s14.3%2032%2032%2032H544c17.7%200%2032-14.3%2032-32s-14.3-32-32-32H282.1l64.1-176.2zm121.1-.2l-3.3%209.1%2067.7%2024.6c18.1%206.6%2038-4.2%2039.6-23.4c6.5-78.5-23.9-155.5-80.8-208.5c2%208%203.2%2016.3%203.4%2024.8l.2%206c1.8%2057-7.3%20113.8-26.8%20167.4zM462%2099.1c-1.1-34.4-22.5-64.8-54.4-77.4c-.9-.4-1.9-.7-2.8-1.1c-33-11.7-69.8-2.4-93.1%2023.8l-4%204.5C272.4%2088.3%20245%20134.2%20226.8%20184l-3.3%209.1L434%20269.7l3.3-9.1c18.1-49.8%2026.6-102.5%2024.9-155.5l-.2-6zM107.2%20112.9c-11.1%2015.7-2.8%2036.8%2015.3%2043.4l71%2025.8%203.3-9.1c19.5-53.6%2049.1-103%2087.1-145.5l4-4.5c6.2-6.9%2013.1-13%2020.5-18.2c-79.6%202.5-154.7%2042.2-201.2%20108z%22%2F%3E%3C%2Fsvg%3E"); }
/* ── END generated icons ── */
