#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;
}

#wrapper.toggled {
    padding-left: 250px;
}

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 250px;
    width: 0;
    height: 100%;
    margin-left: -250px;
    overflow-y: auto;
    background: #fff;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    box-shadow: 0px 1px 6px 0px rgba(102, 102, 102, 0.3);
}

#wrapper.toggled #sidebar-wrapper {
    width: 250px;
    overflow-x: hidden;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
    margin-bottom: 30px;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -250px;
}


/* Sidebar Styles */

.burger {
    width: 35px;
    height: 32px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    margin: 10px 0 0 10px
}
.burger:before, .burger span, .burger:after {
    width: 100%;
    height: 4px;
    display: block;
    background: #666;
    border-radius: 2px;
    position: absolute;
    opacity: 1;
}
.burger:before, .burger:after {
    transition: top .35s cubic-bezier(.23,1,.32,1),transform .35s cubic-bezier(.23,1,.32,1),opacity .35s cubic-bezier(.23,1,.32,1),background-color 1.15s cubic-bezier(.86,0,.07,1);
    -webkit-transition: top .35s cubic-bezier(.23,1,.32,1),-webkit-transform .35s cubic-bezier(.23,1,.32,1),opacity .35s cubic-bezier(.23,1,.32,1),background-color 1.15s cubic-bezier(.86,0,.07,1);
    content: "";
}
.burger:before {
    top: 8px;
}
.burger span {
    top: 15px;
}
.burger:after {
    top: 22px;
    width: 80%;
}
/* Hover */
.burger:hover:before {
    top: 7px;
}
.burger:hover:after {
    top: 23px;
}
/* Click */
.burger.cross span {
    opacity: 0;
}
.burger.cross:before, .burger.cross:after {
    top: 40%;
}
.burger.cross:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=5); /*for IE*/
}
.burger.cross:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    width: 100%;
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-5); /*for IE*/
}
.burger:focus {
    outline: none;
}


.list-subnav-menu li{
    width: 100%;
}

.list-subnav-menu li a{
    padding: 0;
    line-height: 30px;
}

.list-subnav-menu li:first-child a{
    border-top: 1px solid #ccc;
}

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    text-indent: 20px;
    line-height: 40px;
    border-bottom: 1px solid #ccc;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #999999;
    padding: 10px 0;
}

.sidebar-nav li a i{
    vertical-align: middle;
    display: inline;
    padding-right: 10px;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    background: -prefix-linear-gradient(left top, rgba(14, 92, 173,0.66), rgba(71, 107, 147,0.66)) !important;
    background: linear-gradient(to bottom right, rgba(14, 92, 173,0.66), rgba(71, 107, 147,0.66)) !important;
    color: #fff;
}

.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;
    padding: 0;
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: #fff !important;
}

.sidebar-nav > .sidebar-brand a img{
    width: 60%;
    height: auto;
}

.active-sidebarMain a {
    background: -prefix-linear-gradient(left top, rgba(14, 92, 173,0.66), rgba(71, 107, 147,0.66));
    background: linear-gradient(to bottom right, rgba(14, 92, 173,0.66), rgba(71, 107, 147,0.66));
    color: #fff !important;
}

@media(min-width:768px) {
    #wrapper {
        padding-left: 0;
    }
    #wrapper.toggled {
        padding-left: 250px;
    }
    #sidebar-wrapper {
        width: 0;
    }
    #wrapper.toggled #sidebar-wrapper {
        width: 250px;
    }
    #page-content-wrapper {
        position: relative;
    }
    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
    }
}
