/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
	width: 325px;
	position: fixed;
	top: 0;
	right: -325px;
	height: 100vh;
	z-index: 999;
	transition: all 0.3s;
	overflow-y: auto;
	padding-left: 3px;
	/*box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);*/
	background: #F4F4F4; /*#7386D5;*/
	color: #444444; /*#fff;*/
	font-size: 1.2em;
	line-height: 1.5;
	box-sizing: border-box;
}

#sidebar.active {
	right: 0;
}

#sidebar a,
#sidebar a:hover,
#sidebar a:focus {
	color: inherit;
	text-decoration: none;
}

#sidebar #dismiss {
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	background: #F4F4F4; /*#7386D5;*/
}

#sidebar #dismiss:hover {
	background: #3CC3CC; /*#FFFFFF;*/
	color: #FFFFFF; /*#7386D5;*/
}

.overlay {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 998;
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.overlay.active {
	display: block;
	opacity: 1;
}

#sidebar .sidebar-header {
	padding: 20px;
	background: #F4F4F4; /*#6d7fcc;*/
}

#sidebar ul.components {
	border-bottom: 1px solid #444444; /*#47748b;*/
}

#sidebar ul p {
	color: #444444; /*#fff;*/
	font-weight: bold;
	padding: 0;
	margin: 0;
}

#sidebar ul li a {
	padding: 10px 10px;
	font-size: 1.6em;
	display: block;
}

#sidebar ul li a:hover {
	color: #FFFFFF; /*#7386D5;*/
	background: #3CC3CC; /*#FFF;*/
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
	color: green; /*#fff;*/
	background: #C1E1FF; /*#6d7fcc;*/
}

#sidebar a[data-toggle="collapse"] {
	position: relative;
}

#sidebar .dropdown-toggle::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}

#sidebar ul ul a {
	font-size: 1.2em !important;
	padding-left: 30px !important;
	background: #C1E1FF; /*#6d7fcc;*/
}

#sidebar ul.CTAs {
	padding: 20px;
}

#sidebar ul.CTAs a {
	text-align: center;
	font-size: 1.2em !important;
	display: block;
	border-radius: 5px;
	margin-bottom: 5px;
}

#sidebar a.download {
	background: #fff;
	color: #7386D5;
}

#sidebar a.article,
#sidebar a.article:hover {
	background: #6d7fcc !important;
	color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
	width: 100%;
	min-height: 100vh;
	transition: all 0.3s;
	/*padding: 20px;*/
	position: relative;
}