/*
 * Self-hosted Material Icons (regular + outlined), replacing the fonts.googleapis.com
 * link tags in index.html. Font files sourced from the "material-icons" npm package
 * (Apache License 2.0, see ./LICENSE) rather than fetched from Google's CDN on every
 * page load, so mat-icon ligatures (e.g. "add", "more_vert") no longer render as raw
 * text/blank when that external request is slow, blocked, or fails.
 */
@font-face {
    font-family: "Material Icons";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src:
        url("./material-icons.woff2") format("woff2"),
        url("./material-icons.woff") format("woff");
}

.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-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga";
    -webkit-font-feature-settings: "liga";
}

@font-face {
    font-family: "Material Icons Outlined";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src:
        url("./material-icons-outlined.woff2") format("woff2"),
        url("./material-icons-outlined.woff") format("woff");
}

.material-icons-outlined {
    font-family: "Material Icons 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-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga";
    -webkit-font-feature-settings: "liga";
}
