@bcc-code/vue-bcc-chat-ui 3.10.1 → 3.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
  1. Add package to project
9
9
  ```bash
10
10
  # npm
11
- npm -i @bcc-code/vue-bcc-chat-ui
11
+ npm install @bcc-code/vue-bcc-chat-ui
12
12
 
13
13
  ```
14
14
  2. Register component in the Vue App
@@ -86,4 +86,4 @@ The component can by styled with the folowing styles
86
86
 
87
87
  }
88
88
  }
89
- ```
89
+ ```
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -1,5 +1,4 @@
1
1
  import { ExtensionsDataSource } from '@cometchat/chat-uikit-vue';
2
-
3
2
  export declare class BccUiExtension extends ExtensionsDataSource {
4
3
  constructor();
5
4
  enable(): void;
@@ -1,4 +1,3 @@
1
1
  import { CometChatMessages } from '@cometchat/chat-uikit-vue';
2
-
3
2
  declare const patchedCometChatMessages: typeof CometChatMessages;
4
3
  export { patchedCometChatMessages as CometChatMessages };
@@ -1,11 +1,11 @@
1
1
  import { Group, BaseMessage } from '@cometchat/chat-sdk-javascript';
2
2
  import { Ref } from 'vue';
3
3
  import { UserChatInfo } from './types';
4
-
5
4
  export declare function getGroup(groupUid: string): Promise<Group | null>;
6
5
  export declare function clearGroupChatCount(groupUid: string): Promise<void>;
7
6
  export declare function getGroupOnlineCount(groupUid: string): Promise<number>;
8
7
  export declare const userChats: Ref<UserChatInfo[]>;
9
8
  export declare function getUserChats(): Promise<UserChatInfo[]>;
9
+ export declare function getSenderDisplayName(message: BaseMessage | undefined, group?: Ref<Group | undefined>): any;
10
10
  export declare function getMessageTextPreview(message?: BaseMessage, showEmoji?: boolean, showAttachmentName?: boolean): string;
11
11
  export declare function proxyImage(imageUrl: string): string;
@@ -1,4 +1,3 @@
1
1
  import { ChatEnvironmentConfig, Environment } from './types';
2
-
3
2
  export declare function getCurrentEnvironment(): ChatEnvironmentConfig;
4
3
  export declare function setCurrentEnvironment(env: Environment): void;
@@ -1,5 +1,4 @@
1
1
  import { ChatInstallOptions } from './types';
2
-
3
2
  declare function install(app: any, options: ChatInstallOptions): Promise<void>;
4
3
  declare const _default: {
5
4
  setLanguage: (lang: import('./types').Language) => void;
@@ -9,80 +8,80 @@ declare const _default: {
9
8
  palette: {
10
9
  mode: string;
11
10
  background: {
12
- light?: string;
13
- dark?: string;
11
+ light?: string | undefined;
12
+ dark?: string | undefined;
14
13
  };
15
14
  primary: {
16
- light?: string;
17
- dark?: string;
15
+ light?: string | undefined;
16
+ dark?: string | undefined;
18
17
  };
19
18
  primary150: {
20
- light?: string;
21
- dark?: string;
19
+ light?: string | undefined;
20
+ dark?: string | undefined;
22
21
  };
23
22
  primary500: {
24
- light?: string;
25
- dark?: string;
23
+ light?: string | undefined;
24
+ dark?: string | undefined;
26
25
  };
27
26
  error: {
28
- light?: string;
29
- dark?: string;
27
+ light?: string | undefined;
28
+ dark?: string | undefined;
30
29
  };
31
30
  accent: {
32
- light?: string;
33
- dark?: string;
31
+ light?: string | undefined;
32
+ dark?: string | undefined;
34
33
  };
35
34
  accent50: {
36
- light?: string;
37
- dark?: string;
35
+ light?: string | undefined;
36
+ dark?: string | undefined;
38
37
  };
39
38
  accent100: {
40
- light?: string;
41
- dark?: string;
39
+ light?: string | undefined;
40
+ dark?: string | undefined;
42
41
  };
43
42
  accent200: {
44
- light?: string;
45
- dark?: string;
43
+ light?: string | undefined;
44
+ dark?: string | undefined;
46
45
  };
47
46
  accent300: {
48
- light?: string;
49
- dark?: string;
47
+ light?: string | undefined;
48
+ dark?: string | undefined;
50
49
  };
51
50
  accent400: {
52
- light?: string;
53
- dark?: string;
51
+ light?: string | undefined;
52
+ dark?: string | undefined;
54
53
  };
55
54
  accent500: {
56
- light?: string;
57
- dark?: string;
55
+ light?: string | undefined;
56
+ dark?: string | undefined;
58
57
  };
59
58
  accent600: {
60
- light?: string;
61
- dark?: string;
59
+ light?: string | undefined;
60
+ dark?: string | undefined;
62
61
  };
63
62
  accent700: {
64
- light?: string;
65
- dark?: string;
63
+ light?: string | undefined;
64
+ dark?: string | undefined;
66
65
  };
67
66
  accent800: {
68
- light?: string;
69
- dark?: string;
67
+ light?: string | undefined;
68
+ dark?: string | undefined;
70
69
  };
71
70
  accent900: {
72
- light?: string;
73
- dark?: string;
71
+ light?: string | undefined;
72
+ dark?: string | undefined;
74
73
  };
75
74
  success: {
76
- light?: string;
77
- dark?: string;
75
+ light?: string | undefined;
76
+ dark?: string | undefined;
78
77
  };
79
78
  secondary: {
80
- light?: string;
81
- dark?: string;
79
+ light?: string | undefined;
80
+ dark?: string | undefined;
82
81
  };
83
82
  tertiary: {
84
- light?: string;
85
- dark?: string;
83
+ light?: string | undefined;
84
+ dark?: string | undefined;
86
85
  };
87
86
  getAccent: (mode?: string) => string | undefined;
88
87
  getAccent50: (mode?: string) => string | undefined;
@@ -212,6 +211,7 @@ declare const _default: {
212
211
  loggedIn: import('vue').Ref<boolean>;
213
212
  login: (accessToken?: string | null | undefined) => Promise<boolean | undefined>;
214
213
  logout: () => Promise<boolean>;
214
+ loginWithChatToken: (chatToken: string) => Promise<boolean>;
215
215
  getCurrentEnvironment(): import('./types').ChatEnvironmentConfig;
216
216
  setCurrentEnvironment(env: import('./types').Environment): void;
217
217
  setAccessToken: (token: string) => Promise<void>;
@@ -224,6 +224,7 @@ declare const _default: {
224
224
  clearGroupChatCount(groupUid: string): Promise<void>;
225
225
  getGroupOnlineCount(groupUid: string): Promise<number>;
226
226
  getUserChats(): Promise<import('./types').UserChatInfo[]>;
227
+ getSenderDisplayName(message: import('@cometchat/chat-sdk-javascript').BaseMessage | undefined, group?: import('vue').Ref<import('@cometchat/chat-sdk-javascript').Group | undefined>): any;
227
228
  getMessageTextPreview(message?: import('@cometchat/chat-sdk-javascript').BaseMessage, showEmoji?: boolean, showAttachmentName?: boolean): string;
228
229
  proxyImage(imageUrl: string): string;
229
230
  userChats: import('vue').Ref<import('./types').UserChatInfo[]>;
@@ -1,9 +1,11 @@
1
1
  export declare const loggedIn: import('vue').Ref<boolean>;
2
2
  export declare const login: (accessToken?: string | null | undefined) => Promise<boolean | undefined>;
3
3
  export declare const logout: () => Promise<boolean>;
4
+ export declare const loginWithChatToken: (chatToken: string) => Promise<boolean>;
4
5
  declare const _default: {
5
6
  loggedIn: import('vue').Ref<boolean>;
6
7
  login: (accessToken?: string | null | undefined) => Promise<boolean | undefined>;
7
8
  logout: () => Promise<boolean>;
9
+ loginWithChatToken: (chatToken: string) => Promise<boolean>;
8
10
  };
9
11
  export default _default;
@@ -1,6 +1,5 @@
1
1
  import { ExtensionsDataSource, OptionsStyle } from '@cometchat/chat-uikit-vue';
2
2
  import { ReplyPreviewStyle } from './replyStyle';
3
-
4
3
  export declare const bccReplyOptionId = "bccreply";
5
4
  declare class InlineReplyExtensionConfiguration {
6
5
  private style;
@@ -1,6 +1,5 @@
1
1
  import { CometChatTheme } from '@cometchat/uikit-resources';
2
2
  import { BaseStyle } from '@cometchat/uikit-shared';
3
-
4
3
  /**
5
4
  * ReplyPreviewStyle
6
5
  *
@@ -1,84 +1,83 @@
1
1
  import { CometChatFont } from '@cometchat/uikit-resources';
2
2
  import { ThemeMode } from './types';
3
-
4
3
  export declare const theme: import('vue').Ref<{
5
4
  palette: {
6
5
  mode: string;
7
6
  background: {
8
- light?: string;
9
- dark?: string;
7
+ light?: string | undefined;
8
+ dark?: string | undefined;
10
9
  };
11
10
  primary: {
12
- light?: string;
13
- dark?: string;
11
+ light?: string | undefined;
12
+ dark?: string | undefined;
14
13
  };
15
14
  primary150: {
16
- light?: string;
17
- dark?: string;
15
+ light?: string | undefined;
16
+ dark?: string | undefined;
18
17
  };
19
18
  primary500: {
20
- light?: string;
21
- dark?: string;
19
+ light?: string | undefined;
20
+ dark?: string | undefined;
22
21
  };
23
22
  error: {
24
- light?: string;
25
- dark?: string;
23
+ light?: string | undefined;
24
+ dark?: string | undefined;
26
25
  };
27
26
  accent: {
28
- light?: string;
29
- dark?: string;
27
+ light?: string | undefined;
28
+ dark?: string | undefined;
30
29
  };
31
30
  accent50: {
32
- light?: string;
33
- dark?: string;
31
+ light?: string | undefined;
32
+ dark?: string | undefined;
34
33
  };
35
34
  accent100: {
36
- light?: string;
37
- dark?: string;
35
+ light?: string | undefined;
36
+ dark?: string | undefined;
38
37
  };
39
38
  accent200: {
40
- light?: string;
41
- dark?: string;
39
+ light?: string | undefined;
40
+ dark?: string | undefined;
42
41
  };
43
42
  accent300: {
44
- light?: string;
45
- dark?: string;
43
+ light?: string | undefined;
44
+ dark?: string | undefined;
46
45
  };
47
46
  accent400: {
48
- light?: string;
49
- dark?: string;
47
+ light?: string | undefined;
48
+ dark?: string | undefined;
50
49
  };
51
50
  accent500: {
52
- light?: string;
53
- dark?: string;
51
+ light?: string | undefined;
52
+ dark?: string | undefined;
54
53
  };
55
54
  accent600: {
56
- light?: string;
57
- dark?: string;
55
+ light?: string | undefined;
56
+ dark?: string | undefined;
58
57
  };
59
58
  accent700: {
60
- light?: string;
61
- dark?: string;
59
+ light?: string | undefined;
60
+ dark?: string | undefined;
62
61
  };
63
62
  accent800: {
64
- light?: string;
65
- dark?: string;
63
+ light?: string | undefined;
64
+ dark?: string | undefined;
66
65
  };
67
66
  accent900: {
68
- light?: string;
69
- dark?: string;
67
+ light?: string | undefined;
68
+ dark?: string | undefined;
70
69
  };
71
70
  success: {
72
- light?: string;
73
- dark?: string;
71
+ light?: string | undefined;
72
+ dark?: string | undefined;
74
73
  };
75
74
  secondary: {
76
- light?: string;
77
- dark?: string;
75
+ light?: string | undefined;
76
+ dark?: string | undefined;
78
77
  };
79
78
  tertiary: {
80
- light?: string;
81
- dark?: string;
79
+ light?: string | undefined;
80
+ dark?: string | undefined;
82
81
  };
83
82
  getAccent: (mode?: string) => string | undefined;
84
83
  getAccent50: (mode?: string) => string | undefined;
@@ -1,4 +1,3 @@
1
1
  import { Language } from './types';
2
-
3
2
  export declare function initializeLocalization(setCurrentLanguage?: string): void;
4
3
  export declare const setLanguage: (lang: Language) => void;
@@ -1,6 +1,5 @@
1
1
  import { BaseMessage } from '@cometchat/chat-sdk-javascript';
2
2
  import { Ref } from 'vue';
3
-
4
3
  export interface ChatInstallOptions {
5
4
  environment: Environment;
6
5
  language?: Language;
@@ -1,8 +1,8 @@
1
+ import { Group } from '@cometchat/chat-sdk-javascript';
1
2
  import { Ref } from 'vue';
2
3
  import { MessageListConfiguration, MessageComposerConfiguration, ThreadedMessagesConfiguration } from '@cometchat/uikit-shared';
3
4
  import { ChatInstance } from './types';
4
-
5
5
  export declare function setupUiKit(): Promise<void>;
6
6
  export declare function getMessageComposerConfiguration(): Ref<MessageComposerConfiguration>;
7
- export declare function getMessageListConfiguration(chatInstance?: Ref<ChatInstance>): import('vue').ComputedRef<MessageListConfiguration>;
8
- export declare function getThreadedMessagesConfiguration(): ThreadedMessagesConfiguration;
7
+ export declare function getMessageListConfiguration(chatInstance?: Ref<ChatInstance>, group?: Ref<Group | undefined>): import('vue').ComputedRef<MessageListConfiguration>;
8
+ export declare function getThreadedMessagesConfiguration(chatGroup?: Ref<Group | undefined>): ThreadedMessagesConfiguration;
@@ -1,17 +1,16 @@
1
1
  import { User } from '@cometchat/chat-sdk-javascript';
2
-
3
- declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
+ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToOption<{
4
3
  text: string;
5
4
  metadata: Record<string, any>;
6
5
  mentionedUsers: User[];
7
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
6
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToOption<{
8
7
  text: string;
9
8
  metadata: Record<string, any>;
10
9
  mentionedUsers: User[];
11
10
  }>>>, {}, {}>;
12
11
  export default _default;
13
12
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
14
- type __VLS_TypePropsToRuntimeProps<T> = {
13
+ type __VLS_TypePropsToOption<T> = {
15
14
  [K in keyof T]-?: {} extends Pick<T, K> ? {
16
15
  type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
17
16
  } : {
@@ -3,10 +3,18 @@ declare const _default: import('vue').DefineComponent<{
3
3
  type: StringConstructor;
4
4
  required: true;
5
5
  };
6
+ senderDisplayName: {
7
+ type: StringConstructor;
8
+ required: false;
9
+ };
6
10
  }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
7
11
  chatUid: {
8
12
  type: StringConstructor;
9
13
  required: true;
10
14
  };
15
+ senderDisplayName: {
16
+ type: StringConstructor;
17
+ required: false;
18
+ };
11
19
  }>>, {}, {}>;
12
20
  export default _default;
@@ -1,5 +1,4 @@
1
1
  import { MediaMessage } from '@cometchat/chat-sdk-javascript';
2
-
3
2
  declare const _default: import('vue').DefineComponent<{
4
3
  src: {
5
4
  type: StringConstructor;
@@ -1,5 +1,4 @@
1
1
  import { BaseMessage } from '@cometchat/chat-sdk-javascript';
2
-
3
2
  declare const _default: import('vue').DefineComponent<{
4
3
  replyToMessage: {
5
4
  type: typeof BaseMessage;
@@ -1,5 +1,4 @@
1
1
  import { BaseMessage } from '@cometchat/chat-sdk-javascript';
2
-
3
2
  declare const _default: import('vue').DefineComponent<{
4
3
  replyToMessage: {
5
4
  type: typeof BaseMessage;
package/dist/index.d.ts CHANGED
@@ -1,5 +1,4 @@
1
1
  import { default as chat } from './chat';
2
-
3
2
  export * from './chat/types';
4
3
  export { default as BccChatMessageList } from './components/BccChatMessageList.vue';
5
4
  export default chat;
@@ -1,3 +1,2 @@
1
1
  import { OfflineStore } from './types.js';
2
-
3
2
  export declare function cometChatAPIInterceptor(_fetch: typeof fetch, offlineStore: OfflineStore): typeof fetch;
@@ -1,3 +1,2 @@
1
1
  import { OfflineStore } from './types.js';
2
-
3
2
  export declare function cometChatWSOnMessageInterceptor(_onmessage: typeof WebSocket.prototype.onmessage, offlineStore: OfflineStore): typeof WebSocket.prototype.onmessage;
@@ -1,5 +1,4 @@
1
1
  import { OnlineStatus } from './types';
2
-
3
2
  export declare const onlineMode: import('vue').WritableComputedRef<OnlineStatus>;
4
3
  export declare const onlineStatus: import('vue').ComputedRef<OnlineStatus>;
5
4
  export declare function setOnlineStatus(status: OnlineStatus): void;
@@ -1,5 +1,4 @@
1
1
  import { Conversation, ConversationPaginationMeta, Group, Message, MessagePaginationMeta, OfflineStore, PaginatedResponse } from './types';
2
-
3
2
  export declare class OfflineStoreLocalStorage implements OfflineStore {
4
3
  #private;
5
4
  storePrefix: string;
package/dist/style.css CHANGED
@@ -1 +1 @@
1
- .cc-callscreen__view[data-v-f1d9d50c],.cc-outgoingcall__wrapper[data-v-f7ff9c81],.cc-call-buttons__wrapper[data-v-cedd26bb]{height:100%;width:100%}.cc-callbuttons-buttons[data-v-cedd26bb]{display:flex;gap:8px}.cc-incomingcall__wrapper[data-v-fa20448e]{position:absolute;left:8px;top:8px;height:fit-content;width:fit-content;min-height:104px;min-width:230px;z-index:100;display:flex;flex-direction:column;justify-content:flex-start;gap:8px;align-items:flex-start}.cc-incomingcall-buttons[data-v-fa20448e]{display:flex;gap:8px}.cc-incomingcall__tailview[data-v-fa20448e]{position:relative}.cc-incomingcall__subtitleview[data-v-fa20448e]{display:flex;align-items:center;justify-content:flex-start;gap:6px}.cc-incomingcall__listitem[data-v-fa20448e]{width:100%;margin-left:-4px}*[data-v-2abc65da]{box-sizing:border-box}.cc-list__section[data-v-2abc65da]{margin-left:8px}.cc-list__list[data-v-2abc65da]::-webkit-scrollbar{background:transparent;width:8px}.cc-list__list[data-v-2abc65da]::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}.cc-users[data-v-e629a2c0]{overflow:hidden}.cc-users__menus[data-v-e629a2c0]{position:absolute;top:12px;right:12px;cursor:pointer}.cc-add-members__back-button[data-v-0d5d72e4]{position:absolute;left:8px;padding:12px 8px 8px}.cc-add-members__close-button[data-v-0d5d72e4]{position:absolute;right:8px;padding:12px 8px 8px}.cc-users[data-v-0d5d72e4]{height:90%}.cc-add-members__buttons[data-v-0d5d72e4]{height:10%;width:100%;display:flex;align-items:center;justify-content:center}.cc-add-members__buttons-add[data-v-0d5d72e4]{height:42px;width:100%}.cc-banned-members__back[data-v-830533bf]{position:absolute;left:8px;padding:12px 8px 8px}.cc-banned-members__close-button[data-v-830533bf]{position:absolute;right:8px;padding:12px 8px 8px}.cc-banned-members__tail-view[data-v-830533bf]{position:relative}.cc-banned-members__menus[data-v-830533bf]{position:absolute;right:12px;cursor:pointer}.cc-banned-members__unban[data-v-830533bf]{display:flex;align-items:center;justify-content:flex-end}.tail__view[data-v-be3fa1af]{display:flex;flex-direction:column;justify-content:flex-start;align-items:center}.cc-conversations__menus[data-v-be3fa1af]{position:absolute;right:12px;cursor:pointer}.cc-conversations__default-subtitle-view[data-v-be3fa1af]{display:flex;align-items:center;width:90%;flex-direction:column;justify-content:flex-start}.cc-conversations__subtitle[data-v-be3fa1af]{display:flex;justify-content:flex-start;width:100%;align-items:center;min-height:22px}.cc-conversations__thread-view[data-v-be3fa1af]{height:12px;display:flex;justify-content:flex-start;width:100%;align-items:center}.cc-conversations__subtitle-text[data-v-be3fa1af]{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.cc-conversations__badge[data-v-be3fa1af]{display:flex}.hidden[data-v-6971671a]{display:none!important}*[data-v-6971671a]{box-sizing:border-box}.cc-messagebubble-wrapper[data-v-6971671a]{position:relative;width:100%}.cc-messagebubble-wrapper__container[data-v-6971671a]{padding-right:8px;border-radius:inherit;display:flex;height:fit-content;width:fit-content;max-width:60%}.cc-messagebubble-wrapper__messagebubble[data-v-6971671a]{flex:1 1 0;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-end;min-width:0;padding:8px 2px;border-radius:inherit}.cc-messagebubble-wrapper__avatar[data-v-6971671a]{position:relative;border-radius:inherit;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-end;padding:8px 4px;margin-top:5px}.cc-messagebubble-title[data-v-6971671a]:empty:before{display:none}.cc-messagebubble-title[data-v-6971671a]:empty:after{display:block;width:100%;height:20px;padding:0 8px}.cc-messagebubble-wrapper__content[data-v-6971671a]{display:flex;flex-direction:column;border-radius:8px}.cc__messagelist__threadreplies[data-v-6971671a]{min-width:fit-content}.cc-messagebubble-wrapper__messageoptions[data-v-6971671a]{position:absolute;top:-4px;display:flex;align-items:center;justify-content:flex-end;z-index:1}.cc-message-information__close-button[data-v-e89a8088]{position:absolute;right:15px}.cc-message-information__body[data-v-e89a8088]{padding:20px 3%;box-sizing:border-box}.cc-message-information__default-subtitle-view[data-v-e89a8088]{display:flex;align-items:self-end;width:90%;flex-direction:column;justify-content:flex-start}.cc-message_information__subtitle[data-v-e89a8088]{display:flex;justify-content:space-between;width:100%;align-items:center;height:20px}.cc-conversations__date[data-v-e89a8088]{display:flex;justify-content:flex-start;align-items:center;height:20px}.cc_message-information__body_message-bubble[data-v-e89a8088]{display:flex}.cc-message_information__receipt-container[data-v-e89a8088]{display:flex;align-items:center}.cc_message-information_empty-state-view[data-v-e89a8088]{display:flex;align-items:flex-start;justify-content:center;margin-top:20px}.cc-messagelist[data-v-0914adeb]{height:100%;width:100%;overflow-y:auto}.cc-messagelist__wrapper[data-v-0914adeb]{height:100%;width:100%;padding:8px;overflow-y:hidden}.cc-messagelist__bubblefooter[data-v-0914adeb]{display:flex;justify-content:center;align-items:center}.cc-messagelist__date__container[data-v-0914adeb]{text-align:center;margin:8px}.cc-messagelist__date[data-v-0914adeb]{border-radius:10px}.cc-messagelist__messageindicator[data-v-0914adeb]{position:absolute;bottom:20%;left:50%;transform:translate(-50%);height:25px;width:150px;display:flex;justify-content:center;align-items:center;z-index:10}.cc-messagelist__footerview[data-v-0914adeb]{z-index:10;position:relative;bottom:5%;display:flex;align-items:center;justify-content:center;width:100%}.cc-messagelist__decoratormessage[data-v-0914adeb]{margin:0;line-height:30px;word-wrap:break-word;padding:0 8px;width:100%;overflow:hidden;display:flex;align-items:center;justify-content:center;height:100%}.cc-messagelist[data-v-0914adeb]::-webkit-scrollbar{background:transparent;width:8px}.cc-messagelist[data-v-0914adeb]::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}.cc-messagelist__message-information[data-v-0914adeb]{height:620px;width:360px}.cc-group-members[data-v-ec8effff]{overflow:hidden}.cc-group-members__back[data-v-ec8effff]{position:absolute;left:8px;padding:12px 8px 8px}.cc-group-members__wrapper[data-v-ec8effff]{height:100%;padding:8px;width:100%}.cc-group-members__close[data-v-ec8effff]{position:absolute;right:8px;padding:12px 8px 8px}.cc-group-members__tail-view[data-v-ec8effff]{position:relative;display:flex;gap:8px;justify-content:flex-end;align-items:center}.cc-group-members__menus[data-v-ec8effff]{position:absolute;right:12px;cursor:pointer}.cc-user-member-wrapper_component[data-v-14014a3f]{max-height:196px;min-height:28px;overflow:hidden;width:100%;box-sizing:border-box;min-height:45px;margin-top:10px}.cc-messagecomposer-wrapper__sendbutton[data-v-218c85ce],.cc-messagecomposer-wrapper__livereaction[data-v-218c85ce]{margin:0 5px}.cc-messagecomposer-wrapper[data-v-218c85ce]{height:100%;width:100%;position:relative;text-align:left;padding:16px 14px;box-sizing:border-box}.cc-messagecomposer-wrapper__headerview[data-v-218c85ce]{height:fit-content;width:100%;bottom:120%;position:relative;z-index:2;padding:0 0 1px}.cc-messagecomposer__mentions[data-v-218c85ce]{height:196px;max-height:196px;min-height:28px;overflow:hidden;position:absolute;width:100%;box-sizing:border-box;left:50%;transform:translate(-50%,-100%);display:flex!important;flex-direction:column!important;justify-content:flex-end!important;z-index:2;padding:3px 16px 1px 14px}.cc-messagecomposer__mentions[data-v-218c85ce]::-webkit-scrollbar{display:none}.cc-messagecomposer-mediainput[data-v-218c85ce]{display:none}.cc-messagecomposer-wrapper__auxilary[data-v-218c85ce]{display:flex;gap:8px}.cc-messagecomposer__mentions-limit-exceeded[data-v-218c85ce]{margin-top:20px;left:2px;position:relative;padding-left:13px;background-color:#fff}*[data-v-e85030b1]{box-sizing:border-box;margin:0;padding:0}.cc-threadedmessages-wrapper[data-v-e85030b1]{display:flex;flex-direction:column;height:90%;overflow-y:hidden;scrollbar-width:none}.cc-threadedmessages-wrapper__header[data-v-e85030b1]{width:100%;display:flex;padding:16px;align-items:flex-start}.cc-threadedmessages-wrapper__close[data-v-e85030b1]{display:flex;align-items:center}.cc-threadedmessages-wrapper__title[data-v-e85030b1]{display:flex;align-items:center;justify-content:center;width:100%}.cc-threadedmessages-wrapper__bubbleview[data-v-e85030b1]{width:100%;height:fit-content;padding:8px 16px;box-sizing:border-box;max-height:20em;overflow:auto;min-height:100px}.cc-threadedmessages-wrapper__header[data-v-e85030b1]{flex:0 0 auto}.cc-threadedmessages-wrapper__list[data-v-e85030b1]{height:100%;overflow-y:auto;width:100%}.cc-threadedmessages-wrapper__composer[data-v-e85030b1]{position:absolute;flex:0 0 auto;min-height:80px;z-index:1;width:100%;bottom:5px}.cc-threaded_message_main_wrapper[data-v-e85030b1]{width:100%;height:calc(100% - 156px);display:flex;flex-direction:column}.cc__threadedmessages__actionview[data-v-e85030b1]{height:36px;padding:8px 16px;box-sizing:border-box;border:1px solid rgba(20,20,20,.08);border-left:none}.cc-messageheader__wrapper[data-v-78594622]{display:flex;align-items:center;justify-content:space-between;flex-direction:row;box-sizing:border-box}.cc-messageheader__backbutton[data-v-78594622]{margin-right:8px}.cc-messageheader[data-v-78594622]{display:flex;align-items:center;justify-content:flex-start;height:fit-content;width:100%}.cc-messageheader__listitem[data-v-78594622]{height:100%;width:100%;align-items:center;justify-content:flex-start}.cc-messageheader__menu[data-v-78594622]{width:fit-content;display:flex;align-items:center;justify-content:flex-end;padding:12px}.cc-transfer-ownership__members[data-v-dc105c9f]{width:100%;height:85%}.cc-transfer-ownership-buttons[data-v-dc105c9f]{width:100%;height:15%;display:flex;flex-direction:column;justify-content:flex-end;align-content:center;gap:10px;padding:12px 16px 28px;box-sizing:border-box}*[data-v-da3dc518]{box-sizing:border-box;margin:0;padding:0}.cc-details__wrapper[data-v-da3dc518]{padding:8px;border-radius:5px;height:100%;position:relative}.cc-details__profile[data-v-da3dc518]{margin-bottom:50px;height:8%}.cc-details__section-list[data-v-da3dc518]{height:84%;width:100%;overflow-y:auto;overflow-x:hidden}.cc-details__header[data-v-da3dc518]{display:flex;justify-content:center;align-items:center;margin-bottom:30px}.cc-details__close-button[data-v-da3dc518]{position:absolute;right:20px}.cc-details__section[data-v-da3dc518]{margin-bottom:32px}.cc-details__section-separator[data-v-da3dc518]{margin-bottom:16px;padding-left:6px;height:5%}.cc-details__options-wrapper[data-v-da3dc518]{list-style:none;padding:0;display:flex;flex-direction:column;gap:8px}.cc-details__option[data-v-da3dc518]{display:flex;flex-direction:column;justify-content:space-evenly;min-height:50px}.cc-details__option-title[data-v-da3dc518]{padding-bottom:12px;display:flex;align-items:center;justify-content:space-between}.cc-details__view[data-v-da3dc518]{position:absolute;top:0;left:0;height:100%;width:100%;max-height:100%;overflow-y:auto;overflow-x:hidden;max-width:100%;z-index:1}.cc-details__section-list[data-v-da3dc518]::-webkit-scrollbar{background:transparent;width:8px}.cc-details__section-list[data-v-da3dc518]::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}*[data-v-dd6600b8]{box-sizing:border-box;margin:0;padding:0}.cc-messages-wrapper[data-v-dd6600b8]{display:flex;position:relative;height:100%;width:100%}.cc-messages-wrapper__messages[data-v-dd6600b8]{display:flex;flex-direction:column;position:relative;width:100%;box-sizing:border-box;justify-content:space-between}.cc-messages-wrapper__threadedmessages[data-v-dd6600b8],.cc-messages-wrapper__details[data-v-dd6600b8]{position:absolute;top:5;left:0;height:100%;width:100%;max-height:100%;overflow-y:auto;overflow-x:hidden;max-width:100%;z-index:1}.cc-messages-wrapper__header[data-v-dd6600b8]{width:100%}.cc-messages-wrapper__messages-list[data-v-dd6600b8]{display:flex;flex-direction:column;overflow:hidden;height:calc(100% - 160px);width:100%;height:100%}CometChatThreadedMessages[data-v-dd6600b8]{height:100%;display:flex}.cc-messages-wrapper__composer[data-v-dd6600b8]{width:100%;display:flex;flex-direction:column;justify-content:flex-end}.cc-groups__menus[data-v-f13b0c74]{position:absolute;right:12px;cursor:pointer;padding-right:12px}.cc-groups__subtitle-view[data-v-f13b0c74]{padding:0 0 5px}.cc-tabs-wrapper[data-v-6172e2d3]{height:100%;width:100%;display:flex;flex-direction:column;justify-content:flex-end}.cc-tabs-wrapper_inner-div[data-v-6172e2d3]{height:100%;width:100%}.cc-tabs-wrapper-fixed_inner-div[data-v-6172e2d3]{margin-top:10px;height:80%;overflow:hidden}.cc-tabs-wrapper-fixed[data-v-6172e2d3]{height:100%;width:100%;display:flex;justify-content:center}.cc-tabs-wrapper-fixed-inner[data-v-6172e2d3]{height:100%;width:70%}.cc-tabs-fixed[data-v-6172e2d3]{top:0;left:0;width:100%}.cc-contacts__wrapper[data-v-6c9bdd1b]{display:flex;flex-direction:column;height:100%;width:100%;align-items:flex-end;z-index:2}.cc-contacts__header[data-v-6c9bdd1b]{display:flex;justify-content:center;align-items:center;height:50px;width:100%;box-sizing:border-box;padding:10px}.cc-contacts__close-button[data-v-6c9bdd1b]{position:absolute;right:20px}.cc-contacts__submit-button[data-v-6c9bdd1b]{display:flex;width:100%;justify-content:center;box-sizing:border-box;margin:10px}.cc-withmessages__wrapper[data-v-de8151a3]{display:flex;height:100%;width:100%;box-sizing:border-box}.cc-withmessages__sidebar[data-v-de8151a3]{width:280px;height:100%;position:relative;display:flex}.cc-withmessages__main[data-v-de8151a3]{width:calc(100% - 280px);height:100%;margin-left:2px}.mobile[data-v-de8151a3]{width:100%!important;height:100%;position:absolute}.cc-decorator__message-empty[data-v-de8151a3]{display:flex;justify-content:center;align-items:center;width:calc(100% - 280px)}.cc-withmessages__menus[data-v-de8151a3]{display:flex;justify-content:flex-end;position:absolute;top:1%;right:2%}.cc-withmessages-wrapper[data-v-d60abe0e]{display:flex;height:100%;width:100%;box-sizing:border-box}.cc-withmessages__sidebar[data-v-d60abe0e]{width:280px;height:100%;position:relative}.cc-withmessages__main[data-v-d60abe0e]{width:calc(100% - 280px);height:100%;margin-left:2px}.mobile[data-v-d60abe0e]{width:100%!important;height:100%;position:absolute}.cc__decorator__message--empty[data-v-d60abe0e]{display:flex;justify-content:center;align-items:center;width:calc(100% - 280px)}.cc-withmessages__joingroup[data-v-d60abe0e]{width:calc(100% - 280px);height:100vh}.cc-decorator-message-empty[data-v-d60abe0e]{display:flex;justify-content:center;align-items:center;width:calc(100% - 280px)}.cc-withmessages-wrapper[data-v-6b6dec29]{display:flex;height:100%;width:100%;box-sizing:border-box}.cc-withmessages__sidebar[data-v-6b6dec29]{width:280px;height:100%;position:relative}.cc-withmessages__main[data-v-6b6dec29]{width:calc(100% - 280px);height:100%;margin-left:2px}.mobile[data-v-6b6dec29]{width:100%!important;height:100%;position:absolute}.cc-decorator-message-empty[data-v-6b6dec29]{display:flex;justify-content:center;align-items:center;width:calc(100% - 280px)}.cc__imageviewer__full-screen-viewer[data-v-8dfc68cb]{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#000000e6;z-index:10000}.cc__imageviewer__zoom-container[data-v-8dfc68cb]{display:flex;align-items:center;justify-content:center;width:100%;height:100%}.cc__imageviewer__loading[data-v-8dfc68cb]{position:absolute;z-index:-1}img[data-v-8dfc68cb]{max-width:100%;max-height:100%}.cc__imageviewer__button[data-v-8dfc68cb]{position:fixed;right:0;cursor:pointer;z-index:10001;padding:10px}.cc__imageviewer__close-button[data-v-8dfc68cb]{top:0;margin-top:env(safe-area-inset-top)}.cc__imageviewer__download-button[data-v-8dfc68cb]{top:49px;margin-top:env(safe-area-inset-top)}.cc__file__bubble[data-v-c653dd5e]{background:transparent;display:flex;justify-content:space-between;overflow:hidden;width:100%;box-sizing:border-box;gap:8px}.message__block[data-v-c653dd5e]{word-wrap:break-word;text-align:left;overflow:hidden}.cc__file__title[data-v-c653dd5e]{overflow:hidden;overflow-wrap:anywhere}.cc__file__url[data-v-c653dd5e]{all:unset;color:var(--cc__text-color);cursor:pointer}.cc__file__subtitle[data-v-c653dd5e]{margin-top:4px}.cc__file__icon[data-v-c653dd5e]{display:flex;align-items:flex-start;justify-content:flex-end;width:fit-content;line-height:36px}i[data-v-c653dd5e]{display:inline-block;width:24px;height:24px;cursor:pointer;background:var(--cc__accent)}.bcc__reply_preview__content_wrapper[data-v-9690de0b]{padding:0 12px;position:relative;display:grid}.bcc__reply_preview__content_bar[data-v-9690de0b]{position:absolute;top:0;bottom:0;border-radius:25px}.bcc__reply_preview__content[data-v-9690de0b]{grid-column:2}.bcc__reply_preview__content>p[data-v-9690de0b]{margin:0;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;word-break:break-all}.bcc__reply_preview__content>.bcc__reply_preview__title[data-v-9690de0b]{margin-bottom:2px}.bcc__reply_preview__thumbnail[data-v-9690de0b]{grid-column:1;width:2rem;height:2rem;align-self:center;border-radius:3px;overflow:hidden;margin-right:5px}.bcc__reply_preview__thumbnail>img[data-v-9690de0b]{width:100%;height:100%}.bcc-chat-msg-bubble{padding:8px 12px;width:auto;max-width:500px;line-height:1.2;font:400 14px Archivo,sans-serif,Inter;color:var(--cc__text-color)}.bcc-chat-msg-bubble p{color:var(--cc__text-color);line-height:1.2;word-break:break-word;text-align:left;white-space:normal;margin:8px 0}.bcc-chat-msg-bubble p:first-child{margin-top:0}.bcc-chat-msg-bubble p:last-child{margin-bottom:0}.bcc-chat-msg-bubble h1{font-size:1.6em;font-weight:800}.bcc-chat-msg-bubble h2{font-size:1.4em;font-weight:700}.bcc-chat-msg-bubble h3{font-size:1.2em;font-weight:600}.bcc-chat-msg-bubble h4{font-size:1em;font-weight:500}.bcc-chat-msg-bubble a{color:var(--cc__link-color);text-decoration:underline;font-weight:500}.bcc-chat-msg-bubble ul{padding-left:16px;list-style:disc;margin:8px 0}.bcc-chat-msg-bubble ol{padding-left:16px;list-style:decimal;margin:8px 0}.bcc-chat-msg-bubble--translated{border-top:1px solid;opacity:.8}.bcc-chat-msg-bubble--translated:before{content:"original: ";opacity:.8;margin-bottom:8px;font-size:12px;display:block}.bcc-chat-msg-bubble--reply{position:relative;z-index:0;margin-top:3px;margin-bottom:-8px;border-radius:6px;overflow:hidden}.bcc-chat-msg-bubble--reply:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;opacity:.5;z-index:-1;background-color:var(--cc__background)}.cc-messagecomposer-wrapper__headerview{position:static!important}[data-v-7dcd4a55]{box-sizing:border-box}.bcc__reply_box[data-v-7dcd4a55]{padding:8px;display:flex;flex-direction:row;justify-content:space-between;margin:0;min-height:30px}.bcc__reply_preview__close[data-v-7dcd4a55]{width:14px;height:14px;display:inline-block}body{background:#fff;color:#000}@media (prefers-color-scheme: dark){body{background:#000;color:#fff}}.bcc-chat-message-list-wrapper{position:relative;height:100%}.bcc-chat-message-list{height:100%;--cc__primary: #cfeac8;--cc__background: #f3faf7;--cc__secondary: white;--cc__accent: #004e48;--cc__accent50: rgba(62, 142, 117, .04);--cc__accent100: #ffffff;--cc__accent200: rgba(62, 142, 117, .15);--cc__accent300: rgba(62, 142, 117, .24);--cc__accent400: rgba(62, 142, 117, .33);--cc__accent500: rgba(62, 142, 117, .46);--cc__accent600: #004e48;--cc__accent700: #254a40;--cc__accent800: rgba(62, 142, 117, .82);--cc__accent900: #f3faf7;--cc__text-color: #000;--cc__link-color: #57639e}@media (prefers-color-scheme: dark){.bcc-chat-message-list{--cc__primary: #57639e;--cc__background: hsl(230, 25%, 15%);--cc__secondary: #111827;--cc__accent: #6274ae;--cc__accent50: rgba(98, 116, 174, .24);--cc__accent100: linear-gradient(45deg, #05070b 0%, #0c111c 100%);--cc__accent200: rgba(98, 116, 174, .35);--cc__accent300: rgba(98, 116, 174, .44);--cc__accent400: rgba(98, 116, 174, .53);--cc__accent500: rgba(98, 116, 174, .66);--cc__accent600: #758abc;--cc__accent700: #6274ae;--cc__accent800: rgba(98, 116, 174, .92);--cc__accent900: #f3faf7;--cc__text-color: #fff;--cc__link-color: #cfeac8}}.bcc-chat-message-list .cc-messages-wrapper .cc-messages-wrapper__messages .cc-messages-wrapper__messages-list{height:calc(100% - 96px)}.bcc-chat-message-list .cc-messages-wrapper .cc-messages-wrapper__messages .cc-messagecomposer-wrapper__headerview{margin-bottom:5px}.bcc-chat-message-list .cc-messagebubble-wrapper__container{max-width:80%}.bcc-chat-message-list .cc-messagebubble-wrapper__messageoptions{border-radius:8px}.bcc-chat-message-list .cc-messagebubble-wrapper__messageoptions .cc-context-menu__top-menu{border:1px var(--cc__secondary) solid!important}.bcc-chat-message-list .bcc-chat-message-composer-offline{position:relative;top:-96px;height:96px;width:100%;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);color:var(--cc__text-color);font:700 1rem sans-serif}.bcc-chat-message-list .bcc-chat-message-composer-offline span{width:100%;height:100%;display:flex;justify-content:center;align-items:center;border-radius:8px 8px 0 0}.bcc-chat-message-list-offline{position:absolute;top:0;bottom:0;left:0;right:0;display:flex;justify-content:center;align-items:center;font:700 22px sans-serif;color:#bcbcbc}.cc-messagecomposer__emojikeyboard{display:none}.cc-threadedmessages-wrapper__bubbleview::-webkit-scrollbar,.cc__message-list::-webkit-scrollbar{background:transparent;width:8px}.cc-threadedmessages-wrapper__bubbleview::-webkit-scrollbar-thumb,.cc__message-list::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}
1
+ .cc-callscreen__view[data-v-f1d9d50c],.cc-outgoingcall__wrapper[data-v-f7ff9c81],.cc-call-buttons__wrapper[data-v-cedd26bb]{height:100%;width:100%}.cc-callbuttons-buttons[data-v-cedd26bb]{display:flex;gap:8px}.cc-incomingcall__wrapper[data-v-fa20448e]{position:absolute;left:8px;top:8px;height:fit-content;width:fit-content;min-height:104px;min-width:230px;z-index:100;display:flex;flex-direction:column;justify-content:flex-start;gap:8px;align-items:flex-start}.cc-incomingcall-buttons[data-v-fa20448e]{display:flex;gap:8px}.cc-incomingcall__tailview[data-v-fa20448e]{position:relative}.cc-incomingcall__subtitleview[data-v-fa20448e]{display:flex;align-items:center;justify-content:flex-start;gap:6px}.cc-incomingcall__listitem[data-v-fa20448e]{width:100%;margin-left:-4px}*[data-v-2abc65da]{box-sizing:border-box}.cc-list__section[data-v-2abc65da]{margin-left:8px}.cc-list__list[data-v-2abc65da]::-webkit-scrollbar{background:transparent;width:8px}.cc-list__list[data-v-2abc65da]::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}.cc-users[data-v-49a05159]{overflow:hidden}.cc-users__menus[data-v-49a05159]{position:absolute;top:12px;right:12px;cursor:pointer}.cc-add-members__back-button[data-v-0d5d72e4]{position:absolute;left:8px;padding:12px 8px 8px}.cc-add-members__close-button[data-v-0d5d72e4]{position:absolute;right:8px;padding:12px 8px 8px}.cc-users[data-v-0d5d72e4]{height:90%}.cc-add-members__buttons[data-v-0d5d72e4]{height:10%;width:100%;display:flex;align-items:center;justify-content:center}.cc-add-members__buttons-add[data-v-0d5d72e4]{height:42px;width:100%}.cc-banned-members__back[data-v-dc316d65]{position:absolute;left:8px;padding:12px 8px 8px}.cc-banned-members__close-button[data-v-dc316d65]{position:absolute;right:8px;padding:12px 8px 8px}.cc-banned-members__tail-view[data-v-dc316d65]{position:relative}.cc-banned-members__menus[data-v-dc316d65]{position:absolute;right:12px;cursor:pointer}.cc-banned-members__unban[data-v-dc316d65]{display:flex;align-items:center;justify-content:flex-end}.tail__view[data-v-fc268643]{display:flex;flex-direction:column;justify-content:flex-start;align-items:center}.cc-conversations__menus[data-v-fc268643]{position:absolute;right:12px;cursor:pointer}.cc-conversations__default-subtitle-view[data-v-fc268643]{display:flex;align-items:center;width:90%;flex-direction:column;justify-content:flex-start}.cc-conversations__subtitle[data-v-fc268643]{display:flex;justify-content:flex-start;width:100%;align-items:center;min-height:22px}.cc-conversations__thread-view[data-v-fc268643]{height:12px;display:flex;justify-content:flex-start;width:100%;align-items:center}.cc-conversations__subtitle-text[data-v-fc268643]{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.cc-conversations__badge[data-v-fc268643]{display:flex}.hidden[data-v-6971671a]{display:none!important}*[data-v-6971671a]{box-sizing:border-box}.cc-messagebubble-wrapper[data-v-6971671a]{position:relative;width:100%}.cc-messagebubble-wrapper__container[data-v-6971671a]{padding-right:8px;border-radius:inherit;display:flex;height:fit-content;width:fit-content;max-width:60%}.cc-messagebubble-wrapper__messagebubble[data-v-6971671a]{flex:1 1 0;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-end;min-width:0;padding:8px 2px;border-radius:inherit}.cc-messagebubble-wrapper__avatar[data-v-6971671a]{position:relative;border-radius:inherit;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-end;padding:8px 4px;margin-top:5px}.cc-messagebubble-title[data-v-6971671a]:empty:before{display:none}.cc-messagebubble-title[data-v-6971671a]:empty:after{display:block;width:100%;height:20px;padding:0 8px}.cc-messagebubble-wrapper__content[data-v-6971671a]{display:flex;flex-direction:column;border-radius:8px}.cc__messagelist__threadreplies[data-v-6971671a]{min-width:fit-content}.cc-messagebubble-wrapper__messageoptions[data-v-6971671a]{position:absolute;top:-4px;display:flex;align-items:center;justify-content:flex-end;z-index:1}.cc-message-information__close-button[data-v-57bb9abb]{position:absolute;right:15px}.cc-message-information__body[data-v-57bb9abb]{padding:20px 3%;box-sizing:border-box}.cc-message-information__default-subtitle-view[data-v-57bb9abb]{display:flex;align-items:self-end;width:90%;flex-direction:column;justify-content:flex-start}.cc-message_information__subtitle[data-v-57bb9abb]{display:flex;justify-content:space-between;width:100%;align-items:center;height:20px}.cc-conversations__date[data-v-57bb9abb]{display:flex;justify-content:flex-start;align-items:center;height:20px}.cc_message-information__body_message-bubble[data-v-57bb9abb]{display:flex}.cc-message_information__receipt-container[data-v-57bb9abb]{display:flex;align-items:center}.cc_message-information_empty-state-view[data-v-57bb9abb]{display:flex;align-items:flex-start;justify-content:center;margin-top:20px}.cc-messagelist[data-v-0bbdd47e]{height:100%;width:100%;overflow-y:auto}.cc-messagelist__wrapper[data-v-0bbdd47e]{height:100%;width:100%;padding:8px;overflow-y:hidden}.cc-messagelist__bubblefooter[data-v-0bbdd47e]{display:flex;justify-content:center;align-items:center}.cc-messagelist__date__container[data-v-0bbdd47e]{text-align:center;margin:8px}.cc-messagelist__date[data-v-0bbdd47e]{border-radius:10px}.cc-messagelist__messageindicator[data-v-0bbdd47e]{position:absolute;bottom:20%;left:50%;transform:translate(-50%);height:25px;width:150px;display:flex;justify-content:center;align-items:center;z-index:10}.cc-messagelist__footerview[data-v-0bbdd47e]{z-index:10;position:relative;bottom:5%;display:flex;align-items:center;justify-content:center;width:100%}.cc-messagelist__decoratormessage[data-v-0bbdd47e]{margin:0;line-height:30px;word-wrap:break-word;padding:0 8px;width:100%;overflow:hidden;display:flex;align-items:center;justify-content:center;height:100%}.cc-messagelist[data-v-0bbdd47e]::-webkit-scrollbar{background:transparent;width:8px}.cc-messagelist[data-v-0bbdd47e]::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}.cc-messagelist__message-information[data-v-0bbdd47e]{height:620px;width:360px}.cc-group-members[data-v-eb4e1c86]{overflow:hidden}.cc-group-members__back[data-v-eb4e1c86]{position:absolute;left:8px;padding:12px 8px 8px}.cc-group-members__wrapper[data-v-eb4e1c86]{height:100%;padding:8px;width:100%}.cc-group-members__close[data-v-eb4e1c86]{position:absolute;right:8px;padding:12px 8px 8px}.cc-group-members__tail-view[data-v-eb4e1c86]{position:relative;display:flex;gap:8px;justify-content:flex-end;align-items:center}.cc-group-members__menus[data-v-eb4e1c86]{position:absolute;right:12px;cursor:pointer}.cc-user-member-wrapper_component[data-v-14014a3f]{max-height:196px;min-height:28px;overflow:hidden;width:100%;box-sizing:border-box;min-height:45px;margin-top:10px}.cc-messagecomposer-wrapper__sendbutton[data-v-93570492],.cc-messagecomposer-wrapper__livereaction[data-v-93570492]{margin:0 5px}.cc-messagecomposer-wrapper[data-v-93570492]{height:100%;width:100%;position:relative;text-align:left;padding:16px 14px;box-sizing:border-box}.cc-messagecomposer-wrapper__headerview[data-v-93570492]{height:fit-content;width:100%;bottom:120%;position:relative;z-index:2;padding:0 0 1px}.cc-messagecomposer__mentions[data-v-93570492]{height:196px;max-height:196px;min-height:28px;overflow:hidden;position:absolute;width:100%;box-sizing:border-box;left:50%;transform:translate(-50%,-100%);display:flex!important;flex-direction:column!important;justify-content:flex-end!important;z-index:2;padding:3px 16px 1px 14px}.cc-messagecomposer__mentions[data-v-93570492]::-webkit-scrollbar{display:none}.cc-messagecomposer-mediainput[data-v-93570492]{display:none}.cc-messagecomposer-wrapper__auxilary[data-v-93570492]{display:flex;gap:8px}.cc-messagecomposer__mentions-limit-exceeded[data-v-93570492]{margin-top:20px;left:2px;position:relative;padding-left:13px;background-color:#fff}*[data-v-8f8bcec3]{box-sizing:border-box;margin:0;padding:0}.cc-threadedmessages-wrapper[data-v-8f8bcec3]{display:flex;flex-direction:column;height:90%;overflow-y:hidden;scrollbar-width:none}.cc-threadedmessages-wrapper__header[data-v-8f8bcec3]{width:100%;display:flex;padding:16px;align-items:flex-start}.cc-threadedmessages-wrapper__close[data-v-8f8bcec3]{display:flex;align-items:center}.cc-threadedmessages-wrapper__title[data-v-8f8bcec3]{display:flex;align-items:center;justify-content:center;width:100%}.cc-threadedmessages-wrapper__bubbleview[data-v-8f8bcec3]{width:100%;height:fit-content;padding:8px 16px;box-sizing:border-box;max-height:20em;overflow:auto;min-height:100px}.cc-threadedmessages-wrapper__header[data-v-8f8bcec3]{flex:0 0 auto}.cc-threadedmessages-wrapper__list[data-v-8f8bcec3]{height:100%;overflow-y:auto;width:100%}.cc-threadedmessages-wrapper__composer[data-v-8f8bcec3]{position:absolute;flex:0 0 auto;min-height:80px;z-index:1;width:100%;bottom:5px}.cc-threaded_message_main_wrapper[data-v-8f8bcec3]{width:100%;height:calc(100% - 156px);display:flex;flex-direction:column}.cc__threadedmessages__actionview[data-v-8f8bcec3]{height:36px;padding:8px 16px;box-sizing:border-box;border:1px solid rgba(20,20,20,.08);border-left:none}.cc-messageheader__wrapper[data-v-fbf35034]{display:flex;align-items:center;justify-content:space-between;flex-direction:row;box-sizing:border-box}.cc-messageheader__backbutton[data-v-fbf35034]{margin-right:8px}.cc-messageheader[data-v-fbf35034]{display:flex;align-items:center;justify-content:flex-start;height:fit-content;width:100%}.cc-messageheader__listitem[data-v-fbf35034]{height:100%;width:100%;align-items:center;justify-content:flex-start}.cc-messageheader__menu[data-v-fbf35034]{width:fit-content;display:flex;align-items:center;justify-content:flex-end;padding:12px}.cc-transfer-ownership__members[data-v-dc105c9f]{width:100%;height:85%}.cc-transfer-ownership-buttons[data-v-dc105c9f]{width:100%;height:15%;display:flex;flex-direction:column;justify-content:flex-end;align-content:center;gap:10px;padding:12px 16px 28px;box-sizing:border-box}*[data-v-9c1bf784]{box-sizing:border-box;margin:0;padding:0}.cc-details__wrapper[data-v-9c1bf784]{padding:8px;border-radius:5px;height:100%;position:relative}.cc-details__profile[data-v-9c1bf784]{margin-bottom:50px;height:8%}.cc-details__section-list[data-v-9c1bf784]{height:84%;width:100%;overflow-y:auto;overflow-x:hidden}.cc-details__header[data-v-9c1bf784]{display:flex;justify-content:center;align-items:center;margin-bottom:30px}.cc-details__close-button[data-v-9c1bf784]{position:absolute;right:20px}.cc-details__section[data-v-9c1bf784]{margin-bottom:32px}.cc-details__section-separator[data-v-9c1bf784]{margin-bottom:16px;padding-left:6px;height:5%}.cc-details__options-wrapper[data-v-9c1bf784]{list-style:none;padding:0;display:flex;flex-direction:column;gap:8px}.cc-details__option[data-v-9c1bf784]{display:flex;flex-direction:column;justify-content:space-evenly;min-height:50px}.cc-details__option-title[data-v-9c1bf784]{padding-bottom:12px;display:flex;align-items:center;justify-content:space-between}.cc-details__view[data-v-9c1bf784]{position:absolute;top:0;left:0;height:100%;width:100%;max-height:100%;overflow-y:auto;overflow-x:hidden;max-width:100%;z-index:1}.cc-details__section-list[data-v-9c1bf784]::-webkit-scrollbar{background:transparent;width:8px}.cc-details__section-list[data-v-9c1bf784]::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}*[data-v-f647b4f0]{box-sizing:border-box;margin:0;padding:0}.cc-messages-wrapper[data-v-f647b4f0]{display:flex;position:relative;height:100%;width:100%}.cc-messages-wrapper__messages[data-v-f647b4f0]{display:flex;flex-direction:column;position:relative;width:100%;box-sizing:border-box;justify-content:space-between}.cc-messages-wrapper__threadedmessages[data-v-f647b4f0],.cc-messages-wrapper__details[data-v-f647b4f0]{position:absolute;top:5;left:0;height:100%;width:100%;max-height:100%;overflow-y:auto;overflow-x:hidden;max-width:100%;z-index:1}.cc-messages-wrapper__header[data-v-f647b4f0]{width:100%}.cc-messages-wrapper__messages-list[data-v-f647b4f0]{display:flex;flex-direction:column;overflow:hidden;height:calc(100% - 160px);width:100%;height:100%}CometChatThreadedMessages[data-v-f647b4f0]{height:100%;display:flex}.cc-messages-wrapper__composer[data-v-f647b4f0]{width:100%;display:flex;flex-direction:column;justify-content:flex-end}.cc-groups__menus[data-v-f13b0c74]{position:absolute;right:12px;cursor:pointer;padding-right:12px}.cc-groups__subtitle-view[data-v-f13b0c74]{padding:0 0 5px}.cc-tabs-wrapper[data-v-6172e2d3]{height:100%;width:100%;display:flex;flex-direction:column;justify-content:flex-end}.cc-tabs-wrapper_inner-div[data-v-6172e2d3]{height:100%;width:100%}.cc-tabs-wrapper-fixed_inner-div[data-v-6172e2d3]{margin-top:10px;height:80%;overflow:hidden}.cc-tabs-wrapper-fixed[data-v-6172e2d3]{height:100%;width:100%;display:flex;justify-content:center}.cc-tabs-wrapper-fixed-inner[data-v-6172e2d3]{height:100%;width:70%}.cc-tabs-fixed[data-v-6172e2d3]{top:0;left:0;width:100%}.cc-contacts__wrapper[data-v-6c9bdd1b]{display:flex;flex-direction:column;height:100%;width:100%;align-items:flex-end;z-index:2}.cc-contacts__header[data-v-6c9bdd1b]{display:flex;justify-content:center;align-items:center;height:50px;width:100%;box-sizing:border-box;padding:10px}.cc-contacts__close-button[data-v-6c9bdd1b]{position:absolute;right:20px}.cc-contacts__submit-button[data-v-6c9bdd1b]{display:flex;width:100%;justify-content:center;box-sizing:border-box;margin:10px}.cc-withmessages__wrapper[data-v-0757926f]{display:flex;height:100%;width:100%;box-sizing:border-box}.cc-withmessages__sidebar[data-v-0757926f]{width:280px;height:100%;position:relative;display:flex}.cc-withmessages__main[data-v-0757926f]{width:calc(100% - 280px);height:100%;margin-left:2px}.mobile[data-v-0757926f]{width:100%!important;height:100%;position:relative}.cc-decorator__message-empty[data-v-0757926f]{display:flex;justify-content:center;align-items:center;width:calc(100% - 280px)}.cc-withmessages__menus[data-v-0757926f]{display:flex;justify-content:flex-end;position:absolute;top:1%;right:2%}.cc-withmessages-wrapper[data-v-84c0352a]{display:flex;height:100%;width:100%;box-sizing:border-box}.cc-withmessages__sidebar[data-v-84c0352a]{width:280px;height:100%;position:relative}.cc-withmessages__main[data-v-84c0352a]{width:calc(100% - 280px);height:100%;margin-left:2px}.mobile[data-v-84c0352a]{width:100%!important;height:100%;position:relative}.cc__decorator__message--empty[data-v-84c0352a]{display:flex;justify-content:center;align-items:center;width:calc(100% - 280px)}.cc-withmessages__joingroup[data-v-84c0352a]{width:calc(100% - 280px);height:100vh}.cc-decorator-message-empty[data-v-84c0352a]{display:flex;justify-content:center;align-items:center;width:calc(100% - 280px)}.cc-withmessages-wrapper[data-v-198b5352]{display:flex;height:100%;width:100%;box-sizing:border-box}.cc-withmessages__sidebar[data-v-198b5352]{width:280px;height:100%;position:relative}.cc-withmessages__main[data-v-198b5352]{width:calc(100% - 280px);height:100%;margin-left:2px}.mobile[data-v-198b5352]{width:100%!important;height:100%;position:relative}.cc-decorator-message-empty[data-v-198b5352]{display:flex;justify-content:center;align-items:center;width:calc(100% - 280px)}.cc__imageviewer__full-screen-viewer[data-v-8dfc68cb]{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#000000e6;z-index:10000}.cc__imageviewer__zoom-container[data-v-8dfc68cb]{display:flex;align-items:center;justify-content:center;width:100%;height:100%}.cc__imageviewer__loading[data-v-8dfc68cb]{position:absolute;z-index:-1}img[data-v-8dfc68cb]{max-width:100%;max-height:100%}.cc__imageviewer__button[data-v-8dfc68cb]{position:fixed;right:0;cursor:pointer;z-index:10001;padding:10px}.cc__imageviewer__close-button[data-v-8dfc68cb]{top:0;margin-top:env(safe-area-inset-top)}.cc__imageviewer__download-button[data-v-8dfc68cb]{top:49px;margin-top:env(safe-area-inset-top)}.cc__file__bubble[data-v-c653dd5e]{background:transparent;display:flex;justify-content:space-between;overflow:hidden;width:100%;box-sizing:border-box;gap:8px}.message__block[data-v-c653dd5e]{word-wrap:break-word;text-align:left;overflow:hidden}.cc__file__title[data-v-c653dd5e]{overflow:hidden;overflow-wrap:anywhere}.cc__file__url[data-v-c653dd5e]{all:unset;color:var(--cc__text-color);cursor:pointer}.cc__file__subtitle[data-v-c653dd5e]{margin-top:4px}.cc__file__icon[data-v-c653dd5e]{display:flex;align-items:flex-start;justify-content:flex-end;width:fit-content;line-height:36px}i[data-v-c653dd5e]{display:inline-block;width:24px;height:24px;cursor:pointer;background:var(--cc__accent)}.bcc__reply_preview__content_wrapper[data-v-3134532b]{padding:0 12px;position:relative;display:grid}.bcc__reply_preview__content_bar[data-v-3134532b]{position:absolute;top:0;bottom:0;border-radius:25px}.bcc__reply_preview__content[data-v-3134532b]{grid-column:2}.bcc__reply_preview__content>p[data-v-3134532b]{margin:0;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;word-break:break-all}.bcc__reply_preview__content>.bcc__reply_preview__title[data-v-3134532b]{margin-bottom:2px}.bcc__reply_preview__thumbnail[data-v-3134532b]{grid-column:1;width:2rem;height:2rem;align-self:center;border-radius:3px;overflow:hidden;margin-right:5px}.bcc__reply_preview__thumbnail>img[data-v-3134532b]{width:100%;height:100%}.bcc-chat-msg-bubble{padding:8px 12px;width:auto;max-width:500px;line-height:1.2;font:400 14px Archivo,sans-serif,Inter;color:var(--cc__text-color)}.bcc-chat-msg-bubble p{color:var(--cc__text-color);line-height:1.2;word-break:break-word;text-align:left;white-space:normal;margin:8px 0}.bcc-chat-msg-bubble p:first-child{margin-top:0}.bcc-chat-msg-bubble p:last-child{margin-bottom:0}.bcc-chat-msg-bubble h1{font-size:1.6em;font-weight:800}.bcc-chat-msg-bubble h2{font-size:1.4em;font-weight:700}.bcc-chat-msg-bubble h3{font-size:1.2em;font-weight:600}.bcc-chat-msg-bubble h4{font-size:1em;font-weight:500}.bcc-chat-msg-bubble a{color:var(--cc__link-color);text-decoration:underline;font-weight:500}.bcc-chat-msg-bubble ul{padding-left:16px;list-style:disc;margin:8px 0}.bcc-chat-msg-bubble ol{padding-left:16px;list-style:decimal;margin:8px 0}.bcc-chat-msg-bubble--translated{border-top:1px solid;opacity:.8}.bcc-chat-msg-bubble--translated:before{content:"original: ";opacity:.8;margin-bottom:8px;font-size:12px;display:block}.bcc-chat-msg-bubble--reply{position:relative;z-index:0;margin-top:3px;margin-bottom:-8px;border-radius:6px;overflow:hidden}.bcc-chat-msg-bubble--reply:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;opacity:.5;z-index:-1;background-color:var(--cc__background)}.cc-messagecomposer-wrapper__headerview{position:static!important}[data-v-7dcd4a55]{box-sizing:border-box}.bcc__reply_box[data-v-7dcd4a55]{padding:8px;display:flex;flex-direction:row;justify-content:space-between;margin:0;min-height:30px}.bcc__reply_preview__close[data-v-7dcd4a55]{width:14px;height:14px;display:inline-block}body{background:#fff;color:#000}@media (prefers-color-scheme: dark){body{background:#000;color:#fff}}.bcc-chat-message-list-wrapper{position:relative;height:100%}.bcc-chat-message-list{height:100%;--cc__primary: #cfeac8;--cc__background: #f3faf7;--cc__secondary: white;--cc__accent: #004e48;--cc__accent50: rgba(62, 142, 117, .04);--cc__accent100: #ffffff;--cc__accent200: rgba(62, 142, 117, .15);--cc__accent300: rgba(62, 142, 117, .24);--cc__accent400: rgba(62, 142, 117, .33);--cc__accent500: rgba(62, 142, 117, .46);--cc__accent600: #004e48;--cc__accent700: #254a40;--cc__accent800: rgba(62, 142, 117, .82);--cc__accent900: #f3faf7;--cc__text-color: #000;--cc__link-color: #57639e}@media (prefers-color-scheme: dark){.bcc-chat-message-list{--cc__primary: #57639e;--cc__background: hsl(230, 25%, 15%);--cc__secondary: #111827;--cc__accent: #6274ae;--cc__accent50: rgba(98, 116, 174, .24);--cc__accent100: linear-gradient(45deg, #05070b 0%, #0c111c 100%);--cc__accent200: rgba(98, 116, 174, .35);--cc__accent300: rgba(98, 116, 174, .44);--cc__accent400: rgba(98, 116, 174, .53);--cc__accent500: rgba(98, 116, 174, .66);--cc__accent600: #758abc;--cc__accent700: #6274ae;--cc__accent800: rgba(98, 116, 174, .92);--cc__accent900: #f3faf7;--cc__text-color: #fff;--cc__link-color: #cfeac8}}.bcc-chat-message-list .cc-messages-wrapper .cc-messages-wrapper__messages .cc-messages-wrapper__messages-list{height:100%}.bcc-chat-message-list .cc-messages-wrapper .cc-messages-wrapper__messages .cc-messagecomposer-wrapper__headerview{margin-bottom:5px}.bcc-chat-message-list .cc-messagebubble-wrapper__container{max-width:80%}.bcc-chat-message-list .cc-messagebubble-wrapper__messageoptions{border-radius:8px}.bcc-chat-message-list .cc-messagebubble-wrapper__messageoptions .cc-context-menu__top-menu{border:1px var(--cc__secondary) solid!important}.bcc-chat-message-list .bcc-chat-message-composer-offline{position:relative;top:-96px;height:96px;width:100%;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);color:var(--cc__text-color);font:700 1rem sans-serif}.bcc-chat-message-list .bcc-chat-message-composer-offline span{width:100%;height:100%;display:flex;justify-content:center;align-items:center;border-radius:8px 8px 0 0}.bcc-chat-message-list-offline{position:absolute;top:0;bottom:0;left:0;right:0;display:flex;justify-content:center;align-items:center;font:700 22px sans-serif;color:#bcbcbc}.cc-messagecomposer__emojikeyboard{display:none}.cc-threadedmessages-wrapper__bubbleview::-webkit-scrollbar,.cc__message-list::-webkit-scrollbar{background:transparent;width:8px}.cc-threadedmessages-wrapper__bubbleview::-webkit-scrollbar-thumb,.cc__message-list::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}