/* selection-bubble.css */
.wpaa-select-bubble {
	position: fixed;
	left: -9999px;
	top: -9999px;
	z-index: 2147483647;
	display: inline-flex;
	gap: 6px;
	align-items: center;
	padding: 8px 10px;
	border-radius: 999px;
	background: #111;
	color: #fff;
	font-size: 12px;
	font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
	box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
	opacity: 0;
	pointer-events: none;
	transition: opacity .18s ease;
	-webkit-font-smoothing: antialiased;
}

.wpaa-select-bubble--show {
	opacity: 1;
	pointer-events: auto;
}

.wpaa-select-bubble__btn {
	display: inline-block;
	cursor: pointer;
	user-select: none;
	padding: 0;
	margin: 0;
	border: none;
	background: transparent;
	color: inherit;
	font: inherit;
	line-height: 1;
}