@each $name, $shadow in $theme_shadow{
	.cms-shadow-#{$name}{
		@include box-shadow($shadow);
	}
	.cms-shadow-active-#{$name}{
		&.active,
		&:hover,
		&.current,
		&[class*="current"]{
			@include box-shadow($shadow);
		}
	}
	.active,
	[class*="current"]{
		.cms-shadow-active-#{$name}{
			@include box-shadow($shadow);
		}
	}
	.cms-shadow-hover-#{$name}{
		&:hover{
			@include box-shadow($shadow);
		}
	}
	.elementor img.cms-shadow-#{$name}{
		@include box-shadow($shadow);
	}
}