/* Material Icons, self-hosted.

   material-icons.woff2 is now the ONLY thing in assets/fonts/. The text faces
   that used to sit beside it are gone — the panel is back on the system stack —
   and clearing them out took this with them, leaving every sidebar item reading
   "dns Servers" and every flash reading "error …". If you are removing
   webfonts, remove them by name; this one is not typography, it is the icon
   set, and panel.css draws the flash icons out of it with a ::before.

   Ported from the Stack template's vendor-material-icons.css, minus the
   fonts.googleapis.com @import it opened with, minus the [dir=ltr] prefix on
   every selector (the template ships an RTL twin; this panel does not), and
   minus the .eot/.ttf/.woff fallbacks — woff2 has been universal since 2016
   and the other three formats were 330KB for browsers nobody here runs.

   Usage is ligature-based, so the markup says what the icon is:
     <i class="material-icons" aria-hidden="true">dvr</i>

   Always aria-hidden. The ligature text is the glyph name — a screen reader
   left to itself announces "dvr", so an icon that carries meaning needs a
   sibling label or an aria-label on the control around it. */

@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  font-display: block;   /* not swap: the fallback would render "dvr" as text */
  src: url("../fonts/material-icons.woff2") format("woff2");
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}

/* The sizes the panel actually uses. 24px is the design size; anything smaller
   is set here rather than inline so the glyphs stay on consistent steps. */
.material-icons.mi-sm { font-size: 18px; }
.material-icons.mi-xs { font-size: 16px; }
.material-icons.mi-lg { font-size: 32px; }
