/* The icon font, served from the app rather than the Google Fonts CDN: when that
   request fails, every icon on the page reads as its ligature name instead.

   The file is subset to the icons the app uses, which is why it is 1.4KB rather
   than megabytes. Adding an icon means regenerating it with the new name in the
   icon_names list:

   https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined&icon_names=check_box,check_box_outline_blank

   fetched with a current browser User-Agent, or Google answers with TTF. */
@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 400;
  /* Holds the text invisible until the font arrives, rather than showing the
     ligature name in the fallback face. */
  font-display: block;
  src: url("/assets/material-symbols-outlined-caf58bb1.woff2") format("woff2");
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
