.content-overlay {
    display: none;
}

.content-overlay.active {
    display: block;
}

.content-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: rgba(0,0,0,.5);
    transition: all .3s;
    cursor: pointer;
}

/* SIDEBAR */
body.active, html.active {
    overflow: hidden;
    position: relative;
    height: 100%;
}

#sidebar {
    display: none;
}

.sidebar_dropdown {
    list-style: none;
}

#sidebar li {
    padding: 0.35rem 1rem;
    text-align: left;
}

.sidebar_dropdown li a {
    font-size: 19px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
}

.sidebar_dropdown .collapsing {
    position: relative;
    height: 0;
}

#sidebar .menu-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#sidebar .nav-link {
    font-size: 17px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.24;
    letter-spacing: normal;
    text-align: center;
    color: var(--white);
}

#sidebar .nav-item.getStarted {
    border-radius: 4px;
    border: solid 1px var(--white);
    width: 216px;
    margin: 1.5rem auto;
}

#sidebar .nav-item.getStarted .nav-link {
    font-size: 14px;
    font-weight: bold;
    line-height: normal;
}

#sidebar .nav {
    width: 100%;
    margin-right: 100px;
    margin-top: 30px;

}

#sidebar .nav.position-fixed {
    width: 467px;
    margin-top: 0;
    padding-top: 30px;
    height: auto;
    z-index: 2;
}

#sidebar .nav:nth-child(2) {
    margin-top: 120px;
}

#sidebar .nav-link.dropdown-toggle {
    display: flex;
    justify-content: flex-start;
}

#sidebar .sideLearnMore {
    width: 220px;
    height: 45px;
    margin-top: 1.5rem;
}

#sidebar .sideLearnMore:hover {
    opacity: 0.6;
}

#sidebar .close-btn {
    background: transparent;
    border: none;
    display: block;
    /*padding: 0;*/
    margin-left: auto;
    transition: all .3s;
}

#sidebar .close-menu {
    width: 30.6px;
    height: 30.6px;
    object-fit: contain;
}

#sidebar .close-btn:hover {
    opacity: 0.6;
}

#sidebar .container.fixed-top {
    display: flex;
    height: 120px;
    width: 350px;
    /*right: -200%;*/
    left: -200%;
    transition: all .3s;
}

#sidebar .container.fixed-top.active {
    /*right: 0;*/
    left: 0;
    /*kir*/
    width: 10%;
    margin-right: auto;
    margin-left: 40px;


}

#sidebar .lowerEmblem {
    margin-right: 1rem;
}

@media (max-width: 969px) {
    /* sidebar */


    #sidebar {
        width: 465px;
        position: fixed;
        top: 0;
        right: -465px;
        height: 100%;
        background-image: var(--gradient);
        transition: all .3s;
        overflow-y: auto;
        z-index: 9999;
        display: block;
    }

    #sidebar.active {
        right: 0;
        /*width: 40%;*/
    }

    #sidebar .nav {
        margin-right: 0;
    }

    #sidebar .nav-item {
        width: 100%;
    }

    #sidebar .nav-item.line {
        height: 1px;
        background: white;
        padding: 0;
        width: calc(100% - 4rem);
        margin: 0 auto 1.5rem;
        opacity: 1;
    }

    #sidebar .toggle-icon {
        width: 17.9px;
        height: 10.4px;
        object-fit: contain;
        transform: rotate(-90deg);
        right: 20px;
        top: 30px;
        pointer-events: none;
    }

    #sidebar .profile-item {
        position: relative;
        padding-top: 0;
        padding-bottom: 0;
        width: 100%;
        min-height: 84px;
        display: flex;
        align-items: center;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    #sidebar .profile-item .profile-bg {
        width: 100%;
        height: 100%;
        position: absolute;
        background-color: var(--white);
        left: -20px;
        z-index: -1;
    }

    #sidebar .profile-item .nav-link {
        font-size: 24px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.38;
        letter-spacing: normal;
        color: var(--black);
        display: flex;
        align-items: center;
    }

    #sidebar .profile-icon {
        width: 53px;
        height: 53px;
        object-fit: cover;
        border-radius: 50%;
    }

    #sidebar .login-icon {
        width: 22.7px;
        height: 30px;
        object-fit: contain;
    }

    #sidebar .logout-icon {
        width: 23px;
        height: 30px;
        object-fit: contain;
    }

    #sidebar .logo_nav {
        bottom: 35px;
    }

    #sidebar .logo_nav .logo-img {
        width: 235px;
        height: 96px;
        object-fit: contain;
    }
}
@media (max-width: 749px) {

}

@media (max-width: 550px) {

    #sidebar .menu-container {
        height: auto;
    }

    #sidebar .nav {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        height: 100%;
    }
}
@media (max-width: 480px) {

    #sidebar {
        width: 100%;
        right: -100%;
    }

    #sidebar .nav.position-fixed,
    #sidebar .menu-container {
        width: 100%;
    }

    #sidebar .logo_nav {
        bottom: 20px;
    }

    #sidebar .nav:nth-child(2) {
        margin-top: 100px;
    }

    #sidebar .logo_nav .logo-img {
        width: 150px;
    }
    
}