/*PRODUCT ACTION WISHLIST*/
.product-action__wishlist--in-wishlist {
    background : var(--product-badge-bg-color);
    color      : white;
}


.product-action__wishlist .svg-wishlist-heart {
    overflow : visible !important;
}

.pulse-svg {
    transform-origin : center;
    transform        : scale(1);
}

.product-action__wishlist:hover .pulse-svg {
    animation : pulsing 1500ms ease-out infinite;
}

@keyframes pulsing {
    0% {
        transform : scale(1);
    }
    40% {
        transform : scale(1.27);
    }
    50% {
        transform : scale(1.1);
    }
    60% {
        transform : scale(1.27);
    }
    100% {
        transform : scale(1);
    }
}
