.sidebar{
    display: flex;
    flex-direction: column;
    position: relative;
}
.section_top{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background-color: #ffffff;
    padding: 20px;
    padding-bottom: 10px;
}

.logo_area{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.logo_area img{
    width: 100%;
    height: 100%;
}

.toggle_button{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle_button button{
    position: absolute;
    right: -30px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: none;
    box-shadow: 1px 1px 4px 0px #cecece;
    transition: all 800ms;
}

.toggle_button button img{
    width: 15px;
    height: 15px;
    transition: all 500ms;
  
}

.toggle_open img{
    transform: rotate(180deg);
}

.toggle_close img{
    transform: rotate(0deg) !important; 
}

.toggle_button button:hover{
    box-shadow: 1px 1px 8px 0px #cecece;
    transform: scale(1.1);
}

.toggle{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;  
}

.toggle img{
    width: 100%;
    height: 100%;
}

.sidebar_menu_wrapper{
    display: flex;
    flex-direction: column;
    padding: 20px;
    padding-top: 0;
    height:88vh;
    overflow-y: auto;
}
.sidebar_menu{
    display: flex;
    flex-direction: column;
}

.sub_header{
    color: #c8c6c6;
    font-size: 16px;
    font-weight: 600;
    margin: 12px 0;
}

.nav_links_list{
    font-size: 12px;
    margin:0;
    padding: 0;
    font-weight: 600;
    line-height: 2.2rem;
    list-style: none;
}


.nav_links_list li a{
    color: #474747 !important;
    text-decoration: none !important;
    margin-left: 4px;
}

.link-active{
    background-color:#f4f4f4;
    border-radius: 4px;
   
}

.link-active a{
        color:#ffffff !important;
    }
    
    
@media (max-width: 768px){
    .wrapper_sidebar{
        position:fixed !important;
    }
}    
