/* ul {
  margin: 0 !important;
  padding: 0 !important;
} */

ul li {
  cursor: pointer;
  position: relative;
  list-style-type: none;
  padding: 12px 8px 12px 40px;
  background: #fff;
  color: #555;
  font-size: 18px;
  transition: 0.2s;
  border-radius: 10px;
  margin-bottom: 10px;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ul li:nth-child(odd) {
  background: #979797;
} */

ul li:hover {
  background: #252525;
  color: #fff;
}

ul li.checked {
  background: green;
  color: #fff;
  text-decoration: line-through;
}

ul li.checked::before {
  content: "";
  position: absolute;
  border-color: #fff;
  border-style: solid;
  border-width: 0 2px 2px 0;
  bottom: 20px;
  left: 16px;
  transform: rotate(45deg);
  height: 15px;
  width: 7px;
}

.close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 12px 16px;
}

.close:hover {
  background: #f45d5c;
  color: #fff;
}

.header_todo_list {
  /* background: #dcdcdc; */
  padding: 30px 40px;
  color: #252525;
}

.header_todo_list:after {
  content: "";
  display: table;
  clear: both;
}

input {
  margin: 0;
  border: none;
  border-radius: 0;
  width: 75%;
  padding: 10px;
  float: left;
  font-size: 16px;
}

.add_button {
  padding: 10px;
  width: 25%;
  background: #d9d9d9;
  color: #555;
  float: left;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 0;
}

.add_button:hover {
  background-color: #bbb;
}
