@hivegpt/hiveai-angular 0.0.380 → 0.0.382

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.
Files changed (88) hide show
  1. package/README.md +23 -23
  2. package/bundles/hivegpt-hiveai-angular.umd.js +3145 -0
  3. package/bundles/hivegpt-hiveai-angular.umd.js.map +1 -0
  4. package/bundles/hivegpt-hiveai-angular.umd.min.js +2 -0
  5. package/bundles/hivegpt-hiveai-angular.umd.min.js.map +1 -0
  6. package/environments/environment.d.ts +15 -0
  7. package/environments/environment.d.ts.map +1 -0
  8. package/esm2015/environments/environment.js +15 -0
  9. package/esm2015/hivegpt-hiveai-angular.js +13 -0
  10. package/esm2015/lib/components/NotificationSocket.js +39 -0
  11. package/esm2015/lib/components/bot-html-editor/bot-html-editor.component.js +112 -0
  12. package/esm2015/lib/components/bot.service.js +50 -0
  13. package/esm2015/lib/components/chat-drawer/chat-drawer.component.js +1743 -0
  14. package/esm2015/lib/components/chatbot/chatbot.component.js +50 -0
  15. package/esm2015/lib/components/conversation.service.js +49 -0
  16. package/esm2015/lib/components/socket-service.service.js +72 -0
  17. package/esm2015/lib/components/translations/translation.service.js +244 -0
  18. package/esm2015/lib/components/video-player/video-player.component.js +123 -0
  19. package/esm2015/lib/hivegpt.module.js +21 -0
  20. package/esm2015/lib/models/video.js +2 -0
  21. package/esm2015/lib/pipes/safe-html.pipe.js +19 -0
  22. package/esm2015/lib/utils/utils.js +36 -0
  23. package/esm2015/public-api.js +7 -0
  24. package/fesm2015/hivegpt-hiveai-angular.js +2541 -0
  25. package/fesm2015/hivegpt-hiveai-angular.js.map +1 -0
  26. package/hivegpt-hiveai-angular.d.ts +13 -0
  27. package/hivegpt-hiveai-angular.d.ts.map +1 -0
  28. package/hivegpt-hiveai-angular.metadata.json +1 -0
  29. package/lib/components/NotificationSocket.d.ts +5 -0
  30. package/lib/components/NotificationSocket.d.ts.map +1 -0
  31. package/lib/components/bot-html-editor/bot-html-editor.component.d.ts +36 -0
  32. package/lib/components/bot-html-editor/bot-html-editor.component.d.ts.map +1 -0
  33. package/lib/components/bot.service.d.ts +12 -0
  34. package/lib/components/bot.service.d.ts.map +1 -0
  35. package/lib/components/chat-drawer/chat-drawer.component.d.ts +255 -0
  36. package/lib/components/chat-drawer/chat-drawer.component.d.ts.map +1 -0
  37. package/lib/components/chatbot/chatbot.component.d.ts +36 -0
  38. package/lib/components/chatbot/chatbot.component.d.ts.map +1 -0
  39. package/lib/components/conversation.service.d.ts +13 -0
  40. package/lib/components/conversation.service.d.ts.map +1 -0
  41. package/lib/components/socket-service.service.d.ts +20 -0
  42. package/lib/components/socket-service.service.d.ts.map +1 -0
  43. package/lib/components/translations/translation.service.d.ts +8 -0
  44. package/lib/components/translations/translation.service.d.ts.map +1 -0
  45. package/lib/components/video-player/video-player.component.d.ts +36 -0
  46. package/lib/components/video-player/video-player.component.d.ts.map +1 -0
  47. package/lib/hivegpt.module.d.ts +3 -0
  48. package/lib/hivegpt.module.d.ts.map +1 -0
  49. package/lib/models/video.d.ts +35 -0
  50. package/lib/models/video.d.ts.map +1 -0
  51. package/lib/pipes/safe-html.pipe.d.ts +8 -0
  52. package/lib/pipes/safe-html.pipe.d.ts.map +1 -0
  53. package/lib/utils/utils.d.ts +3 -0
  54. package/lib/utils/utils.d.ts.map +1 -0
  55. package/package.json +20 -20
  56. package/{src/public-api.ts → public-api.d.ts} +4 -7
  57. package/public-api.d.ts.map +1 -0
  58. package/karma.conf.js +0 -32
  59. package/ng-package.json +0 -7
  60. package/src/environments/environment.ts +0 -19
  61. package/src/lib/components/NotificationSocket.ts +0 -38
  62. package/src/lib/components/bot-html-editor/bot-html-editor.component.css +0 -10
  63. package/src/lib/components/bot-html-editor/bot-html-editor.component.html +0 -11
  64. package/src/lib/components/bot-html-editor/bot-html-editor.component.spec.ts +0 -25
  65. package/src/lib/components/bot-html-editor/bot-html-editor.component.ts +0 -152
  66. package/src/lib/components/bot.service.ts +0 -52
  67. package/src/lib/components/chat-drawer/chat-drawer.component.html +0 -1586
  68. package/src/lib/components/chat-drawer/chat-drawer.component.scss +0 -2907
  69. package/src/lib/components/chat-drawer/chat-drawer.component.ts +0 -2143
  70. package/src/lib/components/chatbot/chatbot.component.html +0 -37
  71. package/src/lib/components/chatbot/chatbot.component.scss +0 -97
  72. package/src/lib/components/chatbot/chatbot.component.ts +0 -44
  73. package/src/lib/components/conversation.service.spec.ts +0 -16
  74. package/src/lib/components/conversation.service.ts +0 -54
  75. package/src/lib/components/socket-service.service.spec.ts +0 -16
  76. package/src/lib/components/socket-service.service.ts +0 -77
  77. package/src/lib/components/translations/translation.service.ts +0 -221
  78. package/src/lib/components/video-player/video-player.component.html +0 -51
  79. package/src/lib/components/video-player/video-player.component.scss +0 -262
  80. package/src/lib/components/video-player/video-player.component.ts +0 -148
  81. package/src/lib/hivegpt.module.ts +0 -18
  82. package/src/lib/models/video.ts +0 -36
  83. package/src/lib/pipes/safe-html.pipe.ts +0 -16
  84. package/src/lib/utils/utils.ts +0 -37
  85. package/tsconfig.lib.json +0 -25
  86. package/tsconfig.lib.prod.json +0 -10
  87. package/tsconfig.spec.json +0 -17
  88. package/tslint.json +0 -17
