.feeList {
  list-style: none;
  counter-reset: list;
  padding-left: 15px;
}

.feeListItem {
  counter-increment: list;
  position: relative;
  padding-left: 10px;
}
.feeListItem::before {
  content: counter(list) ". ";
  font-weight: bold;
  position: absolute;
  left: -2rem;
  width: 2rem;
  text-align: right;
}

.feeListItem:not(:last-of-type) {
  margin-bottom: 10px;
}

.feeListItemTitle {
  font-weight: bold;
  display: inline-block;
}

/*# sourceMappingURL=fee.css.map*/