﻿#tasksShutter {
    height: 100%;
    width: 0;
    background: white;
    z-index: 1111;
    position: fixed;
    right: 0;
    top: 0;
    overflow: hidden;
    transition: 0.5s;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#tasks_header {
    border-bottom: 1px solid #d7d7d7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

#taskSliderCloseButton {
    padding: 1px 3px;
    border-radius: 5px;
    cursor: pointer
}

.task_icon_button {
    padding: 1px 6px;
    border-radius: 5px;
    cursor: pointer;
    background: #ececec;
}
    .task_icon_button:hover {
        background: #47BBE9;
        color: white;
    }

#taskSliderCloseButton:hover {
    background: #DC143C;
    color: white;
}

#task_slider_body{
 /*   border: 1px solid red;*/
    height: 90%;
    overflow: auto;
    
}

#task_slider_body {
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
}

    #task_slider_body::-webkit-scrollbar {
        display: none; /* Safari and Chrome */
    }




.task_slider_card {
    height: 100px;
    width: 100%;
    border-bottom: 1px solid #e3e3e3;
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 5px;
    justify-content: center;
}

    .task_slider_card:hover {
        background: #efefef4f
    }

#task_assigned_button, #task_due_button {
    height: 26px;
    width: 43%;
    border: none;
    background: #0000ff14;
    font-size: 0.85rem;
    border-radius: 5px;
    padding: 0 6px;
    position: relative;
}

    #task_assigned_button:hover, #task_due_button:hover {
        background: #0000ff2e;
    }

#task_assigned_button:focus, #task_due_button:focus {
outline: none
}


#slider_container_for_Image {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
    display: flex
}

.iySvp {
    color: #202124;
    text-align: center;
    font-family: Google Sans,Roboto,RobotoDraft,Helvetica,Arial,sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 16px;
    animation-delay: .55s;
}

.wVBRLd {
    font-size: 14px;
    line-height: 20px;
    color: #5f6368;
    text-align: center;
    animation-delay: .65s;
}

#selectTaskOptionsFilter:focus-visible{

    outline: none;
}

.task_title_section {
    display: flex;
    justify-content: space-between;
    width: 92%;
}

.taskEditCalender{
    display: inline-block;
    position: relative;

}

#taskEditMenu {
    position: absolute;
    height: 20rem;
    width: 15rem;
    top: 17px;
    right: 11px;
    background: white;
    border-radius: 10px 0px 10px 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index: 1111;
    padding: 10px;
}

.suggestions {
    font-weight: 600;
    letter-spacing: 1px;
    color: #4c4c4c;
    margin-top: 25px;
    text-align: left;
}

.suggesstionOptions {
    letter-spacing: 1px;
    color: #635c5c;
    cursor: pointer;
    margin: 0;
    padding: 10px 0;
    padding-left: 19px;
    text-align: left;
}

    .suggesstionOptions:hover {
        background: #eeeeee;
    }

#dueDateSaveButton {
    height: 22px;
    width: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #00a1e0;
    cursor: pointer;
    color: white;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding-bottom: 4px;
}


#taskImageIconContainer{
   position: relative
}


#taskImageIconContainer > img {
    height: 25px;
    width: 25px;
    margin-bottom: 8px;
    cursor: pointer;
}


.taskEditIcon {
    padding: 0 2px;
    cursor: pointer;
    border-radius: 4px;
}

    .taskEditIcon:hover {
        background: #c6c6c6
    }



#task_count {
    position: absolute;
    height: 18px;
    width: 18px;
    top: -9px;
    right: -10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
    font-weight: 700
}














