/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
.btn-hamb{background-color:#cecece;color:#fff;margin:5px auto 0px auto;font-size:18px}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 1000;
    background: #fff;
    color: #000;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
	padding:25px;
}

#sidebar.active {
    left: 0;
}

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #0069b4;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
	color:#fff;
}
#dismiss:hover {
    background: #fff;
    color: #0069b4;
}

.overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    display: none;
}

#sidebar ul{margin-left: 0}
#sidebar ul li.nav-item{width:100%;display: block}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
    width:100%;
    color: #0069b4;
}
#sidebar ul li a:hover {
    color: #fff;
    background: #0069b4;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #fff;
    background: #0069b4;
}



/*
a[data-toggle="collapse"] {
    position: relative;
}

a[aria-expanded="false"]::before, a[aria-expanded="true"]::before {
    content: '\e259';
    display: block;
    position: absolute;
    right: 20px;
    font-family: 'Glyphicons Halflings';
    font-size: 0.6em;
}
a[aria-expanded="true"]::before {
    content: '\e260';
}*/