@import url('https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');

* {
    --bgcolor: #dfdfdf;
    --green1: #78A663;
    --green2: #5E8C5D;
    --green3: #214029;
    --green4: #132623;
    --blue: #131B26;
    --contra: #ffc965;
    --contra2: #FFDC99;
    --Text1: #E8C31A;


    --color-1-hex: #0D448C;
    --color-2-hex: #0B2D59;
    --color-3-hex: #021328;
    --color-6-hex: #1e283993;
    --color-bg: #3535355f;
    --color-save: #3535357d;
    --color-4-hex: #2594d9;
    --color-5-hex: #49C2F2;

    /* Color Theme Swatches in RGBA */
    --color-1-rgba: rgba(12, 67, 140, 1);
    --color-2-rgba: rgba(10, 44, 89, 1);
    --color-3-rgba: rgba(6, 20, 38, 1);
    --color-4-rgba: rgba(36, 147, 216, 1);
    --color-5-rgba: rgba(72, 194, 242, 1);

    /* Color Theme Swatches in HSLA */
    --color-1-hsla: hsla(213, 83, 29, 1);
    --color-2-hsla: hsla(213, 78, 19, 1);
    --color-3-hsla: hsla(213, 72, 8, 1);
    --color-4-hsla: hsla(202, 70, 49, 1);
    --color-5-hsla: hsla(196, 86, 61, 1);
    box-sizing: border-box !important;


}

/* Color Theme Swatches in Hex */




html, body {
    height: 100%;
    overflow-x: hidden;
    font-family: 'Nunito', sans-serif !important;
    box-sizing: border-box;
}

button {
    width: fit-content;
    padding: 0.4rem 0.8rem;
    outline: none;
    /* border: 2px solid var(--color-1-hex); */
    background: var(--contra);
    color: black;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 0.4rem;
    cursor: pointer;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

/* setup tooltips */
.tooltip {
    position: relative;

}

.tooltip:before,
.tooltip:after {
    display: block;
    opacity: 0;
    pointer-events: none;
    position: absolute;
}


.tooltip:after {
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(0, 0, 0, .75);
    border-left: 6px solid transparent;
    content: '';
    height: 0;
    top: 30px;
    left: 100%;
    width: 0;
}

.tooltip:before {
    background: rgba(0, 0, 0, .75);
    border-radius: 2px;
    color: #fff;
    content: attr(data-title);
    font-size: 14px;
    padding: 6px 10px;
    top: 36px;
    white-space: nowrap;
}

/* expand */
.tooltip.expand:before {
    transform: scale3d(.2, .2, 1);
    transition: all .2s ease-in-out;
}

.tooltip.expand:after {
    transform: translate3d(0, 6px, 0);
    transition: all .1s ease-in-out;
}

.tooltip.expand:hover:before,
.tooltip.expand:hover:after {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

.tooltip.expand:hover:after {
    transition: all .2s .1s ease-in-out;
}

.tooltip.tooltip.expand::marker {
    visibility: hidden !important;
    background: transparent;
    color: #2594D9;
    content: "";
}

.button-style-2 {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    background: var(--color-2-hex);
    border: 2px solid var(--color-1-hex);
    color: white;
    cursor: pointer;
}

.message-pop {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    transition: all ease 1s;

}

.pop-message-window {
    position: relative;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: 0.5rem;
    min-width: 20%;
    max-width: fit-content;
    min-height: 3rem;
    background: var(--color-2-hex);
    border: 2px solid var(--color-4-hex);
    font-size: 1rem;
    color: var(--Text1);
    justify-content: center;
    align-items: center;
    z-index: 30;
    border-radius: 0.5rem;
    top: -10rem;
    animation: pop 4s ease-in-out;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.323);

}


@keyframes pop {
    0% {
        top: -10rem;
        display: flex;
        opacity: 1;
    }

    20% {
        top: 1.5rem;
        opacity: 1;
        display: flex;
    }

    90% {
        top: 1.5rem;
        opacity: 1;
        display: flex;
    }

    100% {
        top: 1.5rem;
        opacity: 0;
        display: flex;
        visibility: hidden;
    }
}

#popup {
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    margin: auto auto;
    z-index: 40;
    width: 100%;
    height: 100%;
    background: #0000007a;
    backdrop-filter: blur(20px);
}

