.shop-chat-notifications {
    position: fixed;
    z-index: 20;
    right: 24px;
    bottom: 24px;
    width: min(360px, calc(100vw - 32px));
}

.shop-chat-notification__card {
    position: relative;
    padding: 14px 42px 14px 14px;
    border: 1px solid #b9d5f8;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 35px rgb(25 63 108 / 22%);
}

.shop-chat-notification__link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #172235;
    text-decoration: none;
}

.shop-chat-notification__link strong {
    display: block;
}

.shop-chat-notification__link > span:last-child {
    min-width: 0;
}

.shop-chat-notification__link > span:last-child > span {
    display: block;
    margin-top: 4px;
    overflow: hidden;
    color: #5d6f88;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-chat-notification__badge {
    display: grid;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: #087df5;
    color: #fff;
    font-weight: 700;
}

.shop-chat-notification__close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: 0;
    background: transparent;
    color: #637189;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

@media (max-width: 600px) {
    .shop-chat-notifications {
        right: 16px;
        bottom: 16px;
        width: calc(100vw - 32px);
    }
}
