#main .check-list {
  list-style: none;
  margin: 0;
  display: inline-block;
  text-align: left;

  .check-box {
    cursor: pointer;
    padding: 4px 0;

    [type='checkbox'] {
      display: none;
    }

    .fas {
      margin-left: 23px;
      margin-right: 0;
    }
  }

  .check-box:last-child {
    padding-bottom: 0;
  }

  .check-box-wrapper {
    color: var(--light-grey-7);
    display: table;
    font-size: 16px;
    font-weight: 300;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 342px;
  }

  .check-box.hover .check-box-wrapper,
  .check-box-wrapper:hover {
    color: var(--white-1);
  }
}
