.cursor-not-allowed {
	cursor: not-allowed !important;
}

.pro-blocked-container {
	filter: blur(0.05rem);
	position: relative;
	overflow: hidden;
	cursor: not-allowed !important;
}

.restricted-access-overlay {
	display: grid;
	position: relative;
}

.restricted-access-overlay__target,
.restricted-access-overlay__mask,
alert-mask.restricted-access-overlay__mask {
	grid-area: 1 / 1;
	min-width: 0;
}

.restricted-access-overlay__target {
	pointer-events: none;
	user-select: none;
}

.restricted-access-overlay__mask,
alert-mask.restricted-access-overlay__mask {
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	justify-self: stretch;
	background: rgba(255, 255, 255, 0.88);
	padding: 1rem;
	box-sizing: border-box;
}

alert-mask.restricted-access-overlay__mask {
	border-radius: inherit;
}

.restricted-access-overlay--compact .restricted-access-overlay__mask,
.restricted-access-overlay--compact alert-mask.restricted-access-overlay__mask {
	padding: 0.5rem;
}

.restricted-access-content {
	gap: 0.5rem;
	max-width: 28rem;
	padding: 0.25rem;
	text-align: center;
}

.restricted-access-content--compact {
	max-width: 20rem;
}

.restricted-access-content--compact .fs-1 {
	font-size: 1.75rem !important;
}

.pro-bg-gradient {
	background-image: var(--pro-linear-gradient) !important;
	color: #000000 !important;
}

.pro-border-gradient {
	border: 5px solid;
	border-image: var(--pro-linear-gradient) 1;
}

.pro-gradient-text {
	background: var(--pro-linear-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.bg-gradient-mark {
	background-image: var(--pro-linear-gradient) !important;
}

.text-bg-gradient-mark {
	background: transparent;
	color: #000000;
}

/* Downgrade visual state */
.pro-downgraded {
	filter: grayscale(0.8) opacity(0.65);
}
.pro-downgraded .btn,
.pro-downgraded button,
.pro-downgraded a,
.pro-downgraded input,
.pro-downgraded textarea,
.pro-downgraded select {
	pointer-events: none !important;
	cursor: not-allowed !important;
}
.pro-downgraded .accordion-button::after {
	opacity: 0.3;
}
.pro-downgraded .card {
	filter: grayscale(0.9);
}
.pro-downgraded .list-group-item {
	opacity: 0.7;
}

@media (prefers-reduced-motion: reduce) {
	.blink {
		animation: none !important;
		transition: none !important;
	}
}

.blink {
	animation: blink 1.2s ease-in-out infinite;
	-webkit-animation: blink 1.2s ease-in-out infinite;
	will-change: opacity;
}

@keyframes blink {
	0% {
		opacity: 1;
	}

	45% {
		opacity: 0.25;
	}

	50% {
		opacity: 0;
	}

	55% {
		opacity: 0.25;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes blink {
	0% {
		opacity: 1;
	}

	45% {
		opacity: 0.25;
	}

	50% {
		opacity: 0;
	}

	55% {
		opacity: 0.25;
	}

	100% {
		opacity: 1;
	}
}
