/* Self-hosted Material Icons (all 4 variants), replacing the fonts.googleapis.com <link>.
   font-display: block hides the ligature text (e.g. "check_circle") instead of flashing it
   while the font file loads - this is what actually fixes the FOUT, preload just makes the
   wait shorter. Source: https://fonts.googleapis.com/icon?family=Material+Icons|... */

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('/fonts/material-icons/material-icons.woff2') format('woff2');
}

@font-face {
  font-family: 'Material Icons Outlined';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('/fonts/material-icons/material-icons-outlined.woff2') format('woff2');
}

@font-face {
  font-family: 'Material Icons Round';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('/fonts/material-icons/material-icons-round.woff2') format('woff2');
}

@font-face {
  font-family: 'Material Icons Sharp';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('/fonts/material-icons/material-icons-sharp.woff2') format('woff2');
}

.material-icons,
.material-icons-outlined,
.material-icons-round,
.material-icons-sharp {
  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;
}

.material-icons {
  font-family: 'Material Icons';
}

.material-icons-outlined {
  font-family: 'Material Icons Outlined';
}

.material-icons-round {
  font-family: 'Material Icons Round';
}

.material-icons-sharp {
  font-family: 'Material Icons Sharp';
}
