How to add lines (Bullet points & number list)

Do you what is causing the number getting wrong?

EDIT MODE

Screenshot 2020-10-01 at 17.25.36

PREVIEW

Screenshot 2020-10-01 at 17.25.02

THIS IS THE CSS DOING NUMBER COLORING

li {

  padding-left: 5px;
  padding-top: 0px;
}

ol li {
  counter-increment: list;
  list-style-type: none;
  position: relative;
}

ol li:before {
  color: var(--color-accent);
  content: counter(list) ".";
  left: -15px;
  position: absolute;
  text-align: left;
  width: 26px;
  text-shadow:0 0px 10px var(--color-accent);
}