@paperless/angular 2.22.0-alpha.2 → 2.22.0-alpha.21

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.
Files changed (63) hide show
  1. package/esm2022/lib/base/form.component.mjs +4 -4
  2. package/esm2022/lib/base/number-value-accessor.mjs +5 -5
  3. package/esm2022/lib/base/upload.component.mjs +4 -4
  4. package/esm2022/lib/base/value-accessor.mjs +5 -5
  5. package/esm2022/lib/directives/p-checkbox.directive.mjs +4 -4
  6. package/esm2022/lib/directives/p-cropper.directive.mjs +4 -4
  7. package/esm2022/lib/directives/p-datepicker.directive.mjs +4 -4
  8. package/esm2022/lib/directives/p-field-number.directive.mjs +4 -4
  9. package/esm2022/lib/directives/p-field.directive.mjs +4 -4
  10. package/esm2022/lib/directives/p-pagination-pages.directive.mjs +4 -4
  11. package/esm2022/lib/directives/p-pagination-size.directive.mjs +4 -4
  12. package/esm2022/lib/directives/p-radio.directive.mjs +6 -6
  13. package/esm2022/lib/directives/p-select.directive.mjs +4 -4
  14. package/esm2022/lib/directives/p-toggle.directive.mjs +4 -4
  15. package/esm2022/lib/modules/overlay/index.mjs +2 -2
  16. package/esm2022/lib/modules/overlay/overlay.module.mjs +7 -5
  17. package/esm2022/lib/modules/overlay/overlay.service.mjs +77 -0
  18. package/esm2022/lib/modules/table/base/table.component.mjs +5 -5
  19. package/esm2022/lib/modules/table/components/table/table.component.mjs +5 -5
  20. package/esm2022/lib/modules/table/components/table-cell/table-cell.component.mjs +4 -4
  21. package/esm2022/lib/modules/table/components/table-column/table-column.component.mjs +5 -5
  22. package/esm2022/lib/modules/table/components/table-extra-header/table-extra-header.component.mjs +5 -5
  23. package/esm2022/lib/modules/table/components/table-row-action/table-row-action.component.mjs +5 -5
  24. package/esm2022/lib/modules/table/directives/p-table-custom-actions.directive.mjs +3 -3
  25. package/esm2022/lib/modules/table/directives/p-table-custom-filter.directive.mjs +3 -3
  26. package/esm2022/lib/modules/table/directives/p-table-custom-row.directive.mjs +5 -5
  27. package/esm2022/lib/modules/table/directives/p-table-filter-modal.directive.mjs +3 -3
  28. package/esm2022/lib/modules/table/directives/p-table-footer.directive.mjs +4 -4
  29. package/esm2022/lib/modules/table/directives/p-table-header.directive.mjs +5 -5
  30. package/esm2022/lib/modules/table/directives/p-table-ngx.directive.mjs +6 -6
  31. package/esm2022/lib/modules/table/directives/p-table.directive.mjs +5 -5
  32. package/esm2022/lib/modules/table/table.module.mjs +4 -4
  33. package/esm2022/lib/modules/table/utils.mjs +1 -1
  34. package/esm2022/lib/modules/toast/components/toast-container/toast-container.component.mjs +12 -13
  35. package/esm2022/lib/modules/toast/directives/toast.directive.mjs +4 -4
  36. package/esm2022/lib/modules/toast/index.mjs +2 -2
  37. package/esm2022/lib/modules/toast/toast.module.mjs +7 -5
  38. package/esm2022/lib/modules/toast/toast.service.mjs +51 -0
  39. package/esm2022/lib/paperless.module.mjs +6 -13
  40. package/esm2022/lib/pipes/currency.pipe.mjs +4 -4
  41. package/esm2022/lib/pipes/date.pipe.mjs +4 -4
  42. package/esm2022/lib/pipes/safe.pipe.mjs +5 -5
  43. package/esm2022/lib/pipes/select-autocomplete.pipe.mjs +3 -3
  44. package/esm2022/lib/pipes/select-select-all.pipe.mjs +3 -3
  45. package/esm2022/lib/stencil/angular-component-lib/utils.mjs +1 -1
  46. package/esm2022/lib/stencil/components.mjs +297 -297
  47. package/esm2022/lib/stencil.module.mjs +4 -4
  48. package/fesm2022/paperless-angular.mjs +489 -498
  49. package/fesm2022/paperless-angular.mjs.map +1 -1
  50. package/lib/modules/overlay/index.d.ts +1 -1
  51. package/lib/modules/overlay/{services/overlay.service.d.ts → overlay.service.d.ts} +1 -1
  52. package/lib/modules/toast/components/toast-container/toast-container.component.d.ts +1 -2
  53. package/lib/modules/toast/index.d.ts +1 -1
  54. package/lib/modules/toast/{services/toast.service.d.ts → toast.service.d.ts} +1 -1
  55. package/lib/paperless.module.d.ts +0 -2
  56. package/package.json +4 -4
  57. package/paperless.css +321 -321
  58. package/esm2022/lib/modules/overlay/services/index.mjs +0 -4
  59. package/esm2022/lib/modules/overlay/services/overlay.service.mjs +0 -77
  60. package/esm2022/lib/modules/toast/services/index.mjs +0 -4
  61. package/esm2022/lib/modules/toast/services/toast.service.mjs +0 -51
  62. package/lib/modules/overlay/services/index.d.ts +0 -3
  63. package/lib/modules/toast/services/index.d.ts +0 -3
package/paperless.css CHANGED
@@ -1,179 +1,179 @@
1
1
  .pointer-events-none {
2
- pointer-events: none !important
2
+ pointer-events: none
3
3
  }
4
4
 
5
5
  .static {
6
- position: static !important
6
+ position: static
7
7
  }
8
8
 
9
9
  .relative {
10
- position: relative !important
10
+ position: relative
11
11
  }
12
12
 
13
13
  .sticky {
14
- position: sticky !important
14
+ position: sticky
15
15
  }
16
16
 
17
17
  .bottom-0 {
18
- bottom: 0px !important
18
+ bottom: 0px
19
19
  }
20
20
 
21
21
  .bottom-11 {
22
- bottom: 2.75rem !important
22
+ bottom: 2.75rem
23
23
  }
24
24
 
25
25
  .left-0 {
26
- left: 0px !important
26
+ left: 0px
27
27
  }
28
28
 
