.full_modal-content ul {
    list-style-type: disc;
}

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

.full_modal-content ol > li {
    display: table;
    counter-increment: item;
    margin-bottom: 0.6em;
}

.full_modal-content ol > li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 0.6em;
}

.full_modal-content li ol > li {
    margin: 0;
}

.full_modal-content li ol > li:before {
    content: counters(item, ".") " ";
}