.list-takeaway {
  gap: 0.9375rem;
  margin-bottom: 2.8125rem;
}
@media (min-width: 768px) {
  .list-takeaway {
    display: flex;
    flex-wrap: wrap;
  }
}
.list-takeaway--item {
  border-left: 3px solid #e8e8e8;
  padding: 0 0.8125rem;
  min-height: 34px;
  flex: 100%;
  margin-bottom: 0.9375rem;
}
@media (min-width: 768px) {
  .list-takeaway--item {
    flex: 1 0 calc(50% - 0.9375rem);
    margin-bottom: 5px;
  }
}
.list-takeaway--item span, .list-takeaway--item p {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0;
}

.list-numbered {
  counter-reset: item;
}
.list-numbered--item {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  margin-bottom: 1.25rem;
  counter-increment: item;
}
.list-numbered--item::before {
  width: calc(2.8125rem + 30px);
  padding-right: 75px;
  content: counter(item);
  font-family: "Merriweather", serif;
  display: inline-block;
  font-size: 50px;
  font-weight: bold;
}
.list-numbered--item p {
  margin-bottom: 0;
}
.list-numbered--item:last-child {
  margin-bottom: 3.125rem;
}
@media (max-width: 767.98px) {
  .list-numbered--item:last-child {
    margin-bottom: 1.875rem;
  }
}

.list-bullets,
.list-bullets-simple {
  margin-bottom: 0;
}
.list-bullets--item,
.list-bullets-simple--item {
  padding-left: 0.8125rem;
  position: relative;
}
.list-bullets--item:not(:last-child),
.list-bullets-simple--item:not(:last-child) {
  margin-bottom: 1.56rem;
}
.list-bullets--item::before,
.list-bullets-simple--item::before {
  content: "";
  display: inline-flex;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #262222;
  position: absolute;
  left: 0;
  top: 10px;
}

.list-bullets-simple {
  border-left: 3px solid #e8e8e8;
  padding-left: 0.8125rem;
}

.show-on-hover {
  opacity: 0.3;
  color: #D9D9D9;
  transition: opacity ease-in 500ms;
}
.show-on-hover:hover {
  display: block;
  opacity: 1;
  color: red;
}

.list-glossary--item {
  display: flex;
  border-top: 3px solid #e8e8e8;
  padding: 0.8125rem 0;
}
.list-glossary--item--title {
  width: 15%;
  min-width: 140px;
  margin-right: 0.8125rem;
}

.stats-wrapper {
  margin-bottom: 2.8125rem;
}
@media (max-width: 767.98px) {
  .stats-wrapper {
    margin-bottom: 1.875rem;
  }
}

.list-checklist {
  border-left: 3px solid #e8e8e8;
  padding-left: 1.25rem;
}
.list-checklist--item {
  margin-bottom: 0.8125rem;
}
.list-checklist--item i {
  padding-right: 5px;
  top: 2px;
  position: relative;
}

.checklist.bg-box, .glossary.bg-box {
  padding-block: 3.125rem;
}
@media (max-width: 767.98px) {
  .checklist.bg-box, .glossary.bg-box {
    padding-block: 2.8125rem;
  }
}/*# sourceMappingURL=lists.css.map */