/*
    DEMO STYLE
*/
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";


/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 199;
    background: #1a1a1a;
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
    left: 0;
}

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

#navClose {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 19999;
    display: none;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #171717;
}
#sidebar .sidebar-header img {
    max-width: 70%;
}

#sidebar .sidebar-middle {
    width: 100%;
    height: 100%;
    margin-top: 40%;
}
#sidebar .sidebar-middle ul.components {
    padding: 20px 20px;
    border-bottom: 1px solid #141414;
}

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

#sidebar .sidebar-middle ul li a {
    padding: 10px;
    font-family: 'Poppins' , sans-serif;
    font-size: 1.1em;
    color: #757575;
    display: block;
    transition: all 0.3s;
}
#sidebar .sidebar-middle ul li a:hover {
    color: #fff;
    padding-left: 17px;
    background: #171717;
}

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

#sidebar .sidebar-footer {
    width: 100%;
    margin-top: 10%;
}
#sidebar .sidebar-footer li {
    display: inline-block;
    padding-right: 10px;
}
#sidebar .sidebar-footer li a {
    font-size: 16px;
}
#sidebar .sidebar-footer li a:hover {
    color: #2388ed;
}

