  
  ul,
  ol {
    
    display: flex;
    flex-direction: column;
    flex-wrap: 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://ketri.dev/pub/file/f540ebed/3a0f631d/chevron-circle-right-solid.svg);
  }
  
  ul.included > li::before {
    
    background-image: url(https://ketri.dev/pub/file/f540ebed/b1dd1e4f/circle-check.svg);
  }
  
  ul.excluded > li::before {
    
    background-image: url(https://ketri.dev/sq);
  }
  
  ul.company > li::before {
    
    background-image: url(https://ketri.dev/sq);
  }
  
  ul.individual > li::before {
    
    background-image: url(https://ketri.dev/sq);
  }
  
  ul.invoice > li::before {
    
    background-image: url(https://ketri.dev/sq);
  }
  
  ul.account > li::before {
    
    background-image: url(https://ketri.dev/sq);
  }
  
  ul.noIcons > li::before {
    
    display: none;
  }
    
  ul > li.default::before,
  ol > li.default::before {
    
    background-image: url(https://ketri.dev/pub/file/f540ebed/3a0f631d/chevron-circle-right-solid.svg);
  }
  
  ul > li.included::before,
  ol > li.included::before {
    
    background-image: url(https://ketri.dev/pub/file/f540ebed/b1dd1e4f/circle-check.svg);
  }
  
  ul > li.excluded::before,
  ol > li.excluded::before {
    
    background-image: url(https://ketri.dev/sq);
  }
  
  ul > li.company::before,
  ol > li.company::before {
    
    background-image: url(https://ketri.dev/sq);
  }
  
  ul > li.individual::before,
  ol > li.individual::before {
    
    background-image: url(https://ketri.dev/sq);
  }
  
  ul > li.invoice::before,
  ol > li.invoice::before {
    
    background-image: url(https://ketri.dev/sq);
  }
  
  ul > li.account::before,
  ol > li.account::before {
    
    background-image: url(https://ketri.dev/sq);
  }
    
  ul.withGaps,
  ol.withGaps {
    
    gap: 0.5rem;
  }
    
  ul.largeIcons > li::before,
  ol.largeIcons > li::before {
    
    background-size: 1.25rem;
  }
    
  ul.row,
  ol.row {
    
    flex-direction: row;
  }
  
  ul.wrap,
  ol.wrap {
    
    flex-wrap: wrap;
  }
    
  ul.mainCenter,
  ol.mainCenter {
    
    justify-content: center;
  }
  
  ul.crossCenter,
  ol.crossCenter {
    
    align-items: center;
  }
  