@snf/access-qa-bot 2.1.0-rc.2 → 2.1.0-rc.4
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 +37 -97
- package/build/static/css/main.css +1 -1
- package/build/static/css/main.css.map +1 -1
- package/build/static/js/main.js +1 -1
- package/build/static/js/main.js.map +1 -1
- package/dist/access-qa-bot.js +1 -1
- package/dist/access-qa-bot.js.map +1 -1
- package/dist/access-qa-bot.standalone.js +26 -26
- package/dist/access-qa-bot.standalone.js.map +1 -1
- package/dist/access-qa-bot.umd.cjs +1 -1
- package/dist/access-qa-bot.umd.cjs.map +1 -1
- package/index.d.ts +6 -35
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# Q&A Bot
|
|
2
2
|
|
|
3
|
-
A React component
|
|
3
|
+
A React component for integrating the Q&A Bot into your application. The bot can operate in two modes: **floating** (chat button that opens/closes a window) or **embedded** (always visible inline).
|
|
4
|
+
|
|
5
|
+
**Architecture**: Everything is React-backed for consistency and simplicity. HTML/plain JS usage loads a React-based standalone bundle.
|
|
4
6
|
|
|
5
7
|
## Installation
|
|
6
8
|
|
|
@@ -17,7 +19,7 @@ npm run start
|
|
|
17
19
|
|
|
18
20
|
## Running the Demo
|
|
19
21
|
|
|
20
|
-
This will serve the index.html file in the root directory, which
|
|
22
|
+
This will serve the index.html file in the root directory, which demonstrates different ways to integrate the bot.
|
|
21
23
|
|
|
22
24
|
```bash
|
|
23
25
|
npm run build:lib
|
|
@@ -25,7 +27,6 @@ npm run build
|
|
|
25
27
|
npx serve
|
|
26
28
|
```
|
|
27
29
|
|
|
28
|
-
|
|
29
30
|
### Floating vs Embedded Modes
|
|
30
31
|
|
|
31
32
|
The Q&A Bot supports two display modes:
|
|
@@ -40,7 +41,6 @@ The Q&A Bot supports two display modes:
|
|
|
40
41
|
| Element ID (`#qa-bot`) | Floating | Set `embedded: true` |
|
|
41
42
|
| CSS Class (`.embedded-qa-bot`) | Embedded | n/a |
|
|
42
43
|
| JavaScript API | Floating | Set `embedded: true` |
|
|
43
|
-
| Custom Element (`<qa-bot>`) | Floating | Add `embedded` attribute |
|
|
44
44
|
|
|
45
45
|
## Integration Methods
|
|
46
46
|
|
|
@@ -100,69 +100,9 @@ window.addEventListener('load', function() {
|
|
|
100
100
|
</script>
|
|
101
101
|
```
|
|
102
102
|
|
|
103
|
-
### Method 4: Custom Web Component Element (Floating by Default)
|
|
104
|
-
|
|
105
|
-
Use the `<qa-bot>` custom element directly in your HTML:
|
|
106
|
-
|
|
107
|
-
```html
|
|
108
|
-
<script src="https://unpkg.com/@snf/access-qa-bot@0.2.0/dist/access-qa-bot.standalone.js"></script>
|
|
109
|
-
|
|
110
|
-
<script>
|
|
111
|
-
// Check if user is logged in by looking for auth cookie
|
|
112
|
-
function isUserLoggedIn() {
|
|
113
|
-
return document.cookie.split(';').some(cookie => {
|
|
114
|
-
return cookie.trim().startsWith('SESSaccesscisso=');
|
|
115
|
-
});
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
// Set login status dynamically when page loads
|
|
119
|
-
window.addEventListener('load', function() {
|
|
120
|
-
const botElement = document.querySelector('qa-bot');
|
|
121
|
-
if (botElement && isUserLoggedIn()) {
|
|
122
|
-
botElement.setAttribute('is-logged-in', '');
|
|
123
|
-
}
|
|
124
|
-
});
|
|
125
|
-
</script>
|
|
126
|
-
|
|
127
|
-
<!-- Floating mode (default) -->
|
|
128
|
-
<qa-bot
|
|
129
|
-
welcome="Welcome to the Q&A Bot!"
|
|
130
|
-
default-open
|
|
131
|
-
ring-effect>
|
|
132
|
-
</qa-bot>
|
|
133
|
-
|
|
134
|
-
<!-- Embedded mode -->
|
|
135
|
-
<qa-bot
|
|
136
|
-
embedded
|
|
137
|
-
welcome="This is an embedded bot!">
|
|
138
|
-
</qa-bot>
|
|
139
|
-
```
|
|
140
|
-
|
|
141
|
-
**Custom Element Attributes:**
|
|
142
|
-
- `api-key` - API key for authentication
|
|
143
|
-
- `default-open` - Initially open floating chat (boolean attribute)
|
|
144
|
-
- `embedded` - Use embedded mode (boolean attribute)
|
|
145
|
-
- `is-logged-in` - User is logged in (boolean attribute)
|
|
146
|
-
- `login-url` - URL for login redirect
|
|
147
|
-
- `ring-effect` - Enable phone ring animation on tooltip (boolean attribute)
|
|
148
|
-
- `welcome` - Welcome message
|
|
149
|
-
|
|
150
|
-
**Accessing the Custom Element Programmatically:**
|
|
151
|
-
```javascript
|
|
152
|
-
// Get reference to the custom element
|
|
153
|
-
const botElement = document.querySelector('qa-bot');
|
|
154
|
-
|
|
155
|
-
// Call methods directly on the element
|
|
156
|
-
botElement.addMessage("Hello World!");
|
|
157
|
-
botElement.setBotIsLoggedIn(true);
|
|
158
|
-
botElement.openChat(); // Floating mode only
|
|
159
|
-
botElement.closeChat(); // Floating mode only
|
|
160
|
-
botElement.toggleChat(); // Floating mode only
|
|
161
|
-
```
|
|
162
|
-
|
|
163
103
|
## Programmatic Control
|
|
164
104
|
|
|
165
|
-
When using the JavaScript API, you get a controller object with these methods:
|
|
105
|
+
When using the JavaScript API in plain HTML/JS (requires standalone bundle), you get a controller object with these methods:
|
|
166
106
|
|
|
167
107
|
```javascript
|
|
168
108
|
const botController = qaBot({...});
|
|
@@ -182,13 +122,15 @@ botController.toggleChat();
|
|
|
182
122
|
botController.destroy();
|
|
183
123
|
```
|
|
184
124
|
|
|
125
|
+
**Note**: The `qaBot()` function requires the standalone bundle (`access-qa-bot.standalone.js`) to be loaded first. React/Preact applications should use the `<QABot />` component instead.
|
|
126
|
+
|
|
185
127
|
## As a React Component
|
|
186
128
|
|
|
187
|
-
For React applications, import and use the component directly
|
|
129
|
+
For React applications, import and use the component directly. If you want to be able to imperatively add a message to the chat, you can use the ref to do so.
|
|
188
130
|
|
|
189
131
|
```jsx
|
|
190
132
|
import React, { useRef, useState } from 'react';
|
|
191
|
-
import { QABot
|
|
133
|
+
import { QABot } from '@snf/access-qa-bot';
|
|
192
134
|
|
|
193
135
|
function MyApp() {
|
|
194
136
|
const [isLoggedIn, setIsLoggedIn] = useState(false);
|
|
@@ -199,18 +141,12 @@ function MyApp() {
|
|
|
199
141
|
botRef.current?.addMessage("Hello from React!");
|
|
200
142
|
};
|
|
201
143
|
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
embedded: true,
|
|
209
|
-
welcome: "Programmatically created bot!",
|
|
210
|
-
isLoggedIn: isLoggedIn,
|
|
211
|
-
defaultOpen: false, // defaultOpen works with programmatic API
|
|
212
|
-
});
|
|
213
|
-
}
|
|
144
|
+
const handleOpenChat = () => {
|
|
145
|
+
setChatOpen(true);
|
|
146
|
+
};
|
|
147
|
+
|
|
148
|
+
const handleToggleLogin = () => {
|
|
149
|
+
setIsLoggedIn(!isLoggedIn);
|
|
214
150
|
};
|
|
215
151
|
|
|
216
152
|
return (
|
|
@@ -221,13 +157,16 @@ function MyApp() {
|
|
|
221
157
|
Send Message to Bot
|
|
222
158
|
</button>
|
|
223
159
|
|
|
224
|
-
<button onClick={
|
|
225
|
-
|
|
160
|
+
<button onClick={handleOpenChat}>
|
|
161
|
+
Open Chat (Controlled)
|
|
162
|
+
</button>
|
|
163
|
+
|
|
164
|
+
<button onClick={handleToggleLogin}>
|
|
165
|
+
Toggle Login State
|
|
226
166
|
</button>
|
|
227
167
|
|
|
228
|
-
{/* React component uses controlled pattern */}
|
|
229
168
|
<QABot
|
|
230
|
-
ref={botRef}
|
|
169
|
+
ref={botRef} // This is only needed if you want to add a message from outside the flow
|
|
231
170
|
embedded={false} // true for embedded, false for floating
|
|
232
171
|
isLoggedIn={isLoggedIn}
|
|
233
172
|
open={chatOpen}
|
|
@@ -235,18 +174,17 @@ function MyApp() {
|
|
|
235
174
|
welcome="Welcome to the ACCESS Q&A Bot!"
|
|
236
175
|
apiKey={process.env.REACT_APP_API_KEY}
|
|
237
176
|
/>
|
|
238
|
-
|
|
239
|
-
<div id="programmatic-bot"></div>
|
|
240
177
|
</div>
|
|
241
178
|
);
|
|
242
179
|
}
|
|
243
180
|
```
|
|
244
181
|
|
|
245
182
|
**React Component Notes:**
|
|
246
|
-
- Uses **controlled component pattern**: manage `open` state in your parent component
|
|
183
|
+
- Uses **controlled component pattern**: manage `open` and `isLoggedIn` state in your parent component
|
|
247
184
|
- `onOpenChange` callback receives the new open state when user interacts with chat
|
|
248
|
-
- For
|
|
185
|
+
- For programmatic message injection, use the ref: `botRef.current?.addMessage("Hello!")`
|
|
249
186
|
- `defaultOpen` prop not available - use `open` prop with `useState` instead
|
|
187
|
+
- For state management (login, chat open/close), use props and state instead of imperative methods
|
|
250
188
|
|
|
251
189
|
## Configuration Properties
|
|
252
190
|
|
|
@@ -262,7 +200,7 @@ function MyApp() {
|
|
|
262
200
|
| `ringEffect` / `ring-effect` | boolean | Enable phone ring animation on tooltip (floating mode only) |
|
|
263
201
|
| `welcome` | string | Welcome message shown to the user |
|
|
264
202
|
|
|
265
|
-
**Note**: The React component uses a controlled component pattern with `open`/`onOpenChange`, while the JavaScript API
|
|
203
|
+
**Note**: The React component uses a controlled component pattern with `open`/`onOpenChange`, while the JavaScript API uses `defaultOpen` for initial state.
|
|
266
204
|
|
|
267
205
|
### CSS Custom Properties (Theming)
|
|
268
206
|
|
|
@@ -310,40 +248,42 @@ npx serve
|
|
|
310
248
|
|
|
311
249
|
# Then visit:
|
|
312
250
|
# http://localhost:3000/index.html (integration demos)
|
|
313
|
-
# http://localhost:3000/web-component-demo.html (web component demos)
|
|
314
251
|
```
|
|
315
252
|
|
|
316
253
|
## File Structure Guide
|
|
317
254
|
|
|
318
255
|
- **`index.html`** - Main demo showing all integration methods
|
|
319
|
-
- **`web-component-demo.html`** - Web Component specific demos
|
|
320
256
|
- **`public/index.html`** - React app template (Create React App)
|
|
321
257
|
- **`build/index.html`** - Built React app
|
|
322
258
|
- **`src/`** - Source code
|
|
323
259
|
- **`components/QABot.js`** - Main React component
|
|
324
|
-
- **`
|
|
325
|
-
- **`lib.js`** - JavaScript API
|
|
260
|
+
- **`lib.js`** - React-backed implementation for all usage patterns
|
|
326
261
|
|
|
327
262
|
## Important Notes
|
|
328
263
|
|
|
329
|
-
1. **
|
|
264
|
+
1. **React-Backed Architecture**:
|
|
265
|
+
- Everything uses React components internally for consistency
|
|
266
|
+
- HTML/plain JS usage loads a React-based standalone bundle
|
|
267
|
+
- Single implementation reduces complexity and bugs
|
|
268
|
+
|
|
269
|
+
2. **Embedded vs Floating**:
|
|
330
270
|
- Embedded mode is always visible and ignores `defaultOpen`
|
|
331
271
|
- Floating mode shows a chat button; `defaultOpen` controls initial state
|
|
332
272
|
- Chat window controls (`openChat`, `closeChat`, `toggleChat`) only work in floating mode
|
|
333
273
|
|
|
334
|
-
|
|
274
|
+
3. **Ring Effect**:
|
|
335
275
|
- Only works in floating mode when the tooltip is visible
|
|
336
276
|
- Triggers a phone-like ring animation to draw attention
|
|
337
277
|
- Activates once when the bot is first loaded (500ms delay)
|
|
338
278
|
- Won't repeat if user has already interacted with the chat
|
|
339
279
|
|
|
340
|
-
|
|
280
|
+
4. **Auto-Detection**: The standalone script automatically detects and initializes:
|
|
341
281
|
- `#qa-bot` → Floating mode
|
|
342
282
|
- `.embedded-qa-bot` → Embedded mode
|
|
343
283
|
|
|
344
|
-
|
|
284
|
+
5. **API Key**: Defaults to demo key if not provided
|
|
345
285
|
|
|
346
|
-
|
|
286
|
+
6. **Browser Support**: Uses modern browser features; consider polyfills for older browsers
|
|
347
287
|
|
|
348
288
|
## Examples Repository
|
|
349
289
|
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
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}.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)}}
|
|
1
|
+
.rcb-toggle-icon{background-color:initial!important;background-position:calc(50% - 1px) calc(50% + 2px);background-size:62%}.rcb-chat-window{max-height:600px;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){.embedded-chat-container.open{height:400px}.embedded-chat-closed{font-size:14px;height:40px}.embedded-chat-open-btn{font-size:12px;padding:3px 10px}}@media (max-width:480px){.embedded-chat-container.open{height:350px}}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}.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
2
|
/*# sourceMappingURL=main.css.map*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"static/css/main.css","mappings":"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","sources":["index.css","../node_modules/react-chatbotify/dist/style.css"],"sourcesContent":["body {\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",".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
|
+
{"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%;\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 max-height: 600px;\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 .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\n@media (max-width: 480px) {\n .embedded-chat-container.open {\n height: 350px;\n }\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",".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":""}
|