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