29
29
  .left-4 {
30
- left: 1rem !important
30
+ left: 1rem
31
31
  }
32
32
 
33
33
  .right-0 {
34
- right: 0px !important
34
+ right: 0px
35
35
  }
36
36
 
37
37
  .top-0 {
38
- top: 0px !important
38
+ top: 0px
39
39
  }
40
40
 
41
41
  .z-0 {
42
- z-index: 0 !important
42
+ z-index: 0
43
43
  }
44
44
 
45
45
  .z-\[2\] {
46
- z-index: 2 !important
46
+ z-index: 2
47
47
  }
48
48
 
49
49
  .z-\[3\] {
50
- z-index: 3 !important
50
+ z-index: 3
51
51
  }
52
52
 
53
53
  .my-16 {
54
- margin-top: 4rem !important;
55
- margin-bottom: 4rem !important
54
+ margin-top: 4rem;
55
+ margin-bottom: 4rem
56
56
  }
57
57
 
58
58
  .my-4 {
59
- margin-top: 1rem !important;
60
- margin-bottom: 1rem !important
59
+ margin-top: 1rem;
60
+ margin-bottom: 1rem
61
61
  }
62
62
 
63
63
  .-mb-5 {
64
- margin-bottom: -1.25rem !important
64
+ margin-bottom: -1.25rem
65
65
  }
66
66
 
67
67
  .mb-8 {
68
- margin-bottom: 2rem !important
68
+ margin-bottom: 2rem
69
69
  }
70
70
 
71
71
  .ml-auto {
72
- margin-left: auto !important
72
+ margin-left: auto
73
73
  }
74
74
 
75
75
  .mt-4 {
76
- margin-top: 1rem !important
76
+ margin-top: 1rem
77
77
  }
78
78
 
79
79
  .block {
80
- display: block !important
80
+ display: block
81
81
  }
82
82
 
83
83
  .inline-block {
84
- display: inline-block !important
84
+ display: inline-block
85
85
  }
86
86
 
87
87
  .inline {
88
- display: inline !important
88
+ display: inline
89
89
  }
90
90
 
91
91
  .flex {
92
- display: flex !important
92
+ display: flex
93
93
  }
94
94
 
95
95
  .table {
96
- display: table !important
96
+ display: table
97
97
  }
98
98
 
99
99
  .table-cell {
100
- display: table-cell !important
100
+ display: table-cell
101
101
  }
102
102
 
103
103
  .hidden {
104
- display: none !important
104
+ display: none
105
105
  }
106
106
 
107
107
  .h-6 {
108
- height: 1.5rem !important
108
+ height: 1.5rem
109
109
  }
110
110
 
111
111
  .w-1\/12 {
112
- width: 8.333333% !important
112
+ width: 8.333333%
113
113
  }
114
114
 
115
115
  .w-10\/12 {
116
- width: 83.333333% !important
116
+ width: 83.333333%
117
117
  }
118
118
 
119
119
  .w-11\/12 {
120
- width: 91.666667% !important
120
+ width: 91.666667%
121
121
  }
122
122
 
123
123
  .w-2\/12 {
124
- width: 16.666667% !important
124
+ width: 16.666667%
125
125
  }
126
126
 
127
127
  .w-3\/12 {
128
- width: 25% !important
128
+ width: 25%
129
129
  }
130
130
 
131
131
  .w-4\/12 {
132
- width: 33.333333% !important
132
+ width: 33.333333%
133
133
  }
134
134
 
135
135
  .w-5\/12 {
136
- width: 41.666667% !important
136
+ width: 41.666667%
137
137
  }
138
138
 
139
139
  .w-6 {
140
- width: 1.5rem !important
140
+ width: 1.5rem
141
141
  }
142
142
 
143
143
  .w-6\/12 {
144
- width: 50% !important
144
+ width: 50%
145
145
  }
146
146
 
147
147
  .w-7\/12 {
148
- width: 58.333333% !important
148
+ width: 58.333333%
149
149
  }
150
150
 
151
151
  .w-8\/12 {
152
- width: 66.666667% !important
152
+ width: 66.666667%
153
153
  }
154
154
 
155
155
  .w-9\/12 {
156
- width: 75% !important
156
+ width: 75%
157
157
  }
158
158
 
159
159
  .w-full {
160
- width: 100% !important
160
+ width: 100%
161
161
  }
162
162
 
163
163
  .flex-1 {
164
- flex: 1 1 0% !important
164
+ flex: 1 1 0%
165
165
  }
166
166
 
167
167
  .flex-shrink {
168
- flex-shrink: 1 !important
168
+ flex-shrink: 1
169
169
  }
170
170
 
171
171
  .flex-shrink-0 {
172
- flex-shrink: 0 !important
172
+ flex-shrink: 0
173
173
  }
174
174
 
175
175
  .transform {
176
- 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)) !important
176
+ 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))
177
177
  }
178
178
 
179
179
  @keyframes floatingMenuContainerIn {
@@ -197,7 +197,7 @@
197
197
  }
198
198
 
199
199
  .animate-floating-menu-container-in {
200
- animation: forwards floatingMenuContainerIn .5s ease !important
200
+ animation: forwards floatingMenuContainerIn .5s ease
201
201
  }
202
202
 
203
203
  @keyframes floatingMenuContainerOut {
@@ -221,167 +221,167 @@
221
221
  }
222
222
 
223
223
  .animate-floating-menu-container-out {
224
- animation: forwards floatingMenuContainerOut .5s ease !important
224
+ animation: forwards floatingMenuContainerOut .5s ease
225
225
  }
226
226
 
227
227
  .flex-col {
228
- flex-direction: column !important
228
+ flex-direction: column
229
229
  }
230
230
 
231
231
  .items-center {
232
- align-items: center !important
232
+ align-items: center
233
233
  }
234
234
 
235
235
  .justify-start {
236
- justify-content: flex-start !important
236
+ justify-content: flex-start
237
237
  }
238
238
 
239
239
  .justify-end {
240
- justify-content: flex-end !important
240
+ justify-content: flex-end
241
241
  }
242
242
 
243
243
  .justify-center {
244
- justify-content: center !important
244
+ justify-content: center
245
245
  }
246
246
 
247
247
  .justify-between {
248
- justify-content: space-between !important
248
+ justify-content: space-between
249
249
  }
250
250
 
251
251
  .gap-4 {
252
- gap: 1rem !important
252
+ gap: 1rem
253
253
  }
254
254
 
