/* Custom Wishlist Icon Override */

/* Product cards & single product - action button icon */
.wd-wishlist-icon > a:before {
	content: '' !important;
	display: inline-block;
	width: 1em;
	height: 1em;
	background: currentColor;
	-webkit-mask-image: url('wishlist-icon.svg');
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-image: url('wishlist-icon.svg');
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
}

/* Header wishlist icon */
.wd-header-wishlist .wd-tools-icon:before {
	content: '' !important;
	display: inline-block;
	width: 1em;
	height: 1em;
	background: currentColor;
	-webkit-mask-image: url('wishlist-icon.svg');
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-image: url('wishlist-icon.svg');
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
}

/* Mobile toolbar wishlist icon */
.wd-toolbar .wd-toolbar-wishlist .wd-tools-icon:before {
	content: '' !important;
	display: inline-block;
	width: 1em;
	height: 1em;
	background: currentColor;
	-webkit-mask-image: url('wishlist-icon.svg');
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-image: url('wishlist-icon.svg');
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
}

/* Mobile menu wishlist icon */
.menu-item-wishlist > a:before {
	content: '' !important;
	display: inline-block;
	width: 1em;
	height: 1em;
	background: currentColor;
	-webkit-mask-image: url('wishlist-icon.svg');
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-image: url('wishlist-icon.svg');
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
}

/* "Added" state - filled icon */
.wd-wishlist-icon > a.added:before {
	content: '' !important;
	background: var(--wd-primary-color, currentColor);
	-webkit-mask-image: url('wishlist-icon.svg');
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-image: url('wishlist-icon.svg');
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
}

