/*
 * Self-hosted Material Icons.
 *
 * Previously pulled from fonts.googleapis.com, which is unreachable on a
 * large share of Android devices (Huawei / mainland China). mat-icon renders
 * ligatures, so a missing font does not degrade gracefully - it prints the
 * literal glyph name ("picture_as_pdf") in place of every icon. Serving it
 * from our own origin removes that failure mode entirely.
 *
 * Apache License 2.0.
 */
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    /* swap: show fallback text immediately rather than blocking on the font.
       Icons are the one place where a brief blank beats a flash of ligature
       text, but never at the cost of holding up paint. */
    font-display: block;
    src: url('MaterialIcons.woff2') format('woff2');
}

.material-icons {
    font-family: 'Material Icons';
    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;
}
