.flash-toast-wrap {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 999999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    pointer-events: none !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
}

.flash-toast {
    box-sizing: border-box !important;
    min-width: 280px !important;
    max-width: min(420px, calc(100vw - 32px)) !important;
    width: auto !important;
    margin: 0 !important;
    padding: 14px 16px !important;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 14px !important;
    background: #ef4444 !important;
    color: #fff !important;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.22) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    text-align: left !important;
    opacity: 0;
    transform: translateX(120%);
    transition: opacity .35s ease, transform .35s ease;
    pointer-events: auto;
}

.flash-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.flash-toast.hide {
    opacity: 0;
    transform: translateX(120%);
}

@media (max-width: 520px) {
    .flash-toast-wrap {
        left: 16px !important;
        right: 16px !important;
        top: 16px !important;
        width: auto !important;
    }

    .flash-toast {
        min-width: 0 !important;
        width: 100% !important;
        max-width: none !important;
    }
}