#popup-data {
    position: relative;
    width: 25%;
    height: 35%;
    background: var(--color-2-hex);
    border-radius: 1rem;
    box-shadow: 0px 0px 50px 10px var(--color-3-hex);
    border: 2px solid var(--color-4-hex);
    display: flex;
    color: rgb(245, 219, 171);
    justify-content: center;
    font-size: 1.5rem;
    align-items: center;
    flex-direction: column;
}

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--color-4-hex);
    font-size: 2rem;
    transition: all ease 0.4s;
    cursor: pointer;
}

.close-popup:hover {
    transform: rotate3d(0, 0, 1, 90deg);
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-img {
    width: 100%;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#main-app {
    height: 100%;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background-repeat: no-repeat;
    background: var(--color-3-hex);
    background: url(https://cdn.leonardo.ai/users/53577f72-dec4-41e0-b643-8c4b9b2ad2ce/generations/d0a31797-7346-4b82-b9ee-9ffdce793d0e/DreamShaper_v7_blue_theme_pencil_3d_background_minimal_mode_0.jpg);
    background-size: cover;
}

#auth-section {
    height: 100%;
    background: #00000030;
    backdrop-filter: blur(2px);
    display: flex;
    /* display: none; */
    top: 0;
    right: 0;
    transition: none !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

#auth-section .greeting {
    font-family: 'Passion One', cursive;
    color: var(--bgcolor);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: none !important;

}

.greeting .greet {
    font-size: 15rem;
    letter-spacing: 0.3rem;
}

.greeting .greet-signup-login {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.button-style1 {
    border: none;
    width: 8rem;
    height: 4rem;
    margin: 2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    background: var(--bgcolor);
    color: var(--green4);
    cursor: pointer;
    display: flex;
    justify-content: center;
    outline: none;

}

#signup-login {
    position: absolute;
    top: 0;
    right: -100%;
    height: 100%;
    width: 70%;
    background-color: var(--color-1-hex);
    display: flex;
    justify-content: left;
    align-items: center;
    transition: all ease-in-out 0.3s;
}

.login-char {
    position: absolute;
    bottom: 3rem;
    right: 2rem;
    width: 50%;
}

#close-login-signup {
    position: absolute;
    top: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    background: transparent;
    z-index: 0;
}

#signup-login .form {

    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 8rem;
    justify-content: left;
}

#signup-login .form input::placeholder {
    color: white;
    opacity: 0.5;
}

#signup-login .form input {
    background-color: transparent;
    padding: 1rem;
    padding-left: 0;
    border: none;
    font-size: 2rem;
    color: var(--contra2);
    border-bottom: 1px solid wheat;

}

#signup-login .form #signup-login-button {
    margin-top: 2rem;
    border: none;
    width: 8rem;
    height: 4rem;
    margin: 2rem;
    margin-left: 0;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    background: var(--bgcolor);
    color: var(--green4);
    cursor: pointer;
}

#signup-login .form input:focus {
    border: none;
    outline: none;
}

#signup-login .form #signup-login-button:focus {
    outline: none;
    box-shadow: 0px 0px 50px 10px rgba(0, 0, 0, 0.276);
}






#sidebar {
    width: 20%;
    border-right: 2px solid var(--color-2-hex);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#sidebar .logo-name-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

#sidebar .logo-name-wrapper .logo-name {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
}

#sidebar .logo-name-wrapper .logo {
    color: var(--color-4-hex) !important;
    font-size: 1.4rem;
}

#sidebar .logo-name-wrapper .name-wrapper h1 {
    font-weight: 900;
    font-size: 1.6rem;
    color: white;
}

.filter-tasks {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-grow: 1;
    width: 100%;
}

.filter-tasks .filters-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;

}

.filter-tasks .filter-type-wrapper {
    display: flex;
    position: relative;
    justify-content: left;
    align-items: center;
    height: 2rem;
    left: 0;
    width: 100%;
    padding: 0 2rem;
}

