body {
    overflow-x: hidden;
}

/* collapsed style */
#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
aside{
    position:fixed;
    z-index: 1000;
    top:0;
    bottom:0;
    right:-250px;
    width:250px;
    background: rgba(0, 0, 0, 0.92);
    transition:0.5s ease;
    -webkit-transition:0.5s ease;
}
#page-content-wrapper {
    width: 100%;
}
a#menu-toggle {
    position: fixed;
    top: 1%;
    right: 1%;
    color: white;
    border: 2px solid white;
    z-index: 1001;
    background: grey;
}


/* toggled style */
body.toggled aside{ 
    right:0; 
}
body.toggled #wrapper{ 
    padding-right:250px; 
}
body.toggled a#menu-toggle {
    border: none;
    background: none;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-delay: 0.5s;
    -webkit-animation-iteration-count: 3;
    -moz-animation-duration: 0.5s;
    -moz-animation-delay: 0.5s;
    -moz-animation-iteration-count: 3;
}


/* Sidebar Styles */
.sidebar-nav {
    text-align: left;
    width: 250px;
    margin: 0;
    font-size: 18px;
    padding-top: 10px;
    padding-left: 0px;
    list-style: none;
}

.sidebar-nav li {
    line-height: 30px;
    /* margin-left: 20px; */
    /* margin-right: 20px; */
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #999999;
    padding-left: 20px;
    padding-right: 20px;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #fff;
    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: 65px;
    font-size: 18px;
    line-height: 60px;
}

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

.sidebar-nav img.sidebar-icon {
    width: 20px;
    height: 20px;
}

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

.sidebar-nav i.fa {
    width: 30px;
}

@media(min-width:768px) {
    #wrapper {
        padding-right: 0px;
    }

    img.site-author-image {
        width: 90px;
        height: 90px;
    }
}

div#sidebar-wrapper a.nav-link.active {
    background: transparent;
    border-radius: 0px;
    color: orange;
    border-bottom: 1px solid orange;
}
div#sidebar-wrapper a.nav-link {
    background-color: transparent;
    color: rgb(196, 196, 196);
    font-size: 16px;
    cursor: pointer;
}

