ol#custom_numeric li {
    padding: 0 0 3px 8px;
    font-size: <?PHP if (isMobileDevice()) { ?> 0.7rem <?PHP } else { ?> 100% <?PHP } ?> !important;
}

ol#custom_numeric {
    padding: 0 0 3px 0;
    font-size: <?PHP if (isMobileDevice()) { ?> 0.7rem <?PHP } else { ?> 100% <?PHP } ?> !important;
    list-style: none;
    counter-reset: li;
}

ol#custom_numeric li::before {
    counter-increment: li;
    content: counters(li, ".") ". ";
    padding-left: 5px;
    font-weight: bold;
}