.toastify {
    border-radius: 4px;
    box-shadow: none;
    font-size: var(--theme--font-size--small);
    padding: 0.55em 1em;
    display: flex;
    align-items: center;
    gap: 0.5em;
    color: var(--theme--color--background);
}

.toastify.toast-success {
    background: var(--theme--color--success);
}

.toastify.toast-error {
    background: var(--theme--color--error);
}

.toastify.toast-warning {
    background: var(--theme--color--warning);
}

.toastify__title {
    font-size: var(--theme--font-size--small);
    margin-bottom: 0.25em;
}

@media (max-width: 575.98px) {
    .toastify {
        max-width: calc(100% - var(--theme--gap--normal));
    }
}
