@snf/access-qa-bot 2.7.3 → 3.0.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 +238 -291
- package/dist/access-qa-bot.js +16396 -2
- package/dist/access-qa-bot.js.map +1 -1
- package/dist/access-qa-bot.standalone.js +118 -36
- package/dist/access-qa-bot.standalone.js.map +1 -1
- package/dist/access-qa-bot.umd.cjs +217 -3
- package/dist/access-qa-bot.umd.cjs.map +1 -1
- package/dist/index.d.ts +85 -0
- package/dist/style.css +1 -0
- package/package.json +45 -76
- package/build/asset-manifest.json +0 -15
- package/build/favicon.ico +0 -0
- package/build/index.html +0 -1
- package/build/logo192.png +0 -0
- package/build/logo512.png +0 -0
- package/build/manifest.json +0 -25
- package/build/robots.txt +0 -3
- package/build/static/css/main.css +0 -2
- package/build/static/css/main.css.map +0 -1
- package/build/static/js/453.chunk.js +0 -2
- package/build/static/js/453.chunk.js.map +0 -1
- package/build/static/js/main.js +0 -3
- package/build/static/js/main.js.LICENSE.txt +0 -67
- package/build/static/js/main.js.map +0 -1
- package/index.d.ts +0 -54
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { ForwardRefExoticComponent } from 'react';
|
|
2
|
+
import { RefAttributes } from 'react';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* AccessQABot - Wrapper around @snf/qa-bot-core with ACCESS-specific functionality
|
|
6
|
+
*
|
|
7
|
+
* This component demonstrates how to extend qa-bot-core with custom flows:
|
|
8
|
+
* 1. Main menu flow - provides top-level navigation
|
|
9
|
+
* 2. Ticket flows - handles ticket creation with file uploads
|
|
10
|
+
*
|
|
11
|
+
* The wrapper pattern keeps ACCESS-specific logic (JIRA integration, ticket forms)
|
|
12
|
+
* separate from the generic qa-bot-core library.
|
|
13
|
+
*/
|
|
14
|
+
declare const AccessQABot: ForwardRefExoticComponent<QABotProps & RefAttributes<QABotRef>>;
|
|
15
|
+
export { AccessQABot }
|
|
16
|
+
export { AccessQABot as QABot }
|
|
17
|
+
|
|
18
|
+
export declare const API_CONFIG: {
|
|
19
|
+
QA_ENDPOINT: string;
|
|
20
|
+
RATING_ENDPOINT: string;
|
|
21
|
+
METRICS_API_ENDPOINT: any;
|
|
22
|
+
METRICS_RATING_ENDPOINT: any;
|
|
23
|
+
METRICS_QUESTIONS_URL: string;
|
|
24
|
+
NETLIFY_BASE_URL: string;
|
|
25
|
+
DEFAULT_API_KEY: string;
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export declare const BOT_CONFIG: {
|
|
29
|
+
BOT_NAME: string;
|
|
30
|
+
LOGO: string;
|
|
31
|
+
WELCOME_MESSAGE: string;
|
|
32
|
+
WELCOME_MESSAGE_LOGGED_OUT: string;
|
|
33
|
+
LOGIN_URL: string;
|
|
34
|
+
PRIMARY_COLOR: string;
|
|
35
|
+
SECONDARY_COLOR: string;
|
|
36
|
+
TOOLTIP: string;
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Controller returned by standalone qaBot() function
|
|
41
|
+
*/
|
|
42
|
+
export declare interface QABotController {
|
|
43
|
+
addMessage(message: string): void;
|
|
44
|
+
setBotIsLoggedIn(status: boolean): void;
|
|
45
|
+
openChat(): void;
|
|
46
|
+
closeChat(): void;
|
|
47
|
+
toggleChat(): void;
|
|
48
|
+
destroy(): void;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Props for the AccessQABot React component
|
|
53
|
+
* Maintains API compatibility with old @snf/access-qa-bot
|
|
54
|
+
*/
|
|
55
|
+
export declare interface QABotProps {
|
|
56
|
+
apiKey?: string;
|
|
57
|
+
isLoggedIn?: boolean;
|
|
58
|
+
loginUrl?: string;
|
|
59
|
+
userEmail?: string;
|
|
60
|
+
userName?: string;
|
|
61
|
+
accessId?: string;
|
|
62
|
+
open?: boolean;
|
|
63
|
+
onOpenChange?: (open: boolean) => void;
|
|
64
|
+
embedded?: boolean;
|
|
65
|
+
welcome?: string;
|
|
66
|
+
ringEffect?: boolean;
|
|
67
|
+
defaultOpen?: boolean;
|
|
68
|
+
onClose?: () => void;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* Ref methods exposed by AccessQABot component
|
|
73
|
+
*/
|
|
74
|
+
export declare interface QABotRef {
|
|
75
|
+
addMessage(message: string): void;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* Configuration for standalone qaBot() function
|
|
80
|
+
*/
|
|
81
|
+
export declare interface QABotStandaloneConfig extends Omit<QABotProps, 'onClose'> {
|
|
82
|
+
target: HTMLElement;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export { }
|
package/dist/style.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.rcb-chat-notification-badge,.rcb-notification-badge{display:none!important}.rcb-chat-window .rcb-bot-avatar{background-size:contain;border-radius:0;background-position:center;background-repeat:no-repeat}.rcb-toggle-icon{background-size:62%!important;background-position:calc(50% - 1px) calc(50% + 2px);background-repeat:no-repeat;background-color:transparent!important}.rcb-chat-button-icon{background-size:contain;background-position:center;background-repeat:no-repeat}
|
package/package.json
CHANGED
|
@@ -1,95 +1,64 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@snf/access-qa-bot",
|
|
3
|
-
"version": "
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"description": "ACCESS Q&A Bot React Component with support ticket creation, feedback collection, and ProForma integration",
|
|
3
|
+
"version": "3.0.0",
|
|
4
|
+
"description": "ACCESS-specific wrapper around @snf/qa-bot-core",
|
|
5
|
+
"type": "module",
|
|
7
6
|
"main": "./dist/access-qa-bot.umd.cjs",
|
|
8
7
|
"module": "./dist/access-qa-bot.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
11
12
|
"import": "./dist/access-qa-bot.js",
|
|
12
13
|
"require": "./dist/access-qa-bot.umd.cjs"
|
|
13
|
-
}
|
|
14
|
-
"./standalone": "./dist/access-qa-bot.standalone.js"
|
|
14
|
+
}
|
|
15
15
|
},
|
|
16
|
-
"unpkg": "./dist/access-qa-bot.standalone.js",
|
|
17
|
-
"types": "index.d.ts",
|
|
18
16
|
"files": [
|
|
19
|
-
"dist"
|
|
20
|
-
"build",
|
|
21
|
-
"index.d.ts"
|
|
17
|
+
"dist"
|
|
22
18
|
],
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "vite",
|
|
21
|
+
"build": "tsc && vite build && vite build --config vite.config.standalone.ts",
|
|
22
|
+
"build:lib": "tsc && vite build",
|
|
23
|
+
"build:standalone": "vite build --config vite.config.standalone.ts",
|
|
24
|
+
"preview": "vite preview",
|
|
25
|
+
"lint": "eslint src --ext ts,tsx",
|
|
26
|
+
"type-check": "tsc --noEmit"
|
|
29
27
|
},
|
|
30
28
|
"peerDependencies": {
|
|
31
|
-
"
|
|
32
|
-
"react": "^
|
|
33
|
-
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
29
|
+
"react": "^18.0.0",
|
|
30
|
+
"react-dom": "^18.0.0"
|
|
34
31
|
},
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@snf/qa-bot-core": "^0.2.3",
|
|
34
|
+
"react-chatbotify": "^2.0.0",
|
|
35
|
+
"uuid": "^11.1.0"
|
|
39
36
|
},
|
|
40
37
|
"devDependencies": {
|
|
41
|
-
"@
|
|
42
|
-
"@
|
|
43
|
-
"@
|
|
44
|
-
"@
|
|
45
|
-
"@eslint/
|
|
46
|
-
"@
|
|
47
|
-
"@
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"@testing-library/user-event": "^13.5.0",
|
|
55
|
-
"customize-cra": "^1.0.0",
|
|
56
|
-
"eslint": "^8.57.1",
|
|
57
|
-
"eslint-plugin-react": "^7.37.5",
|
|
58
|
-
"globals": "^16.3.0",
|
|
59
|
-
"react": "^18.3.1",
|
|
60
|
-
"react-app-rewired": "^2.2.1",
|
|
61
|
-
"react-dom": "^18.3.1",
|
|
62
|
-
"react-scripts": "5.0.1",
|
|
63
|
-
"rollup": "^4.9.6",
|
|
64
|
-
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
65
|
-
"rollup-plugin-postcss": "^4.0.2",
|
|
66
|
-
"web-vitals": "^2.1.4"
|
|
38
|
+
"@types/node": "^20.0.0",
|
|
39
|
+
"@types/react": "^18.2.0",
|
|
40
|
+
"@types/react-dom": "^18.2.0",
|
|
41
|
+
"@types/uuid": "^9.0.0",
|
|
42
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
43
|
+
"@typescript-eslint/parser": "^6.0.0",
|
|
44
|
+
"@vitejs/plugin-react": "^4.2.0",
|
|
45
|
+
"eslint": "^8.0.0",
|
|
46
|
+
"preact": "^10.19.0",
|
|
47
|
+
"preact-render-to-string": "^6.6.3",
|
|
48
|
+
"typescript": "^5.3.0",
|
|
49
|
+
"vite": "^5.0.0",
|
|
50
|
+
"vite-plugin-dts": "^3.7.0"
|
|
67
51
|
},
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"test": "react-app-rewired test",
|
|
72
|
-
"build:lib": "rollup -c",
|
|
73
|
-
"prepublishOnly": "npm run build:lib",
|
|
74
|
-
"lint": "eslint src/",
|
|
75
|
-
"lint:fix": "eslint src/ --fix"
|
|
52
|
+
"repository": {
|
|
53
|
+
"type": "git",
|
|
54
|
+
"url": "https://github.com/necyberteam/access-qa-bot.git"
|
|
76
55
|
},
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
"
|
|
84
|
-
|
|
85
|
-
">0.2%",
|
|
86
|
-
"not dead",
|
|
87
|
-
"not op_mini all"
|
|
88
|
-
],
|
|
89
|
-
"development": [
|
|
90
|
-
"last 1 chrome version",
|
|
91
|
-
"last 1 firefox version",
|
|
92
|
-
"last 1 safari version"
|
|
93
|
-
]
|
|
94
|
-
}
|
|
56
|
+
"keywords": [
|
|
57
|
+
"chatbot",
|
|
58
|
+
"qa",
|
|
59
|
+
"access",
|
|
60
|
+
"react"
|
|
61
|
+
],
|
|
62
|
+
"author": "ACCESS CI Team",
|
|
63
|
+
"license": "MIT"
|
|
95
64
|
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"files": {
|
|
3
|
-
"main.css": "./static/css/main.css",
|
|
4
|
-
"main.js": "./static/js/main.js",
|
|
5
|
-
"static/js/453.chunk.js": "./static/js/453.chunk.js",
|
|
6
|
-
"index.html": "./index.html",
|
|
7
|
-
"main.css.map": "./static/css/main.css.map",
|
|
8
|
-
"main.js.map": "./static/js/main.js.map",
|
|
9
|
-
"453.chunk.js.map": "./static/js/453.chunk.js.map"
|
|
10
|
-
},
|
|
11
|
-
"entrypoints": [
|
|
12
|
-
"static/css/main.css",
|
|
13
|
-
"static/js/main.js"
|
|
14
|
-
]
|
|
15
|
-
}
|
package/build/favicon.ico
DELETED
|
Binary file
|
package/build/index.html
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="./favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="./logo192.png"/><link rel="manifest" href="./manifest.json"/><title>React App</title><script defer="defer" src="./static/js/main.js"></script><link href="./static/css/main.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|
package/build/logo192.png
DELETED
|
Binary file
|
package/build/logo512.png
DELETED
|
Binary file
|
package/build/manifest.json
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"short_name": "React App",
|
|
3
|
-
"name": "Create React App Sample",
|
|
4
|
-
"icons": [
|
|
5
|
-
{
|
|
6
|
-
"src": "favicon.ico",
|
|
7
|
-
"sizes": "64x64 32x32 24x24 16x16",
|
|
8
|
-
"type": "image/x-icon"
|
|
9
|
-
},
|
|
10
|
-
{
|
|
11
|
-
"src": "logo192.png",
|
|
12
|
-
"type": "image/png",
|
|
13
|
-
"sizes": "192x192"
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"src": "logo512.png",
|
|
17
|
-
"type": "image/png",
|
|
18
|
-
"sizes": "512x512"
|
|
19
|
-
}
|
|
20
|
-
],
|
|
21
|
-
"start_url": ".",
|
|
22
|
-
"display": "standalone",
|
|
23
|
-
"theme_color": "#000000",
|
|
24
|
-
"background_color": "#ffffff"
|
|
25
|
-
}
|
package/build/robots.txt
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
.rcb-toggle-icon{background-color:initial!important;background-position:calc(50% - 1px) calc(50% + 2px);background-size:62%!important}.rcb-chat-window{height:800px!important;max-height:80vh!important;max-width:100%;width:550px!important}.rcb-chat-window .rcb-bot-avatar{background-position:50%;background-repeat:no-repeat;background-size:contain;border-radius:0}.rcb-chat-window .rcb-chat-header{align-items:center;display:flex;flex-direction:row;font-weight:700}.rcb-chat-window a{color:#000;font-weight:700;text-decoration:underline}.rcb-chat-window a:hover{color:#107180}.rcb-chat-window .rcb-bot-message a{color:#fff;text-decoration:none}.rcb-chat-window .rcb-bot-message a:hover{text-decoration:underline}.rcb-chat-window .rcb-chat-input-textarea{overflow-y:auto}.rcb-chat-window .rcb-chat-footer-container{font-size:10px}.qa-bot .user-login-icon{display:none!important}.qa-bot.bot-logged-in .user-login-icon{display:flex!important;transform:scale(1.3) translateY(-2px)}.embedded-qa-bot .rcb-chat-window{max-width:100%;width:100%!important}.qa-bot.hidden{display:none}.embedded-qa-bot .rcb-bot-message,.embedded-qa-bot .rcb-user-message{max-width:90%!important;word-break:break-word}.embedded-qa-bot .rcb-chat-input-textarea{width:100%!important}.qa-bot-container{max-width:100%;width:100%}.rcb-tooltip-show.phone-ring{animation:phone-ring 3s ease-out!important;z-index:10000!important}@keyframes phone-ring{0%{transform:translateX(0) translateY(0) rotate(0deg)}2%{transform:translateX(0) translateY(-8px) rotate(-2deg)}4%{transform:translateX(0) translateY(-6px) rotate(2deg)}6%{transform:translateX(0) translateY(-8px) rotate(-1deg)}8%{transform:translateX(0) translateY(-6px) rotate(1deg)}10%{transform:translateX(0) translateY(-8px) rotate(-2deg)}12%{transform:translateX(0) translateY(-6px) rotate(2deg)}20%{transform:translateX(0) translateY(0) rotate(0deg)}30%{transform:translateX(0) translateY(0) rotate(0deg)}40%{transform:translateX(0) translateY(0) rotate(0deg)}49%{transform:translateX(0) translateY(0) rotate(0deg)}50%{transform:translateX(0) translateY(-8px) rotate(-2deg)}52%{transform:translateX(0) translateY(-6px) rotate(2deg)}54%{transform:translateX(0) translateY(-8px) rotate(-1deg)}56%{transform:translateX(0) translateY(-6px) rotate(1deg)}58%{transform:translateX(0) translateY(-8px) rotate(-2deg)}60%{transform:translateX(0) translateY(-6px) rotate(2deg)}70%{transform:translateX(0) translateY(0) rotate(0deg)}to{transform:translateX(0) translateY(0) rotate(0deg)}}@media (max-width:768px){.rcb-chat-window{max-height:calc(100vh - 100px)!important;max-width:calc(100vw - 40px)!important;width:550px!important}.embedded-chat-container.open{height:400px}.embedded-chat-closed{font-size:14px;height:40px}.embedded-chat-open-btn{font-size:12px;padding:3px 10px}.rcb-bot-message,.rcb-user-message{max-width:85%!important}.rcb-chat-input-textarea{font-size:16px!important;min-height:44px!important}.rcb-chat-header{padding:12px 16px!important}}@media (max-width:480px){.rcb-chat-window{bottom:10px!important;left:10px!important;max-height:calc(100vh - 80px)!important;max-width:calc(100vw - 20px)!important;right:10px!important;width:calc(100vw - 20px)!important}.embedded-chat-container.open{height:350px}.rcb-bot-message,.rcb-user-message{margin-bottom:8px!important;max-width:90%!important}.rcb-chat-header{font-size:14px!important;padding:8px 12px!important}.rcb-chat-button{bottom:20px!important;height:50px!important;right:20px!important;width:50px!important}.rcb-chat-footer-container{font-size:9px!important;padding:8px 12px!important}}@media (max-width:360px){.rcb-chat-window{left:5px!important;max-width:calc(100vw - 10px)!important;right:5px!important;width:calc(100vw - 10px)!important}.rcb-chat-header{font-size:13px!important;padding:6px 8px!important}}.rcb-checkbox-container{display:flex!important;flex-wrap:wrap!important;gap:8px!important;margin-left:16px!important;max-width:100%!important;padding-top:12px!important}.rcb-checkbox-row-container{align-items:center!important;background-color:#fff!important;border:1px solid #d0d0d0!important;border-radius:6px!important;box-sizing:border-box!important;color:#107180!important;cursor:pointer!important;display:flex!important;flex:0 0 auto!important;font-size:14px!important;font-weight:400!important;margin:0!important;max-height:auto!important;min-height:auto!important;padding:8px 12px!important;text-align:center!important;transition:all .2s ease!important;-webkit-user-select:none;user-select:none;width:auto!important}.rcb-checkbox-row-container:hover{background-color:#e8f4f8!important;border-color:#107180!important;box-shadow:0 2px 4px #10718033!important;transform:translateY(-1px)!important}.rcb-checkbox-row-container[data-checked=true]{background-color:#107180!important;border-color:#107180!important;color:#fff!important}.rcb-checkbox-row{margin-left:0!important}.rcb-checkbox-mark{height:14px!important;margin-right:6px!important;width:14px!important}.rcb-checkbox-label{font-size:13px!important;margin:0!important;white-space:nowrap!important}.rcb-checkbox-next-button{align-items:center!important;background-color:#fff!important;border:1px solid #d0d0d0!important;border-radius:6px!important;box-sizing:border-box!important;color:#107180!important;cursor:pointer!important;display:flex!important;flex:0 0 auto!important;font-size:14px!important;font-weight:400!important;justify-content:center!important;line-height:24px!important;margin:0!important;max-height:auto!important;min-height:auto!important;padding:8px 12px!important;text-align:center!important;transition:all .2s ease!important;-webkit-user-select:none;user-select:none;width:auto!important}.rcb-checkbox-next-button:hover{background-color:#e8f4f8!important;border-color:#107180!important;box-shadow:0 2px 4px #10718033!important;transform:translateY(-1px)!important}.sr-only{clip:rect(0,0,0,0)!important;border:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.rcb-chat-input-send-button:focus,.rcb-chat-input-textarea:focus{outline:2px solid #107180!important;outline-offset:2px!important}.rcb-user-message{word-wrap:break-word!important;overflow:hidden!important;word-break:break-word!important}:focus-visible{outline:2px solid #107180!important;outline-offset:2px!important}.rcb-options-container{display:flex!important;flex-direction:row!important;flex-wrap:wrap!important;gap:8px!important;margin:16px!important;padding:0!important}.rcb-options{background-color:#fff!important;border:1px solid #d0d0d0!important;border-radius:6px!important;box-sizing:border-box!important;color:#107180!important;cursor:pointer!important;flex:0 0 auto!important;font-size:14px!important;font-weight:400!important;outline:none!important;padding:8px 12px!important;text-align:center!important;transition:all .2s ease!important;-webkit-user-select:none;user-select:none;width:auto!important}.rcb-options:hover{background-color:#e8f4f8!important;border-color:#107180!important;box-shadow:0 2px 4px #10718033!important;transform:translateY(-1px)!important}.rcb-checkbox-next-button.keyboard-focused,.rcb-checkbox-next-button:focus,.rcb-checkbox-next-button:focus-visible,.rcb-checkbox-row-container.keyboard-focused,.rcb-checkbox-row-container:focus,.rcb-checkbox-row-container:focus-visible,.rcb-options.keyboard-focused,.rcb-options:focus,.rcb-options:focus-visible{background-color:#e8f4f8!important;border-color:#107180!important;outline:none!important}.rcb-options:active{background-color:#107180!important;border-color:#107180!important;color:#fff!important;transform:translateY(0)!important}.keyboard-nav-hint{color:#666!important;font-size:12px!important;font-style:italic!important;margin-bottom:8px!important}@media (prefers-reduced-motion:reduce){.keyboard-nav-hint{display:none!important}}.rcb-options-container [role=button][tabindex="0"],.rcb-options-container button[tabindex="0"]{position:relative!important}.rcb-options-container [role=button][tabindex="0"]:after,.rcb-options-container button[tabindex="0"]:after{color:#107180!important;content:"←"!important;font-size:16px!important;opacity:0!important;position:absolute!important;right:12px!important;top:50%!important;transform:translateY(-50%)!important;transition:opacity .2s ease!important}.rcb-options-container [role=button][tabindex="0"]:focus:after,.rcb-options-container button[tabindex="0"]:focus:after{opacity:1!important}.rcb-chat-input-send-button{cursor:pointer!important;opacity:1!important;pointer-events:auto!important;visibility:visible!important}.rcb-chat-input-send-button:not([tabindex]){-webkit-user-select:none;user-select:none}.rcb-chat-input-container [onclick],.rcb-chat-input-container [role=button],.rcb-chat-input-container div[style*=cursor],.rcb-chat-input-container svg:last-child,.rcb-chat-input-container>div:last-child{tabindex:0!important;cursor:pointer!important}.rcb-chat-footer{margin-top:4px!important;padding-top:0!important}.rcb-chat-footer-container{align-items:center!important;display:flex!important;margin-top:4px!important;padding-top:4px!important}.rcb-chat-footer-container button{order:1!important}.rcb-chat-footer-container a[href*=access-qa-tool]{tab-index:0!important;order:2!important}.rcb-chat-footer-container a[href*=feedback]{tab-index:0!important;order:3!important}@media (prefers-contrast:high){.rcb-chat-window a{background-color:#fff!important;border:1px solid #000!important;color:#000!important}}@media (prefers-reduced-motion:reduce){*{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}.rcb-chat-input-textarea{-webkit-user-select:text!important;user-select:text!important}.rcb-chat-body-container,.rcb-chat-input-textarea,.rcb-chat-window{touch-action:pan-y!important}.embedded-qa-bot,.rcb-chat-window{-webkit-overflow-scrolling:touch!important}.embedded-qa-bot .rcb-chat-input-textarea{touch-action:pan-y!important;-webkit-user-select:text!important;user-select:text!important}.embedded-qa-bot .rcb-chat-body-container,.embedded-qa-bot .rcb-chat-window{touch-action:pan-y!important}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;margin:0}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}.demo-container{background-color:#f5f5f5;border-bottom:1px solid #ddd;margin-bottom:20px;padding:20px}.demo-title{font-size:1.2em;font-weight:700;margin-bottom:20px}.demo-controls{align-items:flex-start;display:flex;flex-wrap:wrap;gap:20px}.demo-section{flex:1 1;min-width:200px}.demo-section h3{font-size:1em;margin:0 0 10px}.demo-checkbox{display:block;font-size:.95em;margin-bottom:15px}.demo-checkbox:last-child{margin-bottom:10px}.demo-checkbox input{margin-right:8px}.demo-message-section{flex:1 1;min-width:250px}.demo-send-button{background-color:#1a5b6e;border:none;border-radius:4px;color:#fff;cursor:pointer;font-size:.9em;padding:8px 16px}.demo-info{background-color:#e8f4f8;border-radius:4px;color:#555;font-size:.85em;margin-top:15px;padding:12px}.demo-field{margin-bottom:15px}.demo-field label{color:#333;display:block;font-size:.9em;font-weight:500;margin-bottom:5px}.demo-input{border:1px solid #ccc;border-radius:4px;box-sizing:border-box;font-size:.9em;max-width:250px;padding:6px 10px;width:100%}.demo-input:focus{border-color:#1a5b6e;box-shadow:0 0 0 2px #1a5b6e1a;outline:none}.demo-help{color:#666;font-size:.85em;font-style:italic;margin:0 0 15px}.rcb-chat-header-container{border-bottom:1px solid #ccc;color:#fff;display:flex;justify-content:space-between;max-height:55px;padding:12px}.rcb-chat-header{display:flex;flex-direction:row}.rcb-bot-avatar{background-size:cover;border-radius:50%;height:30px;margin-right:12px;width:30px}.rcb-message-prompt-container.visible{align-items:center;animation:rcb-animation-pop-in .3s ease-in-out;bottom:0;display:flex;justify-content:center;margin:auto;opacity:1;pointer-events:auto;position:-webkit-sticky;position:sticky}.rcb-message-prompt-container.hidden{height:0;opacity:0;pointer-events:none;visibility:hidden}.rcb-message-prompt-text{background-color:#fff;border:.5px solid #adadad;border-radius:20px;color:#adadad;cursor:pointer;font-size:12px;padding:6px 12px;transition:color .3s ease,border-color .3s ease;z-index:9999}.rcb-message-prompt-container.hidden .rcb-message-prompt-text{padding:0}.rcb-user-message-container{display:flex;flex-direction:row;justify-content:right}.rcb-user-message{border-radius:22px;font-size:15px;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;margin-right:16px;margin-top:8px;min-height:20px;overflow:auto;overflow-wrap:anywhere;padding:12px 16px;text-align:right;white-space:pre-wrap;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.rcb-user-message-offset{margin-right:50px}.rcb-user-message-entry{animation:rcb-animation-user-message-entry .3s ease-in backwards}.rcb-message-user-avatar{background-size:cover;border-radius:50%;height:40px;margin-left:-10px;margin-right:6px;margin-top:9px;width:40px}.rcb-bot-message-container{display:flex;flex-direction:row}.rcb-bot-message{border-radius:22px;font-size:15px;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;margin-left:16px;margin-top:8px;min-height:20px;overflow:auto;overflow-wrap:anywhere;padding:12px 16px;text-align:left;white-space:pre-wrap;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.rcb-bot-message-offset{margin-left:50px}.rcb-bot-message-entry{animation:rcb-animation-bot-message-entry .3s ease-in backwards}.rcb-message-bot-avatar{background-size:cover;border-radius:50%;height:40px;margin-left:6px;margin-right:-10px;margin-top:9px;width:40px}.rcb-typing-indicator{align-items:center;display:flex}.rcb-dot{animation:rcb-animation-bot-typing 1s infinite;background-color:#ccc;border-radius:50%;height:8px;margin-right:4px;width:8px}.rcb-dot:nth-child(2){animation-delay:.2s}.rcb-dot:nth-child(3){animation-delay:.4s}.rcb-chat-body-container{height:100%;overflow-x:hidden;overflow-y:scroll;padding-bottom:16px;position:relative;touch-action:pan-y;width:100%}.rcb-chat-body-container::-webkit-scrollbar-track{background-color:#f1f1f1}.rcb-chat-body-container::-webkit-scrollbar-thumb{background-color:#ddd;border-radius:4px}.rcb-chat-body-container::-webkit-scrollbar-thumb:hover{background-color:#cfcfcf}.rcb-chat-body-container::-webkit-scrollbar-corner{background-color:#f1f1f1}.rcb-checkbox-container{display:flex;flex-wrap:wrap;gap:10px;margin-left:16px;padding-top:12px}.rcb-checkbox-offset{margin-left:50px!important}.rcb-checkbox-row-container{align-items:center;animation:rcb-animations-checkboxes-entry .5s ease-out;background-color:#fff;border-radius:10px;border-style:solid;border-width:.5px;cursor:pointer;display:flex;gap:5px;max-height:32px;min-height:30px;overflow:hidden;width:80%}.rcb-checkbox-row-container:hover{box-shadow:0 0 5px #0003}.rcb-checkbox-row{align-items:center;cursor:pointer;display:inline-flex;margin-left:10px}.rcb-checkbox-mark{align-items:center;background-color:#f2f2f2;border:none;border-radius:50%;cursor:pointer;display:flex;height:20px;justify-content:center;margin-right:10px;transition:all .3s ease;width:20px}.rcb-checkbox-mark:hover{background-color:#c2c2c2}.rcb-checkbox-mark:before{content:"✓";transition:all .3s ease}.rcb-checkbox-label{font-size:14px}.rcb-checkbox-next-button{align-items:center;animation:rcb-animations-checkboxes-entry .5s ease-out;background-color:#fff;border-radius:10px;border-style:solid;border-width:.5px;cursor:pointer;display:inline-block;font-size:24px;max-height:32px;min-height:30px;text-align:center;width:80%}.rcb-checkbox-next-button:before{content:"→"}.rcb-checkbox-next-button:hover{box-shadow:0 0 5px #0003}.rcb-options-container{display:flex;flex-wrap:wrap;gap:10px;margin-left:16px;max-width:70%;padding-top:12px}.rcb-options-offset{margin-left:50px!important}.rcb-options{align-items:center;animation:rcb-animation-options-entry .5s ease-out;border-radius:20px;border-style:solid;border-width:.5px;cursor:pointer;display:inline-flex;font-size:14px;justify-content:center;overflow:hidden;padding:10px 20px;transition:background-color .3s ease}.rcb-options:hover{box-shadow:0 0 5px #0003}.rcb-line-break-container{align-items:center;display:flex;justify-content:center;max-height:45px;padding-bottom:5px;padding-top:10px}.rcb-line-break-text{color:#adadad;font-size:12px;padding:6px 12px}.rcb-spinner-container{align-items:center;display:flex;justify-content:center;max-height:45px;min-height:35px;padding-bottom:5px;padding-top:10px}.rcb-spinner{animation:rcb-animation-spin 1s linear infinite;border:4px solid #f3f3f3;border-radius:50%;height:22px;width:22px}.rcb-chat-input{align-items:center;background-color:#fff;border-top:1px solid #ccc;display:flex;padding:8px 16px}.rcb-chat-input::placeholder{color:#999}.rcb-chat-input-textarea{background-color:#fff;border:none;border-radius:4px;color:#000;flex:1 1;font-family:inherit;font-size:16px;height:auto;min-height:38px;outline:none;overflow-y:scroll;padding:8px;resize:none;touch-action:none}.rcb-chat-input-textarea::-webkit-scrollbar,.rcb-chat-input-textarea::-webkit-scrollbar-thumb{background-color:initial}.rcb-chat-input-textarea::-webkit-scrollbar-thumb:hover{background-color:initial}.rcb-chat-input-char-counter{font-size:14px;margin-left:8px;margin-top:3px}.rcb-chat-footer-container{align-items:flex-end;background-color:#f2f2f2;border-top:1px solid #ccc;color:#000;display:flex;font-size:12px;justify-content:space-between;max-height:55px;padding:12px 16px 8px 10px}.rcb-chat-footer,.rcb-toggle-button{display:flex;flex-direction:row}.rcb-toggle-button{border:none;border-radius:50%;bottom:20px;box-shadow:0 2px 4px #0003;cursor:pointer;height:75px;position:fixed;right:20px;width:75px;z-index:9999}.rcb-toggle-button.rcb-button-hide{animation:rcb-animation-collapse .3s ease-in-out forwards;opacity:0;visibility:hidden}.rcb-toggle-button.rcb-button-show{animation:rcb-animation-expand .3s ease-in-out forwards;opacity:1;visibility:visible}.rcb-toggle-icon{background-position:50%;background-repeat:no-repeat;background-size:cover;border-radius:inherit;height:100%;margin:auto;width:100%}.rcb-badge,.rcb-toggle-icon{align-items:center;display:flex;justify-content:center}.rcb-badge{background-color:red;border-radius:50%;color:#fff;height:25px;position:absolute;right:-6px;top:-6px;width:25px}.rcb-chat-tooltip{border-radius:20px;box-shadow:0 2px 6px #0003;cursor:pointer;font-size:20px;padding:16px;position:fixed;transition:transform .3s ease;white-space:nowrap;z-index:9999}.rcb-chat-tooltip-tail{border-style:solid;border-width:10px 0 10px 10px;content:"";margin-top:-10px;position:absolute;right:-10px;top:50%}.rcb-chat-tooltip.rcb-tooltip-hide{animation:rcb-animation-tooltip-out .5s ease-in-out;opacity:0;visibility:hidden}.rcb-chat-tooltip.rcb-tooltip-show{animation:rcb-animation-tooltip-in .5s ease-in-out;opacity:1;visibility:visible}.rcb-toast-prompt{animation:rcb-animation-pop-in .3s ease-in-out;background-color:#fff;border:.5px solid #7a7a7a;border-radius:5px;color:#7a7a7a;cursor:pointer;font-size:12px;margin-top:6px;padding:6px 12px;text-align:center;transition:color .3s ease,border-color .3s ease;width:100%;z-index:9999}.rcb-toast-prompt-container{align-items:center;animation:popIn .3s ease-in-out;bottom:0;display:flex;flex-direction:column;justify-content:flex-end;left:50%;margin:200 auto auto;opacity:1;pointer-events:auto;position:absolute;transform:translate(-50%)}.rcb-media-display-image-container,.rcb-media-display-video-container{border-radius:22px;margin-right:16px;margin-top:8px;padding:16px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.rcb-media-display-offset{margin-right:50px!important}.rcb-media-display-image{border-radius:22px;height:auto;object-fit:cover;width:100%}.rcb-media-display-video{background-color:#000;border-radius:22px;height:auto;width:100%}.rcb-media-display-audio{border-radius:22px;height:auto;margin-right:16px;margin-top:8px;width:100%}.rcb-media-entry{animation:rcb-animation-user-message-entry .3s ease-in backwards}.rcb-attach-button-disabled,.rcb-attach-button-enabled{background-size:cover;border-radius:6px;display:inline-block;height:30px;position:relative;text-align:center;width:30px}.rcb-attach-button-disabled input[type=file],.rcb-attach-button-enabled input[type=file]{display:none;height:100%;position:absolute;width:100%}.rcb-attach-button-enabled{cursor:pointer}.rcb-attach-button-disabled{opacity:.5}.rcb-attach-button-enabled:after{background-color:#0000001a;border-radius:50%;content:"";height:0;left:50%;opacity:0;position:absolute;top:50%;transform:translate(-50%,-50%);transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out;width:0}.rcb-attach-button-enabled:hover:after{height:130%;opacity:1;width:130%}.rcb-attach-icon-disabled,.rcb-attach-icon-enabled{background-repeat:no-repeat;background-size:cover;display:inline-block;height:24px;margin-top:2px;transition:background-image .3s ease;width:24px}.rcb-attach-icon-enabled{cursor:pointer}.rcb-emoji-button-disabled,.rcb-emoji-button-enabled{background-size:cover;border-radius:6px;cursor:pointer;display:inline-block;height:30px;position:relative;text-align:center;width:30px}.rcb-emoji-icon-disabled,.rcb-emoji-icon-enabled{background-repeat:no-repeat;background-size:cover;display:inline-block;font-size:20px;height:24px;margin-top:2px;position:relative;width:24px}.rcb-emoji-icon-enabled{cursor:pointer}.rcb-emoji-icon-disabled{opacity:.5}.rcb-emoji-button-enabled:after{background-color:#0000001a;border-radius:50%;content:"";height:0;left:50%;opacity:0;position:absolute;top:50%;transform:translate(-50%,-50%);transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out;width:0}.rcb-emoji-button-enabled:hover:after{height:130%;opacity:1;width:130%}.rcb-emoji-button-popup{background-color:#fff;border:1px solid #ccc;border-radius:4px;box-shadow:0 2px 4px #0003;max-height:200px;overflow-y:auto;padding:8px;position:absolute;transform:translateY(calc(-100% - 30px));width:158px}.rcb-emoji{cursor:pointer;font-size:24px;padding:3px;transition:transform .2s ease-in-out}.rcb-emoji:hover{transform:scale(1.2)}.rcb-audio-icon{background-size:cover;border:none;cursor:pointer;display:inline-block;height:30px;margin-left:5px;position:relative;width:30px}.rcb-audio-icon:after{background-color:#0000001a;border-radius:50%;content:"";height:0;left:50%;opacity:0;position:absolute;top:50%;transform:translate(-50%,-50%);transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out;width:0}.rcb-audio-icon:hover:after{height:130%;opacity:1;width:130%}.rcb-close-chat-icon{background-size:cover;border:none;cursor:pointer;display:inline-block;height:30px;margin-left:5px;position:relative;width:30px}.rcb-close-chat-icon:after{background-color:#0000001a;border-radius:50%;content:"";height:0;left:50%;opacity:0;position:absolute;top:50%;transform:translate(-50%,-50%);transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out;width:0}.rcb-close-chat-icon:hover:after{height:130%;opacity:1;width:130%}.rcb-notification-icon{background-size:cover;border:none;cursor:pointer;display:inline-block;height:30px;margin-left:5px;position:relative;width:30px}.rcb-notification-icon:after{background-color:#0000001a;border-radius:50%;content:"";height:0;left:50%;opacity:0;position:absolute;top:50%;transform:translate(-50%,-50%);transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out;width:0}.rcb-notification-icon:hover:after{height:130%;opacity:1;width:130%}.rcb-voice-button-disabled,.rcb-voice-button-enabled{align-items:center;background-color:#fff;border-radius:4px;box-shadow:0 0 3px #0000004d;cursor:pointer;display:inline-flex;height:32px;justify-content:center;margin-left:8px;text-transform:uppercase;transition:all .3s ease;width:32px}.rcb-voice-button-enabled{border:1px solid red;box-shadow:0 0 3px #ff000080}.rcb-voice-button-enabled:hover{border:1px solid #3d0000}.rcb-voice-button-disabled{border:1px;border-color:#0003;border-style:solid}.rcb-voice-button-disabled:hover{box-shadow:0 0 3px #8a0000}.rcb-voice-icon{background-position:50%;background-repeat:no-repeat;background-size:cover;background-size:contain;height:60%;object-fit:cover;width:60%}.rcb-voice-icon.on{animation:rcb-animation-ping 1s infinite}.rcb-send-button{border:none;border-radius:4px;box-shadow:0 0 3px #0000004d;cursor:pointer;display:inline-flex;height:32px;justify-content:center;margin-left:8px;text-transform:uppercase;transition:background-color .3s ease;width:51px}.rcb-send-icon{background-position:50%;background-repeat:no-repeat;background-size:cover;background-size:contain;height:50%;object-fit:cover;transform:translateY(20%);width:50%}.rcb-view-history-container{align-items:center;display:flex;justify-content:center;max-height:45px;min-height:35px;padding-bottom:5px;padding-top:10px}.rcb-view-history-button{align-items:center;background-color:#fff;border:.5px solid #adadad;border-radius:20px;color:#adadad;cursor:pointer;display:inline-flex;font-size:12px;justify-content:center;max-width:60%;padding:6px 12px;transition:color .3s ease,border-color .3s ease}.rcb-view-history-button>p{margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.rcb-chatbot-global{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1.5;z-index:9999}.rcb-chat-window{background-color:#fff;border-radius:10px;bottom:20px;box-shadow:0 2px 4px #0003;display:flex;flex-direction:column;height:550px;overflow:hidden;position:fixed;right:20px;transition:all .3s ease;width:375px}.rcb-window-embedded .rcb-chat-window{bottom:auto;opacity:1;position:relative;right:auto;visibility:visible}.rcb-window-open .rcb-chat-window{animation:rcb-animation-expand .3s ease-in-out forwards;opacity:1;visibility:visible}.rcb-window-close .rcb-chat-window{animation:rcb-animation-collapse .3s ease-in-out forwards;opacity:0;visibility:hidden}@keyframes rcb-animation-expand{0%{opacity:0;transform:translate(100%,100%) scale(0)}to{opacity:1;transform:translate(0) scale(1)}}@keyframes rcb-animation-collapse{0%{opacity:1;transform:translate(0) scale(1)}to{opacity:0;transform:translate(100%,100%) scale(0)}}@keyframes rcb-animation-ping{0%{filter:brightness(100%);opacity:1}50%{filter:brightness(50%);opacity:.8}}@keyframes rcb-animation-bot-message-entry{0%{opacity:0;transform:translate(-100%,50%) scale(0)}to{opacity:1;transform:translate(0) scale(1)}}@keyframes rcb-animation-user-message-entry{0%{opacity:0;transform:translate(100%,50%) scale(0)}to{opacity:1;transform:translate(0) scale(1)}}@keyframes rcb-animation-bot-typing{0%{opacity:.4}50%{opacity:1}to{opacity:.4}}@keyframes rcb-animation-pop-in{0%{opacity:0;transform:scale(.8)}70%{opacity:1;transform:scale(1.1)}to{transform:scale(1)}}@keyframes rcb-animations-checkboxes-entry{0%{opacity:0;transform:translate(-100%)}to{opacity:1;transform:translate(0)}}@keyframes rcb-animation-options-entry{0%{opacity:0;transform:scale(0)}to{opacity:1;transform:scale(1)}}@keyframes rcb-animation-tooltip-in{0%{opacity:0;transform:translateY(-5px)}to{opacity:1;transform:translateY(0)}}@keyframes rcb-animation-tooltip-out{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(-5px)}}@keyframes rcb-animation-spin{0%{transform:rotate(0)}to{transform:rotate(1turn)}}
|
|
2
|
-
/*# sourceMappingURL=main.css.map*/
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"static/css/main.css","mappings":"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","sources":["styles/index.css","index.css","../node_modules/react-chatbotify/dist/style.css"],"sourcesContent":["/**\n * QA Bot Styles - Consolidated\n *\n * All styles for the QA Bot component in one place.\n * No @import indirection - everything is directly included.\n */\n\n/* General React Chatbotify (rcb) styles */\n.rcb-toggle-icon {\n background-size: 62% !important;\n background-position: calc(50% - 1px) calc(50% + 2px);\n background-repeat: no-repeat;\n background-color: transparent !important;\n}\n\n.rcb-chat-window {\n width: 550px !important;\n max-width: calc(100%);\n height: 800px !important;\n max-height: 80vh !important;\n}\n\n.rcb-chat-window .rcb-bot-avatar {\n background-size: contain;\n border-radius: 0;\n background-position: center;\n background-repeat: no-repeat;\n}\n\n.rcb-chat-window .rcb-chat-header {\n display: flex;\n flex-direction: row;\n align-items: center;\n font-weight: 700;\n}\n\n.rcb-chat-window a {\n font-weight: 700;\n color: #000000;\n text-decoration: underline;\n}\n\n.rcb-chat-window a:hover {\n color: #107180;\n}\n\n.rcb-chat-window .rcb-bot-message a {\n text-decoration: none;\n color: #ffffff;\n}\n\n.rcb-chat-window .rcb-bot-message a:hover {\n text-decoration: underline;\n}\n\n.rcb-chat-window .rcb-chat-input-textarea {\n overflow-y: auto;\n}\n\n.rcb-chat-window .rcb-chat-footer-container {\n font-size: 10px;\n}\n\n.qa-bot .user-login-icon {\n display: none !important;\n}\n\n.qa-bot.bot-logged-in .user-login-icon {\n display: flex !important;\n transform: scale(1.3) translateY(-2px);\n}\n\n/* Embedded bot styles */\n.embedded-qa-bot .rcb-chat-window {\n width: 100% !important;\n max-width: 100%;\n}\n\n.qa-bot.hidden {\n display: none;\n}\n\n.embedded-qa-bot .rcb-bot-message,\n.embedded-qa-bot .rcb-user-message {\n max-width: 90% !important;\n word-break: break-word;\n}\n\n.embedded-qa-bot .rcb-chat-input-textarea {\n width: 100% !important;\n}\n\n.qa-bot-container {\n width: 100%;\n max-width: 100%;\n}\n\n.rcb-tooltip-show.phone-ring {\n animation: phone-ring 3s ease-out !important;\n z-index: 10000 !important;\n}\n\n@keyframes phone-ring {\n 0% {\n transform: translateX(0) translateY(0) rotate(0deg);\n }\n /* First ring - quick shake */\n 2% {\n transform: translateX(0) translateY(-8px) rotate(-2deg);\n }\n 4% {\n transform: translateX(0) translateY(-6px) rotate(2deg);\n }\n 6% {\n transform: translateX(0) translateY(-8px) rotate(-1deg);\n }\n 8% {\n transform: translateX(0) translateY(-6px) rotate(1deg);\n }\n 10% {\n transform: translateX(0) translateY(-8px) rotate(-2deg);\n }\n 12% {\n transform: translateX(0) translateY(-6px) rotate(2deg);\n }\n /* Settle down */\n 20% {\n transform: translateX(0) translateY(0) rotate(0deg);\n }\n 30% {\n transform: translateX(0) translateY(0) rotate(0deg);\n }\n 40% {\n transform: translateX(0) translateY(0) rotate(0deg);\n }\n 49% {\n transform: translateX(0) translateY(0) rotate(0deg);\n }\n /* Second ring - quick shake */\n 50% {\n transform: translateX(0) translateY(-8px) rotate(-2deg);\n }\n 52% {\n transform: translateX(0) translateY(-6px) rotate(2deg);\n }\n 54% {\n transform: translateX(0) translateY(-8px) rotate(-1deg);\n }\n 56% {\n transform: translateX(0) translateY(-6px) rotate(1deg);\n }\n 58% {\n transform: translateX(0) translateY(-8px) rotate(-2deg);\n }\n 60% {\n transform: translateX(0) translateY(-6px) rotate(2deg);\n }\n /* Final settle */\n 70% {\n transform: translateX(0) translateY(0) rotate(0deg);\n }\n 100% {\n transform: translateX(0) translateY(0) rotate(0deg);\n }\n}\n\n/* Responsive styles */\n@media (max-width: 768px) {\n /* Mobile tablet breakpoint */\n .rcb-chat-window {\n width: 550px !important;\n max-width: calc(100vw - 40px) !important;\n max-height: calc(100vh - 100px) !important;\n }\n\n .embedded-chat-container.open {\n height: 400px;\n }\n\n .embedded-chat-closed {\n height: 40px;\n font-size: 14px;\n }\n\n .embedded-chat-open-btn {\n padding: 3px 10px;\n font-size: 12px;\n }\n\n /* Adjust message bubbles for smaller screens */\n .rcb-bot-message,\n .rcb-user-message {\n max-width: 85% !important;\n }\n\n /* Make input area touch-friendly */\n .rcb-chat-input-textarea {\n font-size: 16px !important; /* Prevents zoom on iOS */\n min-height: 44px !important; /* Apple's recommended touch target */\n }\n\n /* Header adjustments */\n .rcb-chat-header {\n padding: 12px 16px !important;\n }\n}\n\n@media (max-width: 480px) {\n /* Mobile phone breakpoint */\n .rcb-chat-window {\n width: calc(100vw - 20px) !important;\n max-width: calc(100vw - 20px) !important;\n max-height: calc(100vh - 80px) !important;\n left: 10px !important;\n right: 10px !important;\n bottom: 10px !important;\n }\n\n .embedded-chat-container.open {\n height: 350px;\n }\n\n /* Tighter message spacing on small screens */\n .rcb-bot-message,\n .rcb-user-message {\n max-width: 90% !important;\n margin-bottom: 8px !important;\n }\n\n /* Compact header for small screens */\n .rcb-chat-header {\n padding: 8px 12px !important;\n font-size: 14px !important;\n }\n\n /* Smaller chat button on mobile */\n .rcb-chat-button {\n width: 50px !important;\n height: 50px !important;\n bottom: 20px !important;\n right: 20px !important;\n }\n\n /* Adjust footer for mobile */\n .rcb-chat-footer-container {\n font-size: 9px !important;\n padding: 8px 12px !important;\n }\n}\n\n@media (max-width: 360px) {\n /* Very small mobile screens */\n .rcb-chat-window {\n width: calc(100vw - 10px) !important;\n max-width: calc(100vw - 10px) !important;\n left: 5px !important;\n right: 5px !important;\n }\n\n .rcb-chat-header {\n padding: 6px 8px !important;\n font-size: 13px !important;\n }\n}\n\n/* Enhanced inline checkbox styling */\n.rcb-checkbox-container {\n display: flex !important;\n flex-wrap: wrap !important;\n gap: 8px !important;\n margin-left: 16px !important;\n padding-top: 12px !important;\n max-width: 100% !important;\n}\n\n.rcb-checkbox-row-container {\n display: flex !important;\n align-items: center !important;\n background-color: #ffffff !important;\n border: 1px solid #d0d0d0 !important;\n border-radius: 6px !important;\n cursor: pointer !important;\n padding: 8px 12px !important;\n margin: 0 !important;\n min-height: auto !important;\n max-height: auto !important;\n width: auto !important;\n flex: 0 0 auto !important;\n transition: all 0.2s ease !important;\n font-size: 14px !important;\n font-weight: 400 !important;\n color: #107180 !important;\n text-align: center !important;\n box-sizing: border-box !important;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}\n\n.rcb-checkbox-row-container:hover {\n background-color: #e8f4f8 !important;\n border-color: #107180 !important;\n transform: translateY(-1px) !important;\n box-shadow: 0 2px 4px rgba(16, 113, 128, 0.2) !important;\n}\n\n.rcb-checkbox-row-container[data-checked=\"true\"] {\n background-color: #107180 !important;\n border-color: #107180 !important;\n color: white !important;\n}\n\n.rcb-checkbox-row {\n margin-left: 0px !important;\n}\n\n.rcb-checkbox-mark {\n width: 14px !important;\n height: 14px !important;\n margin-right: 6px !important;\n}\n\n.rcb-checkbox-label {\n font-size: 13px !important;\n margin: 0 !important;\n white-space: nowrap !important;\n}\n\n.rcb-checkbox-next-button {\n background-color: #ffffff !important;\n border: 1px solid #d0d0d0 !important;\n border-radius: 6px !important;\n cursor: pointer !important;\n padding: 8px 12px !important;\n margin: 0 !important;\n min-height: auto !important;\n max-height: auto !important;\n width: auto !important;\n flex: 0 0 auto !important;\n transition: all 0.2s ease !important;\n font-size: 14px !important;\n font-weight: 400 !important;\n color: #107180 !important;\n text-align: center !important;\n box-sizing: border-box !important;\n line-height: 24px !important;\n display: flex !important;\n align-items: center !important;\n justify-content: center !important;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}\n\n.rcb-checkbox-next-button:hover {\n background-color: #e8f4f8 !important;\n border-color: #107180 !important;\n transform: translateY(-1px) !important;\n box-shadow: 0 2px 4px rgba(16, 113, 128, 0.2) !important;\n}\n\n/* Screen reader only class for accessibility */\n.sr-only {\n position: absolute !important;\n width: 1px !important;\n height: 1px !important;\n padding: 0 !important;\n margin: -1px !important;\n overflow: hidden !important;\n clip: rect(0, 0, 0, 0) !important;\n white-space: nowrap !important;\n border: 0 !important;\n}\n\n/* Focus styles for better accessibility */\n.rcb-chat-input-textarea:focus {\n outline: 2px solid #107180 !important;\n outline-offset: 2px !important;\n}\n\n.rcb-chat-input-send-button:focus {\n outline: 2px solid #107180 !important;\n outline-offset: 2px !important;\n}\n\n/* Fix horizontal scroll bar in user messages */\n.rcb-user-message {\n overflow: hidden !important;\n word-wrap: break-word !important;\n word-break: break-word !important;\n}\n\n/* Enhanced accessibility styles */\n*:focus-visible {\n outline: 2px solid #107180 !important;\n outline-offset: 2px !important;\n}\n\n/* Keyboard navigation for chatbot options */\n.rcb-options-container {\n display: flex !important;\n flex-direction: row !important;\n flex-wrap: wrap !important;\n gap: 8px !important;\n margin: 16px 16px !important;\n padding: 0 !important;\n}\n\n/* Style the actual React ChatBotify option divs */\n.rcb-options {\n /* Restore original button-like appearance */\n border: 1px solid #d0d0d0 !important;\n outline: none !important;\n background-color: #ffffff !important;\n border-radius: 6px !important;\n padding: 8px 12px !important;\n cursor: pointer !important;\n transition: all 0.2s ease !important;\n text-align: center !important;\n font-size: 14px !important;\n font-weight: 400 !important;\n color: #107180 !important;\n width: auto !important;\n flex: 0 0 auto !important;\n box-sizing: border-box !important;\n /* Make divs focusable */\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}\n\n.rcb-options:hover {\n background-color: #e8f4f8 !important;\n border-color: #107180 !important;\n transform: translateY(-1px) !important;\n box-shadow: 0 2px 4px rgba(16, 113, 128, 0.2) !important;\n}\n\n.rcb-options:focus,\n.rcb-options:focus-visible,\n.rcb-options.keyboard-focused,\n.rcb-checkbox-row-container:focus,\n.rcb-checkbox-row-container:focus-visible,\n.rcb-checkbox-row-container.keyboard-focused,\n.rcb-checkbox-next-button:focus,\n.rcb-checkbox-next-button:focus-visible,\n.rcb-checkbox-next-button.keyboard-focused {\n outline: none !important;\n background-color: #e8f4f8 !important;\n border-color: #107180 !important;\n}\n\n.rcb-options:active {\n background-color: #107180 !important;\n border-color: #107180 !important;\n color: white !important;\n transform: translateY(0) !important;\n}\n\n/* Keyboard navigation hints */\n.keyboard-nav-hint {\n font-size: 12px !important;\n color: #666 !important;\n margin-bottom: 8px !important;\n font-style: italic !important;\n}\n\n/* Hide navigation hint for screen readers since they have their own navigation */\n@media (prefers-reduced-motion: reduce) {\n .keyboard-nav-hint {\n display: none !important;\n }\n}\n\n/* Focus trap and navigation for option buttons */\n.rcb-options-container button[tabindex=\"0\"],\n.rcb-options-container [role=\"button\"][tabindex=\"0\"] {\n position: relative !important;\n}\n\n.rcb-options-container button[tabindex=\"0\"]::after,\n.rcb-options-container [role=\"button\"][tabindex=\"0\"]::after {\n content: \"←\" !important;\n position: absolute !important;\n right: 12px !important;\n top: 50% !important;\n transform: translateY(-50%) !important;\n font-size: 16px !important;\n color: #107180 !important;\n opacity: 0 !important;\n transition: opacity 0.2s ease !important;\n}\n\n.rcb-options-container button[tabindex=\"0\"]:focus::after,\n.rcb-options-container [role=\"button\"][tabindex=\"0\"]:focus::after {\n opacity: 1 !important;\n}\n\n/* Make send button div focusable and accessible */\n.rcb-chat-input-send-button {\n pointer-events: auto !important;\n opacity: 1 !important;\n visibility: visible !important;\n cursor: pointer !important;\n}\n\n/* Force tabindex on send button using CSS */\n.rcb-chat-input-send-button:not([tabindex]) {\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}\n\n/* Target any clickable element in the input container that might be the send button */\n.rcb-chat-input-container [onclick],\n.rcb-chat-input-container [role=\"button\"],\n.rcb-chat-input-container div[style*=\"cursor\"],\n.rcb-chat-input-container svg:last-child,\n.rcb-chat-input-container > div:last-child {\n tabindex: 0 !important;\n cursor: pointer !important;\n}\n\n/* Move New Chat button closer to input area */\n.rcb-chat-footer {\n margin-top: 4px !important;\n padding-top: 0px !important;\n}\n\n.rcb-chat-footer-container {\n margin-top: 4px !important;\n padding-top: 4px !important;\n display: flex !important;\n align-items: center !important;\n}\n\n/* Tab order for footer elements */\n.rcb-chat-footer-container button {\n order: 1 !important;\n}\n\n.rcb-chat-footer-container a[href*=\"access-qa-tool\"] {\n order: 2 !important;\n tab-index: 0 !important;\n}\n\n.rcb-chat-footer-container a[href*=\"feedback\"] {\n order: 3 !important;\n tab-index: 0 !important;\n}\n\n/* High contrast mode support */\n@media (prefers-contrast: high) {\n .rcb-chat-window a {\n color: #000000 !important;\n background-color: #ffffff !important;\n border: 1px solid #000000 !important;\n }\n}\n\n/* Reduced motion support */\n@media (prefers-reduced-motion: reduce) {\n * {\n animation-duration: 0.01ms !important;\n animation-iteration-count: 1 !important;\n transition-duration: 0.01ms !important;\n }\n}\n\n/* Fix mobile scrolling issues - especially Safari zoom-instead-of-scroll */\n.rcb-chat-input-textarea {\n touch-action: pan-y !important;\n user-select: text !important;\n}\n\n.rcb-chat-body-container {\n touch-action: pan-y !important;\n}\n\n/* Allow page scrolling even when chat is present */\n.rcb-chat-window {\n touch-action: pan-y !important;\n}\n\n/* Safari-specific fixes */\n.rcb-chat-window,\n.embedded-qa-bot {\n -webkit-overflow-scrolling: touch !important;\n}\n\n/* Specific fixes for embedded qa-bot */\n.embedded-qa-bot .rcb-chat-input-textarea {\n touch-action: pan-y !important;\n user-select: text !important;\n}\n\n.embedded-qa-bot .rcb-chat-body-container {\n touch-action: pan-y !important;\n}\n\n.embedded-qa-bot .rcb-chat-window {\n touch-action: pan-y !important;\n}","@import './styles/index.css';\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',\n 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',\n sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\ncode {\n font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',\n monospace;\n}\n\n/* Demo styles */\n.demo-container {\n padding: 20px;\n background-color: #f5f5f5;\n border-bottom: 1px solid #ddd;\n margin-bottom: 20px;\n}\n\n.demo-title {\n margin-bottom: 20px;\n font-size: 1.2em;\n font-weight: bold;\n}\n\n.demo-controls {\n display: flex;\n gap: 20px;\n flex-wrap: wrap;\n align-items: flex-start;\n}\n\n.demo-section {\n flex: 1;\n min-width: 200px;\n}\n\n.demo-section h3 {\n margin: 0 0 10px 0;\n font-size: 1em;\n}\n\n.demo-checkbox {\n display: block;\n margin-bottom: 15px;\n font-size: 0.95em;\n}\n\n.demo-checkbox:last-child {\n margin-bottom: 10px;\n}\n\n.demo-checkbox input {\n margin-right: 8px;\n}\n\n.demo-message-section {\n flex: 1;\n min-width: 250px;\n}\n\n.demo-send-button {\n padding: 8px 16px;\n color: white;\n border: none;\n border-radius: 4px;\n font-size: 0.9em;\n background-color: #1a5b6e;\n cursor: pointer;\n}\n\n.demo-info {\n margin-top: 15px;\n padding: 12px;\n background-color: #e8f4f8;\n border-radius: 4px;\n font-size: 0.85em;\n color: #555;\n}\n\n.demo-field {\n margin-bottom: 15px;\n}\n\n.demo-field label {\n display: block;\n margin-bottom: 5px;\n font-weight: 500;\n font-size: 0.9em;\n color: #333;\n}\n\n.demo-input {\n width: 100%;\n max-width: 250px;\n padding: 6px 10px;\n border: 1px solid #ccc;\n border-radius: 4px;\n font-size: 0.9em;\n box-sizing: border-box;\n}\n\n.demo-input:focus {\n outline: none;\n border-color: #1a5b6e;\n box-shadow: 0 0 0 2px rgba(26, 91, 110, 0.1);\n}\n\n.demo-help {\n margin: 0 0 15px 0;\n font-size: 0.85em;\n color: #666;\n font-style: italic;\n}\n",".rcb-chat-header-container{padding:12px;color:#fff;border-bottom:1px solid #ccc;display:flex;justify-content:space-between;max-height:55px}.rcb-chat-header{display:flex;flex-direction:row}.rcb-bot-avatar{background-size:cover;width:30px;height:30px;border-radius:50%;margin-right:12px}.rcb-message-prompt-container.visible{position:sticky;bottom:0;margin:auto;display:flex;align-items:center;justify-content:center;opacity:1;animation:rcb-animation-pop-in .3s ease-in-out;pointer-events:auto}.rcb-message-prompt-container.hidden{opacity:0;height:0px;visibility:hidden;pointer-events:none}.rcb-message-prompt-text{padding:6px 12px;border-radius:20px;color:#adadad;font-size:12px;background-color:#fff;border:.5px solid #adadad;cursor:pointer;transition:color .3s ease,border-color .3s ease;z-index:9999}.rcb-message-prompt-container.hidden .rcb-message-prompt-text{padding:0}.rcb-user-message-container{display:flex;flex-direction:row;justify-content:right}.rcb-user-message{margin-top:8px;padding:12px 16px;border-radius:22px;min-height:20px;height:fit-content;width:fit-content;font-size:15px;overflow-wrap:anywhere;overflow:auto;white-space:pre-wrap;text-align:right;margin-right:16px}.rcb-user-message-offset{margin-right:50px}.rcb-user-message-entry{animation:rcb-animation-user-message-entry .3s ease-in backwards}.rcb-message-user-avatar{background-size:cover;width:40px;height:40px;border-radius:50%;margin-top:9px}.rcb-message-user-avatar{margin-left:-10px;margin-right:6px}.rcb-bot-message-container{display:flex;flex-direction:row}.rcb-bot-message{margin-top:8px;padding:12px 16px;border-radius:22px;min-height:20px;height:fit-content;width:fit-content;font-size:15px;overflow-wrap:anywhere;overflow:auto;white-space:pre-wrap;text-align:left;margin-left:16px}.rcb-bot-message-offset{margin-left:50px}.rcb-bot-message-entry{animation:rcb-animation-bot-message-entry .3s ease-in backwards}.rcb-message-bot-avatar{background-size:cover;width:40px;height:40px;border-radius:50%;margin-top:9px}.rcb-message-bot-avatar{margin-left:6px;margin-right:-10px}.rcb-typing-indicator{display:flex;align-items:center}.rcb-dot{width:8px;height:8px;border-radius:50%;background-color:#ccc;margin-right:4px;animation:rcb-animation-bot-typing 1s infinite}.rcb-dot:nth-child(2){animation-delay:.2s}.rcb-dot:nth-child(3){animation-delay:.4s}.rcb-chat-body-container{position:relative;height:100%;width:100%;padding-bottom:16px;overflow-x:hidden;overflow-y:scroll;touch-action:pan-y}.rcb-chat-body-container::-webkit-scrollbar-track{background-color:#f1f1f1}.rcb-chat-body-container::-webkit-scrollbar-thumb{background-color:#ddd;border-radius:4px}.rcb-chat-body-container::-webkit-scrollbar-thumb:hover{background-color:#cfcfcf}.rcb-chat-body-container::-webkit-scrollbar-corner{background-color:#f1f1f1}.rcb-checkbox-container{display:flex;padding-top:12px;margin-left:16px;flex-wrap:wrap;gap:10px}.rcb-checkbox-offset{margin-left:50px!important}.rcb-checkbox-row-container{display:flex;align-items:center;gap:5px;border-width:.5px;border-style:solid;border-radius:10px;min-height:30px;max-height:32px;width:80%;cursor:pointer;background-color:#fff;animation:rcb-animations-checkboxes-entry .5s ease-out;overflow:hidden}.rcb-checkbox-row-container:hover{box-shadow:0 0 5px #0003}.rcb-checkbox-row{display:inline-flex;margin-left:10px;align-items:center;cursor:pointer}.rcb-checkbox-mark{width:20px;height:20px;background-color:#f2f2f2;border-radius:50%;border:none;display:flex;align-items:center;justify-content:center;transition:all .3s ease;margin-right:10px;cursor:pointer}.rcb-checkbox-mark:hover{background-color:#c2c2c2}.rcb-checkbox-mark:before{content:\"✓\";transition:all .3s ease}.rcb-checkbox-label{font-size:14px}.rcb-checkbox-next-button{text-align:center;display:inline-block;align-items:center;border-width:.5px;border-style:solid;border-radius:10px;font-size:24px;min-height:30px;max-height:32px;width:80%;cursor:pointer;background-color:#fff;animation:rcb-animations-checkboxes-entry .5s ease-out}.rcb-checkbox-next-button:before{content:\"→\"}.rcb-checkbox-next-button:hover{box-shadow:0 0 5px #0003}.rcb-options-container{padding-top:12px;margin-left:16px;max-width:70%;display:flex;flex-wrap:wrap;gap:10px}.rcb-options-offset{margin-left:50px!important}.rcb-options{display:inline-flex;align-items:center;justify-content:center;padding:10px 20px;border-radius:20px;font-size:14px;border-width:.5px;border-style:solid;cursor:pointer;transition:background-color .3s ease;animation:rcb-animation-options-entry .5s ease-out;overflow:hidden}.rcb-options:hover{box-shadow:0 0 5px #0003}.rcb-line-break-container{display:flex;justify-content:center;align-items:center;padding-top:10px;padding-bottom:5px;max-height:45px}.rcb-line-break-text{padding:6px 12px;color:#adadad;font-size:12px}.rcb-spinner-container{display:flex;justify-content:center;align-items:center;padding-top:10px;padding-bottom:5px;min-height:35px;max-height:45px}.rcb-spinner{width:22px;height:22px;border-radius:50%;border:4px solid #f3f3f3;animation:rcb-animation-spin 1s linear infinite}.rcb-chat-input{padding:8px 16px;border-top:1px solid #ccc;display:flex;align-items:center;background-color:#fff}.rcb-chat-input::placeholder{color:#999}.rcb-chat-input-textarea{flex:1;padding:8px;border:none;border-radius:4px;outline:none;font-size:16px;resize:none;height:auto;min-height:38px;overflow-y:scroll;font-family:inherit;background-color:#fff;color:#000;touch-action:none}.rcb-chat-input-textarea::-webkit-scrollbar{background-color:transparent}.rcb-chat-input-textarea::-webkit-scrollbar-thumb{background-color:transparent}.rcb-chat-input-textarea::-webkit-scrollbar-thumb:hover{background-color:transparent}.rcb-chat-input-char-counter{font-size:14px;margin-left:8px;margin-top:3px}.rcb-chat-footer-container{padding:12px 16px 8px 10px;border-top:1px solid #ccc;max-height:55px;display:flex;justify-content:space-between;align-items:flex-end;font-size:12px;background-color:#f2f2f2;color:#000}.rcb-chat-footer{display:flex;flex-direction:row}.rcb-toggle-button{display:flex;flex-direction:row;position:fixed;bottom:20px;right:20px;z-index:9999;width:75px;height:75px;border-radius:50%;border:none;cursor:pointer;box-shadow:0 2px 4px #0003}.rcb-toggle-button.rcb-button-hide{opacity:0;visibility:hidden;animation:rcb-animation-collapse .3s ease-in-out forwards}.rcb-toggle-button.rcb-button-show{opacity:1;visibility:visible;animation:rcb-animation-expand .3s ease-in-out forwards}.rcb-toggle-icon{display:flex;justify-content:center;align-items:center;width:100%;height:100%;background-position:center;background-size:cover;background-repeat:no-repeat;margin:auto;border-radius:inherit}.rcb-badge{position:absolute;top:-6px;right:-6px;border-radius:50%;background-color:red;color:#fff;height:25px;width:25px;display:flex;justify-content:center;align-items:center}.rcb-chat-tooltip{position:fixed;padding:16px;border-radius:20px;box-shadow:0 2px 6px #0003;white-space:nowrap;cursor:pointer;font-size:20px;transition:transform .3s ease;z-index:9999}.rcb-chat-tooltip-tail{content:\"\";position:absolute;top:50%;right:-10px;margin-top:-10px;border-width:10px 0 10px 10px;border-style:solid}.rcb-chat-tooltip.rcb-tooltip-hide{opacity:0;visibility:hidden;animation:rcb-animation-tooltip-out .5s ease-in-out}.rcb-chat-tooltip.rcb-tooltip-show{opacity:1;visibility:visible;animation:rcb-animation-tooltip-in .5s ease-in-out}.rcb-toast-prompt{padding:6px 12px;border-radius:5px;color:#7a7a7a;font-size:12px;text-align:center;background-color:#fff;border:.5px solid #7a7a7a;cursor:pointer;transition:color .3s ease,border-color .3s ease;z-index:9999;width:100%;margin-top:6px;animation:rcb-animation-pop-in .3s ease-in-out}.rcb-toast-prompt-container{position:absolute;left:50%;transform:translate(-50%);bottom:0;margin:auto;display:flex;align-items:center;justify-content:flex-end;flex-direction:column;opacity:1;animation:popIn .3s ease-in-out;pointer-events:auto;margin-top:200}.rcb-media-display-image-container,.rcb-media-display-video-container{margin-top:8px;margin-right:16px;border-radius:22px;padding:16px;width:fit-content}.rcb-media-display-offset{margin-right:50px!important}.rcb-media-display-image{width:100%;height:auto;border-radius:22px;object-fit:cover}.rcb-media-display-video{width:100%;height:auto;border-radius:22px;background-color:#000}.rcb-media-display-audio{margin-top:8px;margin-right:16px;width:100%;height:auto;border-radius:22px}.rcb-media-entry{animation:rcb-animation-user-message-entry .3s ease-in backwards}.rcb-attach-button-enabled,.rcb-attach-button-disabled{position:relative;display:inline-block;background-size:cover;width:30px;height:30px;border-radius:6px;text-align:center}.rcb-attach-button-enabled input[type=file],.rcb-attach-button-disabled input[type=file]{position:absolute;width:100%;height:100%;display:none}.rcb-attach-button-enabled{cursor:pointer}.rcb-attach-button-disabled{opacity:.5}.rcb-attach-button-enabled:after{content:\"\";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:0;height:0;background-color:#0000001a;border-radius:50%;opacity:0;transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out}.rcb-attach-button-enabled:hover:after{width:130%;height:130%;opacity:1}.rcb-attach-icon-enabled,.rcb-attach-icon-disabled{display:inline-block;width:24px;height:24px;margin-top:2px;background-repeat:no-repeat;background-size:cover;transition:background-image .3s ease}.rcb-attach-icon-enabled{cursor:pointer}.rcb-emoji-button-enabled,.rcb-emoji-button-disabled{position:relative;display:inline-block;background-size:cover;width:30px;height:30px;border-radius:6px;text-align:center;cursor:pointer}.rcb-emoji-icon-enabled,.rcb-emoji-icon-disabled{position:relative;display:inline-block;background-size:cover;font-size:20px;width:24px;height:24px;margin-top:2px;background-repeat:no-repeat}.rcb-emoji-icon-enabled{cursor:pointer}.rcb-emoji-icon-disabled{opacity:.5}.rcb-emoji-button-enabled:after{content:\"\";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:0;height:0;background-color:#0000001a;border-radius:50%;opacity:0;transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out}.rcb-emoji-button-enabled:hover:after{width:130%;height:130%;opacity:1}.rcb-emoji-button-popup{position:absolute;width:158px;background-color:#fff;border:1px solid #ccc;border-radius:4px;padding:8px;box-shadow:0 2px 4px #0003;max-height:200px;overflow-y:auto;transform:translateY(calc(-100% - 30px))}.rcb-emoji{cursor:pointer;font-size:24px;padding:3px;transition:transform .2s ease-in-out}.rcb-emoji:hover{transform:scale(1.2)}.rcb-audio-icon{position:relative;display:inline-block;background-size:cover;width:30px;height:30px;border:none;cursor:pointer;margin-left:5px}.rcb-audio-icon:after{content:\"\";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:0;height:0;background-color:#0000001a;border-radius:50%;opacity:0;transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out}.rcb-audio-icon:hover:after{width:130%;height:130%;opacity:1}.rcb-close-chat-icon{position:relative;display:inline-block;background-size:cover;width:30px;height:30px;border:none;margin-left:5px;cursor:pointer}.rcb-close-chat-icon:after{content:\"\";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:0;height:0;background-color:#0000001a;border-radius:50%;opacity:0;transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out}.rcb-close-chat-icon:hover:after{width:130%;height:130%;opacity:1}.rcb-notification-icon{position:relative;display:inline-block;background-size:cover;width:30px;height:30px;border:none;cursor:pointer;margin-left:5px}.rcb-notification-icon:after{content:\"\";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:0;height:0;background-color:#0000001a;border-radius:50%;opacity:0;transition:width .2s ease-out,height .2s ease-out,opacity .2s ease-out}.rcb-notification-icon:hover:after{width:130%;height:130%;opacity:1}.rcb-voice-button-enabled,.rcb-voice-button-disabled{display:inline-flex;align-items:center;justify-content:center;text-transform:uppercase;border-radius:4px;box-shadow:0 0 3px #0000004d;cursor:pointer;height:32px;width:32px;margin-left:8px;transition:all .3s ease;background-color:#fff}.rcb-voice-button-enabled{border:1px solid red;box-shadow:0 0 3px #ff000080}.rcb-voice-button-enabled:hover{border:1px solid rgb(61,0,0)}.rcb-voice-button-disabled{border:1px;border-style:solid;border-color:#0003}.rcb-voice-button-disabled:hover{box-shadow:0 0 3px #8a0000}.rcb-voice-icon{width:60%;height:60%;background-size:cover;object-fit:cover;background-size:contain;background-repeat:no-repeat;background-position:center}.rcb-voice-icon.on{animation:rcb-animation-ping 1s infinite}.rcb-send-button{display:inline-flex;justify-content:center;text-transform:uppercase;border:none;border-radius:4px;box-shadow:0 0 3px #0000004d;cursor:pointer;transition:background-color .3s ease;height:32px;width:51px;margin-left:8px}.rcb-send-icon{width:50%;height:50%;transform:translateY(20%);background-size:cover;object-fit:cover;background-size:contain;background-repeat:no-repeat;background-position:center}.rcb-view-history-container{display:flex;justify-content:center;align-items:center;padding-top:10px;padding-bottom:5px;min-height:35px;max-height:45px}.rcb-view-history-button{display:inline-flex;align-items:center;justify-content:center;padding:6px 12px;border-radius:20px;color:#adadad;font-size:12px;background-color:#fff;border-color:#adadad;border-width:.5px;border-style:solid;max-width:60%;cursor:pointer;transition:color .3s ease,border-color .3s ease}.rcb-view-history-button>p{margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.rcb-chatbot-global{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1.5;z-index:9999}.rcb-chat-window{position:fixed;right:20px;bottom:20px;border-radius:10px;box-shadow:0 2px 4px #0003;background-color:#fff;transition:all .3s ease;overflow:hidden;display:flex;flex-direction:column;width:375px;height:550px}.rcb-window-embedded .rcb-chat-window{position:relative;opacity:1;visibility:visible;right:auto;bottom:auto}.rcb-window-open .rcb-chat-window{opacity:1;visibility:visible;animation:rcb-animation-expand .3s ease-in-out forwards}.rcb-window-close .rcb-chat-window{opacity:0;visibility:hidden;animation:rcb-animation-collapse .3s ease-in-out forwards}@keyframes rcb-animation-expand{0%{transform:translate(100%,100%) scale(0);opacity:0}to{transform:translate(0) scale(1);opacity:1}}@keyframes rcb-animation-collapse{0%{transform:translate(0) scale(1);opacity:1}to{transform:translate(100%,100%) scale(0);opacity:0}}@keyframes rcb-animation-ping{0%{filter:brightness(100%);opacity:1}50%{filter:brightness(50%);opacity:.8}}@keyframes rcb-animation-bot-message-entry{0%{transform:translate(-100%,50%) scale(0);opacity:0}to{transform:translate(0) scale(1);opacity:1}}@keyframes rcb-animation-user-message-entry{0%{transform:translate(100%,50%) scale(0);opacity:0}to{transform:translate(0) scale(1);opacity:1}}@keyframes rcb-animation-bot-typing{0%{opacity:.4}50%{opacity:1}to{opacity:.4}}@keyframes rcb-animation-pop-in{0%{transform:scale(.8);opacity:0}70%{transform:scale(1.1);opacity:1}to{transform:scale(1)}}@keyframes rcb-animations-checkboxes-entry{0%{transform:translate(-100%);opacity:0}to{transform:translate(0);opacity:1}}@keyframes rcb-animation-options-entry{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes rcb-animation-tooltip-in{0%{opacity:0;transform:translateY(-5px)}to{opacity:1;transform:translateY(0)}}@keyframes rcb-animation-tooltip-out{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(-5px)}}@keyframes rcb-animation-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}\n"],"names":[],"sourceRoot":""}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunk_snf_access_qa_bot=self.webpackChunk_snf_access_qa_bot||[]).push([[453],{453:(e,t,n)=>{n.d(t,{getCLS:()=>y,getFCP:()=>g,getFID:()=>C,getLCP:()=>P,getTTFB:()=>_});var i,r,a,o,c=function(e,t){return{name:e,value:void 0===t?-1:t,delta:0,entries:[],id:"v2-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12)}},u=function(e,t){try{if(PerformanceObserver.supportedEntryTypes.includes(e)){if("first-input"===e&&!("PerformanceEventTiming"in self))return;var n=new PerformanceObserver((function(e){return e.getEntries().map(t)}));return n.observe({type:e,buffered:!0}),n}}catch(e){}},s=function(e,t){var n=function n(i){"pagehide"!==i.type&&"hidden"!==document.visibilityState||(e(i),t&&(removeEventListener("visibilitychange",n,!0),removeEventListener("pagehide",n,!0)))};addEventListener("visibilitychange",n,!0),addEventListener("pagehide",n,!0)},f=function(e){addEventListener("pageshow",(function(t){t.persisted&&e(t)}),!0)},m=function(e,t,n){var i;return function(r){t.value>=0&&(r||n)&&(t.delta=t.value-(i||0),(t.delta||void 0===i)&&(i=t.value,e(t)))}},v=-1,p=function(){return"hidden"===document.visibilityState?0:1/0},d=function(){s((function(e){var t=e.timeStamp;v=t}),!0)},l=function(){return v<0&&(v=p(),d(),f((function(){setTimeout((function(){v=p(),d()}),0)}))),{get firstHiddenTime(){return v}}},g=function(e,t){var n,i=l(),r=c("FCP"),a=function(e){"first-contentful-paint"===e.name&&(s&&s.disconnect(),e.startTime<i.firstHiddenTime&&(r.value=e.startTime,r.entries.push(e),n(!0)))},o=window.performance&&performance.getEntriesByName&&performance.getEntriesByName("first-contentful-paint")[0],s=o?null:u("paint",a);(o||s)&&(n=m(e,r,t),o&&a(o),f((function(i){r=c("FCP"),n=m(e,r,t),requestAnimationFrame((function(){requestAnimationFrame((function(){r.value=performance.now()-i.timeStamp,n(!0)}))}))})))},h=!1,T=-1,y=function(e,t){h||(g((function(e){T=e.value})),h=!0);var n,i=function(t){T>-1&&e(t)},r=c("CLS",0),a=0,o=[],v=function(e){if(!e.hadRecentInput){var t=o[0],i=o[o.length-1];a&&e.startTime-i.startTime<1e3&&e.startTime-t.startTime<5e3?(a+=e.value,o.push(e)):(a=e.value,o=[e]),a>r.value&&(r.value=a,r.entries=o,n())}},p=u("layout-shift",v);p&&(n=m(i,r,t),s((function(){p.takeRecords().map(v),n(!0)})),f((function(){a=0,T=-1,r=c("CLS",0),n=m(i,r,t)})))},E={passive:!0,capture:!0},w=new Date,L=function(e,t){i||(i=t,r=e,a=new Date,F(removeEventListener),S())},S=function(){if(r>=0&&r<a-w){var e={entryType:"first-input",name:i.type,target:i.target,cancelable:i.cancelable,startTime:i.timeStamp,processingStart:i.timeStamp+r};o.forEach((function(t){t(e)})),o=[]}},b=function(e){if(e.cancelable){var t=(e.timeStamp>1e12?new Date:performance.now())-e.timeStamp;"pointerdown"==e.type?function(e,t){var n=function(){L(e,t),r()},i=function(){r()},r=function(){removeEventListener("pointerup",n,E),removeEventListener("pointercancel",i,E)};addEventListener("pointerup",n,E),addEventListener("pointercancel",i,E)}(t,e):L(t,e)}},F=function(e){["mousedown","keydown","touchstart","pointerdown"].forEach((function(t){return e(t,b,E)}))},C=function(e,t){var n,a=l(),v=c("FID"),p=function(e){e.startTime<a.firstHiddenTime&&(v.value=e.processingStart-e.startTime,v.entries.push(e),n(!0))},d=u("first-input",p);n=m(e,v,t),d&&s((function(){d.takeRecords().map(p),d.disconnect()}),!0),d&&f((function(){var a;v=c("FID"),n=m(e,v,t),o=[],r=-1,i=null,F(addEventListener),a=p,o.push(a),S()}))},k={},P=function(e,t){var n,i=l(),r=c("LCP"),a=function(e){var t=e.startTime;t<i.firstHiddenTime&&(r.value=t,r.entries.push(e),n())},o=u("largest-contentful-paint",a);if(o){n=m(e,r,t);var v=function(){k[r.id]||(o.takeRecords().map(a),o.disconnect(),k[r.id]=!0,n(!0))};["keydown","click"].forEach((function(e){addEventListener(e,v,{once:!0,capture:!0})})),s(v,!0),f((function(i){r=c("LCP"),n=m(e,r,t),requestAnimationFrame((function(){requestAnimationFrame((function(){r.value=performance.now()-i.timeStamp,k[r.id]=!0,n(!0)}))}))}))}},_=function(e){var t,n=c("TTFB");t=function(){try{var t=performance.getEntriesByType("navigation")[0]||function(){var e=performance.timing,t={entryType:"navigation",startTime:0};for(var n in e)"navigationStart"!==n&&"toJSON"!==n&&(t[n]=Math.max(e[n]-e.navigationStart,0));return t}();if(n.value=n.delta=t.responseStart,n.value<0||n.value>performance.now())return;n.entries=[t],e(n)}catch(e){}},"complete"===document.readyState?setTimeout(t,0):addEventListener("load",(function(){return setTimeout(t,0)}))}}}]);
|
|
2
|
-
//# sourceMappingURL=453.chunk.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"static/js/453.chunk.js","mappings":"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","sources":["../node_modules/web-vitals/dist/web-vitals.js"],"sourcesContent":["var e,t,n,i,r=function(e,t){return{name:e,value:void 0===t?-1:t,delta:0,entries:[],id:\"v2-\".concat(Date.now(),\"-\").concat(Math.floor(8999999999999*Math.random())+1e12)}},a=function(e,t){try{if(PerformanceObserver.supportedEntryTypes.includes(e)){if(\"first-input\"===e&&!(\"PerformanceEventTiming\"in self))return;var n=new PerformanceObserver((function(e){return e.getEntries().map(t)}));return n.observe({type:e,buffered:!0}),n}}catch(e){}},o=function(e,t){var n=function n(i){\"pagehide\"!==i.type&&\"hidden\"!==document.visibilityState||(e(i),t&&(removeEventListener(\"visibilitychange\",n,!0),removeEventListener(\"pagehide\",n,!0)))};addEventListener(\"visibilitychange\",n,!0),addEventListener(\"pagehide\",n,!0)},u=function(e){addEventListener(\"pageshow\",(function(t){t.persisted&&e(t)}),!0)},c=function(e,t,n){var i;return function(r){t.value>=0&&(r||n)&&(t.delta=t.value-(i||0),(t.delta||void 0===i)&&(i=t.value,e(t)))}},f=-1,s=function(){return\"hidden\"===document.visibilityState?0:1/0},m=function(){o((function(e){var t=e.timeStamp;f=t}),!0)},v=function(){return f<0&&(f=s(),m(),u((function(){setTimeout((function(){f=s(),m()}),0)}))),{get firstHiddenTime(){return f}}},d=function(e,t){var n,i=v(),o=r(\"FCP\"),f=function(e){\"first-contentful-paint\"===e.name&&(m&&m.disconnect(),e.startTime<i.firstHiddenTime&&(o.value=e.startTime,o.entries.push(e),n(!0)))},s=window.performance&&performance.getEntriesByName&&performance.getEntriesByName(\"first-contentful-paint\")[0],m=s?null:a(\"paint\",f);(s||m)&&(n=c(e,o,t),s&&f(s),u((function(i){o=r(\"FCP\"),n=c(e,o,t),requestAnimationFrame((function(){requestAnimationFrame((function(){o.value=performance.now()-i.timeStamp,n(!0)}))}))})))},p=!1,l=-1,h=function(e,t){p||(d((function(e){l=e.value})),p=!0);var n,i=function(t){l>-1&&e(t)},f=r(\"CLS\",0),s=0,m=[],v=function(e){if(!e.hadRecentInput){var t=m[0],i=m[m.length-1];s&&e.startTime-i.startTime<1e3&&e.startTime-t.startTime<5e3?(s+=e.value,m.push(e)):(s=e.value,m=[e]),s>f.value&&(f.value=s,f.entries=m,n())}},h=a(\"layout-shift\",v);h&&(n=c(i,f,t),o((function(){h.takeRecords().map(v),n(!0)})),u((function(){s=0,l=-1,f=r(\"CLS\",0),n=c(i,f,t)})))},T={passive:!0,capture:!0},y=new Date,g=function(i,r){e||(e=r,t=i,n=new Date,w(removeEventListener),E())},E=function(){if(t>=0&&t<n-y){var r={entryType:\"first-input\",name:e.type,target:e.target,cancelable:e.cancelable,startTime:e.timeStamp,processingStart:e.timeStamp+t};i.forEach((function(e){e(r)})),i=[]}},S=function(e){if(e.cancelable){var t=(e.timeStamp>1e12?new Date:performance.now())-e.timeStamp;\"pointerdown\"==e.type?function(e,t){var n=function(){g(e,t),r()},i=function(){r()},r=function(){removeEventListener(\"pointerup\",n,T),removeEventListener(\"pointercancel\",i,T)};addEventListener(\"pointerup\",n,T),addEventListener(\"pointercancel\",i,T)}(t,e):g(t,e)}},w=function(e){[\"mousedown\",\"keydown\",\"touchstart\",\"pointerdown\"].forEach((function(t){return e(t,S,T)}))},L=function(n,f){var s,m=v(),d=r(\"FID\"),p=function(e){e.startTime<m.firstHiddenTime&&(d.value=e.processingStart-e.startTime,d.entries.push(e),s(!0))},l=a(\"first-input\",p);s=c(n,d,f),l&&o((function(){l.takeRecords().map(p),l.disconnect()}),!0),l&&u((function(){var a;d=r(\"FID\"),s=c(n,d,f),i=[],t=-1,e=null,w(addEventListener),a=p,i.push(a),E()}))},b={},F=function(e,t){var n,i=v(),f=r(\"LCP\"),s=function(e){var t=e.startTime;t<i.firstHiddenTime&&(f.value=t,f.entries.push(e),n())},m=a(\"largest-contentful-paint\",s);if(m){n=c(e,f,t);var d=function(){b[f.id]||(m.takeRecords().map(s),m.disconnect(),b[f.id]=!0,n(!0))};[\"keydown\",\"click\"].forEach((function(e){addEventListener(e,d,{once:!0,capture:!0})})),o(d,!0),u((function(i){f=r(\"LCP\"),n=c(e,f,t),requestAnimationFrame((function(){requestAnimationFrame((function(){f.value=performance.now()-i.timeStamp,b[f.id]=!0,n(!0)}))}))}))}},P=function(e){var t,n=r(\"TTFB\");t=function(){try{var t=performance.getEntriesByType(\"navigation\")[0]||function(){var e=performance.timing,t={entryType:\"navigation\",startTime:0};for(var n in e)\"navigationStart\"!==n&&\"toJSON\"!==n&&(t[n]=Math.max(e[n]-e.navigationStart,0));return t}();if(n.value=n.delta=t.responseStart,n.value<0||n.value>performance.now())return;n.entries=[t],e(n)}catch(e){}},\"complete\"===document.readyState?setTimeout(t,0):addEventListener(\"load\",(function(){return setTimeout(t,0)}))};export{h as getCLS,d as getFCP,L as getFID,F as getLCP,P as getTTFB};\n"],"names":["e","t","n","i","r","name","value","delta","entries","id","concat","Date","now","Math","floor","random","a","PerformanceObserver","supportedEntryTypes","includes","self","getEntries","map","observe","type","buffered","o","document","visibilityState","removeEventListener","addEventListener","u","persisted","c","f","s","m","timeStamp","v","setTimeout","firstHiddenTime","d","disconnect","startTime","push","window","performance","getEntriesByName","requestAnimationFrame","p","l","h","hadRecentInput","length","takeRecords","T","passive","capture","y","g","w","E","entryType","target","cancelable","processingStart","forEach","S","L","b","F","once","P","getEntriesByType","timing","max","navigationStart","responseStart","readyState"],"sourceRoot":""}
|