/* styles that need to be visible 
in both editor WYSIWYG and frontend */

/* Special Lists */
ul.featured {
  list-style: none;
  margin-left: 9px;
  li {
    position: relative;
    padding-left: 32px;
    margin: 16px 0;
    &::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 24px;
      height: 24px;
      background-image: url('/wp-content/themes/evodental/assets/images/orange-check-outline.svg');
      background-repeat: no-repeat;
      background-size: contain;
    }
  }
}


.highlight {
    color: #E06540;
}


/* brushstroke orange underline */
span.special-underline {
  position: relative;
  white-space: nowrap;
}
span.special-underline::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 8px;
  background-image: url('/wp-content/themes/evodental/assets/images/underline.svg');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 100%;
}

