/* Custom styles to override Material defaults. */


/* ===================================================================================================================================== */

/* UNORDERED LIST STYLE OVERRIDE */

/* First level is a solid disc */
.md-typeset ul {
    list-style-type: disc;
}

/* Second level is a hollow circle */
.md-typeset ul ul {
    list-style-type: circle;
}

/* Third level is a square */
.md-typeset ul ul ul {
    list-style-type: square;
}

/* Fourth level is a dash. Must be manually defined. */
.md-typeset ul ul ul ul {
  list-style-type: '- ';
}

/* ===================================================================================================================================== */

