html {
    height: 100%;
}

body {
    overflow-x: hidden;
    height: 100%;
    width: 100%;
    background: #444;
}
#wrapper{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 100%;
    overflow-x: hidden;
}

#aside {
    display: block;
    position: fixed;
    z-index: 0;
    max-height: 100%;
    overflow-y: auto;
    background: #003052;
    width: 75%;
    left: 0%;
    height:100%;
    transition: all .25s ease-out;
}
#aside .row,
#aside .row .col-sm-4{
    margin:0;
    padding:0;
}
body.menu-active #aside{

}
#aside a{
    display:block;
    padding:6px 18px;
    font-size:18px;
    border-bottom:1px solid rbga(255,255,255,.2);
    color:white;
}
#aside a:hover{
    text-decoration:none;
}
#aside h4{
    padding:16px 18px;
    font-weight: bold;
    border-bottom: 1px solid rgba(255,255,255,.5);
    margin-bottom:10px;
    color:white;
}
#aside .child{
    margin-bottom:40px;
}

#main {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    min-height: 100%;
    left: 0%;
    transition: all .25s ease-out;
    background:white;
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-grow: 1;
}
body.menu-active #main{
    left: 75%;
    box-shadow:0 0 10px rgba(0,0,0,1);
}

#toggle {
    position: fixed;
    left:0;
    bottom:0;
    margin-left: 20px;
    margin-bottom: 20px;
    z-index: 204400;
    cursor: pointer;
    transition: all .25s ease-out;
    width:52px;
    height:52px;
    border-radius:5px;
    background:#ed008c;
    box-shadow:0 2px 4px rgba(0,0,0,.4);
    border:1px solid rgba(0,0,0,.4);
    font-size:22px;
}
#toggle:focus{
    background:#ed008c;
}
#toggle:hover{
    background:black;
}
#toggle i{
    line-height: 40px;
}
#toggle .opened{
    display:none;
}
body.menu-active #toggle{
    left: 75%;
}
body.menu-active #toggle .closed{
    display:none;
}
body.menu-active #toggle .opened{
    display:block;
}

#close {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 4500;
    display: block;
    cursor: pointer;
    display: none;
}
body.menu-active #close{
    display: block;
    /*opacity:.2;
    background:black;*/
}

header.navbar{
    border-radius:0;
}