body{
    padding: 0;
    margin: 0;
    background-color:rgba(0,0,0, 0.1);
    font-family: 'Titillium Web', sans-serif;
}
/*  -----container-----  */
.container{
    padding: 10px;
    width: 380px;
    margin: 0 auto;
}
/*  -----header-----  */
.header{
    width: 380px;
    height: 200px;
    background-image: url('../img/bg1.jpg');
    background-size: 100% 200%;
    background-repeat: no-repeat;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.clear{
    width: 30px;
    height: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.clear i{
    font-size: 30px;
    color: #fff;
}

.clear i:hover{
    cursor: pointer;
    text-shadow: 1px 3px 5px #000;
    transform: rotate(45deg);
}

#date{
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #FFF;
    font-size: 25px;
    font-family: 'Titillium Web' sans-serif;
}

.display{
    position: absolute;
    height: 45px;
    width: 380px;
    top: 160px;
}

.display i.All{
    position: absolute;
    right: 60px;
    font-size: 25px;
    color: #fff;
    bottom: 13px;
}
.display i.All:hover{
    cursor: pointer;
}

.display i.fulfill{
    position: absolute;
    right: 35px;
    font-size: 25px;
    color: #fff;
    bottom: 13px;
}
.display i.fulfill:hover{
    cursor: pointer;
}

.display i.unfinished{
    position: absolute;
    right: 10px;
    font-size: 25px;
    color: #fff;
    bottom: 13px;
}
.display i.unfinished:hover{
    cursor: pointer;
}
/*  -----content-----  */
.content{
    width: 380px;
    height: 350px;
    max-height: 350px;
    background-color: #FFF; 
    border-radius: 0 0 0 0;
    overflow: auto;
}

.content ul{
    padding: 0;
    margin: 0;
}

.fa-check-circle{
    color: #6eb200;
}

.item{
    font-size: 15px;
    color: #000;
    width: 380px;
    height: 45px;
    min-height: 45px;
    border-bottom: 1px solid rgba(0,0,0, 0.1);
    list-style: none;
    position: relative;
    padding: 0;
    margin: 0;
}

.item i.co{
    position: absolute;
    font-size: 25px;
    padding-left: 5px;
    left: 15px;
    top: 10px;
}

.item i.co:hover{
    cursor: pointer;
}

.item input.text{
    position: absolute;
    padding: 0;
    margin: 0;
    font-size: 20px;
    left: 50px;
    top: 10px;
    background-color: #fff;
    width: 285px;
    overflow: hidden;
    border: none;    
}

.item input:disabled{
    color: #000;
    font-size: 20px;
}

.item i.de{
    position: absolute;
    font-size: 25px;
    right: 15px;
    top: 10px;
}

.item i.de:hover{
    color: red;
    cursor: pointer;
}

.lineThrough{
    text-decoration: line-through;
    color: #ccc !important;
}

::-webkit-scrollbar{
    display: none;
}

/* ------ add item ------*/
.add-to-do{
    position: relative;
    width: auto;
    height: 40px;
    background-color: #fff;
    padding: 10px;
    border-top: 1px solid rgba(0,0,0, 0.1);
}

.add-to-do i{
    position: absolute;
    font-size: 40px;
    color: #4162f6;
}

.add-to-do i:hover{
    cursor: pointer;
    text-shadow: 1px 2px 3px blue;
}

.add-to-do input{
    position: absolute;
    left: 50px;
    height: 35px;
    width: 310px;
    background-color: transparent;
    border: none;
    font-size: 20px;
    padding-left: 10px;
}

.add-to-do input::placeholder{
    color: #4162f6;
    font-family: 'Titillium Web', sans-serif;
    font-size: 20px;
}
