{% set setClass = '' %}
{% if customClass is defined %}
  {% set setClass = customClass %}
{% endif %}
<ul class="px-0 py-3 m-0 textAndListBlock__listText {{ setClass }}">
  {% for item in list %}
    {% if (item.text|length) > 0 %}
      <li class="textAndListBlock__listText--item mb-3 {{justify is defined and justify is not empty ? justify }}">
        <p class="my-0 bullet me-2 pt-1">
          <img data-src="/assets/img/bullet.svg"
            width="20"
            height="20"
            src=""
            alt="bullet"
            loading="lazy"
            class="lazyload im-fluid" />
        </p>
        <div class="descriptionList">
          {{ item.text }}
        </div>
      </li>
    {% endif %}
  {% endfor %}
</ul>
