.wd-list {
  list-style: none;
  --li-pl: 0;
  --list-mb: 0;
  --li-mb: 15px;
}
.wd-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: inherit;
  transition: all 0.25s ease;
}
.list-icon,
.wd-list > li > img,
.wd-list picture {
  max-width: 150px;
  flex: 0 0 auto;
  margin-inline-end: 10px;
  vertical-align: middle;
  text-align: center;
  transition: inherit;
}
.wd-list > li > img.wd-lazy-load,
.wd-list picture {
  width: auto;
}
.wd-list-type-ordered {
  counter-reset: item;
}
.wd-list-type-ordered .list-icon {
  font-weight: 600;
}
.wd-list-type-ordered .list-icon:before {
  content: counter(item) ".";
  counter-increment: item;
}
.wd-list-type-unordered .list-icon:before {
  content: "\f113";
  font-family: "woodmart-font";
}
.wd-list-type-unordered:not(.wd-list-shape-icon) .list-icon {
  font-size: 60%;
}
.wd-list-shape-icon .list-icon {
  min-width: 1.85em;
  height: 1.85em;
  line-height: 1.85em;
}
.wd-list-shape-icon.wd-list-type-unordered .list-icon:before {
  font-size: 65%;
}
.wd-list-style-rounded .list-icon {
  border-radius: 100px;
}
@media (max-width: 1024px) {
  .wd-list:is(.wd-fontsize-m, .wd-fontsize-l) {
    font-size: 16px;
  }
}
