vue-intergrall-plugins 1.0.1 → 1.0.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.
@@ -0,0 +1,3416 @@
1
+
2
+ .tg-container {
3
+ width: 100%;
4
+ max-width: 800px;
5
+ display: flex;
6
+ flex-direction: column;
7
+ overflow-x: hidden;
8
+ overflow-y: auto;
9
+ }
10
+
11
+ .tg-options {
12
+ width: 100%;
13
+ display: flex;
14
+ }
15
+ .tg-options.column {
16
+ flex-direction: column;
17
+ }
18
+ .tg-options h4 {
19
+ margin-right: 5px;
20
+ }
21
+
22
+ .ts-image-type {
23
+ display: flex;
24
+ align-items: center;
25
+ }
26
+
27
+ .ts-image-type img {
28
+ cursor: pointer;
29
+ }
30
+
31
+ .ts-image-type svg {
32
+ font-size: 25px;
33
+ cursor: pointer;
34
+ }
35
+
36
+ .ts-image-type .select-image {
37
+ color: #838383;
38
+ }
39
+
40
+ .color-red {
41
+ color: #e74c3c;
42
+ }
43
+
44
+ .color-blue {
45
+ color: #007bff;
46
+ }
47
+
48
+ .color-black {
49
+ color: #333;
50
+ }
51
+
52
+ .color-purple {
53
+ color: #a312a3;
54
+ }
55
+
56
+ .custom-tooltip-image {
57
+ display: flex;
58
+ justify-content: center;
59
+ align-items: center;
60
+ overflow: visible;
61
+ padding: 5px;
62
+ }
63
+
64
+ .custom-tooltip-image img {
65
+ max-width: 75px;
66
+ max-height: 75px;
67
+ }
68
+
69
+ .ts-button {
70
+ background-color: #fff;
71
+ border-radius: 10px;
72
+ display: flex;
73
+ justify-content: center;
74
+ align-items: center;
75
+ padding: 3px 15px;
76
+ transition: background-color 150ms ease-in-out;
77
+ }
78
+
79
+ .ts-button:hover {
80
+ background-color: rgb(253, 253, 253);
81
+ }
82
+
83
+ .tg-select {
84
+ flex: 1;
85
+ height: 34px;
86
+ overflow: hidden;
87
+ }
88
+ .tg-select .vs__dropdown-toggle {
89
+ background-color: #fff;
90
+ height: 34px;
91
+ overflow: hidden;
92
+ display: flex;
93
+ align-items: center;
94
+ }
95
+ .tg-select .vs__selected-options {
96
+ height: 34px;
97
+ overflow: hidden;
98
+ }
99
+ .tg-select .vs__selected-options > span {
100
+ white-space: nowrap;
101
+ text-overflow: ellipsis;
102
+ flex: 1;
103
+ }
104
+
105
+ .vs__dropdown-option.vs__dropdown-option--selected {
106
+ background-color: rgb(26, 95, 173) !important;
107
+ color: white;
108
+ }
109
+
110
+ .vs__dropdown-menu li {
111
+ padding: 10px 15px;
112
+ }
113
+
114
+ .vs__dropdown-option {
115
+ transition: background-color 150ms;
116
+ white-space: normal;
117
+ }
118
+ .vs__dropdown-option:nth-child(odd) {
119
+ background-color: #f1f1f1;
120
+ }
121
+ .vs__dropdown-option:hover,
122
+ .vs__dropdown-option:focus,
123
+ .vs__dropdown-option:active,
124
+ .vs__dropdown-option:focus,
125
+ .vs__dropdown-option--selected,
126
+ .vs__dropdown-option--highlight {
127
+ background-color: #5897fb !important;
128
+ color: #fff;
129
+ }
130
+
131
+ .tg-component {
132
+ width: 100%;
133
+ }
134
+
135
+ .ts-container {
136
+ width: 100%;
137
+ display: flex;
138
+ justify-content: space-between;
139
+ gap: 10px;
140
+ }
141
+
142
+ .ts-content {
143
+ --border-color: #ccc;
144
+ --background-color: #dff0d8;
145
+ --input-background-color: #fff;
146
+ --input-border-default: #007bff;
147
+ --input-border-error: #e74c3c;
148
+ --placeholder-color: #bbb;
149
+ --border-radius: 5px;
150
+
151
+ flex: 2;
152
+ font-size: 11.2px;
153
+ padding: 10px 0;
154
+ display: flex;
155
+ flex-direction: column;
156
+ }
157
+ .order-1 {
158
+ order: 1;
159
+ }
160
+ .custom-box-shadow-bottom {
161
+ box-shadow: 0px 3px 4px -3px rgba(0, 0, 0, 0.3);
162
+ }
163
+ .custom-border-gray {
164
+ border: 1px solid var(--border-color) !important;
165
+ }
166
+ .ts-content header,
167
+ .ts-content section,
168
+ .ts-content footer {
169
+ padding: 3px 5px;
170
+ background-color: var(--background-color);
171
+ }
172
+ .ts-content header,
173
+ .ts-content section {
174
+ border-right: 1px solid var(--border-color);
175
+ border-left: 1px solid var(--border-color);
176
+ }
177
+ .ts-content header {
178
+ border-top-left-radius: var(--border-radius);
179
+ border-top-right-radius: var(--border-radius);
180
+ border-top: 1px solid var(--border-color);
181
+ }
182
+ .ts-content header {
183
+ font-weight: 550;
184
+ }
185
+ .ts-content section {
186
+ line-height: 25px;
187
+ }
188
+ .ts-content section.margin-bottom {
189
+ border-bottom-left-radius: var(--border-radius);
190
+ border-bottom-right-radius: var(--border-radius);
191
+ border-bottom: 1px solid var(--border-color);
192
+ }
193
+ .ts-content footer,
194
+ .custom-footer-style {
195
+ border: 1px solid var(--border-color);
196
+ border-top: unset;
197
+ border-bottom-left-radius: var(--border-radius);
198
+ border-bottom-right-radius: var(--border-radius);
199
+ }
200
+ .ts-content input {
201
+ border: 1px solid transparent;
202
+ outline: 0;
203
+ font-size: 12.8px;
204
+ padding: 2.5px 5px;
205
+ background-color: var(--input-background-color);
206
+ }
207
+ .ts-content input::placeholder {
208
+ color: var(--placeholder-color);
209
+ }
210
+ .ts-content input.active,
211
+ .ts-content input:focus {
212
+ border: 1px solid var(--input-border-default);
213
+ }
214
+ .ts-content input.invalid {
215
+ border: 1px solid var(--input-border-error) !important;
216
+ }
217
+ .ts-content__var {
218
+ display: inline-block;
219
+ position: relative;
220
+ }
221
+
222
+ .ts-dropdown {
223
+ margin: 0;
224
+ padding: 0;
225
+ position: absolute;
226
+ top: 19px;
227
+ left: 0;
228
+ background: #eee;
229
+ width: 100%;
230
+ z-index: 1;
231
+ transition: all 150ms;
232
+ visibility: hidden;
233
+ opacity: 0;
234
+ list-style-type: none;
235
+ border: 1px solid #444;
236
+ border-top: unset;
237
+ }
238
+ .ts-dropdown li {
239
+ width: 100%;
240
+ opacity: 0.9;
241
+ cursor: pointer;
242
+ font-weight: 550;
243
+ padding: 2px 3px;
244
+ font-size: 12.8px;
245
+ transition: background-color 150ms;
246
+ }
247
+ .ts-dropdown li:hover,
248
+ .ts-dropdown li:focus-within,
249
+ .ts-dropdown li:focus {
250
+ opacity: 1;
251
+ background-color: #555;
252
+ color: #fff;
253
+ }
254
+ .ts-dropdown.visible {
255
+ visibility: visible;
256
+ opacity: 1;
257
+ }
258
+ .tg-btn {
259
+ width: auto;
260
+ display: flex;
261
+ justify-content: center;
262
+ align-items: center;
263
+ }
264
+ .tg-btn button {
265
+ border: unset;
266
+ display: block;
267
+ min-width: 180px;
268
+ height: 35px;
269
+ padding: 0 10px;
270
+ font-weight: 500;
271
+ background-color: #007bff;
272
+ color: #fff;
273
+ transition: transform 300ms ease-in-out;
274
+ user-select: none;
275
+ cursor: pointer;
276
+ box-shadow: inset 0 -2px rgba(0, 0, 0, 0.2);
277
+ opacity: 0.9;
278
+ border-radius: 2.5px;
279
+ }
280
+ .tg-btn button > svg {
281
+ margin-right: 5px;
282
+ color: #003166;
283
+ }
284
+ .tg-btn button:hover {
285
+ opacity: 1;
286
+ }
287
+ .tg-btn button:active {
288
+ opacity: 1;
289
+ box-shadow: inset 0 -1px rgba(0, 0, 0, 0.2);
290
+ -webkit-transform: translateY(1px);
291
+ -moz-transform: translateY(1px);
292
+ -o-transform: translateY(1px);
293
+ -ms-transform: translateY(1px);
294
+ transform: translateY(1px);
295
+ }
296
+ .tg-btn button:active {
297
+ opacity: 1;
298
+ box-shadow: inset 0 -1px rgba(0, 0, 0, 0.2);
299
+ -webkit-transform: translateY(1px);
300
+ -moz-transform: translateY(1px);
301
+ -o-transform: translateY(1px);
302
+ -ms-transform: translateY(1px);
303
+ transform: translateY(1px);
304
+ }
305
+ .tg-btn button:focus,
306
+ .tg-btn button:active {
307
+ outline: 2px solid black;
308
+ }
309
+ .tg-btn.small-btn {
310
+ width: auto;
311
+ margin: 0 5px;
312
+ }
313
+ .tg-btn.small-btn svg {
314
+ margin-right: 0;
315
+ }
316
+ .tg-btn.small-btn button {
317
+ min-width: 35px;
318
+ width: 35px;
319
+ padding: 0;
320
+ display: flex;
321
+ justify-content: center;
322
+ align-items: center;
323
+ }
324
+
325
+ .tm-container {
326
+ border: 1px solid var(--border-color);
327
+ border-radius: 5px;
328
+ display: flex;
329
+ }
330
+
331
+
332
+ .btn-red button {
333
+ background-color: red;
334
+ }
335
+
336
+ .btn-red svg {
337
+ color: rgb(182, 0, 0);
338
+ }
339
+
340
+ .container-btns {
341
+ display: flex;
342
+ flex-direction: column;
343
+ justify-content: center;
344
+ align-items: center;
345
+ gap: 10px;
346
+ }
347
+
348
+
349
+ .text-footer-container {
350
+ display: flex;
351
+ justify-content: center;
352
+ align-items: center;
353
+ flex-direction: column;
354
+ width: 100%;
355
+ position: relative;
356
+ }
357
+ .text-footer-container .text-footer {
358
+ min-height: 48px;
359
+ box-shadow: 0px 3px 7px -2px rgba(0, 0, 0, 0.45);
360
+ position: relative;
361
+ display: flex;
362
+ justify-content: center;
363
+ align-items: center;
364
+ border: 1px solid #ccc;
365
+ padding: 5px 2px 5px 5px;
366
+ border-radius: 5px;
367
+ }
368
+ .text-footer-container .text-footer.full {
369
+ width: 100%;
370
+ }
371
+ .text-footer-container .text-footer.almostFull {
372
+ width: 95%;
373
+ }
374
+ .text-footer-container .text-footer.medium {
375
+ width: 75%;
376
+ }
377
+ .text-footer-container.bigger .text-footer {
378
+ height: 80px;
379
+ }
380
+ .text-footer-container.bigger .text-footer > textarea {
381
+ font-size: 14px;
382
+ height: 75px;
383
+ max-height: 75px;
384
+ min-height: 75px;
385
+ }
386
+ .text-footer-container textarea {
387
+ margin: 0 5px;
388
+ border: unset;
389
+ flex: 1;
390
+ resize: none;
391
+ min-height: 30px;
392
+ max-height: 60px;
393
+ font-size: 14px;
394
+ font-family: inherit;
395
+ background: inherit;
396
+ }
397
+ .text-footer-container textarea:focus {
398
+ outline: unset;
399
+ }
400
+ .text-footer-container textarea::placeholder {
401
+ font-size: 12px;
402
+ }
403
+ .text-footer-container .text-footer-audio {
404
+ flex: 1;
405
+ display: flex;
406
+ justify-content: center;
407
+ align-items: center;
408
+ }
409
+ .text-footer-container audio {
410
+ flex: 1;
411
+ outline: unset;
412
+ width: auto;
413
+ height: 38px;
414
+ }
415
+ .text-footer-container .delete-audio {
416
+ display: flex;
417
+ justify-content: center;
418
+ align-items: center;
419
+ color: #e74c3c;
420
+ transition: background 300ms;
421
+ border-radius: 50%;
422
+ font-size: 16px;
423
+ padding: 10px;
424
+ cursor: pointer;
425
+ margin: 0 5px;
426
+ width: 31px;
427
+ height: 31px;
428
+ }
429
+ .text-footer-container .delete-audio:hover {
430
+ background-color: rgba(208, 0, 0, 0.2);
431
+ }
432
+ .text-footer-container .max-characters {
433
+ font-size: 9.2px;
434
+ z-index: 1;
435
+ color: #444;
436
+ position: relative;
437
+ top: 30px;
438
+ left: -30px;
439
+ }
440
+ .text-footer-container .max-characters.no-width {
441
+ width: 0;
442
+ }
443
+ .text-footer-container .text-footer-actions {
444
+ display: flex;
445
+ }
446
+ .text-footer-container .text-footer-actions.outside-buttons {
447
+ display: flex;
448
+ align-items: center;
449
+ justify-content: flex-end;
450
+ position: absolute;
451
+ top: -30px;
452
+ right: 35px;
453
+ background-color: #fafafa;
454
+ }
455
+ .text-footer-container .text-footer-actions .text-footer-actions--btn {
456
+ display: flex;
457
+ justify-content: center;
458
+ align-items: center;
459
+ color: #777;
460
+ border-radius: 50%;
461
+ transition: background 300ms;
462
+ padding: 10px;
463
+ font-size: 16px;
464
+ width: 36px;
465
+ height: 36px;
466
+ cursor: pointer;
467
+ margin-right: 2.5px;
468
+ }
469
+ .text-footer-container .text-footer-actions .text-footer-actions--btn:last-child {
470
+ margin-right: unset;
471
+ }
472
+ .text-footer-container .text-footer-actions .text-footer-actions--btn:hover {
473
+ background-color: rgba(0, 0, 0, 0.1);
474
+ }
475
+ .text-footer-container .text-footer-actions .text-footer-actions--btn.files-activated {
476
+ background-color: rgba(0, 0, 0, 0.1);
477
+ }
478
+ .text-footer-container .text-footer-actions .text-footer-actions--btn.audio-activated {
479
+ background-color: rgba(208, 0, 0, 0.7);
480
+ color: #fff;
481
+ }
482
+ .text-footer-container .text-footer-actions .text-footer-actions--btn.left-button {
483
+ position: absolute;
484
+ left: 0;
485
+ }
486
+ .text-footer-container .text-footer-hsm-container {
487
+ margin: 12px 0 7px 0;
488
+ }
489
+ .text-footer-container .text-footer-hsm-container.full {
490
+ width: 100%;
491
+ }
492
+ .text-footer-container .text-footer-hsm-container.almostFull {
493
+ width: 95%;
494
+ }
495
+ .text-footer-container .text-footer-hsm-container.medium {
496
+ width: 75%;
497
+ }
498
+ .text-footer-container .text-footer-hsm-container .text-footer-v-select {
499
+ border-radius: 5px;
500
+ margin-bottom: 5px;
501
+ }
502
+ .text-footer-container .text-footer-hsm-container .text-footer-select-03 {
503
+ display: flex;
504
+ align-items: center;
505
+ flex: 1;
506
+ width: 100%;
507
+ }
508
+ .text-footer-container
509
+ .text-footer-hsm-container
510
+ .text-footer-select-03
511
+ .text-footer-v-select {
512
+ flex: 1;
513
+ }
514
+ .text-footer-container
515
+ .text-footer-hsm-container
516
+ .text-footer-select-03
517
+ .text-footer--btn-select-03 {
518
+ transition-duration: 300ms;
519
+ user-select: none;
520
+ cursor: pointer;
521
+ box-shadow: inset 0 -3px rgba(0, 0, 0, 0.2);
522
+ opacity: 0.9;
523
+ border-radius: 2.5px;
524
+ display: flex;
525
+ justify-content: center;
526
+ align-items: center;
527
+ margin-left: 5px;
528
+ margin-bottom: 5px;
529
+ background-color: #f7fe72;
530
+ width: 32px;
531
+ height: 32px;
532
+ }
533
+ .text-footer-container
534
+ .text-footer-hsm-container
535
+ .text-footer-select-03
536
+ .text-footer--btn-select-03:hover {
537
+ opacity: 1;
538
+ }
539
+ .text-footer-container
540
+ .text-footer-hsm-container
541
+ .text-footer-select-03
542
+ .text-footer--btn-select-03:active {
543
+ opacity: 1;
544
+ box-shadow: inset 0 -1px rgba(0, 0, 0, 0.2);
545
+ -webkit-transform: translateY(1px);
546
+ -moz-transform: translateY(1px);
547
+ -o-transform: translateY(1px);
548
+ -ms-transform: translateY(1px);
549
+ transform: translateY(1px);
550
+ }
551
+ .text-footer-container
552
+ .text-footer-hsm-container
553
+ .text-footer-select-03
554
+ .text-footer--btn-select-03
555
+ svg {
556
+ font-size: 16px;
557
+ }
558
+ .text-footer-container .text-footer-files-container {
559
+ position: absolute;
560
+ right: 0;
561
+ top: -55px;
562
+ padding: 5px;
563
+ background-color: rgba(0, 0, 0, 0.4);
564
+ border-radius: 5px;
565
+ display: flex;
566
+ align-items: center;
567
+ justify-content: space-between;
568
+ z-index: 1;
569
+ }
570
+ .text-footer-container .text-footer-files-container.horizontal {
571
+ right: -55px;
572
+ flex-direction: column;
573
+ }
574
+ .text-footer-container .text-footer-files-container .files-btn {
575
+ transition-duration: 300ms;
576
+ transition-property: opacity;
577
+ opacity: 0.8;
578
+ cursor: pointer;
579
+ display: flex;
580
+ justify-content: center;
581
+ align-items: center;
582
+ border-radius: 10px;
583
+ padding: 3px;
584
+ width: 40px;
585
+ height: 40px;
586
+ font-size: 16px;
587
+ color: #fff;
588
+ }
589
+ .text-footer-container .text-footer-files-container .files-btn:hover {
590
+ opacity: 1;
591
+ }
592
+ .text-footer-container .text-footer-files-container .files-btn svg {
593
+ color: #fff;
594
+ }
595
+ .text-footer-container .text-footer-files-container .files-btn.images {
596
+ background-color: #9575cd;
597
+ margin-right: 5px;
598
+ }
599
+ .text-footer-container .text-footer-files-container .files-btn.images.margin-bottom {
600
+ margin-right: unset;
601
+ margin-bottom: 5px;
602
+ }
603
+ .text-footer-container .text-footer-files-container .files-btn.docs {
604
+ background-color: #7986cb;
605
+ }
606
+ .text-footer-container .text-footer-files-container .files-btn.system {
607
+ background-color: #49a349;
608
+ margin-left: 5px;
609
+ }
610
+ .text-footer-container .text-footer-files-container .files-btn.both {
611
+ font-size: 15.2px;
612
+ background-color: rgb(85, 85, 236);
613
+ flex-direction: column;
614
+ }
615
+ .text-footer-container .text-footer-files-container .files-btn.both svg:nth-child(1) {
616
+ transform: translateX(5px);
617
+ }
618
+ .text-footer-container .text-footer-files-container .files-btn.both svg:nth-child(2) {
619
+ transform: translateX(-5px);
620
+ }
621
+
622
+ .text-footer-container .text-footer-preview-container {
623
+ width: 100%;
624
+ cursor: default;
625
+ position: absolute;
626
+ left: 0;
627
+ background-color: #f1f1f1;
628
+ border: 2px solid #ccc;
629
+ border-bottom: unset;
630
+ border-top-left-radius: 2.5px;
631
+ border-top-right-radius: 2.5px;
632
+ }
633
+ .text-footer-container .text-footer-preview-container.isDoc {
634
+ top: -50px;
635
+ width: 100%;
636
+ height: 45px;
637
+ }
638
+ .text-footer-container .text-footer-preview-container.isImg,
639
+ .text-footer-container .text-footer-preview-container.isMultiple {
640
+ top: -205px;
641
+ width: 100%;
642
+ height: 200px;
643
+ }
644
+ .text-footer-container .text-footer-preview-container.isImg .text-footer-image-preview {
645
+ height: 170px;
646
+ }
647
+ .text-footer-container .text-footer-preview-container.isError {
648
+ top: -80px;
649
+ width: 100%;
650
+ height: 75px;
651
+ }
652
+
653
+ .text-footer-container .text-footer-alt {
654
+ margin-top: -12px;
655
+ width: 100%;
656
+ padding: 0 10px;
657
+ }
658
+ .text-footer-container .text-footer-alt .text-footer-out-session {
659
+ margin-top: 12px;
660
+ }
661
+ .text-footer-container .text-footer-alt .text-footer-sem-24h {
662
+ font-size: 12.8px;
663
+ text-align: right;
664
+ font-weight: 600;
665
+ letter-spacing: -0.5px;
666
+ color: #dd7f0c;
667
+ margin-top: 5px;
668
+ position: absolute;
669
+ right: 0;
670
+ }
671
+ .text-footer-container .text-footer-alt .sem-templates {
672
+ margin-top: 10px;
673
+ font-size: 12.8px;
674
+ text-align: right;
675
+ font-weight: 600;
676
+ letter-spacing: -0.5px;
677
+ color: #921e12;
678
+ }
679
+ .text-footer-container .text-footer-alt .text-footer-templates {
680
+ position: relative;
681
+ width: 100%;
682
+ }
683
+ .text-footer-container
684
+ .text-footer-alt
685
+ .text-footer-templates
686
+ .text-footer-group-selection {
687
+ width: 100%;
688
+ display: flex;
689
+ align-items: center;
690
+ }
691
+ .text-footer-container
692
+ .text-footer-alt
693
+ .text-footer-templates
694
+ .text-footer-group-selection
695
+ h4 {
696
+ margin-right: 5px;
697
+ }
698
+ .text-footer-container
699
+ .text-footer-alt
700
+ .text-footer-templates
701
+ .text-footer-group-selection
702
+ .sm__select {
703
+ flex: 1;
704
+ }
705
+
706
+ .vs__dropdown-menu {
707
+ font-size: 13.6px !important;
708
+ }
709
+
710
+ .emoji-mart-anchor,
711
+ .emoji-mart-emoji span {
712
+ cursor: pointer !important;
713
+ }
714
+
715
+ .emoji-mart {
716
+ z-index: 2 !important;
717
+ }
718
+
719
+ .emoji-mart-scroll {
720
+ overflow-x: hidden;
721
+ }
722
+
723
+
724
+ .emoji-text-container {
725
+ position: relative;
726
+ }
727
+ .emoji-text-container .emoji-text-btn {
728
+ font-size: 19.2px;
729
+ cursor: pointer;
730
+ }
731
+
732
+
733
+ .box-shadow {
734
+ -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
735
+ 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
736
+ -moz-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
737
+ 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
738
+ box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14),
739
+ 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
740
+ }
741
+
742
+ .sm-emoji-picker {
743
+ width: 310px;
744
+ z-index: 2;
745
+ border: 1px solid #ccc;
746
+ border-radius: 5px;
747
+ background-color: #fff;
748
+ display: flex;
749
+ flex-direction: column;
750
+ }
751
+
752
+ .sm-emoji-header {
753
+ width: 100%;
754
+ display: flex;
755
+ align-items: center;
756
+ justify-content: space-between;
757
+ margin: 10px 0;
758
+ border-bottom: 1px solid #ccc;
759
+ }
760
+
761
+ .sm-emoji-link {
762
+ padding: 0 5px 5px 5px;
763
+ display: flex;
764
+ justify-content: center;
765
+ align-items: center;
766
+ cursor: pointer;
767
+ opacity: 0.9;
768
+ transition: all 200ms;
769
+ border-bottom: 2px solid transparent;
770
+ }
771
+ .sm-emoji-link a {
772
+ margin: 0;
773
+ padding: 0;
774
+ fill: #999;
775
+ }
776
+ .sm-emoji-link:hover a > svg,
777
+ .sm-emoji-link.active a > svg {
778
+ opacity: 1;
779
+ fill: #666;
780
+ }
781
+ .sm-emoji-link:hover a > svg[stroke-linecap],
782
+ .sm-emoji-link.active a > svg[stroke-linecap] {
783
+ opacity: 1;
784
+ fill: transparent;
785
+ stroke: #666;
786
+ }
787
+ .sm-emoji-link.active {
788
+ border-bottom: 2px solid #666;
789
+ }
790
+
791
+ .sm-emoji-scroll {
792
+ width: 100%;
793
+ height: calc(100% - 52px);
794
+ max-height: calc(100% - 52px);
795
+ scroll-behavior: smooth;
796
+ overflow-y: auto;
797
+ overflow-x: hidden;
798
+ scrollbar-color: #888 rgba(0, 0, 0, 0.2);
799
+ scrollbar-width: 8px;
800
+ position: relative;
801
+ }
802
+ .sm-emoji-scroll::-webkit-scrollbar {
803
+ width: 8px;
804
+ }
805
+
806
+ .sm-emoji-scroll::-webkit-scrollbar-track {
807
+ background-color: rgba(0, 0, 0, 0.2);
808
+ }
809
+
810
+ .sm-emoji-scroll::-webkit-scrollbar-thumb {
811
+ transition-duration: 0.5s;
812
+ background-color: #666;
813
+ }
814
+
815
+ .sm-emoji-scroll::-webkit-scrollbar-thumb:hover {
816
+ background-color: #555;
817
+ }
818
+
819
+ .sm-emoji-search {
820
+ width: 100%;
821
+ display: flex;
822
+ align-items: center;
823
+ justify-content: center;
824
+ position: sticky;
825
+ top: 0;
826
+ z-index: 1;
827
+ background: #fff;
828
+ padding-bottom: 10px;
829
+ }
830
+ .sm-emoji-search > input {
831
+ width: 90%;
832
+ outline: none;
833
+ border: 1px solid #ccc;
834
+ border-radius: 2.5px;
835
+ padding: 5px 10px;
836
+ transition: border 200ms;
837
+ }
838
+ .sm-emoji-search > input:focus,
839
+ .sm-emoji-search > input:active,
840
+ .sm-emoji-search > input:hover {
841
+ outline: none;
842
+ border: 1px solid #999;
843
+ }
844
+ .sm-emoji-search.sticky {
845
+ position: fixed;
846
+ width: 310px;
847
+ background-color: #fff;
848
+ }
849
+
850
+ .sm-emoji-selection {
851
+ width: 100%;
852
+ margin-bottom: 10px;
853
+ }
854
+ .sm-emoji-title {
855
+ width: 100%;
856
+ display: flex;
857
+ justify-content: flex-start;
858
+ align-items: center;
859
+ background-color: #f7f7f7;
860
+ padding: 5px 0;
861
+ white-space: nowrap;
862
+ text-overflow: ellipsis;
863
+ overflow: hidden;
864
+ }
865
+ .sm-emoji-title svg {
866
+ margin: 0 5px;
867
+ }
868
+
869
+ .sm-emoji-group {
870
+ width: 100%;
871
+ display: flex;
872
+ flex-wrap: wrap;
873
+ font-size: 22px;
874
+ }
875
+
876
+ .sm-emoji-item {
877
+ cursor: pointer;
878
+ opacity: 0.8;
879
+ transition: opacity 200ms;
880
+ margin: 3.5px;
881
+ }
882
+ .sm-emoji-item:hover {
883
+ opacity: 1;
884
+ }
885
+
886
+
887
+ .box-shadow {
888
+ -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
889
+ -moz-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
890
+ box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
891
+ }
892
+
893
+ .ov__skeleton--animation {
894
+ animation: skeleton-loading 1s linear infinite alternate;
895
+ }
896
+ @keyframes skeleton-loading {
897
+ 0% {
898
+ background-color: #F7F7F7;
899
+ }
900
+ 70% {
901
+ background-color: #EDEDED;
902
+ }
903
+ 100% {
904
+ background-color: #EDEDED;
905
+ }
906
+ }
907
+
908
+ .skeleton-picker {
909
+ position: absolute;
910
+ width: 100%;
911
+ height: 100%;
912
+ z-index: 91;
913
+ border-radius: 5px;
914
+ background-color: #FFF;
915
+ border: 1px solid #CCC;
916
+ }
917
+
918
+ .skeleton-options {
919
+ width: 100%;
920
+ height: 48px;
921
+ display: flex;
922
+ justify-content: space-between;
923
+ align-items: center;
924
+ padding: 0 15px;
925
+ border-bottom: 1px solid #CCC;
926
+ }
927
+ .skeleton-options .opt {
928
+ width: 25px;
929
+ height: 50%;
930
+ }
931
+
932
+ .skeleton-input {
933
+ width: calc(100% - 30px);
934
+ height: 25px;
935
+ margin: 7px 15px;
936
+ border-radius: 2.5px;
937
+ }
938
+
939
+ .skeleton-label {
940
+ margin: 15px 0;
941
+ width: 100%;
942
+ height: 30px;
943
+ }
944
+
945
+ .skeleton-list {
946
+ width: 100%;
947
+ padding-left: 7.5px;
948
+ display: flex;
949
+ align-items: center;
950
+ flex-wrap: wrap;
951
+ }
952
+
953
+ .skeleton-list .opt {
954
+ margin: 0 5px 15px 6px;
955
+ width: 25px;
956
+ height: 25px;
957
+ }
958
+
959
+
960
+ .req-loader-container {
961
+ position: absolute;
962
+ z-index: 1;
963
+ top: 0;
964
+ left: 0;
965
+ width: 100%;
966
+ height: 100%;
967
+ display: flex;
968
+ justify-content: center;
969
+ align-items: center;
970
+ }
971
+ .req-loader-container.light-bg {
972
+ background-color: rgba(0, 0, 0, 0.3);
973
+ border-radius: inherit;
974
+ }
975
+ .req-loader-container.align-right {
976
+ justify-content: flex-end;
977
+ }
978
+ .req-loader-container.align-right .req-loader {
979
+ margin-right: 15px;
980
+ }
981
+
982
+ .req-loader {
983
+ border: 2px solid #CCC;
984
+ border-top: 2px solid #333;
985
+ border-radius: 50%;
986
+ width: 20px;
987
+ height: 20px;
988
+ min-width: 20px;
989
+ min-height: 20px;
990
+ animation: spin 2s linear infinite;
991
+ }
992
+ .req-loader.big {
993
+ width: 40px;
994
+ height: 40px;
995
+ animation: spin 3s linear infinite;
996
+ }
997
+ .req-loader.slow {
998
+ animation: spin 4s linear infinite;
999
+ }
1000
+
1001
+ @keyframes spin {
1002
+ 0% { transform: rotate(0deg); }
1003
+ 100% { transform: rotate(360deg); }
1004
+ }
1005
+
1006
+
1007
+
1008
+ .fade-enter-active,
1009
+ .fade-leave-active {
1010
+ transition: opacity 0.3s;
1011
+ }
1012
+ .fade-enter,
1013
+ .fade-leave-to {
1014
+ opacity: 0;
1015
+ }
1016
+
1017
+ .files-counter {
1018
+ position: absolute;
1019
+ top: unset;
1020
+ transform: translate(17.5px, -15px);
1021
+ background-color: #888;
1022
+ z-index: 1;
1023
+ font-size: 8px;
1024
+ width: 15px;
1025
+ height: 15px;
1026
+ border-radius: 50%;
1027
+ display: flex;
1028
+ justify-content: center;
1029
+ align-items: center;
1030
+ cursor: pointer;
1031
+ opacity: 0.9;
1032
+ transition: all 300ms;
1033
+ color: #fff;
1034
+ font-weight: 900;
1035
+ }
1036
+ .files-counter:hover {
1037
+ opacity: 1;
1038
+ }
1039
+ .files-counter-2 {
1040
+ transform: translate(-15px, 28px);
1041
+ opacity: 0.9;
1042
+ position: absolute;
1043
+ display: flex;
1044
+ justify-content: center;
1045
+ align-items: center;
1046
+ color: #888;
1047
+ font-size: 12.8px;
1048
+ }
1049
+ .files-counter-2 svg {
1050
+ margin-left: 5px;
1051
+ }
1052
+ .files-counter-2:hover {
1053
+ opacity: 1;
1054
+ text-decoration: underline;
1055
+ }
1056
+
1057
+
1058
+ .single-file-preview .close-icon {
1059
+ color: #E74C3C;
1060
+ cursor: pointer;
1061
+ opacity: .9;
1062
+ transition: opacity 300ms;
1063
+ }
1064
+ .single-file-preview .close-icon:hover {
1065
+ opacity: 1;
1066
+ }
1067
+ .text-footer-invalid-format {
1068
+ color: #222;
1069
+ padding: 10px;
1070
+ }
1071
+ .text-footer-invalid-format h3 {
1072
+ font-weight: 500;
1073
+ }
1074
+ .text-footer-invalid-format h4 {
1075
+ font-size: 14.4px;
1076
+ }
1077
+ .text-footer-preview-title {
1078
+ font-size: 16px;
1079
+ padding: 10px 0 0 10px;
1080
+ white-space: nowrap;
1081
+ overflow: hidden;
1082
+ text-overflow: ellipsis;
1083
+ }
1084
+ .text-footer-image-preview {
1085
+ display: flex;
1086
+ justify-content: center;
1087
+ align-items: center;
1088
+ width: 100%;
1089
+ }
1090
+ .text-footer-image-preview img {
1091
+ cursor: pointer;
1092
+ max-width: 98%;
1093
+ max-height: 98%;
1094
+ padding: 2%;
1095
+ }
1096
+
1097
+
1098
+ .multiple-file-preview {
1099
+ position: relative;
1100
+ display: flex;
1101
+ flex-direction: column;
1102
+ width: 100%;
1103
+ height: 100%;
1104
+ max-height: 100%;
1105
+ overflow-y: auto;
1106
+ overflow-x: hidden;
1107
+ border-top-left-radius: 2.5px;
1108
+ border-top-right-radius: 2.5px;
1109
+ transition: background-color 150ms;
1110
+ scrollbar-color: #888 rgba(0, 0, 0, 0.2);
1111
+ scrollbar-width: 4px;
1112
+ }
1113
+ .multiple-file-preview::-webkit-scrollbar{
1114
+ width: 4px;
1115
+ }
1116
+
1117
+ .multiple-file-preview .close-icon {
1118
+ color: #E74C3C;
1119
+ cursor: pointer;
1120
+ opacity: .9;
1121
+ transition: opacity 300ms;
1122
+ }
1123
+ .multiple-file-preview .close-icon:hover {
1124
+ opacity: 1;
1125
+ }
1126
+
1127
+ .multiple-file-preview::-webkit-scrollbar-track{
1128
+ background-color: rgba(0, 0, 0, 0.2);
1129
+ }
1130
+
1131
+ .multiple-file-preview::-webkit-scrollbar-thumb{
1132
+ transition-duration: .5s;
1133
+ background-color: #222
1134
+ }
1135
+
1136
+ .multiple-file-preview::-webkit-scrollbar-thumb:hover{
1137
+ background-color: #555
1138
+ }
1139
+
1140
+ .text-footer-invalid-format {
1141
+ color: #222;
1142
+ padding: 10px;
1143
+ }
1144
+ .text-footer-invalid-format h3 {
1145
+ text-overflow: ellipsis;
1146
+ overflow: hidden;
1147
+ font-weight: 500;
1148
+ }
1149
+ .text-footer-invalid-format h4 {
1150
+ text-overflow: ellipsis;
1151
+ overflow: hidden;
1152
+ font-size: 14.4px;
1153
+ }
1154
+
1155
+ .text-footer-exclude-file {
1156
+ position: absolute;
1157
+ top: 5px;
1158
+ right: 5px;
1159
+ cursor: pointer;
1160
+ display: flex;
1161
+ justify-content: center;
1162
+ align-items: center;
1163
+ min-width: 16px;
1164
+ min-height: 16px;
1165
+ background-color: #FFF;
1166
+ border-radius: 50%;
1167
+ }
1168
+ .text-footer-exclude-file svg {
1169
+ transition: color 200ms;
1170
+ color: #e9594a;
1171
+ }
1172
+ .text-footer-exclude-file svg:hover {
1173
+ color: #E74C3C;
1174
+ }
1175
+
1176
+ .file-preview {
1177
+ display: flex;
1178
+ width: 100%;
1179
+ align-items: center;
1180
+ padding: 5px 10px;
1181
+ transition: background-color 150ms;
1182
+ }
1183
+ .file-preview:hover {
1184
+ background-color: rgba(0, 0, 0, .1)
1185
+ }
1186
+
1187
+ .file-title {
1188
+ color: #222;
1189
+ display: flex;
1190
+ align-items: center;
1191
+ white-space: nowrap;
1192
+ text-overflow: ellipsis;
1193
+ overflow: hidden;
1194
+ padding: 4px 10px;
1195
+ background-color: #FFF;
1196
+ border-radius: 30px;
1197
+ display: inline-block;
1198
+ }
1199
+ .file-title.red {
1200
+ color: #E74C3C;
1201
+ margin-right: 5px;
1202
+ }
1203
+ .file-title > svg {
1204
+ margin-right: 5px;
1205
+ color: #333;
1206
+ }
1207
+
1208
+ .small-img {
1209
+ flex: 1;
1210
+ margin: 0 15px;
1211
+ display: flex;
1212
+ justify-content: center;
1213
+ align-items: center;
1214
+ position: relative;
1215
+ }
1216
+ .small-img img {
1217
+ height: 40px;
1218
+ cursor: pointer;
1219
+ }
1220
+ .small-img .pdf, .small-img .doc {
1221
+ display: flex;
1222
+ justify-content: center;
1223
+ align-items: center;
1224
+ font-size: 30px;
1225
+ }
1226
+ .small-img .pdf {
1227
+ color: #E74C3C;
1228
+ }
1229
+ .small-img .doc {
1230
+ color: #006bc9;
1231
+ }
1232
+ .small-img .pdf svg, .small-img .doc svg{
1233
+ z-index: 1;
1234
+ }
1235
+ .small-img .pdf::after, .small-img .doc::after {
1236
+ content: "";
1237
+ position: absolute;
1238
+ bottom: 2px;
1239
+ transform: translateY(2px);
1240
+ width: 20px;
1241
+ height: 20px;
1242
+ background-color: #FFF;
1243
+ }
1244
+ .img-container {
1245
+ padding: 5px;
1246
+ border-radius: 2.5px;
1247
+ background-color: rgba(0, 0, 0, .15);
1248
+ display: flex;
1249
+ justify-content: center;
1250
+ align-items: center;
1251
+ }
1252
+
1253
+ .delete-file {
1254
+ display: flex;
1255
+ justify-content: center;
1256
+ align-items: center;
1257
+ cursor: pointer;
1258
+ }
1259
+ .delete-file > svg {
1260
+ font-size: 16px;
1261
+ color: #E74C3C;
1262
+ }
1263
+
1264
+
1265
+ .transition-selects {
1266
+ min-height: 80px;display: flex; flex-direction: column; width: 100%;
1267
+ }
1268
+ .loader-select {
1269
+ position: relative; min-height: 35px;background: #FFF;width: 100%; border: 1px solid #ccc;border-radius: 5px;z-index: 1;
1270
+ }
1271
+ .loading-message {
1272
+ background-color: #555!important;
1273
+ }
1274
+
1275
+
1276
+ .text-footer-actions--btn {
1277
+ position: relative;
1278
+ }
1279
+ .text-footer-actions--btn > svg:nth-child(1) {
1280
+ font-size: 19.2px;
1281
+ }
1282
+ .text-footer-actions--btn > svg:nth-child(2) {
1283
+ font-size: 9.6px;
1284
+ position: absolute;
1285
+ transform: translateY(-2px);
1286
+ }
1287
+
1288
+
1289
+ .multiplos {
1290
+ display: flex;
1291
+ }
1292
+ .multiplos svg {
1293
+ font-size: 15.2px;
1294
+ }
1295
+ .multiplos svg.small {
1296
+ font-size: 11.2px !important;
1297
+ }
1298
+
1299
+
1300
+ .sc-icone-fechar.sc-icone-fechar--externo {
1301
+ top: -10px;
1302
+ right: -10px;
1303
+ }
1304
+ .sc-icone-fechar.sc-icone-fechar--interno {
1305
+ top: 10px;
1306
+ right: 10px;
1307
+ }
1308
+
1309
+ .expand-textarea {
1310
+ position: relative;
1311
+ width: 90%;
1312
+ height: 90%;
1313
+ z-index: 1;
1314
+ }
1315
+
1316
+ .expand-textarea-content {
1317
+ overflow-x: hidden;
1318
+ overflow-y: auto;
1319
+ background-color: #fff;
1320
+ width: 100%;
1321
+ height: 100%;
1322
+ display: flex;
1323
+ flex-direction: column;
1324
+ }
1325
+ .expand-textarea-title {
1326
+ padding: 2.5px 8px;
1327
+ min-height: 38px;
1328
+ display: flex;
1329
+ align-items: center;
1330
+ width: 100%;
1331
+ font-size: 20.8px;
1332
+ background-color: #222;
1333
+ color: #fff;
1334
+ }
1335
+ .expand-textarea-content textarea {
1336
+ padding: 10px;
1337
+ flex: 1;
1338
+ width: 100%;
1339
+ border: unset;
1340
+ resize: none;
1341
+ outline: none;
1342
+ overflow-x: hidden;
1343
+ }
1344
+ .expand-textarea-content textarea:hover,
1345
+ .expand-textarea-content textarea:active {
1346
+ outline: none;
1347
+ }
1348
+ .expand-textarea-footer {
1349
+ display: flex;
1350
+ justify-content: flex-end;
1351
+ align-items: center;
1352
+ padding: 10px;
1353
+ background-color: #f7f7f7;
1354
+ position: relative;
1355
+ }
1356
+ .expand-textarea-footer .text-footer-preview-container {
1357
+ position: absolute;
1358
+ top: -200px;
1359
+ right: 145px;
1360
+ height: 200px;
1361
+ background: #f7f7f7;
1362
+ }
1363
+ .expand-textarea-footer .text-footer-actions--btn {
1364
+ width: 36px;
1365
+ height: 36px;
1366
+ border-radius: 50%;
1367
+ background-color: rgba(255, 255, 255, 0);
1368
+ color: #333;
1369
+ padding: 2.5px;
1370
+ margin: 0 15px 0 10px;
1371
+ display: flex;
1372
+ justify-content: center;
1373
+ align-items: center;
1374
+ font-size: 20.8px;
1375
+ cursor: pointer;
1376
+ opacity: 0.9;
1377
+ transition: all 300ms;
1378
+ }
1379
+ .expand-textarea-footer .text-footer-actions--btn:hover {
1380
+ opacity: 1;
1381
+ background-color: rgba(30, 30, 30, 0.1);
1382
+ }
1383
+
1384
+ .expand-textarea-button {
1385
+ width: 125px;
1386
+ height: 30px;
1387
+ display: flex;
1388
+ justify-content: center;
1389
+ align-items: center;
1390
+
1391
+ transition-duration: 300ms;
1392
+ user-select: none;
1393
+ cursor: pointer;
1394
+ box-shadow: inset 0 -2px rgba(0, 0, 0, 0.2);
1395
+ opacity: 0.9;
1396
+ border-radius: 5px;
1397
+
1398
+ padding: 5px 10px;
1399
+ border-radius: 2.5px;
1400
+ position: relative;
1401
+ }
1402
+ .expand-textarea-button.green {
1403
+ background-color: #2a963a;
1404
+ color: #fff;
1405
+ margin-right: 10px;
1406
+ }
1407
+ .expand-textarea-button.red {
1408
+ background-color: #e74c3c;
1409
+ color: #fff;
1410
+ }
1411
+ .expand-textarea-button:hover {
1412
+ opacity: 1;
1413
+ }
1414
+ .expand-textarea-button:active {
1415
+ opacity: 1;
1416
+ box-shadow: inset 0 -1px rgba(0, 0, 0, 0.2);
1417
+ -webkit-transform: translateY(1px);
1418
+ -moz-transform: translateY(1px);
1419
+ -o-transform: translateY(1px);
1420
+ -ms-transform: translateY(1px);
1421
+ transform: translateY(1px);
1422
+ }
1423
+ .expand-textarea-button.carregando {
1424
+ background-color: #777;
1425
+ }
1426
+
1427
+
1428
+ .fade-enter-active,
1429
+ .fade-leave-active {
1430
+ transition: opacity 200ms;
1431
+ }
1432
+ .fade-enter,
1433
+ .fade-leave-to {
1434
+ opacity: 0;
1435
+ }
1436
+
1437
+ .card-cli,
1438
+ .card-ope {
1439
+ display: flex;
1440
+ width: 95%;
1441
+ margin: 5px 0;
1442
+ position: relative;
1443
+ }
1444
+ .card-cli.newMessage,
1445
+ .card-ope.newMessage {
1446
+ margin-top: 30px;
1447
+ }
1448
+
1449
+ .new-messages {
1450
+ position: absolute;
1451
+ top: -30px;
1452
+ width: 100%;
1453
+ display: flex;
1454
+ justify-content: center;
1455
+ align-items: center;
1456
+ margin: 2.5px 0;
1457
+ background-color: lighten(#fff249, 15);
1458
+ }
1459
+
1460
+ .card-cli .card {
1461
+ border-left: 3px solid #90b823;
1462
+ }
1463
+
1464
+ .card-ope {
1465
+ align-self: flex-end;
1466
+ background-color: lighten(#007535, 72);
1467
+ }
1468
+ .card-ope .card {
1469
+ border-right: 3px solid #007535;
1470
+ }
1471
+
1472
+ .card {
1473
+ background-color: rgba(255, 255, 255, 0.9);
1474
+ overflow: hidden;
1475
+ width: 100%;
1476
+ padding: 2.5px 5px;
1477
+ }
1478
+ .card p {
1479
+ word-break: break-all;
1480
+ }
1481
+
1482
+ .card-header {
1483
+ width: 100%;
1484
+ border-bottom: 1px solid #ddd;
1485
+ margin-bottom: 5px;
1486
+ display: flex;
1487
+ justify-content: space-between;
1488
+ }
1489
+ .card-header svg {
1490
+ font-size: 16px;
1491
+ }
1492
+
1493
+ .card-author {
1494
+ display: flex;
1495
+ align-items: center;
1496
+ }
1497
+ .card-author svg {
1498
+ margin-right: 5px;
1499
+ }
1500
+
1501
+ .card-canal {
1502
+ flex: 1;
1503
+ margin-right: 10px;
1504
+ }
1505
+
1506
+ .card-dates {
1507
+ display: flex;
1508
+ flex-direction: column;
1509
+ margin-right: 10px;
1510
+ font-size: 14.4px;
1511
+ }
1512
+
1513
+ .card-date {
1514
+ overflow: hidden;
1515
+ display: flex;
1516
+ align-content: center;
1517
+ }
1518
+ .card-date span {
1519
+ white-space: nowrap;
1520
+ text-overflow: ellipsis;
1521
+ overflow: hidden;
1522
+ }
1523
+ .card-date svg {
1524
+ margin-right: 5px;
1525
+ color: #232323;
1526
+ }
1527
+
1528
+ .card-expand {
1529
+ display: flex;
1530
+ justify-content: center;
1531
+ align-items: center;
1532
+ margin: 2.5px;
1533
+ cursor: pointer;
1534
+ opacity: 0.8;
1535
+ transition: opacity 150ms;
1536
+ }
1537
+ .card-expand:hover {
1538
+ opacity: 1;
1539
+ }
1540
+
1541
+ .card-footer {
1542
+ margin-top: 5px;
1543
+ border-top: 1px solid #ddd;
1544
+ display: flex;
1545
+ flex-wrap: wrap;
1546
+ min-height: 25px;
1547
+ }
1548
+
1549
+ .card-chip {
1550
+ font-size: 12.8px;
1551
+ width: fit-content;
1552
+ border-radius: 15px;
1553
+ transition: all 150ms ease-in-out;
1554
+ padding: 2.5px 7px;
1555
+ color: rgb(31, 105, 193);
1556
+ background-color: rgba(207, 216, 244, 0.6);
1557
+ margin-bottom: 5px;
1558
+ }
1559
+ .card-chip:hover {
1560
+ background-color: rgba(207, 216, 244, 1);
1561
+ }
1562
+ .card-chip.orange {
1563
+ color: #e14924;
1564
+ background-color: rgba(228, 92, 58, 0.15);
1565
+ }
1566
+ .card-chip.orange:hover {
1567
+ background-color: rgba(228, 92, 58, 0.2);
1568
+ }
1569
+ .card-chip.yellow {
1570
+ color: #f4a304;
1571
+ background-color: rgba(252, 191, 73, 0.15);
1572
+ }
1573
+ .card-chip.yellow:hover {
1574
+ background-color: rgba(252, 191, 73, 0.2);
1575
+ }
1576
+ .card-chip.red {
1577
+ color: rgb(231, 76, 60);
1578
+ background-color: rgba(231, 76, 60, 0.2);
1579
+ }
1580
+ .card-chip.red:hover {
1581
+ background-color: rgba(231, 76, 60, 0.25);
1582
+ }
1583
+
1584
+ .card-file {
1585
+ width: 60px;
1586
+ height: 50px;
1587
+ margin-right: 5px;
1588
+ display: flex;
1589
+ justify-content: center;
1590
+ align-items: center;
1591
+ }
1592
+
1593
+ .card-reply {
1594
+ cursor: pointer;
1595
+ position: absolute;
1596
+ right: 30px;
1597
+ bottom: 5px;
1598
+ font-size: 9.6px;
1599
+ color: #67a332;
1600
+ width: 14.4px;
1601
+ height: 14.4px;
1602
+ display: flex;
1603
+ justify-content: center;
1604
+ align-items: center;
1605
+ border-radius: 50%;
1606
+ background-color: #fff;
1607
+ }
1608
+ .card-reply svg {
1609
+ margin-top: -1px;
1610
+ margin-right: -1px;
1611
+ }
1612
+
1613
+ .card-check {
1614
+ position: absolute;
1615
+ bottom: 5px;
1616
+ right: 5px;
1617
+ cursor: pointer;
1618
+ font-size: 11.2px;
1619
+ }
1620
+ .card-check svg {
1621
+ font-size: 12.8px;
1622
+ }
1623
+ .card-check.seen,
1624
+ .card-check.seen svg {
1625
+ color: #006daa;
1626
+ }
1627
+ .card-check.green,
1628
+ .card-check.green svg {
1629
+ color: #4f772d;
1630
+ }
1631
+ .card-check.red,
1632
+ .card-check.red svg {
1633
+ color: #ba181b;
1634
+ }
1635
+ .card-check.gray,
1636
+ .card-check.gray svg {
1637
+ color: #999;
1638
+ }
1639
+ .card-check.black,
1640
+ .card-check.black svg {
1641
+ color: #666;
1642
+ }
1643
+
1644
+
1645
+ .fade-enter-active, .fade-leave-active {
1646
+ transition: opacity .5s;
1647
+ }
1648
+ .fade-enter, .fade-leave-to {
1649
+ opacity: 0;
1650
+ }
1651
+
1652
+ .file-item {
1653
+ width: 100%;
1654
+ height: 100%;
1655
+ display: flex;
1656
+ justify-content: center;
1657
+ align-items: center;
1658
+ position: relative;
1659
+ }
1660
+ .file-item-transition {
1661
+ max-width: 100%;
1662
+ max-height: 100%;
1663
+ display: flex;
1664
+ justify-content: center;
1665
+ align-items: center;
1666
+ position: relative;
1667
+ }
1668
+ .file-item .req-loader {
1669
+ position: absolute;
1670
+ top: calc(50% - 12.5px);
1671
+ right: calc(50% - 12.5px);
1672
+ }
1673
+ .file-item-transition img {
1674
+ max-width: 45px;
1675
+ max-height: 45px;
1676
+ }
1677
+ .file-item a {
1678
+ margin-left: 5px;
1679
+ text-decoration: none;
1680
+ color: #333;
1681
+ }
1682
+
1683
+ .file-icon {
1684
+ display: flex;
1685
+ justify-content: center;
1686
+ align-items: center;
1687
+ font-size: 30px;
1688
+ cursor: pointer;
1689
+ }
1690
+ .file-icon:hover {
1691
+ opacity: 1
1692
+ }
1693
+ .file-icon:visited {
1694
+ color: inherit;
1695
+ }
1696
+ svg {
1697
+ font-size: 30px;
1698
+ z-index: 1;
1699
+ }
1700
+ .file-icon.pdf {
1701
+ position: relative;
1702
+ }
1703
+ .file-icon.pdf svg {
1704
+ color: rgb(231, 76, 60);
1705
+ }
1706
+ .file-icon.pdf::after {
1707
+ content: "";
1708
+ position: absolute;
1709
+ bottom: 2px;
1710
+ transform: translateY(2px);
1711
+ width: 20px;
1712
+ height: 20px;
1713
+ background-color: #FFF;
1714
+ }
1715
+ .file-icon.doc {
1716
+ color: #15517F;
1717
+ }
1718
+ .file-icon.doc::after {
1719
+ content: "";
1720
+ position: absolute;
1721
+ width: 20px;
1722
+ height: 20px;
1723
+ background-color: #FFF;
1724
+ }
1725
+ .file-img {
1726
+ display: flex;
1727
+ justify-content: center;
1728
+ align-items: center;
1729
+ width: 100%;
1730
+ height: 100%;
1731
+ overflow: hidden;
1732
+ background-color: rgba(0, 0, 0, .2);
1733
+ border-radius: 2.5px;
1734
+ cursor: pointer;
1735
+ opacity: .9;
1736
+ transition: opacity 150ms;
1737
+ }
1738
+
1739
+ .file-img:hover {
1740
+ opacity: 1;
1741
+ }
1742
+ .file-img img {
1743
+ width: 95%;
1744
+ }
1745
+
1746
+
1747
+ .divisor-form-info-aditional {
1748
+ display: flex;
1749
+ align-items: center;
1750
+ justify-content: space-around;
1751
+ }
1752
+ .info-aditional {
1753
+ border-bottom: 1px solid #ccc;
1754
+ width: 49%;
1755
+ }
1756
+ .interatividade-form-header {
1757
+ background-color: #efefef;
1758
+ margin-top: 5px;
1759
+ border-top-right-radius: 10px;
1760
+ border-top-left-radius: 10px;
1761
+ padding-left: 10px;
1762
+ padding-right: 10px;
1763
+ padding-top: 5px;
1764
+ padding-bottom: 5px;
1765
+ justify-content: space-between;
1766
+ display: flex;
1767
+ color: #333;
1768
+ font-weight: 700;
1769
+ font-size: 14.4px;
1770
+ }
1771
+ .interatividade-form-body {
1772
+ padding: 0px 10px;
1773
+ background: white;
1774
+ border-right: 1px solid rgb(239, 239, 239);
1775
+ border-left: 1px solid rgb(239, 239, 239);
1776
+ border-bottom-left-radius: 10px;
1777
+ border-bottom-right-radius: 10px;
1778
+ padding-bottom: 10px;
1779
+ }
1780
+ .interatividade {
1781
+ margin: 10px 0;
1782
+ }
1783
+ .interatividade-titulo-form {
1784
+ white-space: nowrap;
1785
+ text-overflow: ellipsis;
1786
+ font-weight: bold;
1787
+ overflow: hidden;
1788
+ max-width: 100%;
1789
+ margin: 0;
1790
+ padding: 0;
1791
+ padding-top: 5px;
1792
+ }
1793
+ .interatividade-description-form {
1794
+ overflow: hidden;
1795
+ max-width: 100%;
1796
+ margin: 0;
1797
+ padding: 0;
1798
+ }
1799
+ .text-dark {
1800
+ color: #333;
1801
+ }
1802
+ .ml-3 {
1803
+ margin-left: 3px;
1804
+ }
1805
+ .flex-wrap {
1806
+ flex-wrap: wrap;
1807
+ }
1808
+ .align-items-center {
1809
+ align-items: center;
1810
+ }
1811
+ .d-flex {
1812
+ display: flex;
1813
+ }
1814
+ .align-items-end {
1815
+ align-items: flex-end;
1816
+ }
1817
+ .flex-column {
1818
+ flex-direction: column;
1819
+ }
1820
+ .text-bold {
1821
+ font-weight: bold;
1822
+ }
1823
+ .m-5 {
1824
+ margin: 5px;
1825
+ }
1826
+ .mb-5 {
1827
+ margin-bottom: 5px;
1828
+ }
1829
+ .mx-5 {
1830
+ margin-left: 5px;
1831
+ margin-right: 5px;
1832
+ }
1833
+ .cursor-pointer {
1834
+ cursor: pointer;
1835
+ }
1836
+ .bg-dark-white-2 {
1837
+ background-color: #f7f7f7;
1838
+ }
1839
+ .border-radius-10 {
1840
+ border-radius: 10px;
1841
+ }
1842
+ .w-100 {
1843
+ width: 100%;
1844
+ }
1845
+ .overflow-hidden {
1846
+ overflow: hidden;
1847
+ }
1848
+ .mt-10 {
1849
+ margin-top: 10px;
1850
+ }
1851
+ .flex-wrap {
1852
+ flex-wrap: wrap;
1853
+ }
1854
+ .d-flex {
1855
+ display: flex;
1856
+ }
1857
+ .p-10 {
1858
+ padding: 10px;
1859
+ }
1860
+ .mb-5 {
1861
+ margin-bottom: 5px;
1862
+ }
1863
+ .mb-10 {
1864
+ margin-bottom: 10px;
1865
+ }
1866
+ .d-flex-center {
1867
+ display: flex;
1868
+ justify-content: center;
1869
+ align-items: center;
1870
+ }
1871
+ .fs-_85 {
1872
+ font-size: 13.6px;
1873
+ }
1874
+ .text-ellipsis {
1875
+ text-overflow: ellipsis;
1876
+ }
1877
+ .text-left {
1878
+ text-align: left;
1879
+ }
1880
+ .text-ellipsis {
1881
+ white-space: nowrap;
1882
+ overflow: hidden;
1883
+ }
1884
+ .ml-5 {
1885
+ margin-left: 5px;
1886
+ }
1887
+ .text-shadow {
1888
+ text-shadow: 0 0 #000;
1889
+ }
1890
+ .justify-content-between {
1891
+ justify-content: space-between;
1892
+ }
1893
+ .mr-5 {
1894
+ margin-right: 5px;
1895
+ }
1896
+
1897
+
1898
+ .box-shadow {
1899
+ -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
1900
+ -moz-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
1901
+ box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
1902
+ }
1903
+
1904
+ .interatividade-popup {
1905
+ position: absolute;
1906
+ top: 15px;
1907
+ right: 0;
1908
+ width: 250px;
1909
+ height: auto;
1910
+ max-height: 300px;
1911
+ overflow-y: auto;
1912
+ overflow-x: hidden;
1913
+ background-color: #FFF;
1914
+ border-radius: 15px;
1915
+ color: #333;
1916
+ font-size: 14px;
1917
+ }
1918
+
1919
+ .interatividade-popup-titulo h1 {
1920
+ padding: 4px 10px;
1921
+ background-color: #333;
1922
+ color: #FFF;
1923
+ font-size: 1.2em;
1924
+ display: flex;
1925
+ justify-content: space-between;
1926
+ align-items: center;
1927
+ }
1928
+ .interatividade-popup-titulo h1 svg{
1929
+ color: #E74C3C;
1930
+ cursor: pointer;
1931
+ font-size: .9em;
1932
+ }
1933
+
1934
+ .interatividade-popup-item {
1935
+ padding: 10px;
1936
+ border-bottom: 1px solid #D7D7D7;
1937
+ }
1938
+
1939
+ .interatividade-popup-item-desc {
1940
+ font-size: .9em;
1941
+ color: #767676;
1942
+ }
1943
+
1944
+
1945
+ .fade-enter-active,
1946
+ .fade-leave-active {
1947
+ transition: opacity 200ms;
1948
+ }
1949
+ .fade-enter,
1950
+ .fade-leave-to {
1951
+ opacity: 0;
1952
+ }
1953
+
1954
+ .card-cli,
1955
+ .card-ope {
1956
+ display: flex;
1957
+ width: 95%;
1958
+ margin: 5px 0;
1959
+ position: relative;
1960
+ }
1961
+ .card-cli.msgNova,
1962
+ .card-ope.msgNova {
1963
+ margin-top: 30px;
1964
+ }
1965
+
1966
+ .novas-mensagens {
1967
+ position: absolute;
1968
+ top: -30px;
1969
+ width: 100%;
1970
+ display: flex;
1971
+ justify-content: center;
1972
+ align-items: center;
1973
+ margin: 2.5px 0;
1974
+ background-color: lighten(#fff249, 15);
1975
+ }
1976
+
1977
+ .card-cli .card {
1978
+ border-left: 3px solid #90b823;
1979
+ }
1980
+
1981
+ .card-ope {
1982
+ align-self: flex-end;
1983
+ background-color: lighten(#007535, 72);
1984
+ }
1985
+ .card-ope .card {
1986
+ border-right: 3px solid #007535;
1987
+ }
1988
+
1989
+ .card {
1990
+ background-color: rgba(255, 255, 255, 0.9);
1991
+ overflow: hidden;
1992
+ width: 100%;
1993
+ padding: 2.5px 5px;
1994
+ border-radius: 7px;
1995
+ box-shadow: rgba(0, 0, 0, 0.15) 1px 2px 3px 0px;
1996
+ }
1997
+ .card p {
1998
+ word-break: break-all;
1999
+ }
2000
+
2001
+ .card-header {
2002
+ width: 100%;
2003
+ border-bottom: 1px solid #ddd;
2004
+ margin-bottom: 5px;
2005
+ display: flex;
2006
+ justify-content: space-between;
2007
+ padding: 10px 5px;
2008
+ }
2009
+ .card-header svg {
2010
+ font-size: 16px;
2011
+ }
2012
+
2013
+ .card-canal {
2014
+ flex: 1;
2015
+ margin-right: 10px;
2016
+ }
2017
+
2018
+ .card-datas {
2019
+ display: flex;
2020
+ flex-direction: column;
2021
+ margin-right: 10px;
2022
+ background: rgb(0, 136, 69);
2023
+ padding: 5px 10px;
2024
+ border-top-left-radius: 15px;
2025
+ border-bottom-left-radius: 15px;
2026
+ color: #fff;
2027
+ }
2028
+
2029
+ .card-right {
2030
+ margin-right: -20px;
2031
+ display: flex;
2032
+ flex-direction: row-reverse;
2033
+ align-items: center;
2034
+ }
2035
+ .card-data {
2036
+ overflow: hidden;
2037
+ display: flex;
2038
+ align-content: center;
2039
+ }
2040
+ .card-data span {
2041
+ white-space: nowrap;
2042
+ text-overflow: ellipsis;
2043
+ overflow: hidden;
2044
+ }
2045
+ .card-data svg {
2046
+ margin-right: 5px;
2047
+ color: #232323;
2048
+ }
2049
+
2050
+ .card-expand {
2051
+ display: flex;
2052
+ justify-content: center;
2053
+ align-items: center;
2054
+ margin: 0 10px;
2055
+ cursor: pointer;
2056
+ opacity: 0.8;
2057
+ transition: opacity 150ms;
2058
+ }
2059
+ .card-expand:hover {
2060
+ opacity: 1;
2061
+ }
2062
+
2063
+ .card-footer {
2064
+ margin-top: 5px;
2065
+ border-top: 1px solid #ddd;
2066
+ display: flex;
2067
+ flex-wrap: wrap;
2068
+ }
2069
+
2070
+ .card-chip-container {
2071
+ display: flex;
2072
+ flex-wrap: wrap;
2073
+ width: 100%;
2074
+ gap: 5px;
2075
+ }
2076
+
2077
+ .card-autor {
2078
+ display: flex;
2079
+ align-items: center;
2080
+ margin-right: 10px;
2081
+ overflow: hidden;
2082
+ min-width: 14px;
2083
+ max-width: calc(100% - 215px);
2084
+ gap: 5px;
2085
+ }
2086
+
2087
+ .card-chip {
2088
+ font-size: 12.8px;
2089
+ width: fit-content;
2090
+ border-radius: 15px;
2091
+ transition: all 150ms ease-in-out;
2092
+ padding: 2.5px 7px;
2093
+ color: rgb(31, 105, 193);
2094
+ background-color: rgba(207, 216, 244, 0.6);
2095
+ margin-bottom: 5px;
2096
+ }
2097
+ .card-chip:hover {
2098
+ background-color: rgba(207, 216, 244, 1);
2099
+ }
2100
+ .card-chip.orange {
2101
+ color: #e14924;
2102
+ background-color: rgba(228, 92, 58, 0.15);
2103
+ }
2104
+ .card-chip.orange:hover {
2105
+ background-color: rgba(228, 92, 58, 0.2);
2106
+ }
2107
+ .card-chip.yellow {
2108
+ color: #f4a304;
2109
+ background-color: rgba(252, 191, 73, 0.15);
2110
+ }
2111
+ .card-chip.yellow:hover {
2112
+ background-color: rgba(252, 191, 73, 0.2);
2113
+ }
2114
+ .card-chip.red {
2115
+ color: rgb(231, 76, 60);
2116
+ background-color: rgba(231, 76, 60, 0.2);
2117
+ }
2118
+ .card-chip.red:hover {
2119
+ background-color: rgba(231, 76, 60, 0.25);
2120
+ }
2121
+ .card-chip.green {
2122
+ color: #0e3213;
2123
+ background-color: rgba(15, 177, 39, 0.3);
2124
+ }
2125
+ .card-chip.green:hover {
2126
+ background-color: rgba(15, 177, 39, 0.4);
2127
+ }
2128
+
2129
+ .card-anexo {
2130
+ width: 50px;
2131
+ height: 50px;
2132
+ margin-right: 5px;
2133
+ display: flex;
2134
+ justify-content: center;
2135
+ align-items: center;
2136
+ }
2137
+ .anexo-item {
2138
+ width: 100%;
2139
+ height: 100%;
2140
+ display: flex;
2141
+ justify-content: center;
2142
+ align-items: center;
2143
+ position: relative;
2144
+ }
2145
+ .anexo-item .transition-anexo-item {
2146
+ max-width: 100%;
2147
+ max-height: 100%;
2148
+ }
2149
+ .anexo-item .req-loader {
2150
+ position: absolute;
2151
+ top: calc(50% - 12.5px);
2152
+ right: calc(50% - 12.5px);
2153
+ }
2154
+ .anexo-item .transition-anexo-item img {
2155
+ max-width: 45px;
2156
+ max-height: 45px;
2157
+ }
2158
+
2159
+ .anexo-icone {
2160
+ opacity: 0.9;
2161
+ transition: opacity 200ms;
2162
+ color: #222;
2163
+ cursor: pointer;
2164
+ display: flex;
2165
+ justify-content: center;
2166
+ align-items: center;
2167
+ }
2168
+ .anexo-icone:hover {
2169
+ opacity: 1;
2170
+ }
2171
+ .anexo-icone:visited {
2172
+ color: inherit;
2173
+ }
2174
+ svg {
2175
+ font-size: 30px;
2176
+ z-index: 1;
2177
+ }
2178
+ .anexo-icone.pdf {
2179
+ position: relative;
2180
+ }
2181
+ .anexo-icone.pdf svg {
2182
+ color: rgb(231, 76, 60);
2183
+ }
2184
+ .anexo-icone.pdf::after {
2185
+ content: "";
2186
+ position: absolute;
2187
+ bottom: 2px;
2188
+ transform: translateY(2px);
2189
+ width: 20px;
2190
+ height: 20px;
2191
+ background-color: #fff;
2192
+ }
2193
+ .anexo-icone.doc {
2194
+ color: #15517f;
2195
+ }
2196
+ .anexo-icone.doc::after {
2197
+ content: "";
2198
+ position: absolute;
2199
+ width: 20px;
2200
+ height: 20px;
2201
+ background-color: #fff;
2202
+ }
2203
+ .anexo-img {
2204
+ display: flex;
2205
+ justify-content: center;
2206
+ align-items: center;
2207
+ width: 100%;
2208
+ height: 100%;
2209
+ overflow: hidden;
2210
+ background-color: rgba(0, 0, 0, 0.2);
2211
+ border-radius: 2.5px;
2212
+ cursor: pointer;
2213
+ opacity: 0.9;
2214
+ transition: opacity 150ms;
2215
+ }
2216
+
2217
+ .anexo-img:hover {
2218
+ opacity: 1;
2219
+ }
2220
+ .anexo-img img {
2221
+ width: 95%;
2222
+ }
2223
+
2224
+ .card-interatividade {
2225
+ display: flex;
2226
+ flex-direction: column;
2227
+ margin-top: 10px;
2228
+ margin-bottom: 5px;
2229
+ font-size: 0.9em;
2230
+ }
2231
+
2232
+ .card-interatividade-title {
2233
+ font-weight: bold;
2234
+ margin-bottom: 5px;
2235
+ }
2236
+
2237
+ .card-interatividade-list {
2238
+ margin: 0;
2239
+ padding: 0;
2240
+ font-size: 0.9em;
2241
+ }
2242
+
2243
+ .card-interatividade-list hr {
2244
+ height: 1px;
2245
+ background-color: #ccc;
2246
+ width: 100%;
2247
+ border: 0;
2248
+ }
2249
+
2250
+ .card-interatividade-list button {
2251
+ margin-left: 5px;
2252
+ border-radius: 5px;
2253
+ border: unset;
2254
+ cursor: pointer;
2255
+ padding: 5px 10px;
2256
+ background-color: #b5f778;
2257
+ }
2258
+
2259
+ .card-interatividade-list button:hover {
2260
+ text-decoration: underline;
2261
+ }
2262
+
2263
+
2264
+ .fade-enter-active, .fade-leave-active {
2265
+ transition: opacity .5s;
2266
+ }
2267
+ .fade-enter, .fade-leave-to {
2268
+ opacity: 0;
2269
+ }
2270
+
2271
+
2272
+ :root {
2273
+ --message-color: #373737;
2274
+ --text-color: #fff;
2275
+ --files-bg: rgba(255, 255, 255, 0.1);
2276
+ --files-bg-hover: rgba(255, 255, 255, 0.1);
2277
+
2278
+ --light: 80;
2279
+ --threshold: 60;
2280
+ }
2281
+
2282
+ .fade-enter-active,
2283
+ .fade-leave-active {
2284
+ transition: opacity 0.5s;
2285
+ }
2286
+ .fade-enter,
2287
+ .fade-leave-to {
2288
+ opacity: 0;
2289
+ }
2290
+
2291
+ .mensagem-reply {
2292
+ padding: 5px 10px;
2293
+ font-size: 12px;
2294
+ color: #666;
2295
+ transition: background-color 150ms ease-in-out;
2296
+ border-radius: 5px;
2297
+ margin: 5px 0;
2298
+ overflow: hidden;
2299
+ max-width: 100%;
2300
+ }
2301
+ .mensagem-reply p {
2302
+ overflow: hidden;
2303
+ text-overflow: ellipsis;
2304
+ white-space: nowrap;
2305
+ }
2306
+
2307
+ .message-reply-principal {
2308
+ border-left: 3px solid transparent;
2309
+ background-color: rgba(100, 100, 100, 0.1);
2310
+ }
2311
+ .message-reply-principal:hover {
2312
+ background-color: rgba(100, 100, 100, 0.2);
2313
+ }
2314
+
2315
+ .message-reply-outros {
2316
+ background-color: rgb(245, 245, 245);
2317
+ border-left: 3px solid var(--message-color);
2318
+ }
2319
+ .message-reply-outros:hover {
2320
+ background-color: rgb(235, 235, 235);
2321
+ }
2322
+
2323
+ .mensagem-reply-vazia {
2324
+ display: flex;
2325
+ align-items: center;
2326
+ }
2327
+ .mensagem-reply-vazia svg {
2328
+ margin-right: 5px;
2329
+ color: #ba181b;
2330
+ }
2331
+
2332
+ .mensagem {
2333
+ padding: 20px 7px 14px 7px;
2334
+ border-radius: 5px;
2335
+ min-width: 150px;
2336
+ min-height: 60px;
2337
+ width: -webkit-fit-content;
2338
+ width: -moz-fit-content;
2339
+ width: fit-content;
2340
+ position: relative;
2341
+ max-width: 80%;
2342
+ margin-bottom: 10px;
2343
+ font-size: 12px;
2344
+ word-break: break-word;
2345
+
2346
+ -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
2347
+ 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
2348
+ -moz-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
2349
+ 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
2350
+ box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14),
2351
+ 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
2352
+ }
2353
+ .mensagem.max-w-60 {
2354
+ max-width: 60%;
2355
+ }
2356
+ .mensagem.mapa {
2357
+ width: 100%;
2358
+ }
2359
+ .mensagem.hist-msg {
2360
+ animation: show 1s;
2361
+ }
2362
+ .mensagem a {
2363
+ margin-right: 5px;
2364
+ font-weight: 550;
2365
+ color: inherit;
2366
+ text-decoration: none;
2367
+ }
2368
+ .mensagem a:hover {
2369
+ text-decoration: underline;
2370
+ }
2371
+ .message p {
2372
+ white-space: pre-wrap;
2373
+ }
2374
+ .mensagem:hover .menu-primario {
2375
+ visibility: visible;
2376
+ opacity: 1;
2377
+ }
2378
+
2379
+ .mensagem-anexo a,
2380
+ .mensagem-div-mapa a {
2381
+ white-space: nowrap;
2382
+ text-overflow: ellipsis;
2383
+ overflow: hidden;
2384
+ }
2385
+
2386
+ .reply {
2387
+ cursor: pointer;
2388
+ position: absolute;
2389
+ right: 53px;
2390
+ bottom: 5px;
2391
+ font-size: 9.6px;
2392
+ color: #67a332;
2393
+ width: 14.4px;
2394
+ height: 14.4px;
2395
+ display: flex;
2396
+ justify-content: center;
2397
+ align-items: center;
2398
+ border-radius: 50%;
2399
+ background-color: #fff;
2400
+ }
2401
+ .reply svg {
2402
+ margin-top: -1px;
2403
+ margin-right: -1px;
2404
+ }
2405
+ .reply-with-2-icons {
2406
+ right: 30px;
2407
+ }
2408
+
2409
+ .check {
2410
+ cursor: pointer;
2411
+ position: absolute;
2412
+ right: 10px;
2413
+ bottom: 2px;
2414
+ font-size: 11.2px;
2415
+ }
2416
+ .check.visualizado,
2417
+ .check.visualizado svg {
2418
+ color: #006daa;
2419
+ }
2420
+ .check.verde,
2421
+ .check.verde svg {
2422
+ color: #4f772d;
2423
+ }
2424
+ .check.vermelho,
2425
+ .check.vermelho svg {
2426
+ color: #ba181b;
2427
+ }
2428
+ .check.cinza,
2429
+ .check.cinza svg {
2430
+ color: #999;
2431
+ }
2432
+ .check.preto,
2433
+ .check.preto svg {
2434
+ color: #666;
2435
+ }
2436
+ .star {
2437
+ cursor: pointer;
2438
+ position: absolute;
2439
+ right: 30px;
2440
+ bottom: 2px;
2441
+ font-size: 6.4px;
2442
+ width: 11.2px;
2443
+ }
2444
+ .default-stick-size {
2445
+ width: 180px;
2446
+ height: auto;
2447
+ }
2448
+ .horario-envio {
2449
+ margin-right: 15px;
2450
+ font-size: 11.2px;
2451
+ position: absolute;
2452
+ left: 10px;
2453
+ bottom: 2px;
2454
+ }
2455
+
2456
+ .autor-mensagem {
2457
+ position: absolute;
2458
+ font-size: 9.6px;
2459
+ white-space: nowrap;
2460
+ text-overflow: ellipsis;
2461
+ overflow: hidden;
2462
+ max-width: 90%;
2463
+ font-weight: bold;
2464
+ top: 2px;
2465
+ }
2466
+
2467
+ .menu-primario {
2468
+ visibility: hidden;
2469
+ opacity: 0;
2470
+ transition: opacity 150ms ease-in-out;
2471
+ position: absolute;
2472
+ font-size: 11.2px;
2473
+ top: 3px;
2474
+ display: flex;
2475
+ gap: 5px;
2476
+ padding: 2px 4px;
2477
+ }
2478
+ .menu-primario.principal {
2479
+ left: 4px;
2480
+ color: var(--text-color);
2481
+ background-color: var(--message-color);
2482
+ }
2483
+ .menu-primario.outros {
2484
+ right: 4px;
2485
+ color: var(--text-color);
2486
+ background-color: #fff;
2487
+ }
2488
+
2489
+ .menu-primario.outros > span:nth-child(1) {
2490
+ order: 10;
2491
+ }
2492
+
2493
+ .menu-mensagem {
2494
+ cursor: pointer;
2495
+ padding: 1px;
2496
+ }
2497
+
2498
+ .menu-flutuante {
2499
+ background-color: #fff;
2500
+ -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
2501
+ 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
2502
+ -moz-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
2503
+ 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
2504
+ box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14),
2505
+ 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
2506
+ border-radius: 10px;
2507
+ position: absolute;
2508
+ top: 20px;
2509
+ width: 120px;
2510
+ min-height: 50px;
2511
+ height: 50px;
2512
+ max-height: 50px;
2513
+ overflow-x: hidden;
2514
+ overflow-y: auto;
2515
+ margin: 0;
2516
+ padding: 0;
2517
+ display: flex;
2518
+ flex-direction: column;
2519
+ z-index: 1;
2520
+ }
2521
+
2522
+ .menu-flutuante.principal {
2523
+ left: 3px;
2524
+ }
2525
+
2526
+ .menu-flutuante.outros {
2527
+ right: 3px;
2528
+ }
2529
+
2530
+ .menu-flutuante li {
2531
+ transition: background-color 300ms ease-in-out;
2532
+ width: 100%;
2533
+ cursor: pointer;
2534
+ padding: 5px 10px;
2535
+ display: flex;
2536
+ align-items: center;
2537
+ }
2538
+
2539
+ .menu-flutuante li:hover {
2540
+ background-color: #e9e9e9;
2541
+ }
2542
+
2543
+ /* Principal */
2544
+ .mensagem__principal {
2545
+ width: 100%;
2546
+ display: flex;
2547
+ justify-content: flex-end;
2548
+ }
2549
+ .mensagem__principal > .mensagem::after {
2550
+ content: "";
2551
+ width: 0;
2552
+ height: 0;
2553
+ position: absolute;
2554
+ border-left: 10px solid transparent;
2555
+ border-right: 10px solid transparent;
2556
+ border-top: 10px solid var(--message-color);
2557
+ bottom: 5px;
2558
+ right: -10px;
2559
+ transform: rotate(-90deg);
2560
+ }
2561
+ .mensagem__principal > .mensagem {
2562
+ background-color: var(--message-color);
2563
+ color: var(--text-color);
2564
+ }
2565
+
2566
+ .mensagem__principal > .mensagem .horario-envio {
2567
+ color: var(--text-color);
2568
+ }
2569
+ .mensagem__principal > .mensagem .autor-mensagem {
2570
+ right: 5px;
2571
+ color: var(--text-color);
2572
+ }
2573
+ /* Outros */
2574
+ .mensagem__outros {
2575
+ width: 100%;
2576
+ display: flex;
2577
+ }
2578
+ .mensagem__outros > .mensagem {
2579
+ background-color: #fff;
2580
+ color: #333;
2581
+ }
2582
+ .mensagem__outros > .mensagem::after {
2583
+ content: "";
2584
+ width: 0;
2585
+ height: 0;
2586
+ position: absolute;
2587
+ border-left: 10px solid transparent;
2588
+ border-right: 10px solid transparent;
2589
+ border-top: 10px solid #fff;
2590
+ bottom: 5px;
2591
+ left: -10px;
2592
+ transform: rotate(90deg);
2593
+ }
2594
+ /* .mensagem__outros .check{
2595
+ display: none
2596
+ } */
2597
+ .mensagem__outros > .autor-mensagem {
2598
+ left: 5px;
2599
+ color: #333;
2600
+ }
2601
+ /* Mapa */
2602
+ .mensagem-div-mapa {
2603
+ width: 100%;
2604
+ display: flex;
2605
+ justify-content: center;
2606
+ align-items: center;
2607
+ flex-direction: column;
2608
+ margin-bottom: 5px;
2609
+ }
2610
+
2611
+ .msg-mapa {
2612
+ width: 100%;
2613
+ min-height: 225px;
2614
+ height: 100%;
2615
+ box-sizing: initial;
2616
+ }
2617
+ .msg-mapa img {
2618
+ max-width: none !important;
2619
+ }
2620
+
2621
+ .info-mapa {
2622
+ list-style-type: none;
2623
+ }
2624
+ .info-mapa li.title {
2625
+ font-size: 0.85em;
2626
+ }
2627
+ .info-mapa li.address,
2628
+ .info-mapa li.url {
2629
+ font-size: 0.85em;
2630
+ }
2631
+ .info-mapa li.url {
2632
+ font-size: 0.85em;
2633
+ }
2634
+
2635
+ .tooltip-list {
2636
+ margin: 0;
2637
+ padding: 0;
2638
+ display: flex;
2639
+ flex-direction: column;
2640
+ justify-content: center;
2641
+ align-items: flex-start;
2642
+ }
2643
+
2644
+ .emoji-message-container {
2645
+ position: absolute;
2646
+ top: 0;
2647
+ z-index: 1;
2648
+ width: 300px;
2649
+ height: 250px;
2650
+ }
2651
+ /* .emoji-message-container {
2652
+ z-index: 1;
2653
+ overflow: hidden;
2654
+ width: 300px;
2655
+ height: 250px;
2656
+
2657
+ >.sm-emoji-picker {
2658
+ position: relative;
2659
+ width: 300px;
2660
+ height: 250px;
2661
+ }
2662
+ }
2663
+
2664
+ .mensagem .reaction {
2665
+ $size: 1.8em;
2666
+ width: $size;
2667
+ height: $size;
2668
+ min-width: $size;
2669
+ min-height: $size;
2670
+ max-width: $size;
2671
+ max-height: $size;
2672
+ } */
2673
+
2674
+ .emoji-message-container .sm-emoji-picker {
2675
+ width: 300px;
2676
+ height: 250px;
2677
+ }
2678
+ .emoji-message-container .sm-emoji-picker .sm-emoji-header {
2679
+ overflow-x: auto;
2680
+ overflow-y: hidden;
2681
+ }
2682
+
2683
+ .reaction {
2684
+ position: absolute;
2685
+ bottom: 0;
2686
+ border-radius: 50%;
2687
+ display: flex;
2688
+ justify-content: center;
2689
+ align-items: center;
2690
+ background-color: rgba(100, 100, 100, 0.4);
2691
+ padding: 5px;
2692
+ font-size: 1.3em;
2693
+ min-width: 1.8em;
2694
+ min-height: 1.8em;
2695
+ max-width: 1.8em;
2696
+ max-height: 1.8em;
2697
+ }
2698
+
2699
+ .reaction > span {
2700
+ display: block;
2701
+ transform: translateY(-1px);
2702
+ }
2703
+
2704
+ .mensagem__outros .reaction {
2705
+ right: -30px;
2706
+ }
2707
+
2708
+ .mensagem__principal .reaction {
2709
+ left: -30px;
2710
+ }
2711
+
2712
+
2713
+ .tippy-tooltip.light-theme .tippy-backdrop {
2714
+ background-color: #fff;
2715
+ }
2716
+
2717
+ .tippy-tooltip.light-theme {
2718
+ /* .tippy-box[data-theme~='light'] { */
2719
+ background-color: #fff;
2720
+ border: 1px solid #ccc;
2721
+ color: #333;
2722
+ -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
2723
+ 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
2724
+ -moz-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
2725
+ 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
2726
+ box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14),
2727
+ 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
2728
+ }
2729
+
2730
+ .tippy-confirmation p {
2731
+ margin-bottom: 3px;
2732
+ }
2733
+
2734
+ .tippy-confirmation button {
2735
+ border: unset;
2736
+ background-color: #f1f1f1;
2737
+ border-radius: 3px;
2738
+ padding: 5px 8px;
2739
+ cursor: pointer;
2740
+ font-size: 12px;
2741
+ }
2742
+
2743
+ .tippy-confirmation button.cancel {
2744
+ border-bottom: 2px solid red;
2745
+ margin-right: 15px;
2746
+ }
2747
+
2748
+ .tippy-confirmation button.confirm {
2749
+ border-bottom: 2px solid green;
2750
+ }
2751
+
2752
+ .mensagem__principal .default-doc {
2753
+ background-color: var(--files-bg);
2754
+ }
2755
+
2756
+ .mensagem__principal .default-doc:hover {
2757
+ background-color: var(--files-bg-hover);
2758
+ }
2759
+
2760
+ .mensagem__outros .default-doc {
2761
+ background-color: rgba(100, 100, 100, 0.1);
2762
+ }
2763
+
2764
+ .mensagem__outros .default-doc:hover {
2765
+ background-color: rgba(100, 100, 100, 0.3);
2766
+ }
2767
+
2768
+ .default-doc:hover p {
2769
+ text-decoration: underline;
2770
+ }
2771
+
2772
+ .default-doc {
2773
+ display: flex;
2774
+ align-items: center;
2775
+ padding: 10px;
2776
+ border-radius: 5px;
2777
+ width: 100%;
2778
+ max-width: 100%;
2779
+ cursor: pointer;
2780
+ transition: background-color 150ms ease-in-out;
2781
+ }
2782
+
2783
+ .default-doc svg {
2784
+ font-size: 19.2px;
2785
+ margin-right: 5px;
2786
+ }
2787
+
2788
+ .default-doc p {
2789
+ overflow: hidden;
2790
+ text-overflow: ellipsis;
2791
+ white-space: nowrap;
2792
+ }
2793
+
2794
+ .file-actions {
2795
+ display: flex;
2796
+ justify-content: flex-end;
2797
+ width: 100%;
2798
+ padding: 5px;
2799
+ }
2800
+
2801
+ .file-actions a {
2802
+ margin-right: 0;
2803
+ }
2804
+
2805
+ .mensagem__principal .file-action-button {
2806
+ background-color: var(--files-bg);
2807
+ }
2808
+
2809
+ .mensagem__outros .file-action-button {
2810
+ background-color: rgba(100, 100, 100, 0.1);
2811
+ }
2812
+
2813
+ .mensagem__principal .file-action-button:hover {
2814
+ background-color: var(--files-bg-hover);
2815
+ }
2816
+
2817
+ .mensagem__outros .file-action-button:hover {
2818
+ background-color: rgba(100, 100, 100, 0.3);
2819
+ }
2820
+
2821
+ .file-action-button {
2822
+ display: flex;
2823
+ justify-content: center;
2824
+ align-items: center;
2825
+ margin-left: 12px;
2826
+ cursor: pointer;
2827
+ padding: 5px;
2828
+ border-radius: 5px;
2829
+ transition: background-color 150ms ease-in-out;
2830
+ }
2831
+
2832
+ .file-action-button a {
2833
+ margin: 0;
2834
+ }
2835
+
2836
+ .fade-enter-active,
2837
+ .fade-leave-active {
2838
+ transition: opacity 0.5s;
2839
+ }
2840
+
2841
+ .fade-enter,
2842
+ .fade-leave-to {
2843
+ opacity: 0;
2844
+ }
2845
+
2846
+ .mensagem-div-anexo {
2847
+ width: 100%;
2848
+ display: flex;
2849
+ justify-content: center;
2850
+ align-items: center;
2851
+ flex-direction: column;
2852
+ overflow: hidden;
2853
+ }
2854
+
2855
+ .anexo-container {
2856
+ width: 100%;
2857
+ margin-top: 5px;
2858
+ overflow: hidden;
2859
+ display: flex;
2860
+ max-height: 300px;
2861
+ }
2862
+
2863
+ .anexo-container a,
2864
+ .anexo-container .arquivo-erro {
2865
+ padding: 10px 15px 15px 15px;
2866
+ display: flex;
2867
+ justify-content: center;
2868
+ align-items: center;
2869
+ }
2870
+
2871
+ .anexo-container p {
2872
+ text-overflow: ellipsis;
2873
+ overflow: hidden;
2874
+ }
2875
+
2876
+ .anexo-container p,
2877
+ .anexo-container .arquivo-erro {
2878
+ margin: 0;
2879
+ margin-left: 15px;
2880
+ font-size: 14.4px;
2881
+ }
2882
+
2883
+ .anexo-container svg {
2884
+ font-size: 32px;
2885
+ }
2886
+
2887
+ .anexo-mensagem audio .divAudioPai {
2888
+ outline: none;
2889
+ width: 100%;
2890
+ margin-bottom: 5px;
2891
+ }
2892
+ .audioStyle {
2893
+ width: 370px;
2894
+ }
2895
+
2896
+ .divAudioPai {
2897
+ display: flex;
2898
+ /* justify-content: space-between; */
2899
+ background-color: #f1f3f4;
2900
+ border-radius: 50%;
2901
+ width: 100%;
2902
+ border-bottom-right-radius: 26px;
2903
+ border-top-right-radius: 26px;
2904
+ }
2905
+
2906
+ .anexo-mensagem video {
2907
+ flex: 1;
2908
+ width: 100%;
2909
+ max-width: 350px;
2910
+ cursor: pointer;
2911
+ margin-bottom: 5px;
2912
+ }
2913
+
2914
+ .anexos-links-container {
2915
+ width: 100%;
2916
+ display: flex;
2917
+ justify-content: center;
2918
+ align-items: center;
2919
+ }
2920
+
2921
+ .anexos-links-container a {
2922
+ white-space: nowrap;
2923
+ text-overflow: ellipsis;
2924
+ overflow: hidden;
2925
+ margin-right: 5px;
2926
+ font-weight: 550;
2927
+ color: inherit;
2928
+ text-decoration: none;
2929
+ }
2930
+
2931
+ .anexos-links-container svg {
2932
+ cursor: pointer;
2933
+ }
2934
+
2935
+ .mensagem-div-anexo img {
2936
+ cursor: pointer;
2937
+ margin: 10px 0;
2938
+ min-width: 35px;
2939
+ width: 100%;
2940
+ max-width: 250px;
2941
+ }
2942
+
2943
+ .anexo-transition {
2944
+ width: 100%;
2945
+ height: 100%;
2946
+ }
2947
+
2948
+ .anexo-mensagem {
2949
+ display: flex;
2950
+ justify-content: center;
2951
+ align-items: center;
2952
+ flex-direction: column;
2953
+ width: 100%;
2954
+ }
2955
+
2956
+ .alert-danger {
2957
+ color: #721c24;
2958
+ background-color: #f8d7da;
2959
+ border-color: #f5c6cb;
2960
+ }
2961
+
2962
+ .alert {
2963
+ position: relative;
2964
+ padding: 10.4px 19.2px;
2965
+ margin: 5px 0;
2966
+ border: 1px solid transparent;
2967
+ border-radius: 4px;
2968
+ text-align: center;
2969
+ }
2970
+
2971
+ .alert svg {
2972
+ font-size: 1.025em;
2973
+ margin-right: 2px;
2974
+ }
2975
+
2976
+ .pdf {
2977
+ color: #e74c3c;
2978
+ }
2979
+
2980
+ .doc {
2981
+ color: #006bc9;
2982
+ }
2983
+
2984
+
2985
+ .audio-speed-control {
2986
+ display: flex;
2987
+ align-items: center;
2988
+ cursor: pointer;
2989
+ margin-left: 10px;
2990
+ }
2991
+
2992
+ .speed-circle {
2993
+ width: 40px;
2994
+ height: 40px;
2995
+ background-color: #f1f3f4; /* Cor do círculo */
2996
+ border: solid black 1px;
2997
+ color: black;
2998
+ display: flex;
2999
+ justify-content: center;
3000
+ align-items: center;
3001
+ border-radius: 50%;
3002
+ font-weight: bold;
3003
+ transition: background-color 0.3s;
3004
+ }
3005
+
3006
+ .speed-circle.active {
3007
+ background-color: #f1f3f4; /* Cor quando ativo */
3008
+ border: solid blue 1px;
3009
+
3010
+ }
3011
+
3012
+
3013
+ .interatividade-btn {
3014
+ width: 100%;
3015
+ display: flex;
3016
+ justify-content: center;
3017
+ align-items: center;
3018
+ background-color: #fff;
3019
+ color: #111b21;
3020
+ padding: 10px 12px;
3021
+ border-radius: 5px;
3022
+ margin-bottom: 10px;
3023
+ }
3024
+ .interatividade-btn:nth-child(1) {
3025
+ margin-top: 10px;
3026
+ }
3027
+ .interatividade-titulo {
3028
+ white-space: nowrap;
3029
+ text-overflow: ellipsis;
3030
+ overflow: hidden;
3031
+ max-width: 100%;
3032
+ margin: 0;
3033
+ padding: 0;
3034
+ }
3035
+
3036
+ .interatividade-lista {
3037
+ width: 100%;
3038
+ min-width: 200px;
3039
+ border-radius: 15px;
3040
+ background-color: #fff;
3041
+ color: #333;
3042
+ margin: 10px 0;
3043
+ }
3044
+
3045
+ .interatividade-lista-conteudo {
3046
+ padding: 10px;
3047
+ border-bottom: 1px solid #d7d7d7;
3048
+ }
3049
+ .interatividade-lista-titulo {
3050
+ font-weight: bold;
3051
+ font-size: 1.2em;
3052
+ margin-bottom: 10px;
3053
+ }
3054
+ .interatividade-lista-rodape {
3055
+ color: #818181;
3056
+ margin-top: 5px;
3057
+ }
3058
+ .interatividade-lista-link {
3059
+ width: 100%;
3060
+ text-align: center;
3061
+ padding: 10px;
3062
+ color: rgb(0, 110, 255);
3063
+ cursor: pointer;
3064
+ transition: color 200ms ease-in-out;
3065
+ }
3066
+ .interatividade-lista-link:hover {
3067
+ color: rgb(0, 98, 143);
3068
+ }
3069
+
3070
+
3071
+ .link-preview {
3072
+ display: flex;
3073
+ flex-direction: column;
3074
+ background-color: #eee;
3075
+ color: #333;
3076
+ cursor: pointer;
3077
+ margin: 5px 0;
3078
+ border-radius: 5px;
3079
+ opacity: 0.95;
3080
+ transition: opacity 300ms ease-in-out;
3081
+ font-size: 13.6px;
3082
+ }
3083
+
3084
+ .link-preview-image {
3085
+ display: flex;
3086
+ justify-content: center;
3087
+ align-items: center;
3088
+ padding: 1px;
3089
+ border-top-left-radius: 5px;
3090
+ border-top-right-radius: 5px;
3091
+ }
3092
+
3093
+ .link-preview-author {
3094
+ margin: 5px;
3095
+ font-size: 0.615em;
3096
+ font-weight: bold;
3097
+ }
3098
+ .link-preview-author.mb-0 {
3099
+ margin-bottom: 0;
3100
+ }
3101
+ .link-preview-author h1 {
3102
+ overflow: hidden;
3103
+ text-overflow: ellipsis;
3104
+ white-space: nowrap;
3105
+ }
3106
+
3107
+ .link-preview-image img {
3108
+ min-width: 100px;
3109
+ max-width: 200px;
3110
+ border-top-left-radius: 5px;
3111
+ border-top-right-radius: 5px;
3112
+ }
3113
+
3114
+ .link-preview-infos {
3115
+ background-color: #2626261a;
3116
+ padding: 5px;
3117
+ margin: 5px;
3118
+ font-size: 0.83em;
3119
+ border-radius: 5px;
3120
+ }
3121
+
3122
+ .link-preview:hover {
3123
+ opacity: 1;
3124
+ }
3125
+ .link-preview:hover .link-preview-infos p {
3126
+ text-decoration: underline;
3127
+ }
3128
+
3129
+
3130
+ .default-btn-style {
3131
+ transition-duration: 300ms;
3132
+ user-select: none;
3133
+ cursor: pointer;
3134
+ box-shadow: inset 0 -2px rgba(0, 0, 0, 0.2);
3135
+ opacity: .9;
3136
+ border-radius: 5px;
3137
+ display: flex;
3138
+ justify-content: center;
3139
+ align-items: center;
3140
+ padding: 5px;
3141
+ cursor: pointer;
3142
+ min-height: 28px;
3143
+ }
3144
+ .default-btn-style:hover{
3145
+ opacity: 1;
3146
+ }
3147
+ .default-btn-style:active{
3148
+ opacity: 1;
3149
+ box-shadow: inset 0 -1px rgba(0, 0, 0, 0.2);
3150
+ -webkit-transform: translateY(1px);
3151
+ -moz-transform: translateY(1px);
3152
+ -o-transform: translateY(1px);
3153
+ -ms-transform: translateY(1px);
3154
+ transform: translateY(1px);
3155
+ }
3156
+
3157
+ .simple-btn {
3158
+ position: relative;
3159
+ }
3160
+
3161
+ .simple-btn--icon {
3162
+ display: flex;
3163
+ justify-content: center;
3164
+ align-items: center;
3165
+ margin-right: 5px;
3166
+ }
3167
+ .simple-btn--icon.custom {
3168
+ min-width: 25px;
3169
+ }
3170
+
3171
+ .simple-btn--text {
3172
+ white-space: nowrap;
3173
+ text-overflow: ellipsis;
3174
+ overflow: hidden;
3175
+ }
3176
+
3177
+ .icon-container {
3178
+ position: absolute;
3179
+ left: -15px;
3180
+ padding: 5px;
3181
+ width: 40px;
3182
+ height: 40px;
3183
+ display: flex;
3184
+ justify-content: center;
3185
+ align-items: center;
3186
+ border-radius: 50%;
3187
+ }
3188
+ .icon-container svg {
3189
+ color: rgba(255, 255, 255, .5);
3190
+ width: 23px;
3191
+ height: 23px;
3192
+ }
3193
+
3194
+
3195
+
3196
+ .simple-btn--icon.custom > span {
3197
+ width: 20px;
3198
+ height: 20px;
3199
+ }
3200
+
3201
+
3202
+ .fade-enter-active,
3203
+ .fade-leave-active {
3204
+ transition: opacity 0.3s;
3205
+ }
3206
+ .fade-enter,
3207
+ .fade-leave-to {
3208
+ opacity: 0;
3209
+ }
3210
+
3211
+ .btn-rolagem {
3212
+ position: absolute;
3213
+ bottom: 10px;
3214
+ right: 20px;
3215
+ }
3216
+ .btn-rolagem.higher {
3217
+ bottom: 36px;
3218
+ }
3219
+ .btn-rolagem svg {
3220
+ font-size: 38.4px;
3221
+ color: #757575;
3222
+ transition-duration: 300ms;
3223
+ transition-property: opacity;
3224
+ opacity: 0.8;
3225
+ cursor: pointer;
3226
+ }
3227
+ .btn-rolagem svg:hover {
3228
+ opacity: 1;
3229
+ }
3230
+ .sinalizar-msg-nova {
3231
+ position: absolute;
3232
+ top: -10px;
3233
+ left: -10px;
3234
+ background-color: #4f772d;
3235
+ width: 12.5px;
3236
+ height: 12.5px;
3237
+ border-radius: 50%;
3238
+ animation-name: blink;
3239
+ animation-duration: 1000ms;
3240
+ animation-direction: alternate;
3241
+ animation-iteration-count: infinite;
3242
+ }
3243
+
3244
+ @keyframes blink {
3245
+ from {
3246
+ opacity: 0.8 - 0.1;
3247
+ }
3248
+ to {
3249
+ opacity: 1;
3250
+ }
3251
+ }
3252
+
3253
+
3254
+ .w-100 {
3255
+ width: 100%;
3256
+ }
3257
+ .text-dark {
3258
+ color: #333
3259
+ }
3260
+ .min-h-60 {
3261
+ min-height: 60px;
3262
+ }
3263
+ .d-flex {
3264
+ display: flex;
3265
+ }
3266
+ .flex-wrap {
3267
+ flex-wrap: wrap;
3268
+ }
3269
+ .border-bottom-1 {
3270
+ border-bottom: 1px solid;
3271
+ }
3272
+ .border-color-gray {
3273
+ border-color: #CCC
3274
+ }
3275
+ .transition-150 {
3276
+ transition: all 150ms ease-in-out;
3277
+ }
3278
+ .cursor-pointer {
3279
+ cursor: pointer;
3280
+ }
3281
+ .justify-content-between {
3282
+ justify-content: space-between;
3283
+ }
3284
+ .align-items-center {
3285
+ align-items: center;
3286
+ }
3287
+ .align-self-start {
3288
+ align-self: flex-start;
3289
+ }
3290
+ .border-radius-round {
3291
+ border-radius: 50%!important;
3292
+ }
3293
+ .w-36px {
3294
+ width: 36px;
3295
+ }
3296
+ .h-36px {
3297
+ height: 36px;
3298
+ }
3299
+ .border-1 {
3300
+ border: 1px solid;
3301
+ }
3302
+ .mr-10 {
3303
+ margin-right: 10px;
3304
+ }
3305
+ .flex-column {
3306
+ display: flex;
3307
+ flex-direction: column
3308
+ }
3309
+ .text-bold {
3310
+ font-weight: bold;
3311
+ }
3312
+ .fs-_9 {
3313
+ font-size: 14.4px;
3314
+ }
3315
+ .fs-_8 {
3316
+ font-size: 12.8px;
3317
+ }
3318
+ .text-gray {
3319
+ color: gray;
3320
+ }
3321
+ .p-15 {
3322
+ padding: 15px;
3323
+ }
3324
+ .text-ellipsis{
3325
+ white-space: nowrap;
3326
+ text-overflow: ellipsis;
3327
+ overflow: hidden
3328
+ }
3329
+ .d-flex-center{
3330
+ display: flex;
3331
+ justify-content: center;
3332
+ align-items: center
3333
+ }
3334
+
3335
+
3336
+ .mr-5 {
3337
+ margin-right: 5px;
3338
+ }
3339
+ .anexo-img {
3340
+ display: flex;
3341
+ justify-content: center;
3342
+ align-items: center;
3343
+ width: 100%;
3344
+ height: 100%;
3345
+ overflow: hidden;
3346
+ background-color: rgba(0, 0, 0, .2);
3347
+ border-radius: 2.5px;
3348
+ cursor: pointer;
3349
+ opacity: .9;
3350
+ transition: opacity 150ms;
3351
+ }
3352
+ .anexo-img:hover {
3353
+ opacity: 1;
3354
+ }
3355
+ .anexo-img img {
3356
+ width: 95%;
3357
+ max-height: 50px;
3358
+ }
3359
+ .box-shadow {
3360
+ -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
3361
+ -moz-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
3362
+ box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
3363
+ }
3364
+ .anexo-icone {
3365
+ display: flex;
3366
+ justify-content: center;
3367
+ align-items: center;
3368
+ font-size: 30px;
3369
+ cursor: pointer;
3370
+ }
3371
+ .anexo-icone:hover {
3372
+ opacity: 1
3373
+ }
3374
+ .anexo-icone:visited {
3375
+ color: inherit;
3376
+ }
3377
+ .anexo-icone.pdf {
3378
+ position: relative;
3379
+ }
3380
+ .anexo-icone.pdf svg {
3381
+ color: rgb(231, 76, 60);
3382
+ }
3383
+ .anexo-icone.pdf::after {
3384
+ content: "";
3385
+ position: absolute;
3386
+ bottom: 2px;
3387
+ transform: translateY(2px);
3388
+ width: 20px;
3389
+ height: 20px;
3390
+ }
3391
+ .anexo-icone.doc {
3392
+ color: #15517F;
3393
+ }
3394
+ .anexo-icone.doc::after {
3395
+ content: "";
3396
+ position: absolute;
3397
+ width: 20px;
3398
+ height: 20px;
3399
+ }
3400
+ .align-items-center {
3401
+ align-items: center;
3402
+ }
3403
+ .flex-wrap {
3404
+ flex-wrap: wrap;
3405
+ }
3406
+ .d-flex {
3407
+ display: flex;
3408
+ }
3409
+ .mb-5 {
3410
+ margin-bottom: 5px;
3411
+ }
3412
+ .mx-5 {
3413
+ margin-left: 5px;
3414
+ margin-right: 5px;
3415
+ }
3416
+