255
255
  .gap-6 {
256
- gap: 1.5rem !important
256
+ gap: 1.5rem
257
257
  }
258
258
 
259
259
  .self-center {
260
- align-self: center !important
260
+ align-self: center
261
261
  }
262
262
 
263
263
  .overflow-hidden {
264
- overflow: hidden !important
264
+ overflow: hidden
265
265
  }
266
266
 
267
267
  .overflow-x-auto {
268
- overflow-x: auto !important
268
+ overflow-x: auto
269
269
  }
270
270
 
271
271
  .text-ellipsis {
272
- text-overflow: ellipsis !important
272
+ text-overflow: ellipsis
273
273
  }
274
274
 
275
275
  .rounded {
276
- border-radius: 0.25rem !important
276
+ border-radius: 0.25rem
277
277
  }
278
278
 
279
279
  .border {
280
- border-width: 1px !important
280
+ border-width: 1px
281
281
  }
282
282
 
283
283
  .bg-white {
284
- --tw-bg-opacity: 1 !important;
285
- background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important
284
+ --tw-bg-opacity: 1;
285
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
286
286
  }
287
287
 
288
288
  .bg-gradient-to-r {
289
- background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important
289
+ background-image: linear-gradient(to right, var(--tw-gradient-stops))
290
290
  }
291
291
 
292
292
  .from-off-white-300 {
293
- --tw-gradient-from: #F8F7F4 var(--tw-gradient-from-position) !important;
294
- --tw-gradient-to: rgb(248 247 244 / 0) var(--tw-gradient-to-position) !important;
295
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
293
+ --tw-gradient-from: #F8F7F4 var(--tw-gradient-from-position);
294
+ --tw-gradient-to: rgb(248 247 244 / 0) var(--tw-gradient-to-position);
295
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
296
296
  }
297
297
 
298
298
  .from-white {
299
- --tw-gradient-from: #FFFFFF var(--tw-gradient-from-position) !important;
300
- --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position) !important;
301
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
299
+ --tw-gradient-from: #FFFFFF var(--tw-gradient-from-position);
300
+ --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
301
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
302
302
  }
303
303
 
304
304
  .from-80\% {
305
- --tw-gradient-from-position: 80% !important
305
+ --tw-gradient-from-position: 80%
306
306
  }
307
307
 
308
308
  .to-transparent {
309
- --tw-gradient-to: transparent var(--tw-gradient-to-position) !important
309
+ --tw-gradient-to: transparent var(--tw-gradient-to-position)
310
310
  }
311
311
 
312
312
  .pl-8 {
313
- padding-left: 2rem !important
313
+ padding-left: 2rem
314
314
  }
315
315
 
316
316
  .pr-0 {
317
- padding-right: 0px !important
317
+ padding-right: 0px
318
318
  }
319
319
 
320
320
  .pr-4 {
321
- padding-right: 1rem !important
321
+ padding-right: 1rem
322
322
  }
323
323
 
324
324
  .text-center {
325
- text-align: center !important
325
+ text-align: center
326
326
  }
327
327
 
328
328
  .text-start {
329
- text-align: start !important
329
+ text-align: start
330
330
  }
331
331
 
332
332
  .text-end {
333
- text-align: end !important
333
+ text-align: end
334
334
  }
335
335
 
336
336
  .font-semibold {
337
- font-weight: 600 !important
337
+ font-weight: 600
338
338
  }
339
339
 
340
340
  .text-storm-300 {
341
- --tw-text-opacity: 1 !important;
342
- color: rgb(116 120 127 / var(--tw-text-opacity, 1)) !important
341
+ --tw-text-opacity: 1;
342
+ color: rgb(116 120 127 / var(--tw-text-opacity, 1))
343
343
  }
344
344
 
345
345
  .text-storm-400 {
346
- --tw-text-opacity: 1 !important;
347
- color: rgb(70 75 84 / var(--tw-text-opacity, 1)) !important
346
+ --tw-text-opacity: 1;
347
+ color: rgb(70 75 84 / var(--tw-text-opacity, 1))
348
348
  }
349
349
 
350
350
  .text-storm-500 {
351
- --tw-text-opacity: 1 !important;
352
- color: rgb(24 30 41 / var(--tw-text-opacity, 1)) !important
351
+ --tw-text-opacity: 1;
352
+ color: rgb(24 30 41 / var(--tw-text-opacity, 1))
353
353
  }
354
354
 
355
355
  .underline {
356
- text-decoration-line: underline !important
356
+ text-decoration-line: underline
357
357
  }
358
358
 
359
359
  .opacity-0 {
360
- opacity: 0 !important
360
+ opacity: 0
361
361
  }
362
362
 
363
363
  .opacity-100 {
364
- opacity: 1 !important
364
+ opacity: 1
365
365
  }
366
366
 
367
367
  .filter {
368
- 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) !important
368
+ 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)
369
369
  }
370
370
 
371
371
  .transition {
372
- transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important;
373
- transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
374
- transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important;
375
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
376
- transition-duration: 150ms !important
372
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
373
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
374
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
375
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
376
+ transition-duration: 150ms
377
377
  }
378
378
 
379
379
  .ease-in {
380
- transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important
380
+ transition-timing-function: cubic-bezier(0.4, 0, 1, 1)
381
381
  }
382
382
 
383
383
  .ease-out {
384
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important
384
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1)
385
385
  }
386
386
 
387
387
  @keyframes enter {
@@ -399,696 +399,696 @@
399
399
  }
400
400
 
401
401
  .ease-in {
402
- animation-timing-function: cubic-bezier(0.4, 0, 1, 1) !important
402
+ animation-timing-function: cubic-bezier(0.4, 0, 1, 1)
403
403
  }
404
404
 
405
405
  .ease-out {
406
- animation-timing-function: cubic-bezier(0, 0, 0.2, 1) !important
406
+ animation-timing-function: cubic-bezier(0, 0, 0.2, 1)
407
407
  }
408
408
 
409
409
  .before\:pointer-events-none::before {
410
- content: var(--tw-content) !important;
411
- pointer-events: none !important
410
+ content: var(--tw-content);
411
+ pointer-events: none
412
412
  }
413
413
 
414
414
  .before\:absolute::before {
415
- content: var(--tw-content) !important;
416
- position: absolute !important
415
+ content: var(--tw-content);
416
+ position: absolute
417
417
  }
418
418
 
