plataforma-fundacao-componentes 2.22.27 → 2.23.1
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.
- package/dist/assets/icons/ComitesIcon.d.ts +3 -0
- package/dist/assets/icons/CrescerIcon.d.ts +1 -1
- package/dist/assets/icons/EyeIcon.d.ts +3 -0
- package/dist/assets/icons/FundacaoLogo.d.ts +1 -1
- package/dist/index.css +786 -540
- package/dist/index.d.ts +191 -96
- package/dist/index.js +7008 -5710
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +7008 -5805
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -135,10 +135,75 @@ h5 {
|
|
|
135
135
|
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
136
136
|
background-color: #bfc7bf; }
|
|
137
137
|
|
|
138
|
-
.
|
|
139
|
-
width:
|
|
140
|
-
|
|
141
|
-
|
|
138
|
+
.percent-loader-icon {
|
|
139
|
+
width: 1em;
|
|
140
|
+
height: 1em;
|
|
141
|
+
display: inline-block;
|
|
142
|
+
font-size: 1.5rem;
|
|
143
|
+
flex-shrink: 0;
|
|
144
|
+
-webkit-user-select: none;
|
|
145
|
+
-moz-user-select: none;
|
|
146
|
+
-ms-user-select: none;
|
|
147
|
+
user-select: none;
|
|
148
|
+
fill: none;
|
|
149
|
+
stroke-width: 6;
|
|
150
|
+
transform: rotateZ(-90deg); }
|
|
151
|
+
.percent-loader-icon circle:first-of-type {
|
|
152
|
+
stroke: #cdd3cd; }
|
|
153
|
+
.percent-loader-icon circle:last-of-type {
|
|
154
|
+
stroke: currentColor;
|
|
155
|
+
stroke-linecap: round;
|
|
156
|
+
stroke-dasharray: 264;
|
|
157
|
+
transition: stroke-dashoffset 0.3s ease, stroke-dasharray 0.3s ease; }
|
|
158
|
+
.percent-loader-icon path {
|
|
159
|
+
stroke: currentColor;
|
|
160
|
+
stroke-linecap: round;
|
|
161
|
+
stroke-linejoin: round;
|
|
162
|
+
transform: translate(390px, -676px) rotateZ(90deg);
|
|
163
|
+
transition: stroke-dashoffset 0.3s ease, stroke-dasharray 0.3s ease; }
|
|
164
|
+
|
|
165
|
+
.percent-loader-icon.indefinido {
|
|
166
|
+
-webkit-animation: spinNoventa 0.6s linear infinite;
|
|
167
|
+
animation: spinNoventa 0.6s linear infinite; }
|
|
168
|
+
|
|
169
|
+
@-webkit-keyframes spinNoventa {
|
|
170
|
+
0% {
|
|
171
|
+
transform: rotateZ(-90deg); }
|
|
172
|
+
100% {
|
|
173
|
+
transform: rotateZ(270deg); } }
|
|
174
|
+
|
|
175
|
+
@keyframes spinNoventa {
|
|
176
|
+
0% {
|
|
177
|
+
transform: rotateZ(-90deg); }
|
|
178
|
+
100% {
|
|
179
|
+
transform: rotateZ(270deg); } }
|
|
180
|
+
|
|
181
|
+
.refresh-icon {
|
|
182
|
+
fill: currentColor;
|
|
183
|
+
width: 1em;
|
|
184
|
+
height: 1em;
|
|
185
|
+
display: inline-block;
|
|
186
|
+
font-size: 1.5rem;
|
|
187
|
+
flex-shrink: 0;
|
|
188
|
+
-webkit-user-select: none;
|
|
189
|
+
-moz-user-select: none;
|
|
190
|
+
-ms-user-select: none;
|
|
191
|
+
user-select: none; }
|
|
192
|
+
.refresh-icon.animate {
|
|
193
|
+
-webkit-animation: spin 0.4s linear infinite;
|
|
194
|
+
animation: spin 0.4s linear infinite; }
|
|
195
|
+
|
|
196
|
+
@-webkit-keyframes spin {
|
|
197
|
+
0% {
|
|
198
|
+
transform: rotateZ(0); }
|
|
199
|
+
100% {
|
|
200
|
+
transform: rotateZ(180deg); } }
|
|
201
|
+
|
|
202
|
+
@keyframes spin {
|
|
203
|
+
0% {
|
|
204
|
+
transform: rotateZ(0); }
|
|
205
|
+
100% {
|
|
206
|
+
transform: rotateZ(180deg); } }
|
|
142
207
|
|
|
143
208
|
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
144
209
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
@@ -265,49 +330,13 @@ h5 {
|
|
|
265
330
|
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
266
331
|
background-color: #bfc7bf; }
|
|
267
332
|
|
|
268
|
-
.
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
display: flex;
|
|
276
|
-
height: 73px;
|
|
277
|
-
padding: 24px 20px;
|
|
278
|
-
width: 100%;
|
|
279
|
-
align-items: center;
|
|
280
|
-
justify-content: space-between;
|
|
281
|
-
transition: border-bottom 0.3s ease;
|
|
282
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0); }
|
|
283
|
-
.component-accordion .component-accordion-first-content .component-accordion-label-icon {
|
|
284
|
-
display: flex;
|
|
285
|
-
align-items: center; }
|
|
286
|
-
.component-accordion .component-accordion-first-content .component-accordion-label-icon .component-accordion-icon {
|
|
287
|
-
margin-right: 16px;
|
|
288
|
-
color: #323c32; }
|
|
289
|
-
.component-accordion .component-accordion-first-content .component-accordion-label-icon .component-accordion-label {
|
|
290
|
-
cursor: default;
|
|
291
|
-
-webkit-user-select: none;
|
|
292
|
-
-moz-user-select: none;
|
|
293
|
-
-ms-user-select: none;
|
|
294
|
-
user-select: none;
|
|
295
|
-
font-weight: 600;
|
|
296
|
-
font-size: 18px;
|
|
297
|
-
color: #323c32; }
|
|
298
|
-
.component-accordion .component-accordion-first-content .component-accordion-arrow {
|
|
299
|
-
color: #3fa110;
|
|
300
|
-
cursor: pointer;
|
|
301
|
-
transition: transform 0.3s ease;
|
|
302
|
-
display: flex;
|
|
303
|
-
align-items: center;
|
|
304
|
-
justify-content: center; }
|
|
305
|
-
.component-accordion.component-accordion-opened .component-accordion-first-content {
|
|
306
|
-
border-bottom: 1px solid #cdd3cd; }
|
|
307
|
-
.component-accordion.component-accordion-opened .component-accordion-arrow {
|
|
308
|
-
transform: rotateZ(180deg); }
|
|
309
|
-
.component-accordion.component-accordion-shadow {
|
|
310
|
-
box-shadow: 0 1px 2px 0 rgba(90, 100, 90, 0.3); }
|
|
333
|
+
.sicredi-logo #Caminho_17 {
|
|
334
|
+
transform: translateX(286.845px) translateY(657.948px);
|
|
335
|
+
transform-origin: left center;
|
|
336
|
+
transition: transform 0.3s ease, opacity 0.3s ease; }
|
|
337
|
+
.sicredi-logo #Caminho_17.sicredi-logo-hide-letters {
|
|
338
|
+
transform: translateX(270px) translateY(657.948px);
|
|
339
|
+
opacity: 0; }
|
|
311
340
|
|
|
312
341
|
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
313
342
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
@@ -467,7 +496,7 @@ h5 {
|
|
|
467
496
|
.loader-three-dots.loader-three-dots-secondary > div {
|
|
468
497
|
background-color: #fefefe; }
|
|
469
498
|
.loader-three-dots.loader-three-dots-dark > div {
|
|
470
|
-
background-color: #
|
|
499
|
+
background-color: #323c32; }
|
|
471
500
|
.loader-three-dots div {
|
|
472
501
|
width: var(--tdBallSize);
|
|
473
502
|
height: var(--tdBallSize);
|
|
@@ -493,6 +522,70 @@ h5 {
|
|
|
493
522
|
opacity: 0.4;
|
|
494
523
|
transform: translate(0, var(--tdTransformYTo)); } }
|
|
495
524
|
|
|
525
|
+
:export {
|
|
526
|
+
rootClassName: catavento-verde-icon-ui-component; }
|
|
527
|
+
|
|
528
|
+
.catavento-verde-icon-ui-component {
|
|
529
|
+
width: 100px;
|
|
530
|
+
height: 100px; }
|
|
531
|
+
.catavento-verde-icon-ui-component #um {
|
|
532
|
+
-webkit-animation: piscar 700ms infinite;
|
|
533
|
+
animation: piscar 700ms infinite; }
|
|
534
|
+
.catavento-verde-icon-ui-component #dois {
|
|
535
|
+
-webkit-animation: piscar 700ms infinite;
|
|
536
|
+
animation: piscar 700ms infinite;
|
|
537
|
+
-webkit-animation-delay: 100ms;
|
|
538
|
+
animation-delay: 100ms; }
|
|
539
|
+
.catavento-verde-icon-ui-component #tres {
|
|
540
|
+
-webkit-animation: piscar 700ms infinite;
|
|
541
|
+
animation: piscar 700ms infinite;
|
|
542
|
+
-webkit-animation-delay: 200ms;
|
|
543
|
+
animation-delay: 200ms; }
|
|
544
|
+
.catavento-verde-icon-ui-component #quatro {
|
|
545
|
+
-webkit-animation: piscar 700ms infinite;
|
|
546
|
+
animation: piscar 700ms infinite;
|
|
547
|
+
-webkit-animation-delay: 300ms;
|
|
548
|
+
animation-delay: 300ms; }
|
|
549
|
+
.catavento-verde-icon-ui-component #cinco {
|
|
550
|
+
-webkit-animation: piscar 700ms infinite;
|
|
551
|
+
animation: piscar 700ms infinite;
|
|
552
|
+
-webkit-animation-delay: 400ms;
|
|
553
|
+
animation-delay: 400ms; }
|
|
554
|
+
.catavento-verde-icon-ui-component #seis {
|
|
555
|
+
-webkit-animation: piscar 700ms infinite;
|
|
556
|
+
animation: piscar 700ms infinite;
|
|
557
|
+
-webkit-animation-delay: 500ms;
|
|
558
|
+
animation-delay: 500ms; }
|
|
559
|
+
.catavento-verde-icon-ui-component #sete {
|
|
560
|
+
-webkit-animation: piscar 700ms infinite;
|
|
561
|
+
animation: piscar 700ms infinite;
|
|
562
|
+
-webkit-animation-delay: 600ms;
|
|
563
|
+
animation-delay: 600ms; }
|
|
564
|
+
|
|
565
|
+
@-webkit-keyframes piscar {
|
|
566
|
+
0% {
|
|
567
|
+
opacity: 1; }
|
|
568
|
+
25% {
|
|
569
|
+
opacity: 0.8; }
|
|
570
|
+
50% {
|
|
571
|
+
opacity: 0.2; }
|
|
572
|
+
75% {
|
|
573
|
+
opacity: 0.8; }
|
|
574
|
+
100% {
|
|
575
|
+
opacity: 1; } }
|
|
576
|
+
|
|
577
|
+
@keyframes piscar {
|
|
578
|
+
0% {
|
|
579
|
+
opacity: 1; }
|
|
580
|
+
25% {
|
|
581
|
+
opacity: 0.8; }
|
|
582
|
+
50% {
|
|
583
|
+
opacity: 0.2; }
|
|
584
|
+
75% {
|
|
585
|
+
opacity: 0.8; }
|
|
586
|
+
100% {
|
|
587
|
+
opacity: 1; } }
|
|
588
|
+
|
|
496
589
|
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
497
590
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
498
591
|
:export {
|
|
@@ -618,16 +711,61 @@ h5 {
|
|
|
618
711
|
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
619
712
|
background-color: #bfc7bf; }
|
|
620
713
|
|
|
621
|
-
.
|
|
622
|
-
|
|
623
|
-
width:
|
|
624
|
-
height:
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
714
|
+
.loader-icon {
|
|
715
|
+
fill: currentColor;
|
|
716
|
+
width: 1em;
|
|
717
|
+
height: 1em;
|
|
718
|
+
display: inline-block;
|
|
719
|
+
font-size: 1.5rem;
|
|
720
|
+
flex-shrink: 0;
|
|
721
|
+
-webkit-user-select: none;
|
|
722
|
+
-moz-user-select: none;
|
|
723
|
+
-ms-user-select: none;
|
|
724
|
+
user-select: none; }
|
|
725
|
+
.loader-icon circle {
|
|
726
|
+
fill: #33820d;
|
|
727
|
+
-webkit-animation: loaderAnimation 1000ms linear infinite;
|
|
728
|
+
animation: loaderAnimation 1000ms linear infinite; }
|
|
729
|
+
.loader-icon #Elipse_0 {
|
|
730
|
+
-webkit-animation-delay: -875ms;
|
|
731
|
+
animation-delay: -875ms; }
|
|
732
|
+
.loader-icon #Elipse_1 {
|
|
733
|
+
-webkit-animation-delay: -750ms;
|
|
734
|
+
animation-delay: -750ms; }
|
|
735
|
+
.loader-icon #Elipse_2 {
|
|
736
|
+
-webkit-animation-delay: -625ms;
|
|
737
|
+
animation-delay: -625ms; }
|
|
738
|
+
.loader-icon #Elipse_3 {
|
|
739
|
+
-webkit-animation-delay: -500ms;
|
|
740
|
+
animation-delay: -500ms; }
|
|
741
|
+
.loader-icon #Elipse_4 {
|
|
742
|
+
-webkit-animation-delay: -375ms;
|
|
743
|
+
animation-delay: -375ms; }
|
|
744
|
+
.loader-icon #Elipse_5 {
|
|
745
|
+
-webkit-animation-delay: -250ms;
|
|
746
|
+
animation-delay: -250ms; }
|
|
747
|
+
.loader-icon #Elipse_6 {
|
|
748
|
+
-webkit-animation-delay: -125ms;
|
|
749
|
+
animation-delay: -125ms; }
|
|
750
|
+
.loader-icon #Elipse_7 {
|
|
751
|
+
-webkit-animation-delay: 0ms;
|
|
752
|
+
animation-delay: 0ms; }
|
|
753
|
+
|
|
754
|
+
@-webkit-keyframes loaderAnimation {
|
|
755
|
+
0% {
|
|
756
|
+
opacity: 1; }
|
|
757
|
+
50% {
|
|
758
|
+
opacity: 0.05; }
|
|
759
|
+
100% {
|
|
760
|
+
opacity: 0.05; } }
|
|
761
|
+
|
|
762
|
+
@keyframes loaderAnimation {
|
|
763
|
+
0% {
|
|
764
|
+
opacity: 1; }
|
|
765
|
+
50% {
|
|
766
|
+
opacity: 0.05; }
|
|
767
|
+
100% {
|
|
768
|
+
opacity: 0.05; } }
|
|
631
769
|
|
|
632
770
|
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
633
771
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
@@ -754,91 +892,10 @@ h5 {
|
|
|
754
892
|
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
755
893
|
background-color: #bfc7bf; }
|
|
756
894
|
|
|
757
|
-
.component-
|
|
758
|
-
border-radius: 8px;
|
|
895
|
+
.component-collapse {
|
|
759
896
|
width: 100%;
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
display: flex;
|
|
763
|
-
flex-direction: column;
|
|
764
|
-
align-items: stretch;
|
|
765
|
-
justify-content: stretch; }
|
|
766
|
-
.component-aconteceu .component-aconteceu-header {
|
|
767
|
-
-webkit-user-select: none;
|
|
768
|
-
-moz-user-select: none;
|
|
769
|
-
-ms-user-select: none;
|
|
770
|
-
user-select: none;
|
|
771
|
-
height: 48px;
|
|
772
|
-
border-radius: 8px 8px 0 0;
|
|
773
|
-
display: flex;
|
|
774
|
-
align-items: center;
|
|
775
|
-
justify-content: flex-start;
|
|
776
|
-
padding: 8px;
|
|
777
|
-
background-color: #f06666;
|
|
778
|
-
color: #fefefe; }
|
|
779
|
-
.component-aconteceu .component-aconteceu-header svg {
|
|
780
|
-
width: 20px;
|
|
781
|
-
height: 20px; }
|
|
782
|
-
.component-aconteceu .component-aconteceu-header label {
|
|
783
|
-
font-weight: 700;
|
|
784
|
-
font-size: 24px;
|
|
785
|
-
margin: 0 0 0 8px; }
|
|
786
|
-
.component-aconteceu .component-aconteceu-content {
|
|
787
|
-
border-radius: 0 0 8px 8px;
|
|
788
|
-
position: relative;
|
|
789
|
-
background-color: #fefefe;
|
|
790
|
-
padding: 4px 10px 30px;
|
|
791
|
-
height: calc(100% - 50px);
|
|
792
|
-
display: flex;
|
|
793
|
-
flex-direction: column;
|
|
794
|
-
align-items: stretch;
|
|
795
|
-
justify-content: space-between; }
|
|
796
|
-
.component-aconteceu .component-aconteceu-content .component-aconteceu-text {
|
|
797
|
-
display: block;
|
|
798
|
-
padding: 4px 4px 4px;
|
|
799
|
-
margin-bottom: 4px;
|
|
800
|
-
white-space: nowrap;
|
|
801
|
-
overflow: hidden;
|
|
802
|
-
text-overflow: ellipsis;
|
|
803
|
-
font-weight: 600;
|
|
804
|
-
color: #323c32; }
|
|
805
|
-
.component-aconteceu .component-aconteceu-content .component-aconteceu-video {
|
|
806
|
-
height: calc(100% - 27px); }
|
|
807
|
-
.component-aconteceu .component-aconteceu-content .component-aconteceu-video.full-height {
|
|
808
|
-
height: 100%; }
|
|
809
|
-
.component-aconteceu .component-aconteceu-content iframe {
|
|
810
|
-
height: 100% !important; }
|
|
811
|
-
.component-aconteceu .component-aconteceu-content .component-aconteceu-see-more {
|
|
812
|
-
position: absolute;
|
|
813
|
-
bottom: 0;
|
|
814
|
-
right: 0;
|
|
815
|
-
font-size: 14px;
|
|
816
|
-
font-weight: 700;
|
|
817
|
-
outline: none;
|
|
818
|
-
border: none;
|
|
819
|
-
cursor: pointer;
|
|
820
|
-
background-color: #fefefe;
|
|
821
|
-
padding: 5px 10px 5px;
|
|
822
|
-
border-radius: 20px;
|
|
823
|
-
color: #323c32;
|
|
824
|
-
transition: transform 0.3s ease;
|
|
825
|
-
transform-origin: center;
|
|
826
|
-
-webkit-user-select: none;
|
|
827
|
-
-moz-user-select: none;
|
|
828
|
-
-ms-user-select: none;
|
|
829
|
-
user-select: none; }
|
|
830
|
-
.component-aconteceu .component-aconteceu-content .component-aconteceu-see-more:active {
|
|
831
|
-
transform: scale(0.95); }
|
|
832
|
-
.component-aconteceu .component-aconteceu-content .component-aconteceu-loader {
|
|
833
|
-
position: absolute;
|
|
834
|
-
top: 0;
|
|
835
|
-
left: 0;
|
|
836
|
-
width: 100%;
|
|
837
|
-
height: 100%;
|
|
838
|
-
background-color: #fefefe;
|
|
839
|
-
display: flex;
|
|
840
|
-
align-items: center;
|
|
841
|
-
justify-content: center; }
|
|
897
|
+
overflow: hidden;
|
|
898
|
+
transition: height 0.3s ease, opacity 0.3s ease; }
|
|
842
899
|
|
|
843
900
|
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
844
901
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
@@ -965,18 +1022,534 @@ h5 {
|
|
|
965
1022
|
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
966
1023
|
background-color: #bfc7bf; }
|
|
967
1024
|
|
|
968
|
-
.
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
1025
|
+
.component-accordion {
|
|
1026
|
+
display: flex;
|
|
1027
|
+
flex-direction: column;
|
|
1028
|
+
width: 100%;
|
|
1029
|
+
background-color: #fefefe;
|
|
1030
|
+
border-radius: 4px; }
|
|
1031
|
+
.component-accordion .component-accordion-first-content {
|
|
1032
|
+
display: flex;
|
|
1033
|
+
height: 73px;
|
|
1034
|
+
padding: 24px 20px;
|
|
1035
|
+
width: 100%;
|
|
1036
|
+
align-items: center;
|
|
1037
|
+
justify-content: space-between;
|
|
1038
|
+
transition: border-bottom 0.3s ease;
|
|
1039
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0); }
|
|
1040
|
+
.component-accordion .component-accordion-first-content .component-accordion-label-icon {
|
|
1041
|
+
display: flex;
|
|
1042
|
+
align-items: center; }
|
|
1043
|
+
.component-accordion .component-accordion-first-content .component-accordion-label-icon .component-accordion-icon {
|
|
1044
|
+
margin-right: 16px;
|
|
1045
|
+
color: #323c32; }
|
|
1046
|
+
.component-accordion .component-accordion-first-content .component-accordion-label-icon .component-accordion-label {
|
|
1047
|
+
cursor: default;
|
|
1048
|
+
-webkit-user-select: none;
|
|
1049
|
+
-moz-user-select: none;
|
|
1050
|
+
-ms-user-select: none;
|
|
1051
|
+
user-select: none;
|
|
1052
|
+
font-weight: 600;
|
|
1053
|
+
font-size: 18px;
|
|
1054
|
+
color: #323c32; }
|
|
1055
|
+
.component-accordion .component-accordion-first-content .component-accordion-arrow {
|
|
1056
|
+
color: #3fa110;
|
|
1057
|
+
cursor: pointer;
|
|
1058
|
+
transition: transform 0.3s ease;
|
|
1059
|
+
display: flex;
|
|
1060
|
+
align-items: center;
|
|
1061
|
+
justify-content: center; }
|
|
1062
|
+
.component-accordion.component-accordion-opened .component-accordion-first-content {
|
|
1063
|
+
border-bottom: 1px solid #cdd3cd; }
|
|
1064
|
+
.component-accordion.component-accordion-opened .component-accordion-arrow {
|
|
1065
|
+
transform: rotateZ(180deg); }
|
|
1066
|
+
.component-accordion.component-accordion-shadow {
|
|
1067
|
+
box-shadow: 0 1px 2px 0 rgba(90, 100, 90, 0.3); }
|
|
1068
|
+
|
|
1069
|
+
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
1070
|
+
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
1071
|
+
:export {
|
|
1072
|
+
white: #fefefe;
|
|
1073
|
+
darkenWhite: #efefef;
|
|
1074
|
+
black: #121212;
|
|
1075
|
+
transparent: rgba(0, 0, 0, 0);
|
|
1076
|
+
primary: #3fa110;
|
|
1077
|
+
primaryDark: #33820d;
|
|
1078
|
+
primaryLight: #d7e6c8;
|
|
1079
|
+
secondaryDarker: #323c32;
|
|
1080
|
+
secondaryDark: #5a645a;
|
|
1081
|
+
secondary: #828a82;
|
|
1082
|
+
secondaryLight: #cdd3cd;
|
|
1083
|
+
secondaryLighter: #f8f9f7;
|
|
1084
|
+
danger: #e60000;
|
|
1085
|
+
dangerLight: #ffb4b4;
|
|
1086
|
+
dangerDark: #ab4745;
|
|
1087
|
+
warning: #ffcd00;
|
|
1088
|
+
warningLight: #ffeb98;
|
|
1089
|
+
warningDark: #765f00; }
|
|
1090
|
+
|
|
1091
|
+
:root {
|
|
1092
|
+
--rowPadding: 0;
|
|
1093
|
+
--colPadding: 8px; }
|
|
1094
|
+
|
|
1095
|
+
:export {
|
|
1096
|
+
widthXs: 575.98px;
|
|
1097
|
+
widthSm: 767.98px;
|
|
1098
|
+
widthMd: 991.98px;
|
|
1099
|
+
widthLg: 1199.98px; }
|
|
1100
|
+
|
|
1101
|
+
body.sb-show-main.sb-main-padded {
|
|
1102
|
+
padding: 15px; }
|
|
1103
|
+
|
|
1104
|
+
*.nunito {
|
|
1105
|
+
font-family: "Nunito", sans-serif; }
|
|
1106
|
+
|
|
1107
|
+
*:not(.nunito) {
|
|
1108
|
+
font-family: "Exo 2", sans-serif; }
|
|
1109
|
+
|
|
1110
|
+
.document-grabbing {
|
|
1111
|
+
cursor: -webkit-grabbing !important;
|
|
1112
|
+
cursor: grabbing !important; }
|
|
1113
|
+
|
|
1114
|
+
h1 {
|
|
1115
|
+
font-size: 36px;
|
|
1116
|
+
font-weight: 600;
|
|
1117
|
+
margin: 0; }
|
|
1118
|
+
|
|
1119
|
+
h2 {
|
|
1120
|
+
font-size: 32px;
|
|
1121
|
+
font-weight: 500;
|
|
1122
|
+
margin: 0; }
|
|
1123
|
+
|
|
1124
|
+
h3 {
|
|
1125
|
+
font-size: 24px;
|
|
1126
|
+
font-weight: 500;
|
|
1127
|
+
margin: 0; }
|
|
1128
|
+
|
|
1129
|
+
h4 {
|
|
1130
|
+
font-size: 18px;
|
|
1131
|
+
font-weight: 500;
|
|
1132
|
+
margin: 0; }
|
|
1133
|
+
|
|
1134
|
+
h5 {
|
|
1135
|
+
font-family: "Nunito", sans-serif;
|
|
1136
|
+
font-size: 24px;
|
|
1137
|
+
font-weight: 400;
|
|
1138
|
+
margin: 0; }
|
|
1139
|
+
|
|
1140
|
+
.fade-enter {
|
|
1141
|
+
transition: opacity 0.2s ease;
|
|
1142
|
+
position: absolute;
|
|
1143
|
+
opacity: 0; }
|
|
1144
|
+
|
|
1145
|
+
.fade-enter-active {
|
|
1146
|
+
position: absolute;
|
|
1147
|
+
opacity: 1; }
|
|
1148
|
+
|
|
1149
|
+
.fade-exit {
|
|
1150
|
+
transition: opacity 0.15s ease;
|
|
1151
|
+
position: absolute;
|
|
1152
|
+
opacity: 1; }
|
|
1153
|
+
|
|
1154
|
+
.fade-exit-active {
|
|
1155
|
+
position: absolute;
|
|
1156
|
+
opacity: 0; }
|
|
1157
|
+
|
|
1158
|
+
.fade-exit-done {
|
|
1159
|
+
position: absolute;
|
|
1160
|
+
opacity: 0; }
|
|
1161
|
+
|
|
1162
|
+
* {
|
|
1163
|
+
box-sizing: border-box; }
|
|
1164
|
+
*::-webkit-scrollbar-track {
|
|
1165
|
+
background-color: #f8f9f7;
|
|
1166
|
+
border-radius: 20px; }
|
|
1167
|
+
*::-webkit-scrollbar {
|
|
1168
|
+
width: 12px;
|
|
1169
|
+
height: 12px; }
|
|
1170
|
+
*::-webkit-scrollbar-thumb {
|
|
1171
|
+
-webkit-transition: all 0.3s ease;
|
|
1172
|
+
transition: all 0.3s ease;
|
|
1173
|
+
border-radius: 10px;
|
|
1174
|
+
background-color: #cdd3cd;
|
|
1175
|
+
border-width: 3px;
|
|
1176
|
+
border-style: solid;
|
|
1177
|
+
border-color: #f8f9f7; }
|
|
1178
|
+
*::-webkit-scrollbar-thumb:hover {
|
|
1179
|
+
border-width: 2px;
|
|
1180
|
+
background-color: #bfc7bf; }
|
|
1181
|
+
*::-webkit-scrollbar-button {
|
|
1182
|
+
display: none; }
|
|
1183
|
+
|
|
1184
|
+
.scroll-white::-webkit-scrollbar-track {
|
|
1185
|
+
background-color: #fefefe;
|
|
1186
|
+
border-radius: 20px; }
|
|
1187
|
+
|
|
1188
|
+
.scroll-white::-webkit-scrollbar-thumb {
|
|
1189
|
+
background-color: #cdd3cd;
|
|
1190
|
+
border-color: #fefefe; }
|
|
1191
|
+
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
1192
|
+
background-color: #bfc7bf; }
|
|
1193
|
+
|
|
1194
|
+
.component-video-player {
|
|
1195
|
+
display: flex;
|
|
1196
|
+
width: 100%;
|
|
1197
|
+
height: 100%;
|
|
1198
|
+
min-height: 50px; }
|
|
1199
|
+
.component-video-player.blackground {
|
|
1200
|
+
background-color: #121212; }
|
|
1201
|
+
.component-video-player iframe {
|
|
1202
|
+
height: 100%;
|
|
1203
|
+
width: 100%; }
|
|
1204
|
+
|
|
1205
|
+
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
1206
|
+
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
1207
|
+
:export {
|
|
1208
|
+
white: #fefefe;
|
|
1209
|
+
darkenWhite: #efefef;
|
|
1210
|
+
black: #121212;
|
|
1211
|
+
transparent: rgba(0, 0, 0, 0);
|
|
1212
|
+
primary: #3fa110;
|
|
1213
|
+
primaryDark: #33820d;
|
|
1214
|
+
primaryLight: #d7e6c8;
|
|
1215
|
+
secondaryDarker: #323c32;
|
|
1216
|
+
secondaryDark: #5a645a;
|
|
1217
|
+
secondary: #828a82;
|
|
1218
|
+
secondaryLight: #cdd3cd;
|
|
1219
|
+
secondaryLighter: #f8f9f7;
|
|
1220
|
+
danger: #e60000;
|
|
1221
|
+
dangerLight: #ffb4b4;
|
|
1222
|
+
dangerDark: #ab4745;
|
|
1223
|
+
warning: #ffcd00;
|
|
1224
|
+
warningLight: #ffeb98;
|
|
1225
|
+
warningDark: #765f00; }
|
|
1226
|
+
|
|
1227
|
+
:root {
|
|
1228
|
+
--rowPadding: 0;
|
|
1229
|
+
--colPadding: 8px; }
|
|
1230
|
+
|
|
1231
|
+
:export {
|
|
1232
|
+
widthXs: 575.98px;
|
|
1233
|
+
widthSm: 767.98px;
|
|
1234
|
+
widthMd: 991.98px;
|
|
1235
|
+
widthLg: 1199.98px; }
|
|
1236
|
+
|
|
1237
|
+
body.sb-show-main.sb-main-padded {
|
|
1238
|
+
padding: 15px; }
|
|
1239
|
+
|
|
1240
|
+
*.nunito {
|
|
1241
|
+
font-family: "Nunito", sans-serif; }
|
|
1242
|
+
|
|
1243
|
+
*:not(.nunito) {
|
|
1244
|
+
font-family: "Exo 2", sans-serif; }
|
|
1245
|
+
|
|
1246
|
+
.document-grabbing {
|
|
1247
|
+
cursor: -webkit-grabbing !important;
|
|
1248
|
+
cursor: grabbing !important; }
|
|
1249
|
+
|
|
1250
|
+
h1 {
|
|
1251
|
+
font-size: 36px;
|
|
1252
|
+
font-weight: 600;
|
|
1253
|
+
margin: 0; }
|
|
1254
|
+
|
|
1255
|
+
h2 {
|
|
1256
|
+
font-size: 32px;
|
|
1257
|
+
font-weight: 500;
|
|
1258
|
+
margin: 0; }
|
|
1259
|
+
|
|
1260
|
+
h3 {
|
|
1261
|
+
font-size: 24px;
|
|
1262
|
+
font-weight: 500;
|
|
1263
|
+
margin: 0; }
|
|
1264
|
+
|
|
1265
|
+
h4 {
|
|
1266
|
+
font-size: 18px;
|
|
1267
|
+
font-weight: 500;
|
|
1268
|
+
margin: 0; }
|
|
1269
|
+
|
|
1270
|
+
h5 {
|
|
1271
|
+
font-family: "Nunito", sans-serif;
|
|
1272
|
+
font-size: 24px;
|
|
1273
|
+
font-weight: 400;
|
|
1274
|
+
margin: 0; }
|
|
1275
|
+
|
|
1276
|
+
.fade-enter {
|
|
1277
|
+
transition: opacity 0.2s ease;
|
|
1278
|
+
position: absolute;
|
|
1279
|
+
opacity: 0; }
|
|
1280
|
+
|
|
1281
|
+
.fade-enter-active {
|
|
1282
|
+
position: absolute;
|
|
1283
|
+
opacity: 1; }
|
|
1284
|
+
|
|
1285
|
+
.fade-exit {
|
|
1286
|
+
transition: opacity 0.15s ease;
|
|
1287
|
+
position: absolute;
|
|
1288
|
+
opacity: 1; }
|
|
1289
|
+
|
|
1290
|
+
.fade-exit-active {
|
|
1291
|
+
position: absolute;
|
|
1292
|
+
opacity: 0; }
|
|
1293
|
+
|
|
1294
|
+
.fade-exit-done {
|
|
1295
|
+
position: absolute;
|
|
1296
|
+
opacity: 0; }
|
|
1297
|
+
|
|
1298
|
+
* {
|
|
1299
|
+
box-sizing: border-box; }
|
|
1300
|
+
*::-webkit-scrollbar-track {
|
|
1301
|
+
background-color: #f8f9f7;
|
|
1302
|
+
border-radius: 20px; }
|
|
1303
|
+
*::-webkit-scrollbar {
|
|
1304
|
+
width: 12px;
|
|
1305
|
+
height: 12px; }
|
|
1306
|
+
*::-webkit-scrollbar-thumb {
|
|
1307
|
+
-webkit-transition: all 0.3s ease;
|
|
1308
|
+
transition: all 0.3s ease;
|
|
1309
|
+
border-radius: 10px;
|
|
1310
|
+
background-color: #cdd3cd;
|
|
1311
|
+
border-width: 3px;
|
|
1312
|
+
border-style: solid;
|
|
1313
|
+
border-color: #f8f9f7; }
|
|
1314
|
+
*::-webkit-scrollbar-thumb:hover {
|
|
1315
|
+
border-width: 2px;
|
|
1316
|
+
background-color: #bfc7bf; }
|
|
1317
|
+
*::-webkit-scrollbar-button {
|
|
1318
|
+
display: none; }
|
|
1319
|
+
|
|
1320
|
+
.scroll-white::-webkit-scrollbar-track {
|
|
1321
|
+
background-color: #fefefe;
|
|
1322
|
+
border-radius: 20px; }
|
|
1323
|
+
|
|
1324
|
+
.scroll-white::-webkit-scrollbar-thumb {
|
|
1325
|
+
background-color: #cdd3cd;
|
|
1326
|
+
border-color: #fefefe; }
|
|
1327
|
+
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
1328
|
+
background-color: #bfc7bf; }
|
|
1329
|
+
|
|
1330
|
+
.component-aconteceu {
|
|
1331
|
+
border-radius: 8px;
|
|
1332
|
+
width: 100%;
|
|
1333
|
+
height: 100%;
|
|
1334
|
+
box-shadow: 0 1px 2px 0 rgba(90, 100, 90, 0.3);
|
|
1335
|
+
display: flex;
|
|
1336
|
+
flex-direction: column;
|
|
1337
|
+
align-items: stretch;
|
|
1338
|
+
justify-content: stretch; }
|
|
1339
|
+
.component-aconteceu .component-aconteceu-header {
|
|
1340
|
+
-webkit-user-select: none;
|
|
1341
|
+
-moz-user-select: none;
|
|
1342
|
+
-ms-user-select: none;
|
|
1343
|
+
user-select: none;
|
|
1344
|
+
height: 48px;
|
|
1345
|
+
border-radius: 8px 8px 0 0;
|
|
1346
|
+
display: flex;
|
|
1347
|
+
align-items: center;
|
|
1348
|
+
justify-content: flex-start;
|
|
1349
|
+
padding: 8px;
|
|
1350
|
+
background-color: #f06666;
|
|
1351
|
+
color: #fefefe; }
|
|
1352
|
+
.component-aconteceu .component-aconteceu-header svg {
|
|
1353
|
+
width: 20px;
|
|
1354
|
+
height: 20px; }
|
|
1355
|
+
.component-aconteceu .component-aconteceu-header label {
|
|
1356
|
+
font-weight: 700;
|
|
1357
|
+
font-size: 24px;
|
|
1358
|
+
margin: 0 0 0 8px; }
|
|
1359
|
+
.component-aconteceu .component-aconteceu-content {
|
|
1360
|
+
border-radius: 0 0 8px 8px;
|
|
1361
|
+
position: relative;
|
|
1362
|
+
background-color: #fefefe;
|
|
1363
|
+
padding: 4px 10px 30px;
|
|
1364
|
+
height: calc(100% - 50px);
|
|
1365
|
+
display: flex;
|
|
1366
|
+
flex-direction: column;
|
|
1367
|
+
align-items: stretch;
|
|
1368
|
+
justify-content: space-between; }
|
|
1369
|
+
.component-aconteceu .component-aconteceu-content .component-aconteceu-text {
|
|
1370
|
+
display: block;
|
|
1371
|
+
padding: 4px 4px 4px;
|
|
1372
|
+
margin-bottom: 4px;
|
|
1373
|
+
white-space: nowrap;
|
|
1374
|
+
overflow: hidden;
|
|
1375
|
+
text-overflow: ellipsis;
|
|
1376
|
+
font-weight: 600;
|
|
1377
|
+
color: #323c32; }
|
|
1378
|
+
.component-aconteceu .component-aconteceu-content .component-aconteceu-video {
|
|
1379
|
+
height: calc(100% - 27px); }
|
|
1380
|
+
.component-aconteceu .component-aconteceu-content .component-aconteceu-video.full-height {
|
|
1381
|
+
height: 100%; }
|
|
1382
|
+
.component-aconteceu .component-aconteceu-content iframe {
|
|
1383
|
+
height: 100% !important; }
|
|
1384
|
+
.component-aconteceu .component-aconteceu-content .component-aconteceu-see-more {
|
|
1385
|
+
position: absolute;
|
|
1386
|
+
bottom: 0;
|
|
1387
|
+
right: 0;
|
|
1388
|
+
font-size: 14px;
|
|
1389
|
+
font-weight: 700;
|
|
1390
|
+
outline: none;
|
|
1391
|
+
border: none;
|
|
1392
|
+
cursor: pointer;
|
|
1393
|
+
background-color: #fefefe;
|
|
1394
|
+
padding: 5px 10px 5px;
|
|
1395
|
+
border-radius: 20px;
|
|
1396
|
+
color: #323c32;
|
|
1397
|
+
transition: transform 0.3s ease;
|
|
1398
|
+
transform-origin: center;
|
|
1399
|
+
-webkit-user-select: none;
|
|
1400
|
+
-moz-user-select: none;
|
|
1401
|
+
-ms-user-select: none;
|
|
1402
|
+
user-select: none; }
|
|
1403
|
+
.component-aconteceu .component-aconteceu-content .component-aconteceu-see-more:active {
|
|
1404
|
+
transform: scale(0.95); }
|
|
1405
|
+
.component-aconteceu .component-aconteceu-content .component-aconteceu-loader {
|
|
1406
|
+
position: absolute;
|
|
1407
|
+
top: 0;
|
|
1408
|
+
left: 0;
|
|
1409
|
+
width: 100%;
|
|
1410
|
+
height: 100%;
|
|
1411
|
+
background-color: #fefefe;
|
|
1412
|
+
display: flex;
|
|
1413
|
+
align-items: center;
|
|
1414
|
+
justify-content: center; }
|
|
1415
|
+
|
|
1416
|
+
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
1417
|
+
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
1418
|
+
:export {
|
|
1419
|
+
white: #fefefe;
|
|
1420
|
+
darkenWhite: #efefef;
|
|
1421
|
+
black: #121212;
|
|
1422
|
+
transparent: rgba(0, 0, 0, 0);
|
|
1423
|
+
primary: #3fa110;
|
|
1424
|
+
primaryDark: #33820d;
|
|
1425
|
+
primaryLight: #d7e6c8;
|
|
1426
|
+
secondaryDarker: #323c32;
|
|
1427
|
+
secondaryDark: #5a645a;
|
|
1428
|
+
secondary: #828a82;
|
|
1429
|
+
secondaryLight: #cdd3cd;
|
|
1430
|
+
secondaryLighter: #f8f9f7;
|
|
1431
|
+
danger: #e60000;
|
|
1432
|
+
dangerLight: #ffb4b4;
|
|
1433
|
+
dangerDark: #ab4745;
|
|
1434
|
+
warning: #ffcd00;
|
|
1435
|
+
warningLight: #ffeb98;
|
|
1436
|
+
warningDark: #765f00; }
|
|
1437
|
+
|
|
1438
|
+
:root {
|
|
1439
|
+
--rowPadding: 0;
|
|
1440
|
+
--colPadding: 8px; }
|
|
1441
|
+
|
|
1442
|
+
:export {
|
|
1443
|
+
widthXs: 575.98px;
|
|
1444
|
+
widthSm: 767.98px;
|
|
1445
|
+
widthMd: 991.98px;
|
|
1446
|
+
widthLg: 1199.98px; }
|
|
1447
|
+
|
|
1448
|
+
body.sb-show-main.sb-main-padded {
|
|
1449
|
+
padding: 15px; }
|
|
1450
|
+
|
|
1451
|
+
*.nunito {
|
|
1452
|
+
font-family: "Nunito", sans-serif; }
|
|
1453
|
+
|
|
1454
|
+
*:not(.nunito) {
|
|
1455
|
+
font-family: "Exo 2", sans-serif; }
|
|
1456
|
+
|
|
1457
|
+
.document-grabbing {
|
|
1458
|
+
cursor: -webkit-grabbing !important;
|
|
1459
|
+
cursor: grabbing !important; }
|
|
1460
|
+
|
|
1461
|
+
h1 {
|
|
1462
|
+
font-size: 36px;
|
|
1463
|
+
font-weight: 600;
|
|
1464
|
+
margin: 0; }
|
|
1465
|
+
|
|
1466
|
+
h2 {
|
|
1467
|
+
font-size: 32px;
|
|
1468
|
+
font-weight: 500;
|
|
1469
|
+
margin: 0; }
|
|
1470
|
+
|
|
1471
|
+
h3 {
|
|
1472
|
+
font-size: 24px;
|
|
1473
|
+
font-weight: 500;
|
|
1474
|
+
margin: 0; }
|
|
1475
|
+
|
|
1476
|
+
h4 {
|
|
1477
|
+
font-size: 18px;
|
|
1478
|
+
font-weight: 500;
|
|
1479
|
+
margin: 0; }
|
|
1480
|
+
|
|
1481
|
+
h5 {
|
|
1482
|
+
font-family: "Nunito", sans-serif;
|
|
1483
|
+
font-size: 24px;
|
|
1484
|
+
font-weight: 400;
|
|
1485
|
+
margin: 0; }
|
|
1486
|
+
|
|
1487
|
+
.fade-enter {
|
|
1488
|
+
transition: opacity 0.2s ease;
|
|
1489
|
+
position: absolute;
|
|
1490
|
+
opacity: 0; }
|
|
1491
|
+
|
|
1492
|
+
.fade-enter-active {
|
|
1493
|
+
position: absolute;
|
|
1494
|
+
opacity: 1; }
|
|
1495
|
+
|
|
1496
|
+
.fade-exit {
|
|
1497
|
+
transition: opacity 0.15s ease;
|
|
1498
|
+
position: absolute;
|
|
1499
|
+
opacity: 1; }
|
|
1500
|
+
|
|
1501
|
+
.fade-exit-active {
|
|
1502
|
+
position: absolute;
|
|
1503
|
+
opacity: 0; }
|
|
1504
|
+
|
|
1505
|
+
.fade-exit-done {
|
|
1506
|
+
position: absolute;
|
|
1507
|
+
opacity: 0; }
|
|
1508
|
+
|
|
1509
|
+
* {
|
|
1510
|
+
box-sizing: border-box; }
|
|
1511
|
+
*::-webkit-scrollbar-track {
|
|
1512
|
+
background-color: #f8f9f7;
|
|
1513
|
+
border-radius: 20px; }
|
|
1514
|
+
*::-webkit-scrollbar {
|
|
1515
|
+
width: 12px;
|
|
1516
|
+
height: 12px; }
|
|
1517
|
+
*::-webkit-scrollbar-thumb {
|
|
1518
|
+
-webkit-transition: all 0.3s ease;
|
|
1519
|
+
transition: all 0.3s ease;
|
|
1520
|
+
border-radius: 10px;
|
|
1521
|
+
background-color: #cdd3cd;
|
|
1522
|
+
border-width: 3px;
|
|
1523
|
+
border-style: solid;
|
|
1524
|
+
border-color: #f8f9f7; }
|
|
1525
|
+
*::-webkit-scrollbar-thumb:hover {
|
|
1526
|
+
border-width: 2px;
|
|
1527
|
+
background-color: #bfc7bf; }
|
|
1528
|
+
*::-webkit-scrollbar-button {
|
|
1529
|
+
display: none; }
|
|
1530
|
+
|
|
1531
|
+
.scroll-white::-webkit-scrollbar-track {
|
|
1532
|
+
background-color: #fefefe;
|
|
1533
|
+
border-radius: 20px; }
|
|
1534
|
+
|
|
1535
|
+
.scroll-white::-webkit-scrollbar-thumb {
|
|
1536
|
+
background-color: #cdd3cd;
|
|
1537
|
+
border-color: #fefefe; }
|
|
1538
|
+
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
1539
|
+
background-color: #bfc7bf; }
|
|
1540
|
+
|
|
1541
|
+
.action-card {
|
|
1542
|
+
position: relative;
|
|
1543
|
+
border-radius: 8px;
|
|
1544
|
+
padding: 16px 24px;
|
|
1545
|
+
width: 100%; }
|
|
1546
|
+
.action-card .action {
|
|
1547
|
+
margin-top: 12px; }
|
|
1548
|
+
.action-card .bar {
|
|
1549
|
+
position: absolute;
|
|
1550
|
+
left: 0;
|
|
1551
|
+
top: 0;
|
|
1552
|
+
width: 8px;
|
|
980
1553
|
border-top-left-radius: 8px;
|
|
981
1554
|
border-bottom-left-radius: 8px;
|
|
982
1555
|
height: 100%; }
|
|
@@ -8100,33 +8673,6 @@ h5 {
|
|
|
8100
8673
|
opacity: 0;
|
|
8101
8674
|
transform: translateY(10px); }
|
|
8102
8675
|
|
|
8103
|
-
.refresh-icon {
|
|
8104
|
-
fill: currentColor;
|
|
8105
|
-
width: 1em;
|
|
8106
|
-
height: 1em;
|
|
8107
|
-
display: inline-block;
|
|
8108
|
-
font-size: 1.5rem;
|
|
8109
|
-
flex-shrink: 0;
|
|
8110
|
-
-webkit-user-select: none;
|
|
8111
|
-
-moz-user-select: none;
|
|
8112
|
-
-ms-user-select: none;
|
|
8113
|
-
user-select: none; }
|
|
8114
|
-
.refresh-icon.animate {
|
|
8115
|
-
-webkit-animation: spin 0.4s linear infinite;
|
|
8116
|
-
animation: spin 0.4s linear infinite; }
|
|
8117
|
-
|
|
8118
|
-
@-webkit-keyframes spin {
|
|
8119
|
-
0% {
|
|
8120
|
-
transform: rotateZ(0); }
|
|
8121
|
-
100% {
|
|
8122
|
-
transform: rotateZ(180deg); } }
|
|
8123
|
-
|
|
8124
|
-
@keyframes spin {
|
|
8125
|
-
0% {
|
|
8126
|
-
transform: rotateZ(0); }
|
|
8127
|
-
100% {
|
|
8128
|
-
transform: rotateZ(180deg); } }
|
|
8129
|
-
|
|
8130
8676
|
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
8131
8677
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
8132
8678
|
:export {
|
|
@@ -9694,8 +10240,10 @@ h5 {
|
|
|
9694
10240
|
display: flex;
|
|
9695
10241
|
flex-flow: column; }
|
|
9696
10242
|
.full-height-container .full-height-container-row-header {
|
|
9697
|
-
flex: 0 1 auto;
|
|
10243
|
+
flex: 0 1 auto;
|
|
10244
|
+
z-index: +2; }
|
|
9698
10245
|
.full-height-container .full-height-container-row-content {
|
|
10246
|
+
z-index: +1;
|
|
9699
10247
|
display: flex;
|
|
9700
10248
|
flex-flow: column;
|
|
9701
10249
|
flex: 1 1 auto;
|
|
@@ -9709,7 +10257,8 @@ h5 {
|
|
|
9709
10257
|
padding-left: 12px;
|
|
9710
10258
|
padding-right: 12px; }
|
|
9711
10259
|
.full-height-container .full-height-container-row-footer {
|
|
9712
|
-
flex: 0 1 auto;
|
|
10260
|
+
flex: 0 1 auto;
|
|
10261
|
+
z-index: +2; }
|
|
9713
10262
|
|
|
9714
10263
|
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
9715
10264
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
@@ -11370,240 +11919,74 @@ h5 {
|
|
|
11370
11919
|
.component-input-area-input:disabled:-ms-input-placeholder {
|
|
11371
11920
|
color: #828a82 !important; }
|
|
11372
11921
|
.component-input-area-input:disabled::placeholder {
|
|
11373
|
-
color: #828a82 !important; }
|
|
11374
|
-
|
|
11375
|
-
.component-input-area:not(.component-input-area-error):not(.force-focus):not(.component-input-area-disabled):not(.component-input-area-loading) .component-input-area-input-container:focus-within::before {
|
|
11376
|
-
opacity: 1;
|
|
11377
|
-
visibility: visible;
|
|
11378
|
-
content: '';
|
|
11379
|
-
height: 2px;
|
|
11380
|
-
display: block;
|
|
11381
|
-
position: absolute;
|
|
11382
|
-
bottom: -2px;
|
|
11383
|
-
background-color: #33820d;
|
|
11384
|
-
-webkit-animation: inputFocus 0.3s ease forwards;
|
|
11385
|
-
animation: inputFocus 0.3s ease forwards; }
|
|
11386
|
-
|
|
11387
|
-
.component-input-area:not(.component-input-area-error):not(.force-focus):not(.component-input-area-disabled):not(.component-input-area-loading) .component-input-area-input-container:not(:focus-within):not(.force-focus)::before {
|
|
11388
|
-
opacity: 0;
|
|
11389
|
-
content: '';
|
|
11390
|
-
height: 2px;
|
|
11391
|
-
display: block;
|
|
11392
|
-
position: absolute;
|
|
11393
|
-
bottom: -2px;
|
|
11394
|
-
background-color: #33820d;
|
|
11395
|
-
-webkit-animation: inputFocusReverse 0.3s ease forwards;
|
|
11396
|
-
animation: inputFocusReverse 0.3s ease forwards; }
|
|
11397
|
-
|
|
11398
|
-
.component-input-area:not(.component-input-area-error).force-focus .component-input-area-input-container::before {
|
|
11399
|
-
opacity: 1;
|
|
11400
|
-
visibility: visible;
|
|
11401
|
-
content: '';
|
|
11402
|
-
height: 2px;
|
|
11403
|
-
display: block;
|
|
11404
|
-
position: absolute;
|
|
11405
|
-
bottom: -2px;
|
|
11406
|
-
background-color: #33820d;
|
|
11407
|
-
-webkit-animation: inputFocus 0.3s ease forwards;
|
|
11408
|
-
animation: inputFocus 0.3s ease forwards; }
|
|
11409
|
-
|
|
11410
|
-
@-webkit-keyframes inputFocus {
|
|
11411
|
-
0% {
|
|
11412
|
-
width: 0;
|
|
11413
|
-
left: 50%; }
|
|
11414
|
-
100% {
|
|
11415
|
-
left: 0;
|
|
11416
|
-
width: 100%; } }
|
|
11417
|
-
|
|
11418
|
-
@keyframes inputFocus {
|
|
11419
|
-
0% {
|
|
11420
|
-
width: 0;
|
|
11421
|
-
left: 50%; }
|
|
11422
|
-
100% {
|
|
11423
|
-
left: 0;
|
|
11424
|
-
width: 100%; } }
|
|
11425
|
-
|
|
11426
|
-
@-webkit-keyframes inputFocusReverse {
|
|
11427
|
-
0% {
|
|
11428
|
-
left: 0;
|
|
11429
|
-
width: 100%; }
|
|
11430
|
-
100% {
|
|
11431
|
-
width: 0;
|
|
11432
|
-
left: 50%; } }
|
|
11433
|
-
|
|
11434
|
-
@keyframes inputFocusReverse {
|
|
11435
|
-
0% {
|
|
11436
|
-
left: 0;
|
|
11437
|
-
width: 100%; }
|
|
11438
|
-
100% {
|
|
11439
|
-
width: 0;
|
|
11440
|
-
left: 50%; } }
|
|
11441
|
-
|
|
11442
|
-
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
11443
|
-
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
11444
|
-
:export {
|
|
11445
|
-
white: #fefefe;
|
|
11446
|
-
darkenWhite: #efefef;
|
|
11447
|
-
black: #121212;
|
|
11448
|
-
transparent: rgba(0, 0, 0, 0);
|
|
11449
|
-
primary: #3fa110;
|
|
11450
|
-
primaryDark: #33820d;
|
|
11451
|
-
primaryLight: #d7e6c8;
|
|
11452
|
-
secondaryDarker: #323c32;
|
|
11453
|
-
secondaryDark: #5a645a;
|
|
11454
|
-
secondary: #828a82;
|
|
11455
|
-
secondaryLight: #cdd3cd;
|
|
11456
|
-
secondaryLighter: #f8f9f7;
|
|
11457
|
-
danger: #e60000;
|
|
11458
|
-
dangerLight: #ffb4b4;
|
|
11459
|
-
dangerDark: #ab4745;
|
|
11460
|
-
warning: #ffcd00;
|
|
11461
|
-
warningLight: #ffeb98;
|
|
11462
|
-
warningDark: #765f00; }
|
|
11463
|
-
|
|
11464
|
-
:root {
|
|
11465
|
-
--rowPadding: 0;
|
|
11466
|
-
--colPadding: 8px; }
|
|
11467
|
-
|
|
11468
|
-
:export {
|
|
11469
|
-
widthXs: 575.98px;
|
|
11470
|
-
widthSm: 767.98px;
|
|
11471
|
-
widthMd: 991.98px;
|
|
11472
|
-
widthLg: 1199.98px; }
|
|
11473
|
-
|
|
11474
|
-
body.sb-show-main.sb-main-padded {
|
|
11475
|
-
padding: 15px; }
|
|
11476
|
-
|
|
11477
|
-
*.nunito {
|
|
11478
|
-
font-family: "Nunito", sans-serif; }
|
|
11479
|
-
|
|
11480
|
-
*:not(.nunito) {
|
|
11481
|
-
font-family: "Exo 2", sans-serif; }
|
|
11482
|
-
|
|
11483
|
-
.document-grabbing {
|
|
11484
|
-
cursor: -webkit-grabbing !important;
|
|
11485
|
-
cursor: grabbing !important; }
|
|
11486
|
-
|
|
11487
|
-
h1 {
|
|
11488
|
-
font-size: 36px;
|
|
11489
|
-
font-weight: 600;
|
|
11490
|
-
margin: 0; }
|
|
11491
|
-
|
|
11492
|
-
h2 {
|
|
11493
|
-
font-size: 32px;
|
|
11494
|
-
font-weight: 500;
|
|
11495
|
-
margin: 0; }
|
|
11496
|
-
|
|
11497
|
-
h3 {
|
|
11498
|
-
font-size: 24px;
|
|
11499
|
-
font-weight: 500;
|
|
11500
|
-
margin: 0; }
|
|
11501
|
-
|
|
11502
|
-
h4 {
|
|
11503
|
-
font-size: 18px;
|
|
11504
|
-
font-weight: 500;
|
|
11505
|
-
margin: 0; }
|
|
11506
|
-
|
|
11507
|
-
h5 {
|
|
11508
|
-
font-family: "Nunito", sans-serif;
|
|
11509
|
-
font-size: 24px;
|
|
11510
|
-
font-weight: 400;
|
|
11511
|
-
margin: 0; }
|
|
11512
|
-
|
|
11513
|
-
.fade-enter {
|
|
11514
|
-
transition: opacity 0.2s ease;
|
|
11515
|
-
position: absolute;
|
|
11516
|
-
opacity: 0; }
|
|
11517
|
-
|
|
11518
|
-
.fade-enter-active {
|
|
11519
|
-
position: absolute;
|
|
11520
|
-
opacity: 1; }
|
|
11922
|
+
color: #828a82 !important; }
|
|
11521
11923
|
|
|
11522
|
-
.
|
|
11523
|
-
|
|
11924
|
+
.component-input-area:not(.component-input-area-error):not(.force-focus):not(.component-input-area-disabled):not(.component-input-area-loading) .component-input-area-input-container:focus-within::before {
|
|
11925
|
+
opacity: 1;
|
|
11926
|
+
visibility: visible;
|
|
11927
|
+
content: '';
|
|
11928
|
+
height: 2px;
|
|
11929
|
+
display: block;
|
|
11524
11930
|
position: absolute;
|
|
11525
|
-
|
|
11931
|
+
bottom: -2px;
|
|
11932
|
+
background-color: #33820d;
|
|
11933
|
+
-webkit-animation: inputFocus 0.3s ease forwards;
|
|
11934
|
+
animation: inputFocus 0.3s ease forwards; }
|
|
11526
11935
|
|
|
11527
|
-
.
|
|
11936
|
+
.component-input-area:not(.component-input-area-error):not(.force-focus):not(.component-input-area-disabled):not(.component-input-area-loading) .component-input-area-input-container:not(:focus-within):not(.force-focus)::before {
|
|
11937
|
+
opacity: 0;
|
|
11938
|
+
content: '';
|
|
11939
|
+
height: 2px;
|
|
11940
|
+
display: block;
|
|
11528
11941
|
position: absolute;
|
|
11529
|
-
|
|
11942
|
+
bottom: -2px;
|
|
11943
|
+
background-color: #33820d;
|
|
11944
|
+
-webkit-animation: inputFocusReverse 0.3s ease forwards;
|
|
11945
|
+
animation: inputFocusReverse 0.3s ease forwards; }
|
|
11530
11946
|
|
|
11531
|
-
.
|
|
11947
|
+
.component-input-area:not(.component-input-area-error).force-focus .component-input-area-input-container::before {
|
|
11948
|
+
opacity: 1;
|
|
11949
|
+
visibility: visible;
|
|
11950
|
+
content: '';
|
|
11951
|
+
height: 2px;
|
|
11952
|
+
display: block;
|
|
11532
11953
|
position: absolute;
|
|
11533
|
-
|
|
11534
|
-
|
|
11535
|
-
|
|
11536
|
-
|
|
11537
|
-
*::-webkit-scrollbar-track {
|
|
11538
|
-
background-color: #f8f9f7;
|
|
11539
|
-
border-radius: 20px; }
|
|
11540
|
-
*::-webkit-scrollbar {
|
|
11541
|
-
width: 12px;
|
|
11542
|
-
height: 12px; }
|
|
11543
|
-
*::-webkit-scrollbar-thumb {
|
|
11544
|
-
-webkit-transition: all 0.3s ease;
|
|
11545
|
-
transition: all 0.3s ease;
|
|
11546
|
-
border-radius: 10px;
|
|
11547
|
-
background-color: #cdd3cd;
|
|
11548
|
-
border-width: 3px;
|
|
11549
|
-
border-style: solid;
|
|
11550
|
-
border-color: #f8f9f7; }
|
|
11551
|
-
*::-webkit-scrollbar-thumb:hover {
|
|
11552
|
-
border-width: 2px;
|
|
11553
|
-
background-color: #bfc7bf; }
|
|
11554
|
-
*::-webkit-scrollbar-button {
|
|
11555
|
-
display: none; }
|
|
11556
|
-
|
|
11557
|
-
.scroll-white::-webkit-scrollbar-track {
|
|
11558
|
-
background-color: #fefefe;
|
|
11559
|
-
border-radius: 20px; }
|
|
11560
|
-
|
|
11561
|
-
.scroll-white::-webkit-scrollbar-thumb {
|
|
11562
|
-
background-color: #cdd3cd;
|
|
11563
|
-
border-color: #fefefe; }
|
|
11564
|
-
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
11565
|
-
background-color: #bfc7bf; }
|
|
11954
|
+
bottom: -2px;
|
|
11955
|
+
background-color: #33820d;
|
|
11956
|
+
-webkit-animation: inputFocus 0.3s ease forwards;
|
|
11957
|
+
animation: inputFocus 0.3s ease forwards; }
|
|
11566
11958
|
|
|
11567
|
-
|
|
11568
|
-
|
|
11569
|
-
|
|
11570
|
-
|
|
11571
|
-
|
|
11572
|
-
|
|
11573
|
-
|
|
11574
|
-
-moz-user-select: none;
|
|
11575
|
-
-ms-user-select: none;
|
|
11576
|
-
user-select: none;
|
|
11577
|
-
fill: none;
|
|
11578
|
-
stroke-width: 6;
|
|
11579
|
-
transform: rotateZ(-90deg); }
|
|
11580
|
-
.percent-loader-icon circle:first-of-type {
|
|
11581
|
-
stroke: #cdd3cd; }
|
|
11582
|
-
.percent-loader-icon circle:last-of-type {
|
|
11583
|
-
stroke-linecap: round;
|
|
11584
|
-
stroke-dasharray: 264;
|
|
11585
|
-
transition: stroke-dashoffset 0.3s ease, stroke-dasharray 0.3s ease; }
|
|
11586
|
-
.percent-loader-icon path {
|
|
11587
|
-
stroke-linecap: round;
|
|
11588
|
-
stroke-linejoin: round;
|
|
11589
|
-
transform: translate(390px, -676px) rotateZ(90deg);
|
|
11590
|
-
transition: stroke-dashoffset 0.3s ease, stroke-dasharray 0.3s ease; }
|
|
11959
|
+
@-webkit-keyframes inputFocus {
|
|
11960
|
+
0% {
|
|
11961
|
+
width: 0;
|
|
11962
|
+
left: 50%; }
|
|
11963
|
+
100% {
|
|
11964
|
+
left: 0;
|
|
11965
|
+
width: 100%; } }
|
|
11591
11966
|
|
|
11592
|
-
|
|
11593
|
-
|
|
11594
|
-
|
|
11967
|
+
@keyframes inputFocus {
|
|
11968
|
+
0% {
|
|
11969
|
+
width: 0;
|
|
11970
|
+
left: 50%; }
|
|
11971
|
+
100% {
|
|
11972
|
+
left: 0;
|
|
11973
|
+
width: 100%; } }
|
|
11595
11974
|
|
|
11596
|
-
@-webkit-keyframes
|
|
11975
|
+
@-webkit-keyframes inputFocusReverse {
|
|
11597
11976
|
0% {
|
|
11598
|
-
|
|
11977
|
+
left: 0;
|
|
11978
|
+
width: 100%; }
|
|
11599
11979
|
100% {
|
|
11600
|
-
|
|
11980
|
+
width: 0;
|
|
11981
|
+
left: 50%; } }
|
|
11601
11982
|
|
|
11602
|
-
@keyframes
|
|
11983
|
+
@keyframes inputFocusReverse {
|
|
11603
11984
|
0% {
|
|
11604
|
-
|
|
11985
|
+
left: 0;
|
|
11986
|
+
width: 100%; }
|
|
11605
11987
|
100% {
|
|
11606
|
-
|
|
11988
|
+
width: 0;
|
|
11989
|
+
left: 50%; } }
|
|
11607
11990
|
|
|
11608
11991
|
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
11609
11992
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
@@ -12173,143 +12556,6 @@ h5 {
|
|
|
12173
12556
|
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
12174
12557
|
background-color: #bfc7bf; }
|
|
12175
12558
|
|
|
12176
|
-
.sicredi-logo {
|
|
12177
|
-
display: flex;
|
|
12178
|
-
align-items: center;
|
|
12179
|
-
justify-content: center; }
|
|
12180
|
-
.sicredi-logo #Caminho_17 {
|
|
12181
|
-
transform: translateX(286.845px) translateY(657.948px);
|
|
12182
|
-
transform-origin: left center;
|
|
12183
|
-
transition: transform 0.3s ease, opacity 0.3s ease; }
|
|
12184
|
-
.sicredi-logo #Caminho_17.sicredi-logo-hide-letters {
|
|
12185
|
-
transform: translateX(270px) translateY(657.948px);
|
|
12186
|
-
opacity: 0; }
|
|
12187
|
-
|
|
12188
|
-
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
12189
|
-
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
12190
|
-
:export {
|
|
12191
|
-
white: #fefefe;
|
|
12192
|
-
darkenWhite: #efefef;
|
|
12193
|
-
black: #121212;
|
|
12194
|
-
transparent: rgba(0, 0, 0, 0);
|
|
12195
|
-
primary: #3fa110;
|
|
12196
|
-
primaryDark: #33820d;
|
|
12197
|
-
primaryLight: #d7e6c8;
|
|
12198
|
-
secondaryDarker: #323c32;
|
|
12199
|
-
secondaryDark: #5a645a;
|
|
12200
|
-
secondary: #828a82;
|
|
12201
|
-
secondaryLight: #cdd3cd;
|
|
12202
|
-
secondaryLighter: #f8f9f7;
|
|
12203
|
-
danger: #e60000;
|
|
12204
|
-
dangerLight: #ffb4b4;
|
|
12205
|
-
dangerDark: #ab4745;
|
|
12206
|
-
warning: #ffcd00;
|
|
12207
|
-
warningLight: #ffeb98;
|
|
12208
|
-
warningDark: #765f00; }
|
|
12209
|
-
|
|
12210
|
-
:root {
|
|
12211
|
-
--rowPadding: 0;
|
|
12212
|
-
--colPadding: 8px; }
|
|
12213
|
-
|
|
12214
|
-
:export {
|
|
12215
|
-
widthXs: 575.98px;
|
|
12216
|
-
widthSm: 767.98px;
|
|
12217
|
-
widthMd: 991.98px;
|
|
12218
|
-
widthLg: 1199.98px; }
|
|
12219
|
-
|
|
12220
|
-
body.sb-show-main.sb-main-padded {
|
|
12221
|
-
padding: 15px; }
|
|
12222
|
-
|
|
12223
|
-
*.nunito {
|
|
12224
|
-
font-family: "Nunito", sans-serif; }
|
|
12225
|
-
|
|
12226
|
-
*:not(.nunito) {
|
|
12227
|
-
font-family: "Exo 2", sans-serif; }
|
|
12228
|
-
|
|
12229
|
-
.document-grabbing {
|
|
12230
|
-
cursor: -webkit-grabbing !important;
|
|
12231
|
-
cursor: grabbing !important; }
|
|
12232
|
-
|
|
12233
|
-
h1 {
|
|
12234
|
-
font-size: 36px;
|
|
12235
|
-
font-weight: 600;
|
|
12236
|
-
margin: 0; }
|
|
12237
|
-
|
|
12238
|
-
h2 {
|
|
12239
|
-
font-size: 32px;
|
|
12240
|
-
font-weight: 500;
|
|
12241
|
-
margin: 0; }
|
|
12242
|
-
|
|
12243
|
-
h3 {
|
|
12244
|
-
font-size: 24px;
|
|
12245
|
-
font-weight: 500;
|
|
12246
|
-
margin: 0; }
|
|
12247
|
-
|
|
12248
|
-
h4 {
|
|
12249
|
-
font-size: 18px;
|
|
12250
|
-
font-weight: 500;
|
|
12251
|
-
margin: 0; }
|
|
12252
|
-
|
|
12253
|
-
h5 {
|
|
12254
|
-
font-family: "Nunito", sans-serif;
|
|
12255
|
-
font-size: 24px;
|
|
12256
|
-
font-weight: 400;
|
|
12257
|
-
margin: 0; }
|
|
12258
|
-
|
|
12259
|
-
.fade-enter {
|
|
12260
|
-
transition: opacity 0.2s ease;
|
|
12261
|
-
position: absolute;
|
|
12262
|
-
opacity: 0; }
|
|
12263
|
-
|
|
12264
|
-
.fade-enter-active {
|
|
12265
|
-
position: absolute;
|
|
12266
|
-
opacity: 1; }
|
|
12267
|
-
|
|
12268
|
-
.fade-exit {
|
|
12269
|
-
transition: opacity 0.15s ease;
|
|
12270
|
-
position: absolute;
|
|
12271
|
-
opacity: 1; }
|
|
12272
|
-
|
|
12273
|
-
.fade-exit-active {
|
|
12274
|
-
position: absolute;
|
|
12275
|
-
opacity: 0; }
|
|
12276
|
-
|
|
12277
|
-
.fade-exit-done {
|
|
12278
|
-
position: absolute;
|
|
12279
|
-
opacity: 0; }
|
|
12280
|
-
|
|
12281
|
-
* {
|
|
12282
|
-
box-sizing: border-box; }
|
|
12283
|
-
*::-webkit-scrollbar-track {
|
|
12284
|
-
background-color: #f8f9f7;
|
|
12285
|
-
border-radius: 20px; }
|
|
12286
|
-
*::-webkit-scrollbar {
|
|
12287
|
-
width: 12px;
|
|
12288
|
-
height: 12px; }
|
|
12289
|
-
*::-webkit-scrollbar-thumb {
|
|
12290
|
-
-webkit-transition: all 0.3s ease;
|
|
12291
|
-
transition: all 0.3s ease;
|
|
12292
|
-
border-radius: 10px;
|
|
12293
|
-
background-color: #cdd3cd;
|
|
12294
|
-
border-width: 3px;
|
|
12295
|
-
border-style: solid;
|
|
12296
|
-
border-color: #f8f9f7; }
|
|
12297
|
-
*::-webkit-scrollbar-thumb:hover {
|
|
12298
|
-
border-width: 2px;
|
|
12299
|
-
background-color: #bfc7bf; }
|
|
12300
|
-
*::-webkit-scrollbar-button {
|
|
12301
|
-
display: none; }
|
|
12302
|
-
|
|
12303
|
-
.scroll-white::-webkit-scrollbar-track {
|
|
12304
|
-
background-color: #fefefe;
|
|
12305
|
-
border-radius: 20px; }
|
|
12306
|
-
|
|
12307
|
-
.scroll-white::-webkit-scrollbar-thumb {
|
|
12308
|
-
background-color: #cdd3cd;
|
|
12309
|
-
border-color: #fefefe; }
|
|
12310
|
-
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
12311
|
-
background-color: #bfc7bf; }
|
|
12312
|
-
|
|
12313
12559
|
.component-menu-toggle {
|
|
12314
12560
|
transition: left 0.3s ease;
|
|
12315
12561
|
position: fixed;
|