.sidebar {
    width: 218px;
    flex-shrink: 0;
    height: 100%;

    border-right: 1px solid #eaeaea;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
    z-index: 10;

    background-color: #eee;
    overflow: hidden;
    display: flex;
    flex-direction: column;

    &.folded {
        width: 0px !important;
        visibility: hidden;
    }

    .scrollable {
        flex: 1 1 auto;
        padding: 6px 0;
        overflow: auto;
    }
}