419
419
  .before\:left-0::before {
420
- content: var(--tw-content) !important;
421
- left: 0px !important
420
+ content: var(--tw-content);
421
+ left: 0px
422
422
  }
423
423
 
424
424
  .before\:top-0::before {
425
- content: var(--tw-content) !important;
426
- top: 0px !important
425
+ content: var(--tw-content);
426
+ top: 0px
427
427
  }
428
428
 
429
429
  .before\:z-\[1\]::before {
430
- content: var(--tw-content) !important;
431
- z-index: 1 !important
430
+ content: var(--tw-content);
431
+ z-index: 1
432
432
  }
433
433
 
434
434
  .before\:h-full::before {
435
- content: var(--tw-content) !important;
436
- height: 100% !important
435
+ content: var(--tw-content);
436
+ height: 100%
437
437
  }
438
438
 
439
439
  .before\:w-24::before {
440
- content: var(--tw-content) !important;
441
- width: 6rem !important
440
+ content: var(--tw-content);
441
+ width: 6rem
442
442
  }
443
443
 
444
444
  .before\:bg-gradient-to-r::before {
445
- content: var(--tw-content) !important;
446
- background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important
445
+ content: var(--tw-content);
446
+ background-image: linear-gradient(to right, var(--tw-gradient-stops))
447
447
  }
448
448
 
449
449
  .before\:from-white::before {
450
- content: var(--tw-content) !important;
451
- --tw-gradient-from: #FFFFFF var(--tw-gradient-from-position) !important;
452
- --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position) !important;
453
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
450
+ content: var(--tw-content);
451
+ --tw-gradient-from: #FFFFFF var(--tw-gradient-from-position);
452
+ --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
453
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
454
454
  }
455
455
 
456
456
  .before\:via-white\/80::before {
457
- content: var(--tw-content) !important;
458
- --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position) !important;
459
- --tw-gradient-stops: var(--tw-gradient-from), rgb(255 255 255 / 0.8) var(--tw-gradient-via-position), var(--tw-gradient-to) !important
457
+ content: var(--tw-content);
458
+ --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
459
+ --tw-gradient-stops: var(--tw-gradient-from), rgb(255 255 255 / 0.8) var(--tw-gradient-via-position), var(--tw-gradient-to)
460
460
  }
461
461
 
462
462
  .before\:to-transparent::before {
463
- content: var(--tw-content) !important;
464
- --tw-gradient-to: transparent var(--tw-gradient-to-position) !important
463
+ content: var(--tw-content);
464
+ --tw-gradient-to: transparent var(--tw-gradient-to-position)
465
465
  }
466
466
 
467
467
  .before\:opacity-0::before {
468
- content: var(--tw-content) !important;
469
- opacity: 0 !important
468
+ content: var(--tw-content);
469
+ opacity: 0
470
470
  }
471
471
 
472
472
  .before\:opacity-100::before {
473
- content: var(--tw-content) !important;
474
- opacity: 1 !important
473
+ content: var(--tw-content);
474
+ opacity: 1
475
475
  }
476
476
 
477
477
  .before\:transition-opacity::before {
478
- content: var(--tw-content) !important;
479
- transition-property: opacity !important;
480
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
481
- transition-duration: 150ms !important
478
+ content: var(--tw-content);
479
+ transition-property: opacity;
480
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
481
+ transition-duration: 150ms
482
482
  }
483
483
 
484
484
  .after\:absolute::after {
485
- content: var(--tw-content) !important;
486
- position: absolute !important
485
+ content: var(--tw-content);
486
+ position: absolute
487
487
  }
488
488
 
489
489
  .after\:right-0::after {
490
- content: var(--tw-content) !important;
491
- right: 0px !important
490
+ content: var(--tw-content);
491
+ right: 0px
492
492
  }
493
493
 
494
494
  .after\:top-0::after {
495
- content: var(--tw-content) !important;
496
- top: 0px !important
495
+ content: var(--tw-content);
496
+ top: 0px
497
497
  }
498
498
 
499
499
  .after\:z-\[0\]::after {
500
- content: var(--tw-content) !important;
501
- z-index: 0 !important
500
+ content: var(--tw-content);
501
+ z-index: 0
502
502
  }
503
503
 
504
504
  .after\:h-full::after {
505
- content: var(--tw-content) !important;
506
- height: 100% !important
505
+ content: var(--tw-content);
506
+ height: 100%
507
507
  }
508
508
 
509
509
  .after\:w-24::after {
510
- content: var(--tw-content) !important;
511
- width: 6rem !important
510
+ content: var(--tw-content);
511
+ width: 6rem
512
512
  }
513
513
 
514
514
  .after\:bg-gradient-to-l::after {
515
- content: var(--tw-content) !important;
516
- background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important
515
+ content: var(--tw-content);
516
+ background-image: linear-gradient(to left, var(--tw-gradient-stops))
517
517
  }
518
518
 
519
519
  .after\:from-white::after {
520
- content: var(--tw-content) !important;
521
- --tw-gradient-from: #FFFFFF var(--tw-gradient-from-position) !important;
522
- --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position) !important;
523
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
520
+ content: var(--tw-content);
521
+ --tw-gradient-from: #FFFFFF var(--tw-gradient-from-position);
522
+ --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
523
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
524
524
  }
525
525
 
526
526
  .after\:via-white\/80::after {
527
- content: var(--tw-content) !important;
528
- --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position) !important;
529
- --tw-gradient-stops: var(--tw-gradient-from), rgb(255 255 255 / 0.8) var(--tw-gradient-via-position), var(--tw-gradient-to) !important
527
+ content: var(--tw-content);
528
+ --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
529
+ --tw-gradient-stops: var(--tw-gradient-from), rgb(255 255 255 / 0.8) var(--tw-gradient-via-position), var(--tw-gradient-to)
530
530
  }
531
531
 
532
532
  .after\:to-transparent::after {
533
- content: var(--tw-content) !important;
534
- --tw-gradient-to: transparent var(--tw-gradient-to-position) !important
533
+ content: var(--tw-content);
534
+ --tw-gradient-to: transparent var(--tw-gradient-to-position)
535
535
  }
536
536
 
537
537
  .after\:opacity-0::after {
538
- content: var(--tw-content) !important;
539
- opacity: 0 !important
538
+ content: var(--tw-content);
539
+ opacity: 0
540
540
  }
541
541
 
542
542
  .after\:opacity-100::after {
543
- content: var(--tw-content) !important;
544
- opacity: 1 !important
543
+ content: var(--tw-content);
544
+ opacity: 1
545
545
  }
