#overlay-select-task {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    width:100%;
    height:100%;
    z-index: 1000;
}

.content-select-task {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: white !important;
    border-radius: 30px;
    max-height: 770px;
    width: 445px;
    padding: 50px 40px 50px 40px !important;
    font-size: 20px;
    font-weight: 400;
    position: relative;
}

.category-select-task {
    display: flex;
    font-size: 23px;
    color: white;
    height: 39px;
}

.category-select-task p {
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-radius: 8px;
    height: 36px;
}

.select-tk-title {
    font-size: 50px;
    font-weight: 700;
}

.font-color{
    display: flex;
    color: #2A3647 !important;
    font-weight: 400;
    padding-bottom: 8px;
}

.table-select-task{
    display: flex;
    gap: 25px;
}

.table-gap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.priority-gap {
    display: flex;
    gap: 10px;
}

#assigned-select-task {
    display: flex;
    flex-direction: column;
    max-height: 170px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #A8A8A8 transparent;
}

.contacts-select-task{
    display: flex;
    align-items: center;
    padding-left: 16px;
    font-size: 19px;
    gap: 16px;
}

.contacts-select-task img {
    width: 40px;
    height: 40px;
}

#close-overlay-select-task {
    position: absolute;
    top: 50px;
    right: 40px;
    width: 32px;
    height: 32px;
    z-index: 700;
}

#close-overlay-select-task:hover{
    background-color: #EEEEEE;
    border-radius: 50px;
    cursor: pointer;
    z-index: 700;
}

#subtasks-select-task{
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 110px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #A8A8A8 transparent;
}

.subtask-select-task {
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 16px;
    padding: 0 16px;
}

.subtask-select-task:hover {
    background-color: #EEEEEE;
    border-radius: 8px;
    width: fit-content;
}

.subtask-select-task img:hover {
    cursor: pointer;
}

.subtask-select-task:hover img{
    background-color: #D1D1D1;
    border-radius: 50px;
}

.bts-select-task {
    position: absolute;
    right: 40px;
    bottom: 20px;
    display: flex;
    gap: 8px;
    font-size: 16px;
}

.bt-select-task-transition {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bt-select-task-transition:hover,
.bt-select-task-transition:hover svg path {
    color: #29ABE2;
    font-weight: bold;
    fill: #29ABE2;
    cursor: pointer;
}

.capitalize{
    text-transform: capitalize;
}