.sidebar {

    z-index: 99999;
    position: fixed;
    top: 0; /* Height of navbar */
    bottom: 0;
    left: -100%;
    width: 35%;
    /* padding-right: 1rem;
    padding-left: 1rem; */
    overflow-y: auto;
    overflow-x: hidden;
    visibility: hidden;
    background-color: #ffffff;
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    transition-property: left, visibility;
    min-height:100vh;
    -webkit-box-shadow: 5px 0px 26px -9px rgba(93,90,82,1);
    -moz-box-shadow: 5px 0px 26px -9px rgba(93,90,82,1);
    box-shadow: 5px 0px 26px -9px rgba(93,90,82,1);

    &.open {
        left:0%;
        visibility: visible;
    }

    .wrapper {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        position: absolute;

        .sticky-bottom {
            width:100%;
            position: relative;
            bottom: 0;
            left:0;

            button {
                width:100%;
            }
        }

        .card {
            border:none;
            border-radius: 0px;
    
            > .card-header {
                background:none;
                border: none;
                margin-bottom: 8px;
                margin-top:8px;
                padding-bottom: 0;
    
                > h2 {
                    color:#000;
                    font-size:24px;
                    margin: 0;
                    cursor: 'pointer';
                    font-family: 'WorkSansSemiBold';
                }
                
            }

            .filter-item-wrapper {
                display:grid;
                grid-template-columns:repeat(3, 1fr);
                padding-top:0;
                padding-bottom: 0;
            }
            
            .filter-item {
                padding:5px 5px 5px 5px;
                border:none;
                cursor: pointer;
                &.selected, &:hover {
                    background: #c5d3d9;
                }
            }
        }
    
        
    }

    


}

@media(max-width: 768px) {
    .sidebar {
        width:100%;
    }
   
}

