
.toastify {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: rgb(0 0 0 / 10%) 0px 4px 15px;
    background: var(--nv-dark-bg);
    color: var(--nv-text-dark-bg);
    position: fixed;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-radius: 32px;
    font-weight: 400;
    text-decoration: none;
    /* max-width: calc(50% - 20px); */
    max-width: calc(100% - 30px);
    z-index: 2147483647;
    text-wrap: balance;
}
.toastify.on {
    opacity: 1;
}
.toast-close {
    background: transparent !important;
    color: inherit;
    border: 0;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    opacity: 0.7;
    padding: 0;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease-in-out;
    -webkit-appearance: none;
    appearance: none;
}
.toast-close:hover {
    opacity: 1;
}
.toastify-right {
    right: 15px;
}
.toastify-left {
    left: 15px;
}
.toastify-top {
    top: -150px;
}
.toastify-bottom {
    bottom: -150px;
}
.toastify-rounded {
    border-radius: 25px;
}
.toastify-avatar {
    width: 1.5em;
    height: 1.5em;
    margin: -7px 5px;
    border-radius: 2px;
}
.toastify-center {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: fit-content;
    max-width: -moz-fit-content;
}
@media only screen and (max-width: 360px) {
    .toastify-left,
    .toastify-right {
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        max-width: fit-content;
    }
}

.success-toast { 
    background: #00bf8f; 
}
.error-toast { 
    background: #eb4d4b; 
}
.warning-toast { 
    background: #f8a400; 
}
.info-toast { 
    background: #3772fe; 
}