#sidebar {
	width: 250px;
	position: fixed;
	top: 0;
	right: -250px;
	height: 100vh;
	z-index: 999;
	background: #000;
	color: #fff;
	transition: all 0.3s;
	overflow-y: scroll;
}
#sidebar.active {
	right: 0;
}
#dismiss {
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	background: #813d34;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	font-size:24px;
}
#dismiss:hover {
	background: #fff;
	color: #813d34;
}
.overlay {
	display: none;
	position: fixed;
	width: 100vw;
	height: 100vh;
	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: #6d7fcc;
}
#sidebar ul.components {
	padding: 60px 0 20px 0;
}
#sidebar ul p {
	color: #fff;
	padding: 10px;
}
#sidebar ul li a {
	padding: 10px;
	font-size: 0.9em;
	display: block;
	font-family: "Comfortaa", sans-serif;
}
#sidebar ul li a:hover {
	color: #813d34;
	background: #fff;
}

#sidebar ul li ul li a{ padding-left:20px; background:#262626; font-size:14px;}

  #sidebar > a, a[aria-expanded="true"] {
    color: #813d34;
    background: #fff;
}


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

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
