.igw-deposit-toast {
    position: fixed;
    top: 62px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2147483640;
    width: min(calc(100vw - 20px), 420px);
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(18, 18, 18, 0.96);
    color: #fff;
    font-family: Roboto, system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    pointer-events: none;
    animation: igw-deposit-toast-in 0.22s ease;
}

.igw-deposit-toast.is-out {
    animation: igw-deposit-toast-out 0.2s ease forwards;
}

@keyframes igw-deposit-toast-in {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes igw-deposit-toast-out {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-8px);
    }
}
