/**
 * Readable-documents list on the Terms & Conditions pages.
 *
 * A plain list (not a Bootstrap list-group) with a green Font Awesome check
 * mark as the marker, inlined as an SVG so it needs no webfont or JS kit.
 */
.servas-terms-documents {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.servas-terms-documents li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.servas-terms-documents li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* Font Awesome Free 6.5.1 "check" (fa-solid fa-check), tinted Servas green. */
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%234a8a3d" d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"/></svg>');
}
