
/* ------------------------------
 * List Checkmark & Ex-mark
 * ------------------------------ */

ul.is-style-checkmark,
ul.is-style-ex-mark {
    padding-left: var(--wp--preset--spacing--20);
    list-style: none;
}

ul.is-style-checkmark li,
ul.is-style-ex-mark li {
    position: relative;
    padding-left: 1.5em;
}

/* Checkmark */

ul.is-style-checkmark li::before {
    content: '\2713'; /* ✓ */
    position: absolute;
    left: 0; top: 0;
    font-weight: bold;
}

/* Ex-mark */

ul.is-style-ex-mark li::before {
    content: "\2716"; /* ✖ */
    position: absolute;
    left: 0; top: 0;
}
