.ci__checklist-header-container {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #F0F0F0;
}

.ci__add-check-list-item-button {
    font-size: 24px;
    cursor: pointer;
    margin-left: 10px;
    color: #4A4A4A;
}

.ci__checklist-item-container {
    padding-bottom: 6px;
    padding-top: 6px;
    border-bottom: 1px solid #F0F0F0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.ci__checklist-item-icon {
    font-size: 24px;
    color: #E9E9E9;
}

.ci__checklist-item-text {
    color: #7A7A7A;
    font-family: Roboto;
    font-size: 12px;
    line-height: 24px;
    font-weight: normal;
    padding-left: 6px;
    -webkit-text-decoration-color: #E9E9E9;
    text-decoration-color: #E9E9E9;
}

.ci__custom-checklist-item-text {
    color: #262626;
    font-family: Roboto;
    font-size: 12px;
    line-height: 24px;
    font-weight: normal;
    padding-left: 6px;
    -webkit-text-decoration-color: #E9E9E9;
    text-decoration-color: #E9E9E9;
}

.ci__action-button-container {
    display: flex;
}

.ci__action-button {
    font-size: 24px;
    cursor: pointer;
    margin-left: 10px;
    color: #484B4E;
    visibility: hidden;
}

.ci__checklist-item-container:hover  .action-button {
    
    visibility: visible;
}