wijit-scrollnav a.active {
	background-color: var(--accent);
}

wijit-scrollnav a {
	border-bottom: 1px solid var(--border1);
	font-family: "OpenSans";
	line-height: .9rem;
	padding: .25rem;
	margin: 0;
}

@layer scrollnav {
	wijit-scrollnav {
		display: inline-block;
		font-size: small;
		height: 100%;
		left: 1vw;
		position: sticky;
		top: 65px;
		vertical-align: top;
		width: 10vw;
	}

	wijit-scrollnav > * {
		box-sizing: border-box;
		display: block;
	}

	wijit-scrollnav a:first-child {
		border-radius: 10px 10px 0 0;
	}

	wijit-scrollnav a:last-child {
		border-radius: 0 0 10px 10px;
	}

	@media all and (max-width: 599px) {
		wijit-scrollnav {
			display: none;
			margin-bottom: revert;
		}
	}

	@media all and (min-width: 2000px) {
		wijit-scrollnav {
			left: 5vw;
		}
	}
}

