
body{
    font-family: 'Josefin Sans', sans-serif !important;
    height: 100vh !important;
    /* background-color: hsl(235, 21%, 11%) !important; */
}

.hide {
    display: none;
}

.backgroundImg{
    background-image: url(./images/bg-desktop-light.jpg);
    background-position: center;
    background-size: cover;
    height: 40vh;
}

.head{
    position: absolute;/**/
    top: 8%;
    left: 30%;
    z-index: 3;
    width: 39%;
}

.head button{
    background-color: transparent;
    border: none;
}

.mainInput{
    position: absolute;/**/
    z-index: 4;
    width: 38% ;
    top: 15%;
    left: 31%;
    box-sizing: border-box;
    padding-top: 3rem;
}

.toDoList{
    position: relative;/**/
    width: 38%;
    top: -8%;  /**/
    left: 31%;
    z-index: 3;
    border-radius: .3rem;
    background-color: white;
    /* box-shadow: 0px 2px 10px rgb(194, 193, 193); */
    box-shadow: 0 4px 8px 0px rgba(184, 181, 181, 0.2), 0 6px 20px 5px rgba(186, 186, 186, 0.19);
}

@media screen and (min-width:1200px) {
    .toDoList{
        width: 39%;
        left: 31%;
        top: -3%;
    }
    .mainInput{
        width: 39%;
        left: 31%;
        top: 20%;
    }
    .ulfooter{
        padding-left: 0.3rem;
        /* padding-right: 0.5rem; */
    }
}
@media screen and (max-width:1200px) and (min-width:992px) {
    .toDoList{
        width: 43%;
        left: 30%;
        top: -4%;
    }
    #head{
        width: 45%;
        left: 28%;
        top: 12%;
    }
    .mainInput{
        width: 43%;
        left: 30%;
        top: 17%;
    }
    .ulfooter{
        padding-left: 0.5rem;
        /* padding-right: 0.5rem; */
    }
}
@media screen and (max-width:992px) and (min-width:768px) {
    .toDoList{
        width: 50%;
        left: 25%;
        top: -2%;
        margin-bottom: 2rem;
    }
    .mainInput{
        width: 50%;
        left: 25%;
        top: 29%;
    }
    #head{
        width: 51%;
        left: 23%;
        top: 25%;
    }
    .ulfooter{
        padding-left: 0.3rem;
        padding-right: 0.3rem;
    }
}
@media screen and (max-width:768px) and (min-width:600px) {
    .toDoList{
        width: 60%;
        left: 20%;
        top: -3%;
    }
    #head{
        width: 55%;
        left: 20%;
        top: 20%;
    }
    .mainInput{
        width: 60%;
        left: 20%;
        top: 23%;
    }
    .ulfooter{
        padding-left: 0.3rem;
        padding-right: 0.3rem;
    }
}
@media screen and (max-width:600px)  {
    .toDoList{
        top: -3%;
        width: 95%;
        left: 2%;
        margin-bottom: 1rem;
    }
    #active2{
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .aac {
        display: none !important;
    }
    .ulfooter2{
        width: 60%;
        box-sizing: border-box;
        padding-bottom: 0rem;
        border-radius: 5%;
        background-color: white;
        box-shadow: 0 4px 8px 0px rgba(184, 181, 181, 0.2), 0 6px 20px 5px rgba(186, 186, 186, 0.19);
        display: flex !important;
    }
    .mainInput{
        top: 22.5%;
        width: 95%;
        left: 2%;
    }
    #head{
        /* top: 20%; */
        width: 90%;
        left: 5%;
        top: 19%;
        justify-content: space-between;
    }
    #head button{
        margin-bottom: 1rem;
    }
    .ulfooter{
        /* padding-left: 0.3rem; */
        /* padding-right: 0.3rem; */
        padding-top: 0.4rem
    }
}

.toDoList ul{
    padding-left: 0rem !important;
}

.toDoList ul li {
    position: relative;
    list-style: none;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    /* color: hsl(235, 19%, 35%); */
    /* z-index: 3; */
    padding : .7rem 1.5rem .7rem 3rem;
    font-family: 'Josefin Sans', sans-serif !important;
    border-bottom: 1px solid hsl(233, 11%, 84%); 
}

.toDoList ul li input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    top: 0;
    left: 0;
    z-index: 3;
    border-radius: 50%;
    height: 1.3rem;
    width: 1.3rem;
    margin-top: .6rem;
    margin-left: 1rem;
}

.Xicon{
    color: hsl(220, 4%, 59%) ;
    font-size: 1.3rem;
    display: block;
}

/* .toDoList ul li:hover i{
    color: hsl(220, 4%, 59%) !important;
    display: block !important;
} */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.3rem;
    width: 1.3rem;
    border-radius: 50%;
    border: 1px solid hsl(233, 11%, 84%);
    background-color: transparent;
    margin-left: 1rem !important;
    margin-top: .7rem;
}

.toDoList ul li input:hover ~ .checkmark{
    border-color: rgba(135, 93, 234, 0.826);
}

.toDoList ul li input:checked ~ .checkmark {
    /* background-color: #2196F3; */
    background-image: linear-gradient(  135deg ,hsl(192, 100%, 67%) , hsl(280, 87%, 65%));
}

.toDoList ul li input:checked ~ .text {
    color: hsl(233, 14%, 66%) !important;
    text-decoration: line-through;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.toDoList ul li input:checked ~ .checkmark::after {
    display: block;
}

.toDoList ul li .checkmark::after {  /* NEW AMD IMPORTANT */
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.ulfooter p{
    cursor: pointer;
    color: hsl(236, 9%, 61%);
    font-size: .9rem;
    font-weight: 600 !important;
}

.ulfooter p:hover {
    color: hsl(235, 19%, 35%);
}

/* --------------------------------------dark Mood --------------------------------------------- */
