
  ul.check-list {
    margin: 0;
    padding: 0;
  }

  /* Style the list items */
  ul.check-list li {
    cursor: pointer;
    position: relative;
    padding: 0.3em 2.2em;
    /*padding: 12px 8px 12px 40px;*/
    list-style: none;
    transition: 0.2s;
    /* make the list items unselectable */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  ul.check-list li::before {
    content: '\2022';
    position: absolute;
    border-color: #fff;
    border-style: solid;
    border-width: 0 3px 3px 0;
    left: 16px;
    height: 15px;
    width: 7px;
  }

  ul.check-list li.checked {
    font-weight: bold;
    text-decoration: line-through;
  }

  ul.check-list li.checked:before {
    content: '';
    position: absolute;
    border-color: #4CAF50;
    border-style: solid;
    border-width: 0 3px 3px 0;
    left: 16px;
    transform: rotate(45deg);
    height: 15px;
    width: 7px;
  }

  .password_strength {
    padding: 0px 10px 2px 10px;
    margin-left: 5px;
    display: inline-block;
    font-weight: bold;
    color: #000000;
  }

  .password_strength_1 {
    padding: 0px 10px 2px 10px;
    margin-left: 5px;
    background-color: #fcb6b1;
    font-weight: bold;
    color: #000000;
  }

  .password_strength_2 {
    padding: 0px 10px 2px 10px;
    margin-left: 5px;
    background-color: #fccab1;
    font-weight: bold;
    color: #000000;
  }

  .password_strength_3 {
    padding: 0px 10px 2px 10px;
    margin-left: 5px;
    background-color: #fcfbb1;
    font-weight: bold;
    color: #000000;
  }

  .password_strength_4 {
    padding: 0px 10px 2px 10px;
    margin-left: 5px;
    background-color: #dafcb1;
    font-weight: bold;
    color: #000000;
  }

  .password_strength_5 {
    padding: 0px 10px 2px 10px;
    margin-left: 5px;
    background-color: #bcfcb1;
    font-weight: bold;
    color: #000000;
  }
