/* Start custom CSS */.multilevel-list .list-title {
    font-size: 18px;
    font-weight: 600;
}

.multilevel-list li p {
    margin: 10px 0;
}

.multilevel-list ol {
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
}

.multilevel-list ol > li {
    display: table;
    counter-increment: item;
    margin-bottom: 10px;
}

.multilevel-list ol > li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 6px;
    font-weight: 600;
}

.multilevel-list li ol > li {
    margin: 10px 0;
}

.multilevel-list li ol > li:before {
    content: counters(item, ".") " ";
    font-weight: 400;
}/* End custom CSS */