| 1 |
/* |
| 2 |
|
| 3 |
01. Ball content |
| 4 |
|
| 5 |
02. wp Chat bot Message container |
| 6 |
|
| 7 |
-A Link Item |
| 8 |
|
| 9 |
-B Loading |
| 10 |
|
| 11 |
03. wp Chat bot Message Editor |
| 12 |
|
| 13 |
04. wp Chat bottom Tab Nav Editor |
| 14 |
05. Tab Feature Product |
| 15 |
|
| 16 |
06. Tab Cart |
| 17 |
|
| 18 |
07. Product Details |
| 19 |
|
| 20 |
*/ |
| 21 |
|
| 22 |
/********************* |
| 23 |
|
| 24 |
01. ball content wrapper |
| 25 |
|
| 26 |
**********************/ |
| 27 |
|
| 28 |
.wp-chatbot-board-container { |
| 29 |
border-radius: 5px; |
| 30 |
overflow: hidden; |
| 31 |
} |
| 32 |
|
| 33 |
.wp-chatbot-board-container:after { |
| 34 |
content: ""; |
| 35 |
position: absolute; |
| 36 |
right: 0; |
| 37 |
bottom: -26px; |
| 38 |
width: 0; |
| 39 |
height: 0; |
| 40 |
border-left: 30px solid transparent; |
| 41 |
border-right: 0 solid transparent; |
| 42 |
border-top: 30px solid #ffffff; |
| 43 |
|
| 44 |
} |
| 45 |
|
| 46 |
/****************************** |
| 47 |
|
| 48 |
02. wp Chat bot Message container |
| 49 |
|
| 50 |
*********************************/ |
| 51 |
|
| 52 |
|
| 53 |
.wp-chatbot-header h3 { |
| 54 |
|
| 55 |
color: #ffffff; |
| 56 |
|
| 57 |
font-size: 18px !important; |
| 58 |
|
| 59 |
letter-spacing: 1px; |
| 60 |
|
| 61 |
} |
| 62 |
|
| 63 |
|
| 64 |
ul.wp-chatbot-messages-container li { |
| 65 |
|
| 66 |
font-size: 14px; |
| 67 |
|
| 68 |
} |
| 69 |
|
| 70 |
ul.wp-chatbot-messages-container > li.wp-chatbot-msg { |
| 71 |
|
| 72 |
padding-left: 50px; |
| 73 |
|
| 74 |
} |
| 75 |
|
| 76 |
ul.wp-chatbot-messages-container > li.wp-chat-user-msg { |
| 77 |
|
| 78 |
padding-right: 50px; |
| 79 |
|
| 80 |
} |
| 81 |
ul li .wp-chatbot-avatar { |
| 82 |
margin-top: 0 !important; |
| 83 |
} |
| 84 |
ul.wp-chatbot-messages-container > li .wp-chatbot-avatar, .wp-chatbot-agent-profile .wp-chatbot-widget-avatar { |
| 85 |
|
| 86 |
position: absolute; |
| 87 |
|
| 88 |
top: 0; |
| 89 |
|
| 90 |
width: 40px; |
| 91 |
|
| 92 |
height: 40px; |
| 93 |
|
| 94 |
overflow: hidden; |
| 95 |
|
| 96 |
border-radius: 50%; |
| 97 |
|
| 98 |
} |
| 99 |
|
| 100 |
ul.wp-chatbot-messages-container > li.wp-chatbot-msg .wp-chatbot-avatar, .wp-chatbot-agent-profile .wp-chatbot-widget-avatar { |
| 101 |
|
| 102 |
left: 0; |
| 103 |
|
| 104 |
} |
| 105 |
|
| 106 |
ul.wp-chatbot-messages-container > li.wp-chat-user-msg .wp-chatbot-avatar { |
| 107 |
|
| 108 |
right: 0; |
| 109 |
|
| 110 |
} |
| 111 |
|
| 112 |
ul.wp-chatbot-messages-container > li > .wp-chatbot-paragraph, .wp-chatbot-agent-profile .wp-chatbot-bubble { |
| 113 |
|
| 114 |
padding: 8px 15px; |
| 115 |
|
| 116 |
max-width: 90%; |
| 117 |
|
| 118 |
box-shadow: 0 2px 8px #bfbfbf; |
| 119 |
|
| 120 |
line-height: 150%; |
| 121 |
|
| 122 |
display: table; |
| 123 |
|
| 124 |
} |
| 125 |
|
| 126 |
ul.wp-chatbot-messages-container > li.wp-chat-user-msg .wp-chatbot-paragraph { |
| 127 |
|
| 128 |
text-align: right; |
| 129 |
|
| 130 |
float: right; |
| 131 |
|
| 132 |
} |
| 133 |
|
| 134 |
ul.wp-chatbot-messages-container > li.wp-chat-user-msg .wp-chatbot-paragraph { |
| 135 |
|
| 136 |
background-color: #eaf1f6; |
| 137 |
|
| 138 |
color: #494949; |
| 139 |
|
| 140 |
margin-left: 10%; |
| 141 |
|
| 142 |
border-radius: 10px 10px 0 10px; |
| 143 |
|
| 144 |
} |
| 145 |
|
| 146 |
ul.wp-chatbot-messages-container > li.wp-chatbot-msg .wp-chatbot-paragraph, .wp-chatbot-agent-profile .wp-chatbot-bubble { |
| 147 |
|
| 148 |
background-color: #1f8ceb; |
| 149 |
|
| 150 |
color: #ffffff; |
| 151 |
|
| 152 |
border-radius: 0 10px 10px 10px; |
| 153 |
width: 100%; |
| 154 |
} |
| 155 |
|
| 156 |
ul.wp-chatbot-messages-container li:first-child.wp-chatbot-msg .wp-chatbot-paragraph { |
| 157 |
|
| 158 |
background-color: transparent; |
| 159 |
|
| 160 |
color: #494949; |
| 161 |
|
| 162 |
} |
| 163 |
|
| 164 |
/************ 02 (A). Link Item *************/ |
| 165 |
|
| 166 |
span.qcld-chatbot-product-category, |
| 167 |
span.qcld-chatbot-support-items, |
| 168 |
span.qcld-chatbot-wildcard, |
| 169 |
span.qcld-chatbot-suggest-email, |
| 170 |
span.qcld-chatbot-reset-btn, |
| 171 |
#wp-chatbot-loadmore, .wp-chatbot-loadmore, span.qcld-chatbot-suggest-phone { |
| 172 |
|
| 173 |
color: #000000; |
| 174 |
background-size: 200% auto; |
| 175 |
border: 1px solid #ffffff; |
| 176 |
display: inline-block; |
| 177 |
margin: 3px auto; |
| 178 |
padding: 6px 11px; |
| 179 |
|
| 180 |
|
| 181 |
} |
| 182 |
|
| 183 |
span.qcld-chatbot-product-category:hover, |
| 184 |
span.qcld-chatbot-support-items:hover, |
| 185 |
span.qcld-chatbot-wildcard:hover, |
| 186 |
span.qcld-chatbot-suggest-email:hover, |
| 187 |
span.qcld-chatbot-reset-btn:hover, |
| 188 |
#wp-chatbot-loadmore:hover, .wp-chatbot-loadmore:hover { |
| 189 |
|
| 190 |
background-position: right center; |
| 191 |
|
| 192 |
|
| 193 |
} |
| 194 |
|
| 195 |
/**************** 02. (B) Loading **********/ |
| 196 |
|
| 197 |
ul.wp-chatbot-messages-container > li .wp-chatbot-paragraph img.wp-chatbot-comment-loader { |
| 198 |
|
| 199 |
background-color: #fff; |
| 200 |
|
| 201 |
padding: 1px; |
| 202 |
|
| 203 |
border-radius: 5px; |
| 204 |
|
| 205 |
margin: 0 auto; |
| 206 |
|
| 207 |
display: block; |
| 208 |
|
| 209 |
} |
| 210 |
|
| 211 |
/******************************* |
| 212 |
|
| 213 |
03. wp Chat bot Message Editor |
| 214 |
|
| 215 |
**********************************/ |
| 216 |
|
| 217 |
|
| 218 |
|
| 219 |
.wp-chatbot-editor-container input, .wp-chatbot-editor-area input::-webkit-input-placeholder, .wp-chatbot-editor-area input::-moz-placeholder, .wp-chatbot-editor-area input:-ms-input-placeholder, .wp-chatbot-editor-area input:-moz-placeholder { |
| 220 |
|
| 221 |
color: #fff; |
| 222 |
|
| 223 |
} |
| 224 |
|
| 225 |
/******************************* |
| 226 |
|
| 227 |
04. wp Chat bottom Tab Nav Editor |
| 228 |
|
| 229 |
**********************************/ |
| 230 |
|
| 231 |
.wp-chatbot-footer { |
| 232 |
|
| 233 |
padding: 0; |
| 234 |
|
| 235 |
} |
| 236 |
|
| 237 |
.wp-chatbot-tab-nav ul li a[data-option="recent"] { |
| 238 |
|
| 239 |
background-position: -7px -47px; |
| 240 |
|
| 241 |
} |
| 242 |
|
| 243 |
.wp-chatbot-tab-nav ul li a[data-option="cart"] { |
| 244 |
|
| 245 |
background-position: -47px -47px; |
| 246 |
|
| 247 |
} |
| 248 |
|
| 249 |
.wp-chatbot-tab-nav ul li a[data-option="chat"] { |
| 250 |
|
| 251 |
background-position: -82px -42px; |
| 252 |
|
| 253 |
} |
| 254 |
|
| 255 |
.wp-chatbot-tab-nav ul li a[data-option="help"] { |
| 256 |
|
| 257 |
background-position: -129px -47px; |
| 258 |
|
| 259 |
} |
| 260 |
|
| 261 |
|
| 262 |
|
| 263 |
.wp-chatbot-tab-nav ul li a[data-option="chat"]:after { |
| 264 |
|
| 265 |
content: ""; |
| 266 |
|
| 267 |
position: absolute; |
| 268 |
|
| 269 |
border-radius: 50%; |
| 270 |
|
| 271 |
border: 3px solid #1f8ceb; |
| 272 |
|
| 273 |
left: -9px; |
| 274 |
|
| 275 |
right: -9px;; |
| 276 |
|
| 277 |
bottom: -9px; |
| 278 |
|
| 279 |
top: -9px; |
| 280 |
|
| 281 |
} |
| 282 |
|
| 283 |
.wp-chatbot-tab-nav ul li.wp-chatbot-operation-active a:before, .wp-chatbot-tab-nav ul li:hover a:before { |
| 284 |
|
| 285 |
border: 2px solid #1f8ceb; |
| 286 |
|
| 287 |
} |
| 288 |
|
| 289 |
/*************************** |
| 290 |
|
| 291 |
05. Tab Feature Product |
| 292 |
|
| 293 |
***************************/ |
| 294 |
|
| 295 |
.wp-chatbot-agent-profile { |
| 296 |
|
| 297 |
position: relative; |
| 298 |
|
| 299 |
padding-left: 50px; |
| 300 |
|
| 301 |
box-sizing: border-box; |
| 302 |
|
| 303 |
word-wrap: break-word; |
| 304 |
|
| 305 |
list-style: none; |
| 306 |
|
| 307 |
display: block; |
| 308 |
|
| 309 |
clear: both; |
| 310 |
|
| 311 |
line-height: 150%; |
| 312 |
|
| 313 |
min-height: 50px; |
| 314 |
|
| 315 |
margin: 0 0 10px 0; |
| 316 |
|
| 317 |
} |
| 318 |
|
| 319 |
.wp-chatbot-widget-title { |
| 320 |
|
| 321 |
color: #353535; |
| 322 |
|
| 323 |
text-align: center; |
| 324 |
|
| 325 |
padding-bottom: 10px; |
| 326 |
|
| 327 |
} |
| 328 |
|
| 329 |
/************************** |
| 330 |
|
| 331 |
06. Tab Cart |
| 332 |
|
| 333 |
*************************/ |
| 334 |
|
| 335 |
.wp-chatbot-cart-header { |
| 336 |
|
| 337 |
background-color: #F5F5F5; |
| 338 |
|
| 339 |
} |
| 340 |
|
| 341 |
.wp-chatbot-cart-single { |
| 342 |
|
| 343 |
background-color: rgba(245, 245, 245, 0.1); |
| 344 |
|
| 345 |
border-bottom: 1px solid #dddddd; |
| 346 |
|
| 347 |
} |
| 348 |
|
| 349 |
.wp-chatbot-cart-single:nth-child(2n+1) { |
| 350 |
|
| 351 |
background-color: rgba(245, 245, 245, 0.5); |
| 352 |
|
| 353 |
} |
| 354 |
|
| 355 |
.wp-chatbot-cart-footer div a { |
| 356 |
|
| 357 |
text-decoration: none; |
| 358 |
|
| 359 |
background: #1f8ceb; |
| 360 |
|
| 361 |
color: #ffffff; |
| 362 |
|
| 363 |
} |
| 364 |
|
| 365 |
.wp-chatbot-cart-footer div a:hover, .wp-chatbot-cart-footer div:last-child a { |
| 366 |
|
| 367 |
background: #1c7ed4; |
| 368 |
|
| 369 |
} |
| 370 |
|
| 371 |
/************************** |
| 372 |
|
| 373 |
07. Product Details |
| 374 |
|
| 375 |
***************************/ |
| 376 |
|
| 377 |
.wp-chatbot-product-details { |
| 378 |
|
| 379 |
box-shadow: 0 0 10px #ccc; |
| 380 |
|
| 381 |
background-color: #ffffff; |
| 382 |
|
| 383 |
} |
| 384 |
|
| 385 |
.wp-chatbot-product-cart-button input[type="button"] { |
| 386 |
|
| 387 |
border: 1px solid #e4e5e7; |
| 388 |
|
| 389 |
background: #1f8ceb; |
| 390 |
|
| 391 |
color: #ffffff; |
| 392 |
|
| 393 |
box-shadow: 0 0 2px #999; |
| 394 |
|
| 395 |
} |
| 396 |
|
| 397 |
.wp-chatbot-product-cart-button input[type="button"]:hover { |
| 398 |
|
| 399 |
background: #1c7ed4; |
| 400 |
|
| 401 |
color: #ffffff; |
| 402 |
|
| 403 |
} |
| 404 |
|
| 405 |
/************************* |
| 406 |
|
| 407 |
Right-to-left text direction |
| 408 |
|
| 409 |
**************************/ |
| 410 |
|
| 411 |
.wp-chatbot-rtl { |
| 412 |
|
| 413 |
text-align: right; |
| 414 |
|
| 415 |
direction: RTL; |
| 416 |
|
| 417 |
} |
| 418 |
|
| 419 |
.wp-chatbot-rtl ul.wp-chatbot-messages-container > li.wp-chatbot-msg, .wp-chatbot-rtl .wp-chatbot-agent-profile { |
| 420 |
|
| 421 |
padding: 0 50px 0 0; |
| 422 |
|
| 423 |
} |
| 424 |
|
| 425 |
.wp-chatbot-rtl ul.wp-chatbot-messages-container > li.wp-chatbot-msg.wp-chatbot-msg-flat { |
| 426 |
|
| 427 |
padding: 0; |
| 428 |
|
| 429 |
} |
| 430 |
|
| 431 |
.wp-chatbot-rtl ul.wp-chatbot-messages-container > li.wp-chatbot-msg > .wp-chatbot-paragraph { |
| 432 |
|
| 433 |
display: table; |
| 434 |
|
| 435 |
max-width: 90%; |
| 436 |
|
| 437 |
float: right; |
| 438 |
|
| 439 |
text-align: right; |
| 440 |
|
| 441 |
} |
| 442 |
|
| 443 |
.wp-chatbot-rtl ul.wp-chatbot-messages-container > li.wp-chatbot-msg .wp-chatbot-avatar, |
| 444 |
.wp-chatbot-rtl .wp-chatbot-agent-profile .wp-chatbot-widget-avatar { |
| 445 |
|
| 446 |
right: 0; |
| 447 |
|
| 448 |
left: auto; |
| 449 |
|
| 450 |
} |
| 451 |
|
| 452 |
.wp-chatbot-rtl ul.wp-chatbot-messages-container > li.wp-chat-user-msg { |
| 453 |
|
| 454 |
padding: 0 0 0 50px; |
| 455 |
|
| 456 |
} |
| 457 |
|
| 458 |
.wp-chatbot-rtl ul.wp-chatbot-messages-container > li.wp-chat-user-msg .wp-chatbot-avatar { |
| 459 |
|
| 460 |
left: 0; |
| 461 |
|
| 462 |
right: auto; |
| 463 |
|
| 464 |
} |
| 465 |
|
| 466 |
.wp-chatbot-rtl ul.wp-chatbot-messages-container > li.wp-chat-user-msg > .wp-chatbot-paragraph { |
| 467 |
|
| 468 |
display: table; |
| 469 |
|
| 470 |
max-width: 90%; |
| 471 |
|
| 472 |
float: left; |
| 473 |
|
| 474 |
text-align: left; |
| 475 |
|
| 476 |
} |
| 477 |
|
| 478 |
.wp-chatbot-rtl ul.wp-chatbot-messages-container > li.wp-chat-user-msg .wp-chatbot-paragraph { |
| 479 |
|
| 480 |
margin-left: 0; |
| 481 |
|
| 482 |
} |
| 483 |
|
| 484 |
.wp-chatbot-rtl .wp-chatbot-editor-container input { |
| 485 |
|
| 486 |
text-align: right; |
| 487 |
|
| 488 |
direction: RTL; |
| 489 |
|
| 490 |
} |
| 491 |
|
| 492 |
.wp-chatbot-rtl .wp-chatbot-products-area ul li:nth-child(2n+2) { |
| 493 |
|
| 494 |
margin: auto; |
| 495 |
|
| 496 |
} |
| 497 |
.wp-chatbot-rtl .wp-chatbot-products-area ul li { |
| 498 |
margin: 1%; |
| 499 |
vertical-align: middle; |
| 500 |
} |
| 501 |
|
| 502 |
.wpb-search-result a { |
| 503 |
display: block; |
| 504 |
background: #eee; |
| 505 |
padding: 4px 5px; |
| 506 |
line-height: 20px; |
| 507 |
padding-left: 20px; |
| 508 |
margin-bottom: 0; |
| 509 |
} |
| 510 |
.wpb-search-result a:before { |
| 511 |
content: ""; |
| 512 |
font-style: normal; |
| 513 |
font-weight: normal; |
| 514 |
text-decoration: inherit; |
| 515 |
color: #000; |
| 516 |
font-size: 18px; |
| 517 |
position: absolute; |
| 518 |
left: 68px; |
| 519 |
line-height: 1; |
| 520 |
font-weight: bold; |
| 521 |
color: #7d7b7b; |
| 522 |
} |
| 523 |
.wpbot-saas-live-chat{ |
| 524 |
width: 310px !important; |
| 525 |
height: 500px; |
| 526 |
box-shadow: 0 5px 40px rgba(0,0,0,.16)!important; |
| 527 |
display:none; |
| 528 |
} |
| 529 |
.wpchat_header_left{ |
| 530 |
display:inline-block; |
| 531 |
} |
| 532 |
.wpchat_header_left span{ font-size: 22px; |
| 533 |
padding: 0px 10px; } |
| 534 |
.wpchat_header_right { |
| 535 |
float: right; |
| 536 |
margin-right: 12px; |
| 537 |
} |
| 538 |
|
| 539 |
|
| 540 |
/* Css Updated - 06-06-24 */ |
| 541 |
|
| 542 |
.wp-chatbot-header { |
| 543 |
color: rgb(255, 255, 255); |
| 544 |
} |
| 545 |
ul.wp-chatbot-messages-container > li.wp-chatbot-msg .wp-chatbot-paragraph, .wp-chatbot-agent-profile .wp-chatbot-bubble { |
| 546 |
color: rgb(255, 255, 255); |
| 547 |
background: linear-gradient(135deg, rgb(42, 39, 218) 0%, rgb(0, 204, 255) 100%); |
| 548 |
} |
| 549 |
ul.wp-chatbot-messages-container li:first-child.wp-chatbot-msg .wp-chatbot-paragraph { |
| 550 |
color: rgb(255, 255, 255) !important; |
| 551 |
background: linear-gradient(135deg, rgb(42, 39, 218) 0%, rgb(0, 204, 255) 100%); |
| 552 |
} |
| 553 |
|
| 554 |
ul.wp-chatbot-messages-container > li.wp-chat-user-msg .wp-chatbot-paragraph { |
| 555 |
color: rgb(255, 255, 255); |
| 556 |
background: linear-gradient(135deg, rgb(0, 204, 255) 0%, rgb(42, 39, 218) 100%); |
| 557 |
} |
| 558 |
span.qcld-chatbot-product-category, span.qcld-chatbot-support-items, span.qcld-chatbot-wildcard, span.qcld-chatbot-suggest-email, span.qcld-chatbot-reset-btn, #wp-chatbot-loadmore, .wp-chatbot-loadmore, span.qcld-chatbot-suggest-phone { |
| 559 |
background: rgba(0, 0, 0, 0); |
| 560 |
padding: 8px 12px 6px 12px; |
| 561 |
} |
| 562 |
ul.wp-chatbot-messages-container li:first-child.wp-chatbot-msg .wp-chatbot-paragraph { |
| 563 |
color: #ffffff; |
| 564 |
} |
| 565 |
h2.oneline { |
| 566 |
font-size: 18px; |
| 567 |
color: #fff; |
| 568 |
} |
| 569 |
|
| 570 |
h2.oneline img{ |
| 571 |
margin: 0 0 0 10px !important; |
| 572 |
} |
| 573 |
.wp-chatbot-header { |
| 574 |
display: flex; |
| 575 |
align-content: center; |
| 576 |
align-items: center; |
| 577 |
} |
| 578 |
.wp-chatbot-content { |
| 579 |
height: calc(100vh - 320px) !important; |
| 580 |
} |
| 581 |
div#wp-chatbot-desktop-reload { |
| 582 |
top: -14px; |
| 583 |
} |
| 584 |
#wp-chatbot-desktop-close { |
| 585 |
top: -14px; |
| 586 |
} |
| 587 |
div#wp-chatbot-ball-container { |
| 588 |
box-shadow: rgba(0, 18, 46, 0.16) 0px 8px 36px 0px; |
| 589 |
border-radius: 8px; |
| 590 |
} |
| 591 |
|
| 592 |
|
| 593 |
.wp-chatbot-tab-nav ul li a { |
| 594 |
width: 32px; |
| 595 |
height: 32px; |
| 596 |
background: url(../../images/tab-btn-icon-new.png) no-repeat; |
| 597 |
|
| 598 |
box-shadow: inset 1px 1px 0 rgb(255 255 255 / 75%), inset 0 0 5px rgb(255 255 255 / 76%); |
| 599 |
background-color: rgb(255 255 255 / 25%); |
| 600 |
backdrop-filter: blur(0px); |
| 601 |
isolation: isolate; |
| 602 |
|
| 603 |
|
| 604 |
} |
| 605 |
.wp-chatbot-tab-nav ul li a[data-option="help"] { |
| 606 |
background-position: -125px -44px; |
| 607 |
} |
| 608 |
.wp-chatbot-tab-nav ul li a[data-option="support"] { |
| 609 |
background-position: -166px -44px; |
| 610 |
} |
| 611 |
|
| 612 |
.wp-chatbot-board-container:after { |
| 613 |
border-top: 30px solid #ffffff00; |
| 614 |
} |
| 615 |
|
| 616 |
.wp-chatbot-header { |
| 617 |
padding: 6px 15px; |
| 618 |
} |
| 619 |
.wp-chatbot-ball { |
| 620 |
box-shadow: rgba(0, 77, 255, 0.5) 0px 4px 24px; |
| 621 |
} |
| 622 |
|
| 623 |
.wp-chatbot-tab-nav ul { |
| 624 |
margin: 0 !important; |
| 625 |
padding: 0 !important; |
| 626 |
list-style: none; |
| 627 |
text-align: center; |
| 628 |
display: flex; |
| 629 |
justify-content: space-between; |
| 630 |
vertical-align: bottom; |
| 631 |
} |
| 632 |
.wp-chatbot-tab-nav ul li a[data-option="chat"]:after { |
| 633 |
border: 0 solid #1f8ceb; |
| 634 |
} |
| 635 |
.wp-chatbot-tab-nav ul li.wp-chatbot-operation-active a:before, .wp-chatbot-tab-nav ul li:hover a:before { |
| 636 |
border: 0px solid #1f8ceb; |
| 637 |
} |
| 638 |
.wp-chatbot-tab-nav ul li a[data-option="chat"] { |
| 639 |
background-position: -82px -41px; |
| 640 |
} |
| 641 |
|
| 642 |
.wp-chatbot-tab-nav { |
| 643 |
padding: 4px 5px; |
| 644 |
} |
| 645 |
|
| 646 |
ul.wp-chatbot-messages-container > li.wp-chatbot-msg .wp-chatbot-paragraph, .wp-chatbot-agent-profile .wp-chatbot-bubble { |
| 647 |
border-radius: 10px; |
| 648 |
} |
| 649 |
ul.wp-chatbot-messages-container > li.wp-chat-user-msg .wp-chatbot-paragraph { |
| 650 |
border-radius: 10px; |
| 651 |
} |
| 652 |
|
| 653 |
.wp-chatbot-editor-container button { |
| 654 |
width: auto; |
| 655 |
position: absolute; |
| 656 |
right: 4px; |
| 657 |
z-index: 999999; |
| 658 |
padding: 0 0 0 0; |
| 659 |
background:#ffffff82 url(../../images/send-button-new.png) no-repeat center !important; |
| 660 |
border-radius: 50%; |
| 661 |
width: 38px; |
| 662 |
height: 38px; |
| 663 |
top: 5px; |
| 664 |
} |
| 665 |
.wp-chatbot-board-container { |
| 666 |
overflow: visible; |
| 667 |
} |
| 668 |
|
| 669 |
|
| 670 |
.wp-chatbot-editor-container button:hover { |
| 671 |
background: url(../../images/send-button-new.png) no-repeat center !important; |
| 672 |
} |
| 673 |
|
| 674 |
.wp-chatbot-header-welcome-text img { |
| 675 |
border-radius: 50%; |
| 676 |
padding: 3px; |
| 677 |
} |
| 678 |
|
| 679 |
.wp-chatbot-footer { |
| 680 |
padding: 0; |
| 681 |
} |
| 682 |
.wp-chatbot-header-welcome-text { |
| 683 |
align-items: center; |
| 684 |
display: flex; |
| 685 |
justify-content: center; |
| 686 |
} |
| 687 |
span.qcld-chatbot-wildcard { |
| 688 |
width: 100%; |
| 689 |
max-width: 255px; |
| 690 |
} |
| 691 |
|
| 692 |
.wp-chatbot-textanimation span { |
| 693 |
display: inline-block; |
| 694 |
width: auto; |
| 695 |
margin: 3px 2px; |
| 696 |
} |
| 697 |
|
| 698 |
.wp-chatbot-textanimation span:hover { |
| 699 |
color: rgb(255, 255, 255); |
| 700 |
background: linear-gradient(135deg, rgb(42, 39, 218) 0%, rgb(0, 204, 255) 100%); |
| 701 |
} |
| 702 |
|
| 703 |
|
| 704 |
|
| 705 |
.wpb-search-result a { |
| 706 |
color: #222 !important; |
| 707 |
} |
| 708 |
.wpbot_card_caption p { |
| 709 |
color: #222 !important; |
| 710 |
} |
| 711 |
|
| 712 |
|
| 713 |
@media screen and (max-width: 768px) { |
| 714 |
.wp-chatbot-editor-container button { |
| 715 |
right: 0; |
| 716 |
} |
| 717 |
.wp-chatbot-content { |
| 718 |
height: calc(100vh - 220px) !important; |
| 719 |
} |
| 720 |
} |
| 721 |
|
| 722 |
|
| 723 |
div#wp-chatbot-board-container { |
| 724 |
background: url(../../images/bg-03.jpg) no-repeat; |
| 725 |
position: relative; |
| 726 |
background-size: 100% 100%; |
| 727 |
background-position: center bottom; |
| 728 |
box-shadow: inset 1px 1px 0 rgb(255 255 255 / 75%), inset 0 0 5px rgb(255 255 255 / 76%); |
| 729 |
backdrop-filter: blur(0px); |
| 730 |
isolation: isolate; |
| 731 |
box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px; |
| 732 |
border-radius: 8px; |
| 733 |
} |
| 734 |
div#wp-chatbot-board-container:before { |
| 735 |
isolation: isolate; |
| 736 |
content: ''; |
| 737 |
position: absolute; |
| 738 |
height: 100%; |
| 739 |
width: 100%; |
| 740 |
backdrop-filter: blur(0px); |
| 741 |
border-radius: 8px !important; |
| 742 |
left: 0; |
| 743 |
right: 0; |
| 744 |
width: 100%; |
| 745 |
box-shadow: inset 1px 1px 0 rgb(255 255 255 / 75%), inset 0 0 5px rgb(255 255 255 / 76%); |
| 746 |
backdrop-filter: blur(0px); |
| 747 |
isolation: isolate; |
| 748 |
} |
| 749 |
ul.wp-chatbot-messages-container > li.wp-chatbot-msg .wp-chatbot-paragraph, .wp-chatbot-agent-profile .wp-chatbot-bubble { |
| 750 |
box-shadow: inset 1px 1px 0 rgb(255 255 255 / 75%), inset 0 0 5px rgb(255 255 255 / 76%); |
| 751 |
background: rgb(255 255 255 / 30%); |
| 752 |
backdrop-filter: blur(0px); |
| 753 |
isolation: isolate; |
| 754 |
} |
| 755 |
ul.wp-chatbot-messages-container li:first-child.wp-chatbot-msg .wp-chatbot-paragraph{ |
| 756 |
box-shadow: inset 1px 1px 0 rgb(255 255 255 / 75%), inset 0 0 5px rgb(255 255 255 / 76%); |
| 757 |
background: rgb(255 255 255 / 30%); |
| 758 |
backdrop-filter: blur(0px); |
| 759 |
isolation: isolate; |
| 760 |
} |
| 761 |
ul.wp-chatbot-messages-container > li.wp-chat-user-msg .wp-chatbot-paragraph{ |
| 762 |
box-shadow: inset 1px 1px 0 rgb(255 255 255 / 75%), inset 0 0 5px rgb(255 255 255 / 76%); |
| 763 |
background: rgb(255 255 255 / 30%); |
| 764 |
backdrop-filter: blur(0px); |
| 765 |
isolation: isolate; |
| 766 |
} |
| 767 |
|
| 768 |
span.qcld-chatbot-product-category, span.qcld-chatbot-support-items, span.qcld-chatbot-wildcard, span.qcld-chatbot-suggest-email, span.qcld-chatbot-reset-btn, #wp-chatbot-loadmore, .wp-chatbot-loadmore, span.qcld-chatbot-suggest-phone { |
| 769 |
box-shadow: inset 1px 1px 0 rgb(255 255 255 / 75%), inset 0 0 5px rgb(255 255 255 / 76%); |
| 770 |
background: rgb(255 255 255 / 25%); |
| 771 |
backdrop-filter: blur(0px); |
| 772 |
isolation: isolate; |
| 773 |
color: #fff; |
| 774 |
} |
| 775 |
|
| 776 |
div#wp-chatbot-editor-container { |
| 777 |
box-shadow: inset 1px 1px 0 rgb(255 255 255 / 75%), inset 0 0 5px rgb(255 255 255 / 76%); |
| 778 |
background: #5755bd61; |
| 779 |
backdrop-filter: blur(0px); |
| 780 |
isolation: isolate; |
| 781 |
margin: 0 12px 0 12px; |
| 782 |
border-radius: 6PX; |
| 783 |
} |
| 784 |
div#wp-chatbot-desktop-reload { |
| 785 |
box-shadow: inset 1px 1px 0 rgb(255 255 255 / 75%), inset 0 0 5px rgb(255 255 255 / 76%); |
| 786 |
background: rgb(255 255 255 / 25%); |
| 787 |
backdrop-filter: blur(0px); |
| 788 |
isolation: isolate; |
| 789 |
} |
| 790 |
div#wp-chatbot-desktop-close { |
| 791 |
box-shadow: inset 1px 1px 0 rgb(255 255 255 / 75%), inset 0 0 5px rgb(255 255 255 / 76%); |
| 792 |
background: rgb(255 255 255 / 25%); |
| 793 |
backdrop-filter: blur(0px); |
| 794 |
isolation: isolate; |
| 795 |
} |
| 796 |
div#wp-chatbot-desktop-reload { |
| 797 |
right: 38px; |
| 798 |
} |
| 799 |
button#wp-chatbot-send-message { |
| 800 |
box-shadow: inset 1px 1px 0 rgb(255 255 255 / 75%), inset 0 0 5px rgb(255 255 255 / 76%); |
| 801 |
background: rgb(255 255 255 / 25%); |
| 802 |
backdrop-filter: blur(0px); |
| 803 |
isolation: isolate; |
| 804 |
} |
| 805 |
|
| 806 |
.wp-chatbot-textanimation span:hover { |
| 807 |
box-shadow: inset 1px 1px 0 rgb(255 255 255 / 75%), inset 0 0 5px rgb(255 255 255 / 76%); |
| 808 |
background: rgb(255 255 255 / 25%); |
| 809 |
backdrop-filter: blur(0px); |
| 810 |
isolation: isolate; |
| 811 |
backdrop-filter: blur(2px); |
| 812 |
} |
| 813 |
.wp-chatbot-editor-container input { |
| 814 |
width: 88%; |
| 815 |
} |
| 816 |
|
| 817 |
.wp-chatbot-editor-container input, .wp-chatbot-editor-area input::-webkit-input-placeholder, .wp-chatbot-editor-area input::-moz-placeholder, .wp-chatbot-editor-area input:-ms-input-placeholder, .wp-chatbot-editor-area input:-moz-placeholder { |
| 818 |
|
| 819 |
color: #222 !important; |
| 820 |
|
| 821 |
} |
| 822 |
.wp-chatbot-header-welcome-text img { |
| 823 |
box-shadow: inset 1px 1px 0 rgb(255 255 255 / 75%), inset 0 0 5px rgb(255 255 255 / 76%); |
| 824 |
background: rgb(255 255 255 / 25%); |
| 825 |
backdrop-filter: blur(0px); |
| 826 |
isolation: isolate; |
| 827 |
} |
| 828 |
.wp-chatbot-header-welcome-text img { |
| 829 |
max-width: 38px !important; |
| 830 |
} |
| 831 |
|
| 832 |
div#wp-chatbot-editor-container input{ |
| 833 |
color: #222; |
| 834 |
} |
| 835 |
div#wp-chatbot-editor-container input::placeholder { |
| 836 |
color: #fff; |
| 837 |
} |
| 838 |
div#wp-chatbot-editor-container input::-webkit-input-placeholder { |
| 839 |
color: #fff; |
| 840 |
} |
| 841 |
div#wp-chatbot-editor-container input::-moz-placeholder { |
| 842 |
color: #fff; |
| 843 |
} |
| 844 |
div#wp-chatbot-editor-container input:-ms-input-placeholder { |
| 845 |
color: #fff; |
| 846 |
} |
| 847 |
|
| 848 |
|
| 849 |
.wp-chatbot-tab-nav ul li a:hover { |
| 850 |
transform: scale(0.95); |
| 851 |
} |
| 852 |
.wp-chatbot-tab-nav ul li a{ |
| 853 |
transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2); |
| 854 |
} |
| 855 |
|
| 856 |
.wp-chatbot-textanimation span:hover { |
| 857 |
transform: scale(0.95); |
| 858 |
} |
| 859 |
.wp-chatbot-textanimation span{ |
| 860 |
transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2); |
| 861 |
} |
| 862 |
|
| 863 |
button#wp-chatbot-send-message:hover { |
| 864 |
transform: scale(0.95); |
| 865 |
} |
| 866 |
button#wp-chatbot-send-message{ |
| 867 |
transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2); |
| 868 |
} |
| 869 |
|
| 870 |
.wp-chatbot-tab-nav ul li:before { |
| 871 |
top: 0; |
| 872 |
} |
| 873 |
|
| 874 |
span.qcld-chatbot-wildcard:hover { |
| 875 |
transform: scale(0.95); |
| 876 |
} |
| 877 |
span.qcld-chatbot-wildcard{ |
| 878 |
transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2); |
| 879 |
} |
| 880 |
|
| 881 |
.wp-chatbot-tab-nav ul { |
| 882 |
margin: 5px 0 !important; |
| 883 |
padding: 0 !important; |
| 884 |
list-style: none; |
| 885 |
text-align: center; |
| 886 |
display: flex; |
| 887 |
gap: 30px; |
| 888 |
vertical-align: bottom; |
| 889 |
align-items: center; |
| 890 |
justify-content: center; |
| 891 |
width: 100%; |
| 892 |
} |
| 893 |
|
| 894 |
ul.wp-chatbot-messages-container li:first-child.wp-chatbot-msg .wp-chatbot-paragraph { |
| 895 |
color: rgb(33 33 33); |
| 896 |
|
| 897 |
} |
| 898 |
ul.wp-chatbot-messages-container > li.wp-chatbot-msg .wp-chatbot-paragraph, .wp-chatbot-agent-profile .wp-chatbot-bubble { |
| 899 |
color: rgb(33 33 33); |
| 900 |
} |
| 901 |
ul.wp-chatbot-messages-container > li.wp-chat-user-msg .wp-chatbot-paragraph { |
| 902 |
color: rgb(33 33 33) ; |
| 903 |
} |
| 904 |
|
| 905 |
|
| 906 |
div#wp-chatbot-desktop-reload { |
| 907 |
color: #3f3f3f; |
| 908 |
} |
| 909 |
#wp-chatbot-desktop-close { |
| 910 |
color: #3f3f3f; |
| 911 |
|
| 912 |
} |
| 913 |
.wp-chatbot-ball { |
| 914 |
background: #fbf7ff; |
| 915 |
} |
| 916 |
.wp-chatbot-ball { |
| 917 |
background: #ffffff; |
| 918 |
} |
| 919 |
.wp-chatbot-ball:hover, .wp-chatbot-ball:focus { |
| 920 |
background: #ffffff; |
| 921 |
} |
| 922 |
.wp-chatbot-header { |
| 923 |
border-bottom: 1px solid #fff; |
| 924 |
box-shadow: inset 1px 1px 0 rgb(255 255 255), inset 0 0 5px rgb(255 255 255); |
| 925 |
} |
| 926 |
|
| 927 |
|
| 928 |
.wpbot_chatopen_iconanimation .wp-chatbot-ball { |
| 929 |
border: 1px solid #dadada; |
| 930 |
background-color: #dadada; |
| 931 |
} |
| 932 |
div#wp-chatbot-desktop-reload { |
| 933 |
top: -10px; |
| 934 |
} |
| 935 |
#wp-chatbot-desktop-close { |
| 936 |
top: -10px; |
| 937 |
right: 8px; |
| 938 |
} |
| 939 |
div#wp-chatbot-desktop-reload { |
| 940 |
right: 45px; |
| 941 |
} |
| 942 |
|
| 943 |
|
| 944 |
.notice.is-dismissible.qcbot-feedback { |
| 945 |
display: flex; |
| 946 |
column-gap: 15px; |
| 947 |
row-gap: 10px; |
| 948 |
background: #fff; |
| 949 |
padding: 15px 15px; |
| 950 |
margin: 20px 20px 20px 0; |
| 951 |
border-radius: 16px; |
| 952 |
align-items: center; |
| 953 |
justify-content: space-between; |
| 954 |
border: none; |
| 955 |
} |
| 956 |
|
| 957 |
|
| 958 |
|
| 959 |
|
| 960 |
.wp-chatbot-template-01 .wpbot_card_image span { |
| 961 |
display: none !important; |
| 962 |
} |
| 963 |
.wp-chatbot-template-01 .wpbot_card_image a { |
| 964 |
display: flex !important; |
| 965 |
gap: 6px !important; |
| 966 |
} |
| 967 |
.wp-chatbot-template-01 .wpbot_card_image.wpbot_card_image_saas a{ |
| 968 |
display: flex !important; |
| 969 |
gap: 6px !important; |
| 970 |
} |
| 971 |
.wp-chatbot-template-01 .wpbot_card_image img{ |
| 972 |
max-width: 25px !important; |
| 973 |
height: 25px !important; |
| 974 |
border-radius: 50%; |
| 975 |
} |
| 976 |
.wp-chatbot-template-01 .wpbot_card_caption.wpbot_card_caption_saas span { |
| 977 |
display: flex !important; |
| 978 |
gap: 10px !important; |
| 979 |
margin: 0 10px 0 0 !important; |
| 980 |
} |
| 981 |
.wp-chatbot-template-01 .wpbot_card_image.wpbot_card_image_saas .wpbot_card_caption.wpbot_card_caption_saas p { |
| 982 |
display: flex; |
| 983 |
} |
| 984 |
.wp-chatbot-template-01 .wpb-search-result .wpbot_card_wraper { |
| 985 |
box-shadow: inset 1px 1px 0 rgb(255 255 255 / 75%), inset 0 0 5px rgb(255 255 255 / 76%); |
| 986 |
background: rgb(255 255 255 / 30%); |
| 987 |
backdrop-filter: blur(0px); |
| 988 |
isolation: isolate; |
| 989 |
margin: 5px 0; |
| 990 |
padding: 5px; |
| 991 |
} |
| 992 |
.wp-chatbot-template-01 .wpb-search-result .wpbot_card_wraper p.wpbot_card_caption_title{ |
| 993 |
margin: 0; |
| 994 |
padding: 0; |
| 995 |
color: rgb(29 115 180) !important; |
| 996 |
font-weight: 600; |
| 997 |
} |
| 998 |
.wp-chatbot-template-01 .wpbot_card_caption.wpbot_card_caption_saas p.wpbot_card_description { |
| 999 |
padding: 0 0 0 28px; |
| 1000 |
} |
| 1001 |
.wp-chatbot-template-01 .wpbot_card_caption p.wpbot_card_description { |
| 1002 |
margin: 0; |
| 1003 |
padding: 0; |
| 1004 |
} |
| 1005 |
.wp-chatbot-template-01 .wp-chatbot-template-01 .wpbot_card_caption h2 { |
| 1006 |
margin: 0; |
| 1007 |
padding: 0; |
| 1008 |
color: rgb(29 115 180) !important; |
| 1009 |
font-weight: 600; |
| 1010 |
font-size: 14px; |
| 1011 |
} |
| 1012 |
|
| 1013 |
.wp-chatbot-template-01 .wpb-search-result .wpbot_card_wraper a{ |
| 1014 |
text-decoration: none !important; |
| 1015 |
} |
| 1016 |
|
| 1017 |
.wp-chatbot-template-01 .wpb-search-result .wpbot_card_wraper a p:first-child { |
| 1018 |
margin: 0; |
| 1019 |
padding: 0; |
| 1020 |
color: rgb(29 115 180) !important; |
| 1021 |
font-weight: 600; |
| 1022 |
} |
| 1023 |
|
| 1024 |
.wp-chatbot-template-01 .wpb-search-result a p { |
| 1025 |
margin: 0; |
| 1026 |
} |
| 1027 |
|
| 1028 |
@media screen and (max-width: 768px) { |
| 1029 |
.wp-chatbot-editor-container button { |
| 1030 |
right: 7px; |
| 1031 |
} |
| 1032 |
} |
| 1033 |
|