#wrapper {
    /*padding-left: 0;*/
    padding: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled {
    /*padding-left: 150px;*/
}

#sidebar-wrapper {
    z-index: 1000;
     font-size: 0.9em;
    position: fixed;
        margin-top: 12px;
    /*right: 150px;*/
    text-align: left;
    /*top: 100px;*/
    float: right;
    width: 0;
   /* height: 100%;*/
    /*margin-left: -150px;*/
    overflow-y: auto;
   background: #02094e;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper {
    width: 150px;
}

#page-content-wrapper {
    width: 100%;
    /*position: absolute;*/
    /*padding: 15px;*/
    text-align: justify;
}
#menu-toggle{
    margin: 4px 15px 2px 0px;
    font-size: 1.5em;
    float: left;
    color: #ececf1;
    position: fixed;
    left: 10px;
    background-color: #02094d;
    z-index: 999
}   
#wrapper.toggled #page-content-wrapper {
    /*position: absolute;*/
    /*margin-right: -150px;*/
}

/* Sidebar Styles */

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

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

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: white;
    /*text-align: left;*/
    margin-left: 7px;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color:#717792;
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
    color:silver;
    /*background: #f1f1f1;*/
}

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

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

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

@media(min-width:768px) {
    #menu-toggle{
        visibility: hidden;

    }
    #wrapper {
        padding-left: 150px;
    }

    #wrapper.toggled {
        padding-left: 150px;
    }

    #sidebar-wrapper {
        width: 200px;
         background:white;
        
    }
    .sidebar-nav li a {   
    color: #030623;
    text-align: left;
    cursor: pointer;

    }
    #wrapper.toggled #sidebar-wrapper {
        width: 150px;
    }

    #page-content-wrapper {
        padding:15px 200px 0px 3px;
        text-align: justify;
        /*position: relative;*/
    }

    #wrapper.toggled #page-content-wrapper {
        /*position: relative;*/
        margin-right: 0;
    }
    #sidebar-wrapper {
        position: relative;
    }
}