.dropdownArrow,
.plus {
    width: 24px;
    height: 24px;
    margin-left: -34px;
    border-radius: 45px;
}

.dropdownArrow:hover,
.plus:hover {
    background-color: #EFEFEF;
    cursor: pointer;
}

#dropdownMenu {
    display: none;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    height: 189px;
    overflow-y: scroll;
}

.dropdownContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    padding-inline: 16px;
    padding-top: 3.5px;
    padding-bottom: 3.5px;
    margin-top: 1px;
    margin-bottom: 1px;
    background-color: white;
    color: black;
    cursor: pointer;
}

.dropdownContent:hover {
    background-color: #00000010;
}

.dropdownInitialsAndName {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dropdownContact {
    display: flex;
    align-items: center;
    height: 56px;
    font-weight: 400;
    font-size: 20px;
}

.dropdownCheckbox {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

li {
    font-weight: 400;
    font-size: 16px;
    color: black;
}

.subtasksContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 24px;
    margin-top: 4px;
    padding-inline: 16px;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 10px;
    transition: 0.25s;
}

.subtasksContent:hover {
    background-color: #00000010;
    cursor: pointer;
}

.deleteAndEdit {
    display: none;
    align-items: center;
    gap: 8px;
}

.subtasksContent:hover .deleteAndEdit {
    display: flex;
}

.subtasksImageSpacer {
    height: 24px;
    width: 1px;
    background-color: rgba(168, 168, 168, 1);
}

.editImage {
    width: 18.25px;
    height: 18.25px;
}

.subtasksEditInput {
    width: 380px;
    height: 24px;
    padding-inline: 16px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-left: 6px;
    border: 0;
    border-bottom: 1px solid black;
    font-weight: 400;
    font-size: 16px;
    color: black;
}

.subtasksEditInput:focus {
    border: 0;
    border-bottom: 1px solid;
}

.deleteAndDone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.closeAndDone {
    display: none;
    align-items: center;
    gap: 4px;
    margin-left: -74px;
    cursor: pointer;
}

.close {
    width: 28px;
}

.close:hover,
.done:hover {
    border-radius: 45px;
    background-color: #00000010;
}

.slideIn {
    animation: slideInRight 0.1s forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(200%);
    }

    to {
        transform: translateX(0);
    }
}

.slideOut {
    animation: slideOutRight 0.1s forwards;
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(200%);
    }
}

#addTask {
    position: absolute;
    display: none;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 1116px;
    height: fit-content;
    border-radius: 30px;
    z-index: 999;
    background-color: white;
}

@media (max-width: 1132px) {
    #addTask {
        width: 90%;
        height: 90%;
        overflow-y: scroll;
    }

    .addTaskBottom {
        align-items: center !important;
        margin-left: 16px !important;
        margin-right: 16px !important;
    }
}

.addTaskContent {
    width: -webkit-fill-available;
    margin-top: 64px;
    margin-bottom: 64px;
    margin-inline: 74px;
}

.h1AndClose {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.addTaskBottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 58px;
    padding-bottom: 64px;
}

@media(max-width: 700px) {
    #addTask {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }

    .addTaskContent {
        margin-inline: 40px;
    }

    .addTaskBottom {
        height: 126px !important;
        flex-direction: column;
        gap: 10px;
    }
}

.gap_16 {
    gap: 16px;
}

.input-field::placeholder {
    font-size: 20px !important;
}

.highlight {
    padding: 6px;
    background-color: #8080800f;
    border-radius: 28px;
    border: 1px dashed;
}