.filter-tasks .filters-wrapper .filter-type-wrapper .filter-type {

    display: flex;
    justify-content: left;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem;
    padding-left: 0;
    color: rgb(214, 214, 214);
    transition: all ease-in-out 0.3s;
    opacity: 0.6;

}

.filter-type-wrapper:hover .filter-type {
    cursor: pointer;
}

.color-blue {
    color: var(--color-5-hex);
}

.out {
    position: absolute;
    left: 2rem;
    background: var(--color-3-hex);
    padding: 0.6rem 2rem !important;
    padding-left: 0.4rem !important;
    width: 80%;
    border-radius: 0.5rem;
    border: 2px solid var(--color-1-hex);
    color: white !important;
    font-weight: 200;
    cursor: pointer;
    opacity: 1 !important;

}

.filter-type i {
    font-weight: 900;
    font-size: 1.3rem;
}

.filter-type h2 {
    font-size: 1rem;
    white-space: nowrap;
}

.option-for-cateory {
    display: none;
}











#task-manager-section {
    display: flex;
    /* justify-content: center; */
    height: 100%;
    background: transparent;
    font-family: 'Comfortaa', cursive !important;
    background: var(--color-3-hex);

    display: none;
    width: 100%;

}

#filter-signout-wrapper #search-date-wrapper {
    flex-grow: 3;
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

#filter-task-add-wrapper {
    width: 85%;
    overflow: hidden;
}

/* search bar */
#filter-signout-wrapper #today-date {
    color: white;
    display: flex;
    justify-content: center;
}

#filter-signout-wrapper {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    gap: 1rem;

}

#filter-signout-wrapper>div {
    flex-grow: 1;
}

#filter-tasks-section {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.5rem;
    border-radius: 0.5rem;
    background: var(--color-2-hex);
    border: 2px solid var(--color-1-hex);
    flex-grow: 4;
    box-sizing: border-box;
}

#filter-tasks-section #search-bar {
    flex-grow: 1;
}

#filter-tasks-section:focus-within {
    border-width: 3px;
}

#search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    outline: none;
    border: none;
    font-size: 1rem;

    color: var(--color-5-hex);
}

#search-bar::placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-1-hex);
    letter-spacing: 0.2rem;
    font-weight: 600;
}

.search-icon {
    color: var(--color-4-hex);
}

.date-sort-wrapper {
    /* margin: 0 2rem; */
    flex-grow: 1;
    display: flex;
    justify-content: left;
    align-items: center;
}

.dueDate {
    font-size: 1.2rem;
    color: var(--color-1-hex);
    padding: 0.4rem 0.5rem;
    
}
.color-change{
    color: rgba(255, 255, 255, 0.589);
    background-color: var(--color-1-hex);
    aspect-ratio: 1/1;
    border-radius: 100%;
}

.dueDate:hover {
    color: #2594D9;
}


.add-task-icon {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
}

#filter-signout-wrapper #signout-wrapper {
    flex-grow: 0;
    display: flex;
    justify-content: end;
    gap: 1rem;
}

button {
    transition: all ease-in-out 0.2s;
}

button:hover {
    scale: 1.05;
}

#task-wrapper {
    width: 100%;
    height: 90%;
    position: relative;
    border-top: 2px solid var(--color-2-hex);
}

#add-task-section {
    position: absolute;
    right: -100%;
    top: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
    height: 100%;
    gap: 2rem;
    background: var(--color-2-hex);
    transition: all ease-in-out 0.4s;
    z-index: 50;
    width: fit-content;
}

#edit-task {
    z-index: 50;
    position: absolute;
    right: -100%;
    top: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
    height: 100%;
    gap: 2rem;
    width: 50%;
    background: var(--color-6-hex);
    box-shadow: 5px 20px 40px black;
    color: white;
    backdrop-filter: blur(30px);
    transition: all ease-in-out 0.4s;
}

.edit-task-con {
    display: flex;
    align-items: start;
    width: 100%;
    flex-direction: column;
    height: 100%;
    gap: 2rem;

}