546
546
 
547
547
  .after\:transition-opacity::after {
548
- content: var(--tw-content) !important;
549
- transition-property: opacity !important;
550
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
551
- transition-duration: 150ms !important
548
+ content: var(--tw-content);
549
+ transition-property: opacity;
550
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
551
+ transition-duration: 150ms
552
552
  }
553
553
 
554
554
  .last-of-type\:pr-0:last-of-type {
555
- padding-right: 0px !important
555
+ padding-right: 0px
556
556
  }
557
557
 
558
558
  .group:hover .group-hover\:flex {
559
- display: flex !important
559
+ display: flex
560
560
  }
561
561
 
562
562
  .group:hover .group-hover\:hidden {
563
- display: none !important
563
+ display: none
564
564
  }
565
565
 
566
566
  @media (min-width: 40rem) {
567
567
  .tablet\:flex {
568
- display: flex !important
568
+ display: flex
569
569
  }
570
570
 
571
571
  .tablet\:hidden {
572
- display: none !important
572
+ display: none
573
573
  }
574
574
 
575
575
  .tablet\:w-1\/12 {
576
- width: 8.333333% !important
576
+ width: 8.333333%
577
577
  }
578
578
 
579
579
  .tablet\:w-10\/12 {
580
- width: 83.333333% !important
580
+ width: 83.333333%
581
581
  }
582
582
 
583
583
  .tablet\:w-11\/12 {
584
- width: 91.666667% !important
584
+ width: 91.666667%
585
585
  }
586
586
 
587
587
  .tablet\:w-2\/12 {
588
- width: 16.666667% !important
588
+ width: 16.666667%
589
589
  }
590
590
 
591
591
  .tablet\:w-3\/12 {
592
- width: 25% !important
592
+ width: 25%
593
593
  }
594
594
 
595
595
  .tablet\:w-4\/12 {
596
- width: 33.333333% !important
596
+ width: 33.333333%
597
597
  }
598
598
 
599
599
  .tablet\:w-5\/12 {
600
- width: 41.666667% !important
600
+ width: 41.666667%
601
601
  }
602
602
 
603
603
  .tablet\:w-6\/12 {
604
- width: 50% !important
604
+ width: 50%
605
605
  }
606
606
 
607
607
  .tablet\:w-7\/12 {
608
- width: 58.333333% !important
608
+ width: 58.333333%
609
609
  }
610
610
 
611
611
  .tablet\:w-8\/12 {
612
- width: 66.666667% !important
612
+ width: 66.666667%
613
613
  }
614
614
 
615
615
  .tablet\:w-9\/12 {
616
- width: 75% !important
616
+ width: 75%
617
617
  }
618
618
 
619
619
  .tablet\:w-auto {
620
- width: auto !important
620
+ width: auto
621
621
  }
622
622
 
623
623
  .tablet\:pr-0 {
624
- padding-right: 0px !important
624
+ padding-right: 0px
625
625
  }
626
626
 
627
627
  .tablet\:pr-4 {
628
- padding-right: 1rem !important
628
+ padding-right: 1rem
629
629
  }
630
630
 
631
631
  .group:hover .tablet\:group-hover\:flex {
632
- display: flex !important
632
+ display: flex
633
633
  }
634
634
 
635
635
  .group:hover .tablet\:group-hover\:hidden {
636
- display: none !important
636
+ display: none
637
637
  }
638
638
  }
639
639
 
640
640
  @media (min-width: 64rem) {
641
641
  .desktop-xs\:flex {
642
- display: flex !important
642
+ display: flex
643
643
  }
644
644
 
645
645
  .desktop-xs\:hidden {
646
- display: none !important
646
+ display: none
647
647
  }
648
648
 
649
649
  .desktop-xs\:w-1\/12 {
650
- width: 8.333333% !important
650
+ width: 8.333333%
651
651
  }
652
652
 
653
653
  .desktop-xs\:w-10\/12 {
654
- width: 83.333333% !important
654
+ width: 83.333333%
655
655
  }
656
656
 
657
657
  .desktop-xs\:w-11\/12 {
658
- width: 91.666667% !important
658
+ width: 91.666667%
659
659
  }
660
660
 
661
661
  .desktop-xs\:w-2\/12 {
662
- width: 16.666667% !important
662
+ width: 16.666667%
663
663
  }
664
664
 
665
665
  .desktop-xs\:w-3\/12 {
666
- width: 25% !important
666
+ width: 25%
667
667
  }
668
668
 
669
669
  .desktop-xs\:w-4\/12 {
670
- width: 33.333333% !important
670
+ width: 33.333333%
671
671
  }
672
672
 
673
673
  .desktop-xs\:w-5\/12 {
674
- width: 41.666667% !important
674
+ width: 41.666667%
675
675
  }
676
676
 
677
677
  .desktop-xs\:w-6\/12 {
678
- width: 50% !important
678
+ width: 50%
679
679
  }
680
680
 
681
681
  .desktop-xs\:w-7\/12 {
682
- width: 58.333333% !important
682
+ width: 58.333333%
683
683
  }
684
684
 
685
685
  .desktop-xs\:w-8\/12 {
686
- width: 66.666667% !important
686
+ width: 66.666667%
687
687
  }
688
688
 
689
689
  .desktop-xs\:w-9\/12 {
690
- width: 75% !important
690
+ width: 75%
691
691
  }
692
692
 
693
693
  .desktop-xs\:pr-0 {
694
- padding-right: 0px !important
694
+ padding-right: 0px
695
695
  }
696
696
 
697
697
  .desktop-xs\:pr-4 {
698
- padding-right: 1rem !important
698
+ padding-right: 1rem
699
699
  }
700
700
 
701
701
  .group:hover .desktop-xs\:group-hover\:flex {
702
- display: flex !important
702
+ display: flex
703
703
  }
704
704
 
705
705
  .group:hover .desktop-xs\:group-hover\:hidden {
706
- display: none !important
706
+ display: none
707
707
  }
708
708
  }
709
709
 
