.abc-bulletpoints {
  list-style: none !important;
  counter-reset: abc-counter;
  margin-left: 1.5em;
  padding-left: 2.0em;
}

.abc-bulletpoints li {
  counter-increment: abc-counter;
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 1.5em;
}

.abc-bulletpoints li::before {
  content: counter(abc-counter, lower-alpha) ") ";
  position: absolute;
  left: 0;
}

.abc-inline-list {
  white-space: normal;
}
.abc-inline-item {
  margin-right: 0.5em;
}