w-cart-button {
  color: var(--move-to-wishlist);
  cursor: pointer;
  font-size: 15px;
  display: inline-flex;
  gap: 5px;
  align-items: center;
}
w-cart-button svg{
  fill: var(--move-to-wishlist);
}
w-cart-button svg, w-cart-button img{
  width:var(--move-to-wishlist-icon-size);
  height:auto;
  display: flex;
}
w-cart-button svg * {
    width:  100%;
    height: 100%;
  }
#moveToWishlistIcon{display: none;}
w-cart-button span{line-height: 1;}
.fixed-wishlist-notification {
  position: fixed;
  bottom: 200px;
  right: -100%;
  padding: 10px 20px;
  transition: 0.5s linear;
  z-index:1001;
  color: var(--move-to-wishlist-success);
  background: var(--move-to-wishlist-success-bg);
  border: var(--move-to-wishlist-success-border-width) solid var(--move-to-wishlist-success-border-color);
  border-radius: var(--move-to-wishlist-success-radius);

}
.fixed-wishlist-notification a{
  color: var(--move-to-wishlist-success-anchor);
}
.fixed-wishlist-notification-inner {
  max-width: 200px;
}