/* Sidebar Styling */
.sidebar
{
    flex: 1 1 0;
    max-width: 300px;
    max-height: 400px;
    padding: 2rem 1rem;
    margin-top: 30px;
    background-color: #2e3047;
}

.sidebar h3
{
    color: white;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 0.5em;
    text-align: center;
}

.sidebar > .menu
{
    margin: 0 -1rem;
}

.sidebar > .menu > .menu-item
{
    display: flex;
    padding: 1em;
    color: #fff;
    text-decoration: none;
    transition: 0.2s linear;
    margin-left: 35%;
}

.sidebar .menu .menu-item:hover,
.sidebar .menu .menu-item.active
{

    color: #3bba9c;
    border-right: 5px solid #ffffff;
}