@magicfeedback/native 2.1.2-beta.7 → 2.1.3

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.
@@ -1 +1,838 @@
1
1
 
2
+ .magicfeedback-container {
3
+ width: 100%;
4
+ }
5
+
6
+
7
+ .magicfeedback-success-message,
8
+ .magicfeedback-info-message,
9
+ .magicfeedback-start-message,
10
+ .magicfeedback-container{
11
+ animation-duration: 0.5s;
12
+ animation-name: animate-fade;
13
+ animation-delay: 0.25s;
14
+ animation-fill-mode: backwards;
15
+
16
+ font-style: normal;
17
+ text-align: justify;
18
+ font-weight: 400;
19
+ font-size: 1.2rem;
20
+ color: #475569;
21
+ line-height: 1.5;
22
+ }
23
+
24
+ @keyframes animate-fade {
25
+ 0% { opacity: 0; }
26
+ 100% { opacity: 1; }
27
+ }
28
+
29
+ .magicfeedback-form {
30
+ display: flex;
31
+ flex-direction: column;
32
+ justify-content: flex-start;
33
+ align-items: center;
34
+ width: 100%;
35
+ }
36
+ .magicfeedback-questions {
37
+ display: flex;
38
+ flex-direction: column;
39
+ justify-content: flex-start;
40
+ align-items: flex-start;
41
+ width: 100%;
42
+ }
43
+
44
+ .magicfeedback-div {
45
+ display: flex;
46
+ flex-direction: column;
47
+ justify-content: flex-start;
48
+ align-items: flex-start;
49
+ margin-bottom: 10px;
50
+ width: 100%;
51
+ }
52
+
53
+ .magicfeedback-label {
54
+ margin-bottom: 25px;
55
+ margin-top: 20px;
56
+ font-weight: 400;
57
+ font-family: inherit;
58
+ font-size: 1.2rem;
59
+ color: #212529;
60
+ text-align: start;
61
+ word-wrap: break-word;
62
+ white-space: normal;
63
+
64
+ }
65
+
66
+ .magicfeedback-checkbox {
67
+ display: flex;
68
+ flex-direction: column;
69
+ flex-wrap: wrap;
70
+ width: 100%;
71
+ }
72
+
73
+ .magicfeedback-checkbox-container {
74
+ display: flex;
75
+ flex-direction: row;
76
+ justify-content: flex-start;
77
+ align-items: center;
78
+ margin-bottom: 5px;
79
+ margin-top: 5px;
80
+ }
81
+
82
+ .magicfeedback-radio {
83
+ display: flex;
84
+ flex-direction: column;
85
+ justify-content: flex-start;
86
+ flex-wrap: wrap;
87
+ width: 100%;
88
+ margin-right: 5px;
89
+ padding: 5px;
90
+ }
91
+
92
+ .magicfeedback-checkbox-container,
93
+ .magicfeedback-radio-container {
94
+ display: flex;
95
+ flex-direction: row;
96
+ justify-content: flex-start;
97
+ align-items: center;
98
+ margin: 5px;
99
+ padding: 5px 0;
100
+ background-color: #fff;
101
+ border-radius: 5px;
102
+ box-shadow: 0 0 3px #ccc;
103
+ }
104
+
105
+ input::-webkit-outer-spin-button,
106
+ input::-webkit-inner-spin-button {
107
+ -webkit-appearance: none;
108
+ -moz-appearance: textfield;
109
+ }
110
+
111
+ .magicfeedback-checkbox input[type="checkbox"] {
112
+ margin-right: 5px;
113
+ margin-left: 5px;
114
+ width: 20px;
115
+ height: 20px;
116
+ cursor: pointer;
117
+ }
118
+
119
+
120
+ .magicfeedback-checkbox label,
121
+ .magicfeedback-radio-container label {
122
+ margin-left: 5px;
123
+ font-weight: 400;
124
+ font-family: inherit;
125
+ font-size: 16px;
126
+ color: #212529;
127
+ text-align: start;
128
+ width: 100%;
129
+ }
130
+
131
+ p {
132
+ margin-bottom: 0px;
133
+ font-size: 12px;
134
+ }
135
+
136
+ h2 {
137
+ line-height: 1.66;
138
+ margin: 0;
139
+ padding: 0;
140
+ font-weight: 900;
141
+ color: #222;
142
+ font-family: 'Montserrat';
143
+ font-size: 18px;
144
+ text-transform: uppercase;
145
+ text-align: center;
146
+ margin-bottom: 40px;
147
+ }
148
+
149
+ h6 {
150
+ margin-bottom: 1rem;
151
+ }
152
+
153
+ input[type="date"],
154
+ input[type="text"],
155
+ input[type="number"],
156
+ input[type="email"],
157
+ input[type="password"],
158
+ textarea,
159
+ select {
160
+ box-sizing: border-box;
161
+ padding: 10px;
162
+ margin: 10px 0;
163
+ width: 100%;
164
+ border: 2px solid #ccc; /* Default border color - you can customize this */
165
+ border-radius: 5px;
166
+ font-size: 18px;
167
+ outline: none;
168
+ transition: border-color 0.3s ease;
169
+ min-height: 50px;
170
+ font-family: inherit;
171
+ -webkit-appearance: none;
172
+ }
173
+
174
+ select {
175
+ background-image: linear-gradient(45deg, transparent 50%, gray 50%),
176
+ linear-gradient(135deg, gray 50%, transparent 50%),
177
+ linear-gradient(to right, #ccc, #ccc);
178
+ background-position: calc(100% - 20px) calc(1em + 2px),
179
+ calc(100% - 15px) calc(1em + 2px),
180
+ calc(100% - 2.5em) 0.5em;
181
+ background-size: 5px 5px,
182
+ 5px 5px,
183
+ 1px 1.5em;
184
+ background-repeat: no-repeat;
185
+ }
186
+
187
+ .magicfeedback-boolean-container {
188
+ display: flex;
189
+ flex-direction: row;
190
+ justify-content: flex-start;
191
+ align-items: center;
192
+ margin: 10px 0;
193
+ width: 100%;
194
+ }
195
+
196
+ .magicfeedback-boolean-container label {
197
+ margin-left: 10px;
198
+ font-weight: 400;
199
+ font-size: 16px;
200
+ width: 100%;
201
+ padding-top: 5px;
202
+ }
203
+
204
+ .magicfeedback-boolean-option {
205
+ margin-right: 10px;
206
+ margin-left: 10px;
207
+ width: 100%;
208
+ height: 38px;
209
+ border-radius: 8px;
210
+ font-size: 16px;
211
+ cursor: pointer;
212
+ border: 1px solid #ced4da !important;
213
+ }
214
+
215
+ .magicfeedback-boolean-option label {
216
+ font-weight: 400;
217
+ font-size: 16px;
218
+ color: #475569;
219
+ cursor: pointer;
220
+ width: 100%;
221
+ height: 100%;
222
+ display: flex;
223
+ justify-content: center;
224
+ align-items: center;
225
+ border-radius: inherit;
226
+ }
227
+
228
+ .magicfeedback-boolean-option input[type=radio] + label:hover {
229
+ color: #007bff;
230
+ }
231
+
232
+ .magicfeedback-boolean-option input[type=radio]:checked + label {
233
+ color: #007bff;
234
+ background-color: #cadff8;
235
+ }
236
+
237
+ input[type="radio"] {
238
+ padding: 20px;
239
+ margin: 10px 0 10px 15px;
240
+ width: 40px;
241
+ background-color: #fff;
242
+ box-shadow: none;
243
+ }
244
+
245
+ /* Style for focused input/select */
246
+ input:focus, select:focus {
247
+ border-color: #4CAF50; /* Highlight color when focused - you can customize this */
248
+ }
249
+
250
+ /* Style for invalid input (example: validation error) */
251
+ input.error, select.error {
252
+ border-color: #ff3333; /* Red color for error state - you can customize this */
253
+ }
254
+
255
+ .magicfeedback-action-container {
256
+ display: flex;
257
+ flex-direction: row;
258
+ justify-content: space-between;
259
+ align-items: center;
260
+ margin-top: 10px;
261
+ width: 100%;
262
+ }
263
+
264
+ .magicfeedback-action-container .magicfeedback-submit {
265
+ cursor: pointer;
266
+ padding: 10px;
267
+ margin: 10px 0;
268
+ width: 100px;
269
+ border-radius: 8px;
270
+ font-size: 16px;
271
+ outline: none;
272
+ transition: border-color 0.3s ease;
273
+ background-color: #1E293B;
274
+ color: white;
275
+ }
276
+
277
+ .magicfeedback-action-container .magicfeedback-back {
278
+ cursor: pointer;
279
+ padding: 10px;
280
+ margin: 10px 0;
281
+ width: 100px;
282
+ border: 0;
283
+ border-radius: 8px;
284
+ font-size: 16px;
285
+ outline: none;
286
+ transition: border-color 0.3s ease;
287
+ background-color: transparent;
288
+ color: #212529;
289
+ }
290
+
291
+
292
+
293
+ /* Rating styles */
294
+ .magicfeedback-rating {
295
+ width: 100%;
296
+ }
297
+
298
+ .magicfeedback-rating-container {
299
+ display: flex;
300
+ flex-direction: row;
301
+ justify-content: space-around;
302
+ flex-wrap: wrap;
303
+ align-items: center;
304
+
305
+ margin: 15px 5px;
306
+ padding: 0;
307
+
308
+ list-style: none;
309
+ font-size: 1.5rem;
310
+ cursor: pointer;
311
+ user-select: none;
312
+ -webkit-user-select: none;
313
+ -moz-user-select: none;
314
+ -ms-user-select: none;
315
+ }
316
+
317
+ .magicfeedback-rating-placeholder-value,
318
+ .magicfeedback-rating-placeholder{
319
+ text-align: center;
320
+ align-content: center;
321
+ justify-content: center;
322
+ text-wrap: wrap;
323
+ }
324
+
325
+ .magicfeedback-rating-option {
326
+ margin: 0 0.5rem;
327
+ padding: 0;
328
+ }
329
+
330
+ @media (max-width: 1024px) {
331
+ .magicfeedback-rating-option {
332
+ margin: 10px 0;
333
+ padding: 0;
334
+ width: 20%;
335
+ display: flex;
336
+ justify-content: center;
337
+ }
338
+
339
+ .magicfeedback-rating-placeholder-value {
340
+ font-size: 0.75rem;
341
+ margin-bottom: 1px;
342
+ }
343
+ .magicfeedback-rating-placeholder{
344
+ justify-content: center;
345
+ }
346
+
347
+ .magicfeedback-rating-container {
348
+ flex-wrap: wrap;
349
+ justify-content: flex-start;
350
+ }
351
+ }
352
+
353
+
354
+ .magicfeedback-rating-option-label-container {
355
+ display: flex;
356
+ flex-direction: column;
357
+ }
358
+
359
+
360
+ .magicfeedback-rating-option-label-container label {
361
+ display: inline-block;
362
+ text-align: center;
363
+ margin-bottom: 0;
364
+ font-weight: 600;
365
+ font-size: 18px;
366
+ color: #475569;
367
+ }
368
+
369
+ .magicfeedback-rating-option-label-container input[type=radio] {
370
+ position: absolute;
371
+ opacity: 0;
372
+ width: 0;
373
+ height: 0;
374
+ }
375
+
376
+ /* IMAGE STYLES */
377
+ .magicfeedback-rating-option-label-container input[type=radio] + img {
378
+ cursor: pointer;
379
+ height: 48px;
380
+ width: 48px;
381
+ }
382
+
383
+ /* LABEL STYLES */
384
+ .magicfeedback-rating-option-label-container input[type=radio] + label {
385
+ cursor: pointer;
386
+ }
387
+
388
+ /* CHECKED STYLES */
389
+ .magicfeedback-rating-option-label-container input[type=radio]:checked + img {
390
+ box-shadow: #007bff 0px 1px 4px, #007BFFA0 0px 0px 0px 2px;
391
+ border-radius: 50%;
392
+ }
393
+
394
+ .magicfeedback-rating-number {
395
+ width: 100%;
396
+ }
397
+ .magicfeedback-rating-container,
398
+ .magicfeedback-rating-number-container {
399
+ display: flex;
400
+ flex-direction: row;
401
+ justify-content: space-between;
402
+ align-items: center;
403
+
404
+ margin: 15px 0;
405
+ padding: 0;
406
+
407
+ list-style: none;
408
+ font-size: 1.5rem;
409
+ cursor: pointer;
410
+ user-select: none;
411
+ -webkit-user-select: none;
412
+ -moz-user-select: none;
413
+ -ms-user-select: none;
414
+ }
415
+
416
+ .magicfeedback-rating-number-option {
417
+ display: flex;
418
+ flex-direction: row;
419
+ justify-content: flex-start;
420
+ align-items: center;
421
+ margin: 5px;
422
+ padding: 0;
423
+ list-style: none;
424
+ font-size: 1.5rem;
425
+ cursor: pointer;
426
+ user-select: none;
427
+ -webkit-user-select: none;
428
+ -moz-user-select: none;
429
+ -ms-user-select: none;
430
+ width: 100%;
431
+ }
432
+
433
+ .magicfeedback-rating-number-option-row{
434
+ max-width: 100% !important;
435
+ }
436
+
437
+ .magicfeedback-rating-number-top-placeholder,
438
+ .magicfeedback-rating-number-bottom-placeholder{
439
+ text-align: center !important;
440
+ align-content: center;
441
+ justify-content: center;
442
+ text-wrap: wrap;
443
+
444
+ font-size: 15px;
445
+ color: #475569;
446
+
447
+ width: 100%;
448
+ margin: auto;
449
+ }
450
+
451
+ @media (min-width: 650px) {
452
+ .magicfeedback-rating-number-option-row +.magicfeedback-rating-number-container-ltr:first-child,
453
+ .magicfeedback-rating-number-option-row + +.magicfeedback-rating-number-container-rtl:last-child {
454
+ margin-left: 0;
455
+ width: calc(100% - 10px);
456
+ }
457
+
458
+ .magicfeedback-rating-number-option-row +.magicfeedback-rating-number-container-rtl:first-child,
459
+ .magicfeedback-rating-number-option-row + +.magicfeedback-rating-number-container-ltr:last-child {
460
+ margin-right: 0;
461
+ width: calc(100% - 10px);
462
+ }
463
+ }
464
+
465
+
466
+ .magicfeedback-rating-number-option-label-container {
467
+ display: flex;
468
+ flex-direction: column;
469
+ align-items: center;
470
+ justify-content: center;
471
+ width: 100%;
472
+ height: 100%;
473
+ }
474
+
475
+ .magicfeedback-rating-number-option-label-container label {
476
+ display: flex;
477
+ align-items: center;
478
+ justify-content: center;
479
+ white-space: nowrap;
480
+ overflow: hidden;
481
+ text-overflow: ellipsis;
482
+ margin: 0 10px;
483
+ font-weight: 600;
484
+ font-size: 14px;
485
+ color: #475569;
486
+ cursor: pointer;
487
+ width: 100%;
488
+ height: 100%;
489
+ min-height: 50px;
490
+ text-align: center;
491
+ padding: 0;
492
+ border-radius: 4px;
493
+ border: 1px solid #ced4da;
494
+ background-color: rgba(246, 246, 246, 0.3);
495
+ transition: background-color 0.15s ease-in-out;
496
+ }
497
+
498
+ .magicfeedback-rating-number-option-label-container input[type=radio] {
499
+ position: absolute;
500
+ opacity: 0;
501
+ width: 0;
502
+ height: 0;
503
+ }
504
+
505
+ .magicfeedback-rating-number-option-label-container input[type=radio] + label {
506
+ cursor: pointer;
507
+ }
508
+
509
+ .magicfeedback-rating-number-option-label-container input[type=radio] + label:hover,
510
+ .magicfeedback-rating-number-option-label-container input[type=radio]:checked + label {
511
+ color: #007bff;
512
+ border: 1px solid #007bff;
513
+ background-color: rgba(86, 168, 253, 0.29);
514
+ }
515
+
516
+ .magicfeedback-rating-number-container-column{
517
+ align-items: flex-start !important;
518
+ }
519
+
520
+ @media (max-width: 650px) {
521
+ .magicfeedback-rating-number-container-ltr {
522
+ justify-content: center;
523
+ flex-wrap: wrap;
524
+ }
525
+
526
+ .magicfeedback-rating-number-container-rtl {
527
+ justify-content: center;
528
+ flex-wrap: wrap-reverse;
529
+ }
530
+
531
+ .magicfeedback-rating-number-option {
532
+ max-width: 100%;
533
+ height: 55px;
534
+ margin: 5px 0;
535
+ }
536
+ }
537
+
538
+ .magicfeedback-rating-star {
539
+ width: 100%;
540
+ }
541
+
542
+ .magicfeedback-rating-star-container {
543
+ display: flex !important;
544
+ flex-direction: row !important;
545
+ justify-content: center !important;
546
+ align-items: center !important;
547
+ flex-wrap: wrap;
548
+ margin: 15px 5px;
549
+ padding: 0;
550
+ list-style: none;
551
+ font-size: 1.5rem;
552
+ cursor: pointer;
553
+ user-select: none;
554
+ -webkit-user-select: none;
555
+ -moz-user-select: none;
556
+ -ms-user-select: none;
557
+ }
558
+
559
+ .magicfeedback-rating-star-option:not(:checked) > .rating__star {
560
+ float: right;
561
+ width: 1em;
562
+ overflow: hidden;
563
+ white-space: nowrap;
564
+ cursor: pointer;
565
+ font-size: 30px;
566
+ color: #ccc;
567
+ margin: 0 10px;
568
+ }
569
+
570
+ .magicfeedback-rating-star-option:not(:checked) > .rating__star:hover,
571
+ .magicfeedback-rating-star-option:not(:checked) > .rating__star:hover ~ span {
572
+ color: #deb217 !important;
573
+ }
574
+
575
+ .magicfeedback-rating-star-selected {
576
+ color: #ffc700 !important;
577
+ }
578
+
579
+
580
+ /* Style for multiple choice image */
581
+ .magicfeedback-image-option-label-container:hover {
582
+ cursor: pointer;
583
+ border: 0 !important;
584
+ }
585
+
586
+ .magicfeedback-image-option-label-container input[type=radio]:checked + img,
587
+ .magicfeedback-image-option-label-container input[type=checkbox]:checked + img {
588
+ border: 1px solid #007bff !important;
589
+ box-shadow: 0 0 3px #007bff !important;
590
+ }
591
+
592
+ .magicfeedback-image-option-label-container input[type=radio] + img,
593
+ .magicfeedback-image-option-label-container input[type=checkbox] + img {
594
+ border: 1px solid transparent !important;
595
+ }
596
+
597
+ .magicfeedback-image-option-label-container{
598
+ margin: 10px !important;
599
+ height: calc(100% - 20px) !important;
600
+ width: calc(100% - 20px) !important;
601
+ }
602
+
603
+ .magicfeedback-multiple-choice-image-option {
604
+ display: flex;
605
+ height: auto !important;
606
+ box-shadow: 0 0 3px #ccc;
607
+ }
608
+
609
+ .magicfeedback-multiple-choice-image-label {
610
+ font-size: 1rem;
611
+ }
612
+
613
+ .magicfeedback-consent-container {
614
+ display: flex;
615
+ flex-direction: row;
616
+ justify-content: flex-start;
617
+ align-items: center;
618
+ margin: 10px 0;
619
+ width: 100%;
620
+ }
621
+
622
+ .magicfeedback-consent-container label {
623
+ margin-left: 10px;
624
+ }
625
+
626
+ .magicfeedback-start-message-container {
627
+ /* ... add your start message container styles here ... */
628
+ }
629
+
630
+ .magicfeedback-success-message,
631
+ .magicfeedback-info-message,
632
+ .magicfeedback-start-message {
633
+ margin: 35px 5px;
634
+ }
635
+
636
+ .magicfeedback-success-message p,
637
+ .magicfeedback-info-message p,
638
+ .magicfeedback-start-message p {
639
+ font-style: normal;
640
+ text-align: start;
641
+ font-weight: 400;
642
+ font-size: 16px;
643
+ color: #475569;
644
+ line-height: 1.5;
645
+ }
646
+
647
+ .magicfeedback-success-message img,
648
+ .magicfeedback-info-message img,
649
+ .magicfeedback-start-message img {
650
+ width: 400px;
651
+ max-width: 80%;
652
+ height: auto;
653
+ margin: 10px auto;
654
+ }
655
+
656
+ .magicfeedback-counter,
657
+ .magicfeedback-point-system-total {
658
+ margin: 10px 0 0 0 !important;
659
+ display: flex !important;
660
+ justify-content: right !important;
661
+ align-items: center !important;
662
+ width: 100%;
663
+ }
664
+
665
+ .magicfeedback-skip-container {
666
+ background-color: transparent !important;
667
+ border: 0 !important;
668
+ color: #999999FF !important;
669
+ padding: 0 !important;
670
+ margin: 0 !important;
671
+ cursor: pointer !important;
672
+ font-size: 0.5em !important;
673
+ font-weight: 400 !important;
674
+ box-shadow: 0 0 0 !important;
675
+
676
+ &:hover {
677
+ color: #0066ff;
678
+ }
679
+ }
680
+
681
+ .magicfeedback-skip-container input[type=checkbox] {
682
+ border-color: #999999FF !important;
683
+ border: 0 !important;
684
+ cursor: pointer !important;
685
+
686
+ }
687
+
688
+ .magicfeedback-multi-question-matrix,
689
+ .magicfeedback-point-system,
690
+ .magicfeedback-priority-list {
691
+ width: 100% !important;
692
+ }
693
+
694
+ .magicfeedback-multi-question-matrix-container,
695
+ .magicfeedback-point-system-container,
696
+ .magicfeedback-priority-list-container {
697
+ width: 100% !important;
698
+ overflow-x: auto;
699
+ }
700
+
701
+ .magicfeedback-point-system-list,
702
+ .magicfeedback-priority-list-list,
703
+ .magicfeedback-multi-question-matrix-table {
704
+ width: 100% !important;
705
+ padding: 0 !important;
706
+ overflow-x: auto;
707
+ }
708
+
709
+ .magicfeedback-multi-question-matrix {
710
+ position: relative !important;
711
+ }
712
+
713
+ .magicfeedback-multi-question-matrix-container {
714
+ overflow: auto !important;
715
+ padding-bottom: 10px;
716
+ }
717
+
718
+ .magicfeedback-multi-question-matrix-label{
719
+ text-align: left !important;
720
+ }
721
+ .magicfeedback-priority-list-item {
722
+ display: flex;
723
+ flex-direction: row;
724
+ justify-content: space-between;
725
+ align-items: center;
726
+ padding: 10px 0 10px 10px;
727
+
728
+ border: 1px solid #ced4da;
729
+ border-radius: 5px;
730
+ margin: 10px 0 !important;
731
+ }
732
+
733
+ .magicfeedback-point-system-item {
734
+ height: 45px;
735
+ margin: 5px 0 !important;
736
+ }
737
+
738
+ .magicfeedback-point-system-item label,
739
+ .magicfeedback-priority-list-item-label {
740
+ font-family: inherit;
741
+ font-size: 18px !important;
742
+ color: #212529;
743
+ text-align: start;
744
+ word-wrap: break-word;
745
+ white-space: normal;
746
+ padding: 0 10px 0 0;
747
+ }
748
+
749
+ .magicfeedback-point-system-input-container {
750
+ padding: 0 10px 0 0;
751
+ border-radius: 5px;
752
+ font-size: 14px;
753
+ border: 1px solid #ced4da;
754
+ height: 42px;
755
+ margin: auto 0;
756
+ }
757
+
758
+ .magicfeedback-multi-question-matrix-table thead {
759
+ margin-bottom: 20px;
760
+ }
761
+
762
+ .magicfeedback-multi-question-matrix-table th{
763
+ text-align: center;
764
+ font-weight: 400 !important;
765
+ font-size: 1rem !important;
766
+ padding: 0 10px !important;
767
+ }
768
+
769
+ .magicfeedback-multi-question-matrix-table th,
770
+ .magicfeedback-multi-question-matrix-table td label,
771
+ .magicfeedback-priority-list-arrow-up,
772
+ .magicfeedback-priority-list-arrow-down {
773
+ font-style: normal !important;
774
+ font-weight: 400 !important;
775
+ font-size: 1rem !important;
776
+ color: #475569 !important;
777
+ cursor: pointer !important;
778
+ margin: 0 !important;
779
+ line-height: inherit;
780
+ }
781
+
782
+ .magicfeedback-multi-question-matrix-table tr {
783
+ align-items: center;
784
+ margin: 5px 0;
785
+ }
786
+
787
+ .magicfeedback-multi-question-matrix-row-tr{
788
+ border-radius: 5px;
789
+ margin: 10px 0 !important;
790
+ }
791
+
792
+ .magicfeedback-multi-question-matrix-row-tr:nth-child(odd) {
793
+ background-color: #f1f6f6; /* Light gray background for odd rows */
794
+ }
795
+
796
+ .magicfeedback-multi-question-matrix-row-tr:nth-child(even) {
797
+ background-color: #ffffff; /* White background for even rows */
798
+ }
799
+
800
+ .magicfeedback-multi-question-matrix-row-label {
801
+ text-align: left !important;
802
+ }
803
+
804
+ .magicfeedback-point-system-item span {
805
+ color: #475569 !important;
806
+ }
807
+
808
+ .magicfeedback-point-system-item input {
809
+ padding: 0;
810
+ margin: 0 !important;
811
+ width: auto !important;
812
+ min-width: 100px !important;
813
+ height: auto !important;
814
+ min-height: 42px;
815
+ cursor: pointer;
816
+ font-size: 14px;
817
+ text-align: center !important;
818
+ }
819
+
820
+ .magicfeedback-multi-question-matrix-table input {
821
+ margin: auto !important;
822
+ padding: 20px !important;
823
+ width: 100% !important;
824
+ height: 15px;
825
+ border: 1px solid #ced4da;
826
+ cursor: pointer;
827
+ }
828
+
829
+ .magicfeedback-image{
830
+ max-height: 400px !important;
831
+ height: auto !important;
832
+ max-width: 100% !important;
833
+ margin: 10px auto !important;
834
+ }
835
+
836
+ .magicfeedback-error{
837
+ margin-top: 5px;
838
+ }