/* Skip link - hidden by default, visible on focus */
.skip-links-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999999;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	padding: 10px 15px;
	background: white;
	color: black;
	border: 1px solid var(--primary);
	border-radius: 4px;
	text-decoration: none;
	font-weight: 500;
	white-space: nowrap;
}

.skip-link:focus {
	left: 10px;
	top: 10px;
	outline: 2px solid var(--primary);
	outline-offset: 2px;
}
