.prod_wishlist_heart {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 0 12px 0 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
}

.prod_wishlist_heart:before {
    content: ' ';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(/wp-content/themes/woodmart-child/assets/img/inactive-heart.svg);
}

.prod_wishlist_heart.active:before {
    background-image: url(/wp-content/themes/woodmart-child/assets/img/active-heart.svg);
}

.prod_wishlist_heart.loading {
    pointer-events: none;
    opacity: 0.8;
}

.cart_wishlist_heart {
    width: 46px;
    height: 46px;
    gap: 208px;
    border-radius: 10px;
    background: #E6EFF6;
    cursor: pointer;
}

.cart_wishlist_heart:before {
    content: ' ';
    width: 24px;
    height: 24px;
    display: block;
    background-image: url('/wp-content/themes/woodmart-child/assets/img/cart-heart.svg');
    left: 11px;
    top: 10px;
    position: relative;
}

.cart_wishlist_heart.active:before {
    background-image: url('/wp-content/themes/woodmart-child/assets/img/cart-heart-active.svg');
}

.cart_wishlist_heart.loading {
    opacity: 0.8;
    pointer-events: none;
}

.single-wishlist-heart.loading {
    opacity: 0.8;
    pointer-events: none;
}

.single_wishlist_heart {
    display: flex;
    width: 53px;
    height: 53px;
    justify-content: center;
    align-items: center;
    gap: 208px;
    border-radius: 10px;
    border: 1px solid var(--Light-Blue, #E6EFF6);
    background: #FFF;
    cursor: pointer;
}

.single_wishlist_heart::before {
    content: ' ';
    display: block;
    width: 27px;
    height: 27px;
    background-image: url('/wp-content/themes/woodmart-child/assets/img/inner-heart.svg');
}

.single_wishlist_heart.active::before {
    background-image: url('/wp-content/themes/woodmart-child/assets/img/inner-heart-active.svg');
}

.wish-notify-content-data {
    display: none;
}

.wish-notify-content {
    display: flex;
    gap: 10px;
    width: 260px;
    cursor: default;
}

.wish-notify-content .notify-l img,
.wish-notify-content .notify-l a {
    display: block;
    width: 60px;
    height: 68px;
}

.wish-notify-content .notify-l img {
    border-radius: 10px;
}

.koto-notify {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wish-notify-content .notify-r {
    display: flex;
    flex-direction: column;
    gap: 3px;
    justify-content: center;
}

.wish-notify-content .notify-r a {
    color: var(--Dark-Gray, #3E4143);
    font-family: Manrope;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

@media screen and (max-width: 768px) {
    .cart_wishlist_heart:before {
		left: 6px;
    	top: 6px;
        transform: scale(0.85);
	}

	.cart_wishlist_heart {
		width: 36px;
    	min-width: 36px;
    	height: 36px;
	}
}