appscms-tools-theme 5.1.8 → 5.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_data/.DS_Store +0 -0
- data/_data/aitools/en/ai-article-writer.json +184 -0
- data/_data/aitools/en/amazon-product-bullet-points-generator.json +222 -0
- data/_data/aitools/en/amazon-product-description-generator.json +222 -0
- data/_data/aitools/en/brand-name-generator.json +215 -0
- data/_data/aitools/en/product-description.json +222 -0
- data/_includes/.DS_Store +0 -0
- data/_includes/aitools/ai-article-writer.html +0 -0
- data/_includes/aitools/amazon-product-bullet-points-generator.html +0 -0
- data/_includes/aitools/amazon-product-description-generator.html +0 -0
- data/_includes/aitools/brand-name-generator.html +0 -0
- data/_includes/aitools/product-description.html +0 -0
- data/_includes/appscms/.DS_Store +0 -0
- data/_includes/appscms/customblog/pageRelatedPosts.html +1 -1
- data/_layouts/content-tool-ai copy 2.html +6611 -0
- data/_layouts/content-tool-ai.html +403 -24
- data/assets/.DS_Store +0 -0
- data/assets/css/content-tool-ai.css +776 -2
- data/assets/js/ai-article-writer.js +0 -0
- data/assets/js/amazon-product-bullet-points-generator.js +464 -0
- data/assets/js/amazon-product-bullet-points-generator3.js +176 -0
- data/assets/js/amazon-product-description-generator.js +309 -0
- data/assets/js/brand-name-generator.js +127 -0
- data/assets/js/product-description.js +299 -0
- metadata +19 -2
@@ -13,7 +13,7 @@ body {
|
|
13
13
|
|
14
14
|
/* Header Styles */
|
15
15
|
.top-header {
|
16
|
-
height:
|
16
|
+
height: 55px;
|
17
17
|
background: #f5f9fd;
|
18
18
|
position: fixed;
|
19
19
|
top: 0;
|
@@ -274,7 +274,8 @@ body {
|
|
274
274
|
background: #f3f4f6;
|
275
275
|
}
|
276
276
|
|
277
|
-
.btn-generate
|
277
|
+
.btn-generate,
|
278
|
+
.login-btn {
|
278
279
|
background: linear-gradient(90deg, #4701ff 35%, #8223f7);
|
279
280
|
border-color: var(--primary-color);
|
280
281
|
color: white;
|
@@ -386,3 +387,776 @@ body {
|
|
386
387
|
font-size: 0.875rem;
|
387
388
|
}
|
388
389
|
}
|
390
|
+
|
391
|
+
* Login System */ .login-modal-button {
|
392
|
+
border: none;
|
393
|
+
background-color: #fff;
|
394
|
+
font-size: 14px;
|
395
|
+
padding: 0px 0px 0px 25px;
|
396
|
+
}
|
397
|
+
.side-modal-overlay {
|
398
|
+
position: fixed;
|
399
|
+
top: 0;
|
400
|
+
left: 0;
|
401
|
+
width: 100%;
|
402
|
+
height: 100%;
|
403
|
+
background-color: rgba(0, 0, 0, 0.5);
|
404
|
+
display: none;
|
405
|
+
z-index: 100;
|
406
|
+
}
|
407
|
+
|
408
|
+
.side-modal {
|
409
|
+
position: fixed;
|
410
|
+
z-index: 10000;
|
411
|
+
top: 0;
|
412
|
+
right: -90%; /* Start off-screen */
|
413
|
+
width: 90%;
|
414
|
+
height: 100%;
|
415
|
+
background-color: white;
|
416
|
+
box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
|
417
|
+
transition: right 0.3s ease-in-out;
|
418
|
+
overflow-y: auto;
|
419
|
+
}
|
420
|
+
|
421
|
+
.modal-header {
|
422
|
+
display: flex;
|
423
|
+
justify-content: space-between;
|
424
|
+
align-items: center;
|
425
|
+
padding: 20px;
|
426
|
+
border-bottom: 1px solid #eee;
|
427
|
+
}
|
428
|
+
|
429
|
+
.modal-title {
|
430
|
+
font-size: 24px;
|
431
|
+
font-weight: bold;
|
432
|
+
color: #333;
|
433
|
+
}
|
434
|
+
|
435
|
+
.close-modal-btn {
|
436
|
+
background: none;
|
437
|
+
border: none;
|
438
|
+
font-size: 24px;
|
439
|
+
cursor: pointer;
|
440
|
+
color: #666;
|
441
|
+
}
|
442
|
+
|
443
|
+
.modal-content {
|
444
|
+
padding: 20px;
|
445
|
+
}
|
446
|
+
|
447
|
+
.modal-body {
|
448
|
+
margin-bottom: 20px;
|
449
|
+
}
|
450
|
+
|
451
|
+
.modal-footer {
|
452
|
+
padding: 15px 20px;
|
453
|
+
border-top: 1px solid #eee;
|
454
|
+
text-align: right;
|
455
|
+
}
|
456
|
+
|
457
|
+
.auth-container {
|
458
|
+
background-color: white;
|
459
|
+
border-radius: 8px;
|
460
|
+
padding: 30px;
|
461
|
+
width: 400px;
|
462
|
+
max-width: 90%;
|
463
|
+
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
464
|
+
}
|
465
|
+
|
466
|
+
h1 {
|
467
|
+
font-size: 28px;
|
468
|
+
margin-bottom: 10px;
|
469
|
+
}
|
470
|
+
|
471
|
+
h2 {
|
472
|
+
font-size: 16px;
|
473
|
+
font-weight: normal;
|
474
|
+
color: #555;
|
475
|
+
margin-bottom: 30px;
|
476
|
+
}
|
477
|
+
|
478
|
+
a {
|
479
|
+
color: #1b2de7;
|
480
|
+
text-decoration: none;
|
481
|
+
}
|
482
|
+
|
483
|
+
a:hover {
|
484
|
+
text-decoration: underline;
|
485
|
+
}
|
486
|
+
|
487
|
+
.social-btn {
|
488
|
+
display: flex;
|
489
|
+
align-items: center;
|
490
|
+
width: 100%;
|
491
|
+
padding: 12px;
|
492
|
+
border: none;
|
493
|
+
border-radius: 4px;
|
494
|
+
font-size: 16px;
|
495
|
+
margin-bottom: 10px;
|
496
|
+
cursor: pointer;
|
497
|
+
color: white;
|
498
|
+
text-align: center;
|
499
|
+
}
|
500
|
+
|
501
|
+
.google-btn {
|
502
|
+
background-color: #4884ed;
|
503
|
+
}
|
504
|
+
.google-btn svg {
|
505
|
+
background-color: #fff;
|
506
|
+
border-radius: 30px;
|
507
|
+
padding: 3px;
|
508
|
+
}
|
509
|
+
|
510
|
+
.facebook-btn {
|
511
|
+
background-color: #3c5997;
|
512
|
+
}
|
513
|
+
|
514
|
+
.or-divider {
|
515
|
+
display: flex;
|
516
|
+
align-items: center;
|
517
|
+
text-align: center;
|
518
|
+
margin: 20px 0;
|
519
|
+
color: #777;
|
520
|
+
}
|
521
|
+
|
522
|
+
.or-divider::before,
|
523
|
+
.or-divider::after {
|
524
|
+
content: "";
|
525
|
+
flex: 1;
|
526
|
+
border-bottom: 1px solid #ddd;
|
527
|
+
}
|
528
|
+
|
529
|
+
.or-divider::before {
|
530
|
+
margin-right: 10px;
|
531
|
+
}
|
532
|
+
|
533
|
+
.or-divider::after {
|
534
|
+
margin-left: 10px;
|
535
|
+
}
|
536
|
+
|
537
|
+
.input-group {
|
538
|
+
position: relative;
|
539
|
+
margin-bottom: 15px;
|
540
|
+
}
|
541
|
+
|
542
|
+
.input-group input {
|
543
|
+
width: 100%;
|
544
|
+
padding: 12px 40px 12px 40px;
|
545
|
+
border: 1px solid #ddd;
|
546
|
+
border-radius: 4px;
|
547
|
+
font-size: 16px;
|
548
|
+
box-sizing: border-box;
|
549
|
+
}
|
550
|
+
|
551
|
+
.input-group i {
|
552
|
+
position: absolute;
|
553
|
+
left: 12px;
|
554
|
+
top: 50%;
|
555
|
+
transform: translateY(-50%);
|
556
|
+
color: #777;
|
557
|
+
}
|
558
|
+
|
559
|
+
.password-toggle {
|
560
|
+
position: absolute;
|
561
|
+
right: 12px;
|
562
|
+
top: 50%;
|
563
|
+
transform: translateY(-50%);
|
564
|
+
color: #777;
|
565
|
+
cursor: pointer;
|
566
|
+
}
|
567
|
+
|
568
|
+
.login-btn {
|
569
|
+
width: 100%;
|
570
|
+
padding: 12px;
|
571
|
+
background-color: #1b2de7;
|
572
|
+
color: white;
|
573
|
+
border: none;
|
574
|
+
border-radius: 4px;
|
575
|
+
font-size: 16px;
|
576
|
+
cursor: pointer;
|
577
|
+
margin-bottom: 15px;
|
578
|
+
}
|
579
|
+
|
580
|
+
.forgot-password {
|
581
|
+
text-align: center;
|
582
|
+
margin-top: 15px;
|
583
|
+
}
|
584
|
+
|
585
|
+
.user-profile {
|
586
|
+
display: none;
|
587
|
+
text-align: center;
|
588
|
+
}
|
589
|
+
|
590
|
+
.avatar {
|
591
|
+
width: 100px;
|
592
|
+
height: 100px;
|
593
|
+
background-color: #ff9800;
|
594
|
+
border-radius: 50%;
|
595
|
+
display: flex;
|
596
|
+
justify-content: center;
|
597
|
+
align-items: center;
|
598
|
+
margin: 0 auto 20px;
|
599
|
+
color: white;
|
600
|
+
font-size: 28px;
|
601
|
+
font-weight: bold;
|
602
|
+
}
|
603
|
+
|
604
|
+
.menu-item {
|
605
|
+
display: flex;
|
606
|
+
align-items: center;
|
607
|
+
padding: 15px;
|
608
|
+
border-bottom: 1px solid #eee;
|
609
|
+
}
|
610
|
+
|
611
|
+
.menu-item:last-child {
|
612
|
+
border-bottom: none;
|
613
|
+
}
|
614
|
+
|
615
|
+
.menu-item i {
|
616
|
+
margin-right: 10px;
|
617
|
+
color: #555;
|
618
|
+
}
|
619
|
+
|
620
|
+
.menu-item span {
|
621
|
+
flex: 1;
|
622
|
+
}
|
623
|
+
|
624
|
+
.menu-item .arrow {
|
625
|
+
color: #999;
|
626
|
+
}
|
627
|
+
|
628
|
+
/* Icons */
|
629
|
+
.icon {
|
630
|
+
width: 24px;
|
631
|
+
height: 24px;
|
632
|
+
display: inline-block;
|
633
|
+
margin-right: 10px;
|
634
|
+
}
|
635
|
+
|
636
|
+
.google-icon {
|
637
|
+
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g fill="none"><path fill="#4285F4" d="M21.533 12.187c0-.82-.067-1.417-.21-2.037h-9.357v3.698h5.492c-.11.92-.709 2.303-2.038 3.233l-.018.124 2.958 2.292.205.02c1.882-1.738 2.968-4.296 2.968-7.33"></path><path fill="#34A853" d="M11.966 21.931c2.69 0 4.95-.886 6.6-2.414l-3.146-2.436c-.841.587-1.97.997-3.454.997-2.636 0-4.872-1.739-5.67-4.141l-.117.01-3.076 2.38-.04.112a9.96 9.96 0 0 0 8.903 5.492"></path><path fill="#FBBC05" d="M6.296 13.937a6.1 6.1 0 0 1-.332-1.971c0-.687.122-1.351.321-1.971l-.005-.132-3.115-2.42-.102.05A10 10 0 0 0 2 11.965a10 10 0 0 0 1.063 4.473z"></path><path fill="#EB4335" d="M11.966 5.853c1.87 0 3.133.809 3.853 1.484l2.813-2.746C16.904 2.985 14.656 2 11.966 2a9.96 9.96 0 0 0-8.903 5.492l3.222 2.503c.809-2.403 3.045-4.142 5.68-4.142"></path></g></svg>');
|
638
|
+
}
|
639
|
+
|
640
|
+
.facebook-icon {
|
641
|
+
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="white" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-7H9v-2h2V8.5C11 7.12 12.12 6 13.5 6H16v2h-2c-.55 0-1 .45-1 1v1h3v2h-3v7z"/></svg>');
|
642
|
+
}
|
643
|
+
|
644
|
+
.email-icon {
|
645
|
+
position: absolute;
|
646
|
+
top: 10px;
|
647
|
+
left: 10px;
|
648
|
+
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="%23777" d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
|
649
|
+
}
|
650
|
+
|
651
|
+
.password-icon {
|
652
|
+
position: absolute;
|
653
|
+
top: 10px;
|
654
|
+
left: 10px;
|
655
|
+
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="%23777" d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"/></svg>');
|
656
|
+
}
|
657
|
+
|
658
|
+
.eye-icon {
|
659
|
+
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="%23777" d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"/></svg>');
|
660
|
+
}
|
661
|
+
|
662
|
+
/* User avatar in corner */
|
663
|
+
.user-avatar {
|
664
|
+
position: absolute;
|
665
|
+
top: 20px;
|
666
|
+
right: 20px;
|
667
|
+
width: 40px;
|
668
|
+
height: 40px;
|
669
|
+
border-radius: 50%;
|
670
|
+
background-color: #1b2de7;
|
671
|
+
color: white;
|
672
|
+
display: flex;
|
673
|
+
justify-content: center;
|
674
|
+
align-items: center;
|
675
|
+
font-weight: bold;
|
676
|
+
cursor: pointer;
|
677
|
+
}
|
678
|
+
|
679
|
+
.google-btn svg {
|
680
|
+
width: 24px;
|
681
|
+
height: 24px;
|
682
|
+
display: inline-block;
|
683
|
+
margin-right: 10px;
|
684
|
+
}
|
685
|
+
|
686
|
+
/* Forgot password form */
|
687
|
+
#forgotPasswordForm {
|
688
|
+
display: none;
|
689
|
+
}
|
690
|
+
|
691
|
+
.back-btn {
|
692
|
+
display: flex;
|
693
|
+
align-items: center;
|
694
|
+
margin-bottom: 20px;
|
695
|
+
cursor: pointer;
|
696
|
+
color: #1b2de7;
|
697
|
+
font-size: 14px;
|
698
|
+
}
|
699
|
+
|
700
|
+
.back-btn:hover {
|
701
|
+
text-decoration: underline;
|
702
|
+
}
|
703
|
+
|
704
|
+
.back-icon {
|
705
|
+
margin-right: 8px;
|
706
|
+
}
|
707
|
+
|
708
|
+
.reset-success {
|
709
|
+
text-align: center;
|
710
|
+
background-color: #e8f4ff;
|
711
|
+
padding: 15px;
|
712
|
+
border-radius: 4px;
|
713
|
+
margin-top: 15px;
|
714
|
+
display: none;
|
715
|
+
}
|
716
|
+
|
717
|
+
.success-icon {
|
718
|
+
color: #1b2de7;
|
719
|
+
font-size: 24px;
|
720
|
+
margin-bottom: 10px;
|
721
|
+
}
|
722
|
+
.twitter-btn {
|
723
|
+
background-color: #000000;
|
724
|
+
}
|
725
|
+
|
726
|
+
.twitter-btn svg {
|
727
|
+
width: 24px;
|
728
|
+
height: 24px;
|
729
|
+
display: inline-block;
|
730
|
+
margin-right: 10px;
|
731
|
+
}
|
732
|
+
|
733
|
+
.user-modal-header {
|
734
|
+
position: fixed;
|
735
|
+
top: 0;
|
736
|
+
left: 0;
|
737
|
+
right: 0;
|
738
|
+
height: 70px;
|
739
|
+
background-color: white;
|
740
|
+
display: flex;
|
741
|
+
align-items: center;
|
742
|
+
justify-content: flex-end;
|
743
|
+
padding: 0 20px;
|
744
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
745
|
+
}
|
746
|
+
|
747
|
+
.free-trial {
|
748
|
+
display: flex;
|
749
|
+
align-items: center;
|
750
|
+
padding: 8px 16px;
|
751
|
+
border: 1px solid #ddd;
|
752
|
+
border-radius: 4px;
|
753
|
+
margin-right: 20px;
|
754
|
+
background-color: white;
|
755
|
+
}
|
756
|
+
|
757
|
+
.crown-icon {
|
758
|
+
color: #f9c74f;
|
759
|
+
font-size: 24px;
|
760
|
+
margin-right: 10px;
|
761
|
+
}
|
762
|
+
.user-profile-header {
|
763
|
+
padding: 0px 0px 0px 20px;
|
764
|
+
display: none;
|
765
|
+
}
|
766
|
+
.profile-button {
|
767
|
+
width: 40px;
|
768
|
+
height: 40px;
|
769
|
+
|
770
|
+
border-radius: 50%;
|
771
|
+
background-color: var(--primary-color);
|
772
|
+
color: white;
|
773
|
+
display: flex;
|
774
|
+
justify-content: center;
|
775
|
+
align-items: center;
|
776
|
+
cursor: pointer;
|
777
|
+
font-weight: bold;
|
778
|
+
position: relative;
|
779
|
+
}
|
780
|
+
|
781
|
+
.dropdown-icon {
|
782
|
+
position: absolute;
|
783
|
+
bottom: -5px;
|
784
|
+
right: -5px;
|
785
|
+
font-size: 10px;
|
786
|
+
background-color: white;
|
787
|
+
border-radius: 50%;
|
788
|
+
width: 14px;
|
789
|
+
height: 14px;
|
790
|
+
display: flex;
|
791
|
+
justify-content: center;
|
792
|
+
align-items: center;
|
793
|
+
color: black;
|
794
|
+
}
|
795
|
+
|
796
|
+
.user-modal {
|
797
|
+
position: absolute;
|
798
|
+
top: 55px;
|
799
|
+
right: 0px;
|
800
|
+
width: 300px;
|
801
|
+
background-color: white;
|
802
|
+
border-radius: 8px;
|
803
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
804
|
+
display: none;
|
805
|
+
overflow: hidden;
|
806
|
+
}
|
807
|
+
|
808
|
+
.user-modal-header {
|
809
|
+
padding: 20px;
|
810
|
+
display: flex;
|
811
|
+
align-items: center;
|
812
|
+
}
|
813
|
+
|
814
|
+
.profile-user-avatar {
|
815
|
+
width: 60px;
|
816
|
+
height: 60px;
|
817
|
+
border-radius: 50%;
|
818
|
+
background-color: var(--primary-color);
|
819
|
+
color: white;
|
820
|
+
display: flex;
|
821
|
+
justify-content: center;
|
822
|
+
align-items: center;
|
823
|
+
font-weight: bold;
|
824
|
+
font-size: 24px;
|
825
|
+
margin-right: 20px;
|
826
|
+
}
|
827
|
+
|
828
|
+
.user-info h2 {
|
829
|
+
font-size: 18px;
|
830
|
+
margin-bottom: 5px;
|
831
|
+
}
|
832
|
+
|
833
|
+
.user-info p {
|
834
|
+
font-size: 14px;
|
835
|
+
color: #777;
|
836
|
+
overflow: hidden;
|
837
|
+
text-overflow: ellipsis;
|
838
|
+
}
|
839
|
+
|
840
|
+
.modal-item {
|
841
|
+
display: flex;
|
842
|
+
align-items: center;
|
843
|
+
padding: 20px;
|
844
|
+
border-top: 1px solid #eee;
|
845
|
+
transition: background-color 0.2s;
|
846
|
+
cursor: pointer;
|
847
|
+
}
|
848
|
+
|
849
|
+
.modal-item:hover {
|
850
|
+
background-color: #f7f7f7;
|
851
|
+
}
|
852
|
+
|
853
|
+
.item-icon {
|
854
|
+
margin-right: 20px;
|
855
|
+
font-size: 20px;
|
856
|
+
min-width: 24px;
|
857
|
+
text-align: center;
|
858
|
+
}
|
859
|
+
|
860
|
+
.item-text {
|
861
|
+
flex-grow: 1;
|
862
|
+
}
|
863
|
+
.item-text a {
|
864
|
+
color: #000000;
|
865
|
+
text-decoration: none;
|
866
|
+
}
|
867
|
+
.item-arrow svg {
|
868
|
+
height: 13px;
|
869
|
+
width: 13px;
|
870
|
+
}
|
871
|
+
|
872
|
+
.upload-button {
|
873
|
+
position: fixed;
|
874
|
+
bottom: 20px;
|
875
|
+
left: 20px;
|
876
|
+
width: 50px;
|
877
|
+
height: 50px;
|
878
|
+
border-radius: 8px;
|
879
|
+
background-color: #2962ff;
|
880
|
+
color: white;
|
881
|
+
display: flex;
|
882
|
+
flex-direction: column;
|
883
|
+
justify-content: center;
|
884
|
+
align-items: center;
|
885
|
+
cursor: pointer;
|
886
|
+
}
|
887
|
+
|
888
|
+
.upload-icon {
|
889
|
+
font-size: 24px;
|
890
|
+
margin-bottom: 2px;
|
891
|
+
}
|
892
|
+
|
893
|
+
.upload-button span {
|
894
|
+
font-size: 10px;
|
895
|
+
}
|
896
|
+
.auth-container a {
|
897
|
+
justify-content: center;
|
898
|
+
}
|
899
|
+
.review {
|
900
|
+
width: 300px; /* Set each review card width to match the `.reviews` container */
|
901
|
+
flex-shrink: 0;
|
902
|
+
}
|
903
|
+
|
904
|
+
.feedback-btn {
|
905
|
+
background-color: #4361ee;
|
906
|
+
color: white;
|
907
|
+
border: none;
|
908
|
+
padding: 12px 32px;
|
909
|
+
border-radius: 8px;
|
910
|
+
font-size: 16px;
|
911
|
+
font-weight: 500;
|
912
|
+
cursor: pointer;
|
913
|
+
transition: all 0.2s ease;
|
914
|
+
margin-bottom: 12px;
|
915
|
+
margin-top: 10px;
|
916
|
+
}
|
917
|
+
|
918
|
+
.modal {
|
919
|
+
display: none;
|
920
|
+
position: fixed;
|
921
|
+
z-index: 1045;
|
922
|
+
left: 0;
|
923
|
+
top: 0;
|
924
|
+
width: 100%;
|
925
|
+
height: 100%;
|
926
|
+
background-color: rgba(0, 0, 0, 0.5);
|
927
|
+
}
|
928
|
+
|
929
|
+
.modal-body {
|
930
|
+
padding: 25px;
|
931
|
+
}
|
932
|
+
|
933
|
+
@keyframes modalopen {
|
934
|
+
from {
|
935
|
+
opacity: 0;
|
936
|
+
transform: translateY(-60px);
|
937
|
+
}
|
938
|
+
to {
|
939
|
+
opacity: 1;
|
940
|
+
transform: translateY(0);
|
941
|
+
}
|
942
|
+
}
|
943
|
+
|
944
|
+
.close {
|
945
|
+
color: #aaa;
|
946
|
+
float: right;
|
947
|
+
font-size: 28px;
|
948
|
+
font-weight: bold;
|
949
|
+
cursor: pointer;
|
950
|
+
}
|
951
|
+
|
952
|
+
.close:hover {
|
953
|
+
color: black;
|
954
|
+
}
|
955
|
+
|
956
|
+
h2 {
|
957
|
+
margin-top: 0;
|
958
|
+
color: #333;
|
959
|
+
}
|
960
|
+
|
961
|
+
.form-group {
|
962
|
+
margin-botton: 15px;
|
963
|
+
}
|
964
|
+
|
965
|
+
label {
|
966
|
+
display: block;
|
967
|
+
margin-bottom: 5px;
|
968
|
+
font-weight: bold;
|
969
|
+
}
|
970
|
+
|
971
|
+
textarea,
|
972
|
+
input {
|
973
|
+
width: 100%;
|
974
|
+
padding: 10px;
|
975
|
+
border: 1px solid #ddd;
|
976
|
+
border-radius: 4px;
|
977
|
+
box-sizing: border-box;
|
978
|
+
}
|
979
|
+
|
980
|
+
textarea {
|
981
|
+
height: 120px;
|
982
|
+
resize: vertical;
|
983
|
+
}
|
984
|
+
.submit-btn {
|
985
|
+
background-color: #4caf50;
|
986
|
+
color: white;
|
987
|
+
padding: 10px 20px;
|
988
|
+
border: none;
|
989
|
+
border-radius: 4px;
|
990
|
+
cursor: pointer;
|
991
|
+
font-size: 16px;
|
992
|
+
}
|
993
|
+
|
994
|
+
.rating-header {
|
995
|
+
margin-top: 10px;
|
996
|
+
}
|
997
|
+
|
998
|
+
.feedbackModal {
|
999
|
+
background-color: var(--white);
|
1000
|
+
border-radius: 12px;
|
1001
|
+
box-shadow: var(--shadow-feedback);
|
1002
|
+
width: 100%;
|
1003
|
+
max-width: 500px;
|
1004
|
+
overflow: hidden;
|
1005
|
+
animation: slideIn 0.3s ease-out;
|
1006
|
+
}
|
1007
|
+
|
1008
|
+
.modal-overlay {
|
1009
|
+
position: fixed;
|
1010
|
+
top: 0;
|
1011
|
+
left: 0;
|
1012
|
+
right: 0;
|
1013
|
+
bottom: 0;
|
1014
|
+
background-color: rgba(0, 0, 0, 0.5);
|
1015
|
+
display: flex;
|
1016
|
+
align-items: center;
|
1017
|
+
justify-content: center;
|
1018
|
+
z-index: 1000;
|
1019
|
+
backdrop-filter: blur(5px);
|
1020
|
+
animation: fadeIn 0.3s ease-out;
|
1021
|
+
}
|
1022
|
+
|
1023
|
+
.close {
|
1024
|
+
position: absolute;
|
1025
|
+
top: 10px;
|
1026
|
+
right: 15px;
|
1027
|
+
font-size: 24px;
|
1028
|
+
font-weight: bold;
|
1029
|
+
cursor: pointer;
|
1030
|
+
}
|
1031
|
+
|
1032
|
+
.form-group {
|
1033
|
+
margin-bottom: 15px;
|
1034
|
+
}
|
1035
|
+
|
1036
|
+
.form-group label {
|
1037
|
+
display: block;
|
1038
|
+
margin-bottom: 5px;
|
1039
|
+
font-weight: bold;
|
1040
|
+
}
|
1041
|
+
|
1042
|
+
.form-control {
|
1043
|
+
width: 100%;
|
1044
|
+
padding: 8px;
|
1045
|
+
border: 1px solid #ccc;
|
1046
|
+
border-radius: 4px;
|
1047
|
+
box-sizing: border-box;
|
1048
|
+
}
|
1049
|
+
|
1050
|
+
.btn-primary {
|
1051
|
+
background-color: #007bff;
|
1052
|
+
color: #fff;
|
1053
|
+
border: none;
|
1054
|
+
padding: 8px 16px;
|
1055
|
+
border-radius: 4px;
|
1056
|
+
cursor: pointer;
|
1057
|
+
}
|
1058
|
+
|
1059
|
+
.close-button {
|
1060
|
+
background: none;
|
1061
|
+
border: none;
|
1062
|
+
font-size: 22px;
|
1063
|
+
color: var(--text-light);
|
1064
|
+
cursor: pointer;
|
1065
|
+
padding: 0;
|
1066
|
+
display: flex;
|
1067
|
+
align-items: center;
|
1068
|
+
justify-content: center;
|
1069
|
+
width: 32px;
|
1070
|
+
height: 32px;
|
1071
|
+
border-radius: 50%;
|
1072
|
+
transition: all 0.2s;
|
1073
|
+
}
|
1074
|
+
|
1075
|
+
.close-button:hover {
|
1076
|
+
background-color: var(--gray-200);
|
1077
|
+
color: var(--text);
|
1078
|
+
}
|
1079
|
+
|
1080
|
+
.thank-you {
|
1081
|
+
text-align: center;
|
1082
|
+
}
|
1083
|
+
|
1084
|
+
.form-group {
|
1085
|
+
margin-bottom: 20px;
|
1086
|
+
}
|
1087
|
+
|
1088
|
+
.modal-footer {
|
1089
|
+
padding: 15px 25px 20px;
|
1090
|
+
text-align: right;
|
1091
|
+
}
|
1092
|
+
|
1093
|
+
.form-label {
|
1094
|
+
display: block;
|
1095
|
+
margin-bottom: 8px;
|
1096
|
+
font-weight: 500;
|
1097
|
+
color: #2d3748;
|
1098
|
+
}
|
1099
|
+
|
1100
|
+
.form-input {
|
1101
|
+
width: 100%;
|
1102
|
+
padding: 12px 15px;
|
1103
|
+
border: 1px solid #e2e8f0;
|
1104
|
+
border-radius: 8px;
|
1105
|
+
font-size: 15px;
|
1106
|
+
color: #2d3748;
|
1107
|
+
transition: all 0.2s;
|
1108
|
+
box-sizing: border-box;
|
1109
|
+
}
|
1110
|
+
|
1111
|
+
.form-input:focus {
|
1112
|
+
outline: none;
|
1113
|
+
border-color: #4353ff;
|
1114
|
+
box-shadow: 0 0 0 3px rgba(67, 83, 255, 0.2);
|
1115
|
+
}
|
1116
|
+
|
1117
|
+
.modal-title {
|
1118
|
+
font-size: 18px;
|
1119
|
+
font-weight: 600;
|
1120
|
+
margin: 0;
|
1121
|
+
color: var(--text);
|
1122
|
+
}
|
1123
|
+
|
1124
|
+
.modal-header {
|
1125
|
+
padding: 20px 25px;
|
1126
|
+
border-bottom: 1px solid var(--gray-200);
|
1127
|
+
display: flex;
|
1128
|
+
justify-content: space-between;
|
1129
|
+
align-items: center;
|
1130
|
+
}
|
1131
|
+
|
1132
|
+
/* Thank you message */
|
1133
|
+
.thank-you {
|
1134
|
+
text-align: center;
|
1135
|
+
padding: 30px 20px;
|
1136
|
+
background-color: #fff;
|
1137
|
+
border-radius: 22px;
|
1138
|
+
}
|
1139
|
+
|
1140
|
+
.thank-you-icon {
|
1141
|
+
width: 60px;
|
1142
|
+
height: 60px;
|
1143
|
+
background-color: #48bb78;
|
1144
|
+
color: white;
|
1145
|
+
border-radius: 50%;
|
1146
|
+
display: flex;
|
1147
|
+
align-items: center;
|
1148
|
+
justify-content: center;
|
1149
|
+
margin: 0 auto 20px;
|
1150
|
+
font-size: 30px;
|
1151
|
+
}
|
1152
|
+
|
1153
|
+
.thank-you-title {
|
1154
|
+
font-weight: 600;
|
1155
|
+
font-size: 20px;
|
1156
|
+
margin-bottom: 10px;
|
1157
|
+
}
|
1158
|
+
|
1159
|
+
.thank-you-message {
|
1160
|
+
color: var(--text-light);
|
1161
|
+
margin-bottom: 25px;
|
1162
|
+
}
|