.toastify {
    padding: var(--size-4);
    display: inline-flex;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    position: fixed;
    transition: all .4s cubic-bezier(.215, .61, .355, 1);
    border-radius: var(--radius-md);
    background-color: #ffffff;
    text-decoration: none;
    z-index: 2147483647;
    align-items: center;
    gap: var(--size-4);
    width: calc(100% - 32px) !important;
    border: 1px solid var(--slate-100);
}

.toastify.on {
    opacity: 1
}

.toast-close {
    color: var(--neutral-400);
    cursor: pointer;
    font-size: 1em;
    opacity: .72;
    display: flex;
}

.toast-message-container {
    display: flex;
    align-items: center;
    gap: var(--size-2_5);
}

.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 all and (min-width:512px) {
    .toastify {
        width: 480px !important;
    }

    .toastify-left, .toastify-right {
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        max-width: fit-content
    }

}