.submenuheader a:not(.titlelink) {
	color: var(--bs-black);
}

#bootscore-navbar>li {
	position: relative;
}

#bootscore-navbar>li::after {
	/* content: ""; */
	display: block;
	position: absolute;
	background: var(--bs-primary);
	height: 0.5rem;
	width: 0.5rem;
	border-radius: 100%;
	left: calc(50% - 0.25rem);
	opacity: 0;
	transition: all 0.3s ease-in-out;
	top: calc(100% - 0.25rem);
}

#bootscore-navbar>li:hover::after,
#bootscore-navbar>li:focus-within::after,
#bootscore-navbar>li.current-menu-item::after {
	opacity: 1;
}

.submenuheader {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 0.3s ease-in-out;
	transform: translateY(10px);
	position: absolute;
	width: 100%;
	z-index: 100;
}

.submenuheader.menu-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
	z-index: 105;
}

/** extra megamenu styles for galileo **/

#side_megamenu {
	background-color: var(--bs-primary);
	color: #fff;
	position: fixed;
	--sm-offset: calc(var(--header-height) + var(--wp-admin--admin-bar--height, 0px));
	top: var(--sm-offset);
	width: 100%;
	height: calc(100vh - var(--sm-offset));
	overflow: auto;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
	transform: translateY(30px);
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}

#side_megamenu.open {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
	z-index: 105;
}

#side_megamenu ul.nav {
	display: flex;
	flex-direction: row;
	gap: 2rem;
	padding: 1.5rem 0;
	justify-content: center;
	margin: 0 auto;
}

#side_megamenu a {
	color: #fff;
	text-decoration: none;
	padding: 0.7rem 0;
	display: inline-block;
	font-weight: 100;
	font-size: 20px;
	font-size: 1.25rem;
}

#side_megamenu .parent-menu-item>a {
	color: #fff;
	font-weight: 600;
	font-size: 1.5rem;
	position: relative;
	border-bottom: 1px dashed #ACC4FF;
	padding-bottom: 1rem;
	display: block;
	margin-bottom: 1rem;
}

#side_megamenu .parent-menu-item>a::before,
#side_megamenu .parent-menu-item>a::after {
	content: "";
	width: 5px;
	height: 5px;
	background: #ACC4FF;
	position: absolute;
	border-radius: 100%;
	display: block;
	bottom: -2.5px;
	left: -2.5px;
}

#side_megamenu .parent-menu-item>a::after {
	left: auto;
	right: -2.5px;
}

.nav-link.angle-right::after {
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-left: 0.5rem;
}