@keyframes wishlist-empty-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wishlist-empty-animate {
    animation: wishlist-empty-fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wishlist-main-icon svg {
    display: block;
    width: 56px !important;
    height: 56px !important;
    fill: currentColor !important;
}
