/*
 * Material Icons.
 *
 * The font is bundled in public/assets/fonts/ rather than loaded from a CDN.
 * The fewer external hosts the application depends on, the fewer ways it
 * breaks on shared hosting (docs/REVAMP-PLAN.md §6.3) — and an icon set that
 * silently fails to load leaves every button showing its ligature text.
 *
 * Icons are used through their ligature name:
 *
 *     <span class="material-icons" aria-hidden="true">edit</span>
 */

@font-face {
    font-family: "Material Icons";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/material-icons.woff2") format("woff2");
    /*
     * `block` rather than `swap`: an icon has no sensible fallback glyph, so
     * a brief blank is better than flashing the word "delete" in the middle
     * of a button before the font arrives.
     */
    font-display: block;
}

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