/* Checkmark style
   ========================================================================== */

ul.is-style-checkmark-list {
    padding-left: 0;
    list-style: none;
}

ul.is-style-checkmark-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5em;
}

ul.is-style-checkmark-list li::before {
    content: '';
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m9 20.42l-6.21-6.21l2.83-2.83L9 14.77l9.88-9.89l2.83 2.83z'/%3E%3C/svg%3E");
    margin-right: var(--wp--preset--spacing--10);
    display: inline-block;
    width: 1em;
    height: 1em;
    mask-repeat: no-repeat;
    background-color: currentColor;
}

/* Arrow style
   ========================================================================== */

ul.is-style-arrow-list {
    padding-left: 0;
    list-style: none;
}

ul.is-style-arrow-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5em;
}

ul.is-style-arrow-list li::before {
    content: '';
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000000' d='M4 10v4h9l-3.5 3.5l2.42 2.42L19.84 12l-7.92-7.92L9.5 6.5L13 10z'/%3E%3C/svg%3E");
    margin-right: var(--wp--preset--spacing--10);
    display: inline-block;
    width: 1em;
    height: 1em;
    mask-repeat: no-repeat;
    background-color: currentColor;
}