.dstc-skip-link {
	position: fixed;
	top: var(--dstc-offset, 12px);
	z-index: var(--dstc-z-index, 999999);
	display: inline-block;
	box-sizing: border-box;
	width: auto;
	max-width: calc(100vw - 24px);
	padding: var(--dstc-padding-y, 12px) var(--dstc-padding-x, 18px);
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	background: var(--dstc-background, #fff);
	color: var(--dstc-color, #111);
	border: var(--dstc-border-width, 2px) solid var(--dstc-border-color, #111);
	border-radius: var(--dstc-radius, 4px);
	box-shadow: var(--dstc-shadow, 0 4px 14px rgb(0 0 0 / 22%));
	font-family: inherit;
	font-size: var(--dstc-font-size, 16px);
	font-style: normal;
	font-weight: var(--dstc-font-weight, 700);
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	transform: translateY(calc(-100% - var(--dstc-offset, 12px) - 8px));
	transition: transform 150ms ease-out;
}

.dstc-skip-link:focus,
.dstc-skip-link:focus-visible {
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
	clip-path: none;
	white-space: normal;
	color: var(--dstc-color, #111);
	outline: 3px solid var(--dstc-focus, #2b6cb0);
	outline-offset: 3px;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.dstc-skip-link {
		transition: none;
	}
}