.title-con {
    width: 100%;
    display: flex;
    gap: 2rem;
}

.edit-title {
    flex-grow: 1;
}

.close-edit {
    color: white;
    font-size: 1.6rem;
    cursor: pointer;

}

.date-name-con {
    display: flex;
    gap: 0.4rem;
}

.desc-con {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.edit-desc {
    font-size: 0.8rem;
    width: 100%;
    flex-grow: 1;
    margin-left: 1.5rem;
    color: rgba(255, 255, 255, 0.692);
    line-height: 1.2rem;
}

.input-field-con {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.4rem
}

.input-field-con>* {
    width: 100%;
}

.input-field-con label {
    color: var(--color-4-hex);
    font-weight: 700;
}

.input-field-con>*:last-child {
    background-color: var(--color-1-hex);
    background-color: transparent;
    border: none;
    padding: 0.5rem;
    padding-left: 0;
    /* border-radius: 0.3rem; */
    outline: none;
    color: white;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--Text1);
    /* padding-left: 0.4rem; */

}

textarea {
    height: fit-content;
    resize: none;
}

.input-field-con>*:last-child:focus .input-heading {
    color: var(--color-4-hex);
}

.input-field-con>*:last-child::placeholder {
    color: var(--Text1);
    opacity: 0.5;
}

.add-task-button-con {
    display: flex;
    justify-content: center;
    align-items: center;
}

#categories {
    display: none;
    width: fit-content;
    border: none;
    display: flex;
    gap: 0.4rem;
    box-sizing: border-box;
    /* height: 3rem; */

}

#categories .category-item {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 0.3rem;
    background: gray;
    cursor: pointer;
    box-sizing: border-box;
    font-weight: 900;
}

.highlight-cat {
    background: var(--color-1-hex) !important;
    border: 1px solid var(--color-4-hex);
}


#task-list {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    /* justify-content: center; */
    flex-wrap: wrap;
    padding: 1rem;
    overflow: scroll;
    height: 100%;

}

.no-data {
    width: 40%;
    margin: auto;
    height: fit-content;
    opacity: 0.7;

}

#task-list::-webkit-scrollbar {
    width: 5px;
    background: transparent;
}

#task-list::-webkit-scrollbar-thumb {

    border-radius: 4px;
    background: var(--color-1-hex);
}

.task-list-category-container {
    padding: 1rem;
    border-radius: 1rem;
}

.task-container {
    /* border: 1px solid black; */
    width: 280px;
    display: flex;
    aspect-ratio: 1 / 1;
    height: fit-content;
    gap: 1.5rem;
    padding: 1rem;
    align-items: start;
    background: var(--color-bg);
    border-radius: 0.7rem;
    display: flex;
    flex-direction: column;
    /* cursor: pointer; */
}

.title-drop-con {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    gap: 2rem;
}

.title {
    flex-grow: 1;
    color: white;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    cursor: pointer;

}

.title .candy {
    font-size: 0.9rem;
}


.menu {
    display: none;
    position: relative;
    padding-right: 1rem;
}

.dots {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #fff;
}

.dropdown {
    z-index: 20;
    display: none;
    position: absolute;
    left: 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background-color: #fff;
    overflow: hidden;
    padding: 0.2rem;
    background: #021328;
    border: 1px solid var(--color-1-hex);
}

