/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 9999;
    background: #000000;
    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: #89c5a8;
    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: #89c5a8;
}

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

#sidebar .sidebar-header {
    padding: 20px;
    background: #89c5a8;
}


#sidebar ul.components {
    padding:0;
    /* border-bottom: 1px solid #fff; */
}

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

#sidebar ul li{
	border-bottom:solid 1px #666;
	}
	
#sidebar ul ul li{
	border-bottom:0px;
	}	

#sidebar ul.CTAs li{
		border-bottom:0px;
	}
	
#sidebar ul li a {
    padding: 10px;
    font-size: 15px;
    display: block;
	color:#fff;
}
#sidebar ul li a:hover {
    color: #89c5a8;
    background: #fff;
	text-decoration:none;
}

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


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

a[aria-expanded="false"]::before, a[aria-expanded="true"]::before {
    content: '\25BC';
    display: block;
    position: absolute;
    right: 20px;
    font-size:8px;
}
a[aria-expanded="true"]::before {
    content: '\25B2';
}


ul ul a {
    font-size: 13px !important;
    padding-left: 30px !important;
    background: #f00;
}

ul.CTAs {
    padding: 20px;
	padding-top:10px;
}

ul.CTAs a {
    text-align: center;
    font-size: 15px !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}
a.download {
    background: #fff;
    color: #f00;
}
a.article, a.article:hover {
    background: #89c5a8 !important;
    color: #fff !important;
}


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