/* Skip Link */
.skip-link {
	background: #0CD1CC;
	color: #222222;
	font-weight: 400;
	left: 50%;
	padding: 4px;
	position: absolute;
	transform: translateY(-100%);
	top: 0;
	z-index: 9999;
	height: 50px;
	width: 208px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;

	/* Center horizontally */
	/* transform: translateX(-50%); */
}

.skip-link a:focus-visible{
	background: white;
}

.skip-link a{
	text-decoration: underline;
	font-weight: 700;
	margin: 0px 2px;
}

.skip-link:focus-within {
	transform: translateY(0%);
}   