button.add-to-wishlist {
    padding: 0;
    background: transparent!important;
}

button.add-to-wishlist svg {
    width: 1.7vw;
    pointer-events: none;
}
button.add-to-wishlist svg g {
    transition: all 0.25s ease-in-out;
}

button.add-to-wishlist svg g {
    stroke: #323232;
}

button.add-to-wishlist.added svg g {
    stroke: var(--red);
    fill: var(--red);
}

button.add-to-wishlist:hover svg g {
    stroke: var(--red) !important;
}