.sidebar_container {
    width: var(--front_sidebar_windth);
    height: 100%;
    position: fixed;
    top: 0;
    right: calc(0px - var(--front_sidebar_windth));
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--header_color);
    padding: 1rem;
    box-shadow: var(--default_shadow);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: var(--zi_front_sidebar);
    transition: var(--default_transition);
}
.sidebar_container.sidebar_active {
    right: 0;
}
    .sidebar_container .sidebar_nav {
        position: relative;
        width: 100%;
        height: max-content;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 4px;
    }
        .sidebar_nav .sidebar_close_btn_box,
        .sidebar_nav .logo_box {
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--white_color);
            padding: 0.4rem 0.4rem;
            border-radius: 0.3rem;
            cursor: pointer;
        }
        .sidebar_nav .sidebar_close_btn_box:hover,
        .sidebar_nav .logo_box:hover {
            color: var(--gold_color_lite);
            background-color: var(--header_btn_hover_olor);
        }
        .sidebar_nav .sidebar_close_btn_box {
            width: 3.8rem;
            height: 3.8rem;
            font-size: 2.1rem;
        }

        .sidebar_nav .logo_box {
            width: 4.6rem;
            height: 3.8rem;
        }
            .sidebar_nav .logo_box .logo {
                width: max-content;
                height: 100%;
            }

.sidebar_container .sidebar_content_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0.5rem;
}
    .sidebar_content_box .sidebar_item {
        width: 100%;
        display: grid;
        grid-template-rows: 3rem;
        align-items: center;
        color: var(--white_color);
        font-size: 1rem;
        border-radius: 2.5rem;
        padding: 0.2rem 1.5rem;
        cursor: pointer;
    }
    .sidebar_content_box .sidebar_item:hover {
        color: var(--gold_color_lite);
        background-color: #282b3c;
    }
    .sidebar_content_box .sidebar_item_active,
    .sidebar_content_box .sidebar_item_active:hover {
        color: var(--gold_color_lite);
        background-color: #282b3c;
    }
    .sidebar_content_box .sidebar_item_link {
        grid-template-columns: max-content 1fr 1rem;
    }
        .sidebar_item_link .sidebar_link_icon {
            width: 2.8rem;
            height: 2.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            background-color: #282b3c;
            border-radius: 100%;
            margin-right: 0.7rem;
        }


.sidebar_separator {
    width: 100%;
    height: 1px;
    border-radius: 50%;
    background-color: #2d3043;
}

.sidebar_close_btn_background {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 35, 49, 0.7);
    z-index: var(--zi_front_sidebar_background_btn);
}

.dropdown_sidebar {
    width: 90%;
    color: var(--white_color);
    background-color: #282b3c;
}

@media (max-width: 768px) {
    :root {
        --front_sidebar_windth: 85%;
    }
}