/*----- SIDEBAR MENU - Open -----*/
#sidebar-right .menu {
	list-style: none;
	margin: -0.75rem 0;
	padding: 0;
}

#sidebar-right .menu-item {
	border: none;
	display: block;
	position: relative;
	padding: 0.125rem 0;
}

#sidebar-right .menu-item-level-1 {
	border-bottom: 1px solid #dddddd;
	padding: 0.75rem 0;
}
#sidebar-right .menu-item-level-1:last-child {
	border: none;
}

#sidebar-right .menu-item > a {
	color: var(--color--black);
	display: flex;
	font-weight: 400;
	line-height: 130%;
	padding: 0.375rem 0;
	position: relative;
	text-decoration: none;
}
#sidebar-right .menu-item > a:hover {
	color: var(--color-primary);
}

#sidebar-right .menu-item-has-children > a {
	justify-content: space-between;
}
#sidebar-right .menu-item-has-children > a::after {
	color: var(--color-primary);
	content: '\f054';
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Font Awesome 6 Pro';
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
	transform-origin: center;
	text-decoration: none !important;
	width: 0.875rem;
	height: 0.875rem;

	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

#sidebar-right .menu-item-has-children > a:hover::after {
	color: var(--color-primary);
}

#sidebar-right .menu-item.js-accordion-open > a {
	color: var(--color-primary);
	font-weight: 500;
}

#sidebar-right .menu-item.js-accordion-open > a::after {
	color: var(--color-primary);
	transform: rotate(90deg);
}
#sidebar-right .menu-item.active > a::after {
	color: var(--color-secondary);
}
#sidebar-right .menu-item.active.js-accordion-open > a::after {
	color: var(--color-secondary);
}

#sidebar-right .submenu {
	display: none;
	list-style: none;
	margin: 0;
	overflow: hidden;
}
#sidebar-right .submenu {
	padding-left: 1.25rem;
}

#sidebar-right .menu-item.active > a {
	color: var(--color-secondary);
	font-weight: 500;
}

#sidebar-right .submenu a::before {
	background: var(--color-primary);
	bottom: 0;
	border-radius: var(--border-radius);
	content: '';
	display: block;
	height: 1px;
	left: 0;
	opacity: 0;
	position: absolute;
	width: 33%;

	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
#sidebar-right .submenu .active > a::before {
	background: var(--color-secondary);
}
#sidebar-right .submenu a:hover::before {
	opacity: 0.75;
	width: 100%;
}
/*----- SIDEBAR MENU - Close -----*/
