@keyframes wiggleWiggle{
    0%{transform: rotate(-5deg);
        border: 2px solid rgb(253, 0, 0);}
    5%{transform: rotate(5deg);}
    10%{transform: rotate(-5deg);}
    20%{transform: rotate(5deg);}
    30%{transform: rotate(0deg);
        border: 2px solid white;}
    40%{border: 2px solid rgb(253, 0, 0);}
    50%{border: 2px solid white;}
    60%{transform: rotate(-5deg);
        border: 2px solid rgb(253, 0, 0);}
    70%{transform: rotate(5deg);}
    80%{transform: rotate(-5deg);}
    90% {transform: rotate(5deg);} 
    100%{transform: rotate(0deg);
        border: 2px solid white;}
}
@keyframes slideout{
    0%{}
    100%{}
}
@keyframes slidein{
    0%{}
    100%{}
}
.slideOut{
    animation-name: slideout;
    animation-duration: 500ms;
    animation-timing-function: ease-in-out;
}
.slideIn{
    animation-name: slidein;
    animation-duration: 500ms;
    animation-timing-function: ease-in-out;
}
.wiggle{
    animation-name: wiggleWiggle;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
}
.addTaskMain{
    position: fixed;
    top: 97px;
    bottom: 0;
    left: 232px;
    display: flex;
    flex-direction: column;
    margin-left: 88px;
    margin-top: 40px;
    padding-right: 20px;
    gap: 10px;
    overflow-y: scroll;
    margin-bottom: 50px;
}
.addTaskMain h4{
    margin: 0;
    color: #42526E;
}
.enterTitleInput{
    background-color: transparent;
    border: transparent ;
    min-height: 74px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(214, 214, 214);
}
.enterTitleInput::placeholder{
    font-size: 30px;
    color: lightgrey;
    padding-left: 20px;
}
.assignTo{
    position: relative;
    margin-top: 30px;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(214, 214, 214);
}
.dropToggle{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.flip{
    transform: rotate(180deg);
    padding-top: 4px;
}
#addCategoryText{
    display: flex;
    align-items: center;
    gap: 25px;
}
.priorityBtn{
    gap: 10px;
}
.priorityBtn button{
    height: 51px;
    width: 136px;
    background-color: transparent;
    border: transparent ;
    box-shadow: 0px 0px 2px 0px rgb(0, 0, 0, 0.2);
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
}
.priorityBtn img{
    margin-left: 10px;
}
.dueDateInput{    
    background-color: transparent;
    border: transparent ;
    min-height: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(214, 214, 214);
    color: lightgray;
    padding-left: 20px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    color: rgba(0, 0, 0, 0);
    opacity: 1;
    display: block;
    background: url(../assets/icon/calendar.png) no-repeat;
    width: 25px;
    height: 20px;
    border-width: thin
}
.addCategory{
    position: relative;
    margin-top: 30px;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(214, 214, 214);
}
#description{
    width: 422px;
    min-height: 103px;
    background: #FFFFFF;
    border: 1px solid #D1D1D1;
    border-radius: 0px 10px 10px 10px;
    font-size: 20px;
}
.subtaskField{
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(214, 214, 214);
}
.addSubtaskPlus{
    cursor: pointer;
    justify-self: end;
}
.addedSubtask{
    background-color: transparent;
    border: transparent ;
    height: 30px;
    padding-bottom: 10px;
    width: calc(100% - 38px);
}
.addedSubtask::placeholder{
    font-size: 19px;
    color: lightgrey;
    padding-left: 20px;
}
.listAssign{
    display: flex;
    justify-content: space-between;
    padding: 5px 20px;
    border-radius: 15px;
    cursor: pointer;
}
.listNewCategory img{
    margin: 0 10px ;
    cursor: pointer;
}
.newCat{
    font-weight: bold;
    color: #42526E;
    cursor: pointer;
}
.newCatInput{
    height: 30px;
    width: 80%;
}
.colorPallet{
    display: flex;
    justify-content: space-between;
    padding: 20px 100px;
}
.singleColor{
    height: 15px;
    width: 15px;
    border-radius: 50%;
    cursor: pointer;
}
.colorActiv{
    border: 2px solid black;
}
.lightblue{
    background-color: lightskyblue;
}
.lightred{
    background-color: #fc71ff;
}
.lightgreen{
    background-color: #1fd7c1;
}
.lightorange{
    background-color: #ffc701;
}
.lightpurple{
    background-color: #0038ff;
}
.lightgray{
    background-color: #ff7a00;
}