main {
  padding-top: 100px;
}
main p,
main span,
main ul,
main ol,
main h5,
main h3,
main section {
  color: #676767;
  text-align: left; /* dk */
}
main > section > ol {
  padding: 10px;
  margin-bottom: 0px;
}
main > section ul.no-style {
  padding: 0px;
}
main > section ul.no-style > li {
  list-style: none;
}
main > section ul > li {
  list-style: disc;
}
.nested-list {
  counter-reset: nested-item; /* Reset counter for the nested list */
}

/* Style for the nested list items and increment the counter */
.nested-list li {
  list-style-type: none; /* Remove default list markers */
}

.nested-list-7 li::before {
  counter-increment: nested-item; /* Increment the nested counter */
  content: "7." counter(nested-item) ". "; /* Combine "7." with the incremented counter */
  text-indent: 0px !important;
  text-align: start !important;
  text-align-last: start !important;
}
.nested-list-8 li::before {
  counter-increment: nested-item; /* Increment the nested counter */
  content: "8." counter(nested-item) ". "; /* Combine "7." with the incremented counter */
  text-indent: 0px !important;
  text-align: start !important;
  text-align-last: start !important;
}
.nested-list-9 li::before {
  counter-increment: nested-item; /* Increment the nested counter */
  content: "9." counter(nested-item) ". "; /* Combine "7." with the incremented counter */
  text-indent: 0px !important;
  text-align: start !important;
  text-align-last: start !important;
}
@media only screen and (max-width: 876px) {
  main {
    padding-top: 60px;
  }
}
