/* bbPress: remove list markers (bullets / numbers) */
#bbpress-forums ul,
#bbpress-forums ol {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

#bbpress-forums li {
  list-style: none !important;
}

/* Some themes still render a marker even when list-style is reset */
#bbpress-forums li::marker {
  content: "" !important;
}

/* Kill theme-injected separators/dots */
#bbpress-forums li::before,
#bbpress-forums li::after {
  content: none !important;
  display: none !important;
}

#bbpress-forums ul.bbp-forums > li,
#bbpress-forums ul.bbp-topics > li,
#bbpress-forums ul.bbp-replies > li {
  list-style: none !important;
}

#bbpress-forums ul.bbp-forums > li::marker,
#bbpress-forums ul.bbp-topics > li::marker,
#bbpress-forums ul.bbp-replies > li::marker {
  content: "" !important;
}