
/* Side Menu */
#sidebar-wrapper {
    position: fixed;
    z-index: 900;
    right: 0;
    width: 220px;
    height: 100%;
    transition: all 0.4s ease 0s;
    transform: translateX(250px);
    /* background: #3895d2; */
    background: rgba(224, 221, 213, 1);
    border-left: 1px solid rgba(215, 51, 50, 0.8);
}

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 220px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .sidebar-nav li.sidebar-nav-item a {
        display: block;
        text-decoration: none;
        font-size: 1.0rem;
        font-weight: 400;
        font-family: 'Roboto_Slab';
        color: #1F1F10;
        padding: 15px;
    }

    .sidebar-nav li a:hover {
        text-decoration: none;
        color: #1F1F10;
        background: rgba(255, 255, 255, 0.2);
    }

    .sidebar-nav li a:active,
    .sidebar-nav li a:focus {
        text-decoration: none;
    }

    .sidebar-nav > .sidebar-brand {
        font-size: 1.2rem;
        background: rgba(52, 58, 64, 0.1);
        height: 80px;
        line-height: 50px;
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 15px;
    }

        .sidebar-nav > .sidebar-brand a {
            color: #fff;
        }

            .sidebar-nav > .sidebar-brand a:hover {
                color: #fff;
                background: none;
            }

#sidebar-wrapper.active {
    right: 220px;
    width: 300px;
    transition: all 0.4s ease 0s;
}

.menu-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #fff;
    background: rgba(52, 58, 64, 0.5);
    line-height: 50px;
    z-index: 999;
}

    .menu-toggle:focus, .menu-toggle:hover {
        color: #fff;
    }

    .menu-toggle:hover {
        background: #343a40;
    }
