.notify-container {
    --crm-center-left: 50%;
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    width: 24rem;
    z-index: 20;
    pointer-events: none
}

.notify-container.notify-container--crm {
    left: var(--crm-center-left, 50%);
    transform: translateX(-50%);
    left: 50%;
}

.notify {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: .75rem;
    color: var(--font-main-color);
    border: 1px solid transparent;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .35);
    opacity: 0;
    transform: translateY(.5rem);
    transition: opacity .35s ease, transform .35s ease
}

.notify.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.notify__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto
}

.notify__icon img {
    width: 2.75rem;
    min-width: 2.75rem;
    height: 2.75rem
}

.notify__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: .25rem
}

.notify__desc,
.notify__title {
    font-size: .875rem;
    line-height: 1.125rem
}

.notify__title {
    font-family: var(--font-inter, Inter), sans-serif;
    font-weight: 500
}

.notify__desc {
    color: #9a9aaf
}

.notify__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: 0 0;
    cursor: pointer
}

.notify__close img {
    width: 1.5rem;
    min-width: 1.5rem;
    height: 1.5rem;
    transition: filter .3s ease-out
}

.notify.success {
    background: linear-gradient(156deg, #14112c 0, #115c41 100%) padding-box, linear-gradient(180deg, #45444a 0, #1b1a20 100%) border-box
}

.notify.error {
    background: linear-gradient(156deg, #14112c 0, #5c1113 100%) padding-box, linear-gradient(180deg, #45444a 0, #1b1a20 100%) border-box
}

.notify.info {
    background: linear-gradient(156deg, #14112c 0, #383c3a 100%) padding-box, linear-gradient(180deg, #45444a 0, #1b1a20 100%) border-box
}

@media (any-hover:hover) {
    .notify__close:hover img {
        filter: brightness(2)
    }
}

@media screen and (max-width:1023px) {
    .notify-container {
        max-width: calc(100vw - 3rem)
    }
}