/* ---------------------------------------------------
	SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
	width: 275px;
	position: fixed;
	top: 0;
	left: -275px;
	height: 100vh;
	z-index: 999;
	background: #71469A;
	color: #fff;
	transition: all 0.3s;
	overflow-y: scroll;
}

#sidebar.active {
	left: 0;
}

#sidebar {

}
#sidebar .menu-header {
	font-size: 17px;
}
#sidebar .menu-header:active{
	background-color: #FFFFFF;
	color: #71469A;
}
#sidebar ul li a {
	color: #FFFFFF;
}
#sidebar .fa-angle-down {
	transition: .3s transform ease-in-out;
	float: right;
}
#sidebar .collapsed .fa-angle-down {
	transform: rotate(90deg);
}
#sidebar a.close-sidebar {
	background: #fff;
	color: #71469A !important;
}

.overlay {
	display: none;
	position: fixed;
	width: 100vw;
	height: 100vh;
	/* background: rgba(0, 0, 0, 0.7); */
	background: transparent;
	z-index: 998;
	opacity: 0;
	transition: all 0.5s ease-in-out;
}
.overlay.active {
	display: block;
	opacity: 1;
}

#dismiss {
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	background: #7386D5;
	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: #7386D5;
}

#sidebar .sidebar-header {
	padding: 20px;
    color: #ffffff !important;
	/* background: #6d7fcc; */
}

#sidebar .sidebar-header p {
    color: #ffffff !important;
}

#sidebar ul.components {
	padding: 20px 0;
	/* border: 1px solid hsla(270, 37%, 41%, 1); */
}

#sidebar ul p {
	color: #fff;
	padding: 10px;
}

#sidebar ul li a {
	padding: 10px;
	font-size: 1.1em;
	display: block;
}

#sidebar ul li a:hover {
	color: #71469A;
	background: #fff;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
	color: #fff;
	/* background: #6d7fcc; */
	background: #71469A;
}

a[data-toggle="collapse"] {
	position: relative;
}

.dropdown-toggle::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}

ul ul a {
	font-size: 0.9em !important;
	padding-left: 45px !important;
	/* background: #6d7fcc; */
	background: hsla(270, 37%, 54%, 1);
}

ul.CTAs {
	padding: 20px;
}

ul.CTAs a {
	text-align: center;
	font-size: 0.9em !important;
	display: block;
	border-radius: 5px;
	margin-bottom: 5px;
}

#content {
	/* width: 100%;
	padding: 20px;
	min-height: 100vh; */
	transition: all 0.3s;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
}
