.sidebar {
    position: fixed;
    top: var(--nav_height);
    width: var(--sidebar_width);
    bottom: 0;
    z-index: 5;
    background-color: white;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar_hide {
    box-shadow: none;
    width: var(--sidebar_hide_width)
}

.sidebar_hide .sidebar_item_text {
    display: none;
}

.sidebar_item_container {
    position: relative;
}

.sidebar_item_sub,
.sidebar_item {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 5px 0;
    cursor: pointer;
    position: relative;
    color: var(--primary_color);
    border-bottom: 1px solid #eee;
}

.sidebar_item_sub:hover,
.sidebar_item:hover {
    color: var(--primary_color);
}

.sidebar_item_active {
    border-inline-start: 3px solid var(--primary_color);
    color: var(--primary_color);
    background-color: var(--primary_color_light);
}

/* .sidebar_item_icon svg,
svg.sidebar_item_icon {
    font-size: 1.3rem;
    width: 25px !important;
    height: 25px !important;
}

.sidebar_sub_items .sidebar_item_icon svg {
    width: 20px !important;
    height: 20px !important;
} */
.sidebar_item_icon,
.sidebar_item_icon svg {
    width: 25px !important;
    height: 25px !important;
}
.sidebar_sub_items .sidebar_item_icon,
.sidebar_sub_items .sidebar_item_icon svg{
    width: 20px !important;
    height: 20px !important;
}

.sidebar_item_icon {
    border-radius: 8px;
    padding: 2px;
    margin: 0 5px;
    color: var(--primary_color) !important;
}


.sidebar_item_text {
    display: flex;
    text-align: start;
    justify-content: space-between;
    width: 100%;
}

.sidebar_sub_items .sidebar_item_text {
    font-size: 0.9rem;
}


.sidebar_dropdown {
    box-shadow: 1px 1px 5px #eee;
    display: flex;
    padding: 5px;
    flex-direction: column;
    position: fixed;
    top: var(--nav_height);
    bottom: 0;
    background-color: #f7f7f7;
    overflow-y: auto;
    opacity: 0;
    width: 0rem;
    transition: all 0.3s;
    pointer-events: none
}

.sidebar_dropdown_show {
    opacity: 1;
    width: 15rem;
    pointer-events: initial
}

.sidebar_item_sub {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;

}


.sidebar_hide .sidebar_search_container {
    display: none !important;
}

.sidebar .menu_toggle_show {
    display: none
}

.sidebar .menu_toggle_hide {
    display: flex
}

.sidebar_hide .menu_toggle_show {
    display: flex
}

.sidebar_hide .menu_toggle_hide {
    display: none
}