@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;1,400&display=swap');
*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #f3f3f3;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
}
.toDo__container{
    margin: 30px 10px 60px;
    height: auto;
    background-color: #ffffff;
    border-radius: 10px;
}
.toDo__addTask{
    background-color: #f3f3f3;
    height: 64px;
    border-radius: 6px 6px 0 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 25px;
}
.toDo__addTask input{
    outline: none;
    border: none;
    background-color: #ffffff;
    width: 50%;
    height: 34px;
    border-radius: 4px;
    padding: 0px 30px 0 10px;
    font-size: 1rem;
    color: #777777;
    box-shadow: inset 2px 2px 5px rgba(154, 147, 140, 0.5), 
                1px 3px 5px rgba(255, 255, 255, 1);
}
.toDo__addTask input::placeholder{
    color: rgb(209, 209, 209);
    font-size: 12px;
}
.toDo__addTask button{
    width: 100px;
    height: 34px;
    border: none;
    background-color: #222222;
    border-radius: 0 4px 4px 0;
    margin-left: -20px;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.8em;
    box-shadow: 4px 3px 3px rgba(255, 255, 255, 1);
}
.toDo__addTask span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.25s;
}
.toDo__addTask span:after {
    content: '+';
    position: absolute;
    opacity: 0;
    top: 0;
    left: -20px;
    transition: 0.25s;
}
.toDo__addTask:hover span {
    padding-left: 20px;
}
.toDo__addTask:hover span:after {
    opacity: 1;
    left: 0;
}
.body-title{
    display: flex;
    justify-content: space-between;
}
.title{
    width: 50%;
    height: 46px;
    border-right: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4em;
    margin-top: -10px;
}
.title:first-child{
    border-radius: 6px 0px 0 0;
    background-color: #f3c4cc;
}
.title:last-child{
    border-radius: 0px 6px 0 0;
    background-color: #9adbcd;
    border-right:none;
}
.body-container{
    min-height: 300px;
    display: flex;
    justify-content: space-between;
}
.list_container,
.done_container{
    border-right: 1px solid #e3e3e3;
    display: flex;
    flex-direction: column;
    width: 50%;
}
.done_container{
    border-right: none;
}
.toDo__card{
    position: relative;
    min-height: 22px;
    margin: 0 12px;
    padding: 10px 10px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    overflow: auto;
    border-bottom: 1px solid rgb(223, 223, 223);
}
.drag_style{
    border: 1px solid #d6d6d6;
    background-color: #fff;
    box-shadow: 0px 0px 10px 1px #c9c9c9;
    transform: rotate(2deg);
}
.toDo__card:last-child{
    border-bottom: none;
}
.toDo__card .checkbox{
    height: 10px;
    width: 10px;
    border: 1px solid #cfcfcf;
    border-radius: 50%;
    margin-right: 15px;
    cursor: pointer;
}
.active span{
    height: 10px;
    width: 10px;
    border: 1px solid #cfcfcf;
    border-radius: 50%;
    margin-right: 15px;
    cursor: pointer;
    background: #181818;
    box-shadow: 0px 0px 0px 2px #ffffff inset;
}
.toDo__card h4{
    font-size: 1.3em;
    font-weight: normal;
    color: #777777;
    margin-right: 5px;
}
.done_container h4{
    text-decoration: line-through;
}
.active h4{
    font-size: 1.3em;
    font-weight: normal;
    color: #777777;
    margin-right: 5px;
    text-decoration: line-through;
}
.done_container .checkbox{
    background: #181818;
    box-shadow: 0px 0px 0px 2px #ffffff inset;
}
.toDo-remove-btn{
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    margin-left: 6px;
}
.toDo-remove-btn img{
    height: 8px;
}
.toDo-done-btn{
    padding-bottom: 6px;
}
.motivation{
    background-color: rgb(218, 218, 218);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 6px 6px;
    text-align: center;
}
.motivation h4{
    font-size: 1em;
    color: rgb(168, 168, 168);
    font-weight: regilar;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}
li.ui-sortable-helper {
    border: 1px solid #d6d6d6;
    background-color: #fff;
    box-shadow: 0px 0px 16px 2px #bebebe34;
    transform: rotate(2deg);
}
.done_container  li.placeholder,
.list_container li.placeholder {
    height:50px;
   list-style-type: none;
}