.custom-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 1em;
}
/*
.custom-list--style-1 {
    margin-top: -1em;
}
*/
.custom-list--style-2 {
    margin-top: 1em;
}
.custom-list li {
    position: relative;
    line-height: 1.5em;
}
.custom-list--style-1 li {
    padding-left: 1.5em;
}
.custom-list--style-2 li,
.custom-list--style-3 li {
    padding-left: 2em;
}
.custom-list--style-2 li:not(:last-child) {
    margin-bottom: .5em;
}
.custom-list li::before {
    content: "";
    display: block;
    width: 1.5em;
    height: 1.5em;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
}
.custom-list--style-1 li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='5px' height='5px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2Z' fill='%23fff'/%3E%3C/svg%3E");
    background-size: 5px 5px;
}
.custom-list--style-2 li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 11.8571L10.0909 17L19 8' stroke='%2323BBEE' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-size: contain;
}
.custom-list--style-3 li::before {
    counter-increment: custom-counter;
    content: counter(custom-counter) ". ";
    display: inline-block;
    width: 1.7em;
    text-align: right;
}