.todo .todo-list-item {
    border-bottom: 1px solid #e5ebf1;
    padding: 10px 0px 10px 10px;
    cursor: pointer;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    position: relative; 
}

.todo .todo-list-item.success:before {
    background: #76bbad; 
}

.todo .todo-list-item.info:before {
    background: #5b90bf; 
}

.todo .todo-list-item.danger:before {
    background: #d66061; 
}

.todo .todo-list-item:before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    margin: 0;
    height: 16px;
    width: 2px; 
}

.todo .todo-list-cb {
    display: none; 
}

.todo .todo-list-mark {
    position: relative;
    display: inline-block;
    margin-right: 5px;
    width: 16px;
    height: 16px;
    border: 2px solid #d5dee9;
    vertical-align: middle; 
}

.todo .todo-list-mark:before {
    content: '';
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -3px 0 0 -4px;
    height: 5px;
    width: 8px;
    border: solid #577ca4;
    border-width: 0 0 3px 3px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg); 
}

.todo label {
    margin-bottom: 0;
    font-size: 12px; 
}

.todo .todo-list-cb:checked ~ .todo-list-mark {
    border-color: #577ca4; 
}

.todo .todo-list-cb:checked ~ .todo-list-mark:before {
    display: block; 
}

.todo .todo-list-desc {
    font-weight: 500;
    color: #333333; 
}

.todo .todo-list-cb:checked ~ .todo-list-desc {
    color: #577ca4;
    text-decoration: line-through; 
}
