/* FontAwesome subset — only the 8 solid glyphs this app actually uses.
 * Replaces the full Font Awesome all.min.css (102 KB) + fa-solid-900.woff2 (153 KB)
 * + the brands/regular webfonts that were shipped but never requested.
 * The subset woff2 (fa-solid-900-subset.woff2) is generated with pyftsubset and
 * checked into src/assets/webfonts/. Regenerate with:
 *   pyftsubset fa-solid-900.woff2 --unicodes=f063,f0c9,f31e,f05a,f5a0,f1e0,f048,f051 \
 *     --flavor=woff2 --output-file=fa-solid-900-subset.woff2
 * Keep the <i class="fas fa-…"> / <i class="fa fa-…"> markup identical to upstream FA. */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(fa-solid-900-subset.woff2) format("woff2");
}
.fa,
.fas {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}
.fa-arrow-down:before { content: "\f063"; }
.fa-bars:before { content: "\f0c9"; }
.fa-expand-arrows-alt:before { content: "\f31e"; }
.fa-info-circle:before { content: "\f05a"; }
.fa-map-marked-alt:before { content: "\f5a0"; }
.fa-share-alt:before { content: "\f1e0"; }
.fa-step-backward:before { content: "\f048"; }
.fa-step-forward:before { content: "\f051"; }
