* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
  }
 

.container {
  width: 100%;
  min-height: 100vh;
  background-color: #F7F4EB;
  padding: 10px;
  }
    
.todo-main {
  width: 100%;
  max-width: 650px;
  background-color: white;
  margin: 100px auto 20px;
  padding: 40px 30px 70px;
  border-radius: 10px;
}

.todo-main h2 {
  color: black;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #edeef0;
  border-radius: 30px;
  padding-left: 20px;
  margin-bottom: 25px;
}

input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 20px;
  font-weight: 14px;
}

button {
  border: none;
  outline: none;
  padding: 16px 50px;
  background-color: grey;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 40px;
  position: relative;
}

ul li {
  list-style: none;
  font-size: 17px;
  padding: 12px 8px 12px 50px;
  user-select: none;
  cursor: pointer;
  position: relative;
}

ul li::before {
  content: '';
  position: absolute;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  background-image: url(/assets/img/todoList/Circle-uncheck.png);
  background-size:  cover;
  background-position: center;
  top: 20px;
  left: 8px;
}

ul li.checked {
  color: #555;
  text-decoration: line-through;
}

ul li.checked::before {
  background-image: url(/assets/img/todoList/Circle-check-01.png);
}

ul li {
  list-style: none;
  font-size: 20px;
  padding: 12px 45px 12px 50px;
  user-select: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  
}

ul li span:first-child {
  display: inline-block;
  max-width: calc(100% - 60px);
  vertical-align: middle;
  margin-right: 10px;
  word-break: break-word;
}

ul li span:last-child {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  font-size: 22px;
  line-height: 40px;
}

ul li span:hover {
  background: #edeef0;
}

.deleting {
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}