/* Common Properties */
.material-icons,
.material-icons-outlined,
.material-icons-round {
    font-weight: normal;
    font-style: normal;
    /* Preferred icon size */
    font-size: 1.5rem;
    /* Unitless values: use this number multiplied by the element's font size */
    line-height: 1;
    vertical-align: middle;
    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;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: "liga";
}

/* References:
- Material Icons Guide: https://developers.google.com/fonts/docs/material_icons
- Material Icons Library: https://fonts.google.com/icons
- GitHub Repository: https://github.com/google/material-design-icons
*/

@font-face {
    font-family: "Material Icons";
    font-style: normal;
    font-weight: 400;
    src: url("./MaterialIcons-Regular.ttf");
}

.material-icons {
    font-family: "Material Icons Rounded";
}

@font-face {
    font-family: "Material Icons Outlined";
    font-style: normal;
    font-weight: 400;
    src: url("./MaterialIconsOutlined-Regular.otf");
}

.material-icons-outlined {
    font-family: "Material Icons Outlined";
}

@font-face {
    font-family: "Material Icons Rounded";
    font-style: normal;
    font-weight: 400;
    src: url("./MaterialIconsRound-Regular.otf");
}

.material-icons-round {
    font-family: "Material Icons Rounded";
}

/* Rules for sizing the icon. */
.material-icons.sm {
    font-size: 1.25rem;
}
.material-icons.md {
    font-size: 2.5rem;
}
.material-icons.lg {
    font-size: 3rem;
}
.material-icons.xl {
    font-size: 3.5rem;
}
.material-icons.md-18 {
    font-size: 1.125rem;
}
.material-icons.md-24 {
    font-size: 1.5rem;
}
.material-icons.md-36 {
    font-size: 2.25rem;
}
.material-icons.md-48 {
    font-size: 3rem;
}