<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS Slideout.js */
body {
    width: 100%;
    height: 100%;
    margin: 0
}
.slideout-menu {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    width: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    display: none;
    box-shadow: 0 4px 7px rgba(0,0,0,.12);
}

.slideout-panel {
    position: relative;
    z-index: 1;
}
.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}

/* Custom */
#main {
    background: white;
    min-height:  500px !important;
    padding-left: 10px; 
}
#slideMenu{
    background: #fcfcfc;
}
#slideMenu ul li {
    display: block;
    width: 100%;
    border-bottom: 1px solid #e7e7e7;
    border-left: 5px solid #fff;
    padding: 12px 6px;
}
#slideMenu ul li:first-child {
    border-top: 1px solid #e7e7e7;
}
#slideMenu ul li a {
    padding: 0 15px !important;
    color: #333;
    font-size: 13px;
    background-color: transparent;
    text-decoration: none;
    font-family:  open sans;
}
#slideMenu .menuIcon{
    text-align: center
}
.navbar-default ul &gt; .active &gt; a{
    background:#fff !important
}
#slideMenu ul :hover a {
    background-color: transparent;
    z-index:99;
    text-decoration: none;
}
#slideMenu ul{
    padding-left: 0 !important
}
#slideMenu ul li {
    display: block;
    width: 100%;
    border-bottom: 1px solid #e7e7e7;
    border-left: 5px solid #fff;
    font-size:14px;
}
#slideMenu ul li span{
    margin-right:10px;
}
#slideMenu ul li.active a{
    /* border-left: 5px solid #f44336; */
    opacity: 0.8;
    color: #ff5454 !important;
    font-weight: bold;
}
#slideMenu ul li a {
    padding: 15px;
}

#slideMenu .navbar-header{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}
#slideMenu .navbar-header .logo{ 
    margin-left:0
}

html.slideout-open .header .logo{
    display: none
}</pre></body></html>