.sidebar{
    position: fixed;
    display: flex;
    width: 12rem;
    min-height: 100vh;
    background-color: #fff;
    box-shadow: 0px 0px 2px 0px rgba(20, 20, 20, 0.5);
}
.sidebar-nav{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    width: 100%;
    height: 100%;
    padding-top: 16px;
}
.sidebar-item{
    display: flex;
    align-items: center;
    line-height: 3rem;
    width: 10rem;
}
.sidebar-item .filled-icon {
    display: none;
}
.sidebar-item:hover{
    border-radius: 10px;
    background-color: #f0f0f0;
    cursor: pointer;
}
.sidebar-item:not(:hover){
    background-color: #fff;
}
.sidebar-link{
    color: #000;
}
.sidebar-item svg{
    height: 1.25rem;
}
#sidebar-item-active{
    border-radius: 10px;
    background-color: #f0f0f0;
}
#sidebar-item-active .regular-icon{
    display: none;
}
#sidebar-item-active .filled-icon{
    display: block;
}

@media (max-width: 767px) {
    .sidebar{
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        min-height: auto;
        height: 56px;
        flex-direction: row;
        box-shadow: 0px 0px 2px 0px rgba(20, 20, 20, 0.5);
        margin-top: 3rem;
    }
    
    .sidebar-nav{
        flex-direction: row;
        justify-content: space-around;
        align-content: center;
        padding: 0;
    }
    
    .sidebar-item{
        width: auto;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 4px 0;
        line-height: 1;
    }
    
    .sidebar-item svg{
        margin: 0 0 4px 0;
        height: 24px;
    }
    
    .sidebar-link{
        font-size: 10px;
    }
    #sidebar-item-active{
        background-color: unset;
        border-radius: unset;
    }
    #sidebar-item-active .regular-icon{
        display: none;
    }
    #sidebar-item-active .filled-icon{
        display: block;
    }
}