/* Side Menu */

#sidebar-wrapper {
    top: 0;
    z-index: 1000;
    position: fixed;
    left: auto;
    width: 250px;
    height: 250px;
    overflow-y: hidden;
    background: none;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

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

.sidebar-nav li {
    text-indent: 20px;
    line-height: 40px;
}

.sidebar-nav li a {
    font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: block;
    text-decoration: none;
    color:black;
    text-transform: none;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
}

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

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

.sidebar-nav > .sidebar-brand {
    height: 55px;
    font-size: 18px;
    line-height: 55px;
}

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

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

.sidebar-nav > .btn-dark {

}

#menu-toggle {
    z-index: 600;
    position: fixed;
    top: 0;
    right: auto;
}

