.flex-custom-sidebar-section {
    width: 61px;
    background: #fff;
    color: #000;
    padding: 10px;
    border-right: 1px solid #eee;
    cursor: pointer;
    will-change: width;
    transition: width 300ms cubic-bezier(0.2, 0, 0, 1) 0s;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.flex-custom-sidebar-section:hover {
    width: 240px;
}

.flex-custom-sidebar-section:hover .sidebar-item-info {
    opacity: 1;
    visibility: visible;
    display: flex;
}


.flex-sidebar-top-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.flex-custom-sidebar-item {
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 5px;
    border-radius: 4px;
}

.flex-custom-sidebar-item:hover {
    background: #E6FAEB;
}

.flex-custom-sidebar-item.active {
    background: #E6FAEB;
}

.flex-custom-sidebar-item figure {
    min-width: 20px;
    height: 20px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;

}

.flex-custom-sidebar-item.active figure svg path {
    stroke: #155D27;
}

.flex-custom-sidebar-item.active .sidebar-item-info span {
    color: #155D27;
}

.flex-custom-sidebar-item figure svg {
    width: 18px;
    height: 18px;
    color: #18181B;
}

.flex-custom-sidebar-item figure img {
    width: 18px;
    height: 18px;
}

.sidebar-item-info {
    width: 176px;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    display: none;
    transition: max-width 300ms linear 0.33s, opacity 0.33s;
    display: flex;
    align-items: center;
}

.sidebar-item-info span {
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #18181B;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.flex-sidebar-footer-list {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.flex-sidebar-footer-list .sidebar-item-info {
    width: 176px;
}

.flex-sidebar-footer-list .navigation-icon {
    width: 16px;
    height: 16px;
    margin-left: auto;
}

.sidebar-divider {
    width: 100%;
    height: 1px;
    background: #F4F4F5;
    margin: 4px 0;
}

@media screen and (max-width: 640px) {
    .flex-custom-sidebar-section {
        display: none;
    }
}