/*List with checkmark */
 /*.is-style-checkmark-list {
    list-style: none !important;
    padding-left: 0;
  }
  
  .is-style-checkmark-list li:before {
    content: '✔';
    padding-right: 0.5em;
    color: green;
  }

  .is-style-checkmark-list li div {
    display: inline-block;
  } */


  .is-style-checkmark-list-green li,
  .is-style-checkmark-list-gray li,
  .is-style-2col-list li,
  .is-style-crossmark-list-red li { 
    list-style: none !important;
    margin-bottom: 1rem;
  }
  

  .is-style-checkmark-list-green li::marker { 
    content: '✓ ';
    color: green;
    font-weight: bold;
  }

  .is-style-checkmark-list-gray li::marker { 
    list-style: none !important;
    content: '✔ ';
    color:gray;
  }

  /* ˟  */
  .is-style-crossmark-list-red li::marker { 
    list-style: none !important;
    content: 'X ';
    color:red;
  }




  .is-style-2col-list {
    background: #f8f8f8;
    padding: 20px 0 20px 40px;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 40px;
    column-gap: 40px;
    -moz-column-gap: 40px;
    margin:0;
}

  .is-style-2col-list li::marker {
    list-style: none !important;
    content: '+  ';
    color: aqua;
  }

  