/** lists **/
ol{
  padding-left: 1.6em;
  margin-bottom: var(--list-mb);
  list-style: decimal;
}
ol > li:not(:last-child) {
  margin-bottom: var(--li-margin);
}
ol > li:first-child {
  margin-top: var(--li-margin);
}

.use-standard-bullet ul,
.coh-wysiwyg ul {
  padding-left: 1.6em;
  margin-bottom: var(--list-mb);
  list-style: disc;
}

.coh-wysiwyg ul{
  padding-left: 0;
}
.use-standard-bullet ul > li:not(:last-child) {
  margin-bottom: var(--li-margin);
}
.use-standard-bullet ul > li:first-child {
  margin-top: var(--li-margin);
}
/** end lists**/

/** Star list **/
.use-list-starred ul {
  margin-bottom: var(--list-mb);
  list-style: none;
}
.use-list-starred ul > li {
  padding-left: 1.6em;
  position: relative;
}
.use-list-starred ul > li:before {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 21'%3E%3Ccircle cx='10' cy='10.19' r='9.5' stroke='%23000'/%3E%3Cpath fill='%23000' d='M10 3.94s.38 3.19 1.72 4.53c1.34 1.34 4.53 1.72 4.53 1.72s-3.2.38-4.53 1.72C10.38 13.24 10 16.44 10 16.44s-.38-3.2-1.72-4.53c-1.34-1.34-4.53-1.72-4.53-1.72s3.2-.38 4.53-1.72C9.62 7.13 10 3.94 10 3.94z'/%3E%3C/svg%3E");
  background-size: 97%;
  content: "";
  height: 1em;
  left: 0;
  position: absolute;
  top: 0.2em;
  width: 1em;
}
.use-list-starred ul > li:not(:last-child) {
  margin-bottom: var(--li-margin);
}
.use-list-starred ul > li:first-child {
  margin-top: var(--li-margin);
}
/** end star list **/
