/* TRUCO V9 — mensagens temporárias */
.app-flash-popup,
.app-inline-toast {
    position: fixed !important;
    z-index: 6000;
    top: calc(env(safe-area-inset-top) + 72px);
    left: 50%;
    width: min(430px, calc(100vw - 28px));
    margin: 0 !important;
    padding: 11px 14px !important;
    border-radius: 13px !important;
    text-align: center;
    box-shadow: 0 14px 45px rgba(0, 0, 0, .48);
    transform: translate(-50%, 0);
    transition: opacity .2s ease, transform .2s ease;
}

.app-flash-popup.is-hiding {
    opacity: 0;
    transform: translate(-50%, -10px);
}

.app-inline-toast {
    color: #eafff0;
    background: #123521;
    border: 1px solid rgba(96, 235, 147, .42);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -10px);
}

.app-inline-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}
