No ordered list numbers on my blog post pages

I’m using Dawn 2.0 theme and somehow on my blog post the numbers of the ordered list does not show. If I force refresh sometimes they show up for 1 millisecond and then disappear. i have tried adding colors to the article template, global CSS for

    but nothing seems to work. maybe someone has an idea where to look for?

    1. dfgs
    2. sdfgsdfg
    3. sdfgsdfg
    4. dsfggsdf

    like this but there are no numbers, the space is there where the numbers should be

for those still looking for an answer:

i added this code to the base.css in my theme

.article-template ol li {
list-style: unset !important;
}

.article-template ul li {
list-style: unset !important;
}