
/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebar {
    width: 340px;
    position: fixed;
    top: 0;
    left: -340px;
    height: 100vh;
    z-index: 1500;
    background: #fff;
    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;    
    text-align: left;
    color: #000;
    position: absolute;
    top: 58px;
    right: 11px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
	font-size: 40px;
	
}
#dismiss:hover {
    background: #fff;
    color: #f2f2f2;
}
#dismiss .left {
	border: solid black;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 9px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

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

#sidebar .sidebar-header {
    padding: 20px;
    background: #000;
}
#sidebar .sidebarContainer {
	padding: 0 50px;
}

#sidebar ul.components {
    padding: 0;
    
}

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

#sidebar ul li a {
    
    
    display: block;
	text-decoration:none;
	
	
}
#sidebar ul li a:hover {
    color: grey;
}

#sidebar ul li.active > a, #sidebar a[aria-expanded="true"] {
    font-weight: 700;
   
	
}
.components > li > a {
	text-transform:uppercase;
	font-weight: 500;
	
}
.components > li {
	border-bottom: 1px solid #e0e0e0;
	padding: 12px 0;
}

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

#sidebar a[aria-expanded="false"]::before, #sidebar a[aria-expanded="true"]::before {
    content: '\e259';
    display: block;
    position: absolute;
    right: 0;
    font-family: 'Glyphicons Halflings';
    font-size: 0.6em;
}
#sidebar a[aria-expanded="true"]::before {
    content: '\e260';
}


ul ul a {
    font-size: 14px !important;
    padding-left: 0 !important;
    line-height: 28px !important;
}

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: #fff;
    color: #f2f2f2;
}
a.article, a.article:hover {
    background: #f2f2f2 !important;
    color: #fff !important;
}

#sidebar .btn-black {
	width: 100%;
	background-color: white;
}
#sidebar .btn-black:hover {	
	background-color: black;
}



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