  
  ul,
  ol {
    
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    
    padding: 0rem;
    margin: 0rem;
    
    list-style-type: none;
  }
    
  ul > li,
  ol > li {
    
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.25rem;                   /* distanca midis ikonës dhe përmbajtjes */
  }
    
  ul > li::before,
  ol > li::before {
    
    content: "";
    
    width: 1.5rem;
    height: 1.5rem;
    
    flex: 0 0 auto;
    
    background-size: 1rem;
    background-position: center center;
    background-repeat: no-repeat;
  }
    
  ul.default > li::before {
    
    background-image: url(https://ketriweb.com/pub/file/f540ebed/abaaf295/chevron-circle-right-solid.svg);
  }
  
  ul.included > li::before {
    
    background-image: url(https://ketriweb.com/pub/file/f540ebed/451f7e5c/circle-check.svg);
  }
  
  ul.excluded > li::before {
    
    background-image: url(https://ketriweb.com/pub/file/f540ebed/721b24fc/circle-xmark.svg);
  }
  
  ul.noIcons > li::before {
    
    display: none;
  }
    
  ul > li.default::before,
  ol > li.default::before {
    
    background-image: url(https://ketriweb.com/pub/file/f540ebed/abaaf295/chevron-circle-right-solid.svg);
  }
  
  ul > li.included::before,
  ol > li.included::before {
    
    background-image: url(https://ketriweb.com/pub/file/f540ebed/451f7e5c/circle-check.svg);
  }
  
  ul > li.excluded::before,
  ol > li.excluded::before {
    
    background-image: url(https://ketriweb.com/pub/file/f540ebed/721b24fc/circle-xmark.svg);
  }
    
  ul.withGaps,
  ol.withGaps {
    
    gap: 0.5rem;
  }
    
  ul.largeIcons > li::before,
  ol.largeIcons > li::before {
    
    background-size: 1.25rem;
  }
  