710
710
  @media (min-width: 80rem) {
711
711
  .desktop-sm\:flex {
712
- display: flex !important
712
+ display: flex
713
713
  }
714
714
 
715
715
  .desktop-sm\:hidden {
716
- display: none !important
716
+ display: none
717
717
  }
718
718
 
719
719
  .desktop-sm\:w-1\/12 {
720
- width: 8.333333% !important
720
+ width: 8.333333%
721
721
  }
722
722
 
723
723
  .desktop-sm\:w-10\/12 {
724
- width: 83.333333% !important
724
+ width: 83.333333%
725
725
  }
726
726
 
727
727
  .desktop-sm\:w-11\/12 {
728
- width: 91.666667% !important
728
+ width: 91.666667%
729
729
  }
730
730
 
731
731
  .desktop-sm\:w-2\/12 {
732
- width: 16.666667% !important
732
+ width: 16.666667%
733
733
  }
734
734
 
735
735
  .desktop-sm\:w-3\/12 {
736
- width: 25% !important
736
+ width: 25%
737
737
  }
738
738
 
739
739
  .desktop-sm\:w-4\/12 {
740
- width: 33.333333% !important
740
+ width: 33.333333%
741
741
  }
742
742
 
743
743
  .desktop-sm\:w-5\/12 {
744
- width: 41.666667% !important
744
+ width: 41.666667%
745
745
  }
746
746
 
747
747
  .desktop-sm\:w-6\/12 {
748
- width: 50% !important
748
+ width: 50%
749
749
  }
750
750
 
751
751
  .desktop-sm\:w-7\/12 {
752
- width: 58.333333% !important
752
+ width: 58.333333%
753
753
  }
754
754
 
755
755
  .desktop-sm\:w-8\/12 {
756
- width: 66.666667% !important
756
+ width: 66.666667%
757
757
  }
758
758
 
759
759
  .desktop-sm\:w-9\/12 {
760
- width: 75% !important
760
+ width: 75%
761
761
  }
762
762
 
763
763
  .desktop-sm\:pr-0 {
764
- padding-right: 0px !important
764
+ padding-right: 0px
765
765
  }
766
766
 
767
767
  .desktop-sm\:pr-4 {
768
- padding-right: 1rem !important
768
+ padding-right: 1rem
769
769
  }
770
770
 
771
771
  .group:hover .desktop-sm\:group-hover\:flex {
772
- display: flex !important
772
+ display: flex
773
773
  }
774
774
 
775
775
  .group:hover .desktop-sm\:group-hover\:hidden {
776
- display: none !important
776
+ display: none
777
777
  }
778
778
  }
779
779
 
780
780
  @media (min-width: 85.375rem) {
781
781
  .desktop\:flex {
782
- display: flex !important
782
+ display: flex
783
783
  }
784
784
 
785
785
  .desktop\:hidden {
786
- display: none !important
786
+ display: none
787
787
  }
788
788
 
789
789
  .desktop\:w-1\/12 {
790
- width: 8.333333% !important
790
+ width: 8.333333%
791
791
  }
792
792
 
793
793
  .desktop\:w-10\/12 {
794
- width: 83.333333% !important
794
+ width: 83.333333%
795
795
  }
796
796
 
797
797
  .desktop\:w-11\/12 {
798
- width: 91.666667% !important
798
+ width: 91.666667%
799
799
  }
800
800
 
801
801
  .desktop\:w-2\/12 {
802
- width: 16.666667% !important
802
+ width: 16.666667%
803
803
  }
804
804
 
805
805
  .desktop\:w-3\/12 {
806
- width: 25% !important
806
+ width: 25%
807
807
  }
808
808
 
809
809
  .desktop\:w-4\/12 {
810
- width: 33.333333% !important
810
+ width: 33.333333%
811
811
  }
812
812
 
813
813
  .desktop\:w-5\/12 {
814
- width: 41.666667% !important
814
+ width: 41.666667%
815
815
  }
816
816
 
817
817
  .desktop\:w-6\/12 {
818
- width: 50% !important
818
+ width: 50%
819
819
  }
820
820
 
821
821
  .desktop\:w-7\/12 {
822
- width: 58.333333% !important
822
+ width: 58.333333%
823
823
  }
824
824
 
825
825
  .desktop\:w-8\/12 {
826
- width: 66.666667% !important
826
+ width: 66.666667%
827
827
  }
828
828
 
829
829
  .desktop\:w-9\/12 {
830
- width: 75% !important
830
+ width: 75%
831
831
  }
832
832
 
833
833
  .desktop\:pr-0 {
834
- padding-right: 0px !important
834
+ padding-right: 0px
835
835
  }
836
836
 
837
837
  .desktop\:pr-4 {
838
- padding-right: 1rem !important
838
+ padding-right: 1rem
839
839
  }
840
840
 
841
841
  .group:hover .desktop\:group-hover\:flex {
842
- display: flex !important
842
+ display: flex
843
843
  }
844
844
 
845
845
  .group:hover .desktop\:group-hover\:hidden {
846
- display: none !important
846
+ display: none
847
847
  }
848
848
  }
849
849
 
850
850
  @media (min-width: 90rem) {
851
851
  .desktop-lg\:flex {
852
- display: flex !important
852
+ display: flex
853
853
  }
854
854
 
855
855
  .desktop-lg\:hidden {
856
- display: none !important
856
+ display: none
857
857
  }
858
858
 
859
859
  .desktop-lg\:w-1\/12 {
860
- width: 8.333333% !important
860
+ width: 8.333333%
861
861
  }
862
862
 
863
863
  .desktop-lg\:w-10\/12 {
864
- width: 83.333333% !important
864
+ width: 83.333333%
865
865
  }
866
866
 
867
867
  .desktop-lg\:w-11\/12 {
868
- width: 91.666667% !important
868
+ width: 91.666667%
869
869
  }
870
870
 
871
871
  .desktop-lg\:w-2\/12 {
872
- width: 16.666667% !important
872
+ width: 16.666667%
873
873
  }
874
874
 
875
875
  .desktop-lg\:w-3\/12 {
876
- width: 25% !important
876
+ width: 25%
877
877
  }
878
878
 
879
879
  .desktop-lg\:w-4\/12 {
880
- width: 33.333333% !important
880
+ width: 33.333333%
881
881
  }
882
882
 
883
883
  .desktop-lg\:w-5\/12 {
884
- width: 41.666667% !important
884
+ width: 41.666667%
885
885
  }
886
886
 
887
887
  .desktop-lg\:w-6\/12 {
888
- width: 50% !important
888
+ width: 50%
889
889
  }
890
890
 
891
891
  .desktop-lg\:w-7\/12 {
892
- width: 58.333333% !important
892
+ width: 58.333333%
893
893
  }
894
894
 
895
895
  .desktop-lg\:w-8\/12 {
896
- width: 66.666667% !important
896
+ width: 66.666667%
897
897
  }
898
898
 
899
899
  .desktop-lg\:w-9\/12 {
900
- width: 75% !important
900
+ width: 75%
901
901
  }
902
902
 
903
903
  .desktop-lg\:pr-0 {
904
- padding-right: 0px !important
904
+ padding-right: 0px
905
905
  }
906
906
 
907
907
  .desktop-lg\:pr-4 {
908
- padding-right: 1rem !important
908
+ padding-right: 1rem
909
909
  }
910
910
 
911
911
  .group:hover .desktop-lg\:group-hover\:flex {
912
- display: flex !important
912
+ display: flex
913
913
  }
914
914
 
915
915
  .group:hover .desktop-lg\:group-hover\:hidden {
916
- display: none !important
916
+ display: none
917
917
  }
918
918
  }
