#toast_container {
    position: fixed;
    width: 100vw;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .57rem;
    z-index: 99999;
    pointer-events: none;
}
.toast {
    max-width: 90vw;
    width: 90vw;
    padding: 3vw 4vw;
    border-radius: 1rem;
    display: grid;
    align-items: center;
    column-gap: 1rem;
    grid-template-columns: 2fr 9fr 1fr;
    background: rgb(39 39 39 / .397);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgb(255 255 255 / .034);
    opacity: 0;
    transform: translateY(2rem);
    transition: all 0.35s ease, transform 0.25s ease;
    pointer-events: auto;
    touch-action: pan-y;
    box-shadow: 0 4px 12px rgb(0 0 0 / .45), 0 0 20px rgb(255 255 255 / .03);
    user-select: none;
    position: relative;
}
.toast_logo > img{ width: 100%; height: auto; display: flex; align-items: center;}
.toast_text{ display: flex; flex-direction: column; row-gap: .3rem;}
.toast_text > h5{margin: 0;line-height: 1; color: #b8b8b8; font-family: "RubikLight"; font-weight: 400; font-size: .75rem; }
.toast_text > h3{margin: 0; line-height: 1; color: #cecece; font-family: "RubikRegular"; font-size: .9rem; font-weight: 400;text-wrap: balance;
  word-break: normal;
  overflow-wrap: anywhere;}
.toast_icon{ justify-self: end; align-items: center;}
.toast span {
    white-space: normal;
    word-break: break-word;
    margin-left: 2vw;
    color: #d9d9d9;
    font-family: "RubikRegular";
    font-size: 1rem;
}
.toast.show { opacity: 1; transform: translateY(0rem); }
.toast.swiping { transition: none !important; }
.toast.remove { opacity: 0; transform: translateY(3.5rem); }
.toast.success { background: linear-gradient(to top,rgba(20, 80, 45, 0.219) 0%, rgba(45, 160, 100, 0) 40%); }
.toast.error { background: linear-gradient(to top,rgba(80, 20, 20, 0.219) 0%, rgba(45, 160, 100, 0) 40%); }
.toast.warn { background: linear-gradient(to top,rgba(79, 80, 20, 0.219) 0%, rgba(45, 160, 100, 0) 40%); }
.toast i { font-size: 1.2rem; transform: translateY(1px); }
.toast.success i { color: rgb(101, 167, 128); }
.toast.error i { color: rgb(173, 84, 84); }
.toast.info i { color: #7a7a7a; }
.toast.warn i { color: rgb(173, 171, 84); }