* {
    box-sizing: border-box ;
    transition: all .5s ease-in-out;

}
.bd {
    border: 1px solid #ff0000; !important
}

.inScope{
    scale: 1.1;
    margin-top: 100px;
}
.outScope{
    filter: blur(4px);
    scale: .5;
    margin: 0;
}
.disNone{
    display: none;
}

.done{
    
}
.done .fa-circle-check {
    color: rgb(0, 255, 140);
    scale: 1.3;
    transition: all .5s ease-in-out;

}

.box{
    width:fit-content;
}
.dummy{
    position: relative;
}
.dummy::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.box .taskCont {
    position: relative;
    justify-content:flex-start;
    height: fit-content;
    transition: all .5s ease-in-out;
}



.taskCont .item {
    /* border: 1px solid #000; */
    width: 100%;
    opacity: 1;
}

.taskCont .taskInfo{
    text-align: left;
}

.taskCont .remove {
    width: 150%;
    opacity: 0;
}

.taskCont .item p {
    /* border: 1px solid #000; */
    /* min-width: fit-content; */
    line-height: 1.5;
    margin-right: 30px;
    margin-left: 10px;
    transition: all .5s ease-in-out;
    position: relative;
}

.done p{
    text-decoration: line-through;
    color: rgb(0, 255, 140);
}

.taskInfo :nth-child(1) {
    font-size: large;
}
.taskInfo :nth-child(2) {
    background-image: linear-gradient(to left, #e7e9eb00, #e7e9eb2d);
    padding: 2px 10px;
    border-radius: 7px;
    width: fit-content;
}
.taskInfo .manOfTask {
    color: rgb(255, 191, 191);
    color:wheat;

}



.taskCont .item .controler {
    /* border: 1px solid #000; */
    display: flex;
    align-items: center;
    justify-content: end;

}
.taskCont .item i {
    margin: 0 4px;
    padding-top: 2px;
    display: inline-block;
    height: 100%;
    background: transparent;
    height: 25px;
    height: 25px;
    width: 25px;
    line-height: 1.3;
    transition: all .5s ease-in-out;
}

.box .item i:hover{
    /* color: rgb(71, 0, 0); */
    cursor:pointer;
    /* rotate: 1turn; */
    /* scale: 1.2; */
    box-shadow: 0px 0px 5px;
    border-radius: 50%;
}