| 1 |
/* |
| 2 |
|
| 3 |
1.ShortCode Grid |
| 4 |
|
| 5 |
2.wp Chat bot Message container |
| 6 |
|
| 7 |
3.Sidebar |
| 8 |
|
| 9 |
-Widget |
| 10 |
|
| 11 |
-Agent |
| 12 |
|
| 13 |
*/ |
| 14 |
|
| 15 |
/********************************************************************************** |
| 16 |
|
| 17 |
1. ShortCode Grid |
| 18 |
|
| 19 |
**********************************************************************************/ |
| 20 |
|
| 21 |
.chatbot-shortcode-template-03 { |
| 22 |
|
| 23 |
font-family: "quicksandregular", "Helvetica Neue", Helvetica, Aria; |
| 24 |
|
| 25 |
height: auto; |
| 26 |
|
| 27 |
max-width: 1100px; |
| 28 |
|
| 29 |
margin: 0 auto; |
| 30 |
|
| 31 |
position: relative; |
| 32 |
|
| 33 |
box-sizing: border-box; |
| 34 |
|
| 35 |
border-radius: 5px; |
| 36 |
|
| 37 |
box-shadow: 0 5px 40px rgba(0, 0, 0, .10); |
| 38 |
|
| 39 |
background: #ffffff; |
| 40 |
|
| 41 |
display: table; |
| 42 |
|
| 43 |
} |
| 44 |
|
| 45 |
|
| 46 |
|
| 47 |
.chatbot-shortcode-row { |
| 48 |
|
| 49 |
display: table-row; |
| 50 |
|
| 51 |
box-shadow: 0 0 10px rgba(102, 122, 255, 0.10); |
| 52 |
|
| 53 |
} |
| 54 |
|
| 55 |
|
| 56 |
|
| 57 |
.chatbot-shortcode-template-03 .wp-chatbot-container, .chatbot-shortcode-template-03 .chatbot-sidebar { |
| 58 |
|
| 59 |
display: table-cell; |
| 60 |
|
| 61 |
vertical-align: top; |
| 62 |
|
| 63 |
box-sizing: border-box; |
| 64 |
|
| 65 |
} |
| 66 |
|
| 67 |
|
| 68 |
|
| 69 |
.chatbot-shortcode-template-03 .chatbot-sidebar { |
| 70 |
|
| 71 |
width: 30%; |
| 72 |
|
| 73 |
padding: 15px; |
| 74 |
|
| 75 |
font-size: 14px; |
| 76 |
|
| 77 |
line-height: 1.8; |
| 78 |
|
| 79 |
} |
| 80 |
|
| 81 |
|
| 82 |
|
| 83 |
.chatbot-shortcode-template-03 .wp-chatbot-container { |
| 84 |
|
| 85 |
width: 40%; |
| 86 |
|
| 87 |
background-color: #f6f6fc; |
| 88 |
|
| 89 |
} |
| 90 |
|
| 91 |
|
| 92 |
|
| 93 |
.wp-chatbot-container { |
| 94 |
|
| 95 |
box-shadow: 0 0 50px rgba(102, 122, 255, 0.50); |
| 96 |
|
| 97 |
} |
| 98 |
|
| 99 |
|
| 100 |
|
| 101 |
/*************************************************************************************************** |
| 102 |
|
| 103 |
2. wp Chat bot Message container |
| 104 |
|
| 105 |
****************************************************************************************************/ |
| 106 |
|
| 107 |
.wp-chatbot-header { |
| 108 |
|
| 109 |
background: #667aff; |
| 110 |
|
| 111 |
border-radius: 0 !important; |
| 112 |
|
| 113 |
height: auto; |
| 114 |
|
| 115 |
} |
| 116 |
|
| 117 |
|
| 118 |
|
| 119 |
.wp-chatbot-header h3 { |
| 120 |
|
| 121 |
color: #ffffff; |
| 122 |
|
| 123 |
font-size: 18px !important; |
| 124 |
|
| 125 |
font-weight: 700; |
| 126 |
|
| 127 |
line-height: 1.2; |
| 128 |
|
| 129 |
letter-spacing: 1px; |
| 130 |
|
| 131 |
|
| 132 |
|
| 133 |
} |
| 134 |
|
| 135 |
|
| 136 |
|
| 137 |
.wp-chatbot-content { |
| 138 |
|
| 139 |
|
| 140 |
|
| 141 |
} |
| 142 |
|
| 143 |
|
| 144 |
|
| 145 |
.wp-chatbot-comment-loader { |
| 146 |
|
| 147 |
margin: 0 auto; |
| 148 |
|
| 149 |
display: block; |
| 150 |
|
| 151 |
} |
| 152 |
|
| 153 |
|
| 154 |
|
| 155 |
ul.wp-chatbot-messages-container { |
| 156 |
|
| 157 |
padding: 0; |
| 158 |
|
| 159 |
margin: 0; |
| 160 |
|
| 161 |
} |
| 162 |
|
| 163 |
|
| 164 |
|
| 165 |
ul.wp-chatbot-messages-container > li:first-child .wp-chatbot-agent { |
| 166 |
|
| 167 |
display: none !important; |
| 168 |
|
| 169 |
} |
| 170 |
|
| 171 |
|
| 172 |
|
| 173 |
ul.wp-chatbot-messages-container > li, .wp-chatbot-agent-profile { |
| 174 |
|
| 175 |
padding-left: 22px; |
| 176 |
|
| 177 |
font-size: 14px; |
| 178 |
|
| 179 |
} |
| 180 |
|
| 181 |
|
| 182 |
|
| 183 |
ul.wp-chatbot-messages-container > li .wp-chatbot-comment-loader { |
| 184 |
|
| 185 |
margin: 0 auto; |
| 186 |
|
| 187 |
display: block; |
| 188 |
|
| 189 |
} |
| 190 |
|
| 191 |
|
| 192 |
|
| 193 |
ul.wp-chatbot-messages-container > li > .wp-chatbot-avatar, .wp-chatbot-agent-profile .wp-chatbot-widget-avatar { |
| 194 |
|
| 195 |
position: absolute; |
| 196 |
|
| 197 |
top: 0; |
| 198 |
|
| 199 |
left: 0; |
| 200 |
|
| 201 |
z-index: 2; |
| 202 |
|
| 203 |
border-radius: 50%; |
| 204 |
|
| 205 |
overflow: hidden; |
| 206 |
|
| 207 |
border: 2px solid rgba(255, 255, 255, 0.62); |
| 208 |
|
| 209 |
background-color: #70aca9; |
| 210 |
|
| 211 |
width: 40px; |
| 212 |
|
| 213 |
height: 40px; |
| 214 |
|
| 215 |
} |
| 216 |
|
| 217 |
|
| 218 |
|
| 219 |
ul.wp-chatbot-messages-container > li > .wp-chatbot-agent, |
| 220 |
|
| 221 |
ul.wp-chatbot-messages-container > li > .wp-chatbot-paragraph, |
| 222 |
|
| 223 |
.wp-chatbot-agent-profile .wp-chatbot-bubble, .wp-chatbot-widget-agent { |
| 224 |
|
| 225 |
display: table; |
| 226 |
|
| 227 |
position: relative; |
| 228 |
|
| 229 |
padding-left: 30px; |
| 230 |
|
| 231 |
padding-right: 10px; |
| 232 |
|
| 233 |
|
| 234 |
|
| 235 |
} |
| 236 |
|
| 237 |
|
| 238 |
|
| 239 |
ul.wp-chatbot-messages-container > li > .wp-chatbot-agent, |
| 240 |
|
| 241 |
.wp-chatbot-widget-agent { |
| 242 |
|
| 243 |
display: table !important; |
| 244 |
|
| 245 |
padding-top: 2px; |
| 246 |
|
| 247 |
padding-bottom: 2px; |
| 248 |
|
| 249 |
background-color: #667aff; |
| 250 |
|
| 251 |
color: #ffffff; |
| 252 |
|
| 253 |
font-size: 10px; |
| 254 |
|
| 255 |
line-height: 12px; |
| 256 |
|
| 257 |
border-radius: 10px 10px 0px 10px; |
| 258 |
|
| 259 |
} |
| 260 |
|
| 261 |
|
| 262 |
|
| 263 |
ul.wp-chatbot-messages-container > li > .wp-chatbot-paragraph, .wp-chatbot-agent-profile .wp-chatbot-bubble { |
| 264 |
|
| 265 |
padding-top: 8px; |
| 266 |
|
| 267 |
padding-bottom: 8px; |
| 268 |
|
| 269 |
background-color: #36d67c; |
| 270 |
|
| 271 |
color: #ffffff; |
| 272 |
|
| 273 |
font-size: 14px; |
| 274 |
|
| 275 |
line-height: 20px; |
| 276 |
|
| 277 |
border-radius: 10px; |
| 278 |
|
| 279 |
} |
| 280 |
|
| 281 |
|
| 282 |
|
| 283 |
ul.wp-chatbot-messages-container > li.wp-chat-user-msg > .wp-chatbot-paragraph { |
| 284 |
|
| 285 |
background-color: #3a98d8; |
| 286 |
|
| 287 |
} |
| 288 |
|
| 289 |
|
| 290 |
|
| 291 |
ul.wp-chatbot-messages-container > li.wp-chat-user-msg::before { |
| 292 |
|
| 293 |
left: 19px; |
| 294 |
|
| 295 |
} |
| 296 |
|
| 297 |
|
| 298 |
|
| 299 |
ul.wp-chatbot-messages-container > li.wp-chatbot-msg-flat { |
| 300 |
|
| 301 |
color: #ffffff; |
| 302 |
|
| 303 |
} |
| 304 |
|
| 305 |
|
| 306 |
|
| 307 |
ul.wp-chatbot-messages-container > li .wp-chatbot-paragraph img.wp-chatbot-comment-loader { |
| 308 |
|
| 309 |
background-color: #fff; |
| 310 |
|
| 311 |
padding: 1px; |
| 312 |
|
| 313 |
border-radius: 5px; |
| 314 |
|
| 315 |
margin: 0 auto; |
| 316 |
|
| 317 |
display: block; |
| 318 |
|
| 319 |
} |
| 320 |
|
| 321 |
|
| 322 |
|
| 323 |
/********* Footer ****************/ |
| 324 |
|
| 325 |
.wp-chatbot-footer { |
| 326 |
|
| 327 |
border-radius: 0px; |
| 328 |
|
| 329 |
background: rgba(70, 70, 70, 0.5); |
| 330 |
|
| 331 |
} |
| 332 |
|
| 333 |
|
| 334 |
|
| 335 |
/******Message Editor ***********/ |
| 336 |
|
| 337 |
|
| 338 |
|
| 339 |
.wp-chatbot-editor-area { |
| 340 |
|
| 341 |
border-top: 1px solid #deebe9; |
| 342 |
|
| 343 |
border-radius: 0; |
| 344 |
|
| 345 |
margin: 0; |
| 346 |
|
| 347 |
padding: 6px 15px; |
| 348 |
|
| 349 |
} |
| 350 |
|
| 351 |
|
| 352 |
|
| 353 |
.wp-chatbot-editor-area input { |
| 354 |
|
| 355 |
display: inline-block; |
| 356 |
|
| 357 |
border: none; |
| 358 |
|
| 359 |
height: 50px; |
| 360 |
|
| 361 |
font-family: 'Montserrat', sans-serif; |
| 362 |
|
| 363 |
width: 80%; |
| 364 |
|
| 365 |
background-color: transparent; |
| 366 |
|
| 367 |
color: #fff; |
| 368 |
|
| 369 |
font-size: 14px; |
| 370 |
|
| 371 |
margin: 0; |
| 372 |
|
| 373 |
padding: 0; |
| 374 |
|
| 375 |
} |
| 376 |
|
| 377 |
|
| 378 |
|
| 379 |
.wp-chatbot-editor-area input:focus { |
| 380 |
|
| 381 |
outline: none; |
| 382 |
|
| 383 |
border: none; |
| 384 |
|
| 385 |
box-shadow: none; |
| 386 |
|
| 387 |
background: none; |
| 388 |
|
| 389 |
} |
| 390 |
|
| 391 |
input.wp-chatbot-editor::placeholder { |
| 392 |
|
| 393 |
color: #ffffff; |
| 394 |
|
| 395 |
} |
| 396 |
|
| 397 |
.wp-chatbot-editor-area button { |
| 398 |
|
| 399 |
display: inline-block; |
| 400 |
|
| 401 |
height: 50px; |
| 402 |
|
| 403 |
background: transparent url("../../images/send-button.png") no-repeat center; |
| 404 |
|
| 405 |
color: transparent; |
| 406 |
|
| 407 |
width: 20%; |
| 408 |
|
| 409 |
cursor: pointer; |
| 410 |
|
| 411 |
margin: 0 0 0 -8px; |
| 412 |
|
| 413 |
padding: 0; |
| 414 |
|
| 415 |
border: none; |
| 416 |
|
| 417 |
outline: none; |
| 418 |
|
| 419 |
} |
| 420 |
|
| 421 |
|
| 422 |
|
| 423 |
.wp-chatbot-editor-area button:hover { |
| 424 |
|
| 425 |
background: transparent url("../../images/send-button.png") no-repeat center; |
| 426 |
|
| 427 |
} |
| 428 |
|
| 429 |
|
| 430 |
|
| 431 |
.wp-chatbot-editor-area button:focus { |
| 432 |
|
| 433 |
outline: none; |
| 434 |
|
| 435 |
border: none; |
| 436 |
|
| 437 |
box-shadow: none; |
| 438 |
|
| 439 |
background: transparent url("../../images/send-button.png") no-repeat center; |
| 440 |
|
| 441 |
} |
| 442 |
|
| 443 |
|
| 444 |
|
| 445 |
/******************************************************************************************* |
| 446 |
|
| 447 |
sidebar element |
| 448 |
|
| 449 |
*******************************************************************************************/ |
| 450 |
|
| 451 |
.wp-chatbot-agent-profile { |
| 452 |
|
| 453 |
position: relative; |
| 454 |
|
| 455 |
box-sizing: border-box; |
| 456 |
|
| 457 |
word-wrap: break-word; |
| 458 |
|
| 459 |
list-style: none; |
| 460 |
|
| 461 |
display: block; |
| 462 |
|
| 463 |
clear: both; |
| 464 |
|
| 465 |
line-height: 150%; |
| 466 |
|
| 467 |
min-height: 50px; |
| 468 |
|
| 469 |
margin: 0 0 10px 0; |
| 470 |
|
| 471 |
} |
| 472 |
|
| 473 |
|
| 474 |
|
| 475 |
/***********Widget*************/ |
| 476 |
|
| 477 |
.wp-chatbot-widget { |
| 478 |
|
| 479 |
margin-bottom: 20px; |
| 480 |
|
| 481 |
} |
| 482 |
|
| 483 |
|
| 484 |
|
| 485 |
.wp-chatbot-widget:last-child { |
| 486 |
|
| 487 |
margin-bottom: 0; |
| 488 |
|
| 489 |
} |
| 490 |
|
| 491 |
|
| 492 |
|
| 493 |
.wp-chatbot-widget h3.wp-chatbot-widget-title { |
| 494 |
|
| 495 |
color: #999999; |
| 496 |
|
| 497 |
margin: 7px 0 10px; |
| 498 |
|
| 499 |
padding: 0 0 5px; |
| 500 |
|
| 501 |
font-size: 18px; |
| 502 |
|
| 503 |
font-weight: 700; |
| 504 |
|
| 505 |
line-height: 1.2; |
| 506 |
|
| 507 |
letter-spacing: 1px; |
| 508 |
|
| 509 |
border-bottom: 1px solid #e6e6e6; |
| 510 |
|
| 511 |
} |
| 512 |
|
| 513 |
|
| 514 |
|
| 515 |
/************Agent***********/ |
| 516 |
|
| 517 |
.chatbot-agent { |
| 518 |
|
| 519 |
text-align: center; |
| 520 |
|
| 521 |
} |
| 522 |
|
| 523 |
|
| 524 |
|
| 525 |
.chatbot-agent img { |
| 526 |
|
| 527 |
border: 1px solid #F5F5F5; |
| 528 |
|
| 529 |
box-shadow: none !important; |
| 530 |
|
| 531 |
padding: 3px; |
| 532 |
|
| 533 |
} |
| 534 |
|
| 535 |
|
| 536 |
|
| 537 |
h3.chatbot-agent-name { |
| 538 |
|
| 539 |
color: #999999; |
| 540 |
|
| 541 |
margin: 0 0 10px !important; |
| 542 |
|
| 543 |
padding: 0 !important; |
| 544 |
|
| 545 |
font-size: 14px !important; |
| 546 |
|
| 547 |
font-weight: 700; |
| 548 |
|
| 549 |
} |
| 550 |
|
| 551 |
|
| 552 |
|
| 553 |
.chatbot-agent-name { |
| 554 |
|
| 555 |
margin: 5px 0; |
| 556 |
|
| 557 |
padding: 0; |
| 558 |
|
| 559 |
color: #999999; |
| 560 |
|
| 561 |
} |
| 562 |
|
| 563 |
|
| 564 |
|
| 565 |
.wp-chatbot-widget ul.wp-chatbot-products, .wp-chatbot-products-area { |
| 566 |
|
| 567 |
margin: 0 !important; |
| 568 |
|
| 569 |
} |
| 570 |
|
| 571 |
|
| 572 |
|
| 573 |
/********************************** |
| 574 |
|
| 575 |
Reset |
| 576 |
|
| 577 |
**********************************/ |
| 578 |
|
| 579 |
/********* Order List *******/ |
| 580 |
|
| 581 |
|
| 582 |
|
| 583 |
.wp-chatbot-cart-header { |
| 584 |
|
| 585 |
background-color: #F5F5F5; |
| 586 |
|
| 587 |
} |
| 588 |
|
| 589 |
|
| 590 |
|
| 591 |
.wp-chatbot-cart-single { |
| 592 |
|
| 593 |
background-color: rgba(245, 245, 245, 0.1); |
| 594 |
|
| 595 |
border-bottom: 1px solid #dddddd; |
| 596 |
|
| 597 |
} |
| 598 |
|
| 599 |
|
| 600 |
|
| 601 |
.wp-chatbot-cart-single:nth-child(2n+1) { |
| 602 |
|
| 603 |
background-color: rgba(245, 245, 245, 0.5); |
| 604 |
|
| 605 |
} |
| 606 |
|
| 607 |
|
| 608 |
|
| 609 |
.wp-chatbot-cart-footer div a { |
| 610 |
|
| 611 |
text-decoration: none; |
| 612 |
|
| 613 |
background: #667aff; |
| 614 |
|
| 615 |
color: #ffffff !important; |
| 616 |
|
| 617 |
} |
| 618 |
|
| 619 |
|
| 620 |
|
| 621 |
.wp-chatbot-cart-footer div a:hover, .wp-chatbot-cart-footer div:last-child a { |
| 622 |
|
| 623 |
background: #4e60d8 !important; |
| 624 |
|
| 625 |
} |
| 626 |
|
| 627 |
|
| 628 |
|
| 629 |
.wp-chatbot-cart-container div p { |
| 630 |
|
| 631 |
text-align: left !important; |
| 632 |
|
| 633 |
} |
| 634 |
|
| 635 |
|
| 636 |
|
| 637 |
/****** Product Details*******/ |
| 638 |
|
| 639 |
.wp-chatbot-product-details { |
| 640 |
|
| 641 |
box-shadow: 0 0 10px #ccc; |
| 642 |
|
| 643 |
background-color: #f5f5f5; |
| 644 |
|
| 645 |
} |
| 646 |
|
| 647 |
|
| 648 |
|
| 649 |
.wp-chatbot-product-cart-button input[type="button"], #wp-chatbot-loadmore { |
| 650 |
|
| 651 |
border: 1px solid #667aff; |
| 652 |
|
| 653 |
background: #667aff; |
| 654 |
|
| 655 |
color: #ffffff; |
| 656 |
|
| 657 |
box-shadow: 0 0 2px #999; |
| 658 |
|
| 659 |
} |
| 660 |
|
| 661 |
|
| 662 |
|
| 663 |
.wp-chatbot-product-cart-button input[type="button"]:hover, #wp-chatbot-loadmore:hover { |
| 664 |
|
| 665 |
background: #4e60d8; |
| 666 |
|
| 667 |
color: #ffffff; |
| 668 |
|
| 669 |
} |
| 670 |
|
| 671 |
|
| 672 |
|
| 673 |
#wp-chatbot-shortcode-template-container a.wp-chatbot-product-close { |
| 674 |
|
| 675 |
position: absolute; |
| 676 |
|
| 677 |
top: 0; |
| 678 |
|
| 679 |
right: 0; |
| 680 |
|
| 681 |
background: #667aff url("../../images/wp-boat-product-close-icon.png") no-repeat center; |
| 682 |
|
| 683 |
background-size: 27px; |
| 684 |
|
| 685 |
width: 50px; |
| 686 |
|
| 687 |
height: 50px; |
| 688 |
|
| 689 |
} |
| 690 |
|
| 691 |
|
| 692 |
|
| 693 |
#wp-chatbot-shortcode-template-container a.wp-chatbot-product-close:hover { |
| 694 |
|
| 695 |
background-color: red; |
| 696 |
|
| 697 |
} |
| 698 |
|
| 699 |
|
| 700 |
|
| 701 |
#wp-chatbot-shortcode-template-container .wp-chatbot-product-details { |
| 702 |
|
| 703 |
box-shadow: none; |
| 704 |
|
| 705 |
} |
| 706 |
|
| 707 |
|
| 708 |
|
| 709 |
#wp-chatbot-shortcode-template-container h2#wp-chatbot-product-title { |
| 710 |
|
| 711 |
margin: 0 0 10px !important; |
| 712 |
|
| 713 |
color: #999999; |
| 714 |
|
| 715 |
padding: 0 0 5px; |
| 716 |
|
| 717 |
font-size: 18px; |
| 718 |
|
| 719 |
font-weight: 700; |
| 720 |
|
| 721 |
line-height: 1.2; |
| 722 |
|
| 723 |
letter-spacing: 1px; |
| 724 |
|
| 725 |
} |
| 726 |
|
| 727 |
|
| 728 |
|
| 729 |
#wp-chatbot-shortcode-template-container .wp-chatbot-product-price { |
| 730 |
|
| 731 |
color: #667aff; |
| 732 |
|
| 733 |
font-size: 16px; |
| 734 |
|
| 735 |
font-weight: bold; |
| 736 |
|
| 737 |
} |
| 738 |
|
| 739 |
/************************* |
| 740 |
|
| 741 |
Right-to-left text direction |
| 742 |
|
| 743 |
**************************/ |
| 744 |
|
| 745 |
.wp-chatbot-rtl { |
| 746 |
|
| 747 |
text-align: right; |
| 748 |
|
| 749 |
direction: RTL; |
| 750 |
|
| 751 |
} |
| 752 |
|
| 753 |
.wp-chatbot-rtl ul.wp-chatbot-messages-container > li, .wp-chatbot-rtl .wp-chatbot-agent-profile { |
| 754 |
|
| 755 |
padding: 0 10px 0 0; |
| 756 |
|
| 757 |
} |
| 758 |
|
| 759 |
.wp-chatbot-rtl ul.wp-chatbot-messages-container > li > .wp-chatbot-agent, |
| 760 |
|
| 761 |
.wp-chatbot-rtl ul.wp-chatbot-messages-container > li > .wp-chatbot-paragraph, |
| 762 |
|
| 763 |
.wp-chatbot-rtl .wp-chatbot-agent-profile .wp-chatbot-bubble, .wp-chatbot-rtl .wp-chatbot-widget-agent { |
| 764 |
|
| 765 |
display: table; |
| 766 |
|
| 767 |
position: relative; |
| 768 |
|
| 769 |
padding-left: 10px; |
| 770 |
|
| 771 |
padding-right: 30px; |
| 772 |
|
| 773 |
} |
| 774 |
|
| 775 |
.wp-chatbot-rtl ul.wp-chatbot-messages-container > li > .wp-chatbot-avatar, |
| 776 |
|
| 777 |
.wp-chatbot-rtl .wp-chatbot-agent-profile .wp-chatbot-widget-avatar { |
| 778 |
|
| 779 |
top: 0; |
| 780 |
|
| 781 |
left: auto; |
| 782 |
|
| 783 |
right: 0; |
| 784 |
|
| 785 |
} |
| 786 |
|
| 787 |
.wp-chatbot-rtl .wp-chatbot-editor-container input { |
| 788 |
|
| 789 |
text-align: right; |
| 790 |
|
| 791 |
direction: RTL; |
| 792 |
|
| 793 |
} |
| 794 |
|
| 795 |
|
| 796 |
|
| 797 |
.wp-chatbot-rtl .wp-chatbot-products-area ul li:nth-child(2n+2) { |
| 798 |
|
| 799 |
margin: auto; |
| 800 |
|
| 801 |
} |
| 802 |
|
| 803 |
|
| 804 |
|
| 805 |
.wp-chatbot-rtl .wp-chatbot-products-area ul li { |
| 806 |
|
| 807 |
margin: 1%; |
| 808 |
|
| 809 |
vertical-align: middle; |
| 810 |
|
| 811 |
} |
| 812 |
|
| 813 |
|
| 814 |
|
| 815 |
@media screen and (max-width: 1024px) { |
| 816 |
|
| 817 |
.chatbot-left-sidebar { |
| 818 |
|
| 819 |
display: none !important; |
| 820 |
|
| 821 |
} |
| 822 |
|
| 823 |
} |
| 824 |
|
| 825 |
|
| 826 |
|
| 827 |
@media screen and (max-width: 767px) { |
| 828 |
|
| 829 |
.chatbot-shortcode-template-03 { |
| 830 |
|
| 831 |
display: block; |
| 832 |
|
| 833 |
} |
| 834 |
|
| 835 |
|
| 836 |
|
| 837 |
.chatbot-shortcode-template-03 .chatbot-shortcode-row { |
| 838 |
|
| 839 |
display: block; |
| 840 |
|
| 841 |
} |
| 842 |
|
| 843 |
|
| 844 |
|
| 845 |
.chatbot-shortcode-template-03 .wp-chatbot-container{ |
| 846 |
|
| 847 |
display: block !important; |
| 848 |
|
| 849 |
width: 100% !important; |
| 850 |
|
| 851 |
margin-bottom: 30px; |
| 852 |
|
| 853 |
} |
| 854 |
|
| 855 |
} |
| 856 |
|
| 857 |
|