.notifications_global_wrap {
    bottom: 12px;
    left: 12px;
    position: fixed;
    display: flex;
    flex-direction: column-reverse;
    overflow: visible;
    width: 320px;
    z-index: 10000;
    pointer-events: none;
}

.notification_ballon_wrap {
    margin: 8px 0 0 0;
    pointer-events: auto;
}

.notification_ballon {
    border-radius: 6px;
    background-color: #363636;
    background: rgba(50, 50, 50, 0.94);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    width: 290px;
    min-height: 78px;
    color: #ffffff !important;
    display: block;
    box-sizing: border-box;
    padding: 8px 10px 10px 10px;
    cursor: pointer;
    font-family: Tahoma, Arial, Verdana, sans-serif;
    animation: notification_ballon_appears 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    user-select: none;
}

.notification_ballon.disappears {
    animation: notification_ballon_disappears 0.15s ease-in forwards;
}

.notification_ballon notification_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 14px;
}

.notification_ballon notification_title .close {
    width: 17px;
    height: 17px;
    line-height: 15px;
    text-align: center;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.45);
    color: #999999;
    font-size: 16px;
    font-family: Arial, sans-serif;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.15s ease;
    display: inline-block;
    box-sizing: border-box;
}

.notification_ballon notification_title .close:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.7);
}

.notification_ballon wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.notification_ballon wrap avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    margin-right: 9px;
}

.notification_ballon wrap avatar img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.notification_ballon wrap content {
    font-size: 11px;
    line-height: 14px;
    color: #ffffff;
    word-break: break-word;
}

.notification_ballon wrap content a,
.notification_ballon wrap content b,
.notification_ballon wrap content strong {
    color: #79a2d8;
    text-decoration: none;
    font-weight: bold;
}

.notification_ballon wrap content a:hover {
    text-decoration: underline;
}

@keyframes notification_ballon_appears {
    0% {
        opacity: 0;
        transform: translateY(22px) scale(0.96);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes notification_ballon_disappears {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-8px) scale(0.96);
    }
}