@aivenio/aquarium 1.31.0 → 1.33.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,21 +1,23 @@
1
+
2
+
3
+ @import 'https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap';
4
+ @import 'https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap';
1
5
  /*
2
6
  ! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com
3
- *//*
7
+ */
8
+ /*
4
9
  1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
5
10
  2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
6
11
  */
7
-
8
12
  *,::before,::after {
9
13
  box-sizing: border-box; /* 1 */
10
14
  border-width: 0; /* 2 */
11
15
  border-style: solid; /* 2 */
12
16
  border-color: currentColor; /* 2 */
13
17
  }
14
-
15
18
  ::before,::after {
16
19
  --tw-content: '';
17
20
  }
18
-
19
21
  /*
20
22
  1. Use a consistent sensible line-height in all browsers.
21
23
  2. Prevent adjustments of font size after orientation changes in iOS.
@@ -23,7 +25,6 @@
23
25
  4. Use the user's configured `sans` font-family by default.
24
26
  5. Use the user's configured `sans` font-feature-settings by default.
25
27
  */
26
-
27
28
  html {
28
29
  line-height: 1.5; /* 1 */
29
30
  -webkit-text-size-adjust: 100%; /* 2 */
@@ -33,119 +34,95 @@ html {
33
34
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
34
35
  font-feature-settings: normal; /* 5 */
35
36
  }
36
-
37
37
  /*
38
38
  1. Remove the margin in all browsers.
39
39
  2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
40
40
  */
41
-
42
41
  body {
43
42
  margin: 0; /* 1 */
44
43
  line-height: inherit; /* 2 */
45
44
  }
46
-
47
45
  /*
48
46
  1. Add the correct height in Firefox.
49
47
  2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
50
48
  3. Ensure horizontal rules are visible by default.
51
49
  */
52
-
53
50
  hr {
54
51
  height: 0; /* 1 */
55
52
  color: inherit; /* 2 */
56
53
  border-top-width: 1px; /* 3 */
57
54
  }
58
-
59
55
  /*
60
56
  Add the correct text decoration in Chrome, Edge, and Safari.
61
57
  */
62
-
63
58
  abbr:where([title]) {
64
59
  -webkit-text-decoration: underline dotted;
65
60
  text-decoration: underline dotted;
66
61
  }
67
-
68
62
  /*
69
63
  Remove the default font size and weight for headings.
70
64
  */
71
-
72
65
  h1,h2,h3,h4,h5,h6 {
73
66
  font-size: inherit;
74
67
  font-weight: inherit;
75
68
  }
76
-
77
69
  /*
78
70
  Reset links to optimize for opt-in styling instead of opt-out.
79
71
  */
80
-
81
72
  a {
82
73
  color: inherit;
83
74
  text-decoration: inherit;
84
75
  }
85
-
86
76
  /*
87
77
  Add the correct font weight in Edge and Safari.
88
78
  */
89
-
90
79
  b,strong {
91
80
  font-weight: bolder;
92
81
  }
93
-
94
82
  /*
95
83
  1. Use the user's configured `mono` font family by default.
96
84
  2. Correct the odd `em` font sizing in all browsers.
97
85
  */
98
-
99
86
  code,kbd,samp,pre {
100
87
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
101
88
  font-size: 1em; /* 2 */
102
89
  }
103
-
104
90
  /*
105
91
  Add the correct font size in all browsers.
106
92
  */
107
-
108
93
  small {
109
94
  font-size: 80%;
110
95
  }
111
-
112
96
  /*
113
97
  Prevent `sub` and `sup` elements from affecting the line height in all browsers.
114
98
  */
115
-
116
99
  sub,sup {
117
100
  font-size: 75%;
118
101
  line-height: 0;
119
102
  position: relative;
120
103
  vertical-align: baseline;
121
104
  }
122
-
123
105
  sub {
124
106
  bottom: -0.25em;
125
107
  }
126
-
127
108
  sup {
128
109
  top: -0.5em;
129
110
  }
130
-
131
111
  /*
132
112
  1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
133
113
  2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
134
114
  3. Remove gaps between table borders by default.
135
115
  */
136
-
137
116
  table {
138
117
  text-indent: 0; /* 1 */
139
118
  border-color: inherit; /* 2 */
140
119
  border-collapse: collapse; /* 3 */
141
120
  }
142
-
143
121
  /*
144
122
  1. Change the font styles in all browsers.
145
123
  2. Remove the margin in Firefox and Safari.
146
124
  3. Remove default padding in all browsers.
147
125
  */
148
-
149
126
  button,input,optgroup,select,textarea {
150
127
  font-family: inherit; /* 1 */
151
128
  font-size: 100%; /* 1 */
@@ -155,181 +132,142 @@ button,input,optgroup,select,textarea {
155
132
  margin: 0; /* 2 */
156
133
  padding: 0; /* 3 */
157
134
  }
158
-
159
135
  /*
160
136
  Remove the inheritance of text transform in Edge and Firefox.
161
137
  */
162
-
163
138
  button,select {
164
139
  text-transform: none;
165
140
  }
166
-
167
141
  /*
168
142
  1. Correct the inability to style clickable types in iOS and Safari.
169
143
  2. Remove default button styles.
170
144
  */
171
-
172
145
  button,[type='button'],[type='reset'],[type='submit'] {
173
146
  -webkit-appearance: button; /* 1 */
174
147
  background-color: transparent; /* 2 */
175
148
  background-image: none; /* 2 */
176
149
  }
177
-
178
150
  /*
179
151
  Use the modern Firefox focus style for all focusable elements.
180
152
  */
181
-
182
153
  :-moz-focusring {
183
154
  outline: auto;
184
155
  }
185
-
186
156
  /*
187
157
  Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
188
158
  */
189
-
190
159
  :-moz-ui-invalid {
191
160
  box-shadow: none;
192
161
  }
193
-
194
162
  /*
195
163
  Add the correct vertical alignment in Chrome and Firefox.
196
164
  */
197
-
198
165
  progress {
199
166
  vertical-align: baseline;
200
167
  }
201
-
202
168
  /*
203
169
  Correct the cursor style of increment and decrement buttons in Safari.
204
170
  */
205
-
206
171
  ::-webkit-inner-spin-button,::-webkit-outer-spin-button {
207
172
  height: auto;
208
173
  }
209
-
210
174
  /*
211
175
  1. Correct the odd appearance in Chrome and Safari.
212
176
  2. Correct the outline style in Safari.
213
177
  */
214
-
215
178
  [type='search'] {
216
179
  -webkit-appearance: textfield; /* 1 */
217
180
  outline-offset: -2px; /* 2 */
218
181
  }
219
-
220
182
  /*
221
183
  Remove the inner padding in Chrome and Safari on macOS.
222
184
  */
223
-
224
185
  ::-webkit-search-decoration {
225
186
  -webkit-appearance: none;
226
187
  }
227
-
228
188
  /*
229
189
  1. Correct the inability to style clickable types in iOS and Safari.
230
190
  2. Change font properties to `inherit` in Safari.
231
191
  */
232
-
233
192
  ::-webkit-file-upload-button {
234
193
  -webkit-appearance: button; /* 1 */
235
194
  font: inherit; /* 2 */
236
195
  }
237
-
238
196
  /*
239
197
  Add the correct display in Chrome and Safari.
240
198
  */
241
-
242
199
  summary {
243
200
  display: list-item;
244
201
  }
245
-
246
202
  /*
247
203
  Removes the default spacing and border for appropriate elements.
248
204
  */
249
-
250
205
  blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre {
251
206
  margin: 0;
252
207
  }
253
-
254
208
  fieldset {
255
209
  margin: 0;
256
210
  padding: 0;
257
211
  }
258
-
259
212
  legend {
260
213
  padding: 0;
261
214
  }
262
-
263
215
  ol,ul,menu {
264
216
  list-style: none;
265
217
  margin: 0;
266
218
  padding: 0;
267
219
  }
268
-
269
220
  /*
270
221
  Prevent resizing textareas horizontally by default.
271
222
  */
272
-
273
223
  textarea {
274
224
  resize: vertical;
275
225
  }
276
-
277
226
  /*
278
227
  1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
279
228
  2. Set the default placeholder color to the user's configured gray 400 color.
280
229
  */
281
-
282
230
  input::-moz-placeholder, textarea::-moz-placeholder {
283
231
  opacity: 1; /* 1 */
284
232
  color: #9ca3af; /* 2 */
285
233
  }
286
-
287
234
  input::placeholder,textarea::placeholder {
288
235
  opacity: 1; /* 1 */
289
236
  color: #9ca3af; /* 2 */
290
237
  }
291
-
292
238
  /*
293
239
  Set the default cursor for buttons.
294
240
  */
295
-
296
241
  button,[role="button"] {
297
242
  cursor: pointer;
298
243
  }
299
-
300
244
  /*
301
245
  Make sure disabled buttons don't get the pointer cursor.
302
246
  */
303
247
  :disabled {
304
248
  cursor: default;
305
249
  }
306
-
307
250
  /*
308
251
  1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
309
252
  2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
310
253
  This can trigger a poorly considered lint error in some tools but is included by design.
311
254
  */
312
-
313
255
  img,svg,video,canvas,audio,iframe,embed,object {
314
256
  display: block; /* 1 */
315
257
  vertical-align: middle; /* 2 */
316
258
  }
317
-
318
259
  /*
319
260
  Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
320
261
  */
321
-
322
262
  img,video {
323
263
  max-width: 100%;
324
264
  height: auto;
325
265
  }
326
-
327
266
  /* Make elements with the HTML hidden attribute stay hidden by default */
328
267
  [hidden] {
329
268
  display: none;
330
269
  }
331
-
332
- *,::before,::after {
270
+ *,::before,::after{
333
271
  --tw-border-spacing-x: 0;
334
272
  --tw-border-spacing-y: 0;
335
273
  --tw-translate-x: 0;
@@ -375,8 +313,7 @@ img,video {
375
313
  --tw-backdrop-saturate: ;
376
314
  --tw-backdrop-sepia: ;
377
315
  }
378
-
379
- ::backdrop {
316
+ ::backdrop{
380
317
  --tw-border-spacing-x: 0;
381
318
  --tw-border-spacing-y: 0;
382
319
  --tw-translate-x: 0;
@@ -604,7 +541,7 @@ input[type='number'].no-arrows::-webkit-inner-spin-button,input[type='number'].n
604
541
  input[type='number'].no-arrows {
605
542
  -moz-appearance: textfield; /* Firefox */
606
543
  }
607
- .recharts-cartesian-axis-tick-value {
544
+ .recharts-cartesian-axis-tick-value{
608
545
  font-family: Inter;
609
546
  font-size: 12px;
610
547
  font-weight: 400;
@@ -614,7 +551,7 @@ input[type='number'].no-arrows {
614
551
  fill: #787885;
615
552
  fill: var(--aquarium-colors-grey-50, #787885);
616
553
  }
617
- .recharts-tooltip-wrapper {
554
+ .recharts-tooltip-wrapper{
618
555
  font-family: Inter;
619
556
  font-size: 12px;
620
557
  font-weight: 400;
@@ -641,7 +578,7 @@ input[type='number'].no-arrows {
641
578
  .recharts-tooltip-item-separator {
642
579
  margin-right: 2px;
643
580
  }
644
- .focusable.focus-visible {
581
+ .focusable.focus-visible{
645
582
  outline: 2px solid transparent;
646
583
  outline-offset: 2px;
647
584
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
@@ -650,7 +587,7 @@ input[type='number'].no-arrows {
650
587
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
651
588
  --tw-ring-color: var(--aquarium-colors-info-70, #0399e3);
652
589
  }
653
- .focusable:focus-visible {
590
+ .focusable:focus-visible{
654
591
  outline: 2px solid transparent;
655
592
  outline-offset: 2px;
656
593
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
@@ -664,73 +601,61 @@ input[type='number'].no-arrows {
664
601
  }
665
602
  /* https://tailwindcss.com/docs/using-with-preprocessors */
666
603
  /* @import statements must come first*/
667
- .container {
604
+ .container{
668
605
  width: 100%;
669
606
  }
670
- .\!container {
607
+ .\!container{
671
608
  width: 100% !important;
672
609
  }
673
- @media (min-width: 0px) {
674
-
675
- .container {
610
+ @media (min-width: 0px){
611
+ .container{
676
612
  max-width: 0px;
677
613
  }
678
-
679
- .\!container {
614
+ .\!container{
680
615
  max-width: 0px !important;
681
616
  }
682
617
  }
683
- @media (min-width: 320px) {
684
-
685
- .container {
618
+ @media (min-width: 320px){
619
+ .container{
686
620
  max-width: 320px;
687
621
  }
688
-
689
- .\!container {
622
+ .\!container{
690
623
  max-width: 320px !important;
691
624
  }
692
625
  }
693
- @media (min-width: 672px) {
694
-
695
- .container {
626
+ @media (min-width: 672px){
627
+ .container{
696
628
  max-width: 672px;
697
629
  }
698
-
699
- .\!container {
630
+ .\!container{
700
631
  max-width: 672px !important;
701
632
  }
702
633
  }
703
- @media (min-width: 1056px) {
704
-
705
- .container {
634
+ @media (min-width: 1056px){
635
+ .container{
706
636
  max-width: 1056px;
707
637
  }
708
-
709
- .\!container {
638
+ .\!container{
710
639
  max-width: 1056px !important;
711
640
  }
712
641
  }
713
- @media (min-width: 1312px) {
714
-
715
- .container {
642
+ @media (min-width: 1312px){
643
+ .container{
716
644
  max-width: 1312px;
717
645
  }
718
-
719
- .\!container {
646
+ .\!container{
720
647
  max-width: 1312px !important;
721
648
  }
722
649
  }
723
- @media (min-width: 1536px) {
724
-
725
- .container {
650
+ @media (min-width: 1536px){
651
+ .container{
726
652
  max-width: 1536px;
727
653
  }
728
-
729
- .\!container {
654
+ .\!container{
730
655
  max-width: 1536px !important;
731
656
  }
732
657
  }
733
- .typography-large-heading {
658
+ .typography-large-heading{
734
659
  font-family: Inter;
735
660
  font-size: 32px;
736
661
  font-weight: 700;
@@ -738,7 +663,7 @@ input[type='number'].no-arrows {
738
663
  line-height: 1.375;
739
664
  text-transform: none;
740
665
  }
741
- .typography-heading {
666
+ .typography-heading{
742
667
  font-family: Inter;
743
668
  font-size: 24px;
744
669
  font-weight: 700;
@@ -746,7 +671,7 @@ input[type='number'].no-arrows {
746
671
  line-height: 1.375;
747
672
  text-transform: none;
748
673
  }
749
- .typography-subheading {
674
+ .typography-subheading{
750
675
  font-family: Inter;
751
676
  font-size: 20px;
752
677
  font-weight: 600;
@@ -754,7 +679,7 @@ input[type='number'].no-arrows {
754
679
  line-height: 1.375;
755
680
  text-transform: none;
756
681
  }
757
- .typography-large-strong {
682
+ .typography-large-strong{
758
683
  font-family: Inter;
759
684
  font-size: 20px;
760
685
  font-weight: 600;
@@ -762,7 +687,7 @@ input[type='number'].no-arrows {
762
687
  line-height: 1.58;
763
688
  text-transform: none;
764
689
  }
765
- .typography-large {
690
+ .typography-large{
766
691
  font-family: Inter;
767
692
  font-size: 20px;
768
693
  font-weight: 500;
@@ -770,7 +695,7 @@ input[type='number'].no-arrows {
770
695
  line-height: 1.58;
771
696
  text-transform: none;
772
697
  }
773
- .typography-default-strong {
698
+ .typography-default-strong{
774
699
  font-family: Inter;
775
700
  font-size: 16px;
776
701
  font-weight: 500;
@@ -778,7 +703,7 @@ input[type='number'].no-arrows {
778
703
  line-height: 1.5;
779
704
  text-transform: none;
780
705
  }
781
- .typography-default {
706
+ .typography-default{
782
707
  font-family: Inter;
783
708
  font-size: 16px;
784
709
  font-weight: 400;
@@ -786,7 +711,7 @@ input[type='number'].no-arrows {
786
711
  line-height: 1.5;
787
712
  text-transform: none;
788
713
  }
789
- .typography-small-strong {
714
+ .typography-small-strong{
790
715
  font-family: Inter;
791
716
  font-size: 14px;
792
717
  font-weight: 500;
@@ -794,7 +719,7 @@ input[type='number'].no-arrows {
794
719
  line-height: 1.42;
795
720
  text-transform: none;
796
721
  }
797
- .typography-small {
722
+ .typography-small{
798
723
  font-family: Inter;
799
724
  font-size: 14px;
800
725
  font-weight: 400;
@@ -802,7 +727,7 @@ input[type='number'].no-arrows {
802
727
  line-height: 1.42;
803
728
  text-transform: none;
804
729
  }
805
- .typography-caption {
730
+ .typography-caption{
806
731
  font-family: Inter;
807
732
  font-size: 12px;
808
733
  font-weight: 400;
@@ -810,7 +735,7 @@ input[type='number'].no-arrows {
810
735
  line-height: 1.26;
811
736
  text-transform: none;
812
737
  }
813
- .typography-caption-small {
738
+ .typography-caption-small{
814
739
  font-family: Inter;
815
740
  font-size: 10px;
816
741
  font-weight: 400;
@@ -818,7 +743,7 @@ input[type='number'].no-arrows {
818
743
  line-height: 1.2;
819
744
  text-transform: none;
820
745
  }
821
- .typography-caption-default {
746
+ .typography-caption-default{
822
747
  font-family: Inter;
823
748
  font-size: 12px;
824
749
  font-weight: 400;
@@ -827,7 +752,7 @@ input[type='number'].no-arrows {
827
752
  letter-spacing: 0;
828
753
  text-transform: none;
829
754
  }
830
- .typography-overline-small {
755
+ .typography-overline-small{
831
756
  font-family: Inter;
832
757
  font-size: 10px;
833
758
  font-weight: 400;
@@ -836,7 +761,7 @@ input[type='number'].no-arrows {
836
761
  letter-spacing: 0;
837
762
  text-transform: uppercase;
838
763
  }
839
- .typography-overline-default {
764
+ .typography-overline-default{
840
765
  font-family: Inter;
841
766
  font-size: 12px;
842
767
  font-weight: 400;
@@ -845,7 +770,7 @@ input[type='number'].no-arrows {
845
770
  letter-spacing: 0;
846
771
  text-transform: uppercase;
847
772
  }
848
- .typography-button-small {
773
+ .typography-button-small{
849
774
  font-family: Inter;
850
775
  font-size: 12px;
851
776
  font-weight: 500;
@@ -854,7 +779,7 @@ input[type='number'].no-arrows {
854
779
  letter-spacing: 0;
855
780
  text-transform: none;
856
781
  }
857
- .typography-button-medium {
782
+ .typography-button-medium{
858
783
  font-family: Inter;
859
784
  font-size: 14px;
860
785
  font-weight: 400;
@@ -863,7 +788,7 @@ input[type='number'].no-arrows {
863
788
  letter-spacing: 0;
864
789
  text-transform: none;
865
790
  }
866
- .typography-button-large {
791
+ .typography-button-large{
867
792
  font-family: Inter;
868
793
  font-size: 16px;
869
794
  font-weight: 500;
@@ -872,7 +797,7 @@ input[type='number'].no-arrows {
872
797
  letter-spacing: 0;
873
798
  text-transform: none;
874
799
  }
875
- .typography-body-small {
800
+ .typography-body-small{
876
801
  font-family: Inter;
877
802
  font-size: 14px;
878
803
  font-weight: 400;
@@ -881,7 +806,7 @@ input[type='number'].no-arrows {
881
806
  letter-spacing: 0;
882
807
  text-transform: none;
883
808
  }
884
- .typography-body-small-medium {
809
+ .typography-body-small-medium{
885
810
  font-family: Inter;
886
811
  font-size: 14px;
887
812
  font-weight: 500;
@@ -890,7 +815,7 @@ input[type='number'].no-arrows {
890
815
  letter-spacing: 0;
891
816
  text-transform: none;
892
817
  }
893
- .typography-body-default {
818
+ .typography-body-default{
894
819
  font-family: Inter;
895
820
  font-size: 16px;
896
821
  font-weight: 400;
@@ -899,7 +824,7 @@ input[type='number'].no-arrows {
899
824
  letter-spacing: 0;
900
825
  text-transform: none;
901
826
  }
902
- .typography-body-default-medium {
827
+ .typography-body-default-medium{
903
828
  font-family: Inter;
904
829
  font-size: 16px;
905
830
  font-weight: 500;
@@ -908,7 +833,7 @@ input[type='number'].no-arrows {
908
833
  letter-spacing: 0;
909
834
  text-transform: none;
910
835
  }
911
- .typography-body-large {
836
+ .typography-body-large{
912
837
  font-family: Inter;
913
838
  font-size: 20px;
914
839
  font-weight: 400;
@@ -917,7 +842,7 @@ input[type='number'].no-arrows {
917
842
  letter-spacing: 0;
918
843
  text-transform: none;
919
844
  }
920
- .typography-body-large-medium {
845
+ .typography-body-large-medium{
921
846
  font-family: Inter;
922
847
  font-size: 20px;
923
848
  font-weight: 400;
@@ -926,7 +851,7 @@ input[type='number'].no-arrows {
926
851
  letter-spacing: 0;
927
852
  text-transform: none;
928
853
  }
929
- .typography-heading-large {
854
+ .typography-heading-large{
930
855
  font-family: Inter;
931
856
  font-size: 20px;
932
857
  font-weight: 700;
@@ -935,7 +860,7 @@ input[type='number'].no-arrows {
935
860
  letter-spacing: 0.15px;
936
861
  text-transform: none;
937
862
  }
938
- .typography-heading-xl {
863
+ .typography-heading-xl{
939
864
  font-family: Inter;
940
865
  font-size: 24px;
941
866
  font-weight: 700;
@@ -944,7 +869,7 @@ input[type='number'].no-arrows {
944
869
  letter-spacing: 0;
945
870
  text-transform: none;
946
871
  }
947
- .typography-heading-2xl {
872
+ .typography-heading-2xl{
948
873
  font-family: Inter;
949
874
  font-size: 34px;
950
875
  font-weight: 700;
@@ -953,7 +878,7 @@ input[type='number'].no-arrows {
953
878
  letter-spacing: 0;
954
879
  text-transform: none;
955
880
  }
956
- .typography-heading-3xl {
881
+ .typography-heading-3xl{
957
882
  font-family: Inter;
958
883
  font-size: 48px;
959
884
  font-weight: 700;
@@ -962,7 +887,7 @@ input[type='number'].no-arrows {
962
887
  letter-spacing: -0.48px;
963
888
  text-transform: none;
964
889
  }
965
- .typography-heading-4xl {
890
+ .typography-heading-4xl{
966
891
  font-family: Inter;
967
892
  font-size: 60px;
968
893
  font-weight: 700;
@@ -971,7 +896,7 @@ input[type='number'].no-arrows {
971
896
  letter-spacing: -1.5px;
972
897
  text-transform: none;
973
898
  }
974
- .typography-heading-5xl {
899
+ .typography-heading-5xl{
975
900
  font-family: Inter;
976
901
  font-size: 76px;
977
902
  font-weight: 700;
@@ -980,1938 +905,1933 @@ input[type='number'].no-arrows {
980
905
  letter-spacing: -1.98px;
981
906
  text-transform: none;
982
907
  }
983
- .pointer-events-none {
908
+ .pointer-events-none{
984
909
  pointer-events: none;
985
910
  }
986
- .visible {
911
+ .visible{
987
912
  visibility: visible;
988
913
  }
989
- .invisible {
914
+ .invisible{
990
915
  visibility: hidden;
991
916
  }
992
- .collapse {
917
+ .collapse{
993
918
  visibility: collapse;
994
919
  }
995
- .static {
920
+ .static{
996
921
  position: static;
997
922
  }
998
- .fixed {
923
+ .fixed{
999
924
  position: fixed;
1000
925
  }
1001
- .absolute {
926
+ .absolute{
1002
927
  position: absolute;
1003
928
  }
1004
- .relative {
929
+ .relative{
1005
930
  position: relative;
1006
931
  }
1007
- .sticky {
932
+ .sticky{
1008
933
  position: sticky;
1009
934
  }
1010
- .inset-0 {
935
+ .inset-0{
1011
936
  top: 0;
1012
937
  right: 0;
1013
938
  bottom: 0;
1014
939
  left: 0;
1015
940
  }
1016
- .inset-y-0 {
941
+ .inset-y-0{
1017
942
  top: 0;
1018
943
  bottom: 0;
1019
944
  }
1020
- .top-0 {
945
+ .top-0{
1021
946
  top: 0;
1022
947
  }
1023
- .left-0 {
948
+ .left-0{
1024
949
  left: 0;
1025
950
  }
1026
- .right-0 {
951
+ .right-0{
1027
952
  right: 0;
1028
953
  }
1029
- .top-\[20px\] {
954
+ .top-\[20px\]{
1030
955
  top: 20px;
1031
956
  }
1032
- .right-\[28px\] {
957
+ .right-\[28px\]{
1033
958
  right: 28px;
1034
959
  }
1035
- .-left-1\/2 {
960
+ .-left-1\/2{
1036
961
  left: -50%;
1037
962
  }
1038
- .top-\[3px\] {
963
+ .top-\[3px\]{
1039
964
  top: 3px;
1040
965
  }
1041
- .top-\[14px\] {
966
+ .top-\[14px\]{
1042
967
  top: 14px;
1043
968
  }
1044
- .left-2 {
969
+ .left-2{
1045
970
  left: 4px;
1046
971
  }
1047
- .left-1\/2 {
972
+ .left-1\/2{
1048
973
  left: 50%;
1049
974
  }
1050
- .bottom-0 {
975
+ .bottom-0{
1051
976
  bottom: 0;
1052
977
  }
1053
- .z-modal {
978
+ .z-modal{
1054
979
  z-index: 100;
1055
980
  }
1056
- .-z-10 {
981
+ .-z-10{
1057
982
  z-index: -10;
1058
983
  }
1059
- .z-10 {
984
+ .z-10{
1060
985
  z-index: 10;
1061
986
  }
1062
- .z-20 {
987
+ .z-20{
1063
988
  z-index: 20;
1064
989
  }
1065
- .z-40 {
990
+ .z-40{
1066
991
  z-index: 40;
1067
992
  }
1068
- .z-0 {
993
+ .z-0{
1069
994
  z-index: 0;
1070
995
  }
1071
- .col-start-2 {
996
+ .col-start-2{
1072
997
  grid-column-start: 2;
1073
998
  }
1074
- .col-start-1 {
999
+ .col-start-1{
1075
1000
  grid-column-start: 1;
1076
1001
  }
1077
- .col-start-3 {
1002
+ .col-start-3{
1078
1003
  grid-column-start: 3;
1079
1004
  }
1080
- .row-start-1 {
1005
+ .row-start-1{
1081
1006
  grid-row-start: 1;
1082
1007
  }
1083
- .-m-2 {
1008
+ .-m-2{
1084
1009
  margin: -4px;
1085
1010
  }
1086
- .m-3 {
1011
+ .m-3{
1087
1012
  margin: 8px;
1088
1013
  }
1089
- .m-4 {
1014
+ .m-4{
1090
1015
  margin: 12px;
1091
1016
  }
1092
- .m-\[1px\] {
1017
+ .m-\[1px\]{
1093
1018
  margin: 1px;
1094
1019
  }
1095
- .-mx-4 {
1020
+ .-mx-4{
1096
1021
  margin-left: -12px;
1097
1022
  margin-right: -12px;
1098
1023
  }
1099
- .mx-7 {
1024
+ .mx-7{
1100
1025
  margin-left: 32px;
1101
1026
  margin-right: 32px;
1102
1027
  }
1103
- .my-1 {
1028
+ .my-1{
1104
1029
  margin-top: 2px;
1105
1030
  margin-bottom: 2px;
1106
1031
  }
1107
- .mx-3 {
1032
+ .mx-3{
1108
1033
  margin-left: 8px;
1109
1034
  margin-right: 8px;
1110
1035
  }
1111
- .my-4 {
1036
+ .my-4{
1112
1037
  margin-top: 12px;
1113
1038
  margin-bottom: 12px;
1114
1039
  }
1115
- .mx-2 {
1040
+ .mx-2{
1116
1041
  margin-left: 4px;
1117
1042
  margin-right: 4px;
1118
1043
  }
1119
- .mx-1 {
1044
+ .mx-1{
1120
1045
  margin-left: 2px;
1121
1046
  margin-right: 2px;
1122
1047
  }
1123
- .mx-0 {
1048
+ .mx-0{
1124
1049
  margin-left: 0;
1125
1050
  margin-right: 0;
1126
1051
  }
1127
- .mb-3 {
1052
+ .mb-3{
1128
1053
  margin-bottom: 8px;
1129
1054
  }
1130
- .mt-5 {
1055
+ .mt-5{
1131
1056
  margin-top: 16px;
1132
1057
  }
1133
- .-mt-4 {
1058
+ .-mt-4{
1134
1059
  margin-top: -12px;
1135
1060
  }
1136
- .mt-auto {
1061
+ .mt-auto{
1137
1062
  margin-top: auto;
1138
1063
  }
1139
- .mt-1 {
1064
+ .mt-1{
1140
1065
  margin-top: 2px;
1141
1066
  }
1142
- .mt-4 {
1067
+ .mt-4{
1143
1068
  margin-top: 12px;
1144
1069
  }
1145
- .mb-5 {
1070
+ .mb-5{
1146
1071
  margin-bottom: 16px;
1147
1072
  }
1148
- .mr-4 {
1073
+ .mr-4{
1149
1074
  margin-right: 12px;
1150
1075
  }
1151
- .mt-2 {
1076
+ .mt-2{
1152
1077
  margin-top: 4px;
1153
1078
  }
1154
- .ml-3 {
1079
+ .ml-3{
1155
1080
  margin-left: 8px;
1156
1081
  }
1157
- .mr-1 {
1082
+ .mr-1{
1158
1083
  margin-right: 2px;
1159
1084
  }
1160
- .mb-\[-2px\] {
1085
+ .mb-\[-2px\]{
1161
1086
  margin-bottom: -2px;
1162
1087
  }
1163
- .mb-2 {
1088
+ .mb-2{
1164
1089
  margin-bottom: 4px;
1165
1090
  }
1166
- .ml-2 {
1091
+ .ml-2{
1167
1092
  margin-left: 4px;
1168
1093
  }
1169
- .mb-\[7px\] {
1094
+ .mb-\[7px\]{
1170
1095
  margin-bottom: 7px;
1171
1096
  }
1172
- .block {
1097
+ .block{
1173
1098
  display: block;
1174
1099
  }
1175
- .inline-block {
1100
+ .inline-block{
1176
1101
  display: inline-block;
1177
1102
  }
1178
- .inline {
1103
+ .inline{
1179
1104
  display: inline;
1180
1105
  }
1181
- .\!inline {
1106
+ .\!inline{
1182
1107
  display: inline !important;
1183
1108
  }
1184
- .flex {
1109
+ .flex{
1185
1110
  display: flex;
1186
1111
  }
1187
- .inline-flex {
1112
+ .inline-flex{
1188
1113
  display: inline-flex;
1189
1114
  }
1190
- .table {
1115
+ .table{
1191
1116
  display: table;
1192
1117
  }
1193
- .\!table {
1118
+ .\!table{
1194
1119
  display: table !important;
1195
1120
  }
1196
- .grid {
1121
+ .grid{
1197
1122
  display: grid;
1198
1123
  }
1199
- .inline-grid {
1124
+ .inline-grid{
1200
1125
  display: inline-grid;
1201
1126
  }
1202
- .contents {
1127
+ .contents{
1203
1128
  display: contents;
1204
1129
  }
1205
- .hidden {
1130
+ .hidden{
1206
1131
  display: none;
1207
1132
  }
1208
- .aspect-square {
1133
+ .aspect-square{
1209
1134
  aspect-ratio: 1 / 1;
1210
1135
  }
1211
- .h-1 {
1136
+ .h-1{
1212
1137
  height: 2px;
1213
1138
  }
1214
- .h-\[20px\] {
1139
+ .h-\[20px\]{
1215
1140
  height: 20px;
1216
1141
  }
1217
- .h-\[174px\] {
1142
+ .h-\[174px\]{
1218
1143
  height: 174px;
1219
1144
  }
1220
- .h-\[225px\] {
1145
+ .h-\[225px\]{
1221
1146
  height: 225px;
1222
1147
  }
1223
- .h-5 {
1148
+ .h-5{
1224
1149
  height: 16px;
1225
1150
  }
1226
- .h-\[1px\] {
1151
+ .h-\[1px\]{
1227
1152
  height: 1px;
1228
1153
  }
1229
- .h-\[120px\] {
1154
+ .h-\[120px\]{
1230
1155
  height: 120px;
1231
1156
  }
1232
- .h-full {
1157
+ .h-full{
1233
1158
  height: 100%;
1234
1159
  }
1235
- .h-2 {
1160
+ .h-2{
1236
1161
  height: 4px;
1237
1162
  }
1238
- .h-\[2px\] {
1163
+ .h-\[2px\]{
1239
1164
  height: 2px;
1240
1165
  }
1241
- .h-\[3px\] {
1166
+ .h-\[3px\]{
1242
1167
  height: 3px;
1243
1168
  }
1244
- .h-\[32px\] {
1169
+ .h-\[32px\]{
1245
1170
  height: 32px;
1246
1171
  }
1247
- .h-\[8px\] {
1172
+ .h-\[8px\]{
1248
1173
  height: 8px;
1249
1174
  }
1250
- .h-4 {
1175
+ .h-4{
1251
1176
  height: 12px;
1252
1177
  }
1253
- .h-\[50px\] {
1178
+ .h-\[50px\]{
1254
1179
  height: 50px;
1255
1180
  }
1256
- .h-\[6px\] {
1181
+ .h-\[6px\]{
1257
1182
  height: 6px;
1258
1183
  }
1259
- .h-1px {
1184
+ .h-1px{
1260
1185
  height: 1px;
1261
1186
  }
1262
- .h-3 {
1187
+ .h-3{
1263
1188
  height: 8px;
1264
1189
  }
1265
- .h-6 {
1190
+ .h-6{
1266
1191
  height: 24px;
1267
1192
  }
1268
- .h-\[56px\] {
1193
+ .h-\[56px\]{
1269
1194
  height: 56px;
1270
1195
  }
1271
- .h-auto {
1196
+ .h-auto{
1272
1197
  height: auto;
1273
1198
  }
1274
- .h-\[25px\] {
1199
+ .h-\[25px\]{
1275
1200
  height: 25px;
1276
1201
  }
1277
- .max-h-full {
1202
+ .max-h-full{
1278
1203
  max-height: 100%;
1279
1204
  }
1280
- .min-h-full {
1205
+ .min-h-full{
1281
1206
  min-height: 100%;
1282
1207
  }
1283
- .min-h-\[120px\] {
1208
+ .min-h-\[120px\]{
1284
1209
  min-height: 120px;
1285
1210
  }
1286
- .min-h-\[50px\] {
1211
+ .min-h-\[50px\]{
1287
1212
  min-height: 50px;
1288
1213
  }
1289
- .w-full {
1214
+ .w-full{
1290
1215
  width: 100%;
1291
1216
  }
1292
- .w-\[280px\] {
1217
+ .w-\[280px\]{
1293
1218
  width: 280px;
1294
1219
  }
1295
- .w-5 {
1220
+ .w-5{
1296
1221
  width: 16px;
1297
1222
  }
1298
- .w-\[32px\] {
1223
+ .w-\[32px\]{
1299
1224
  width: 32px;
1300
1225
  }
1301
- .w-\[8px\] {
1226
+ .w-\[8px\]{
1302
1227
  width: 8px;
1303
1228
  }
1304
- .w-\[34px\] {
1229
+ .w-\[34px\]{
1305
1230
  width: 34px;
1306
1231
  }
1307
- .w-4 {
1232
+ .w-4{
1308
1233
  width: 12px;
1309
1234
  }
1310
- .w-1 {
1235
+ .w-1{
1311
1236
  width: 2px;
1312
1237
  }
1313
- .w-\[6px\] {
1238
+ .w-\[6px\]{
1314
1239
  width: 6px;
1315
1240
  }
1316
- .w-1px {
1241
+ .w-1px{
1317
1242
  width: 1px;
1318
1243
  }
1319
- .w-2 {
1244
+ .w-2{
1320
1245
  width: 4px;
1321
1246
  }
1322
- .w-3 {
1247
+ .w-3{
1323
1248
  width: 8px;
1324
1249
  }
1325
- .w-6 {
1250
+ .w-6{
1326
1251
  width: 24px;
1327
1252
  }
1328
- .w-\[56px\] {
1253
+ .w-\[56px\]{
1329
1254
  width: 56px;
1330
1255
  }
1331
- .min-w-\[280px\] {
1256
+ .min-w-\[280px\]{
1332
1257
  min-width: 280px;
1333
1258
  }
1334
- .min-w-full {
1259
+ .min-w-full{
1335
1260
  min-width: 100%;
1336
1261
  }
1337
- .min-w-0 {
1262
+ .min-w-0{
1338
1263
  min-width: 0px;
1339
1264
  }
1340
- .max-w-\[600px\] {
1265
+ .max-w-\[600px\]{
1341
1266
  max-width: 600px;
1342
1267
  }
1343
- .max-w-\[940px\] {
1268
+ .max-w-\[940px\]{
1344
1269
  max-width: 940px;
1345
1270
  }
1346
- .max-w-screen-xl {
1271
+ .max-w-screen-xl{
1347
1272
  max-width: 1536px;
1348
1273
  }
1349
- .max-w-screen-lg {
1274
+ .max-w-screen-lg{
1350
1275
  max-width: 1312px;
1351
1276
  }
1352
- .max-w-screen-md {
1277
+ .max-w-screen-md{
1353
1278
  max-width: 1056px;
1354
1279
  }
1355
- .max-w-screen-sm {
1280
+ .max-w-screen-sm{
1356
1281
  max-width: 672px;
1357
1282
  }
1358
- .max-w-screen-xs {
1283
+ .max-w-screen-xs{
1359
1284
  max-width: 320px;
1360
1285
  }
1361
- .max-w-\[70px\] {
1286
+ .max-w-\[70px\]{
1362
1287
  max-width: 70px;
1363
1288
  }
1364
- .max-w-\[40px\] {
1289
+ .max-w-\[40px\]{
1365
1290
  max-width: 40px;
1366
1291
  }
1367
- .max-w-\[300px\] {
1292
+ .max-w-\[300px\]{
1368
1293
  max-width: 300px;
1369
1294
  }
1370
- .max-w-\[320px\] {
1295
+ .max-w-\[320px\]{
1371
1296
  max-width: 320px;
1372
1297
  }
1373
- .shrink {
1298
+ .shrink{
1374
1299
  flex-shrink: 1;
1375
1300
  }
1376
- .flex-grow {
1301
+ .flex-grow{
1377
1302
  flex-grow: 1;
1378
1303
  }
1379
- .grow {
1304
+ .grow{
1380
1305
  flex-grow: 1;
1381
1306
  }
1382
- .grow-0 {
1307
+ .grow-0{
1383
1308
  flex-grow: 0;
1384
1309
  }
1385
- .table-auto {
1310
+ .table-auto{
1386
1311
  table-layout: auto;
1387
1312
  }
1388
- .table-fixed {
1313
+ .table-fixed{
1389
1314
  table-layout: fixed;
1390
1315
  }
1391
- .border-spacing-0 {
1316
+ .border-spacing-0{
1392
1317
  --tw-border-spacing-x: 0;
1393
1318
  --tw-border-spacing-y: 0;
1394
1319
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
1395
1320
  }
1396
- .origin-\[0\%_45\%\] {
1321
+ .origin-\[0\%_45\%\]{
1397
1322
  transform-origin: 0% 45%;
1398
1323
  }
1399
- .rotate-45 {
1324
+ .rotate-45{
1400
1325
  --tw-rotate: 45deg;
1401
1326
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1402
1327
  }
1403
- .scale-\[0\.55\] {
1328
+ .scale-\[0\.55\]{
1404
1329
  --tw-scale-x: 0.55;
1405
1330
  --tw-scale-y: 0.55;
1406
1331
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1407
1332
  }
1408
- .transform {
1333
+ .transform{
1409
1334
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1410
1335
  }
1411
- @keyframes pulse {
1412
-
1413
- 50% {
1336
+ @keyframes pulse{
1337
+ 50%{
1414
1338
  opacity: .5;
1415
1339
  }
1416
1340
  }
1417
- .animate-pulse {
1341
+ .animate-pulse{
1418
1342
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
1419
1343
  }
1420
- .cursor-default {
1344
+ .cursor-default{
1421
1345
  cursor: default;
1422
1346
  }
1423
- .cursor-pointer {
1347
+ .cursor-pointer{
1424
1348
  cursor: pointer;
1425
1349
  }
1426
- .cursor-not-allowed {
1350
+ .cursor-not-allowed{
1427
1351
  cursor: not-allowed;
1428
1352
  }
1429
- .resize-none {
1353
+ .resize-none{
1430
1354
  resize: none;
1431
1355
  }
1432
- .resize {
1356
+ .resize{
1433
1357
  resize: both;
1434
1358
  }
1435
- .snap-x {
1359
+ .snap-x{
1436
1360
  scroll-snap-type: x var(--tw-scroll-snap-strictness);
1437
1361
  }
1438
- .snap-mandatory {
1362
+ .snap-mandatory{
1439
1363
  --tw-scroll-snap-strictness: mandatory;
1440
1364
  }
1441
- .snap-start {
1365
+ .snap-start{
1442
1366
  scroll-snap-align: start;
1443
1367
  }
1444
- .appearance-none {
1368
+ .appearance-none{
1445
1369
  -webkit-appearance: none;
1446
1370
  -moz-appearance: none;
1447
1371
  appearance: none;
1448
1372
  }
1449
- .auto-cols-fr {
1373
+ .auto-cols-fr{
1450
1374
  grid-auto-columns: minmax(0, 1fr);
1451
1375
  }
1452
- .grid-flow-col {
1376
+ .grid-flow-col{
1453
1377
  grid-auto-flow: column;
1454
1378
  }
1455
- .grid-cols-\[auto_1fr_auto\] {
1379
+ .grid-cols-\[auto_1fr_auto\]{
1456
1380
  grid-template-columns: auto 1fr auto;
1457
1381
  }
1458
- .grid-cols-1 {
1382
+ .grid-cols-1{
1459
1383
  grid-template-columns: repeat(1, minmax(0, 1fr));
1460
1384
  }
1461
- .grid-cols-2 {
1385
+ .grid-cols-2{
1462
1386
  grid-template-columns: repeat(2, minmax(0, 1fr));
1463
1387
  }
1464
- .grid-cols-3 {
1388
+ .grid-cols-3{
1465
1389
  grid-template-columns: repeat(3, minmax(0, 1fr));
1466
1390
  }
1467
- .grid-cols-\[16px_1fr\] {
1391
+ .grid-cols-\[16px_1fr\]{
1468
1392
  grid-template-columns: 16px 1fr;
1469
1393
  }
1470
- .grid-cols-\[1fr_auto\] {
1394
+ .grid-cols-\[1fr_auto\]{
1471
1395
  grid-template-columns: 1fr auto;
1472
1396
  }
1473
- .grid-cols-\[auto_1fr\] {
1397
+ .grid-cols-\[auto_1fr\]{
1474
1398
  grid-template-columns: auto 1fr;
1475
1399
  }
1476
- .grid-cols-\[200px_1fr_200px\] {
1400
+ .grid-cols-\[200px_1fr_200px\]{
1477
1401
  grid-template-columns: 200px 1fr 200px;
1478
1402
  }
1479
- .flex-row {
1403
+ .flex-row{
1480
1404
  flex-direction: row;
1481
1405
  }
1482
- .flex-row-reverse {
1406
+ .flex-row-reverse{
1483
1407
  flex-direction: row-reverse;
1484
1408
  }
1485
- .flex-col {
1409
+ .flex-col{
1486
1410
  flex-direction: column;
1487
1411
  }
1488
- .flex-wrap {
1412
+ .flex-wrap{
1489
1413
  flex-wrap: wrap;
1490
1414
  }
1491
- .flex-nowrap {
1415
+ .flex-nowrap{
1492
1416
  flex-wrap: nowrap;
1493
1417
  }
1494
- .items-center {
1418
+ .items-center{
1495
1419
  align-items: center;
1496
1420
  }
1497
- .items-stretch {
1421
+ .items-stretch{
1498
1422
  align-items: stretch;
1499
1423
  }
1500
- .justify-start {
1424
+ .justify-start{
1501
1425
  justify-content: flex-start;
1502
1426
  }
1503
- .justify-end {
1427
+ .justify-end{
1504
1428
  justify-content: flex-end;
1505
1429
  }
1506
- .justify-center {
1430
+ .justify-center{
1507
1431
  justify-content: center;
1508
1432
  }
1509
- .justify-between {
1433
+ .justify-between{
1510
1434
  justify-content: space-between;
1511
1435
  }
1512
- .gap-4 {
1436
+ .gap-4{
1513
1437
  grid-gap: 12px;
1514
1438
  gap: 12px;
1515
1439
  }
1516
- .gap-7 {
1440
+ .gap-7{
1517
1441
  grid-gap: 32px;
1518
1442
  gap: 32px;
1519
1443
  }
1520
- .gap-5 {
1444
+ .gap-5{
1521
1445
  grid-gap: 16px;
1522
1446
  gap: 16px;
1523
1447
  }
1524
- .gap-3 {
1448
+ .gap-3{
1525
1449
  grid-gap: 8px;
1526
1450
  gap: 8px;
1527
1451
  }
1528
- .gap-2 {
1452
+ .gap-2{
1529
1453
  grid-gap: 4px;
1530
1454
  gap: 4px;
1531
1455
  }
1532
- .gap-0 {
1456
+ .gap-0{
1533
1457
  grid-gap: 0;
1534
1458
  gap: 0;
1535
1459
  }
1536
- .gap-8 {
1460
+ .gap-8{
1537
1461
  grid-gap: 40px;
1538
1462
  gap: 40px;
1539
1463
  }
1540
- .gap-x-3 {
1464
+ .gap-x-3{
1541
1465
  grid-column-gap: 8px;
1542
1466
  -moz-column-gap: 8px;
1543
1467
  column-gap: 8px;
1544
1468
  }
1545
- .gap-y-2 {
1469
+ .gap-y-2{
1546
1470
  grid-row-gap: 4px;
1547
1471
  row-gap: 4px;
1548
1472
  }
1549
- .gap-x-2 {
1473
+ .gap-x-2{
1550
1474
  grid-column-gap: 4px;
1551
1475
  -moz-column-gap: 4px;
1552
1476
  column-gap: 4px;
1553
1477
  }
1554
- .gap-x-4 {
1478
+ .gap-x-4{
1555
1479
  grid-column-gap: 12px;
1556
1480
  -moz-column-gap: 12px;
1557
1481
  column-gap: 12px;
1558
1482
  }
1559
- .gap-x-6 {
1483
+ .gap-x-6{
1560
1484
  grid-column-gap: 24px;
1561
1485
  -moz-column-gap: 24px;
1562
1486
  column-gap: 24px;
1563
1487
  }
1564
- .self-start {
1488
+ .self-start{
1565
1489
  align-self: flex-start;
1566
1490
  }
1567
- .self-center {
1491
+ .self-center{
1568
1492
  align-self: center;
1569
1493
  }
1570
- .justify-self-center {
1494
+ .justify-self-center{
1571
1495
  justify-self: center;
1572
1496
  }
1573
- .overflow-hidden {
1497
+ .overflow-hidden{
1574
1498
  overflow: hidden;
1575
1499
  }
1576
- .overflow-y-auto {
1500
+ .overflow-y-auto{
1577
1501
  overflow-y: auto;
1578
1502
  }
1579
- .overflow-x-hidden {
1503
+ .overflow-x-hidden{
1580
1504
  overflow-x: hidden;
1581
1505
  }
1582
- .overflow-x-scroll {
1506
+ .overflow-x-scroll{
1583
1507
  overflow-x: scroll;
1584
1508
  }
1585
- .scroll-smooth {
1509
+ .scroll-smooth{
1586
1510
  scroll-behavior: smooth;
1587
1511
  }
1588
- .whitespace-nowrap {
1512
+ .whitespace-nowrap{
1589
1513
  white-space: nowrap;
1590
1514
  }
1591
- .whitespace-pre {
1515
+ .whitespace-pre{
1592
1516
  white-space: pre;
1593
1517
  }
1594
- .break-words {
1518
+ .break-words{
1595
1519
  word-wrap: break-word;
1596
1520
  }
1597
- .break-all {
1521
+ .break-all{
1598
1522
  word-break: break-all;
1599
1523
  }
1600
- .rounded-sm {
1524
+ .rounded-sm{
1601
1525
  border-radius: 0.125rem;
1602
1526
  border-radius: var(--aquarium-border-radius-sm, 0.125rem);
1603
1527
  }
1604
- .rounded-full {
1528
+ .rounded-full{
1605
1529
  border-radius: 9999px;
1606
1530
  border-radius: var(--aquarium-border-radius-full, 9999px);
1607
1531
  }
1608
- .rounded {
1532
+ .rounded{
1609
1533
  border-radius: 4px;
1610
1534
  border-radius: var(--aquarium-border-radius-default, 4px);
1611
1535
  }
1612
- .rounded-\[2px\] {
1536
+ .rounded-\[2px\]{
1613
1537
  border-radius: 2px;
1614
1538
  }
1615
- .border {
1539
+ .border{
1616
1540
  border-width: 1px;
1617
1541
  }
1618
- .border-\[1px\] {
1542
+ .border-\[1px\]{
1619
1543
  border-width: 1px;
1620
1544
  }
1621
- .border-0 {
1545
+ .border-0{
1622
1546
  border-width: 0px;
1623
1547
  }
1624
- .border-2 {
1548
+ .border-2{
1625
1549
  border-width: 2px;
1626
1550
  }
1627
- .border-t-2 {
1551
+ .border-t-2{
1628
1552
  border-top-width: 2px;
1629
1553
  }
1630
- .border-b-\[1px\] {
1554
+ .border-b-\[1px\]{
1631
1555
  border-bottom-width: 1px;
1632
1556
  }
1633
- .border-b {
1557
+ .border-b{
1634
1558
  border-bottom-width: 1px;
1635
1559
  }
1636
- .border-b-2 {
1560
+ .border-b-2{
1637
1561
  border-bottom-width: 2px;
1638
1562
  }
1639
- .border-solid {
1563
+ .border-solid{
1640
1564
  border-style: solid;
1641
1565
  }
1642
- .border-dashed {
1566
+ .border-dashed{
1643
1567
  border-style: dashed;
1644
1568
  }
1645
- .border-none {
1569
+ .border-none{
1646
1570
  border-style: none;
1647
1571
  }
1648
- .border-error-50 {
1572
+ .border-error-50{
1649
1573
  border-color: #e62728;
1650
1574
  border-color: var(--aquarium-colors-error-50, #e62728);
1651
1575
  }
1652
- .border-grey-20 {
1576
+ .border-grey-20{
1653
1577
  border-color: #d2d2d6;
1654
1578
  border-color: var(--aquarium-colors-grey-20, #d2d2d6);
1655
1579
  }
1656
- .border-info-70 {
1580
+ .border-info-70{
1657
1581
  border-color: #0399e3;
1658
1582
  border-color: var(--aquarium-colors-info-70, #0399e3);
1659
1583
  }
1660
- .border-grey-5 {
1584
+ .border-grey-5{
1661
1585
  border-color: #ededf0;
1662
1586
  border-color: var(--aquarium-colors-grey-5, #ededf0);
1663
1587
  }
1664
- .border-transparent {
1588
+ .border-transparent{
1665
1589
  border-color: transparent;
1666
1590
  border-color: var(--aquarium-colors-transparent, transparent);
1667
1591
  }
1668
- .border-grey-10 {
1592
+ .border-grey-10{
1669
1593
  border-color: #e1e1e3;
1670
1594
  border-color: var(--aquarium-colors-grey-10, #e1e1e3);
1671
1595
  }
1672
- .border-primary-80 {
1596
+ .border-primary-80{
1673
1597
  border-color: #3545be;
1674
1598
  border-color: var(--aquarium-colors-primary-80, #0788d1);
1675
1599
  }
1676
- .border-primary-40 {
1600
+ .border-primary-40{
1677
1601
  border-color: #b9c5ef;
1678
1602
  border-color: var(--aquarium-colors-primary-40, #4cc2f7);
1679
1603
  }
1680
- .border-grey-50 {
1604
+ .border-grey-50{
1681
1605
  border-color: #787885;
1682
1606
  border-color: var(--aquarium-colors-grey-50, #787885);
1683
1607
  }
1684
- .border-grey-90 {
1608
+ .border-grey-90{
1685
1609
  border-color: #292a31;
1686
1610
  border-color: var(--aquarium-colors-grey-90, #292a31);
1687
1611
  }
1688
- .border-success-70 {
1612
+ .border-success-70{
1689
1613
  border-color: #00b300;
1690
1614
  border-color: var(--aquarium-colors-success-70, #00b300);
1691
1615
  }
1692
- .border-grey-40 {
1616
+ .border-grey-40{
1693
1617
  border-color: #9696a0;
1694
1618
  border-color: var(--aquarium-colors-grey-40, #9696a0);
1695
1619
  }
1696
- .border-current {
1620
+ .border-current{
1697
1621
  border-color: currentColor;
1698
1622
  border-color: var(--aquarium-colors-current, currentColor);
1699
1623
  }
1700
- .border-grey-100 {
1624
+ .border-grey-100{
1701
1625
  border-color: #19191d;
1702
1626
  border-color: var(--aquarium-colors-grey-100, #19191d);
1703
1627
  }
1704
- .bg-grey-10 {
1628
+ .bg-grey-10{
1705
1629
  background-color: #e1e1e3;
1706
1630
  background-color: var(--aquarium-colors-grey-10, #e1e1e3);
1707
1631
  }
1708
- .bg-error-5 {
1632
+ .bg-error-5{
1709
1633
  background-color: #fee8e7;
1710
1634
  background-color: var(--aquarium-colors-error-5, #fee8e7);
1711
1635
  }
1712
- .bg-info-10 {
1636
+ .bg-info-10{
1713
1637
  background-color: #e0f5fe;
1714
1638
  background-color: var(--aquarium-colors-info-10, #e0f5fe);
1715
1639
  }
1716
- .bg-success-5 {
1640
+ .bg-success-5{
1717
1641
  background-color: #ecf7ed;
1718
1642
  background-color: var(--aquarium-colors-success-5, #ecf7ed);
1719
1643
  }
1720
- .bg-warning-5 {
1644
+ .bg-warning-5{
1721
1645
  background-color: #fff8ea;
1722
1646
  background-color: var(--aquarium-colors-warning-5, #fff8ea);
1723
1647
  }
1724
- .bg-grey-0 {
1648
+ .bg-grey-0{
1725
1649
  background-color: #f7f7fa;
1726
1650
  background-color: var(--aquarium-colors-grey-0, #f7f7fa);
1727
1651
  }
1728
- .bg-white {
1652
+ .bg-white{
1729
1653
  background-color: white;
1730
1654
  background-color: var(--aquarium-colors-white, white);
1731
1655
  }
1732
- .bg-primary-80 {
1656
+ .bg-primary-80{
1733
1657
  background-color: #3545be;
1734
1658
  background-color: var(--aquarium-colors-primary-80, #0788d1);
1735
1659
  }
1736
- .bg-primary-40 {
1660
+ .bg-primary-40{
1737
1661
  background-color: #b9c5ef;
1738
1662
  background-color: var(--aquarium-colors-primary-40, #4cc2f7);
1739
1663
  }
1740
- .bg-grey-5 {
1664
+ .bg-grey-5{
1741
1665
  background-color: #ededf0;
1742
1666
  background-color: var(--aquarium-colors-grey-5, #ededf0);
1743
1667
  }
1744
- .bg-primary-100 {
1668
+ .bg-primary-100{
1745
1669
  background-color: #0e1652;
1746
1670
  background-color: var(--aquarium-colors-primary-100, #02569a);
1747
1671
  }
1748
- .bg-info-50 {
1672
+ .bg-info-50{
1749
1673
  background-color: #28b4f4;
1750
1674
  background-color: var(--aquarium-colors-info-50, #28b4f4);
1751
1675
  }
1752
- .bg-warning-70 {
1676
+ .bg-warning-70{
1753
1677
  background-color: #ffb300;
1754
1678
  background-color: var(--aquarium-colors-warning-70, #ffb300);
1755
1679
  }
1756
- .bg-success-70 {
1680
+ .bg-success-70{
1757
1681
  background-color: #00b300;
1758
1682
  background-color: var(--aquarium-colors-success-70, #00b300);
1759
1683
  }
1760
- .bg-error-70 {
1684
+ .bg-error-70{
1761
1685
  background-color: #d80005;
1762
1686
  background-color: var(--aquarium-colors-error-70, #d80005);
1763
1687
  }
1764
- .bg-grey-20 {
1688
+ .bg-grey-20{
1765
1689
  background-color: #d2d2d6;
1766
1690
  background-color: var(--aquarium-colors-grey-20, #d2d2d6);
1767
1691
  }
1768
- .bg-grey-90 {
1692
+ .bg-grey-90{
1769
1693
  background-color: #292a31;
1770
1694
  background-color: var(--aquarium-colors-grey-90, #292a31);
1771
1695
  }
1772
- .bg-grey-30 {
1696
+ .bg-grey-30{
1773
1697
  background-color: #b4b4bb;
1774
1698
  background-color: var(--aquarium-colors-grey-30, #b4b4bb);
1775
1699
  }
1776
- .bg-grey-80 {
1700
+ .bg-grey-80{
1777
1701
  background-color: #3a3a44;
1778
1702
  background-color: var(--aquarium-colors-grey-80, #3a3a44);
1779
1703
  }
1780
- .bg-current {
1704
+ .bg-current{
1781
1705
  background-color: currentColor;
1782
1706
  background-color: var(--aquarium-colors-current, currentColor);
1783
1707
  }
1784
- .bg-transparent {
1708
+ .bg-transparent{
1785
1709
  background-color: transparent;
1786
1710
  background-color: var(--aquarium-colors-transparent, transparent);
1787
1711
  }
1788
- .bg-info-5 {
1712
+ .bg-info-5{
1789
1713
  background-color: #effaff;
1790
1714
  background-color: var(--aquarium-colors-info-5, #effaff);
1791
1715
  }
1792
- .bg-secondary-5 {
1716
+ .bg-secondary-5{
1793
1717
  background-color: #fff3e8;
1794
1718
  background-color: var(--aquarium-colors-secondary-5, #fff3e8);
1795
1719
  }
1796
- .bg-error-0 {
1720
+ .bg-error-0{
1797
1721
  background-color: #fef2f1;
1798
1722
  background-color: var(--aquarium-colors-error-0, #fef2f1);
1799
1723
  }
1800
- .bg-error-20 {
1724
+ .bg-error-20{
1801
1725
  background-color: #ffadb3;
1802
1726
  background-color: var(--aquarium-colors-error-20, #ffadb3);
1803
1727
  }
1804
- .bg-primary-70 {
1728
+ .bg-primary-70{
1805
1729
  background-color: #5865cd;
1806
1730
  background-color: var(--aquarium-colors-primary-70, #0399e3);
1807
1731
  }
1808
- .bg-gradient-to-r {
1732
+ .bg-gradient-to-r{
1809
1733
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
1810
1734
  }
1811
- .bg-gradient-to-l {
1735
+ .bg-gradient-to-l{
1812
1736
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
1813
1737
  }
1814
- .from-white {
1738
+ .from-white{
1815
1739
  --tw-gradient-from: var(--aquarium-colors-white, white);
1816
1740
  --tw-gradient-to: rgba(255, 255, 255, 0);
1817
1741
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
1818
1742
  }
1819
- .via-white {
1743
+ .via-white{
1820
1744
  --tw-gradient-to: rgba(255, 255, 255, 0);
1821
1745
  --tw-gradient-stops: var(--tw-gradient-from), var(--aquarium-colors-white, white), var(--tw-gradient-to);
1822
1746
  }
1823
- .bg-cover {
1747
+ .bg-cover{
1824
1748
  background-size: cover;
1825
1749
  }
1826
- .object-cover {
1750
+ .object-cover{
1827
1751
  -o-object-fit: cover;
1828
1752
  object-fit: cover;
1829
1753
  }
1830
- .p-4 {
1754
+ .p-4{
1831
1755
  padding: 12px;
1832
1756
  }
1833
- .p-5 {
1757
+ .p-5{
1834
1758
  padding: 16px;
1835
1759
  }
1836
- .p-6 {
1760
+ .p-6{
1837
1761
  padding: 24px;
1838
1762
  }
1839
- .p-\[2px\] {
1763
+ .p-\[2px\]{
1840
1764
  padding: 2px;
1841
1765
  }
1842
- .p-3 {
1766
+ .p-3{
1843
1767
  padding: 8px;
1844
1768
  }
1845
- .p-\[3px\] {
1769
+ .p-\[3px\]{
1846
1770
  padding: 3px;
1847
1771
  }
1848
- .p-2 {
1772
+ .p-2{
1849
1773
  padding: 4px;
1850
1774
  }
1851
- .p-1 {
1775
+ .p-1{
1852
1776
  padding: 2px;
1853
1777
  }
1854
- .px-3 {
1778
+ .px-3{
1855
1779
  padding-left: 8px;
1856
1780
  padding-right: 8px;
1857
1781
  }
1858
- .py-3 {
1782
+ .py-3{
1859
1783
  padding-top: 8px;
1860
1784
  padding-bottom: 8px;
1861
1785
  }
1862
- .py-2 {
1786
+ .py-2{
1863
1787
  padding-top: 4px;
1864
1788
  padding-bottom: 4px;
1865
1789
  }
1866
- .py-1 {
1790
+ .py-1{
1867
1791
  padding-top: 2px;
1868
1792
  padding-bottom: 2px;
1869
1793
  }
1870
- .px-2 {
1794
+ .px-2{
1871
1795
  padding-left: 4px;
1872
1796
  padding-right: 4px;
1873
1797
  }
1874
- .py-7 {
1798
+ .py-7{
1875
1799
  padding-top: 32px;
1876
1800
  padding-bottom: 32px;
1877
1801
  }
1878
- .px-7 {
1802
+ .px-7{
1879
1803
  padding-left: 32px;
1880
1804
  padding-right: 32px;
1881
1805
  }
1882
- .py-6 {
1806
+ .py-6{
1883
1807
  padding-top: 24px;
1884
1808
  padding-bottom: 24px;
1885
1809
  }
1886
- .px-6 {
1810
+ .px-6{
1887
1811
  padding-left: 24px;
1888
1812
  padding-right: 24px;
1889
1813
  }
1890
- .py-5 {
1814
+ .py-5{
1891
1815
  padding-top: 16px;
1892
1816
  padding-bottom: 16px;
1893
1817
  }
1894
- .px-5 {
1818
+ .px-5{
1895
1819
  padding-left: 16px;
1896
1820
  padding-right: 16px;
1897
1821
  }
1898
- .py-\[6px\] {
1822
+ .py-\[6px\]{
1899
1823
  padding-top: 6px;
1900
1824
  padding-bottom: 6px;
1901
1825
  }
1902
- .px-\[1px\] {
1826
+ .px-\[1px\]{
1903
1827
  padding-left: 1px;
1904
1828
  padding-right: 1px;
1905
1829
  }
1906
- .px-\[14px\] {
1830
+ .px-\[14px\]{
1907
1831
  padding-left: 14px;
1908
1832
  padding-right: 14px;
1909
1833
  }
1910
- .px-\[20px\] {
1834
+ .px-\[20px\]{
1911
1835
  padding-left: 20px;
1912
1836
  padding-right: 20px;
1913
1837
  }
1914
- .px-4 {
1838
+ .px-4{
1915
1839
  padding-left: 12px;
1916
1840
  padding-right: 12px;
1917
1841
  }
1918
- .py-\[14px\] {
1842
+ .py-\[14px\]{
1919
1843
  padding-top: 14px;
1920
1844
  padding-bottom: 14px;
1921
1845
  }
1922
- .px-1 {
1846
+ .px-1{
1923
1847
  padding-left: 2px;
1924
1848
  padding-right: 2px;
1925
1849
  }
1926
- .px-\[4px\] {
1850
+ .px-\[4px\]{
1927
1851
  padding-left: 4px;
1928
1852
  padding-right: 4px;
1929
1853
  }
1930
- .py-4 {
1854
+ .py-4{
1931
1855
  padding-top: 12px;
1932
1856
  padding-bottom: 12px;
1933
1857
  }
1934
- .px-0 {
1858
+ .px-0{
1935
1859
  padding-left: 0;
1936
1860
  padding-right: 0;
1937
1861
  }
1938
- .pt-3 {
1862
+ .pt-3{
1939
1863
  padding-top: 8px;
1940
1864
  }
1941
- .pb-6 {
1865
+ .pb-6{
1942
1866
  padding-bottom: 24px;
1943
1867
  }
1944
- .pl-7 {
1868
+ .pl-7{
1945
1869
  padding-left: 32px;
1946
1870
  }
1947
- .pb-3 {
1871
+ .pb-3{
1948
1872
  padding-bottom: 8px;
1949
1873
  }
1950
- .pr-4 {
1874
+ .pr-4{
1951
1875
  padding-right: 12px;
1952
1876
  }
1953
- .pl-4 {
1877
+ .pl-4{
1954
1878
  padding-left: 12px;
1955
1879
  }
1956
- .text-left {
1880
+ .text-left{
1957
1881
  text-align: left;
1958
1882
  }
1959
- .text-center {
1883
+ .text-center{
1960
1884
  text-align: center;
1961
1885
  }
1962
- .text-right {
1886
+ .text-right{
1963
1887
  text-align: right;
1964
1888
  }
1965
- .align-middle {
1889
+ .align-middle{
1966
1890
  vertical-align: middle;
1967
1891
  }
1968
- .text-\[9px\] {
1892
+ .text-\[9px\]{
1969
1893
  font-size: 9px;
1970
1894
  }
1971
- .text-\[8px\] {
1895
+ .text-\[8px\]{
1972
1896
  font-size: 8px;
1973
1897
  }
1974
- .font-normal {
1898
+ .font-normal{
1975
1899
  font-weight: 400;
1976
1900
  }
1977
- .uppercase {
1901
+ .uppercase{
1978
1902
  text-transform: uppercase;
1979
1903
  }
1980
- .capitalize {
1904
+ .capitalize{
1981
1905
  text-transform: capitalize;
1982
1906
  }
1983
- .italic {
1907
+ .italic{
1984
1908
  font-style: italic;
1985
1909
  }
1986
- .leading-none {
1910
+ .leading-none{
1987
1911
  line-height: 1;
1988
1912
  }
1989
- .leading-\[18px\] {
1913
+ .leading-\[18px\]{
1990
1914
  line-height: 18px;
1991
1915
  }
1992
- .leading-\[0px\] {
1916
+ .leading-\[0px\]{
1993
1917
  line-height: 0px;
1994
1918
  }
1995
- .text-error-100 {
1919
+ .text-error-100{
1996
1920
  color: #aa0000;
1997
1921
  color: var(--aquarium-colors-error-100, #aa0000);
1998
1922
  }
1999
- .text-error-90 {
1923
+ .text-error-90{
2000
1924
  color: #b90000;
2001
1925
  color: var(--aquarium-colors-error-90, #b90000);
2002
1926
  }
2003
- .text-error-80 {
1927
+ .text-error-80{
2004
1928
  color: #c50001;
2005
1929
  color: var(--aquarium-colors-error-80, #c50001);
2006
1930
  }
2007
- .text-error-70 {
1931
+ .text-error-70{
2008
1932
  color: #d80005;
2009
1933
  color: var(--aquarium-colors-error-70, #d80005);
2010
1934
  }
2011
- .text-error-60 {
1935
+ .text-error-60{
2012
1936
  color: #e70000;
2013
1937
  color: var(--aquarium-colors-error-60, #e70000);
2014
1938
  }
2015
- .text-error-50 {
1939
+ .text-error-50{
2016
1940
  color: #e62728;
2017
1941
  color: var(--aquarium-colors-error-50, #e62728);
2018
1942
  }
2019
- .text-error-40 {
1943
+ .text-error-40{
2020
1944
  color: #e0504f;
2021
1945
  color: var(--aquarium-colors-error-40, #e0504f);
2022
1946
  }
2023
- .text-error-30 {
1947
+ .text-error-30{
2024
1948
  color: #ed7975;
2025
1949
  color: var(--aquarium-colors-error-30, #ed7975);
2026
1950
  }
2027
- .text-error-20 {
1951
+ .text-error-20{
2028
1952
  color: #ffadb3;
2029
1953
  color: var(--aquarium-colors-error-20, #ffadb3);
2030
1954
  }
2031
- .text-error-10 {
1955
+ .text-error-10{
2032
1956
  color: #ffcbd2;
2033
1957
  color: var(--aquarium-colors-error-10, #ffcbd2);
2034
1958
  }
2035
- .text-error-5 {
1959
+ .text-error-5{
2036
1960
  color: #fee8e7;
2037
1961
  color: var(--aquarium-colors-error-5, #fee8e7);
2038
1962
  }
2039
- .text-error-0 {
1963
+ .text-error-0{
2040
1964
  color: #fef2f1;
2041
1965
  color: var(--aquarium-colors-error-0, #fef2f1);
2042
1966
  }
2043
- .text-warning-100 {
1967
+ .text-warning-100{
2044
1968
  color: #fe6d00;
2045
1969
  color: var(--aquarium-colors-warning-100, #fe6d00);
2046
1970
  }
2047
- .text-warning-90 {
1971
+ .text-warning-90{
2048
1972
  color: #ff9003;
2049
1973
  color: var(--aquarium-colors-warning-90, #ff9003);
2050
1974
  }
2051
- .text-warning-80 {
1975
+ .text-warning-80{
2052
1976
  color: #fd9f00;
2053
1977
  color: var(--aquarium-colors-warning-80, #fd9f00);
2054
1978
  }
2055
- .text-warning-70 {
1979
+ .text-warning-70{
2056
1980
  color: #ffb300;
2057
1981
  color: var(--aquarium-colors-warning-70, #ffb300);
2058
1982
  }
2059
- .text-warning-60 {
1983
+ .text-warning-60{
2060
1984
  color: #ffc107;
2061
1985
  color: var(--aquarium-colors-warning-60, #ffc107);
2062
1986
  }
2063
- .text-warning-50 {
1987
+ .text-warning-50{
2064
1988
  color: #fdc926;
2065
1989
  color: var(--aquarium-colors-warning-50, #fdc926);
2066
1990
  }
2067
- .text-warning-40 {
1991
+ .text-warning-40{
2068
1992
  color: #fdd44d;
2069
1993
  color: var(--aquarium-colors-warning-40, #fdd44d);
2070
1994
  }
2071
- .text-warning-30 {
1995
+ .text-warning-30{
2072
1996
  color: #fddf81;
2073
1997
  color: var(--aquarium-colors-warning-30, #fddf81);
2074
1998
  }
2075
- .text-warning-20 {
1999
+ .text-warning-20{
2076
2000
  color: #feebb2;
2077
2001
  color: var(--aquarium-colors-warning-20, #feebb2);
2078
2002
  }
2079
- .text-warning-10 {
2003
+ .text-warning-10{
2080
2004
  color: #fff2cd;
2081
2005
  color: var(--aquarium-colors-warning-10, #fff2cd);
2082
2006
  }
2083
- .text-warning-5 {
2007
+ .text-warning-5{
2084
2008
  color: #fff8ea;
2085
2009
  color: var(--aquarium-colors-warning-5, #fff8ea);
2086
2010
  }
2087
- .text-warning-0 {
2011
+ .text-warning-0{
2088
2012
  color: #fffdf9;
2089
2013
  color: var(--aquarium-colors-warning-0, #fffdf9);
2090
2014
  }
2091
- .text-success-100 {
2015
+ .text-success-100{
2092
2016
  color: #006f00;
2093
2017
  color: var(--aquarium-colors-success-100, #006f00);
2094
2018
  }
2095
- .text-success-90 {
2019
+ .text-success-90{
2096
2020
  color: #008e00;
2097
2021
  color: var(--aquarium-colors-success-90, #008e00);
2098
2022
  }
2099
- .text-success-80 {
2023
+ .text-success-80{
2100
2024
  color: #009f00;
2101
2025
  color: var(--aquarium-colors-success-80, #009f00);
2102
2026
  }
2103
- .text-success-70 {
2027
+ .text-success-70{
2104
2028
  color: #00b300;
2105
2029
  color: var(--aquarium-colors-success-70, #00b300);
2106
2030
  }
2107
- .text-success-60 {
2031
+ .text-success-60{
2108
2032
  color: #00c300;
2109
2033
  color: var(--aquarium-colors-success-60, #00c300);
2110
2034
  }
2111
- .text-success-50 {
2035
+ .text-success-50{
2112
2036
  color: #40ce37;
2113
2037
  color: var(--aquarium-colors-success-50, #40ce37);
2114
2038
  }
2115
- .text-success-40 {
2039
+ .text-success-40{
2116
2040
  color: #60db57;
2117
2041
  color: var(--aquarium-colors-success-40, #60db57);
2118
2042
  }
2119
- .text-success-30 {
2043
+ .text-success-30{
2120
2044
  color: #89eb80;
2121
2045
  color: var(--aquarium-colors-success-30, #89eb80);
2122
2046
  }
2123
- .text-success-20 {
2047
+ .text-success-20{
2124
2048
  color: #afffa7;
2125
2049
  color: var(--aquarium-colors-success-20, #afffa7);
2126
2050
  }
2127
- .text-success-10 {
2051
+ .text-success-10{
2128
2052
  color: #cbffc9;
2129
2053
  color: var(--aquarium-colors-success-10, #cbffc9);
2130
2054
  }
2131
- .text-success-5 {
2055
+ .text-success-5{
2132
2056
  color: #ecf7ed;
2133
2057
  color: var(--aquarium-colors-success-5, #ecf7ed);
2134
2058
  }
2135
- .text-success-0 {
2059
+ .text-success-0{
2136
2060
  color: #f5faf5;
2137
2061
  color: var(--aquarium-colors-success-0, #f5faf5);
2138
2062
  }
2139
- .text-info-100 {
2063
+ .text-info-100{
2140
2064
  color: #02569a;
2141
2065
  color: var(--aquarium-colors-info-100, #02569a);
2142
2066
  }
2143
- .text-info-90 {
2067
+ .text-info-90{
2144
2068
  color: #0174ba;
2145
2069
  color: var(--aquarium-colors-info-90, #0174ba);
2146
2070
  }
2147
- .text-info-80 {
2071
+ .text-info-80{
2148
2072
  color: #0788d1;
2149
2073
  color: var(--aquarium-colors-info-80, #0788d1);
2150
2074
  }
2151
- .text-info-70 {
2075
+ .text-info-70{
2152
2076
  color: #0399e3;
2153
2077
  color: var(--aquarium-colors-info-70, #0399e3);
2154
2078
  }
2155
- .text-info-60 {
2079
+ .text-info-60{
2156
2080
  color: #02a8f3;
2157
2081
  color: var(--aquarium-colors-info-60, #02a8f3);
2158
2082
  }
2159
- .text-info-50 {
2083
+ .text-info-50{
2160
2084
  color: #28b4f4;
2161
2085
  color: var(--aquarium-colors-info-50, #28b4f4);
2162
2086
  }
2163
- .text-info-40 {
2087
+ .text-info-40{
2164
2088
  color: #4cc2f7;
2165
2089
  color: var(--aquarium-colors-info-40, #4cc2f7);
2166
2090
  }
2167
- .text-info-30 {
2091
+ .text-info-30{
2168
2092
  color: #7fd1f7;
2169
2093
  color: var(--aquarium-colors-info-30, #7fd1f7);
2170
2094
  }
2171
- .text-info-20 {
2095
+ .text-info-20{
2172
2096
  color: #b4e5fb;
2173
2097
  color: var(--aquarium-colors-info-20, #b4e5fb);
2174
2098
  }
2175
- .text-info-10 {
2099
+ .text-info-10{
2176
2100
  color: #e0f5fe;
2177
2101
  color: var(--aquarium-colors-info-10, #e0f5fe);
2178
2102
  }
2179
- .text-info-5 {
2103
+ .text-info-5{
2180
2104
  color: #effaff;
2181
2105
  color: var(--aquarium-colors-info-5, #effaff);
2182
2106
  }
2183
- .text-info-0 {
2107
+ .text-info-0{
2184
2108
  color: #f9fdff;
2185
2109
  color: var(--aquarium-colors-info-0, #f9fdff);
2186
2110
  }
2187
- .text-grey-100 {
2111
+ .text-grey-100{
2188
2112
  color: #19191d;
2189
2113
  color: var(--aquarium-colors-grey-100, #19191d);
2190
2114
  }
2191
- .text-grey-90 {
2115
+ .text-grey-90{
2192
2116
  color: #292a31;
2193
2117
  color: var(--aquarium-colors-grey-90, #292a31);
2194
2118
  }
2195
- .text-grey-80 {
2119
+ .text-grey-80{
2196
2120
  color: #3a3a44;
2197
2121
  color: var(--aquarium-colors-grey-80, #3a3a44);
2198
2122
  }
2199
- .text-grey-70 {
2123
+ .text-grey-70{
2200
2124
  color: #4a4b57;
2201
2125
  color: var(--aquarium-colors-grey-70, #4a4b57);
2202
2126
  }
2203
- .text-grey-60 {
2127
+ .text-grey-60{
2204
2128
  color: #5a5b6a;
2205
2129
  color: var(--aquarium-colors-grey-60, #5a5b6a);
2206
2130
  }
2207
- .text-grey-50 {
2131
+ .text-grey-50{
2208
2132
  color: #787885;
2209
2133
  color: var(--aquarium-colors-grey-50, #787885);
2210
2134
  }
2211
- .text-grey-40 {
2135
+ .text-grey-40{
2212
2136
  color: #9696a0;
2213
2137
  color: var(--aquarium-colors-grey-40, #9696a0);
2214
2138
  }
2215
- .text-grey-30 {
2139
+ .text-grey-30{
2216
2140
  color: #b4b4bb;
2217
2141
  color: var(--aquarium-colors-grey-30, #b4b4bb);
2218
2142
  }
2219
- .text-grey-20 {
2143
+ .text-grey-20{
2220
2144
  color: #d2d2d6;
2221
2145
  color: var(--aquarium-colors-grey-20, #d2d2d6);
2222
2146
  }
2223
- .text-grey-10 {
2147
+ .text-grey-10{
2224
2148
  color: #e1e1e3;
2225
2149
  color: var(--aquarium-colors-grey-10, #e1e1e3);
2226
2150
  }
2227
- .text-grey-5 {
2151
+ .text-grey-5{
2228
2152
  color: #ededf0;
2229
2153
  color: var(--aquarium-colors-grey-5, #ededf0);
2230
2154
  }
2231
- .text-grey-0 {
2155
+ .text-grey-0{
2232
2156
  color: #f7f7fa;
2233
2157
  color: var(--aquarium-colors-grey-0, #f7f7fa);
2234
2158
  }
2235
- .text-secondary-100 {
2159
+ .text-secondary-100{
2236
2160
  color: #e11d16;
2237
2161
  color: var(--aquarium-colors-secondary-100, #e11d16);
2238
2162
  }
2239
- .text-secondary-90 {
2163
+ .text-secondary-90{
2240
2164
  color: #eb4610;
2241
2165
  color: var(--aquarium-colors-secondary-90, #eb4610);
2242
2166
  }
2243
- .text-secondary-80 {
2167
+ .text-secondary-80{
2244
2168
  color: #f3580d;
2245
2169
  color: var(--aquarium-colors-secondary-80, #f3580d);
2246
2170
  }
2247
- .text-secondary-70 {
2171
+ .text-secondary-70{
2248
2172
  color: #f96a02;
2249
2173
  color: var(--aquarium-colors-secondary-70, #f96a02);
2250
2174
  }
2251
- .text-secondary-60 {
2175
+ .text-secondary-60{
2252
2176
  color: #ff7700;
2253
2177
  color: var(--aquarium-colors-secondary-60, #ff7700);
2254
2178
  }
2255
- .text-secondary-50 {
2179
+ .text-secondary-50{
2256
2180
  color: #fc871a;
2257
2181
  color: var(--aquarium-colors-secondary-50, #fc871a);
2258
2182
  }
2259
- .text-secondary-40 {
2183
+ .text-secondary-40{
2260
2184
  color: #fb9a3e;
2261
2185
  color: var(--aquarium-colors-secondary-40, #fb9a3e);
2262
2186
  }
2263
- .text-secondary-30 {
2187
+ .text-secondary-30{
2264
2188
  color: #fab26e;
2265
2189
  color: var(--aquarium-colors-secondary-30, #fab26e);
2266
2190
  }
2267
- .text-secondary-20 {
2191
+ .text-secondary-20{
2268
2192
  color: #f8c99c;
2269
2193
  color: var(--aquarium-colors-secondary-20, #f8c99c);
2270
2194
  }
2271
- .text-secondary-10 {
2195
+ .text-secondary-10{
2272
2196
  color: #fee8d0;
2273
2197
  color: var(--aquarium-colors-secondary-10, #fee8d0);
2274
2198
  }
2275
- .text-secondary-5 {
2199
+ .text-secondary-5{
2276
2200
  color: #fff3e8;
2277
2201
  color: var(--aquarium-colors-secondary-5, #fff3e8);
2278
2202
  }
2279
- .text-secondary-0 {
2203
+ .text-secondary-0{
2280
2204
  color: #fffbf8;
2281
2205
  color: var(--aquarium-colors-secondary-0, #fffbf8);
2282
2206
  }
2283
- .text-primary-100 {
2207
+ .text-primary-100{
2284
2208
  color: #0e1652;
2285
2209
  color: var(--aquarium-colors-primary-100, #02569a);
2286
2210
  }
2287
- .text-primary-90 {
2211
+ .text-primary-90{
2288
2212
  color: #222f95;
2289
2213
  color: var(--aquarium-colors-primary-90, #0174ba);
2290
2214
  }
2291
- .text-primary-80 {
2215
+ .text-primary-80{
2292
2216
  color: #3545be;
2293
2217
  color: var(--aquarium-colors-primary-80, #0788d1);
2294
2218
  }
2295
- .text-primary-70 {
2219
+ .text-primary-70{
2296
2220
  color: #5865cd;
2297
2221
  color: var(--aquarium-colors-primary-70, #0399e3);
2298
2222
  }
2299
- .text-primary-60 {
2223
+ .text-primary-60{
2300
2224
  color: #818eec;
2301
2225
  color: var(--aquarium-colors-primary-60, #02a8f3);
2302
2226
  }
2303
- .text-primary-50 {
2227
+ .text-primary-50{
2304
2228
  color: #9daaee;
2305
2229
  color: var(--aquarium-colors-primary-50, #28b4f4);
2306
2230
  }
2307
- .text-primary-40 {
2231
+ .text-primary-40{
2308
2232
  color: #b9c5ef;
2309
2233
  color: var(--aquarium-colors-primary-40, #4cc2f7);
2310
2234
  }
2311
- .text-primary-30 {
2235
+ .text-primary-30{
2312
2236
  color: #c7d1f4;
2313
2237
  color: var(--aquarium-colors-primary-30, #7fd1f7);
2314
2238
  }
2315
- .text-primary-20 {
2239
+ .text-primary-20{
2316
2240
  color: #d5ddfa;
2317
2241
  color: var(--aquarium-colors-primary-20, #b4e5fb);
2318
2242
  }
2319
- .text-primary-10 {
2243
+ .text-primary-10{
2320
2244
  color: #e3e9ff;
2321
2245
  color: var(--aquarium-colors-primary-10, #e0f5fe);
2322
2246
  }
2323
- .text-primary-5 {
2247
+ .text-primary-5{
2324
2248
  color: #f3f6ff;
2325
2249
  color: var(--aquarium-colors-primary-5, #effaff);
2326
2250
  }
2327
- .text-primary-0 {
2251
+ .text-primary-0{
2328
2252
  color: #ffffff;
2329
2253
  color: var(--aquarium-colors-primary-0, #f9fdff);
2330
2254
  }
2331
- .text-transparent {
2255
+ .text-transparent{
2332
2256
  color: transparent;
2333
2257
  color: var(--aquarium-colors-transparent, transparent);
2334
2258
  }
2335
- .text-white {
2259
+ .text-white{
2336
2260
  color: white;
2337
2261
  color: var(--aquarium-colors-white, white);
2338
2262
  }
2339
- .underline {
2263
+ .underline{
2340
2264
  -webkit-text-decoration-line: underline;
2341
2265
  text-decoration-line: underline;
2342
2266
  }
2343
- .no-underline {
2267
+ .no-underline{
2344
2268
  -webkit-text-decoration-line: none;
2345
2269
  text-decoration-line: none;
2346
2270
  }
2347
- .opacity-60 {
2271
+ .opacity-60{
2348
2272
  opacity: 0.6;
2349
2273
  }
2350
- .shadow-16dp {
2274
+ .shadow-16dp{
2351
2275
  --tw-shadow: var(--aquarium-box-shadow-16dp, 0px 16px 32px rgba(90, 91, 106, 0.12), 0px 8px 16px rgba(58, 58, 68, 0.12));
2352
2276
  --tw-shadow-colored: 0px 16px 32px 0px var(--tw-shadow-color);
2353
2277
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
2354
2278
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
2355
2279
  }
2356
- .shadow-4dp {
2280
+ .shadow-4dp{
2357
2281
  --tw-shadow: var(--aquarium-box-shadow-4dp, 0px 4px 8px rgba(90, 91, 106, 0.20), 0px 2px 4px rgba(58, 58, 68, 0.20));
2358
2282
  --tw-shadow-colored: 0px 4px 8px 0px var(--tw-shadow-color);
2359
2283
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
2360
2284
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
2361
2285
  }
2362
- .shadow-2dp {
2286
+ .shadow-2dp{
2363
2287
  --tw-shadow: var(--aquarium-box-shadow-2dp, 0px 2px 4px rgba(90, 91, 106, 0.24), 0px 1px 2px rgba(58, 58, 68, 0.24));
2364
2288
  --tw-shadow-colored: 0px 2px 4px 0px var(--tw-shadow-color);
2365
2289
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
2366
2290
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
2367
2291
  }
2368
- .outline-none {
2292
+ .outline-none{
2369
2293
  outline: 2px solid transparent;
2370
2294
  outline-offset: 2px;
2371
2295
  }
2372
- .ring-0 {
2296
+ .ring-0{
2373
2297
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2374
2298
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2375
2299
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2376
2300
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2377
2301
  }
2378
- .ring-1 {
2302
+ .ring-1{
2379
2303
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2380
2304
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2381
2305
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2382
2306
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2383
2307
  }
2384
- .ring-2 {
2308
+ .ring-2{
2385
2309
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2386
2310
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2387
2311
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2388
2312
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2389
2313
  }
2390
- .ring-inset {
2314
+ .ring-inset{
2391
2315
  --tw-ring-inset: inset;
2392
2316
  }
2393
- .ring-primary-80 {
2317
+ .ring-primary-80{
2394
2318
  --tw-ring-color: var(--aquarium-colors-primary-80, #0788d1);
2395
2319
  }
2396
- .ring-grey-30 {
2320
+ .ring-grey-30{
2397
2321
  --tw-ring-color: var(--aquarium-colors-grey-30, #b4b4bb);
2398
2322
  }
2399
- .ring-offset-0 {
2323
+ .ring-offset-0{
2400
2324
  --tw-ring-offset-width: 0px;
2401
2325
  }
2402
- .blur {
2326
+ .blur{
2403
2327
  --tw-blur: blur(8px);
2404
2328
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
2405
2329
  }
2406
- .filter {
2330
+ .filter{
2407
2331
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
2408
2332
  }
2409
- .transition {
2333
+ .transition{
2410
2334
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
2411
2335
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
2412
2336
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
2413
2337
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2414
2338
  transition-duration: 150ms;
2415
2339
  }
2416
- .transition-all {
2340
+ .transition-all{
2417
2341
  transition-property: all;
2418
2342
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2419
2343
  transition-duration: 150ms;
2420
2344
  }
2421
- .delay-150 {
2345
+ .delay-150{
2422
2346
  transition-delay: 150ms;
2423
2347
  }
2424
- .duration-300 {
2348
+ .duration-300{
2425
2349
  transition-duration: 300ms;
2426
2350
  }
2427
- .ease-in-out {
2351
+ .ease-in-out{
2428
2352
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2429
2353
  }
2430
- .line-clamp-1 {
2354
+ .line-clamp-1{
2431
2355
  overflow: hidden;
2432
2356
  display: -webkit-box;
2433
2357
  -webkit-box-orient: vertical;
2434
2358
  -webkit-line-clamp: 1;
2435
2359
  }
2436
- .line-clamp-2 {
2360
+ .line-clamp-2{
2437
2361
  overflow: hidden;
2438
2362
  display: -webkit-box;
2439
2363
  -webkit-box-orient: vertical;
2440
2364
  -webkit-line-clamp: 2;
2441
2365
  }
2442
- .line-clamp-3 {
2366
+ .line-clamp-3{
2443
2367
  overflow: hidden;
2444
2368
  display: -webkit-box;
2445
2369
  -webkit-box-orient: vertical;
2446
2370
  -webkit-line-clamp: 3;
2447
2371
  }
2448
- .line-clamp-4 {
2372
+ .line-clamp-4{
2449
2373
  overflow: hidden;
2450
2374
  display: -webkit-box;
2451
2375
  -webkit-box-orient: vertical;
2452
2376
  -webkit-line-clamp: 4;
2453
2377
  }
2454
- .line-clamp-5 {
2378
+ .line-clamp-5{
2455
2379
  overflow: hidden;
2456
2380
  display: -webkit-box;
2457
2381
  -webkit-box-orient: vertical;
2458
2382
  -webkit-line-clamp: 5;
2459
2383
  }
2460
- .line-clamp-6 {
2384
+ .line-clamp-6{
2461
2385
  overflow: hidden;
2462
2386
  display: -webkit-box;
2463
2387
  -webkit-box-orient: vertical;
2464
2388
  -webkit-line-clamp: 6;
2465
2389
  }
2466
- .scrollbar-hide {
2390
+ .scrollbar-hide{
2467
2391
  -ms-overflow-style: none;
2468
2392
  scrollbar-width: none;
2469
2393
  }
2470
- .scrollbar-hide::-webkit-scrollbar {
2394
+ .scrollbar-hide::-webkit-scrollbar{
2471
2395
  display: none;
2472
2396
  }
2473
- .placeholder\:text-grey-40::-moz-placeholder {
2397
+ .placeholder\:text-grey-40::-moz-placeholder{
2474
2398
  color: #9696a0;
2475
2399
  color: var(--aquarium-colors-grey-40, #9696a0);
2476
2400
  }
2477
- .placeholder\:text-grey-40::placeholder {
2401
+ .placeholder\:text-grey-40::placeholder{
2478
2402
  color: #9696a0;
2479
2403
  color: var(--aquarium-colors-grey-40, #9696a0);
2480
2404
  }
2481
- .before\:content-\[\'_\'\]::before {
2405
+ .before\:content-\[\'_\'\]::before{
2482
2406
  --tw-content: ' ';
2483
2407
  content: var(--tw-content);
2484
2408
  }
2485
- .first\:mt-0:first-child {
2409
+ .first\:mt-0:first-child{
2486
2410
  margin-top: 0;
2487
2411
  }
2488
- .visited\:text-primary-80:visited {
2412
+ .visited\:text-primary-80:visited{
2489
2413
  color: #3545be;
2490
2414
  color: var(--aquarium-colors-primary-80, #0788d1);
2491
2415
  }
2492
- .checked\:border-primary-80:checked {
2416
+ .checked\:border-primary-80:checked{
2493
2417
  border-color: #3545be;
2494
2418
  border-color: var(--aquarium-colors-primary-80, #0788d1);
2495
2419
  }
2496
- .checked\:border-primary-40:checked {
2420
+ .checked\:border-primary-40:checked{
2497
2421
  border-color: #b9c5ef;
2498
2422
  border-color: var(--aquarium-colors-primary-40, #4cc2f7);
2499
2423
  }
2500
- .checked\:bg-primary-80:checked {
2424
+ .checked\:bg-primary-80:checked{
2501
2425
  background-color: #3545be;
2502
2426
  background-color: var(--aquarium-colors-primary-80, #0788d1);
2503
2427
  }
2504
- .checked\:bg-primary-40:checked {
2428
+ .checked\:bg-primary-40:checked{
2505
2429
  background-color: #b9c5ef;
2506
2430
  background-color: var(--aquarium-colors-primary-40, #4cc2f7);
2507
2431
  }
2508
- .checked\:bg-opacity-40:checked {
2432
+ .checked\:bg-opacity-40:checked{
2509
2433
  --tw-bg-opacity: 0.4;
2510
2434
  }
2511
- .checked\:opacity-40:checked {
2435
+ .checked\:opacity-40:checked{
2512
2436
  opacity: 0.4;
2513
2437
  }
2514
- .checked\:shadow-whiteInset:checked {
2438
+ .checked\:shadow-whiteInset:checked{
2515
2439
  --tw-shadow: var(--aquarium-box-shadow-white-inset, inset 0 0 0 3px rgba(255,255,255,1));
2516
2440
  --tw-shadow-colored: inset 0 0 0 3px var(--tw-shadow-color);
2517
2441
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
2518
2442
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
2519
2443
  }
2520
- .hover\:cursor-pointer:hover {
2444
+ .hover\:cursor-pointer:hover{
2521
2445
  cursor: pointer;
2522
2446
  }
2523
- .hover\:border-grey-50:hover {
2447
+ .hover\:border-grey-50:hover{
2524
2448
  border-color: #787885;
2525
2449
  border-color: var(--aquarium-colors-grey-50, #787885);
2526
2450
  }
2527
- .hover\:border-grey-20:hover {
2451
+ .hover\:border-grey-20:hover{
2528
2452
  border-color: #d2d2d6;
2529
2453
  border-color: var(--aquarium-colors-grey-20, #d2d2d6);
2530
2454
  }
2531
- .hover\:bg-grey-0:hover {
2455
+ .hover\:bg-grey-0:hover{
2532
2456
  background-color: #f7f7fa;
2533
2457
  background-color: var(--aquarium-colors-grey-0, #f7f7fa);
2534
2458
  }
2535
- .hover\:bg-grey-5:hover {
2459
+ .hover\:bg-grey-5:hover{
2536
2460
  background-color: #ededf0;
2537
2461
  background-color: var(--aquarium-colors-grey-5, #ededf0);
2538
2462
  }
2539
- .hover\:bg-grey-30:hover {
2463
+ .hover\:bg-grey-30:hover{
2540
2464
  background-color: #b4b4bb;
2541
2465
  background-color: var(--aquarium-colors-grey-30, #b4b4bb);
2542
2466
  }
2543
- .hover\:bg-primary-90:hover {
2467
+ .hover\:bg-primary-90:hover{
2544
2468
  background-color: #222f95;
2545
2469
  background-color: var(--aquarium-colors-primary-90, #0174ba);
2546
2470
  }
2547
- .hover\:bg-primary-5:hover {
2471
+ .hover\:bg-primary-5:hover{
2548
2472
  background-color: #f3f6ff;
2549
2473
  background-color: var(--aquarium-colors-primary-5, #effaff);
2550
2474
  }
2551
- .hover\:bg-error-10:hover {
2475
+ .hover\:bg-error-10:hover{
2552
2476
  background-color: #ffcbd2;
2553
2477
  background-color: var(--aquarium-colors-error-10, #ffcbd2);
2554
2478
  }
2555
- .hover\:bg-grey-10:hover {
2479
+ .hover\:bg-grey-10:hover{
2556
2480
  background-color: #e1e1e3;
2557
2481
  background-color: var(--aquarium-colors-grey-10, #e1e1e3);
2558
2482
  }
2559
- .hover\:text-primary-90:hover {
2483
+ .hover\:text-primary-90:hover{
2560
2484
  color: #222f95;
2561
2485
  color: var(--aquarium-colors-primary-90, #0174ba);
2562
2486
  }
2563
- .hover\:text-primary-70:hover {
2487
+ .hover\:text-primary-70:hover{
2564
2488
  color: #5865cd;
2565
2489
  color: var(--aquarium-colors-primary-70, #0399e3);
2566
2490
  }
2567
- .hover\:text-grey-80:hover {
2491
+ .hover\:text-grey-80:hover{
2568
2492
  color: #3a3a44;
2569
2493
  color: var(--aquarium-colors-grey-80, #3a3a44);
2570
2494
  }
2571
- .hover\:text-grey-90:hover {
2495
+ .hover\:text-grey-90:hover{
2572
2496
  color: #292a31;
2573
2497
  color: var(--aquarium-colors-grey-90, #292a31);
2574
2498
  }
2575
- .hover\:text-primary-80:hover {
2499
+ .hover\:text-primary-80:hover{
2576
2500
  color: #3545be;
2577
2501
  color: var(--aquarium-colors-primary-80, #0788d1);
2578
2502
  }
2579
- .hover\:underline:hover {
2503
+ .hover\:underline:hover{
2580
2504
  -webkit-text-decoration-line: underline;
2581
2505
  text-decoration-line: underline;
2582
2506
  }
2583
- .hover\:no-underline:hover {
2584
- -webkit-text-decoration-line: none;
2585
- text-decoration-line: none;
2586
- }
2587
- .hover\:ring-primary-90:hover {
2507
+ .hover\:ring-primary-90:hover{
2588
2508
  --tw-ring-color: var(--aquarium-colors-primary-90, #0174ba);
2589
2509
  }
2590
- .hover\:checked\:bg-primary-80:checked:hover {
2510
+ .hover\:checked\:bg-primary-80:checked:hover{
2591
2511
  background-color: #3545be;
2592
2512
  background-color: var(--aquarium-colors-primary-80, #0788d1);
2593
2513
  }
2594
- .focus\:border:focus {
2514
+ .focus\:border:focus{
2595
2515
  border-width: 1px;
2596
2516
  }
2597
- .focus\:border-info-70:focus {
2517
+ .focus\:border-info-70:focus{
2598
2518
  border-color: #0399e3;
2599
2519
  border-color: var(--aquarium-colors-info-70, #0399e3);
2600
2520
  }
2601
- .focus\:border-transparent:focus {
2521
+ .focus\:border-transparent:focus{
2602
2522
  border-color: transparent;
2603
2523
  border-color: var(--aquarium-colors-transparent, transparent);
2604
2524
  }
2605
- .focus\:bg-error-20:focus {
2525
+ .focus\:bg-error-20:focus{
2606
2526
  background-color: #ffadb3;
2607
2527
  background-color: var(--aquarium-colors-error-20, #ffadb3);
2608
2528
  }
2609
- .focus\:bg-grey-20:focus {
2529
+ .focus\:bg-grey-20:focus{
2610
2530
  background-color: #d2d2d6;
2611
2531
  background-color: var(--aquarium-colors-grey-20, #d2d2d6);
2612
2532
  }
2613
- .focus\:text-primary-80:focus {
2533
+ .focus\:text-primary-80:focus{
2614
2534
  color: #3545be;
2615
2535
  color: var(--aquarium-colors-primary-80, #0788d1);
2616
2536
  }
2617
- .focus\:outline-none:focus {
2537
+ .focus\:outline-none:focus{
2618
2538
  outline: 2px solid transparent;
2619
2539
  outline-offset: 2px;
2620
2540
  }
2621
- .focus\:ring-0:focus {
2541
+ .focus\:ring-0:focus{
2622
2542
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2623
2543
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2624
2544
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2625
2545
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2626
2546
  }
2627
- .focus\:ring-2:focus {
2547
+ .focus\:ring-2:focus{
2628
2548
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2629
2549
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2630
2550
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2631
2551
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2632
2552
  }
2633
- .focus\:ring-1:focus {
2553
+ .focus\:ring-1:focus{
2634
2554
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2635
2555
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2636
2556
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2637
2557
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2638
2558
  }
2639
- .focus\:ring-grey-60:focus {
2559
+ .focus\:ring-grey-60:focus{
2640
2560
  --tw-ring-color: var(--aquarium-colors-grey-60, #5a5b6a);
2641
2561
  }
2642
- .focus\:ring-offset-0:focus {
2562
+ .focus\:ring-offset-0:focus{
2643
2563
  --tw-ring-offset-width: 0px;
2644
2564
  }
2645
- .focus-visible\:border-info-70.focus-visible {
2565
+ .focus-visible\:border-info-70.focus-visible{
2646
2566
  border-color: #0399e3;
2647
2567
  border-color: var(--aquarium-colors-info-70, #0399e3);
2648
2568
  }
2649
- .focus-visible\:border-info-70:focus-visible {
2569
+ .focus-visible\:border-info-70:focus-visible{
2650
2570
  border-color: #0399e3;
2651
2571
  border-color: var(--aquarium-colors-info-70, #0399e3);
2652
2572
  }
2653
- .focus-visible\:bg-grey-0.focus-visible {
2573
+ .focus-visible\:bg-grey-0.focus-visible{
2654
2574
  background-color: #f7f7fa;
2655
2575
  background-color: var(--aquarium-colors-grey-0, #f7f7fa);
2656
2576
  }
2657
- .focus-visible\:bg-grey-0:focus-visible {
2577
+ .focus-visible\:bg-grey-0:focus-visible{
2658
2578
  background-color: #f7f7fa;
2659
2579
  background-color: var(--aquarium-colors-grey-0, #f7f7fa);
2660
2580
  }
2661
- .focus-visible\:text-primary-90.focus-visible {
2581
+ .focus-visible\:text-primary-90.focus-visible{
2662
2582
  color: #222f95;
2663
2583
  color: var(--aquarium-colors-primary-90, #0174ba);
2664
2584
  }
2665
- .focus-visible\:text-primary-90:focus-visible {
2585
+ .focus-visible\:text-primary-90:focus-visible{
2666
2586
  color: #222f95;
2667
2587
  color: var(--aquarium-colors-primary-90, #0174ba);
2668
2588
  }
2669
- .focus-visible\:text-primary-80.focus-visible {
2589
+ .focus-visible\:text-primary-80.focus-visible{
2670
2590
  color: #3545be;
2671
2591
  color: var(--aquarium-colors-primary-80, #0788d1);
2672
2592
  }
2673
- .focus-visible\:text-primary-80:focus-visible {
2593
+ .focus-visible\:text-primary-80:focus-visible{
2674
2594
  color: #3545be;
2675
2595
  color: var(--aquarium-colors-primary-80, #0788d1);
2676
2596
  }
2677
- .focus-visible\:text-grey-80.focus-visible {
2597
+ .focus-visible\:text-grey-80.focus-visible{
2678
2598
  color: #3a3a44;
2679
2599
  color: var(--aquarium-colors-grey-80, #3a3a44);
2680
2600
  }
2681
- .focus-visible\:text-grey-80:focus-visible {
2601
+ .focus-visible\:text-grey-80:focus-visible{
2682
2602
  color: #3a3a44;
2683
2603
  color: var(--aquarium-colors-grey-80, #3a3a44);
2684
2604
  }
2685
- .focus-visible\:text-grey-90.focus-visible {
2605
+ .focus-visible\:text-grey-90.focus-visible{
2686
2606
  color: #292a31;
2687
2607
  color: var(--aquarium-colors-grey-90, #292a31);
2688
2608
  }
2689
- .focus-visible\:text-grey-90:focus-visible {
2609
+ .focus-visible\:text-grey-90:focus-visible{
2690
2610
  color: #292a31;
2691
2611
  color: var(--aquarium-colors-grey-90, #292a31);
2692
2612
  }
2693
- .focus-visible\:outline-0.focus-visible {
2613
+ .focus-visible\:outline-0.focus-visible{
2694
2614
  outline-width: 0px;
2695
2615
  }
2696
- .focus-visible\:outline-0:focus-visible {
2616
+ .focus-visible\:outline-0:focus-visible{
2697
2617
  outline-width: 0px;
2698
2618
  }
2699
- .focus-visible\:ring-2.focus-visible {
2619
+ .focus-visible\:ring-2.focus-visible{
2700
2620
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2701
2621
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2702
2622
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2703
2623
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2704
2624
  }
2705
- .focus-visible\:ring-2:focus-visible {
2625
+ .focus-visible\:ring-2:focus-visible{
2706
2626
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2707
2627
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2708
2628
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2709
2629
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2710
2630
  }
2711
- .focus-visible\:ring-1.focus-visible {
2631
+ .focus-visible\:ring-1.focus-visible{
2712
2632
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2713
2633
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2714
2634
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2715
2635
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2716
2636
  }
2717
- .focus-visible\:ring-1:focus-visible {
2637
+ .focus-visible\:ring-1:focus-visible{
2718
2638
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2719
2639
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2720
2640
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2721
2641
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2722
2642
  }
2723
- .focus-visible\:ring-inset.focus-visible {
2643
+ .focus-visible\:ring-inset.focus-visible{
2724
2644
  --tw-ring-inset: inset;
2725
2645
  }
2726
- .focus-visible\:ring-inset:focus-visible {
2646
+ .focus-visible\:ring-inset:focus-visible{
2727
2647
  --tw-ring-inset: inset;
2728
2648
  }
2729
- .focus-visible\:ring-primary-100.focus-visible {
2649
+ .focus-visible\:ring-primary-100.focus-visible{
2730
2650
  --tw-ring-color: var(--aquarium-colors-primary-100, #02569a);
2731
2651
  }
2732
- .focus-visible\:ring-primary-100:focus-visible {
2652
+ .focus-visible\:ring-primary-100:focus-visible{
2733
2653
  --tw-ring-color: var(--aquarium-colors-primary-100, #02569a);
2734
2654
  }
2735
- .focus-visible\:ring-primary-90.focus-visible {
2655
+ .focus-visible\:ring-primary-90.focus-visible{
2736
2656
  --tw-ring-color: var(--aquarium-colors-primary-90, #0174ba);
2737
2657
  }
2738
- .focus-visible\:ring-primary-90:focus-visible {
2658
+ .focus-visible\:ring-primary-90:focus-visible{
2739
2659
  --tw-ring-color: var(--aquarium-colors-primary-90, #0174ba);
2740
2660
  }
2741
- .focus-visible\:ring-info-70.focus-visible {
2661
+ .focus-visible\:ring-info-70.focus-visible{
2742
2662
  --tw-ring-color: var(--aquarium-colors-info-70, #0399e3);
2743
2663
  }
2744
- .focus-visible\:ring-info-70:focus-visible {
2664
+ .focus-visible\:ring-info-70:focus-visible{
2745
2665
  --tw-ring-color: var(--aquarium-colors-info-70, #0399e3);
2746
2666
  }
2747
- .active\:bg-grey-5:active {
2667
+ .active\:bg-grey-5:active{
2748
2668
  background-color: #ededf0;
2749
2669
  background-color: var(--aquarium-colors-grey-5, #ededf0);
2750
2670
  }
2751
- .active\:bg-primary-90:active {
2671
+ .active\:bg-primary-90:active{
2752
2672
  background-color: #222f95;
2753
2673
  background-color: var(--aquarium-colors-primary-90, #0174ba);
2754
2674
  }
2755
- .active\:bg-primary-5:active {
2675
+ .active\:bg-primary-5:active{
2756
2676
  background-color: #f3f6ff;
2757
2677
  background-color: var(--aquarium-colors-primary-5, #effaff);
2758
2678
  }
2759
- .active\:bg-transparent:active {
2679
+ .active\:bg-transparent:active{
2760
2680
  background-color: transparent;
2761
2681
  background-color: var(--aquarium-colors-transparent, transparent);
2762
2682
  }
2763
- .active\:bg-grey-10:active {
2683
+ .active\:bg-grey-10:active{
2764
2684
  background-color: #e1e1e3;
2765
2685
  background-color: var(--aquarium-colors-grey-10, #e1e1e3);
2766
2686
  }
2767
- .active\:text-primary-90:active {
2687
+ .active\:text-primary-90:active{
2768
2688
  color: #222f95;
2769
2689
  color: var(--aquarium-colors-primary-90, #0174ba);
2770
2690
  }
2771
- .active\:text-grey-50:active {
2691
+ .active\:text-grey-50:active{
2772
2692
  color: #787885;
2773
2693
  color: var(--aquarium-colors-grey-50, #787885);
2774
2694
  }
2775
- .active\:text-grey-70:active {
2695
+ .active\:text-grey-70:active{
2776
2696
  color: #4a4b57;
2777
2697
  color: var(--aquarium-colors-grey-70, #4a4b57);
2778
2698
  }
2779
- .active\:ring-0:active {
2699
+ .active\:ring-0:active{
2780
2700
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2781
2701
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2782
2702
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
2783
2703
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
2784
2704
  }
2785
- .active\:ring-primary-90:active {
2705
+ .active\:ring-primary-90:active{
2786
2706
  --tw-ring-color: var(--aquarium-colors-primary-90, #0174ba);
2787
2707
  }
2788
- .disabled\:cursor-not-allowed:disabled {
2708
+ .disabled\:cursor-not-allowed:disabled{
2789
2709
  cursor: not-allowed;
2790
2710
  }
2791
- .disabled\:border-grey-20:disabled {
2711
+ .disabled\:border-grey-20:disabled{
2792
2712
  border-color: #d2d2d6;
2793
2713
  border-color: var(--aquarium-colors-grey-20, #d2d2d6);
2794
2714
  }
2795
- .disabled\:bg-grey-5:disabled {
2715
+ .disabled\:bg-grey-5:disabled{
2796
2716
  background-color: #ededf0;
2797
2717
  background-color: var(--aquarium-colors-grey-5, #ededf0);
2798
2718
  }
2799
- .disabled\:bg-primary-40:disabled {
2719
+ .disabled\:bg-primary-40:disabled{
2800
2720
  background-color: #b9c5ef;
2801
2721
  background-color: var(--aquarium-colors-primary-40, #4cc2f7);
2802
2722
  }
2803
- .disabled\:bg-white:disabled {
2723
+ .disabled\:bg-white:disabled{
2804
2724
  background-color: white;
2805
2725
  background-color: var(--aquarium-colors-white, white);
2806
2726
  }
2807
- .disabled\:bg-transparent:disabled {
2727
+ .disabled\:bg-transparent:disabled{
2808
2728
  background-color: transparent;
2809
2729
  background-color: var(--aquarium-colors-transparent, transparent);
2810
2730
  }
2811
- .disabled\:text-grey-40:disabled {
2731
+ .disabled\:text-grey-40:disabled{
2812
2732
  color: #9696a0;
2813
2733
  color: var(--aquarium-colors-grey-40, #9696a0);
2814
2734
  }
2815
- .disabled\:text-primary-40:disabled {
2735
+ .disabled\:text-primary-40:disabled{
2816
2736
  color: #b9c5ef;
2817
2737
  color: var(--aquarium-colors-primary-40, #4cc2f7);
2818
2738
  }
2819
- .disabled\:text-grey-30:disabled {
2739
+ .disabled\:text-grey-30:disabled{
2820
2740
  color: #b4b4bb;
2821
2741
  color: var(--aquarium-colors-grey-30, #b4b4bb);
2822
2742
  }
2823
- .disabled\:text-grey-20:disabled {
2743
+ .disabled\:text-grey-20:disabled{
2824
2744
  color: #d2d2d6;
2825
2745
  color: var(--aquarium-colors-grey-20, #d2d2d6);
2826
2746
  }
2827
- .disabled\:ring-primary-40:disabled {
2747
+ .disabled\:ring-primary-40:disabled{
2828
2748
  --tw-ring-color: var(--aquarium-colors-primary-40, #4cc2f7);
2829
2749
  }
2830
- .group:last-child .group-last\:border-b-0 {
2750
+ .group:last-child .group-last\:border-b-0{
2831
2751
  border-bottom-width: 0px;
2832
2752
  }
2833
- .group:hover .group-hover\:visible {
2753
+ .group:hover .group-hover\:visible{
2834
2754
  visibility: visible;
2835
2755
  }
2836
- .group:hover .group-hover\:bg-grey-0 {
2756
+ .group:hover .group-hover\:bg-grey-0{
2837
2757
  background-color: #f7f7fa;
2838
2758
  background-color: var(--aquarium-colors-grey-0, #f7f7fa);
2839
2759
  }
2840
- .peer\/switch:checked~.peer-checked\/switch\:left-1 {
2760
+ .peer\/switch:checked~.peer-checked\/switch\:left-1{
2841
2761
  left: 2px;
2842
2762
  }
2843
- .peer\/switch:checked~.peer-checked\/switch\:translate-x-5 {
2763
+ .peer\/switch:checked~.peer-checked\/switch\:translate-x-5{
2844
2764
  --tw-translate-x: 16px;
2845
2765
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
2846
2766
  }
2847
- .peer:checked~.peer-checked\:border-primary-80 {
2767
+ .peer:checked~.peer-checked\:border-primary-80{
2848
2768
  border-color: #3545be;
2849
2769
  border-color: var(--aquarium-colors-primary-80, #0788d1);
2850
2770
  }
2851
- .peer:checked~.peer-checked\:border-primary-40 {
2771
+ .peer:checked~.peer-checked\:border-primary-40{
2852
2772
  border-color: #b9c5ef;
2853
2773
  border-color: var(--aquarium-colors-primary-40, #4cc2f7);
2854
2774
  }
2855
- .peer:checked~.peer-checked\:text-white {
2775
+ .peer:checked~.peer-checked\:text-white{
2856
2776
  color: white;
2857
2777
  color: var(--aquarium-colors-white, white);
2858
2778
  }
2859
- .peer:checked~.peer-checked\:text-primary-10 {
2779
+ .peer:checked~.peer-checked\:text-primary-10{
2860
2780
  color: #e3e9ff;
2861
2781
  color: var(--aquarium-colors-primary-10, #e0f5fe);
2862
2782
  }
2863
- .peer:hover~.peer-hover\:border-grey-50 {
2783
+ .peer:hover~.peer-hover\:border-grey-50{
2864
2784
  border-color: #787885;
2865
2785
  border-color: var(--aquarium-colors-grey-50, #787885);
2866
2786
  }
2867
- .peer:focus~.peer-focus\:border-info-70 {
2787
+ .peer:focus~.peer-focus\:border-info-70{
2868
2788
  border-color: #0399e3;
2869
2789
  border-color: var(--aquarium-colors-info-70, #0399e3);
2870
2790
  }
2871
- .peer\/switch:disabled~.peer-disabled\/switch\:bg-grey-0 {
2791
+ .peer\/switch:disabled~.peer-disabled\/switch\:bg-grey-0{
2872
2792
  background-color: #f7f7fa;
2873
2793
  background-color: var(--aquarium-colors-grey-0, #f7f7fa);
2874
2794
  }
2875
- .children\:inline-block>* {
2795
+ .children\:inline-block>*{
2876
2796
  display: inline-block;
2877
2797
  }
2878
- .children\:border-grey-10>* {
2798
+ .children\:border-grey-10>*{
2879
2799
  border-color: #e1e1e3;
2880
2800
  border-color: var(--aquarium-colors-grey-10, #e1e1e3);
2881
2801
  }
2882
- .children\:last\:border-b-0:last-child>* {
2802
+ .children\:last\:border-b-0:last-child>*{
2883
2803
  border-bottom-width: 0px;
2884
2804
  }
2885
- .\[\&\>path\]\:stroke-transparent>path {
2805
+ .\[\&\>path\]\:stroke-transparent>path{
2886
2806
  stroke: transparent;
2887
2807
  stroke: var(--aquarium-colors-transparent, transparent);
2888
2808
  }
2889
- .\[\&\>path\]\:stroke-2>path {
2809
+ .\[\&\>path\]\:stroke-2>path{
2890
2810
  stroke-width: 2;
2891
2811
  }
2892
- .peer:checked~.peer-checked\:\[\&\>path\]\:stroke-white>path {
2812
+ .peer:checked~.peer-checked\:\[\&\>path\]\:stroke-white>path{
2893
2813
  stroke: white;
2894
2814
  stroke: var(--aquarium-colors-white, white);
2895
2815
  }
2896
- .peer:checked~.peer-checked\:\[\&\>path\]\:stroke-primary-10>path {
2816
+ .peer:checked~.peer-checked\:\[\&\>path\]\:stroke-primary-10>path{
2897
2817
  stroke: #e3e9ff;
2898
2818
  stroke: var(--aquarium-colors-primary-10, #e0f5fe);
2899
2819
  }
2900
- .\[\&\>button\]\:p-0>button {
2820
+ .\[\&\>button\]\:p-0>button{
2901
2821
  padding: 0;
2902
2822
  }
2903
- .\[\&\>button\]\:text-grey-50>button {
2823
+ .\[\&\>button\]\:text-grey-50>button{
2904
2824
  color: #787885;
2905
2825
  color: var(--aquarium-colors-grey-50, #787885);
2906
2826
  }
2907
- .\[\&\>button\]\:text-error-20>button {
2827
+ .\[\&\>button\]\:text-error-20>button{
2908
2828
  color: #ffadb3;
2909
2829
  color: var(--aquarium-colors-error-20, #ffadb3);
2910
2830
  }
2911
- .\[\&\>\*\:not\(\:first-child\)\]\:-ml-3>*:not(:first-child) {
2831
+ .\[\&\>\*\:not\(\:first-child\)\]\:-ml-3>*:not(:first-child){
2912
2832
  margin-left: -8px;
2913
2833
  }
2914
- .\[\&\>div\:first-child\]\:px-5>div:first-child {
2834
+ .\[\&\>div\:first-child\]\:px-5>div:first-child{
2915
2835
  padding-left: 16px;
2916
2836
  padding-right: 16px;
2917
2837
  }