/**
 * Aurora for Elementor — Glassmorphism Module: fallback
 *
 * The main effect (translucent background, blur, saturation, border)
 * is resolved entirely through a `style` attribute computed in PHP
 * (see Glassmorphism_Controls::get_render_attributes) — there's no JS
 * in this module. This file only covers the case where the browser
 * doesn't support `backdrop-filter`: without the blur, the isolated
 * semi-transparent background would end up with low contrast, so we
 * increase the opacity to preserve legibility.
 *
 * @package Aurora
 */

@supports not ( (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) ) {
	.aurora-glass-active {
		background-color: rgba(255, 255, 255, 0.55) !important;
	}
}
