PluginProbe
MxChat – AI Chatbot & Content Generation for WordPress / 1.4
MxChat – AI Chatbot & Content Generation for WordPress v1.4
3.2.21 3.2.20 3.2.19 3.2.18 3.2.17 3.2.16 3.2.15 3.2.14 3.2.12 3.2.13 3.2.11 3.2.10 3.2.9 3.2.8 3.2.7 3.2.6 3.2.5 3.2.4 3.2.3 3.2.2 3.2.1 2.0.3 2.0.4 2.0.5 2.0.6 All 152 releases
← All changes | css/chat-style.css +624 -1170 2.0.61.4 View file →
@@ -1,1170 +1,624 @@
1 -.chat-notification-badge {
2 - animation: notification-pulse 2s infinite;
3 - box-shadow: 0 0 0 rgba(255, 68, 68, 0.4);
4 - transition: all 0.3s ease;
5 -}
6 -
7 -@keyframes notification-pulse {
8 - 0% {
9 - transform: scale(1);
10 - box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4);
11 - }
12 - 70% {
13 - transform: scale(1.1);
14 - box-shadow: 0 0 0 10px rgba(255, 68, 68, 0);
15 - }
16 - 100% {
17 - transform: scale(1);
18 - box-shadow: 0 0 0 0 rgba(255, 68, 68, 0);
19 - }
20 -}
21 -
22 -
23 -
24 -
25 -/* Email Blocker Styles */
26 -.email-blocker {
27 - display: flex;
28 - flex-direction: column;
29 - align-items: center;
30 - justify-content: center;
31 - border-radius: 12px;
32 - padding: 30px 20px;
33 - max-width: 100%;
34 - margin: auto;
35 - text-align: center;
36 - animation: fadeIn 0.5s ease-in-out;
37 -}
38 -
39 -.email-blocker-header {
40 - margin-bottom: 20px;
41 -}
42 -
43 -.email-blocker-logo {
44 - max-width: 80px;
45 - margin-bottom: 10px;
46 -}
47 -
48 -.email-blocker h2 {
49 - font-size: 24px;
50 - font-weight: bold;
51 - color: #333333;
52 - margin-bottom: 10px;
53 -}
54 -
55 -.email-blocker p {
56 - font-size: 16px;
57 - color: #555555;
58 - margin-bottom: 20px;
59 -}
60 -
61 -.email-blocker input[type="email"] {
62 - width: 100%;
63 - padding: 12px;
64 - margin-bottom: 15px;
65 - border: 1px solid #ddd;
66 - border-radius: 8px;
67 - font-size: 16px;
68 - color: #333333;
69 - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
70 - transition: border-color 0.3s, box-shadow 0.3s;
71 -}
72 -
73 -.email-blocker input[type="email"]:focus {
74 - border-color: #0073aa;
75 - box-shadow: 0 0 8px rgba(0, 115, 170, 0.3);
76 - outline: none;
77 -}
78 -
79 -.email-blocker button {
80 - background-color: #0073aa;
81 - color: #ffffff;
82 - padding: 12px 20px;
83 - border: none;
84 - border-radius: 8px;
85 - font-size: 16px;
86 - font-weight: bold;
87 - cursor: pointer;
88 - width: 100%;
89 - transition: background-color 0.3s, transform 0.2s;
90 -}
91 -
92 -.email-blocker button:hover {
93 - background-color: #005177;
94 - transform: translateY(-2px);
95 -}
96 -
97 -.email-blocker-footer {
98 - margin-top: 20px;
99 - font-size: 12px;
100 - color: #888888;
101 -}
102 -
103 -/* Accessibility: Hidden screen-reader label */
104 -.sr-only {
105 - position: absolute;
106 - width: 1px;
107 - height: 1px;
108 - padding: 0;
109 - margin: -1px;
110 - overflow: hidden;
111 - clip: rect(0, 0, 0, 0);
112 - white-space: nowrap;
113 - border: 0;
114 -}
115 -
116 -/* Animation */
117 -@keyframes fadeIn {
118 - from {
119 - opacity: 0;
120 - transform: translateY(-10px);
121 - }
122 - to {
123 - opacity: 1;
124 - transform: translateY(0);
125 - }
126 -}
127 -
128 -/* Hide chatbot until email is provided */
129 -#mxchat-chatbot-wrapper {
130 - display: none;
131 -}
132 -
133 -
134 -
135 -
136 -.chatbot-title-icon {
137 - width: 24px;
138 - height: 24px;
139 - object-fit: contain;
140 -}
141 -
142 -.wp-admin .mxchat-search-results,
143 -.wp-content .mxchat-search-results,
144 -.site-content .mxchat-search-results,
145 -.mxchat-search-results {
146 - display: flex;
147 - flex-direction: column;
148 - gap: 20px;
149 - margin: 15px 0;
150 - font-size: 14px !important;
151 -}
152 -
153 -.mxchat-search-intro {
154 - font-size: 16px !important;
155 - margin: 0 0 15px 0 !important;
156 - line-height: 1.4 !important;
157 - font-weight: normal !important;
158 -}
159 -
160 -.mxchat-search-item {
161 - padding: 15px !important;
162 - border-radius: 8px !important;
163 - background: #ffffff !important;
164 - border: 1px solid rgba(0, 0, 0, 0.1) !important;
165 -}
166 -
167 -.mxchat-search-header {
168 - display: flex !important;
169 - align-items: center !important;
170 - gap: 8px !important;
171 - margin-bottom: 8px !important;
172 -}
173 -
174 -.mxchat-site-icon {
175 - width: 16px !important;
176 - height: 16px !important;
177 - flex-shrink: 0 !important;
178 -}
179 -
180 -.mxchat-site-url {
181 - font-size: 13px !important;
182 - color: #555 !important;
183 - line-height: 1 !important;
184 -}
185 -
186 -.mxchat-search-content {
187 - display: flex !important;
188 - flex-direction: column !important;
189 - gap: 10px !important;
190 -}
191 -
192 -.mxchat-search-title {
193 - font-size: 16px !important;
194 - line-height: 1.4 !important;
195 - margin: 0 !important;
196 - padding: 0 !important;
197 - font-weight: 600 !important;
198 -}
199 -
200 -.mxchat-search-title a {
201 - text-decoration: none !important;
202 - color: #000 !important;
203 -}
204 -
205 -.mxchat-search-title a:hover {
206 - text-decoration: underline !important;
207 -}
208 -
209 -.mxchat-search-thumbnail {
210 - max-width: 200px !important;
211 - margin: 10px 0 !important;
212 -}
213 -
214 -.mxchat-search-thumbnail img {
215 - max-width: 100% !important;
216 - height: auto !important;
217 - border-radius: 4px !important;
218 -}
219 -
220 -.mxchat-search-description {
221 - font-size: 14px !important;
222 - line-height: 1.6 !important;
223 - color: #333 !important;
224 - margin: 0 !important;
225 - padding: 0 !important;
226 -}
227 -
228 -@media screen and (max-width: 782px) {
229 - .mxchat-search-results {
230 - gap: 15px !important;
231 - }
232 -
233 - .mxchat-search-intro {
234 - font-size: 15px !important;
235 - }
236 -
237 - .mxchat-search-title {
238 - font-size: 15px !important;
239 - }
240 -
241 - .mxchat-search-description {
242 - font-size: 13px !important;
243 - }
244 -}
245 -
246 -
247 -
248 -
249 -
250 -
251 -
252 -
253 -
254 -
255 -
256 -.active-pdf-container {
257 - display: inline-flex;
258 - align-items: center;
259 - max-width: 200px;
260 - margin: 0px;
261 - padding: 0px;
262 - line-height: 13px;
263 -}
264 -
265 -.active-pdf-name {
266 - font-size: 11px;
267 - color: #666;
268 - white-space: nowrap;
269 - overflow: hidden;
270 - text-overflow: ellipsis;
271 -}
272 -
273 -.remove-pdf-btn {
274 - background: 0 0;
275 - border: none;
276 - padding: 2px;
277 - margin-left: 4px;
278 - cursor: pointer;
279 - transition: opacity .2s;
280 - line-height: 13px;
281 -}
282 -
283 -.remove-pdf-btn:hover {
284 - opacity: 1;
285 - background: none;
286 -}
287 -
288 -
289 -
290 -
291 -#mxchat-chatbot .chat-toolbar {
292 - display: flex;
293 - gap: 10px;
294 - padding: 8px;
295 - border-top: 1px solid #e5e5e5;
296 - background: none;
297 -}
298 -
299 -#mxchat-chatbot .toolbar-btn {
300 - background: none;
301 - border: none;
302 - padding: 0px;
303 - cursor: pointer;
304 - width: 16px;
305 - height: 16px;
306 - display: flex;
307 - align-items: center;
308 - justify-content: center;
309 - opacity: 0.6;
310 - transition: opacity 0.2s;
311 - margin: 0;
312 - min-width: 0;
313 - box-shadow: none;
314 -}
315 -
316 -#mxchat-chatbot .toolbar-btn svg {
317 - width: 100%;
318 - height: 100%;
319 -}
320 -
321 -#mxchat-chatbot .toolbar-btn:hover {
322 - opacity: 1;
323 - background: none;
324 - border: none;
325 - box-shadow: none;
326 -}
327 -
328 -#mxchat-chatbot .toolbar-btn:disabled {
329 - opacity: 0.3;
330 - cursor: not-allowed;
331 - background: none;
332 - border: none;
333 -}
334 -
335 -#mxchat-chatbot .spinner {
336 - animation: rotate 2s linear infinite;
337 - width: 20px;
338 - height: 20px;
339 -}
340 -
341 -#mxchat-chatbot .spinner circle {
342 - stroke: #212121;
343 - stroke-linecap: round;
344 - animation: dash 1.5s ease-in-out infinite;
345 -}
346 -
347 -@keyframes rotate {
348 - 100% {
349 - transform: rotate(360deg);
350 - }
351 -}
352 -
353 -@keyframes dash {
354 - 0% {
355 - stroke-dasharray: 1, 150;
356 - stroke-dashoffset: 0;
357 - }
358 - 50% {
359 - stroke-dasharray: 90, 150;
360 - stroke-dashoffset: -35;
361 - }
362 - 100% {
363 - stroke-dasharray: 90, 150;
364 - stroke-dashoffset: -124;
365 - }
366 -}
367 -
368 -
369 -
370 -
371 -.mxchat-code-block-container {
372 - position: relative;
373 - margin: 20px 0;
374 - font-family: monospace;
375 -}
376 -
377 -.chatbot-title-container {
378 - display: flex;
379 - align-items: center;
380 - justify-content: space-between;
381 - width: 100%;
382 -}
383 -
384 -.chatbot-title-group {
385 - display: flex;
386 - align-items: center;
387 - gap: 8px;
388 -}
389 -
390 -
391 -.chat-mode-indicator {
392 - font-size: 12px;
393 - margin-right: 8px;
394 - padding: 4px 8px;
395 - border-radius: 12px;
396 - background: rgba(255, 255, 255, 0.2);
397 - color: #ffffff;
398 -}
399 -
400 -#mxchat-chatbot #chat-container #chat-box .agent-message {
401 - text-align: left;
402 - float: left;
403 - clear: both;
404 - border: 1px solid rgba(226, 232, 255, .2);
405 - border-radius: 0 18px 18px;
406 - background: #212121;
407 - color: #fff;
408 - overflow-x: hidden;
409 - margin-bottom: 15px;
410 - padding: 10px;
411 - display: inline-block;
412 - max-width: 85%;
413 - font-size: 14px;
414 - line-height: 24px;
415 - box-shadow: -2px 2px rgba(250, 115, 230, 0.6), -4px 4px rgba(120, 115, 245, 0.6);
416 -}
417 -
418 -.mxchat-code-block {
419 - background-color: #212121;
420 - color: #fff;
421 - padding: 15px;
422 - border-radius: 5px;
423 - white-space: pre-wrap; /* Maintain formatting */
424 - overflow: auto; /* Enable scrolling for long content */
425 - font-family: monospace;
426 -}
427 -
428 -.mxchat-code-block code {
429 - display: block;
430 - white-space: pre-wrap;
431 -}
432 -
433 -/* Copy button styling */
434 -.mxchat-copy-button {
435 - position: absolute;
436 - top: 10px;
437 - right: 10px;
438 - background-color: #0073aa;
439 - color: #ffffff;
440 - border: none;
441 - border-radius: 5px;
442 - padding: 5px 15px;
443 - font-size: 12px;
444 - font-weight: bold;
445 - cursor: pointer;
446 - transition: background-color 0.3s ease, transform 0.2s ease;
447 - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
448 - z-index: 10; /* Ensure the button is on top */
449 -}
450 -
451 -.mxchat-copy-button:hover {
452 - background-color: #005177;
453 - transform: translateY(-1px);
454 -}
455 -
456 -.mxchat-copy-button:active {
457 - transform: translateY(1px);
458 -}
459 -
460 -.mxchat-image-gallery {
461 - display: flex;
462 - flex-wrap: wrap;
463 - gap: 10px;
464 - justify-content: center;
465 -}
466 -
467 -.mxchat-image-item {
468 - text-align: center;
469 - overflow: hidden;
470 - word-wrap: break-word;
471 -}
472 -
473 -.mxchat-image-title {
474 - display: block;
475 - font-size: 14px;
476 - color: inherit;
477 - white-space: nowrap;
478 - overflow: hidden;
479 - text-overflow: ellipsis;
480 - max-width: 100%;
481 -}
482 -
483 -.mxchat-image-link {
484 - text-decoration: none;
485 -}
486 -
487 -.mxchat-image-thumbnail {
488 - max-width: 100%;
489 - height: auto;
490 - border-radius: 5px;
491 - transition: transform 0.3s;
492 -}
493 -
494 -.mxchat-image-thumbnail:hover {
495 - transform: scale(1.05);
496 -}
497 -.mxchat-generated-image {
498 - max-width: 100%;
499 - height: auto;
500 - border-radius: 0 0 8px 8px;
501 -}
502 -
503 -
504 -/* MxChat Product Card Styling */
505 -.mxchat-product-card {
506 - display: flex;
507 - flex-direction: column;
508 - align-items: center;
509 - margin: 10px 0;
510 - padding: 10px;
511 - border-radius: 5px;
512 - background-color: inherit;
513 -}
514 -
515 -.mxchat-product-card img.mxchat-product-image {
516 - max-width: 100%;
517 - height: auto;
518 - margin-bottom: 5px;
519 - border-radius: 4px;
520 -}
521 -
522 -.mxchat-product-card h3.mxchat-product-name {
523 - font-size: 16px;
524 - font-weight: bold;
525 - margin: 5px 0;
526 - text-align: center;
527 - color: inherit;
528 -}
529 -
530 -.mxchat-product-card .mxchat-product-price {
531 - color: inherit;
532 - font-weight: bold;
533 - margin-bottom: 5px;
534 -}
535 -
536 -.mxchat-product-card .mxchat-product-description {
537 - font-size: 14px;
538 - text-align: center;
539 - margin-bottom: 10px;
540 - color: inherit;
541 -}
542 -
543 -.mxchat-product-card .mxchat-add-to-cart-button {
544 - background-color: #212121;
545 - color: #fff;
546 - padding: 8px 12px;
547 - border: none;
548 - cursor: pointer;
549 - border-radius: 12px;
550 - transition: background-color 0.3s ease;
551 -}
552 -
553 -.mxchat-product-card .mxchat-add-to-cart-button:hover {
554 - background-color: #212121;
555 -}
556 -
557 -
558 -
559 -
560 -
561 -#mxchat-popular-questions {
562 - padding: 10px;
563 -}
564 -
565 -.mxchat-popular-questions-title {
566 - font-size: 14px;
567 - line-height: 24px;
568 - font-weight: bold;
569 - color: #212121;
570 - margin-bottom: 10px;
571 -}
572 -
573 -.mxchat-popular-questions-container {
574 - position: relative; /* Make it the parent for positioning */
575 - display: flex;
576 - flex-direction: column;
577 - max-height: 200px;
578 - overflow-y: auto;
579 - padding-right: 10px;
580 - padding-bottom: 10px;
581 - scrollbar-width: thin; /* For Firefox */
582 - scrollbar-color: #212121 #f1f1f1; /* Thumb and track colors */
583 -}
584 -
585 -
586 -/* Styling the scrollbar for WebKit browsers (Chrome, Safari, etc.) */
587 -.mxchat-popular-questions-container::-webkit-scrollbar {
588 - width: 8px;
589 -}
590 -
591 -.mxchat-popular-questions-container::-webkit-scrollbar-track {
592 - background: #f1f1f1;
593 - border-radius: 4px;
594 -}
595 -
596 -.mxchat-popular-questions-container::-webkit-scrollbar-thumb {
597 - background: linear-gradient(135deg, #fa73e6, #7873f5, #3ac9d1);
598 - border-radius: 4px;
599 -}
600 -
601 -.mxchat-popular-questions-container::-webkit-scrollbar-thumb:hover {
602 - background: linear-gradient(135deg, #d164ce, #6568d8, #2daeb8);
603 -}
604 -
605 -/* For Firefox */
606 -.mxchat-popular-questions-container {
607 - scrollbar-width: thin; /* Makes the scrollbar thinner */
608 - scrollbar-color: #212121 #f1f1f1; /* Thumb color and track color */
609 -}
610 -
611 -/* For Edge and other modern browsers */
612 -.mxchat-popular-questions-container {
613 - -ms-overflow-style: none; /* Removes the default scrollbars for Edge */
614 - scrollbar-gutter: stable; /* Prevent layout shifting */
615 -}
616 -
617 -/* For a more uniform cross-browser look */
618 -.mxchat-popular-questions-container {
619 - overflow: auto;
620 - overscroll-behavior: contain;
621 -}
622 -
623 -.mxchat-popular-question {
624 - padding: 12px 20px;
625 - background-color: #f5f5f5; /* Darker background for better contrast */
626 - border: 1px solid #bbb; /* Darker border for better visibility */
627 - border-radius: 8px;
628 - color: #212121;
629 - font-size: 14px;
630 - line-height: 24px;
631 - cursor: pointer;
632 - text-align: left;
633 - transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
634 - margin-bottom: 10px;
635 -}
636 -
637 -.mxchat-popular-question:hover {
638 - background-color: #eaeaea; /* Slightly darker on hover */
639 - border-color: #999; /* Darker border on hover */
640 - box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* Slightly darker shadow on hover */
641 - color: #212121;
642 -}
643 -
644 -.mxchat-popular-question:focus {
645 - outline: none;
646 - background-color: #e0e0e0; /* Darker background on focus */
647 - border-color: #777; /* More prominent focus border */
648 - box-shadow: 0 0 0 3px rgba(100, 149, 237, 0.5); /* Subtle focus ring */
649 - color: #212121;
650 -}
651 -
652 -.mxchat-popular-question:active {
653 - background-color: #d8d8d8; /* Darker pressed background */
654 - border-color: #666; /* Darker border when pressed */
655 - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15); /* Slightly darker pressed effect */
656 - color: #212121;
657 -}
658 -
659 -
660 -#widget_icon, #widget_icon_2, #widget_icon_3, #widget_icon_5, #widget_icon_4, #widget_icon_6, #widget_icon_7 {
661 - padding: 10px;
662 -}
663 -
664 -#widget_icon_10 {
665 - fill: #fff;
666 -}
667 -
668 -.invisible {
669 - display: none;
670 - opacity: 0;
671 - pointer-events: none;
672 -}
673 -
674 -#mxchat-chatbot {
675 - background: #fff;
676 -}
677 -
678 -#mxchat-chatbot-wrapper .chatbot-footer .privacy-notice {
679 - font-size: 12px;
680 - margin: 0;
681 - color: #71717a;
682 -}
683 -
684 -#mxchat-chatbot-wrapper .chatbot-footer .privacy-notice a {
685 - color: #0073aa; /* You can specify the color for the link */
686 - text-decoration: underline;
687 - font-size: 12px;
688 -}
689 -
690 -#mxchat-chatbot #chat-container #input-container #send-button, .copy-btn {
691 - transition: background-color .3s;
692 - color: #fff;
693 - font-size: 1rem;
694 - cursor: pointer;
695 - font-weight: 700;
696 - margin-bottom: 10px;
697 -}
698 -
699 -#mxchat-chatbot {
700 - max-width: 800px;
701 - overflow: hidden;
702 - position: relative;
703 - display: flex;
704 - flex-direction: column;
705 - height: 500px;
706 - box-sizing: border-box;
707 - flex-grow: 1;
708 -}
709 -
710 -#chat-container {
711 - display: flex;
712 - flex-direction: column;
713 - height: 100%;
714 -}
715 -
716 -#chat-box {
717 - flex-grow: 1;
718 - overflow-y: auto;
719 - padding: 10px;
720 - margin-bottom: 0;
721 - font-size: 1rem;
722 -}
723 -
724 -#chat-box::-webkit-scrollbar {
725 - width: 5px;
726 -}
727 -
728 -#chat-box::-webkit-scrollbar-thumb {
729 - background-color: #212121;
730 - border-radius: 20px;
731 -}
732 -
733 -.bot-message, .user-message {
734 - margin-bottom: 15px;
735 - padding: 10px;
736 - display: inline-block;
737 - max-width: 85%;
738 - box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
739 - font-size: 14px;
740 - line-height: 24px;
741 -}
742 -
743 -.user-message {
744 - background: #fff;
745 - color: #212121;
746 - text-align: left;
747 - float: right;
748 - clear: both;
749 - border-radius: 18px 0 18px 18px;
750 - border: solid 1px #212121;
751 - word-wrap: break-word;
752 -}
753 -
754 -#mxchat-chatbot #chat-container #chat-box .bot-message {
755 - text-align: left;
756 - float: left;
757 - clear: both;
758 - border: 1px solid rgba(226, 232, 255, .2);
759 - border-radius: 0 18px 18px;
760 - background: #212121;
761 - color: #fff;
762 - overflow-x: hidden;
763 -}
764 -
765 -#mxchat-chatbot-wrapper {
766 - box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
767 - border-radius: 10px;
768 - display: flex;
769 - flex-direction: column;
770 - height: 100%;
771 - width: 100%;
772 -}
773 -
774 -#mxchat-chatbot #chat-container #input-container {
775 - position: relative;
776 - display: flex;
777 - align-items: center;
778 - padding-right: 40px;
779 - border: 1px solid #ccc;
780 - border-radius: 10px;
781 - margin: 10px;
782 -}
783 -
784 -#mxchat-chatbot #chat-container #input-container #chat-input {
785 - flex-grow: 1;
786 - color: #212121;
787 - line-height: 24px;
788 - background: 0 0;
789 - margin-bottom: 0px;
790 - width: 100%;
791 - min-height: 20px;
792 - max-height: 65px;
793 - resize: none;
794 - overflow-y: auto;
795 - font-size: 16px;
796 - border: none;
797 - border-radius: 5px;
798 - box-sizing: border-box;
799 - padding: 0.4em 0.5em;
800 - outline: none;
801 -}
802 -
803 -/* Styling the scrollbar for WebKit browsers (Chrome, Safari, etc.) */
804 -#chat-input::-webkit-scrollbar {
805 - width: 8px; /* Set the scrollbar width */
806 -}
807 -
808 -#chat-input::-webkit-scrollbar-track {
809 - background: #f1f1f1; /* Scrollbar track background */
810 - border-radius: 4px; /* Round the corners */
811 -}
812 -
813 -#chat-input::-webkit-scrollbar-thumb {
814 - background: linear-gradient(135deg, #fa73e6, #7873f5, #3ac9d1); /* Gradient scrollbar thumb */
815 - border-radius: 4px; /* Round the corners */
816 -}
817 -
818 -#chat-input::-webkit-scrollbar-thumb:hover {
819 - background: linear-gradient(135deg, #d164ce, #6568d8, #2daeb8); /* Hover effect */
820 -}
821 -
822 -/* Optional: Ensure consistent styling for other modern browsers using scrollbars */
823 -#chat-input {
824 - scrollbar-width: thin; /* For Firefox: sets scrollbar width to thin */
825 - scrollbar-color: linear-gradient(135deg, #fa73e6, #7873f5, #3ac9d1) #f1f1f1; /* For Firefox: color for thumb and track */
826 -}
827 -
828 -
829 -#mxchat-chatbot #chat-container #input-container #send-button {
830 - position:absolute;
831 - right: 10px;
832 - top: 50%;
833 - transform: translateY(-50%);
834 - border: none;
835 - border-radius: 50%;
836 - width: 30px;
837 - height: 30px;
838 - display: flex;
839 - align-items: center;
840 - justify-content: center;
841 - background: 0 0!important;
842 - padding: 5px;
843 - margin: 0px 0px 0px 0px;
844 -}
845 -
846 -#mxchat-chatbot #chat-container #input-container #send-button .fa-paper-plane {
847 - font-size: 1.3rem;
848 -}
849 -
850 -#mxchat-chatbot #chat-container #input-container #send-button svg {
851 - width: 25px;
852 - height: 25px;
853 - pointer-events: none; /* Add this to prevent touch event issues */
854 -}
855 -
856 -#send-button:hover, .copy-btn:hover {
857 - opacity: .8;
858 -}
859 -
860 -#mxchat-chatbot:after {
861 - content: "";
862 - display: table;
863 - clear: both;
864 -}
865 -
866 -pre {
867 - background-color: #000;
868 - border: 1px solid #ddd;
869 - border-radius: 20px;
870 - border-left: 3px solid #9e7aff;
871 - color: #fff;
872 - page-break-inside: avoid;
873 - font-family: monospace;
874 - font-size: 15px;
875 - line-height: 1.6;
876 - margin-bottom: 1.6em;
877 - max-width: 100%;
878 - overflow: auto;
879 - padding: 1em 1.5em;
880 - display: block;
881 - word-wrap: break-word;
882 -}
883 -
884 -.copy-btn {
885 - padding: 10px 20px;
886 - border: none;
887 - border-radius: 4px;
888 - background-color: #9e7aff;
889 -}
890 -
891 -#floating-chatbot {
892 - position: fixed;
893 - bottom: 25px;
894 - right: 25px;
895 - width: 375px;
896 - height: 625px;
897 - box-shadow: 0 0 10px rgba(0, 0, 0, .25);
898 - border-radius: 20px;
899 - overflow: hidden;
900 - display: flex;
901 - z-index: 100000;
902 - transition: transform .3s ease-in-out, opacity .3s ease-in-out;
903 - transform: translateY(20%);
904 - opacity: 0;
905 - pointer-events: none;
906 -}
907 -
908 -#floating-chatbot.visible {
909 - transform: translateY(0);
910 - opacity: 1;
911 - pointer-events: auto;
912 -}
913 -
914 -#floating-chatbot-button.hidden, .exit-chat span {
915 - display: none!important;
916 -}
917 -
918 -.visible {
919 - display: flex;
920 -}
921 -
922 -#floating-chatbot-button {
923 - transition: opacity 1s ease-in-out;
924 - font-size: 1.25rem;
925 - position: fixed;
926 - bottom: 30px;
927 - right: 25px;
928 - background-color: #212121;
929 - color: #fff;
930 - width: 60px;
931 - height: 60px;
932 - border-radius: 50%;
933 - box-shadow: 0 4px 8px rgba(0, 0, 0, .2)!important;
934 - justify-content: center;
935 - align-items: center;
936 - cursor: pointer;
937 - transition: .3s;
938 - z-index: 100000;
939 - display: flex;
940 -}
941 -
942 -#floating-chatbot-button img {
943 - max-width: 100%;
944 - max-height: 100%;
945 - width: auto;
946 - height: auto;
947 -}
948 -
949 -#mxchat-chatbot-wrapper.active+#floating-chatbot-button {
950 - bottom: 530px;
951 - width: 100%;
952 -}
953 -
954 -.chatbot-close-button {
955 - position: absolute;
956 - top: 5px;
957 - right: 5px;
958 - border: none;
959 - background: 0 0;
960 - cursor: pointer;
961 - font-size: 20px;
962 - color: #f0f0f1;
963 -}
964 -
965 -.chatbot-top-bar {
966 - background: #212121;
967 -}
968 -
969 -#mxchat-chatbot-wrapper .chatbot-top-bar {
970 - cursor: pointer;
971 - color: #fff;
972 - padding: 10px;
973 - border-top-left-radius: 10px;
974 - border-top-right-radius: 10px;
975 - display: flex;
976 - justify-content: space-between;
977 - align-items: start;
978 -}
979 -
980 -#mxchat-chatbot-wrapper .chatbot-top-bar .chatbot-title {
981 - font-size: 16px;
982 - line-height: 25px;
983 - padding: 10px;
984 - margin: 0;
985 - font-family: 'Plus Jakarta Sans', sans-serif;
986 - font-weight: bold;
987 -}
988 -
989 -#mxchat-chatbot-wrapper .chatbot-top-bar .chatbot-title span {
990 - font-weight: 700;
991 -}
992 -
993 -#mxchat-chatbot-wrapper .chatbot-top-bar button.exit-chat {
994 - background: 0 0;
995 - border: none;
996 - opacity: .8;
997 - padding: 0px;
998 -}
999 -
1000 -.exit-chat {
1001 - border: none;
1002 - background: 0 0;
1003 - cursor: pointer;
1004 - display: flex;
1005 - align-items: center;
1006 - justify-content: center;
1007 - padding: 5px;
1008 - margin-left: auto;
1009 -}
1010 -
1011 -.exit-chat svg {
1012 - fill: white;
1013 - width: 24px;
1014 - height: 24px;
1015 - transform: rotate(270deg);
1016 -}
1017 -
1018 -#mxchat-chatbot-wrapper .chatbot-footer {
1019 - text-align: center;
1020 - padding-bottom: 10px;
1021 - font-size: .85em;
1022 -}
1023 -
1024 -#mxchat-chatbot-wrapper .chatbot-footer .powered-by {
1025 - text-decoration: none;
1026 - color: inherit;
1027 - font-weight: 700;
1028 -}
1029 -
1030 -#mxchat-chatbot-wrapper .chatbot-footer .powered-by span {
1031 - text-decoration: underline;
1032 -}
1033 -
1034 -.thinking-dots-container {
1035 - display: flex;
1036 - justify-content: center;
1037 - align-items: center;
1038 - overflow: hidden;
1039 - height: 20px; /* Adjust as needed */
1040 -}
1041 -
1042 -.thinking-dots {
1043 - display: flex;
1044 - justify-content: center;
1045 - align-items: center;
1046 - height: 90%;
1047 -}
1048 -
1049 -.dot {
1050 - height: 8px;
1051 - width: 8px;
1052 - margin: 0 3px;
1053 - background-color: #fff;
1054 - border-radius: 50%;
1055 - display: inline-block;
1056 - animation: bounce 1.4s ease-in-out infinite both;
1057 -}
1058 -
1059 -.dot:first-child {
1060 - animation-delay: -.32s;
1061 -}
1062 -
1063 -.dot:nth-child(2) {
1064 - animation-delay: -.16s;
1065 -}
1066 -
1067 -@keyframes bounce {
1068 - 0%, 100%, 80% {
1069 - transform: scale(1);
1070 - }
1071 - 40% {
1072 - transform: scale(1.5);
1073 - }
1074 -}
1075 -
1076 -
1077 -
1078 -#pre-chat-message {
1079 - position: fixed;
1080 - bottom: 85px;
1081 - right: 30px;
1082 - background-color: #fff;
1083 - color: #212121;
1084 - padding: 10px;
1085 - box-shadow: 0px 0px 10px rgba(150, 150, 150, 0.3);
1086 - border-radius: 5px;
1087 - z-index: 1000;
1088 - cursor: pointer;
1089 - max-width: 325px;
1090 - font-size: 14px;
1091 - display: none;
1092 - background: #fff;
1093 - margin-bottom: 10px;
1094 -}
1095 -
1096 -#pre-chat-message .close-pre-chat-message {
1097 - position: absolute;
1098 - top: -6px;
1099 - right: -6px;
1100 - background-color: #ccc;
1101 - border: none;
1102 - color: #212121;
1103 - font-size: 14px;
1104 - cursor: pointer;
1105 - border-radius: 50%;
1106 - width: 20px;
1107 - height: 20px;
1108 - display: flex;
1109 - align-items: center;
1110 - justify-content: center;
1111 - padding: 0;
1112 - line-height: 1;
1113 - display: flex; /* Show the close button on hover */
1114 -}
1115 -
1116 -
1117 -
1118 -@media (max-width: 550px) {
1119 -
1120 - #pre-chat-message {
1121 - bottom: 70px; /* Adjust this value as needed */
1122 - right: 15px; /* Adjust this value as needed */
1123 - }
1124 -
1125 - #chat-input {
1126 - width: calc(100% - 70px);
1127 - }
1128 - .bot-message, .user-message {
1129 - padding: 10px;
1130 - max-width: 95%;
1131 - }
1132 - #floating-chatbot-button {
1133 - bottom: 15px;
1134 - right: 10px;
1135 - }
1136 - #floating-chatbot {
1137 - width: 100vw;
1138 - height: calc(var(--vh, 1vh) * 100);
1139 - margin: 0;
1140 - padding: 0;
1141 - position: fixed;
1142 - bottom: 0;
1143 - top: 0;
1144 - left: 0;
1145 - right: 0;
1146 - border-radius: 0;
1147 - }
1148 - #mxchat-chatbot-wrapper .chatbot-top-bar {
1149 - border-top-left-radius: 0;
1150 - border-top-right-radius: 0;
1151 - }
1152 -}
1153 -
1154 -
1155 -.bot-message p {
1156 - margin: 0 0 1em 0;
1157 -}
1158 -
1159 -.bot-message p:last-child {
1160 - margin-bottom: 0;
1161 -}
1162 -
1163 -.bot-message {
1164 - white-space: pre-line;
1165 -}
1166 -
1167 -
1168 -
1169 -
1170 -
1 +.code-block-container {
2 + position: relative;
3 + margin: 15px 0;
4 +}
5 +
6 +.code-block {
7 + background-color: #212121;
8 + color: #fff;
9 + padding: 10px;
10 + border-radius: 5px;
11 + white-space: pre-wrap; /* Maintain formatting */
12 + overflow: auto; /* Enable scrolling for long content */
13 + font-family: monospace;
14 +}
15 +
16 +.code-block code {
17 + font-family: monospace;
18 + white-space: pre-wrap;
19 + display: block;
20 +}
21 +
22 +
23 +
24 +.mxchat-image-gallery {
25 + display: flex;
26 + flex-wrap: wrap;
27 + gap: 10px;
28 + justify-content: center;
29 +}
30 +
31 +.mxchat-image-item {
32 + text-align: center;
33 + overflow: hidden;
34 + word-wrap: break-word;
35 +}
36 +
37 +.mxchat-image-title {
38 + display: block;
39 + font-size: 14px;
40 + color: inherit;
41 + white-space: nowrap;
42 + overflow: hidden;
43 + text-overflow: ellipsis;
44 + max-width: 100%;
45 +}
46 +
47 +.mxchat-image-link {
48 + text-decoration: none;
49 +}
50 +
51 +.mxchat-image-thumbnail {
52 + max-width: 100%;
53 + height: auto;
54 + border-radius: 5px;
55 + transition: transform 0.3s;
56 +}
57 +
58 +.mxchat-image-thumbnail:hover {
59 + transform: scale(1.05);
60 +}
61 +.mxchat-generated-image {
62 + max-width: 100%;
63 + height: auto;
64 + border-radius: 0 0 8px 8px;
65 +}
66 +
67 +
68 +/* MxChat Product Card Styling */
69 +.mxchat-product-card {
70 + display: flex;
71 + flex-direction: column;
72 + align-items: center;
73 + margin: 10px 0;
74 + padding: 10px;
75 + border-radius: 5px;
76 + background-color: inherit;
77 + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
78 +}
79 +
80 +.mxchat-product-card img.mxchat-product-image {
81 + max-width: 100%;
82 + height: auto;
83 + margin-bottom: 5px;
84 + border-radius: 4px;
85 +}
86 +
87 +.mxchat-product-card h3.mxchat-product-name {
88 + font-size: 16px;
89 + font-weight: bold;
90 + margin: 5px 0;
91 + text-align: center;
92 + color: inherit;
93 +}
94 +
95 +.mxchat-product-card .mxchat-product-price {
96 + color: inherit;
97 + font-weight: bold;
98 + margin-bottom: 5px;
99 +}
100 +
101 +.mxchat-product-card .mxchat-product-description {
102 + font-size: 14px;
103 + text-align: center;
104 + margin-bottom: 10px;
105 + color: inherit;
106 +}
107 +
108 +.mxchat-product-card .mxchat-add-to-cart-button {
109 + background-color: #0071a1;
110 + color: #fff;
111 + padding: 8px 12px;
112 + border: none;
113 + cursor: pointer;
114 + border-radius: 3px;
115 + transition: background-color 0.3s ease;
116 +}
117 +
118 +.mxchat-product-card .mxchat-add-to-cart-button:hover {
119 + background-color: #005f87;
120 +}
121 +
122 +
123 +
124 +
125 +
126 +#mxchat-popular-questions {
127 + padding: 10px;
128 + margin-bottom: 15px;
129 +}
130 +
131 +.mxchat-popular-questions-title {
132 + font-size: 16px;
133 + font-weight: bold;
134 + color: #333;
135 + margin-bottom: 10px;
136 +}
137 +
138 +.mxchat-popular-questions-container {
139 + display: flex;
140 + flex-direction: column;
141 + gap: 10px;
142 +}
143 +
144 +.mxchat-popular-question {
145 + padding: 12px 20px;
146 + background-color: #f5f5f5; /* Darker background for better contrast */
147 + border: 1px solid #bbb; /* Darker border for better visibility */
148 + border-radius: 8px;
149 + color: #333;
150 + font-size: 16px;
151 + cursor: pointer;
152 + text-align: left;
153 + transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
154 +}
155 +
156 +.mxchat-popular-question:hover {
157 + background-color: #eaeaea; /* Slightly darker on hover */
158 + border-color: #999; /* Darker border on hover */
159 + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* Slightly darker shadow on hover */
160 + color: #212121;
161 +}
162 +
163 +.mxchat-popular-question:focus {
164 + outline: none;
165 + background-color: #e0e0e0; /* Darker background on focus */
166 + border-color: #777; /* More prominent focus border */
167 + box-shadow: 0 0 0 3px rgba(100, 149, 237, 0.5); /* Subtle focus ring */
168 + color: #212121;
169 +}
170 +
171 +.mxchat-popular-question:active {
172 + background-color: #d8d8d8; /* Darker pressed background */
173 + border-color: #666; /* Darker border when pressed */
174 + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15); /* Slightly darker pressed effect */
175 + color: #212121;
176 +}
177 +
178 +
179 +
180 +
181 +
182 +
183 +
184 +
185 +
186 +
187 +
188 +#widget_icon, #widget_icon_2, #widget_icon_3, #widget_icon_5, #widget_icon_4, #widget_icon_6, #widget_icon_7 {
189 + padding: 10px;
190 +}
191 +
192 +.invisible {
193 + display: none;
194 + opacity: 0;
195 + pointer-events: none;
196 +}
197 +
198 +#mxchat-chatbot-wrapper .chatbot-footer .privacy-notice {
199 + font-size: 0.75rem;
200 + margin: 0;
201 + color: #71717a;
202 +}
203 +
204 +#mxchat-chatbot-wrapper .chatbot-footer .privacy-notice a {
205 + color: #0073aa; /* You can specify the color for the link */
206 + text-decoration: underline;
207 + font-size: 0.75rem;
208 +
209 +}
210 +
211 +#mxchat-chatbot #chat-container #input-container #send-button, .copy-btn {
212 + transition: background-color .3s;
213 + color: #fff;
214 + font-size: 1rem;
215 + cursor: pointer;
216 + font-weight: 700;
217 +}
218 +
219 +#mxchat-chatbot {
220 + max-width: 800px;
221 + overflow: hidden;
222 + position: relative;
223 + display: flex;
224 + flex-direction: column;
225 + height: 500px;
226 + box-sizing: border-box;
227 + flex-grow: 1;
228 +}
229 +
230 +#chat-container {
231 + display: flex;
232 + flex-direction: column;
233 + height: 100%;
234 +}
235 +
236 +#chat-box {
237 + flex-grow: 1;
238 + overflow-y: auto;
239 + padding: 10px;
240 + margin-bottom: 0;
241 + font-size: 1rem;
242 +}
243 +
244 +#chat-box::-webkit-scrollbar {
245 + width: 5px;
246 +}
247 +
248 +#chat-box::-webkit-scrollbar-thumb {
249 + background-color: #333;
250 + border-radius: 20px;
251 +}
252 +
253 +.bot-message, .user-message {
254 + margin-bottom: 15px;
255 + padding: 10px;
256 + display: inline-block;
257 + max-width: 85%;
258 + box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
259 +}
260 +
261 +.user-message {
262 + background: #fff;
263 + color: #212121;
264 + text-align: left;
265 + float: right;
266 + clear: both;
267 + border-radius: 18px 0 18px 18px;
268 + border: solid 1px #212121;
269 +}
270 +
271 +#mxchat-chatbot #chat-container #chat-box .bot-message {
272 + text-align: left;
273 + float: left;
274 + clear: both;
275 + border: 1px solid rgba(226, 232, 255, .2);
276 + border-radius: 0 18px 18px;
277 + background: #212121;
278 + color: #fff;
279 + overflow-x: hidden;
280 +}
281 +
282 +#mxchat-chatbot-wrapper {
283 + box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
284 + border-radius: 10px;
285 + display: flex;
286 + flex-direction: column;
287 + height: 100%;
288 + width: 100%;
289 +}
290 +
291 +#mxchat-chatbot #chat-container #input-container {
292 + position: relative;
293 + display: flex;
294 + align-items: center;
295 + padding: 10px;
296 +}
297 +
298 +#mxchat-chatbot #chat-container #input-container #chat-input {
299 + flex-grow: 1;
300 + padding: .5rem 2.5rem .5rem .5rem;
301 + border-radius: 10px;
302 + border: 1px solid #bbb;
303 + color: #212121;
304 + font-size: 1rem;
305 + background: 0 0;
306 + width: calc(100% - 30px);
307 + margin-bottom: 0px;
308 + height: 100%;
309 +}
310 +
311 +#mxchat-chatbot #chat-container #input-container #send-button {
312 + position:absolute;
313 + right: 10px;
314 + top: 50%;
315 + transform: translateY(-50%);
316 + border: none;
317 + border-radius: 50%;
318 + width: 30px;
319 + height: 30px;
320 + display: flex;
321 + align-items: center;
322 + justify-content: center;
323 + background: 0 0!important;
324 + padding: 5px;
325 + margin: 0px 0px 0px 0px;
326 +}
327 +
328 +#mxchat-chatbot #chat-container #input-container #send-button .fa-paper-plane {
329 + font-size: 1.3rem;
330 +}
331 +
332 +#send-button:hover, .copy-btn:hover {
333 + opacity: .8;
334 +}
335 +
336 +#mxchat-chatbot:after {
337 + content: "";
338 + display: table;
339 + clear: both;
340 +}
341 +
342 +pre {
343 + background-color: #000;
344 + border: 1px solid #ddd;
345 + border-radius: 20px;
346 + border-left: 3px solid #9e7aff;
347 + color: #fff;
348 + page-break-inside: avoid;
349 + font-family: monospace;
350 + font-size: 15px;
351 + line-height: 1.6;
352 + margin-bottom: 1.6em;
353 + max-width: 100%;
354 + overflow: auto;
355 + padding: 1em 1.5em;
356 + display: block;
357 + word-wrap: break-word;
358 +}
359 +
360 +.copy-btn {
361 + padding: 10px 20px;
362 + border: none;
363 + border-radius: 4px;
364 + background-color: #9e7aff;
365 +}
366 +
367 +#floating-chatbot {
368 + position: fixed;
369 + bottom: 25px;
370 + right: 25px;
371 + width: 375px;
372 + height: 625px;
373 + box-shadow: 0 0 10px rgba(0, 0, 0, .25);
374 + border-radius: 20px;
375 + overflow: hidden;
376 + display: flex;
377 + z-index: 100000;
378 + transition: transform .3s ease-in-out, opacity .3s ease-in-out;
379 + transform: translateY(20%);
380 + opacity: 0;
381 + pointer-events: none;
382 +}
383 +
384 +#floating-chatbot.visible {
385 + transform: translateY(0);
386 + opacity: 1;
387 + pointer-events: auto;
388 +}
389 +
390 +#floating-chatbot-button.hidden, .exit-chat span {
391 + display: none!important;
392 +}
393 +
394 +.visible {
395 + display: flex;
396 +}
397 +
398 +#floating-chatbot-button {
399 + transition: opacity 1s ease-in-out;
400 + font-size: 1.25rem;
401 + position: fixed;
402 + bottom: 30px;
403 + right: 25px;
404 + background-color: #d63638;
405 + color: #fff;
406 + width: 60px;
407 + height: 60px;
408 + border-radius: 50%;
409 + box-shadow: 0 4px 8px rgba(0, 0, 0, .2)!important;
410 + justify-content: center;
411 + align-items: center;
412 + cursor: pointer;
413 + transition: .3s;
414 + z-index: 100000;
415 + display: flex;
416 +}
417 +
418 +#floating-chatbot-button img {
419 + max-width: 100%;
420 + max-height: 100%;
421 + padding: 10px;
422 + width: auto;
423 + height: auto;
424 +}
425 +
426 +#mxchat-chatbot-wrapper.active+#floating-chatbot-button {
427 + bottom: 530px;
428 + width: 100%;
429 +}
430 +
431 +.chatbot-close-button {
432 + position: absolute;
433 + top: 5px;
434 + right: 5px;
435 + border: none;
436 + background: 0 0;
437 + cursor: pointer;
438 + font-size: 20px;
439 + color: #f0f0f1;
440 +}
441 +
442 +#mxchat-chatbot-wrapper .chatbot-top-bar {
443 + cursor: pointer;
444 + color: #fff;
445 + padding: 10px;
446 + border-top-left-radius: 10px;
447 + border-top-right-radius: 10px;
448 + display: flex;
449 + justify-content: space-between;
450 + align-items: baseline;
451 +}
452 +
453 +#mxchat-chatbot-wrapper .chatbot-top-bar .chatbot-title {
454 + font-size: 1rem;
455 + line-height: 25px;
456 + padding: 10px;
457 + margin: 0;
458 + font-family: 'Plus Jakarta Sans', sans-serif;
459 + font-weight: bold;
460 +}
461 +
462 +#mxchat-chatbot-wrapper .chatbot-top-bar .chatbot-title span {
463 + font-weight: 700;
464 +}
465 +
466 +#mxchat-chatbot-wrapper .chatbot-top-bar button.exit-chat {
467 + background: 0 0;
468 + border: none;
469 + opacity: .8;
470 +}
471 +
472 +.exit-chat {
473 + border: none;
474 + background: 0 0;
475 + cursor: pointer;
476 + display: flex;
477 + align-items: center;
478 + justify-content: center;
479 + padding: 5px;
480 + margin-left: auto;
481 +}
482 +
483 +.exit-chat svg {
484 + fill: white;
485 + width: 24px;
486 + height: 24px;
487 + transform: rotate(270deg);
488 +}
489 +
490 +#mxchat-chatbot-wrapper .chatbot-footer {
491 + text-align: center;
492 + padding-bottom: 10px;
493 + font-size: .85em;
494 +}
495 +
496 +#mxchat-chatbot-wrapper .chatbot-footer .powered-by {
497 + text-decoration: none;
498 + color: inherit;
499 + font-weight: 700;
500 +}
501 +
502 +#mxchat-chatbot-wrapper .chatbot-footer .powered-by span {
503 + text-decoration: underline;
504 +}
505 +
506 +.thinking-dots-container {
507 + display: flex;
508 + justify-content: center;
509 + align-items: center;
510 + overflow: hidden;
511 + height: 20px; /* Adjust as needed */
512 +}
513 +
514 +.thinking-dots {
515 + display: flex;
516 + justify-content: center;
517 + align-items: center;
518 + height: 90%;
519 +}
520 +
521 +.dot {
522 + height: 8px;
523 + width: 8px;
524 + margin: 0 3px;
525 + background-color: #fff;
526 + border-radius: 50%;
527 + display: inline-block;
528 + animation: bounce 1.4s ease-in-out infinite both;
529 +}
530 +
531 +.dot:first-child {
532 + animation-delay: -.32s;
533 +}
534 +
535 +.dot:nth-child(2) {
536 + animation-delay: -.16s;
537 +}
538 +
539 +@keyframes bounce {
540 + 0%, 100%, 80% {
541 + transform: scale(1);
542 + }
543 + 40% {
544 + transform: scale(1.5);
545 + }
546 +}
547 +
548 +
549 +
550 +#pre-chat-message {
551 + position: fixed;
552 + bottom: 85px;
553 + right: 30px;
554 + background-color: #fff;
555 + color: #212121;
556 + padding: 10px;
557 + box-shadow: 0px 0px 10px rgba(150, 150, 150, 0.3);
558 + border-radius: 5px;
559 + z-index: 1000;
560 + cursor: pointer;
561 + max-width: 325px;
562 + font-size: 14px;
563 + display: none;
564 + background: #fff;
565 + margin-bottom: 10px;
566 +}
567 +
568 +#pre-chat-message .close-pre-chat-message {
569 + position: absolute;
570 + top: -6px;
571 + right: -6px;
572 + background-color: #ccc;
573 + border: none;
574 + color: #333;
575 + font-size: 14px;
576 + cursor: pointer;
577 + border-radius: 50%;
578 + width: 20px;
579 + height: 20px;
580 + display: flex;
581 + align-items: center;
582 + justify-content: center;
583 + padding: 0;
584 + line-height: 1;
585 + display: flex; /* Show the close button on hover */
586 +}
587 +
588 +
589 +
590 +@media (max-width: 550px) {
591 +
592 + #pre-chat-message {
593 + bottom: 70px; /* Adjust this value as needed */
594 + right: 15px; /* Adjust this value as needed */
595 + }
596 +
597 + #chat-input {
598 + width: calc(100% - 70px);
599 + }
600 + .bot-message, .user-message {
601 + padding: 10px;
602 + max-width: 95%;
603 + }
604 + #floating-chatbot-button {
605 + bottom: 15px;
606 + right: 10px;
607 + }
608 + #floating-chatbot {
609 + width: 100vw;
610 + height: calc(var(--vh, 1vh) * 100);
611 + margin: 0;
612 + padding: 0;
613 + position: fixed;
614 + bottom: 0;
615 + top: 0;
616 + left: 0;
617 + right: 0;
618 + border-radius: 0;
619 + }
620 + #mxchat-chatbot-wrapper .chatbot-top-bar {
621 + border-top-left-radius: 0;
622 + border-top-right-radius: 0;
623 + }
624 +}