#todo_modal {
    position: absolute;
    min-width: 360px;
    width: 360px;
    min-height: 320px;
    height: 320px;
    margin: 0;
    background: #FFF;
    border-radius: 7px;
    box-shadow: rgb(0 0 0 / 35%) 0px 0px 25px 1px;
}

.todo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    padding: 0 5px 0 16px;
    border-bottom: 1px solid #e3e3e3;
}

.todo-header .title > p {
    font: 500 15px/1 'noto';
    color: #1c1c1c;
}

.todo-header #btn_todo_close {
    display: block;
    width: 28px;
    height: 28px;
    background: transparent url('../img/icons/ico-memo-close.png') 50% 50%/100% 100% no-repeat;
    cursor: pointer;
}

.todo-list {
    height: 100%;
    max-height: calc(100% - 105px);
    padding: 0 11px 0 13px;
    overflow-y: auto;
}

.todo-list > .todo-item {
    display: flex;
    align-items: flex-start;
    padding: 8px 2px 8px 7px;
    border-bottom: 1px dashed #e3e3e3;
}

.todo-list > .todo-item .todo-checkbox {
    position: relative;
    display: flex;
    align-items: center;
}

.todo-list > .todo-item .todo-checkbox label span {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff url('../img/icons/ico-checkbox-bl.png') 50% 0%/ 100% auto no-repeat;
    border: 1px solid #dcdcdc;
    vertical-align: middle;
    cursor: pointer;
}

.todo-list > .todo-item .todo-checkbox input[type="checkbox"]:checked+label span {
    background: #fff url('../img/icons/ico-checkbox-bl.png') 50% 100%/ 100% auto no-repeat;
}

.todo-list > .todo-item .todo-conts {
    flex-basis: calc(100% - 36px);
    padding: 0 10px;
    font: 400 15px/1.5em 'noto';
    color: #0b1018;
    text-align: left;
    word-break: break-all;
}


.todo-list > .todo-item .todo-conts[contenteditable="plaintext-only"] {
    text-decoration: none !important;
    cursor: auto;
}


.todo-list > .todo-item .todo-conts.strike {
    text-decoration: line-through;
}

.todo-list > .todo-item .todo-delete {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 3px;
}

.todo-list > .todo-item .todo-delete > button {
    display: block;
    width: 16px;
    height: 16px;
    background: transparent url('../img/icons/ico-close-round-gray.png') 50% 50% / 100% 100% no-repeat;
    cursor: pointer;
}

.todo-add {
    display: flex;
    padding: 12px 8px;
}

.todo-add > input {
    width: calc(100% - 70px);
    padding: 0 12px;
    margin-right: 5px;
    border: 1px solid  #ddd;
    border-radius: 3px;
    font: 400 14px/1 'noto';
    color: #0b1018;
    text-align: left;
}

.todo-add > input::placeholder {
    color: #999;
    opacity: 1;
}

.todo-add > input:-ms-input-placeholder {
    color: #999;
    font-weight: 400;
    font-family: 'noto';
    font-size: 14px;
}

.todo-add > input::-webkit-input-placeholder {
    color: #999;
    font-weight: 400;
    font-family: 'noto';
    font-size: 14px;
}

.todo-add > input::-moz-placeholder {
    color: #999;
    font-weight: 400;
    font-family: 'noto';
    font-size: 14px;
}

.todo-add > button {
    width: 65px;
    height: 35px;
    border-radius: 3px;
    background-color: #43a2ff;
    font: 500 14px/1 'noto';
    color: #fff;
    cursor: pointer;
}


/*
<div class="todo-add">
    <input type="text" placeholder="할일을 입력하세요.">
    <button type="button" class="">할일추가</button>
</div>

*/