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