/**
 * Isolate Illustrator `.cls-1` styles.
 *
 * SVG <style> blocks are document-global. The mobile hamburger SVG ships with:
 *   .cls-1 { fill:none; stroke:#fff; stroke-width:66.67px }
 * which leaks onto every Icon Box / button SVG that also uses `.cls-1`.
 * Theme `master.min.css` also had `.cls-1{fill:unset!important}` which made it worse.
 */
.elementor-icon svg .cls-1,
.elementor-icon-box-icon svg .cls-1,
.elementor-widget-icon-box svg .cls-1,
.elementor-widget-icon svg .cls-1,
.elementor-widget-button svg .cls-1,
.aae--btn-pro-wrapper svg .cls-1,
.wcf__btn svg .cls-1 {
	fill: currentColor !important;
	stroke: none !important;
	stroke-width: 0 !important;
}

.wcf-menu-hamburger svg .cls-1,
.brandberry-menu-hamburger svg .cls-1,
.bbe-offcanvas-button svg .cls-1 {
	fill: none !important;
	stroke: currentColor !important;
}
