/* DEMO STYLE */
@import "https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700&subset=all";
body {
    font-family: 'Open Sans', sans-serif;
    background: #ffffff;
}
.fid-label {
    padding: 5px;
    background: #dddddd;
    margin: 0 10px 10px;
    border-radius: 10px;
    box-shadow: 3px 3px 5px 1px #aaaaaa;
    -webkit-box-shadow: 3px 3px 5px 1px #aaaaaa;
    -moz-box-shadow: 3px 3px 5px 1px #aaaaaa;
}
p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #000000;
}
a, a:hover, a:focus {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s;
}
.navbar {
    padding: 0 10px;
    background: linear-gradient(#2a5d1f, #4ea43b);
    border: none;
    border-radius: 0;
    margin-bottom: 10px;
    box-shadow: 0 10px 5px -5px #aaaaaa;
    -webkit-box-shadow: 0 10px 5px -5px #aaaaaa;
    -moz-box-shadow: 0 10px 5px -5px #aaaaaa;
    z-index: 9;
    position: fixed;
    width: 100vw;
}
.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}
.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #dddddd;
    margin: 10px 0;
}
/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 999;
    background: #ffffff;
    color: #000000;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}
#sidebar.active {
    left: 0;
}
#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #ffffff;
    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: #dddddd;
    color: #000000;
}
.overlay {
    position: absolute;
    top: 0;
    right:0;
    bottom:0;
    left:0;
    width: 100vw;
    height: 175vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}
#sidebar .sidebar-header {
    padding: 10px;
    background: #ffffff;
}
#sidebar ul.components {
    padding: 10px 0;
    border-bottom: 1px solid #dddddd;
}
#sidebar ul p {
    color: #000000;
    padding: 10px;
}
#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}
#sidebar ul li a:hover {
    color: #000000;
    background: #dddddd;
}
#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #000000;
    background: #ffffff;
}
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';
}
ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #ffffff;
}
ul.CTAs {
    padding: 20px;
}
ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}
a.download {
    background: #ffffff;
    color: #000000;
}
a.article, a.article:hover {
    background: #dddddd !important;
    color: #000000 !important;
}
/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
    width: 100%;
    transition: all 0.3s;
    position: absolute;
}