919
919
 
920
920
  @media (min-width: 120rem) {
921
921
  .desktop-xl\:flex {
922
- display: flex !important
922
+ display: flex
923
923
  }
924
924
 
925
925
  .desktop-xl\:hidden {
926
- display: none !important
926
+ display: none
927
927
  }
928
928
 
929
929
  .desktop-xl\:w-1\/12 {
930
- width: 8.333333% !important
930
+ width: 8.333333%
931
931
  }
932
932
 
933
933
  .desktop-xl\:w-10\/12 {
934
- width: 83.333333% !important
934
+ width: 83.333333%
935
935
  }
936
936
 
937
937
  .desktop-xl\:w-11\/12 {
938
- width: 91.666667% !important
938
+ width: 91.666667%
939
939
  }
940
940
 
941
941
  .desktop-xl\:w-2\/12 {
942
- width: 16.666667% !important
942
+ width: 16.666667%
943
943
  }
944
944
 
945
945
  .desktop-xl\:w-3\/12 {
946
- width: 25% !important
946
+ width: 25%
947
947
  }
948
948
 
949
949
  .desktop-xl\:w-4\/12 {
950
- width: 33.333333% !important
950
+ width: 33.333333%
951
951
  }
952
952
 
953
953
  .desktop-xl\:w-5\/12 {
954
- width: 41.666667% !important
954
+ width: 41.666667%
955
955
  }
956
956
 
957
957
  .desktop-xl\:w-6\/12 {
958
- width: 50% !important
958
+ width: 50%
959
959
  }
960
960
 
961
961
  .desktop-xl\:w-7\/12 {
962
- width: 58.333333% !important
962
+ width: 58.333333%
963
963
  }
964
964
 
965
965
  .desktop-xl\:w-8\/12 {
966
- width: 66.666667% !important
966
+ width: 66.666667%
967
967
  }
968
968
 
969
969
  .desktop-xl\:w-9\/12 {
970
- width: 75% !important
970
+ width: 75%
971
971
  }
972
972
 
973
973
  .desktop-xl\:pr-0 {
974
- padding-right: 0px !important
974
+ padding-right: 0px
975
975
  }
976
976
 
977
977
  .desktop-xl\:pr-4 {
978
- padding-right: 1rem !important
978
+ padding-right: 1rem
979
979
  }
980
980
 
981
981
  .group:hover .desktop-xl\:group-hover\:flex {
982
- display: flex !important
982
+ display: flex
983
983
  }
984
984
 
985
985
  .group:hover .desktop-xl\:group-hover\:hidden {
986
- display: none !important
986
+ display: none
987
987
  }
988
988
  }
989
989
 
990
990
  .dark\:bg-hurricane-700:where(:host([data-theme=dark]),:host([data-theme=dark]) *) {
991
- --tw-bg-opacity: 1 !important;
992
- background-color: rgb(35 41 52 / var(--tw-bg-opacity, 1)) !important
991
+ --tw-bg-opacity: 1;
992
+ background-color: rgb(35 41 52 / var(--tw-bg-opacity, 1))
993
993
  }
994
994
 
995
995
  .dark\:from-hurricane-400:where(:host([data-theme=dark]),:host([data-theme=dark]) *) {
996
- --tw-gradient-from: #464B54 var(--tw-gradient-from-position) !important;
997
- --tw-gradient-to: rgb(70 75 84 / 0) var(--tw-gradient-to-position) !important;
998
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
996
+ --tw-gradient-from: #464B54 var(--tw-gradient-from-position);
997
+ --tw-gradient-to: rgb(70 75 84 / 0) var(--tw-gradient-to-position);
998
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
999
999
  }
1000
1000
 
1001
1001
  .dark\:from-hurricane-700:where(:host([data-theme=dark]),:host([data-theme=dark]) *) {
1002
- --tw-gradient-from: #232934 var(--tw-gradient-from-position) !important;
1003
- --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position) !important;
1004
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
1002
+ --tw-gradient-from: #232934 var(--tw-gradient-from-position);
1003
+ --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position);
1004
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
1005
1005
  }
1006
1006
 
1007
1007
  .dark\:text-hurricane-200:where(:host([data-theme=dark]),:host([data-theme=dark]) *) {
1008
- --tw-text-opacity: 1 !important;
1009
- color: rgb(163 165 169 / var(--tw-text-opacity, 1)) !important
1008
+ --tw-text-opacity: 1;
1009
+ color: rgb(163 165 169 / var(--tw-text-opacity, 1))
1010
1010
  }
1011
1011
 
1012
1012
  .dark\:text-white:where(:host([data-theme=dark]),:host([data-theme=dark]) *) {
1013
- --tw-text-opacity: 1 !important;
1014
- color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important
1013
+ --tw-text-opacity: 1;
1014
+ color: rgb(255 255 255 / var(--tw-text-opacity, 1))
1015
1015
  }
1016
1016
 
1017
1017
  .dark\:before\:from-hurricane-700:where(:host([data-theme=dark]),:host([data-theme=dark]) *)::before {
1018
- content: var(--tw-content) !important;
1019
- --tw-gradient-from: #232934 var(--tw-gradient-from-position) !important;
1020
- --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position) !important;
1021
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
1018
+ content: var(--tw-content);
1019
+ --tw-gradient-from: #232934 var(--tw-gradient-from-position);
1020
+ --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position);
1021
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
1022
1022
  }
1023
1023
 
