.fancy-blocker {
	position: fixed;
	z-index: 2147483647;
	display: none;
	top: 0;
	left: 0;
	-webkit-transform: none;
	transform: none;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
}
.fancy-blocker .spinner {
	font-size: 10vw; /* or use % if nested inside something scalable */
	border: 0.16em solid color-mix(in srgb, var(--fancy-primary-color) 50%, rgba(0,0,0,0.75) 50%);
	border-top: 0.16em solid var(--fancy-primary-color);
	border-radius: 50%;
	width: 10%;
	/* height: 10%; */
	aspect-ratio: 1 / 1;
	max-width: 160px;
	max-height: 160px;
	min-width: 40px;
	min-height: 40px;
	animation: fancy-blocker-spin 2s linear infinite;
}
@keyframes fancy-blocker-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}