/* biome-ignore-all lint: ignore all lint errors */
@layer base {
	:root {
		--balloon-border-radius: 2px;
		--balloon-color: rgba(16, 16, 16, 0.95);
		--balloon-text-color: #fff;
		--balloon-font-size: 12px;
		--balloon-move: 4px;
	}
	button[aria-label][data-balloon-pos] {
		overflow: visible;
	}
	[aria-label][data-balloon-pos] {
		position: relative;
		cursor: pointer;
	}
	[aria-label][data-balloon-pos]:after {
		opacity: 0;
		pointer-events: none;
		transition: all 0.18s ease-out 0.18s;
		text-indent: 0;
		font-family:
			-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
			Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
		font-weight: normal;
		font-style: normal;
		text-shadow: none;
		font-size: var(--balloon-font-size);
		background: var(--balloon-color);
		border-radius: 2px;
		color: var(--balloon-text-color);
		border-radius: var(--balloon-border-radius);
		content: attr(aria-label);
		padding: 0.5em 1em;
		position: absolute;
		white-space: nowrap;
		z-index: 10;
	}
	[aria-label][data-balloon-pos]:before {
		width: 0;
		height: 0;
		border: 5px solid transparent;
		border-top-color: var(--balloon-color);
		opacity: 0;
		pointer-events: none;
		transition: all 0.18s ease-out 0.18s;
		content: "";
		position: absolute;
		z-index: 10;
	}
	[aria-label][data-balloon-pos]:hover:before,
	[aria-label][data-balloon-pos]:hover:after,
	[aria-label][data-balloon-pos][data-balloon-visible]:before,
	[aria-label][data-balloon-pos][data-balloon-visible]:after,
	[aria-label][data-balloon-pos]:not([data-balloon-nofocus]):focus:before,
	[aria-label][data-balloon-pos]:not([data-balloon-nofocus]):focus:after {
		opacity: 1;
		pointer-events: none;
	}
	[aria-label][data-balloon-pos].font-awesome:after {
		font-family:
			FontAwesome, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
			Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	}
	[aria-label][data-balloon-pos][data-balloon-break]:after {
		white-space: pre;
	}
	[aria-label][data-balloon-pos][data-balloon-break][data-balloon-length]:after {
		white-space: pre-line;
		word-break: break-word;
	}
	[aria-label][data-balloon-pos][data-balloon-blunt]:before,
	[aria-label][data-balloon-pos][data-balloon-blunt]:after {
		transition: none;
	}
	[aria-label][data-balloon-pos][data-balloon-pos="up"]:hover:after,
	[aria-label][data-balloon-pos][data-balloon-pos="up"][data-balloon-visible]:after,
	[aria-label][data-balloon-pos][data-balloon-pos="down"]:hover:after,
	[aria-label][data-balloon-pos][data-balloon-pos="down"][data-balloon-visible]:after {
		transform: translate(-50%, 0);
	}
	[aria-label][data-balloon-pos][data-balloon-pos="up"]:hover:before,
	[aria-label][data-balloon-pos][data-balloon-pos="up"][data-balloon-visible]:before,
	[aria-label][data-balloon-pos][data-balloon-pos="down"]:hover:before,
	[aria-label][data-balloon-pos][data-balloon-pos="down"][data-balloon-visible]:before {
		transform: translate(-50%, 0);
	}
	[aria-label][data-balloon-pos][data-balloon-pos*="-left"]:after {
		left: 0;
	}
	[aria-label][data-balloon-pos][data-balloon-pos*="-left"]:before {
		left: 5px;
	}
	[aria-label][data-balloon-pos][data-balloon-pos*="-right"]:after {
		right: 0;
	}
	[aria-label][data-balloon-pos][data-balloon-pos*="-right"]:before {
		right: 5px;
	}
	[aria-label][data-balloon-pos][data-balloon-po*="-left"]:hover:after,
	[aria-label][data-balloon-pos][data-balloon-po*="-left"][data-balloon-visible]:after,
	[aria-label][data-balloon-pos][data-balloon-pos*="-right"]:hover:after,
	[aria-label][data-balloon-pos][data-balloon-pos*="-right"][data-balloon-visible]:after {
		transform: translate(0, 0);
	}
	[aria-label][data-balloon-pos][data-balloon-po*="-left"]:hover:before,
	[aria-label][data-balloon-pos][data-balloon-po*="-left"][data-balloon-visible]:before,
	[aria-label][data-balloon-pos][data-balloon-pos*="-right"]:hover:before,
	[aria-label][data-balloon-pos][data-balloon-pos*="-right"][data-balloon-visible]:before {
		transform: translate(0, 0);
	}
	[aria-label][data-balloon-pos][data-balloon-pos^="up"]:before,
	[aria-label][data-balloon-pos][data-balloon-pos^="up"]:after {
		bottom: 100%;
		transform-origin: top;
		transform: translate(0, var(--balloon-move));
	}
	[aria-label][data-balloon-pos][data-balloon-pos^="up"]:after {
		margin-bottom: 10px;
	}
	[aria-label][data-balloon-pos][data-balloon-pos="up"]:before,
	[aria-label][data-balloon-pos][data-balloon-pos="up"]:after {
		left: 50%;
		transform: translate(-50%, var(--balloon-move));
	}
	[aria-label][data-balloon-pos][data-balloon-pos^="down"]:before,
	[aria-label][data-balloon-pos][data-balloon-pos^="down"]:after {
		top: 100%;
		transform: translate(0, calc(var(--balloon-move) * -1));
	}
	[aria-label][data-balloon-pos][data-balloon-pos^="down"]:after {
		margin-top: 10px;
	}
	[aria-label][data-balloon-pos][data-balloon-pos^="down"]:before {
		width: 0;
		height: 0;
		border: 5px solid transparent;
		border-bottom-color: var(--balloon-color);
	}
	[aria-label][data-balloon-pos][data-balloon-pos="down"]:after,
	[aria-label][data-balloon-pos][data-balloon-pos="down"]:before {
		left: 50%;
		transform: translate(-50%, calc(var(--balloon-move) * -1));
	}
	[aria-label][data-balloon-pos][data-balloon-pos="left"]:hover:after,
	[aria-label][data-balloon-pos][data-balloon-pos="left"][data-balloon-visible]:after,
	[aria-label][data-balloon-pos][data-balloon-pos="right"]:hover:after,
	[aria-label][data-balloon-pos][data-balloon-pos="right"][data-balloon-visible]:after {
		transform: translate(0, -50%);
	}
	[aria-label][data-balloon-pos][data-balloon-pos="left"]:hover:before,
	[aria-label][data-balloon-pos][data-balloon-pos="left"][data-balloon-visible]:before,
	[aria-label][data-balloon-pos][data-balloon-pos="right"]:hover:before,
	[aria-label][data-balloon-pos][data-balloon-pos="right"][data-balloon-visible]:before {
		transform: translate(0, -50%);
	}
	[aria-label][data-balloon-pos][data-balloon-pos="left"]:after,
	[aria-label][data-balloon-pos][data-balloon-pos="left"]:before {
		right: 100%;
		top: 50%;
		transform: translate(var(--balloon-move), -50%);
	}
	[aria-label][data-balloon-pos][data-balloon-pos="left"]:after {
		margin-right: 10px;
	}
	[aria-label][data-balloon-pos][data-balloon-pos="left"]:before {
		width: 0;
		height: 0;
		border: 5px solid transparent;
		border-left-color: var(--balloon-color);
	}
	[aria-label][data-balloon-pos][data-balloon-pos="right"]:after,
	[aria-label][data-balloon-pos][data-balloon-pos="right"]:before {
		left: 100%;
		top: 50%;
		transform: translate(calc(var(--balloon-move) * -1), -50%);
	}
	[aria-label][data-balloon-pos][data-balloon-pos="right"]:after {
		margin-left: 10px;
	}
	[aria-label][data-balloon-pos][data-balloon-pos="right"]:before {
		width: 0;
		height: 0;
		border: 5px solid transparent;
		border-right-color: var(--balloon-color);
	}
	[aria-label][data-balloon-pos][data-balloon-length]:after {
		white-space: normal;
	}
	[aria-label][data-balloon-pos][data-balloon-length="small"]:after {
		width: 80px;
	}
	[aria-label][data-balloon-pos][data-balloon-length="medium"]:after {
		width: 150px;
	}
	[aria-label][data-balloon-pos][data-balloon-length="large"]:after {
		width: 260px;
	}
	[aria-label][data-balloon-pos][data-balloon-length="xlarge"]:after {
		width: 380px;
	}
	@media screen and (max-width: 768px) {
		[aria-label][data-balloon-pos][data-balloon-length="xlarge"]:after {
			width: 90vw;
		}
	}
	[aria-label][data-balloon-pos][data-balloon-length="fit"]:after {
		width: 100%;
	}
}