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


/* body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
} */

#left-sidebar a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

/* .navbar {
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
} */

#left-sidebar .navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

#left-sidebar .line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

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

#left-sidebar.active {
    left: 0;
}

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

#left-sidebar .left-sidebar-header {
    padding: 20px;
    background: #f82c23;
}

#left-sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #d83932;
}

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

#left-sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}
#left-sidebar ul li a:hover {
    color: #fff;
    background: #d83932;
}

#left-sidebar ul li.active > a {
    color: #fff;
    background: #d83932;
}


#left-sidebar a[data-toggle="collapse"] {
    position: relative;
}

@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome-webfont.eot');
    src: url('../fonts/fontawesome-webfont.eot') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff') format('woff'), url('../fonts/fontawesome-webfont.woff2') format('woff2'), url('../fonts/fontawesome-webfont.ttf') format('truetype'), url('../fonts/fontawesome-webfont.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

#left-sidebar a[aria-expanded="false"]::before {
    font-family: "FontAwesome";
    content: "\f0d7";
    
    display: block;
    position: absolute;
    right: 20px;
    font-size: 0.6em;
}
#left-sidebar a[aria-expanded="true"]::before {
    content: "\f0d8";
}


#left-sidebar ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #f82c23;
}

#left-sidebar ul.CTAs {
    padding: 20px;
}

#left-sidebar ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}


/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}
