/* Material Icons, selbst gehostet -- damit die Symbole auch ohne Internetzugang
   stehen und kein Aufruf an fonts.googleapis.com noetig ist (DSGVO).
   Quelle: https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Round
   Zum Aktualisieren: obige URL mit aktuellem Browser-User-Agent abrufen, die
   darin verlinkten woff2-Dateien herunterladen und hier ersetzen.

   font-display: block ist Absicht: waehrend die Font laedt bleibt das Symbol
   unsichtbar, statt kurz den Ligaturnamen als Text zu zeigen. */

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

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

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

/* Basisklassen, die die Icon-Komponente ueber baseClassName setzt. */

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