.iuz-product-wish.iuz-wishlist-toggle {
    cursor: pointer;
    background: #ffffff;
}

.iuz-product-wish.iuz-wishlist-toggle.is-active {
    background: #A21D50 !important;
    border-color: #A21D50 !important;
    color: #ffffff !important;
}

.iuz-product-wish.iuz-wishlist-toggle.is-loading {
    opacity: .55;
    pointer-events: none;
}

.iuz-wishlist-toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 99999;
    max-width: min(390px, calc(100vw - 30px));
    padding: 14px 17px;
    border-radius: 8px;
    background: #7B0F36;
    color: #ffffff;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .24);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    transition:
        opacity .22s ease,
        transform .22s ease;
}

.iuz-wishlist-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.iuz-wishlist-toast.is-error {
    background: #A21D50;
}

@media (max-width: 767px) {
    .iuz-wishlist-toast {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
        text-align: center;
    }
}