1024
1024
  .dark\:before\:via-hurricane-700\/90:where(:host([data-theme=dark]),:host([data-theme=dark]) *)::before {
1025
- content: var(--tw-content) !important;
1026
- --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position) !important;
1027
- --tw-gradient-stops: var(--tw-gradient-from), rgb(35 41 52 / 0.9) var(--tw-gradient-via-position), var(--tw-gradient-to) !important
1025
+ content: var(--tw-content);
1026
+ --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position);
1027
+ --tw-gradient-stops: var(--tw-gradient-from), rgb(35 41 52 / 0.9) var(--tw-gradient-via-position), var(--tw-gradient-to)
1028
1028
  }
1029
1029
 
1030
1030
  .after\:dark\:from-hurricane-700:where(:host([data-theme=dark]),:host([data-theme=dark]) *)::after {
1031
- content: var(--tw-content) !important;
1032
- --tw-gradient-from: #232934 var(--tw-gradient-from-position) !important;
1033
- --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position) !important;
1034
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
1031
+ content: var(--tw-content);
1032
+ --tw-gradient-from: #232934 var(--tw-gradient-from-position);
1033
+ --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position);
1034
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
1035
1035
  }
1036
1036
 
1037
1037
  .dark\:after\:via-hurricane-700\/90:where(:host([data-theme=dark]),:host([data-theme=dark]) *)::after {
1038
- content: var(--tw-content) !important;
1039
- --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position) !important;
1040
- --tw-gradient-stops: var(--tw-gradient-from), rgb(35 41 52 / 0.9) var(--tw-gradient-via-position), var(--tw-gradient-to) !important
1038
+ content: var(--tw-content);
1039
+ --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position);
1040
+ --tw-gradient-stops: var(--tw-gradient-from), rgb(35 41 52 / 0.9) var(--tw-gradient-via-position), var(--tw-gradient-to)
1041
1041
  }
1042
1042
 
1043
1043
  .dark\:bg-hurricane-700:where([data-theme=dark],[data-theme=dark] *) {
1044
- --tw-bg-opacity: 1 !important;
1045
- background-color: rgb(35 41 52 / var(--tw-bg-opacity, 1)) !important
1044
+ --tw-bg-opacity: 1;
1045
+ background-color: rgb(35 41 52 / var(--tw-bg-opacity, 1))
1046
1046
  }
1047
1047
 
1048
1048
  .dark\:from-hurricane-400:where([data-theme=dark],[data-theme=dark] *) {
1049
- --tw-gradient-from: #464B54 var(--tw-gradient-from-position) !important;
1050
- --tw-gradient-to: rgb(70 75 84 / 0) var(--tw-gradient-to-position) !important;
1051
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
1049
+ --tw-gradient-from: #464B54 var(--tw-gradient-from-position);
1050
+ --tw-gradient-to: rgb(70 75 84 / 0) var(--tw-gradient-to-position);
1051
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
1052
1052
  }
1053
1053
 
1054
1054
  .dark\:from-hurricane-700:where([data-theme=dark],[data-theme=dark] *) {
1055
- --tw-gradient-from: #232934 var(--tw-gradient-from-position) !important;
1056
- --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position) !important;
1057
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
1055
+ --tw-gradient-from: #232934 var(--tw-gradient-from-position);
1056
+ --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position);
1057
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
1058
1058
  }
1059
1059
 
1060
1060
  .dark\:text-hurricane-200:where([data-theme=dark],[data-theme=dark] *) {
1061
- --tw-text-opacity: 1 !important;
1062
- color: rgb(163 165 169 / var(--tw-text-opacity, 1)) !important
1061
+ --tw-text-opacity: 1;
1062
+ color: rgb(163 165 169 / var(--tw-text-opacity, 1))
1063
1063
  }
1064
1064
 
1065
1065
  .dark\:text-white:where([data-theme=dark],[data-theme=dark] *) {
1066
- --tw-text-opacity: 1 !important;
1067
- color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important
1066
+ --tw-text-opacity: 1;
1067
+ color: rgb(255 255 255 / var(--tw-text-opacity, 1))
1068
1068
  }
1069
1069
 
1070
1070
  .dark\:before\:from-hurricane-700:where([data-theme=dark],[data-theme=dark] *)::before {
1071
- content: var(--tw-content) !important;
1072
- --tw-gradient-from: #232934 var(--tw-gradient-from-position) !important;
1073
- --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position) !important;
1074
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
1071
+ content: var(--tw-content);
1072
+ --tw-gradient-from: #232934 var(--tw-gradient-from-position);
1073
+ --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position);
1074
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
1075
1075
  }
1076
1076
 
1077
1077
  .dark\:before\:via-hurricane-700\/90:where([data-theme=dark],[data-theme=dark] *)::before {
1078
- content: var(--tw-content) !important;
1079
- --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position) !important;
1080
- --tw-gradient-stops: var(--tw-gradient-from), rgb(35 41 52 / 0.9) var(--tw-gradient-via-position), var(--tw-gradient-to) !important
1078
+ content: var(--tw-content);
1079
+ --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position);
1080
+ --tw-gradient-stops: var(--tw-gradient-from), rgb(35 41 52 / 0.9) var(--tw-gradient-via-position), var(--tw-gradient-to)
1081
1081
  }
1082
1082
 
1083
1083
  .after\:dark\:from-hurricane-700:where([data-theme=dark],[data-theme=dark] *)::after {
1084
- content: var(--tw-content) !important;
1085
- --tw-gradient-from: #232934 var(--tw-gradient-from-position) !important;
1086
- --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position) !important;
1087
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
1084
+ content: var(--tw-content);
1085
+ --tw-gradient-from: #232934 var(--tw-gradient-from-position);
1086
+ --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position);
1087
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
1088
1088
  }
1089
1089
 
1090
1090
  .dark\:after\:via-hurricane-700\/90:where([data-theme=dark],[data-theme=dark] *)::after {
1091
- content: var(--tw-content) !important;
1092
- --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position) !important;
1093
- --tw-gradient-stops: var(--tw-gradient-from), rgb(35 41 52 / 0.9) var(--tw-gradient-via-position), var(--tw-gradient-to) !important
1091
+ content: var(--tw-content);
1092
+ --tw-gradient-to: rgb(35 41 52 / 0) var(--tw-gradient-to-position);
1093
+ --tw-gradient-stops: var(--tw-gradient-from), rgb(35 41 52 / 0.9) var(--tw-gradient-via-position), var(--tw-gradient-to)
1094
1094
  }