.wysiwyg ul,
.wysiwyg ol {
  margin: 0 0 rem-calc(20);
  padding: 0;
  list-style: none;
}
.wysiwyg ul > li {
  position: relative;
  padding-left: rem-calc(24);
  margin-bottom: rem-calc(12);
}
.wysiwyg ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: rem-calc(8);
  height: rem-calc(8);
  border-radius: 50%;
  background-color: var(--blue);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.wysiwyg ul > li:last-child {
  margin-bottom: 0;
}
.wysiwyg ul > li ul {
  margin: rem-calc(12) 0 0;
  padding-left: rem-calc(20);
}
.wysiwyg ul > li ul > li::before {
  background-color: transparent;
  border: 1px solid var(--blue);
}
.wysiwyg ol {
  counter-reset: wysiwyg-ol;
}
.wysiwyg ol > li {
  counter-increment: wysiwyg-ol;
  position: relative;
  padding-left: rem-calc(40);
  margin-bottom: rem-calc(12);
}
.wysiwyg ol > li::before {
  content: counter(wysiwyg-ol);
  position: absolute;
  left: 0;
  top: 0.1em;
  width: rem-calc(28);
  height: rem-calc(28);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: var(--darkgrey);
  font-size: rem-calc(15);
  font-weight: 600;
  line-height: 1;
}
.wysiwyg ol > li:last-child {
  margin-bottom: 0;
}
.wysiwyg ol > li ol {
  counter-reset: wysiwyg-ol-sub;
  margin: rem-calc(12) 0 0;
  padding-left: rem-calc(20);
}
.wysiwyg ol > li ol > li {
  counter-increment: wysiwyg-ol-sub;
  padding-left: rem-calc(36);
}
.wysiwyg ol > li ol > li::before {
  content: counter(wysiwyg-ol) "." counter(wysiwyg-ol-sub);
  top: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  font-weight: 400;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}