.drop-button {
    display: block;
    text-decoration: none;
    color: #fff;
    width: 100%;
    background: transparent;
    border-radius: 0;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.dropdown a:hover {
    background-color: #eee;
}

@media (min-width:1024px) {
    .menu:hover .dropdown {
        display: block;
    }
}



.desc {
    color: white;
    font-size: 0.7rem;
    opacity: 0.7;
    line-height: 1rem;
}


.category-con {
    display: flex;
    gap: 0.5rem;

}

.category {
    font-size: 0.7rem;
    color: black;
    padding: 0.25rem 0.5rem;
    border-radius: 0.3rem;
    background: #5E8C5D;
    font-weight: 900;
}


.date-con {
    display: flex;
    font-size: 0.75rem;
    gap: 0.5rem;
}

.date-con .timer {
    color: rgba(255, 255, 255, 0.562);
}

.due-date {
    color: white;
}


.avatar {
    width: 1.7rem;
    border: 1px solid white;
    border-radius: 100%;
}

.user-con {
    display: flex;
    flex-grow: 1;
    align-items: end;
    justify-content: center;
    width: 100%;


}

.state {
    display: flex;
    color: black;
    font-size: 0.7rem;
    align-self: self-end;
    font-weight: bolder;
    padding: 0.3rem 0.5rem;
    border-radius: 0.3rem;
    gap: 0.4rem;

}



.user-wrapper {
    width: 100%;
    border-top: 1px solid var(--color-1-hex);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding-top: 0.7rem;

}

.userAvatarNameWrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-grow: 1;
}

.login-user-name {
    color: white;
    font-size: 0.9rem;
}

.close-panels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 40;
}
.delete-icon-button{
    color: white;
    display: none;
}
@media (min-width : 768px) {
    .menu{
        display: block;
    }
}
@media (min-width:320px) and ( max-width : 768px) {
    .delete-icon-button{
        color: white;
        display: block;
    }
}
@media (max-width:1211px) and (min-width:768px) {
    .task-container {
        width: 31%;
    }
}

@media (max-width:1024px) and (min-width:768px) {
    #add-task-section {
        width: 40%;
    }

    .navbar-ham {
        font-size: 1.5rem;
        color: var(--color-4-hex);
    }

    #sidebar {
        position: absolute;
        width: 30%;
        background: var(--color-3-hex);
        height: 100%;
        z-index: 50;
        transition: all ease-in-out 0.3s;
        left: -100%;
    }

    .left {
        left: 0 !important;
    }

    #sidebar .logo-name-wrapper {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: start;
    }

    #sidebar .logo-name-wrapper .logo-name {
        padding: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.3rem;
    }

    #sidebar .logo-name-wrapper .logo {
        font-size: 1.2rem;
    }

    #sidebar .logo-name-wrapper .name-wrapper h1 {
        font-size: 1.4rem;
    }

    .filter-tasks {
        display: flex;
        justify-content: center;
        align-items: start;
        flex-grow: 1;
        width: 100%;
    }

    .filter-tasks .filters-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;

    }

    .filter-tasks .filter-type-wrapper {
        display: flex;
        position: relative;
        justify-content: left;
        align-items: center;
        height: 2rem;
        left: 0;
        width: 100%;
        padding: 0 2rem;
    }

    .filter-tasks .filters-wrapper .filter-type-wrapper .filter-type {

        display: flex;
        justify-content: left;
        align-items: center;
        gap: 1rem;
        padding: 0.6rem;
        padding-left: 0;
        color: rgb(214, 214, 214);
        transition: all ease-in-out 0.3s;
        opacity: 0.6;

    }

    .filter-tasks .filters-wrapper .filter-type-wrapper .filter-type i {
        font-size: 1.2rem;
    }

    .filter-tasks .filters-wrapper .filter-type-wrapper .filter-type h2 {
        font-size: 1rem;
    }

    .filter-type-wrapper:hover .filter-type {
        cursor: pointer;
    }

    #filter-task-add-wrapper {
        width: 100%;
    }

    #filter-signout-wrapper {
        font-size: 0.5rem;
    }

    button {
        font-size: 0.8rem;
    }

    .search-icon {
        font-size: 0.8rem;
    }

    #filter-tasks-section {
        display: flex;
        justify-content: left;
        align-items: center;
        gap: 0.5rem;
        padding: 0.3rem 0.3rem;
        border-radius: 0.4rem;
        background: var(--color-2-hex);
        border: 1px solid var(--color-1-hex);
        flex-grow: 4;
        box-sizing: border-box;
    }

    #task-list {}



}

.sidebar-signout-addtask {
    display: none;
}

.close-login {
    display: none;

}

.close-login::before {
    display: none;
}

