.notification {
    position: fixed;
    z-index: 1045;
    display: flex;
    align-items: center;
    max-width: 320px;
    padding: .875rem 1.125rem;
    background: var(--bs-white, #fff);
    border: 1px solid var(--bs-gray-300, #efecf3);
    border-radius: .75rem;
    box-shadow: 0 .5rem 1.5rem rgba(31, 27, 45, .12);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease;
}

.notification_top-left {
    top: 116px;
    left: 16px;
    transform: translateX(-16px) translateY(-8px);
}

.notification_top-left_active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) translateY(0);
}

.notification__img-container {
    flex-shrink: 0;
}

.notification__img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--bs-gray-200, #f5f4f8);
    padding: 4px;
}

.notification__text {
    margin-left: .875rem;
}

.notification__text-inner {
    display: flex;
    align-items: center;
}

.notification__description {
    font-size: .875rem;
    line-height: 1.35;
    color: var(--bs-gray-900, #1f1b2d);
}

@media (max-width: 576px) {
    .notification {
        max-width: calc(100vw - 24px);
        padding: .75rem 1rem;
    }

    .notification_top-left {
        top: 86px;
        left: 12px;
    }
}