@@ -1,2907 +0,0 @@
1
- @import url('https://e1cdn.social27.com/digitalevents/liteversion/fonts/segoe-ui/stylesheet.css');
2
-
3
- .sticky-header-chat {
4
- position: sticky;
5
- top: -21px;
6
- background: #fff;
7
- z-index: 100;
8
- padding: 0 0 10px;
9
- border-bottom: 1px solid #ddd;
10
- transition: all 1s;
11
-
12
- @media (max-width: 768px) {
13
- top: 0px;
14
- }
15
- }
16
-
17
- /* width */
18
- ::-webkit-scrollbar {
19
- width: 5px;
20
- }
21
-
22
- /* Track */
23
- ::-webkit-scrollbar-track {
24
- background: #f1f1f1;
25
- }
26
-
27
- /* Handle */
28
- ::-webkit-scrollbar-thumb {
29
- background: #e5ccbc;
30
- }
31
-
32
- /* Handle on hover */
33
- ::-webkit-scrollbar-thumb:hover {
34
- background: #e5ccbc;
35
- }
36
-
37
- body {
38
- overflow: hidden;
39
- }
40
-
41
- .ios-device {
42
- .drawer {
43
- .chat-footer {
44
- .form-control {
45
- font-size: 16px;
46
- }
47
- }
48
- }
49
- }
50
-
51
- .hivegpt-chat-wrapper {
52
- position: fixed;
53
- height: 100%;
54
- inset: 0;
55
- opacity: 0;
56
- visibility: hidden;
57
- z-index: 999999;
58
- background: transparent !important;
59
-
60
- &.mat-drawer-container-has-open {
61
- opacity: 1;
62
- visibility: visible;
63
- z-index: 999999;
64
- transition: all 0.3s;
65
- background: transparent !important;
66
- }
67
-
68
- .mat-drawer:not(.mat-drawer-side) {
69
- box-shadow: none;
70
- }
71
-
72
- mat-drawer {
73
- width: 100%;
74
- //background-image: linear-gradient(180deg, #58befb0d 60%, #06f3 96.27%);
75
- background-image: none !important;
76
- background-color: #fff !important;
77
-
78
- &.full-width-drawer {
79
- max-width: 100%;
80
- }
81
- }
82
-
83
- .mat-drawer-content {
84
- display: flex;
85
- flex-direction: column;
86
- }
87
-
88
- .chat-header {
89
- padding: 16px 40px 16px;
90
- width: 100%;
91
-
92
- h2 {
93
- font-family: 'Segoe UI', sans-serif;
94
- margin: 0;
95
- font-size: 36px;
96
- font-weight: 500;
97
- line-height: 108%;
98
- letter-spacing: -0.72px;
99
- text-transform: uppercase;
100
- }
101
-
102
- .closeIcon {
103
- position: absolute;
104
- top: 16px;
105
- right: 12px;
106
- border: none;
107
- padding: 0;
108
- background: transparent;
109
- outline: none;
110
- width: 35px;
111
- height: 35px;
112
- border-radius: 50%;
113
- display: inline-flex;
114
- align-items: center;
115
- justify-content: center;
116
- font-size: 18px;
117
- }
118
- }
119
-
120
- .chat-main {
121
- width: 100%;
122
- flex: 1;
123
- overflow-y: auto;
124
- display: flex;
125
- flex-direction: column;
126
- justify-content: space-between;
127
-
128
- .innerChat {
129
- overflow-y: auto;
130
- width: 100%;
131
- padding: 20px 40px 10px;
132
- }
133
-
134
- .ai h3 {
135
- font-size: 1.3rem !important;
136
- }
137
-
138
- .chat-box {
139
- max-width: 96%;
140
- width: 100%;
141
-
142
- // .message {
143
- // padding: 12px 20px;
144
- // background: #ffffffb3;
145
- // box-shadow: 0 0.3px 0.9px #0000001f, 0 1.6px 3.6px #00000029;
146
- // margin-bottom: 5px;
147
- // // display: inline-flex;
148
- // min-height: 44px;
149
- // position: relative;
150
-
151
-
152
- .message {
153
- min-height: 40px;
154
- padding: 0px 20px 0 0;
155
- position: relative;
156
- margin-top: 10px;
157
- margin-left: 50px;
158
-
159
- @media (max-width: 768px) {
160
- margin-left: 0px;
161
- }
162
-
163
- p {
164
- font-family: 'Segoe UI', sans-serif;
165
- font-weight: 400;
166
- font-size: 14px;
167
- font-style: normal;
168
- line-height: 160%;
169
- margin: 0;
170
- color: #000;
171
- text-align: left;
172
- color: #525252;
173
-
174
- a {
175
- cursor: pointer !important;
176
- text-decoration: underline;
177
- font-weight: 700;
178
- color: #17235b !important;
179
- }
180
- }
181
-
182
- .cta {
183
- display: flow-root;
184
- align-items: end;
185
- grid-gap: 10px;
186
- gap: 10px;
187
- position: relative;
188
- bottom: -7px;
189
- right: -10px;
190
- z-index: 5;
191
-
192
- button {
193
- background: transparent;
194
- border: none;
195
- color: #566563;
196
- padding: 0;
197
- cursor: pointer;
198
- transition: all 0.3s;
199
-
200
- i {
201
- display: inline-block;
202
- }
203
-
204
- &:hover {
205
- color: #17235b;
206
- }
207
-
208
- &.up {
209
- &:hover {
210
- i {
211
- animation: thumbsUpAnimation 0.5s ease-in-out;
212
- animation-fill-mode: forwards;
213
- }
214
- }
215
- }
216
-
217
- &.down {
218
- &:hover {
219
- i {
220
- animation: thumbsDownAnimation 0.5s ease-in-out;
221
- animation-fill-mode: forwards;
222
- }
223
- }
224
- }
225
- }
226
- }
227
- }
228
- }
229
-
230
- .chat {
231
- &.bot {
232
- .chat-box {
233
- .message {}
234
- }
235
- }
236
-
237
- &.user {
238
- text-align: right;
239
-
240
- .chat-box {
241
- margin-left: auto;
242
-
243
- .message {
244
- border-radius: 20px 20px 0px 20px;
245
- background: linear-gradient(96deg, #8b4ead -10.61%, #761c79 84.59%);
246
- color: #fff;
247
-
248
- p {
249
- text-align: left;
250
- color: #fff;
251
- }
252
- }
253
- }
254
-
255
- .dateTime {
256
- text-align: right;
257
- }
258
-
259
- .time-cta {
260
- justify-content: flex-end;
261
- }
262
- }
263
-
264
- .Icon_TimeSTamp {
265
- /* display: flex;
266
- justify-content: center;
267
- align-content: center;
268
- align-items: center;
269
- background: #f5f5f5;
270
- padding: 5px 15px;
271
- border-radius: 20px; */
272
-
273
- display: flex;
274
- justify-content: left;
275
- align-content: center;
276
- align-items: center;
277
- margin: 0 -60px;
278
- width: auto;
279
-
280
- @media (max-width: 768px) {
281
- margin: 0;
282
-
283
- }
284
- }
285
-
286
- .dateTime {
287
- font-size: 15px;
288
- font-style: normal;
289
- font-weight: 300;
290
- line-height: 140%;
291
- color: #333232;
292
-
293
- span {
294
- font-size: 15px;
295
- font-style: normal;
296
- font-weight: 500;
297
- line-height: 140%;
298
- color: #06f;
299
- margin-left: 15px;
300
- margin-right: 5px;
301
- }
302
- }
303
-
304
- margin-bottom: 20px;
305
-
306
- &:last-of-type {
307
- margin-bottom: 0;
308
- }
309
- }
310
- }
311
-
312
- .chatFooterWrapper {
313
- background: #fff;
314
- margin-top: 10px !important;
315
- box-shadow: 2px 0px 5px #e1e1e1;
316
- width: 75%;
317
- margin: 0 auto;
318
- margin-top: 0px;
319
- margin-bottom: 0px;
320
- margin-top: 0px;
321
- margin-bottom: 0px;
322
- margin-top: 0px;
323
- border: 2px solid #dadada96;
324
- border-radius: 10px;
325
- margin-bottom: 15px;
326
- transition: all 0.5s;
327
-
328
- &:hover {
329
- box-shadow: 2px 0px 4px #ddd;
330
- border: 2px solid #b8b8b896;
331
- }
332
-
333
- .chat-footer-upt {
334
- padding: 4px;
335
- }
336
-
337
- .note {
338
- display: inline-flex;
339
- align-items: center;
340
- gap: 8px;
341
- font-size: 12px;
342
- line-height: 1;
343
- margin: 0 auto 4px;
344
- color: #000;
345
- padding: 10px 25px;
346
- border-radius: 15px;
347
- background: #1b75bb0d;
348
-
349
- a {
350
- text-transform: capitalize;
351
- }
352
-
353
- i {
354
- font-size: 18px;
355
-
356
- svg {
357
- width: 18px;
358
- height: 18px;
359
- }
360
- }
361
-
362
- span {
363
- flex: 1;
364
- gap: 4px;
365
- line-height: 1.3;
366
- }
367
- }
368
- }
369
-
370
- .chat-footer {
371
- align-items: center;
372
- display: flex;
373
- gap: 8px;
374
- justify-content: space-between;
375
- padding: 0;
376
- position: relative;
377
-
378
- .form-control {
379
- // resize: none;
380
- // padding: 20px;
381
- // background: #eee;
382
- // font-size: 14px;
383
- // border-radius: 100px;
384
- // width: 100%;
385
- // border: none;
386
- // outline: none;
387
- // min-height: 54px;
388
- // padding-right: 54px;
389
- background: #fff !important;
390
- border: 0;
391
- line-height: 21px;
392
- outline: 0;
393
- padding: 10px;
394
- position: relative;
395
- width: 100%;
396
-
397
- &::placeholder {
398
- color: #6c7a78;
399
- }
400
-
401
- &:focus {
402
- border-color: #e5ccbc;
403
- // box-shadow: 0 0 0 0.2rem rgba(229, 204, 188, 0.25);
404
- }
405
- }
406
-
407
- .cta-footer {
408
- align-items: center;
409
- display: flex;
410
- gap: 8px;
411
- justify-content: space-between;
412
- text-align: right;
413
- position: absolute;
414
- right: 15px;
415
- margin-bottom: 10px;
416
- //bottom: 5px;
417
-
418
- .btn {
419
- color: #000;
420
- font-weight: 500;
421
- gap: 8px;
422
- max-width: 150px;
423
- padding: 0px 0px;
424
- }
425
-
426
- .cta-chat {
427
- align-items: center;
428
- border: none;
429
- border-radius: 0;
430
- box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
431
- display: inline-flex;
432
- font-size: 20px;
433
- height: auto;
434
- justify-content: center;
435
- width: auto;
436
- background: transparent !important;
437
-
438
- &:hover {
439
- opacity: 0.8;
440
- }
441
- }
442
-
443
- .cta-again {
444
- border: 1px solid #17235b;
445
- background: #17235b;
446
- color: #fff;
447
- }
448
- }
449
- }
450
-
451
- .cta-faqs {
452
- display: flex;
453
- align-items: flex-end;
454
- flex-direction: column;
455
- flex-wrap: wrap;
456
- gap: 8px;
457
- padding: 10px 0 0;
458
- max-width: 80%;
459
- margin-left: auto;
460
-
461
- .cta {
462
- font-family: 'Segoe UI', sans-serif;
463
- font-weight: 500;
464
- font-size: 14px;
465
- font-style: normal;
466
- font-weight: 500;
467
- line-height: 160%;
468
- margin: 0;
469
- color: #333333;
470
- white-space: pre-line;
471
- text-align: left;
472
- border-radius: 20px 20px 0px 20px;
473
- background: transparent;
474
- padding: 12px 20px;
475
- min-height: 44px;
476
- text-decoration: none;
477
- transition: all 0.3s;
478
- cursor: pointer;
479
- border: 1px solid #c9a893;
480
- text-align: left;
481
- // &:hover {
482
- // text-decoration: underline;
483
- // }
484
- }
485
- }
486
- }
487
-
488
- .spinner {
489
- display: flex;
490
- align-items: center;
491
- justify-content: center;
492
- gap: 2px;
493
- }
494
-
495
- .spinner>div {
496
- width: 5px;
497
- height: 5px;
498
- background-color: #173330;
499
- border-radius: 100%;
500
- display: inline-block;
501
- -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
502
- animation: bouncedelay 1400ms ease-in-out infinite;
503
- /* Prevent first frame from flickering when animation starts */
504
- -webkit-animation-fill-mode: both;
505
- animation-fill-mode: both;
506
- }
507
-
508
- .spinner .bounce1 {
509
- -webkit-animation-delay: -0.32s;
510
- animation-delay: -0.32s;
511
- }
512
-
513
- .spinner .bounce2 {
514
- -webkit-animation-delay: -0.16s;
515
- animation-delay: -0.16s;
516
- }
517
-
518
- @-webkit-keyframes bouncedelay {
519
-
520
- 0%,
521
- 80%,
522
- 100% {
523
- transform: scale(0);
524
- -webkit-transform: scale(0);
525
- }
526
-
527
- 40% {
528
- transform: scale(1);
529
- -webkit-transform: scale(1);
530
- }
531
- }
532
-
533
- @keyframes bouncedelay {
534
-
535
- 0%,
536
- 80%,
537
- 100% {
538
- transform: scale(0);
539
- -webkit-transform: scale(0);
540
- }
541
-
542
- 40% {
543
- transform: scale(1);
544
- -webkit-transform: scale(1);
545
- }
546
- }
547
-
548
- .time-cta {
549
- display: flex;
550
- align-items: center;
551
- justify-content: start;
552
- gap: 8px;
553
- margin-top: 5px;
554
- //margin-left: -30px;
555
- //margin-left: 0px;
556
- }
557
-
558
- @keyframes thumbsUpAnimation {
559
-
560
- 0%,
561
- 100% {
562
- transform: translateY(0);
563
- }
564
-
565
- 50% {
566
- transform: translateY(-8px);
567
- }
568
- }
569
-
570
- @keyframes thumbsDownAnimation {
571
-
572
- 0%,
573
- 100% {
574
- transform: translateY(0);
575
- }
576
-
577
- 50% {
578
- transform: translateY(3px);
579
- }
580
- }
581
-
582
- @media (max-width: 767px) {
583
- .hivegpt-chat-wrapper .chat-main .innerChat {
584
- padding: 0 24px 10px;
585
- }
586
-
587
- .hivegpt-chat-wrapper .chat-footer {
588
- padding: 10px 24px;
589
- }
590
-
591
- .hivegpt-chat-wrapper .chat-footer .cta-footer .cta-chat {
592
- max-width: 100%;
593
- }
594
-
595
- .hivegpt-chat-wrapper .chat-footer .form-control {
596
- height: 80px;
597
- }
598
-
599
- .hivegpt-chat-wrapper .chat-header .closeIcon {
600
- top: 8px;
601
- right: 8px;
602
- width: 28px;
603
- height: 28px;
604
- }
605
-
606
- .hivegpt-chat-wrapper .chat-header .closeIcon span {
607
- font-size: 14px;
608
- }
609
-
610
- .hivegpt-chat-wrapper .chat-header {
611
- padding: 10px 24px;
612
- }
613
-
614
- .hivegpt-chat-wrapper .chat-header h2 {
615
- font-size: 20px;
616
- }
617
-
618
- .cta-faqs {
619
- padding: 10px 0 0;
620
- }
621
- }
622
-
623
- .body-overflow-hidden {
624
- overflow: hidden;
625
- }
626
-
627
- .chat-button {
628
- background: #17235b;
629
- border: #17235b;
630
- border-radius: 50%;
631
- width: 50px;
632
- height: 50px;
633
- font-size: 24px;
634
- color: #fff;
635
- display: inline-flex;
636
- align-items: center;
637
- justify-content: center;
638
- }
639
-
640
- textarea {
641
- caret-color: #000;
642
- }
643
-
644
- .cta_suggestions {
645
- display: flex;
646
- align-items: center;
647
- flex-wrap: wrap;
648
- gap: 0.5rem;
649
- margin-bottom: 20px;
650
-
651
- button {
652
- color: #1543cd;
653
- background: #fff;
654
- border: 1px solid #174ae4;
655
- padding: 8px 12px;
656
- border-radius: 10px;
657
- font-size: 14px;
658
- line-height: 1.2;
659
- font-weight: 600;
660
- text-align: left;
661
- position: relative;
662
- transition: all 0.3s;
663
- box-shadow: rgba(0, 0, 0, 0.13) 0px 1.6px 3.6px 0px,
664
- rgba(0, 0, 0, 0.1) 0px 0.3px 0.9px 0px;
665
-
666
- &:hover {
667
- background: #eff3ff;
668
- }
669
- }
670
- }
671
-
672
- .labelChat {
673
- margin: 0 0 10px;
674
- font-weight: 400;
675
- font-size: 14px;
676
- }
677
-
678
- .labelChat {
679
- margin: 0 0 10px;
680
- font-weight: 400;
681
- font-size: 14px;
682
- }
683
-
684
- .chatType {
685
- h4 {
686
- text-align: center;
687
- color: #566563;
688
- }
689
-
690
- ul {
691
- list-style: none;
692
- padding: 4px;
693
- margin: 0 0 20px;
694
- display: flex;
695
- align-items: center;
696
- justify-content: center;
697
- background: #fff;
698
- border-radius: 10px;
699
- box-shadow: 0px 0.3px 0.9px rgba(0, 0, 0, 0.12),
700
- 0px 1.6px 3.6px rgba(0, 0, 0, 0.16);
701
-
702
- li {
703
- flex: 1;
704
-
705
- button {
706
- width: 100%;
707
- text-align: center;
708
- background: #fff;
709
- align-items: center;
710
- border: none;
711
- padding: 0.375rem;
712
- min-height: 48px;
713
- border-radius: 10px;
714
- font-weight: 600;
715
- text-shadow: 1px 0px rgb(0 0 0 / 20%);
716
-
717
- &.active {
718
- box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
719
- background: linear-gradient(96deg, #761c79 -10.61%, #761c79 84.59%);
720
- color: #fff;
721
- }
722
- }
723
- }
724
- }
725
- }
726
-
727
- .cta_suggestions {
728
- display: flex;
729
- align-items: center;
730
- flex-wrap: wrap;
731
- gap: 0.5rem;
732
- margin-bottom: 20px;
733
-
734
- button {
735
- color: #1543cd;
736
- background: #fff;
737
- border: 1px solid #174ae4;
738
- padding: 8px 12px;
739
- border-radius: 10px;
740
- font-size: 14px;
741
- line-height: 1.2;
742
- font-weight: 600;
743
- text-align: left;
744
- position: relative;
745
- transition: all 0.3s;
746
- box-shadow: rgba(0, 0, 0, 0.13) 0px 1.6px 3.6px 0px,
747
- rgba(0, 0, 0, 0.1) 0px 0.3px 0.9px 0px;
748
-
749
- &:hover {
750
- background: #eff3ff;
751
- }
752
- }
753
- }
754
-
755
- .balanced .chat-footer .cta-footer .cta-chat,
756
- .balanced .chat-main .chat.user .chat-box .message,
757
- .balanced .chatType ul li button.active {
758
- color: rgb(0, 0, 0);
759
- // background: linear-gradient(149deg, #0066ff 0%, #0066ff 100%);
760
- }
761
-
762
- .balanced .chat-main .innerChat .title p span {
763
- color: #0066ff;
764
- }
765
-
766
- .balanced mat-drawer {
767
- background-image: linear-gradient(180deg,
768
- rgb(88 190 251 / 5%) 60%,
769
- rgba(0, 102, 255, 0.2) 96.27%);
770
- }
771
-
772
- .balanced .cta_suggestions button:hover {
773
- border: 1px solid #0066ff;
774
- }
775
-
776
- .precise .chat-footer .cta-footer .cta-chat,
777
- .precise .chat-main .chat.user .chat-box .message {
778
- background: linear-gradient(96deg, #69ca6d -10.61%, #4caf50 84.59%);
779
- }
780
-
781
- .precise .chatType ul li button.active {
782
- color: white;
783
- background: linear-gradient(96deg, #4caf50 -10.61%, #4caf50 84.59%);
784
- }
785
-
786
- .precise .chat-main .innerChat .title p span {
787
- color: #4caf50;
788
- }
789
-
790
- .precise mat-drawer {
791
- background-image: linear-gradient(180deg,
792
- rgba(76, 175, 80, 0.05) 60%,
793
- rgba(76, 175, 80, 0.3) 96.27%);
794
- }
795
-
796
- .precise .cta_suggestions button:hover {
797
- border: 1px solid #4caf50;
798
- }
799
-
800
- .title {
801
- margin-bottom: 20px;
802
-
803
- h2 {
804
- font-size: 22px;
805
- margin: 0 0 0px;
806
-
807
- span {
808
- color: #000;
809
- display: inline-flex;
810
- align-items: center;
811
- gap: 10px;
812
- }
813
-
814
- i {
815
- line-height: 1;
816
- font-size: 30px;
817
- color: #06f;
818
-
819
- svg {
820
- width: 30px;
821
- height: 30px;
822
- }
823
- }
824
- }
825
-
826
- p {
827
- margin: 0;
828
- font-weight: 600;
829
-
830
- span {
831
- color: #06f;
832
- }
833
- }
834
- }
835
-
836
- .agenda-items-wrapper {
837
- // min-height: 400px;
838
- padding-top: 15px;
839
- padding-bottom: 15px;
840
- }
841
-
842
- @media (max-width: 576px) {
843
- .list-view .session-detail-wrapper {
844
- flex-direction: column;
845
- border: none;
846
- }
847
- }
848
-
849
- .card-background-session {
850
- background: #fff;
851
- border-radius: 8px;
852
-
853
- .body-text-color {
854
- color: #111 !important;
855
- }
856
-
857
- h2 {
858
- font-size: 20px;
859
- overflow: hidden;
860
- display: -webkit-box;
861
- -webkit-line-clamp: 1;
862
- /* Number of lines to show */
863
- -webkit-box-orient: vertical;
864
- margin-bottom: 8px;
865
- }
866
-
867
- .session-description {
868
- color: #111 !important;
869
- overflow: hidden;
870
- display: -webkit-box;
871
- -webkit-line-clamp: 2;
872
- /* Number of lines to show */
873
- -webkit-box-orient: vertical;
874
- font-size: 14px;
875
- }
876
-
877
- .color-secondary {
878
- color: #111 !important;
879
- }
880
-
881
- p {
882
- font-size: 14px;
883
- }
884
- }
885
-
886
- .list-view .session-detail-wrapper .s27-btn-icon {
887
- background: transparent;
888
- border: transparent;
889
- }
890
-
891
- .list-view .session-detail-wrapper {
892
- margin-bottom: 4px;
893
- border-left: 3px solid transparent;
894
- display: flex;
895
- /* grid-gap: 20px;
896
- gap: 20px; */
897
- margin-bottom: 16px;
898
- }
899
-
900
- .thumbnail {
901
- width: 160px;
902
- height: 160px;
903
- min-width: 160px;
904
- position: relative;
905
- display: flex;
906
- align-items: center;
907
- justify-content: center;
908
- }
909
-
910
- .thumbnail img {
911
- height: 100%;
912
- width: 100%;
913
- object-fit: cover;
914
- }
915
-
916
- @media (max-width: 576px) {
917
- .thumbnail {
918
- width: 100%;
919
- min-height: unset;
920
- height: 160px;
921
- }
922
- }
923
-
924
- .thumbnail .play-btn {
925
- font-size: 60px;
926
- background-color: transparent;
927
- border: 0;
928
- position: absolute;
929
- right: 0;
930
- left: 0;
931
- top: 0;
932
- bottom: 0;
933
- width: 100%;
934
- display: flex;
935
- align-items: center;
936
- justify-content: center;
937
- }
938
-
939
- .thumbnail .play-btn span {
940
- font-size: 80px;
941
- text-shadow: 0px 0px 14px rgb(74 74 74 / 45%);
942
- }
943
-
944
- .content {
945
- flex-grow: 1;
946
- }
947
-
948
- .actions {
949
- background-color: transparent !important;
950
- }
951
-
952
- h2 {
953
- // word-break: break-all;
954
- }
955
-
956
- .speakers {
957
- padding: 0;
958
- margin-top: 10px;
959
- margin-bottom: 0;
960
- }
961
-
962
- .speakers li {
963
- display: flex;
964
- align-items: unset;
965
-
966
- .content {
967
- font-size: 12px !important;
968
- }
969
- }
970
-
971
- .speakers .image {
972
- height: 40px;
973
- width: 40px;
974
- min-width: 40px;
975
- border-radius: 100%;
976
- overflow: hidden;
977
- }
978
-
979
- .speakers img {
980
- height: 100%;
981
- width: 100%;
982
- object-fit: cover;
983
- }
984
-
985
- .grid-2-cols {
986
- display: grid;
987
- grid-template-columns: calc(55% - 10px) calc(50% - 10px);
988
- grid-gap: 15px;
989
- padding-right: 20px;
990
- }
991
-
992
- @media (max-width: 768px) {
993
- .grid-2-cols {
994
- grid-template-columns: calc(50% - 10px) calc(50% - 10px);
995
- }
996
- }
997
-
998
- @media (max-width: 575px) {
999
- .grid-3-cols {
1000
- grid-template-columns: 100%;
1001
- }
1002
- }
1003
-
1004
- .quick-prompts-extended {
1005
- align-items: flex-start !important;
1006
- margin-left: 0px !important;
1007
- }
1008
-
1009
- .border-shape {
1010
- // background: #fff;
1011
- // border: 1px solid #ced4da;
1012
- // border-radius: 4px;
1013
- // overflow: hidden;
1014
- // padding: 0;
1015
- // width: 100%;
1016
- // min-height: 60px;
1017
-
1018
- // .form-control-1 {
1019
- // line-height: 21px;
1020
- // padding: 10px;
1021
- // width: 100%;
1022
- // background: none !important;
1023
- // position: relative;
1024
- // border: 0;
1025
- // outline: 0;
1026
-
1027
- // &:focus {
1028
- // box-shadow: none;
1029
- // outline: none;
1030
- // }
1031
- //}
1032
-
1033
- .s27-scroll {
1034
- &::-webkit-scrollbar {
1035
- width: 3px;
1036
- border-radius: 30px;
1037
- }
1038
-
1039
- &::-webkit-scrollbar-track {
1040
- background: #f1f1f1;
1041
- border-radius: 30px;
1042
- }
1043
-
1044
- &::-webkit-scrollbar-thumb {
1045
- background: #888;
1046
- border-radius: 30px;
1047
- }
1048
- }
1049
- }
1050
-
1051
- /* chat box card */
1052
-
1053
- .box {
1054
- width: 100%;
1055
- height: 275px;
1056
- margin: 10px 0;
1057
- display: table;
1058
- }
1059
-
1060
- .tiktokwrapper {
1061
- display: grid;
1062
- grid-template-columns: repeat(2, 1fr);
1063
- /* Two columns with equal width */
1064
- gap: 10px;
1065
- /* Gap between cards */
1066
- height: 100%;
1067
-
1068
- .tiktokshell {
1069
- width: 100%;
1070
- min-width: 160px;
1071
- height: 100%;
1072
- min-height: 275px;
1073
- position: relative;
1074
- border-radius: 5px;
1075
- background: #3d2b8f;
1076
- box-shadow: 0px 0px 6px #494949;
1077
- border: 2px solid #fff;
1078
- }
1079
-
1080
- .overlymask {
1081
- background-image: url(https://e1cdn.social27.com/digitalevents/HiveGpt/screen-overlay.png);
1082
- background-position: 0 0;
1083
- position: absolute;
1084
- z-index: 6;
1085
- bottom: 0px;
1086
- left: 0px;
1087
- width: 100%;
1088
- height: 100%;
1089
- }
1090
-
1091
- .videoPhotobox {
1092
- position: absolute;
1093
- z-index: 6;
1094
- bottom: 0px;
1095
- left: 0px;
1096
- width: auto;
1097
- overflow: hidden;
1098
- height: 272px;
1099
-
1100
- video {
1101
- width: 100%;
1102
- height: 270px;
1103
- outline: 0;
1104
- object-fit: cover;
1105
- border-radius: 0;
1106
- cursor: pointer;
1107
- transition: 0.3s ease-in-out;
1108
- }
1109
-
1110
- img {
1111
- width: 100%;
1112
- height: 100%;
1113
- object-fit: cover;
1114
- }
1115
- }
1116
-
1117
- .playBtn {
1118
- position: absolute;
1119
- left: 0;
1120
- right: 0;
1121
- margin: 0 auto;
1122
- z-index: 10;
1123
- height: 40px;
1124
- display: flex;
1125
- align-items: center;
1126
- justify-content: center;
1127
- transition: all 1s;
1128
- cursor: pointer;
1129
- border: none;
1130
- width: 40px;
1131
- top: 105px;
1132
-
1133
- &:hover {
1134
- transform: scale(1.2);
1135
- }
1136
- }
1137
-
1138
- .noPhoto {
1139
- position: absolute;
1140
- left: 0;
1141
- right: 0;
1142
- margin: 0 auto;
1143
- z-index: 6;
1144
- height: 40px;
1145
- display: flex;
1146
- align-items: center;
1147
- justify-content: center;
1148
- transition: all 1s;
1149
- cursor: pointer;
1150
- border: none;
1151
- top: 105px;
1152
-
1153
- h3 {
1154
- font-size: 46px;
1155
- color: #fff;
1156
- }
1157
- }
1158
-
1159
- .onshell-content {
1160
- position: absolute;
1161
- bottom: 10px;
1162
- left: 5px;
1163
- z-index: 10;
1164
-
1165
- .title-shell {
1166
- margin: 0 10px;
1167
- }
1168
-
1169
- h3 {
1170
- color: #fff;
1171
- font-size: 13px;
1172
- font-weight: 500;
1173
- }
1174
-
1175
- .companyName {
1176
- color: #eaeaea;
1177
- font-size: 12px;
1178
- font-weight: 400;
1179
- }
1180
-
1181
- .button-shell button {
1182
- background: #4e4e4e;
1183
- border: none;
1184
- border-radius: 2px;
1185
- padding: 4px 7px;
1186
- color: #fff;
1187
- margin: 0 1px;
1188
- text-transform: capitalize;
1189
- font-size: 11px;
1190
- }
1191
-
1192
- .Connectbtn {
1193
- background: linear-gradient(149deg, #0066ff 0%, #0066ff 100%) !important;
1194
- }
1195
- }
1196
- }
1197
-
1198
- /* Skeleton Box */
1199
- .skeleton-box {
1200
- display: inline-block;
1201
- height: 1em;
1202
- position: relative;
1203
- overflow: hidden;
1204
- background-color: #dddbdd;
1205
- }
1206
-
1207
- .skeleton-box::after {
1208
- position: absolute;
1209
- top: 0;
1210
- right: 0;
1211
- bottom: 0;
1212
- left: 0;
1213
- transform: translateX(-100%);
1214
- background-image: linear-gradient(90deg,
1215
- rgba(255, 255, 255, 0) 0,
1216
- rgba(255, 255, 255, 0.2) 20%,
1217
- rgba(255, 255, 255, 0.5) 60%,
1218
- rgba(255, 255, 255, 0));
1219
- animation: shimmer 2s infinite;
1220
- content: '';
1221
- z-index: 0;
1222
- }
1223
-
1224
- @keyframes shimmer {
1225
- 100% {
1226
- transform: translateX(100%);
1227
- }
1228
- }
1229
-
1230
- /* Blog Post */
1231
- .blog-post__headline {
1232
- font-size: 1.25em;
1233
- font-weight: bold;
1234
- }
1235
-
1236
- .blog-post__meta {
1237
- font-size: 0.85em;
1238
- color: #6b6b6b;
1239
- }
1240
-
1241
- /* Media Object */
1242
- .o-media {
1243
- display: flex;
1244
- }
1245
-
1246
- .o-media__body {
1247
- flex-grow: 1;
1248
- margin-left: 1em;
1249
- }
1250
-
1251
- /* Vertical Spacing */
1252
- .o-vertical-spacing>*+* {
1253
- margin-top: 0.75em;
1254
- }
1255
-
1256
- .o-vertical-spacing--l>*+* {
1257
- margin-top: 2em;
1258
- }
1259
-
1260
- .copy {
1261
- background: none;
1262
- border: none;
1263
- cursor: pointer;
1264
- padding: 5px;
1265
- transition: transform 0.2s ease;
1266
- }
1267
-
1268
- .copy.active {
1269
- transform: scale(1.1);
1270
- }
1271
-
1272
- .copy svg {
1273
- width: 18px;
1274
- height: 18px;
1275
- fill: #566563;
1276
- }
1277
-
1278
- .copyBox {
1279
- padding: 5px 10px;
1280
- position: relative;
1281
- border-radius: 13px;
1282
- width: 135px;
1283
- color: #566563;
1284
- display: flex;
1285
- gap: 12px;
1286
- float: right;
1287
- background: #f7f7f7;
1288
-
1289
- button {
1290
- background: transparent;
1291
- border: none;
1292
- color: #566563;
1293
- padding: 0;
1294
- cursor: pointer;
1295
- transition: all 0.3s;
1296
-
1297
- i {
1298
- display: inline-block;
1299
- }
1300
-
1301
- &:hover {
1302
- color: #17235b;
1303
- }
1304
-
1305
- &.up {
1306
- &:hover {
1307
- i {
1308
- animation: thumbsUpAnimation 0.5s ease-in-out;
1309
- animation-fill-mode: forwards;
1310
- }
1311
- }
1312
- }
1313
-
1314
- &.down {
1315
- &:hover {
1316
- i {
1317
- animation: thumbsDownAnimation 0.5s ease-in-out;
1318
- animation-fill-mode: forwards;
1319
- }
1320
- }
1321
- }
1322
- }
1323
- }
1324
-
1325
- .din {
1326
- display: inline-flex;
1327
- }
1328
-
1329
- .chatFooterWrapper {
1330
- //display: flex;
1331
- flex-direction: column;
1332
- justify-content: center;
1333
- align-items: center;
1334
- //padding: 10px;
1335
- border-top: 1px solid #ccc;
1336
- background-color: #f5f5f5;
1337
- }
1338
-
1339
- .chat-footer {
1340
- display: flex;
1341
- align-items: center;
1342
- width: 100%;
1343
- //max-width: 800px;
1344
- background: #fff;
1345
- // border-radius: 5px;
1346
- //box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
1347
- // padding: 10px;
1348
- margin-bottom: 10px;
1349
- flex-direction: column;
1350
- /* Space between footer and note section */
1351
- }
1352
-
1353
- /* new UI chat -box */
1354
-
1355
- .topinfo-containerbox {
1356
- display: flex;
1357
- justify-content: space-between;
1358
- width: 100%;
1359
- background: #f9f9f9;
1360
- padding: 5px 10px 8px;
1361
- align-items: center;
1362
- border-bottom: 1px solid #efefef;
1363
- margin: 0px 0;
1364
-
1365
- @media (max-width: 768px) {
1366
- flex-direction: column;
1367
- }
1368
- }
1369
-
1370
- .agents_note_wrapper {
1371
- display: flex;
1372
- justify-content: space-around;
1373
- }
1374
-
1375
- .bottombox-wrapper {
1376
- display: flex;
1377
- width: 100%;
1378
- padding: 10px 10px;
1379
- }
1380
-
1381
- /* new UI chat -box */
1382
-
1383
- .dropdown-wrapper {
1384
- position: relative;
1385
- margin-right: 10px;
1386
- }
1387
-
1388
- .dropdown-header {
1389
- display: flex;
1390
- align-items: center;
1391
- cursor: pointer;
1392
- background: #fff;
1393
- border-radius: 48px;
1394
- padding: 0.5rem 1.5rem;
1395
- margin-bottom: 0;
1396
- font-size: 14px;
1397
- color: #414141 !important;
1398
- white-space: nowrap;
1399
- border: 1px solid #ddd;
1400
- }
1401
-
1402
- .dropdown-header span {
1403
- margin-right: 8px;
1404
- }
1405
-
1406
- .dropdown-menu {
1407
- background-color: #fff;
1408
- border: 1px solid #ededed;
1409
- border-radius: 5px;
1410
- bottom: 100% !important;
1411
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
1412
- display: block;
1413
- left: 0;
1414
- margin-bottom: 10px;
1415
- max-height: 200px;
1416
- overflow-y: auto;
1417
- padding: 0;
1418
- position: absolute;
1419
- top: auto;
1420
- width: 230px;
1421
- z-index: 1000;
1422
- }
1423
-
1424
- .dropdown-menu label {
1425
- cursor: pointer;
1426
- display: block;
1427
- padding: 5px 15px;
1428
- font-size: 16px;
1429
- }
1430
-
1431
- .dropdown-menu label input {
1432
- width: 16px;
1433
- height: 16px;
1434
- }
1435
-
1436
- .dropdown-menu label:hover {
1437
- background-color: #f0f0f0;
1438
- }
1439
-
1440
- .border-shape {
1441
- flex-grow: 1;
1442
- // margin-right: 10px;
1443
- }
1444
-
1445
- .form-control-1 {
1446
- width: 100%;
1447
- border: 1px solid #ddd;
1448
- border-radius: 5px;
1449
- padding: 10px;
1450
- }
1451
-
1452
- .cta-footer {
1453
- display: flex;
1454
- align-items: center;
1455
- }
1456
-
1457
- .text-left .note-section {
1458
- width: 100%;
1459
- max-width: 800px;
1460
- background: #fff;
1461
- border-radius: 5px;
1462
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
1463
- padding: 10px;
1464
- display: flex;
1465
- align-items: center;
1466
- margin-top: 10px;
1467
- }
1468
-
1469
- .text-left .note {
1470
- display: flex;
1471
- align-items: center;
1472
- color: #555;
1473
- }
1474
-
1475
- .text-left .note i {
1476
- margin-right: 8px;
1477
- }
1478
-
1479
- .text-left .note .text {
1480
- font-size: 14px;
1481
- }
1482
-
1483
- .card-container {
1484
- display: flex;
1485
- gap: 15px;
1486
- }
1487
-
1488
- .custom-card {
1489
- width: 18rem;
1490
- border: 1px solid #ddd;
1491
- border-radius: 0.25rem;
1492
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
1493
- overflow: hidden;
1494
- background: #fffefe;
1495
- margin-bottom: 10px;
1496
- }
1497
-
1498
- .custom-card .card-body {
1499
- padding: 10px;
1500
- }
1501
-
1502
- .custom-card .card-title {
1503
- font-size: 1.25rem;
1504
- font-weight: bold;
1505
- }
1506
-
1507
- .custom-card .card-text {
1508
- font-size: 1rem;
1509
- text-align: left;
1510
- }
1511
-
1512
- .custom-card .btn-primary {
1513
- background-color: #007bff;
1514
- border: none;
1515
- border-radius: 0.25rem;
1516
- }
1517
-
1518
- .custom-card .card-footer {
1519
- padding: 10px;
1520
- background-color: #f8f9fa;
1521
- text-align: center;
1522
- color: #6c757d;
1523
- }
1524
-
1525
- .list-container {
1526
- list-style: none;
1527
- padding: 0px;
1528
- }
1529
-
1530
- .list-container li {
1531
- font-size: 13px;
1532
- margin-bottom: 5px;
1533
- padding: 6px 12px;
1534
- background: #f5f5f5;
1535
- border-radius: 8px;
1536
- }
1537
-
1538
- .list-container li:hover {
1539
- color: #06f;
1540
- cursor: pointer;
1541
- }
1542
-
1543
- .collapsible-container {
1544
- width: 100%;
1545
-
1546
- margin-bottom: 5px;
1547
- overflow: hidden;
1548
- }
1549
-
1550
- .collapsible-header {
1551
- display: flex;
1552
-
1553
- padding: 15px;
1554
- cursor: pointer;
1555
- }
1556
-
1557
- .collapsible-header .header-icon {
1558
- font-size: 20px;
1559
- margin-right: 10px;
1560
- }
1561
-
1562
- .collapsible-header .header-title {
1563
- flex: 1;
1564
- font-size: 18px;
1565
- }
1566
-
1567
- .collapsible-header .toggle-icon {
1568
- font-size: 18px;
1569
- margin-left: 18px;
1570
- }
1571
-
1572
- .collapsible-content {
1573
- padding: 15px;
1574
- background-color: #f8f9fa;
1575
- color: #333;
1576
- width: 100%;
1577
- }
1578
-
1579
- .collapsible-content.show {
1580
- display: block;
1581
- }
1582
-
1583
- .researchingCard {
1584
- margin: 5px auto;
1585
- }
1586
-
1587
- .card-header {
1588
- border-bottom: 0px;
1589
- background: #eee;
1590
- padding: 8px 15px;
1591
- display: flex !important;
1592
- width: auto;
1593
- border-radius: 8px 8px 0 0;
1594
- }
1595
-
1596
- .icon {
1597
- font-size: 20px;
1598
- line-height: 5px;
1599
- }
1600
-
1601
- .rotate {
1602
- transform: rotate(180deg);
1603
- }
1604
-
1605
- .collapse {
1606
- display: none;
1607
- }
1608
-
1609
- .uptList {
1610
- background: #f5deb324;
1611
- border-radius: 0 0 10px 10px;
1612
- margin-bottom: 20px !important;
1613
- }
1614
-
1615
- .list-group-item {
1616
- font-size: 15px;
1617
- color: #0f0f0f;
1618
- margin: 1px 0;
1619
- padding: 0 18px;
1620
- }
1621
-
1622
- .sources-container {
1623
- display: flex;
1624
- gap: 15px;
1625
- align-items: flex-start;
1626
- }
1627
-
1628
- .source-card {
1629
- position: relative;
1630
- background-color: #f0f3f5;
1631
- border-radius: 10px;
1632
- padding: 15px;
1633
- display: flex;
1634
- flex-direction: column;
1635
- justify-content: space-between;
1636
- /* Distribute space evenly */
1637
- width: 100%;
1638
- /* Fixed width */
1639
- cursor: pointer;
1640
- transition: box-shadow 0.3s ease;
1641
- box-sizing: border-box;
1642
- }
1643
-
1644
- .popup {
1645
- position: absolute;
1646
- top: 100%;
1647
- /* Position above the card */
1648
- left: 50%;
1649
- transform: translateX(-50%) translateY(-10px);
1650
- /* Center the popup */
1651
- background-color: #fff;
1652
- padding: 10px;
1653
- border-radius: 5px;
1654
- white-space: normal;
1655
- /* Allow text to wrap */
1656
- visibility: hidden;
1657
- opacity: 0;
1658
- transition: opacity 0.3s ease, transform 0.3s ease;
1659
- z-index: 10;
1660
- width: 100%;
1661
-
1662
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
1663
- }
1664
-
1665
- .popup h5 {
1666
- font-size: 14px;
1667
- font-weight: 600;
1668
- margin: 0 0 10px 0;
1669
- line-height: 1.2;
1670
- margin-top: 5px;
1671
- }
1672
-
1673
- .popup p {
1674
- font-size: 12px;
1675
- margin: 0;
1676
- line-height: 1.4;
1677
- /* Line height for better readability */
1678
- }
1679
-
1680
- .popup h5:hover {
1681
- color: #007bff;
1682
- cursor: pointer;
1683
- }
1684
-
1685
- .popup .source-url {
1686
- text-decoration: none;
1687
- color: #000;
1688
- }
1689
-
1690
- .popup .source-url:hover {
1691
- text-decoration: underline;
1692
- color: #007bff;
1693
- cursor: pointer;
1694
- }
1695
-
1696
- .source-card:hover .popup {
1697
- visibility: visible;
1698
- opacity: 1;
1699
- transform: translateX(-50%) translateY(-15px);
1700
- /* Adjust popup position */
1701
- }
1702
-
1703
- .source-card:hover {
1704
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
1705
- transform: scale(1.05);
1706
- }
1707
-
1708
- .source-title {
1709
- font-size: 14px;
1710
- font-weight: 500;
1711
- /* Use 400 for normal or 500 for slightly bold */
1712
-
1713
- text-align: left;
1714
- display: -webkit-box;
1715
- /* Required for multi-line truncation */
1716
- -webkit-line-clamp: 2;
1717
- /* Limits the text to 2 lines */
1718
- -webkit-box-orient: vertical;
1719
- /* Specifies the orientation of the box */
1720
- overflow: hidden;
1721
- /* Hides text overflow */
1722
- text-overflow: ellipsis;
1723
- /* Adds ellipsis (...) to truncated text */
1724
- height: 55px;
1725
- /* Fixed height */
1726
- line-height: 1.5;
1727
-
1728
- /* Adjust line-height as needed */
1729
- img {
1730
- width: 20px;
1731
- margin-left: 10px;
1732
- }
1733
- }
1734
-
1735
- .source-url {
1736
- font-size: 12px;
1737
- color: #6c757d;
1738
- text-align: left;
1739
- display: flex;
1740
- align-items: center;
1741
- }
1742
-
1743
- .source-url img {
1744
- width: 16px;
1745
- height: 16px;
1746
- margin-right: 5px;
1747
- /* Space between image and text */
1748
- border-radius: 50%;
1749
- /* Make the image round */
1750
- }
1751
-
1752
- .sourceDraweContainer {
1753
- .container {
1754
- background-color: white;
1755
- padding: 20px;
1756
- }
1757
-
1758
- .sources-list {
1759
- list-style: none;
1760
- padding: 0;
1761
- }
1762
-
1763
- .sources-list li {
1764
- display: flex;
1765
- align-items: flex-start;
1766
- margin-bottom: 15px;
1767
- }
1768
-
1769
- .sources-list input[type='checkbox'] {
1770
- margin-right: 15px;
1771
- margin-top: 8px;
1772
- flex-shrink: 0;
1773
- }
1774
-
1775
- .source-content {
1776
- flex: 1;
1777
- border: 1px solid #ddd;
1778
- border-radius: 8px;
1779
- padding: 12px;
1780
- background-color: #f5f2f2;
1781
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
1782
- cursor: pointer;
1783
- }
1784
-
1785
- .source-content:hover {
1786
- background: #ccc;
1787
- }
1788
-
1789
- .source-title {
1790
- font-size: 1rem;
1791
- font-weight: 500;
1792
- display: block;
1793
- margin-bottom: 4px;
1794
- height: auto !important;
1795
- }
1796
-
1797
- .source-description {
1798
- font-size: 0.875rem;
1799
-
1800
- display: block;
1801
- }
1802
-
1803
- .image-container {
1804
- display: flex;
1805
- align-items: center;
1806
- margin: 10px 0;
1807
- }
1808
-
1809
- .image-container img {
1810
- width: 16px;
1811
- height: 16px;
1812
- margin-right: 5px;
1813
- border-radius: 50%;
1814
- border: 1px solid #ddd;
1815
- object-fit: cover;
1816
- }
1817
-
1818
- .image-container span {
1819
- font-size: 13px;
1820
- color: #555;
1821
- }
1822
- }
1823
-
1824
- .closeButtonEditor {
1825
- position: absolute;
1826
- right: 10px;
1827
- top: 5px;
1828
- padding: 0;
1829
- height: 32px;
1830
- width: 32px;
1831
- border: 0;
1832
- border-radius: 100%;
1833
- padding-top: 3px;
1834
- }
1835
-
1836
- .closeButtonSource {
1837
- border-color: transparent !important;
1838
- color: inherit;
1839
- background: none !important;
1840
- box-shadow: none !important;
1841
- transition: color 0.2s ease-in-out;
1842
- float: right;
1843
- margin-top: 20px;
1844
- cursor: pointer;
1845
-
1846
- &.closeplaygroundbutton {
1847
- display: none !important;
1848
- }
1849
- }
1850
-
1851
- .graph-img {
1852
- width: 90%;
1853
- background: #fefefe3b;
1854
- padding: 15px;
1855
- border-radius: 15px;
1856
- }
1857
-
1858
- .chat-textarea {
1859
- width: 100%;
1860
- // min-height: 40px;
1861
- padding: 10px;
1862
- border: none;
1863
- resize: none;
1864
- overflow-y: hidden;
1865
- box-sizing: border-box;
1866
- font-size: 15px;
1867
- line-height: 1.5;
1868
- background-color: #fff;
1869
- height: 30px;
1870
- transition: all 1s;
1871
-
1872
- &:hover {
1873
- height: 60px;
1874
- }
1875
-
1876
- &:focus {
1877
- height: 60px;
1878
- }
1879
- }
1880
-
1881
- .chat-textarea:focus {
1882
- outline: none;
1883
- }
1884
-
1885
- .fixed-btn {
1886
- position: fixed;
1887
- right: -22px;
1888
- top: 46%;
1889
- transform: translateY(-50%) rotate(270deg);
1890
- background-color: black;
1891
- color: white;
1892
- border: none;
1893
- padding: 5px 12px;
1894
- cursor: pointer;
1895
- transform-origin: center;
1896
- z-index: 1000000;
1897
- border-radius: 8px 8px 0 0;
1898
- font-size: 16px;
1899
- transition: all 0.5s;
1900
-
1901
- &:hover {
1902
- background-color: #5b5b5b;
1903
- }
1904
- }
1905
-
1906
- .fixed-btn-close {
1907
- position: fixed;
1908
- right: 549px;
1909
- top: 46%;
1910
- transform: translateY(-50%) rotate(270deg);
1911
- background-color: black;
1912
- color: white;
1913
- border: none;
1914
- padding: 5px 16px;
1915
- cursor: pointer;
1916
- transform-origin: center;
1917
- z-index: 1000000;
1918
- border-radius: 8px 8px 0 0;
1919
- font-size: 16px;
1920
- transition: all 0.5s;
1921
-
1922
- &:hover {
1923
- background-color: #5b5b5b;
1924
- }
1925
- }
1926
-
1927
- .btn.rotate {
1928
- transform: rotate(-15deg);
1929
- }
1930
-
1931
- .btn.rotate:hover {
1932
- transform: rotate(0deg);
1933
- }
1934
-
1935
- .btn.cta-chat {
1936
- color: #666;
1937
- border: none;
1938
- padding: 5px;
1939
- cursor: pointer;
1940
- width: 40px;
1941
- height: 40px;
1942
- background: #f3f3f3;
1943
- border-radius: 50%;
1944
- display: flex;
1945
- align-items: center;
1946
- margin: 0 auto;
1947
- text-align: center;
1948
- justify-content: center;
1949
- transition: all 0.5s;
1950
-
1951
- &:hover {
1952
- background: #d7d7d7;
1953
- color: #666;
1954
- }
1955
- }
1956
-
1957
- .btn.cta-chat svg {
1958
- vertical-align: middle;
1959
- }
1960
-
1961
- .chat-footer-upt {
1962
- padding: 4px;
1963
- }
1964
-
1965
- .workflowbox {
1966
- display: flex;
1967
- align-items: center;
1968
- cursor: pointer;
1969
- border-radius: 48px;
1970
- padding: 0.5rem 1.5rem;
1971
- margin-bottom: 0;
1972
- font-size: 14px;
1973
- color: #414141 !important;
1974
- white-space: nowrap;
1975
- border: 1px solid transparent;
1976
- transition: all 0.5s;
1977
-
1978
- &:hover {
1979
- border: 1px solid #ddd;
1980
- background: #fff;
1981
- }
1982
-
1983
- svg {
1984
- margin: 0 10px;
1985
- }
1986
- }
1987
-
1988
- .edit-boxDrawer {
1989
- border-left: 1px solid #ddd;
1990
- box-shadow: 1px 1px 15px #ddddddc4 !important;
1991
- }
1992
-
1993
- .edit-boxDrawer mat-drawer-content {
1994
- margin-left: 0px !important;
1995
- margin-right: 0px !important;
1996
- }
1997
-
1998
- ng-deep .edit-boxDrawer mat-drawer-content {
1999
- margin-left: 0px !important;
2000
- margin-right: 0px !important;
2001
- }
2002
-
2003
- .SearchTitle {
2004
- font-size: 16px !important;
2005
- text-transform: capitalize;
2006
- }
2007
-
2008
- .exicution {
2009
- margin: 30px 0 !important;
2010
- background: #f9f9f9;
2011
- padding: 15px 20px;
2012
- }
2013
-
2014
- .new-conversationbutton {
2015
- position: absolute;
2016
- right: 88px;
2017
- top: 10px;
2018
- z-index: 1000;
2019
- background: #f5f5f5;
2020
- padding: 6px 6px;
2021
- border-radius: 10px;
2022
- display: flex;
2023
- justify-content: space-around;
2024
- width: 120px;
2025
- align-items: center;
2026
- font-size: 14px;
2027
- cursor: pointer;
2028
- border: 1px solid #e3e3e3;
2029
- transition: all 0.5s;
2030
-
2031
- &:hover {
2032
- background: #eee;
2033
- }
2034
-
2035
- @media (max-width: 768px) {
2036
- position: fixed !important;
2037
- right: 18px !important;
2038
- top: 56px !important;
2039
- padding: 0px 0px !important;
2040
- width: 90px !important;
2041
- align-items: center;
2042
- font-size: 11px !important;
2043
-
2044
- }
2045
- }
2046
-
2047
- .NoteTxt {
2048
- margin: 0 auto;
2049
-
2050
- .text {
2051
- margin: 0 5px;
2052
- }
2053
- }
2054
-
2055
- .form-container {
2056
- width: 100%;
2057
- }
2058
-
2059
- .progress-container {
2060
- display: flex;
2061
- align-items: center;
2062
- }
2063
-
2064
- .circular-loader {
2065
- position: relative;
2066
- width: 50px;
2067
- height: 50px;
2068
- border-radius: 50%;
2069
- border: 4px solid rgba(0, 0, 0, 0.1);
2070
- box-sizing: border-box;
2071
- }
2072
-
2073
- .loader-spinner {
2074
- position: absolute;
2075
- top: 0;
2076
- left: 0;
2077
- width: 100%;
2078
- height: 100%;
2079
- border: 2px solid #2196f3;
2080
- border-top-color: transparent;
2081
- border-radius: 50%;
2082
- animation: rotate-loader 1s linear infinite;
2083
- box-sizing: border-box;
2084
- }
2085
-
2086
- .loader-text {
2087
- position: absolute;
2088
- top: 50%;
2089
- left: 50%;
2090
- transform: translate(-50%, -50%);
2091
- font-size: 12px;
2092
- font-weight: bold;
2093
- color: #333;
2094
- }
2095
-
2096
- .loader-label {
2097
- margin-left: 20px;
2098
- font-size: 16px;
2099
- color: #333;
2100
- }
2101
-
2102
- /* Checkmark styles */
2103
- .checkmark {
2104
- display: flex;
2105
- justify-content: center;
2106
- align-items: center;
2107
- width: 100%;
2108
- height: 100%;
2109
- }
2110
-
2111
- .checkmark-circle {
2112
- stroke: #4caf50;
2113
- stroke-width: 4;
2114
- stroke-dasharray: 166;
2115
- stroke-dashoffset: 166;
2116
- animation: stroke 0.6s ease-in-out forwards;
2117
- }
2118
-
2119
- .checkmark-check {
2120
- stroke: #4caf50;
2121
- stroke-width: 4;
2122
- stroke-linecap: round;
2123
- stroke-linejoin: round;
2124
- stroke-dasharray: 48;
2125
- stroke-dashoffset: 48;
2126
- animation: stroke-check 0.4s 0.4s ease-in-out forwards;
2127
- }
2128
-
2129
- @keyframes stroke {
2130
- 100% {
2131
- stroke-dashoffset: 0;
2132
- }
2133
- }
2134
-
2135
- @keyframes stroke-check {
2136
- 100% {
2137
- stroke-dashoffset: 0;
2138
- }
2139
- }
2140
-
2141
- @keyframes rotate-loader {
2142
- 0% {
2143
- transform: rotate(0deg);
2144
- }
2145
-
2146
- 100% {
2147
- transform: rotate(360deg);
2148
- }
2149
- }
2150
-
2151
- /* Animation for the checkmark */
2152
- @keyframes checkmark-animation {
2153
- 0% {
2154
- opacity: 0;
2155
- transform: scale(0);
2156
- }
2157
-
2158
- 100% {
2159
- opacity: 1;
2160
- transform: scale(1);
2161
- }
2162
- }
2163
-
2164
- .circular-loader.completed .loader-spinner {
2165
- animation: none;
2166
- transform: rotate(360deg);
2167
- }
2168
-
2169
- .icon-button {
2170
- background-color: transparent;
2171
- border: none;
2172
- cursor: pointer;
2173
- font-size: 24px;
2174
- color: #333;
2175
- }
2176
-
2177
- .icon-button:focus {
2178
- outline: none;
2179
- }
2180
-
2181
- .icon-button:hover {
2182
- color: #007bff;
2183
- }
2184
-
2185
- .modal {
2186
- display: block;
2187
- position: fixed;
2188
- z-index: 1000001;
2189
- padding-top: 0;
2190
- left: 0;
2191
- top: 0;
2192
- width: 100%;
2193
- height: 100%;
2194
- background-color: rgba(0, 0, 0, 0.4);
2195
- }
2196
-
2197
-
2198
- .modal-content {
2199
- background-color: #fff;
2200
- margin: 5% auto;
2201
- padding: 20px;
2202
- border-radius: 8px;
2203
- width: 82%;
2204
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
2205
- height: 600px;
2206
- position: relative;
2207
- }
2208
-
2209
- .close {
2210
- color: #aaa;
2211
- float: right;
2212
- font-size: 28px;
2213
- font-weight: bold;
2214
- }
2215
-
2216
- .close:hover,
2217
- .close:focus {
2218
- color: black;
2219
- text-decoration: none;
2220
- cursor: pointer;
2221
- }
2222
-
2223
-
2224
-
2225
- /* new chat UI fixes */
2226
- .SearchTitle.user {
2227
- font-size: 30px !important;
2228
- text-transform: none !important;
2229
-
2230
- h2 {
2231
- font-size: 1.7rem !important;
2232
- }
2233
-
2234
- p {
2235
- font-size: 1.7rem !important;
2236
- }
2237
-
2238
-
2239
- }
2240
-
2241
- /* New UI for workflow */
2242
- .title_chat {
2243
- display: flex;
2244
- margin: 0;
2245
- padding: 0;
2246
- }
2247
-
2248
- .title_chat h2 {
2249
- font-size: 20px;
2250
- margin: 10px 0;
2251
- display: flex;
2252
- gap: 10px;
2253
- align-items: center;
2254
-
2255
- @media (max-width: 768px) {
2256
- flex-direction: column;
2257
- align-items: start;
2258
- font-size: 16px;
2259
- }
2260
- }
2261
-
2262
- .small-title {
2263
- font-size: 12px;
2264
- margin: 2px 0;
2265
- }
2266
-
2267
- .titleSection {
2268
- margin: 0;
2269
-
2270
- h2 {
2271
- font-size: 20px;
2272
- margin: 0;
2273
- color: #000;
2274
- }
2275
- }
2276
-
2277
-
2278
- .inputs-section {
2279
- background-color: #f7f7f7;
2280
- padding: 10px 15px 0;
2281
- margin: 0 0 10px;
2282
- border-radius: 5px;
2283
-
2284
- }
2285
-
2286
- .inputs-section h3 {
2287
- font-size: 16px;
2288
- }
2289
-
2290
- .actions-section {
2291
- background-color: #f9f9f9;
2292
- padding: 15px;
2293
- margin-bottom: 20px;
2294
- border-radius: 5px;
2295
- height: 500px;
2296
- overflow-y: auto;
2297
- }
2298
-
2299
- .timeline {
2300
- position: relative;
2301
- padding-left: 40px;
2302
- margin-bottom: 20px;
2303
- }
2304
-
2305
- .timeline:before {
2306
- content: "";
2307
- position: absolute;
2308
- left: 19px;
2309
- height: 100%;
2310
- border-right: 2px dashed #cecece;
2311
- }
2312
-
2313
- .timeline-item {
2314
- position: relative;
2315
- margin-bottom: 20px;
2316
- }
2317
-
2318
- .timeline-item:before {
2319
- content: "";
2320
- position: absolute;
2321
- left: -30px;
2322
- top: 0px;
2323
- width: 20px;
2324
- height: 20px;
2325
- background-color: #007bff;
2326
- border-radius: 50%;
2327
- z-index: 1;
2328
- }
2329
-
2330
- .timeline-item h4 {
2331
- margin: 0;
2332
- font-weight: bold;
2333
- font-size: 16px;
2334
- color: #000;
2335
- }
2336
-
2337
- .timeline-item pre {
2338
- background-color: #fff;
2339
- padding: 10px;
2340
- border: 1px solid #ddd;
2341
- border-radius: 5px;
2342
- white-space: pre-wrap;
2343
- }
2344
-
2345
- .timestamp-section {
2346
- justify-content: space-between;
2347
- font-style: normal;
2348
- color: #666;
2349
- }
2350
-
2351
- .mic-btn {
2352
- background-color: #ff4d4d;
2353
- border: none;
2354
- border-radius: 50%;
2355
- padding: 10px;
2356
- color: white;
2357
- font-size: 1.5em;
2358
- cursor: pointer;
2359
- }
2360
-
2361
- .mic-btn:active {
2362
- background-color: #ff6666;
2363
- }
2364
-
2365
- .actions-section h3 {
2366
- font-size: 16px;
2367
- }
2368
-
2369
- .close-wrapper {
2370
- width: 100%;
2371
- display: flex;
2372
- justify-content: right;
2373
- position: absolute;
2374
- right: 22px;
2375
- top: 0;
2376
- }
2377
-
2378
- .close_pop {
2379
- cursor: pointer;
2380
- display: flex;
2381
- justify-content: center;
2382
- align-items: center;
2383
- color: #aaa;
2384
- font-size: 30px;
2385
- font-weight: 400;
2386
- }
2387
-
2388
- .user-Box {
2389
- display: flex;
2390
- align-items: center;
2391
- //width: 95%;
2392
- }
2393
-
2394
- .bards {
2395
- position: absolute;
2396
- right: 0;
2397
- top: 20px;
2398
- }
2399
-
2400
- ::ng-deep {
2401
- .code-container {
2402
- position: relative;
2403
- margin: 20px 0;
2404
-
2405
-
2406
- }
2407
-
2408
- .copy-button {
2409
- position: absolute;
2410
- top: 10px;
2411
- right: 10px;
2412
- background-color: #007bff;
2413
- color: white;
2414
- border: none;
2415
- padding: 5px 10px;
2416
- cursor: pointer;
2417
- border-radius: 4px;
2418
- }
2419
-
2420
- .copy-button:hover {
2421
- background-color: #0056b3;
2422
- }
2423
-
2424
- .code_block.diff {
2425
- background-color: #f8f8f8;
2426
- /* Example diff background */
2427
- border-left: 4px solid #ccc;
2428
- /* Example diff border */
2429
- padding: 10px;
2430
- overflow: auto;
2431
- /* Enable scrolling */
2432
- }
2433
- }
2434
-
2435
- /* playground-marke-down css starts here */
2436
-
2437
- ::ng-deep {
2438
- .heading003 {
2439
- font-size: 20px;
2440
- font-weight: bold;
2441
- color: #06f;
2442
- }
2443
-
2444
- .listing {
2445
- list-style: decimal;
2446
- margin: 0 25px;
2447
- padding: 0;
2448
- }
2449
- }
2450
-
2451
-
2452
-
2453
-
2454
- /* old loader css */
2455
-
2456
- /* =Animate the stuff
2457
- ------------------------ */
2458
- .line {
2459
- display: inline-block;
2460
- width: 15px;
2461
- height: 15px;
2462
- border-radius: 15px;
2463
- background-color: #e8e8e8;
2464
- }
2465
-
2466
- .load-2 .line:nth-last-child(1) {
2467
- animation: loadingB 1.5s 1s infinite;
2468
- margin: 5px 0
2469
- }
2470
-
2471
- .load-2 .line:nth-last-child(2) {
2472
- animation: loadingB 1.5s 0.5s infinite;
2473
- margin: 5px 0
2474
- }
2475
-
2476
- .load-2 .line:nth-last-child(3) {
2477
- animation: loadingB 1.5s 0s infinite;
2478
- margin: 5px 0
2479
- }
2480
-
2481
-
2482
- .load-1 .line:nth-last-child(1) {
2483
- animation: loadingA 1.5s 1.2s infinite;
2484
- margin: 5px 0
2485
- }
2486
-
2487
- .load-1 .line:nth-last-child(2) {
2488
- animation: loadingA 1.5s 0.8s infinite;
2489
- margin: 5px 0
2490
- }
2491
-
2492
- .load-1 .line:nth-last-child(3) {
2493
- animation: loadingA 1.5s 0.2s infinite;
2494
- margin: 5px 0
2495
- }
2496
-
2497
- @keyframes loadingB {
2498
- 0% {
2499
- width: 65px;
2500
- }
2501
-
2502
- 50% {
2503
- width: 235px;
2504
- }
2505
-
2506
- 100% {
2507
- width: 65px;
2508
- }
2509
- }
2510
-
2511
- @keyframes loadingA {
2512
- 0% {
2513
- width: 45px;
2514
- }
2515
-
2516
- 50% {
2517
- width: 205px;
2518
- }
2519
-
2520
- 100% {
2521
- width: 45px;
2522
- }
2523
- }
2524
-
2525
- /* old loader css */
2526
-
2527
-
2528
- /* New updated loader css */
2529
- .loaderbox {
2530
- position: relative;
2531
- margin: 10px 0;
2532
- height: 60px;
2533
- }
2534
-
2535
- .loader-pkg {
2536
- height: 20px;
2537
- width: 250px;
2538
- position: absolute;
2539
- top: 0;
2540
- bottom: 0;
2541
- left: 0;
2542
- margin: 0;
2543
- }
2544
-
2545
- .loader--dot {
2546
- animation-name: loader;
2547
- animation-timing-function: ease-in-out;
2548
- animation-duration: 3s;
2549
- animation-iteration-count: infinite;
2550
- height: 20px;
2551
- width: 20px;
2552
- border-radius: 100%;
2553
- background-color: #1a6774;
2554
- position: absolute;
2555
- //border: 2px solid white;
2556
- }
2557
-
2558
- .loader--dot:first-child {
2559
- background-color: #618e93;
2560
- animation-delay: 0.5s;
2561
- }
2562
-
2563
- .loader--dot:nth-child(5) {
2564
- background-color: #3fb0c3;
2565
- animation-delay: 0.4s;
2566
- }
2567
-
2568
- .loader--dot:nth-child(4) {
2569
- background-color: #40b8cd;
2570
- animation-delay: 0.3s;
2571
- }
2572
-
2573
- .loader--dot:nth-child(3) {
2574
- background-color: #ec8828;
2575
- animation-delay: 0.2s;
2576
- }
2577
-
2578
- .loader--dot:nth-child(2) {
2579
- background-color: #fdc25d;
2580
- animation-delay: 0.1s;
2581
- }
2582
-
2583
- .loader--dot:nth-child(1) {
2584
- background-color: #f4e3be;
2585
- animation-delay: 0s;
2586
- }
2587
-
2588
- .loader--text {
2589
- position: absolute;
2590
- top: 200%;
2591
- left: 0;
2592
- width: 4rem;
2593
- margin: 0;
2594
- }
2595
-
2596
- .loader--text:after {
2597
- content: "Loading";
2598
- font-weight: bold;
2599
- animation-name: loading-text;
2600
- animation-duration: 3s;
2601
- animation-iteration-count: infinite;
2602
- }
2603
-
2604
- @keyframes loader {
2605
- 15% {
2606
- transform: translateX(230px);
2607
- }
2608
-
2609
- 45% {
2610
- transform: translateX(0px);
2611
- }
2612
-
2613
- 65% {
2614
- transform: translateX(230px);
2615
- }
2616
-
2617
- 95% {
2618
- transform: translateX(0);
2619
- }
2620
- }
2621
-
2622
- @keyframes loading-text {
2623
- 0% {
2624
- content: "Loading";
2625
- }
2626
-
2627
- 25% {
2628
- content: "Loading.";
2629
- }
2630
-
2631
- 50% {
2632
- content: "Loading..";
2633
- }
2634
-
2635
- 75% {
2636
- content: "Loading...";
2637
- }
2638
- }
2639
-
2640
- /* New updated loader css */
2641
-
2642
-
2643
-
2644
- ::ng-deep {
2645
-
2646
- .h1,
2647
- h1 {
2648
- font-size: 1.165rem;
2649
- }
2650
-
2651
- .h2,
2652
- h2 {
2653
- font-size: 1.125rem;
2654
- }
2655
-
2656
- .h3,
2657
- h3 {
2658
- font-size: 1.125rem;
2659
- }
2660
-
2661
- b,
2662
- strong {
2663
- font-weight: 600;
2664
- }
2665
-
2666
- .loaderbox {
2667
- position: relative;
2668
- margin: 10px 0;
2669
- height: 60px;
2670
- }
2671
-
2672
- .loader-pkg {
2673
- height: 20px;
2674
- width: 250px;
2675
- position: absolute;
2676
- top: 0;
2677
- bottom: 0;
2678
- left: 0;
2679
- margin: 0;
2680
- }
2681
-
2682
- .loader--dot {
2683
- animation-name: loader;
2684
- animation-timing-function: ease-in-out;
2685
- animation-duration: 3s;
2686
- animation-iteration-count: infinite;
2687
- height: 20px;
2688
- width: 20px;
2689
- border-radius: 100%;
2690
- background-color: #1a6774;
2691
- position: absolute;
2692
- //border: 2px solid white;
2693
- }
2694
-
2695
- .loader--dot:first-child {
2696
- background-color: #618e93;
2697
- animation-delay: 0.5s;
2698
- }
2699
-
2700
- .loader--dot:nth-child(5) {
2701
- background-color: #3fb0c3;
2702
- animation-delay: 0.4s;
2703
- }
2704
-
2705
- .loader--dot:nth-child(4) {
2706
- background-color: #40b8cd;
2707
- animation-delay: 0.3s;
2708
- }
2709
-
2710
- .loader--dot:nth-child(3) {
2711
- background-color: #ec8828;
2712
- animation-delay: 0.2s;
2713
- }
2714
-
2715
- .loader--dot:nth-child(2) {
2716
- background-color: #fdc25d;
2717
- animation-delay: 0.1s;
2718
- }
2719
-
2720
- .loader--dot:nth-child(1) {
2721
- background-color: #f4e3be;
2722
- animation-delay: 0s;
2723
- }
2724
-
2725
- .loader--text {
2726
- position: absolute;
2727
- top: 200%;
2728
- left: 0;
2729
- width: 4rem;
2730
- margin: 0;
2731
- }
2732
-
2733
- .loader--text:after {
2734
- content: "Loading";
2735
- font-weight: bold;
2736
- animation-name: loading-text;
2737
- animation-duration: 3s;
2738
- animation-iteration-count: infinite;
2739
- }
2740
- }
2741
-
2742
- /* new UI for checkbox */
2743
- .agents-popwindowbox {
2744
- width: 100%;
2745
- padding: 10px;
2746
- background: #fff;
2747
-
2748
- h3 {
2749
- font-size: 15px;
2750
- color: #000;
2751
- }
2752
- }
2753
-
2754
- .dropdown-menu-agents {
2755
- background-color: #fff;
2756
- border: 1px solid #ededed;
2757
- border-radius: 5px;
2758
- bottom: 100% !important;
2759
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
2760
- display: block;
2761
- left: 0;
2762
- margin-bottom: 10px;
2763
- padding: 0;
2764
- position: absolute;
2765
- top: auto;
2766
- width: 270px;
2767
- z-index: 1000;
2768
-
2769
- .scrollerbox {
2770
- display: flex;
2771
- flex-direction: column;
2772
- flex: fit-content;
2773
- overflow-y: auto;
2774
- height: 215px;
2775
- }
2776
-
2777
- label {
2778
- cursor: pointer;
2779
- display: flex;
2780
- padding: 0;
2781
- font-size: 13px;
2782
- justify-content: start;
2783
- align-items: center;
2784
- line-height: 16px;
2785
- background: #f9f9f9;
2786
- padding: 7px 7px;
2787
- margin: 2px 0;
2788
- border-radius: 2px;
2789
-
2790
- &:hover {
2791
- background: #ebebeb;
2792
- }
2793
- }
2794
-
2795
- label input {
2796
- position: absolute;
2797
- opacity: 0;
2798
- }
2799
-
2800
- .input-check {
2801
- position: relative;
2802
- display: inline-block;
2803
- top: 0;
2804
- width: 25px;
2805
- height: 23px;
2806
- border: 2px solid #ccc;
2807
- border-radius: 4px;
2808
- margin-right: 5px;
2809
- transition: .5s;
2810
- }
2811
-
2812
- label input:checked~.input-check {
2813
- background: #06f;
2814
- border-color: #06f;
2815
- animation: animate .7s ease;
2816
- }
2817
-
2818
- @keyframes animate {
2819
- 0% {
2820
- transform: scale(1);
2821
- }
2822
-
2823
- 40% {
2824
- transform: scale(1.3, .7);
2825
- }
2826
-
2827
- 55% {
2828
- transform: scale(1);
2829
- }
2830
-
2831
- 70% {
2832
- transform: scale(1.2, .8);
2833
- }
2834
-
2835
- 80% {
2836
- transform: scale(1);
2837
- }
2838
-
2839
- 90% {
2840
- transform: scale(1.1, .9);
2841
- }
2842
-
2843
- 100% {
2844
- transform: scale(1);
2845
- }
2846
- }
2847
-
2848
- .input-check::before {
2849
- content: '';
2850
- position: absolute;
2851
- top: 6px;
2852
- left: 4px;
2853
- width: 15px;
2854
- height: 6px;
2855
- border-bottom: 3px solid #fff;
2856
- border-left: 3px solid #fff;
2857
- transform: scale(0) rotate(-45deg);
2858
- transition: .5s;
2859
- }
2860
-
2861
- label input:checked~.input-check::before {
2862
- transform: scale(1) rotate(-45deg);
2863
- }
2864
- }
2865
-
2866
- /* new UI for checkbox */
2867
-
2868
- ::ng-deep {
2869
-
2870
- .h1,
2871
- h1 {
2872
- font-size: 1.165rem;
2873
- }
2874
-
2875
- .h2,
2876
- h2 {
2877
- font-size: 1.125rem;
2878
- }
2879
-
2880
- .h3,
2881
- h3 {
2882
- font-size: 1.125rem;
2883
- }
2884
-
2885
- b,
2886
- strong {
2887
- font-weight: 600;
2888
- }
2889
- }
2890
-
2891
-
2892
- @media (max-width: 768px) {
2893
- .note {
2894
- width: 90%;
2895
- margin: 0 auto;
2896
- line-height: 15px;
2897
- padding: 3px 0 10px;
2898
- }
2899
- }
2900
-
2901
- .show-hover {
2902
- display: none;
2903
- }
2904
-
2905
- .chat.bot:hover .show-hover {
2906
- display: flex !important;
2907
- }