/* Task Info Btn --- not used*/ 

.moreInfoBtn{
    display: none; /* not used*/
    height: 40px;
    margin: 0px 5px;
}

.dot{
    height: 10px;
}

.moreInfoBtn:hover{
    color: rgb(12, 80, 114);
}

/* Star Checkboc*/

.starCheckBox{
    display: none;
}

.starLabel{
    height: 40px;
    margin: 0px 5px;
    font-size: 37px;
    color: rgb(152, 152, 152);
    cursor: pointer;
    user-select: none;
    transition: color 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -3px;
    font-weight: bolder;
}

.starLabel:hover{
    color: black;
}

.starCheckBox:checked + .starLabel{

    color: gold;
    
}

.line{
    display: flex;
    margin: 20px 10px 20px 0px;
    cursor: pointer;
}

.line p{
    margin: 0;
    width: 50%;
    text-align: center;
    color: white;
    font-weight: bold;
}

.line-x{
    display: none;
    align-self: center;
    justify-self: center;
    width: 50%;
    height: 2px;
    background-color: white;

}

.line-x.show{
    display: block;
}

.line-close{
    padding: 0px 20px;
    color: white;
    cursor:pointer;
    user-select: none;
}


.trashBin{
    user-select: none;
    align-items: center;
    justify-items: center;
    transform:  translateY(1px);
}

.trashBin img{
    height: 35px;
    margin: 0px 0px 0px  5px;
}

.trashBin.red{
    color: red;
}

.trashBinList{
    
    color: rgba(255, 255, 255, 0);
    transition: ease-in-out 0.2s;
}

.trashBinList img{
    height: 25px;
    display: none;
}