:is(.blockOverlay,.wd-loader-overlay):after {
	position: absolute;
	top: calc(50% - 13px);
	left: calc(50% - 13px);
	content: "";
	display: inline-block;
	width: 26px;
	height: 26px;
	border: 1px solid rgba(0, 0, 0, 0);
	border-left-color: var(--color-gray-900);
	border-radius: 50%;
	vertical-align: middle;
	animation: wd-rotate 450ms infinite linear var(--wd-anim-state, paused);
	--wd-anim-state: running;
}

.wd-loader-overlay {
	z-index: 340;
	border-radius: inherit;
	border-radius: var(--wd-brd-radius);
	animation: wd-fadeIn .6s ease both;
	background-color: rgba(var(--bgcolor-white-rgb), .6);
}

.wd-loader-overlay:not(.wd-loading) {
	display: none;
}

.blockOverlay {
	z-index: 340 !important;
	background: rgba(var(--bgcolor-white-rgb), .8) !important;
	animation: wd-FadeInLoader .6s ease forwards;
}

.blockOverlay:before {
	content: none !important;
}

.wd-hint {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	cursor: help;
}

.wd-hint:before {
	content: "?";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.45em;
	height: 1.45em;
	border-radius: 50%;
	background-color: var(--wd-hint-bg, var(--bgcolor-gray-300));
	color: var(--wd-hint-color, var(--color-gray-800));
	font-size: var(--wd-hint-size, .8em);
	font-weight: 600;
}

.wd-hint>.wd-tooltip-content {
	display: none;
}

.wd-hint.wd-with-html:after {
	content: "";
	position: absolute;
	bottom: 100%;
	inset-inline: 0;
	height: 8px;
}