ol,
ul {
  box-sizing: border-box;
}

ol.has-background,
ul.has-background {
  padding: 1.25em 2.375em;
}

ul.columns {
  float: none;
  padding-left: 0;
  padding-right: 0;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

ul {
  list-style-type: none;
}

ul > li {
  position: relative;
}

.wp-block-list > li::before {
  content: "•";
  font-size: 10px;
  color: black;
  position: absolute;
  left: -15px;
  top: 6px;
}

.wp-block-cover ul > li::marker {
  color: currentColor;
}

ul.columns {
  float: none;
  padding-left: 0;
  padding-right: 0;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

ul.columns li {
  margin-left: 1.2em;
}

.is-style-checked {
  --li-color-icon: #c1986c;
  padding-left: 0;
  list-style: none;
}

.is-style-checked li {
  position: relative;
  padding-left: calc(2em + 10px);
}

.is-style-checked li::before {
  content: "\e810";
  font-family: "fontello";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  font-size: 2em;
  color: var(--li-color-icon);
  position: absolute;
  top: 0.1em;
  left: 0;
  line-height: 1;
}

.is-style-target {
  padding-left: 0;
  list-style: none;
}

.is-style-target li {
  position: relative;
  padding-left: calc(1.4em + 10px);
}

.is-style-target li::before {
  content: "";
  display: block;
  width: 1.4em;
  height: 1.4em;
  border-radius: 999px;
  background: rgb(255, 255, 255);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 25%,
    rgba(245, 218, 165, 1) 30%
  );
  position: absolute;
  left: 0;
  top: 0.3em;
}

.is-style-numbers {
  padding-left: 0;
  list-style: none;
  counter-reset: list_item;
  --li-color-icon: #c1986c;
}

.is-style-numbers li {
  counter-increment: list_item;
  position: relative;
  padding-left: calc(2em + 10px);
  line-height: 1.4;
  margin-bottom: 10px;
}

.is-style-numbers li::before {
  content: "0" counter(list_item) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.4em;
  line-height: 1;
  font-weight: bold;
  color: var(--li-color-icon);
}

.is-style-numbers li:nth-child(n + 9) {
  content: counter(list_item) ".";
}
