/* Subtractions by ByAmed.Net — runtime mask layer.
 *
 * As of v1.2.1 the full CSS mask declaration is applied DIRECTLY inline on
 * the element wrapper by PHP (class-render.php) on the frontend and by JS
 * (subtractions.js) in both editor and frontend — exactly like the proven
 * manual examples. That means the mask no longer depends on this stylesheet
 * loading or on a CSS custom property resolving.
 *
 * This file remains only as a defensive backstop: it marks masked elements
 * and guarantees the mask sizing/repeat behaviour even if some theme or
 * Elementor rule tried to reset it. The mask-image itself is always inline.
 */
.subtractions-active {
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-position: center;
	mask-position: center;
}
