.simple-subtasks {
  font-size: 16px;
  list-style: none;
}
.simple-subtasks .task {
  position: relative;
  width: 100%;
  line-height: 48px;
  border-bottom: 1px solid #E8E8E8;
}
.simple-subtasks .task.complete textarea {
  text-decoration: line-through;
  color: #999;
}
.simple-subtasks .simple-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  padding: 12px;
  z-index: 2;
}
.simple-subtasks textarea {
  display: block;
  padding: 15px 50px;
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  line-height: 1.2;
  outline: none;
  resize: none;
  border: 0;
  z-index: 1;
  background-color: #fff;
}
.simple-subtasks .icon-add-task {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  color: #9b9b9b;
  text-align: center;
}
.simple-subtasks .icon-remove-task {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48px;
  height: 48px;
  color: #9b9b9b;
  text-align: center;
  cursor: pointer;
  z-index: 2;
}
.simple-subtasks.unable-edit .icon-remove-task {
  display: none;
}
