/* Shared Bekaa premium cursor. */

.bekaa-premium-cursor {
	--bekaa-cursor-label-color: #fff;
	--bekaa-cursor-label-shadow:
		0 1px 1px rgba(0, 0, 0, 0.76),
		0 2px 3px rgba(0, 0, 0, 0.48),
		0 4px 8px rgba(0, 0, 0, 0.22);

	position: fixed;
	top: 0;
	left: 0;
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	opacity: 0;
}

.bekaa-premium-cursor--label-dark {
	--bekaa-cursor-label-color: #111;
	--bekaa-cursor-label-shadow:
		0 1px 1px rgba(255, 255, 255, 0.72),
		0 2px 5px rgba(255, 255, 255, 0.36);
}

.bekaa-premium-cursor__line-vertical {
	position: absolute;
	left: 50%;
	width: 0.03125rem;
	height: 0;
	background: var(--bekaa-red, #ec1d25);
	opacity: 0;
	transform: translateX(-50%);
}

.bekaa-premium-cursor__line-horizontal {
	position: absolute;
	top: 50%;
	width: 0;
	height: 0.03125rem;
	background: var(--bekaa-red, #ec1d25);
	opacity: 0;
	transform: translateY(-50%);
}

.bekaa-premium-cursor__dot {
	position: relative;
	top: 0.12rem;
	width: 0.25rem;
	height: 0.25rem;
	border-radius: 50%;
	background: var(--bekaa-red, #ec1d25);
}

.bekaa-premium-cursor__dot::before,
.bekaa-premium-cursor__dot::after {
	position: absolute;
	left: 50%;
	content: "";
	pointer-events: none;
	opacity: 0;
	transform-origin: center;
	transition:
		opacity 0.28s var(--bekaa-motion-ease, cubic-bezier(0.22, 1, 0.36, 1)),
		transform 0.34s var(--bekaa-motion-ease, cubic-bezier(0.22, 1, 0.36, 1));
}

.bekaa-premium-cursor__dot::before {
	bottom: -0.04rem;
	display: block;
	width: 1em;
	height: 1em;
	overflow: hidden;
	background: none;
	clip-path: inset(0 0 0.3em 0);
	color: var(--bekaa-red, #ec1d25);
	content: "?";
	font-family: var(--bekaa-system-font, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif);
	font-size: 1.52rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	text-align: center;
	text-rendering: geometricPrecision;
	transform: translate3d(-50%, 0.14rem, 0) scale(0.72);
}

.bekaa-premium-cursor__dot::after {
	display: none;
}

.bekaa-premium-cursor--faq .bekaa-premium-cursor__dot::before {
	opacity: 1;
	transform: translate3d(-50%, 0, 0) scale(1);
}

.bekaa-premium-cursor--faq .bekaa-premium-cursor__dot {
	top: 0;
}

.bekaa-premium-cursor--faq .bekaa-premium-cursor__dot::after {
	opacity: 0;
}

.bekaa-premium-cursor__label {
	position: absolute;
	top: -8px;
	right: calc(0.45rem - 2px);
	overflow: visible;
	color: var(--bekaa-cursor-label-color);
	font-family: var(--bekaa-system-font, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif);
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.15em;
	line-height: 1;
	text-align: right;
	text-transform: uppercase;
	white-space: nowrap;
	opacity: 0;
	text-shadow: var(--bekaa-cursor-label-shadow);
	-webkit-font-smoothing: antialiased;
}

.bekaa-premium-cursor__label-text {
	position: relative;
	z-index: 3;
}

@media (pointer: coarse), (any-pointer: coarse) {
	.bekaa-premium-cursor {
		display: none !important;
	}
}