@media (max-width:768px) and (min-width:300px) {

    .greeting .greet {
        font-size: 6rem;
        letter-spacing: 0.3rem;
    }

    .greet-signup-login {
        scale: 0.7;
    }

    #signup-login {
        width: 100%;
        display: flex;
        align-items: start;
    }

    .close-login {
        display: block;
        position: absolute;
        top: 1rem;
        color: white;
        font-size: 1.5rem;
        right: 1rem;
    }

    .close-login::before {
        display: block;
    }

    #signup-login .form {
        padding: 1.5rem;
        padding-right: 1.5rem;
        scale: 0.9;
        margin-top: 4rem;
    }

    #signup-login .form input {
        width: 100%;
    }

    #signup-login .login-char {
        right: 0.5rem;
        width: 80%;
    }

    #edit-task {
        width: 100%;
    }

    #filter-task-add-wrapper {
        width: 100%;
        /* overflow: scroll; */
    }

    #filter-signout-wrapper #signout-wrapper {
        display: none;
    }

    .navbar-ham {
        font-size: 1.5rem;
        color: var(--color-4-hex);
    }

    #sidebar {
        position: absolute;
        width: 60%;
        background: var(--color-3-hex);
        height: 100%;
        z-index: 50;
        transition: all ease-in-out 0.3s;
        left: -100%;
        justify-content: start;
    }

    #sidebar>* {
        scale: 0.9;
    }

    .left {
        left: 0 !important;
    }

    #sidebar .logo-name-wrapper {
        flex-grow: 0;
        display: flex;
        flex-direction: column;
        justify-content: start;
        border-bottom: 1px solid var(--color-1-hex);
    }

    #sidebar .logo-name-wrapper .logo-name {
        padding: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.3rem;
    }

    #sidebar .logo-name-wrapper .logo {
        font-size: 1.2rem;
    }

    #sidebar .logo-name-wrapper .name-wrapper h1 {
        font-size: 1.4rem;
    }

    .filter-tasks {
        display: flex;
        justify-content: center;
        align-items: start;
        flex-grow: 0;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--color-1-hex);
    }

    .filter-tasks .filters-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;

    }

    .filter-tasks .filter-type-wrapper {
        display: flex;
        position: relative;
        justify-content: left;
        align-items: center;
        height: 2rem;
        left: 0;
        width: 100%;
        padding: 0 2rem;
    }

    .filter-tasks .filters-wrapper .filter-type-wrapper .filter-type {

        display: flex;
        justify-content: left;
        align-items: center;
        gap: 1rem;
        padding: 0.6rem;
        padding-left: 0;
        color: rgb(214, 214, 214);
        transition: all ease-in-out 0.3s;
        opacity: 0.6;

    }

    .filter-tasks .filters-wrapper .filter-type-wrapper .filter-type i {
        font-size: 1.2rem;
    }

    .filter-tasks .filters-wrapper .filter-type-wrapper .filter-type h2 {
        font-size: 1rem;
    }

    .filter-type-wrapper:hover .filter-type {
        cursor: pointer;
    }

    .sidebar-signout-addtask {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .sidebar-signout-addtask>* {
        width: 80%;
    }



    #filter-task-add-wrapper {
        width: 100%;
    }

    #filter-signout-wrapper {
        padding: 2rem 0.5rem;
        font-size: 0.5rem;
    }

    button {
        font-size: 0.8rem;
    }

    .search-icon {
        font-size: 0.8rem;
    }

    #filter-signout-wrapper #search-date-wrapper {
        width: 80%;
        gap: 0.7rem;
    }

    .date-sort-wrapper {
        justify-content: center;
    }

    #filter-tasks-section {
        width: 50%;
        display: flex;
        justify-content: left;
        align-items: center;
        gap: 0.5rem;
        padding: 0.3rem 0.3rem;
        border-radius: 0.4rem;
        background: var(--color-2-hex);
        border: 1px solid var(--color-1-hex);
        flex-grow: 4;
        box-sizing: border-box;
    }

    #task-list {

        justify-content: center;

    }

    #task-list::-webkit-scrollbar {
        width: 0px;
        background: transparent;
    }



}