/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebar {
    width: 350px;
    position: fixed;
    top: 0;
    left: -350px;
    height: 100vh;
    z-index: 999;
    background-color:#4a759d;
    color: #576e7b;
    transition: all 0.3s;
    overflow-y: auto;
    text-align: center;
    padding-left: 0px;
    box-shadow: none;
}

#sidebar.active {
    left: 0;
    color: #576e7b;
    box-shadow: 3px 2px 10px rgba(0, 0, 0, 0.6);
}

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: transparent;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
}

#dismiss i {
    color: #fff;
    font-size: 40px;
}

/*#dismiss:hover {*/
/*    background: #fff;*/
/*    color: #7386D5;*/
/*}*/

#sidebar .sidebar-header {
    padding: 20px;
    padding-top: 100px;
}

.sidebar-header p {
    font-size: 120px;
    color: #fff;
}

#sidebar img {
    width: 65%;
    margin-top: 20px;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li>a {
    color: #fff;
    padding: 10px;
    font-size: 20px;
    display: block;
    font-weight: 200;
    text-transform: uppercase;
}

#sidebar ul li.active {
    display: inline-block;
    border-bottom: 1px solid #ffc200;
}

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';
}