django-unfold 0.19.0__py3-none-any.whl → 0.20.1__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- {django_unfold-0.19.0.dist-info → django_unfold-0.20.1.dist-info}/METADATA +72 -4
- {django_unfold-0.19.0.dist-info → django_unfold-0.20.1.dist-info}/RECORD +14 -13
- unfold/admin.py +6 -6
- unfold/settings.py +0 -3
- unfold/sites.py +6 -0
- unfold/static/unfold/css/styles.css +1 -1
- unfold/styles.css +23 -0
- unfold/templates/admin/change_form.html +5 -1
- unfold/templates/admin/includes/fieldset.html +4 -4
- unfold/templates/unfold/helpers/app_list.html +32 -30
- unfold/templates/unfold/helpers/fieldsets_tabs.html +26 -0
- unfold/templatetags/unfold.py +13 -1
- {django_unfold-0.19.0.dist-info → django_unfold-0.20.1.dist-info}/LICENSE.md +0 -0
- {django_unfold-0.19.0.dist-info → django_unfold-0.20.1.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: django-unfold
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.20.1
|
4
4
|
Summary: Modern Django admin theme for seamless interface development
|
5
5
|
Home-page: https://unfoldadmin.com
|
6
6
|
License: MIT
|
@@ -19,7 +19,6 @@ Classifier: Programming Language :: Python :: 3.10
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.11
|
20
20
|
Classifier: Programming Language :: Python :: 3.12
|
21
21
|
Requires-Dist: django (>=3.2)
|
22
|
-
Requires-Dist: python-semantic-release (>=8.5.0,<9.0.0)
|
23
22
|
Project-URL: Repository, https://github.com/unfoldadmin/django-unfold
|
24
23
|
Description-Content-Type: text/markdown
|
25
24
|
|
@@ -40,6 +39,10 @@ Unfold is theme for Django admin incorporating most common practises for buildin
|
|
40
39
|
- **Formula:** repository with demo implementation at [github.com/unfoldadmin/formula](https://github.com/unfoldadmin/formula)
|
41
40
|
- **Turbo:** Django & Next.js boilerplate implementing Unfold at [github.com/unfoldadmin/turbo](https://github.com/unfoldadmin/turbo)
|
42
41
|
|
42
|
+
## Are you using Unfold and need a help?<!-- omit from toc -->
|
43
|
+
|
44
|
+
Did you decide to start using Unfold but you don't have time to make the switch from native Django admin? [Get in touch with us](https://unfoldadmin.com/) and let's supercharge development by using our know-how.
|
45
|
+
|
43
46
|
## Features <!-- omit from toc -->
|
44
47
|
|
45
48
|
- **Visual**: provides new user interface based on Tailwind CSS framework
|
@@ -51,7 +54,8 @@ Unfold is theme for Django admin incorporating most common practises for buildin
|
|
51
54
|
- **WYSIWYG:** built-in support for WYSIWYG (Trix)
|
52
55
|
- **Custom filters:** widgets for filtering number & datetime values
|
53
56
|
- **Dashboard:** custom components for rapid dashboard development
|
54
|
-
- **
|
57
|
+
- **Model tabs:** define custom tab navigations for models
|
58
|
+
- **Fieldset tabs:** merge several fielsets into tabs in change form
|
55
59
|
- **Colors:** possibility to override default color scheme
|
56
60
|
- **Third party packages:** default support for multiple popular applications
|
57
61
|
- **Environment label**: distinguish between environments by displaying a label
|
@@ -71,6 +75,7 @@ Unfold is theme for Django admin incorporating most common practises for buildin
|
|
71
75
|
- [Numeric filters](#numeric-filters)
|
72
76
|
- [Date/time filters](#datetime-filters)
|
73
77
|
- [Display decorator](#display-decorator)
|
78
|
+
- [Change form tabs](#change-form-tabs)
|
74
79
|
- [Third party packages](#third-party-packages)
|
75
80
|
- [django-celery-beat](#django-celery-beat)
|
76
81
|
- [django-guardian](#django-guardian)
|
@@ -603,6 +608,55 @@ class UserAdmin(ModelAdmin):
|
|
603
608
|
return "First main heading", "Smaller additional description", "AB"
|
604
609
|
```
|
605
610
|
|
611
|
+
## Change form tabs
|
612
|
+
|
613
|
+
When the change form contains a lot of fieldsets, sometimes it is better to group them into tabs so it will not be needed to scroll. To mark a fieldset for tab navigation it is required to add a `tab` CSS class to the fieldset. Once the fieldset contains `tab` class it will be recognized in a template and grouped into tab navigation. Each tab must contain its name. If the name is not available, it will be not included in the tab navigation.
|
614
|
+
|
615
|
+
```python
|
616
|
+
# admin.py
|
617
|
+
|
618
|
+
from django.contrib import admin
|
619
|
+
from django.utils.translation import gettext_lazy as _
|
620
|
+
from unfold.admin import ModelAdmin
|
621
|
+
|
622
|
+
from .models import MyModel
|
623
|
+
|
624
|
+
|
625
|
+
@admin.register(MyModel)
|
626
|
+
class MyModelAdmin(ModelAdmin):
|
627
|
+
fieldsets = (
|
628
|
+
(
|
629
|
+
None,
|
630
|
+
{
|
631
|
+
"fields": [
|
632
|
+
"field_1",
|
633
|
+
"field_2",
|
634
|
+
],
|
635
|
+
},
|
636
|
+
),
|
637
|
+
(
|
638
|
+
_("Tab 1"),
|
639
|
+
{
|
640
|
+
"classes": ["tab"],
|
641
|
+
"fields": [
|
642
|
+
"field_3",
|
643
|
+
"field_4",
|
644
|
+
],
|
645
|
+
},
|
646
|
+
),
|
647
|
+
(
|
648
|
+
_("Tab 2"),
|
649
|
+
{
|
650
|
+
"classes": ["tab"],
|
651
|
+
"fields": [
|
652
|
+
"field_5",
|
653
|
+
"field_6",
|
654
|
+
],
|
655
|
+
},
|
656
|
+
),
|
657
|
+
)
|
658
|
+
```
|
659
|
+
|
606
660
|
## Third party packages
|
607
661
|
|
608
662
|
### django-celery-beat
|
@@ -674,7 +728,21 @@ class ExampleAdmin(ModelAdmin, ImportExportModelAdmin):
|
|
674
728
|
|
675
729
|
### django-modeltranslation
|
676
730
|
|
677
|
-
By default Unfold
|
731
|
+
By default, Unfold supports django-modeltranslation and `TabbedTranslationAdmin` admin class for the tabbed navigation is implemented with custom styling as well.
|
732
|
+
|
733
|
+
```python
|
734
|
+
from django.contrib import admin
|
735
|
+
|
736
|
+
from modeltranslation.admin import TabbedTranslationAdmin
|
737
|
+
from unfold.admin import ModelAdmin
|
738
|
+
|
739
|
+
from .models import MyModel
|
740
|
+
|
741
|
+
|
742
|
+
@admin.register(MyModel)
|
743
|
+
class MyModelAdmin(ModelAdmin, TabbedTranslationAdmin):
|
744
|
+
pass
|
745
|
+
```
|
678
746
|
|
679
747
|
For django-modeltranslation fields for spefic languages, it is possible to define custom flags which will appear as a suffix in field's label. It is recommended to use emojis as suffix.
|
680
748
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
unfold/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
unfold/admin.py,sha256=
|
2
|
+
unfold/admin.py,sha256=EyxkRKXWunWhPd6RdkUqdGZprTK1HPe6_xKWsh2LenY,23449
|
3
3
|
unfold/apps.py,sha256=LXJVMj1WIoQXjRmiz2bFtsVc9gKhdby7UQczdtjieY0,307
|
4
4
|
unfold/checks.py,sha256=LtFEJZfNjgpc9_3XjKSiu_7LtG-ew55R0u8qsbWOgcM,1811
|
5
5
|
unfold/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -58,9 +58,9 @@ unfold/dataclasses.py,sha256=JJdGYzQ8MpeOe2FQPJqrMn_UJcxUz1VJgHCuCtkZCA8,199
|
|
58
58
|
unfold/decorators.py,sha256=BVDlxhZxB4ND3f5-5oiENRTv_W_Q_Eu-gZlsrYKOxiU,3272
|
59
59
|
unfold/exceptions.py,sha256=gcCj1ox61E137bk_0Cqy4YC3SttdPgB-fiJUqpmyHSE,43
|
60
60
|
unfold/forms.py,sha256=pLdtUttPmPxanLXKRqAgTLxLSifKJy43JfGcEyL4m2Y,3303
|
61
|
-
unfold/settings.py,sha256
|
62
|
-
unfold/sites.py,sha256=
|
63
|
-
unfold/static/unfold/css/styles.css,sha256=
|
61
|
+
unfold/settings.py,sha256=--TdTSWdOA8TQGW4-vjJkjy_zEyd_kZwBr3BIuQ8hzI,1208
|
62
|
+
unfold/sites.py,sha256=Rk__3wULmSl46k70U4HH9qAlOt10rE4Rtr5BX_6n2SE,12504
|
63
|
+
unfold/static/unfold/css/styles.css,sha256=NPIj8UX1m3m-2dhu0E5MrWbT6NhaVhkdVwr9Sjd8rr8,90338
|
64
64
|
unfold/static/unfold/fonts/inter/Inter-Bold.woff2,sha256=O88EyjAeRPE_QEyKBKpK5wf2epUOEu8wwjj5bnhCZqE,46552
|
65
65
|
unfold/static/unfold/fonts/inter/Inter-Medium.woff2,sha256=O88EyjAeRPE_QEyKBKpK5wf2epUOEu8wwjj5bnhCZqE,46552
|
66
66
|
unfold/static/unfold/fonts/inter/Inter-Regular.woff2,sha256=O88EyjAeRPE_QEyKBKpK5wf2epUOEu8wwjj5bnhCZqE,46552
|
@@ -73,7 +73,7 @@ unfold/static/unfold/js/alpine.persist.js,sha256=84PZYnPi25AFm7wIWRe1gzA74c5Rv2V
|
|
73
73
|
unfold/static/unfold/js/app.js,sha256=CIitJoFqpeZYPw8icGVXYX9tVRUgqFxcPZ2WjWS8Ylk,5288
|
74
74
|
unfold/static/unfold/js/chart.js,sha256=22W6cFERR-CElMOKRgMMicueMVP0Vf7FBEBYH8Z8tCk,200633
|
75
75
|
unfold/static/unfold/js/htmx.js,sha256=XOLqvnZiyEx46EW9vaJTBUaaWg8CGVVfXJkVsUmJbpI,42820
|
76
|
-
unfold/styles.css,sha256=
|
76
|
+
unfold/styles.css,sha256=6arlrp5mPPdp_YfnFH6rCmVnJKFbB37bjKzEUuKcbBI,17351
|
77
77
|
unfold/templates/admin/actions.html,sha256=W8mGF_9VjqMsO1RSRdMo5DJvVmhSwEj5xNjamDWbfis,2519
|
78
78
|
unfold/templates/admin/app_index.html,sha256=lVjMIFsspHQ09LGHKfdfg7TlqlL39AX5LbwoeoZjFhk,1335
|
79
79
|
unfold/templates/admin/app_list.html,sha256=lNdqEIYIj3WuuF8ECN7UpRp6E3Qt-1HXt2lrwXrmdv4,3594
|
@@ -81,7 +81,7 @@ unfold/templates/admin/auth/user/add_form.html,sha256=iLig-vd2YExXsj0xGBwYhZ4kGU
|
|
81
81
|
unfold/templates/admin/auth/user/change_password.html,sha256=-Wa9ml3yss-kDz0YQxCiwoxs91KQD8eetCt5l6xekWM,2892
|
82
82
|
unfold/templates/admin/base.html,sha256=FtK_IcKltBl8UPBFeaaniv2uceCF39gIdKnzjLdSWfk,2296
|
83
83
|
unfold/templates/admin/base_site.html,sha256=3ckWrcAdd7Pw1hk6Zwyknab_Qb-rteV9-mXhMnfo6VI,361
|
84
|
-
unfold/templates/admin/change_form.html,sha256=
|
84
|
+
unfold/templates/admin/change_form.html,sha256=Pmi8NbCj98EufSYSzSGdk_bIkRib1hxjAjd_9jeIhT8,5327
|
85
85
|
unfold/templates/admin/change_form_object_tools.html,sha256=eyeH-i2HgEM0Yi-OJA2D1VnKJyC19A_my1IDGxxoP8Y,593
|
86
86
|
unfold/templates/admin/change_list.html,sha256=v2WUVl1mqpyaCGeJetH3I6muGTZCn5RB_laWGYtnOuU,5094
|
87
87
|
unfold/templates/admin/change_list_object_tools.html,sha256=cmMiT2nT20Ph5yfpj9aHPr76Z-JP4aSXp0o-Rnad28s,147
|
@@ -92,7 +92,7 @@ unfold/templates/admin/delete_selected_confirmation.html,sha256=Foka2yvwAMEZre-K
|
|
92
92
|
unfold/templates/admin/edit_inline/stacked.html,sha256=U6O_r9-5Hp7mT0l1EgTeBB8tc9nEAAi0etL2aCU2pBM,4415
|
93
93
|
unfold/templates/admin/edit_inline/tabular.html,sha256=1VWpXzY9sRz95r7_ZPQoQbL-jlJv598MWlXqAoqTpAY,12261
|
94
94
|
unfold/templates/admin/filter.html,sha256=UnDlHT2_26DXRKYw3wVgq-i8_FMVov66M-YiJabnyEg,1479
|
95
|
-
unfold/templates/admin/includes/fieldset.html,sha256=
|
95
|
+
unfold/templates/admin/includes/fieldset.html,sha256=t7YEP2jcQu1TBdy960QdaQGlvviH1akohFj5fVdTPGo,2991
|
96
96
|
unfold/templates/admin/includes/object_delete_summary.html,sha256=Nv69SCzyJHFX14iJFfodxKM0IIpQegKZH0fvKB15QJI,468
|
97
97
|
unfold/templates/admin/index.html,sha256=9-mW2yW1ms6DSAKnpMGK--vjfRSeIc-s9xcGU4lkGpM,674
|
98
98
|
unfold/templates/admin/login.html,sha256=zZ1mppzvv9pNxW3O5XgU7rGsa8Oq6Kab5bofqv_FN9M,3494
|
@@ -124,7 +124,7 @@ unfold/templates/unfold/components/title.html,sha256=PSiNK-s8jUJfu6f9zCcGOOyLiKx
|
|
124
124
|
unfold/templates/unfold/helpers/account_links.html,sha256=hyRaNDPKWf3mR4WsMibIi_-SDx5jNztoayzQGJav1oE,1909
|
125
125
|
unfold/templates/unfold/helpers/actions_row.html,sha256=2So5Pei3p1NyTgIDbpRRn9YONNKrSGAmYJzRVdQi23g,1672
|
126
126
|
unfold/templates/unfold/helpers/add_link.html,sha256=mIgpKrwqBO1oJ4cwPQWSX1oUHBwHJmy5-2TxUHf-1bo,808
|
127
|
-
unfold/templates/unfold/helpers/app_list.html,sha256=
|
127
|
+
unfold/templates/unfold/helpers/app_list.html,sha256=CgqqoGkRNyl73ZsNAN_E5-n-JnfujHj7ISjgchko18k,4342
|
128
128
|
unfold/templates/unfold/helpers/app_list_default.html,sha256=dmg01K-xrlZaA8z0X4ZJNefpiU0VwarJ7Pm9YplUGAk,3280
|
129
129
|
unfold/templates/unfold/helpers/boolean.html,sha256=p_WOlytoXvDwta76WgcV4JSWKpBgKf4amhqmHF798F8,564
|
130
130
|
unfold/templates/unfold/helpers/breadcrumb_item.html,sha256=k_1j57UV0WtzFFlMKaewj4NLbR_DhXI6RzCHThblZLw,234
|
@@ -132,6 +132,7 @@ unfold/templates/unfold/helpers/display_header.html,sha256=E-yG9ydyb6rRIR5TT4Fxe
|
|
132
132
|
unfold/templates/unfold/helpers/display_label.html,sha256=eRZ090tpW6UmqkcRKT6CZjR0ymdlMlE9cLroPCCdRQg,300
|
133
133
|
unfold/templates/unfold/helpers/field.html,sha256=oEhGUrLZi2hiuLaC96R2zdwD8DNZqX2_sJIxTpPTJDM,340
|
134
134
|
unfold/templates/unfold/helpers/field_readonly.html,sha256=v7-2oSSDgOsuYpP70y8DqdBqbRybubAfSDzstveoBuw,382
|
135
|
+
unfold/templates/unfold/helpers/fieldsets_tabs.html,sha256=-l8ni5jeJQPNxucAn4ujbts08Bp2WuGlQGnHpBMk5Os,1316
|
135
136
|
unfold/templates/unfold/helpers/form_errors.html,sha256=EwerIJptSCWXvtAJ1IZKfEn98qlShBIGavsTThbklAs,266
|
136
137
|
unfold/templates/unfold/helpers/form_label.html,sha256=5wKKBXVPwziV5v5fbYatpRvnvSJBDJf_7znNdE6V8IM,237
|
137
138
|
unfold/templates/unfold/helpers/header.html,sha256=jklASqVEJRa22jxdXq_X2UZb2uYn_ywaZbI2N4nBv20,998
|
@@ -165,13 +166,13 @@ unfold/templates/unfold/widgets/split_money.html,sha256=AFLUBmzGbY-RXgsfz7gaDxVR
|
|
165
166
|
unfold/templates/unfold/widgets/textarea.html,sha256=4xIGWb20DuwiwumndByrAyh7xF-ReXKLulSpDImX_cs,459
|
166
167
|
unfold/templates/unfold/widgets/time.html,sha256=Dq9s-Kyfkw7p4TfchR-XFVOX6pOS7GkXPOWuP9CLRVw,106
|
167
168
|
unfold/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
168
|
-
unfold/templatetags/unfold.py,sha256=
|
169
|
+
unfold/templatetags/unfold.py,sha256=HFe0GrTD4va0lLzsZhxqjEOONmehqOWdf5vulkxgfGU,6302
|
169
170
|
unfold/templatetags/unfold_list.py,sha256=jngY2KBxhdCNy9YX7YTSfVlXus4pbmV_Z5yHMW9AggM,14248
|
170
171
|
unfold/typing.py,sha256=1P8PWM2oeaceUJtA5j071RbKEBpHYaux441u7Hd6wv4,643
|
171
172
|
unfold/utils.py,sha256=5OIgDcwvIJQbwbnnqHx61cHh-2T1h184mTAuNq5WXLI,4088
|
172
173
|
unfold/views.py,sha256=Ml3XlEoHLcbEWof59Dw8ihKBMcmp-gBAibThtBFj55A,708
|
173
174
|
unfold/widgets.py,sha256=FThowQCfPVmsFT260j0ufGwPBNxF6JCIEp6QvJ-L0yI,13720
|
174
|
-
django_unfold-0.
|
175
|
-
django_unfold-0.
|
176
|
-
django_unfold-0.
|
177
|
-
django_unfold-0.
|
175
|
+
django_unfold-0.20.1.dist-info/LICENSE.md,sha256=D2dAcLArwGySIf62-9y-8Q4pcJOiWj8lLpBxYPzDCBc,1069
|
176
|
+
django_unfold-0.20.1.dist-info/METADATA,sha256=vdJOmGausFxMFkkNYI1IOV1ljPvYfeBOHm44CgpnG8M,40056
|
177
|
+
django_unfold-0.20.1.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
178
|
+
django_unfold-0.20.1.dist-info/RECORD,,
|
unfold/admin.py
CHANGED
@@ -129,11 +129,6 @@ if HAS_MONEY:
|
|
129
129
|
}
|
130
130
|
)
|
131
131
|
|
132
|
-
CHANGE_FORM_FORMFIELD_OVERRIDES = copy.deepcopy(FORMFIELD_OVERRIDES)
|
133
|
-
CHANGE_FORM_FORMFIELD_OVERRIDES.update(
|
134
|
-
{models.BooleanField: {"widget": UnfoldBooleanSwitchWidget}}
|
135
|
-
)
|
136
|
-
|
137
132
|
FORMFIELD_OVERRIDES_INLINE = copy.deepcopy(FORMFIELD_OVERRIDES)
|
138
133
|
|
139
134
|
FORMFIELD_OVERRIDES_INLINE.update(
|
@@ -536,7 +531,12 @@ class ModelAdmin(ModelAdminMixin, BaseModelAdmin):
|
|
536
531
|
if extra_context is None:
|
537
532
|
extra_context = {}
|
538
533
|
|
539
|
-
self.formfield_overrides
|
534
|
+
new_formfield_overrides = copy.deepcopy(self.formfield_overrides)
|
535
|
+
new_formfield_overrides.update(
|
536
|
+
{models.BooleanField: {"widget": UnfoldBooleanSwitchWidget}}
|
537
|
+
)
|
538
|
+
|
539
|
+
self.formfield_overrides = new_formfield_overrides
|
540
540
|
|
541
541
|
actions = []
|
542
542
|
if object_id:
|
unfold/settings.py
CHANGED
unfold/sites.py
CHANGED
@@ -257,6 +257,9 @@ class UnfoldAdminSite(AdminSite):
|
|
257
257
|
if has_primary_link and has_tab_link_active:
|
258
258
|
item["active"] = True
|
259
259
|
|
260
|
+
if isinstance(item["link"], Callable):
|
261
|
+
item["link"] = item["link"](request)
|
262
|
+
|
260
263
|
# Badge callbacks
|
261
264
|
if "badge" in item and isinstance(item["badge"], str):
|
262
265
|
try:
|
@@ -284,6 +287,9 @@ class UnfoldAdminSite(AdminSite):
|
|
284
287
|
if not self._call_permission_callback(item.get("permission"), request):
|
285
288
|
continue
|
286
289
|
|
290
|
+
if isinstance(item["link"], Callable):
|
291
|
+
item["link"] = item["link"](request)
|
292
|
+
|
287
293
|
allowed_items.append(item)
|
288
294
|
|
289
295
|
tab["items"] = allowed_items
|
@@ -1 +1 @@
|
|
1
|
-
/*! tailwindcss v3.4.0 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Inter,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,::backdrop,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}.prose-sm{font-size:.875rem;line-height:1.7142857}.prose-sm :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em}.prose-sm :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-top:.8888889em;margin-bottom:.8888889em}.prose-sm :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.3333333em;margin-bottom:1.3333333em;padding-left:1.1111111em}.prose-sm :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:2.1428571em;margin-top:0;margin-bottom:.8em;line-height:1.2}.prose-sm :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.4285714em;margin-top:1.6em;margin-bottom:.8em;line-height:1.4}.prose-sm :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.2857143em;margin-top:1.5555556em;margin-bottom:.4444444em;line-height:1.5555556}.prose-sm :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.4285714em;margin-bottom:.5714286em;line-height:1.4285714}.prose-sm :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.7142857em;margin-bottom:1.7142857em}.prose-sm :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.7142857em;margin-bottom:1.7142857em}.prose-sm :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose-sm :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.7142857em;margin-bottom:1.7142857em}.prose-sm :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;border-radius:.3125rem;padding:.1428571em .3571429em}.prose-sm :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em}.prose-sm :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.9em}.prose-sm :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8888889em}.prose-sm :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;line-height:1.6666667;margin-top:1.6666667em;margin-bottom:1.6666667em;border-radius:.25rem;padding:.6666667em 1em}.prose-sm :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em;padding-left:1.5714286em}.prose-sm :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em;padding-left:1.5714286em}.prose-sm :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.2857143em;margin-bottom:.2857143em}.prose-sm :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:.4285714em}.prose-sm :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:.4285714em}.prose-sm :where(.prose-sm>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5714286em;margin-bottom:.5714286em}.prose-sm :where(.prose-sm>ul>li>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose-sm>ul>li>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(.prose-sm>ol>li>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose-sm>ol>li>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5714286em;margin-bottom:.5714286em}.prose-sm :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em}.prose-sm :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.2857143em;padding-left:1.5714286em}.prose-sm :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2.8571429em;margin-bottom:2.8571429em}.prose-sm :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;line-height:1.5}.prose-sm :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){padding-right:1em;padding-bottom:.6666667em;padding-left:1em}.prose-sm :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:0}.prose-sm :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-right:0}.prose-sm :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding:.6666667em 1em}.prose-sm :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:0}.prose-sm :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-right:0}.prose-sm :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.7142857em;margin-bottom:1.7142857em}.prose-sm :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose-sm :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}.prose-sm :where(.prose-sm>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(.prose-sm>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.pointer-events-none{pointer-events:none}.visible{visibility:visible}.invisible{visibility:hidden}.collapse{visibility:collapse}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.-bottom-px{bottom:-1px}.-right-2{right:-.5rem}.bottom-0{bottom:0}.bottom-4{bottom:1rem}.left-0{left:0}.left-72{left:18rem}.right-0{right:0}.right-2{right:.5rem}.right-4{right:1rem}.top-0{top:0}.top-2{top:.5rem}.top-5{top:1.25rem}.top-7{top:1.75rem}.z-10{z-index:10}.z-20{z-index:20}.z-30{z-index:30}.z-50{z-index:50}.-m-3{margin:-.75rem}.-mx-2{margin-left:-.5rem;margin-right:-.5rem}.-mx-3{margin-left:-.75rem;margin-right:-.75rem}.-mx-4{margin-left:-1rem;margin-right:-1rem}.-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.-my-1{margin-top:-.25rem;margin-bottom:-.25rem}.-my-3{margin-top:-.75rem;margin-bottom:-.75rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.mx-4{margin-left:1rem;margin-right:1rem}.mx-6{margin-left:1.5rem;margin-right:1.5rem}.mx-auto{margin-left:auto;margin-right:auto}.my-12{margin-top:3rem;margin-bottom:3rem}.my-2{margin-top:.5rem;margin-bottom:.5rem}.my-3{margin-top:.75rem;margin-bottom:.75rem}.my-4{margin-top:1rem;margin-bottom:1rem}.my-8{margin-top:2rem;margin-bottom:2rem}.-mb-5{margin-bottom:-1.25rem}.-mb-6{margin-bottom:-1.5rem}.-mb-px{margin-bottom:-1px}.-mr-1{margin-right:-.25rem}.-mt-2{margin-top:-.5rem}.-mt-6{margin-top:-1.5rem}.mb-0{margin-bottom:0}.mb-1{margin-bottom:.25rem}.mb-10{margin-bottom:2.5rem}.mb-12{margin-bottom:3rem}.mb-2{margin-bottom:.5rem}.mb-2\.5{margin-bottom:.625rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.ml-1{margin-left:.25rem}.ml-2{margin-left:.5rem}.ml-3{margin-left:.75rem}.ml-4{margin-left:1rem}.ml-6{margin-left:1.5rem}.ml-72{margin-left:18rem}.ml-auto{margin-left:auto}.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.mr-4{margin-right:1rem}.mr-auto{margin-right:auto}.mt-0{margin-top:0}.mt-0\.5{margin-top:.125rem}.mt-1{margin-top:.25rem}.mt-12{margin-top:3rem}.mt-2{margin-top:.5rem}.mt-20{margin-top:5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.mt-auto{margin-top:auto}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.table{display:table}.grid{display:grid}.contents{display:contents}.hidden{display:none}.h-1{height:.25rem}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-16{height:4rem}.h-36{height:9rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-9\.5{height:2.375rem}.h-full{height:100%}.h-32{height:8rem}.h-24{height:6rem}.max-h-screen{max-height:100vh}.min-h-screen{min-height:100vh}.min-h-32{min-height:8rem}.w-1{width:.25rem}.w-1\/2{width:50%}.w-1\/3{width:33.333333%}.w-1\/4{width:25%}.w-1\/5{width:20%}.w-10{width:2.5rem}.w-2\/3{width:66.666667%}.w-2\/4{width:50%}.w-2\/5{width:40%}.w-3\/4{width:75%}.w-3\/5{width:60%}.w-32{width:8rem}.w-4{width:1rem}.w-4\.5{width:1.125rem}.w-4\/12{width:33.333333%}.w-4\/5{width:80%}.w-40{width:10rem}.w-48{width:12rem}.w-52{width:13rem}.w-6{width:1.5rem}.w-7{width:1.75rem}.w-72{width:18rem}.w-8{width:2rem}.w-80{width:20rem}.w-9{width:2.25rem}.w-9\.5{width:2.375rem}.w-96{width:24rem}.w-full{width:100%}.w-px{width:1px}.w-screen{width:100vw}.w-sidebar{width:18rem}.min-w-0{min-width:0}.min-w-sidebar{min-width:18rem}.max-w-2xl{max-width:42rem}.max-w-3xl{max-width:48rem}.max-w-4xl{max-width:56rem}.max-w-lg{max-width:32rem}.max-w-none{max-width:none}.flex-none{flex:none}.flex-shrink-0,.shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.basis-1\/2{flex-basis:50%}.table-fixed{table-layout:fixed}.border-separate{border-collapse:initial}.-translate-x-1\/2{--tw-translate-x:-50%}.-translate-x-1\/2,.translate-y-full{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))}.translate-y-full{--tw-translate-y:100%}.rotate-180{--tw-rotate:180deg}.rotate-180,.transform{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))}.animate-spin{animation:spin 1s linear infinite}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.resize-none{resize:none}.resize{resize:both}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.gap-0{gap:0}.gap-0\.5{gap:.125rem}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-10{gap:2.5rem}.gap-11{gap:2.75rem}.gap-12{gap:3rem}.gap-128{gap:32rem}.gap-14{gap:3.5rem}.gap-16{gap:4rem}.gap-2{gap:.5rem}.gap-2\.5{gap:.625rem}.gap-20{gap:5rem}.gap-24{gap:6rem}.gap-28{gap:7rem}.gap-3{gap:.75rem}.gap-3\.5{gap:.875rem}.gap-32{gap:8rem}.gap-36{gap:9rem}.gap-4{gap:1rem}.gap-40{gap:10rem}.gap-44{gap:11rem}.gap-48{gap:12rem}.gap-5{gap:1.25rem}.gap-52{gap:13rem}.gap-56{gap:14rem}.gap-6{gap:1.5rem}.gap-60{gap:15rem}.gap-64{gap:16rem}.gap-68{gap:17rem}.gap-7{gap:1.75rem}.gap-72{gap:18rem}.gap-8{gap:2rem}.gap-80{gap:20rem}.gap-9{gap:2.25rem}.gap-96{gap:24rem}.gap-px{gap:1px}.gap-x-0{-moz-column-gap:0;column-gap:0}.gap-x-0\.5{-moz-column-gap:.125rem;column-gap:.125rem}.gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.gap-x-1\.5{-moz-column-gap:.375rem;column-gap:.375rem}.gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.gap-x-11{-moz-column-gap:2.75rem;column-gap:2.75rem}.gap-x-12{-moz-column-gap:3rem;column-gap:3rem}.gap-x-128{-moz-column-gap:32rem;column-gap:32rem}.gap-x-14{-moz-column-gap:3.5rem;column-gap:3.5rem}.gap-x-16{-moz-column-gap:4rem;column-gap:4rem}.gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.gap-x-2\.5{-moz-column-gap:.625rem;column-gap:.625rem}.gap-x-20{-moz-column-gap:5rem;column-gap:5rem}.gap-x-24{-moz-column-gap:6rem;column-gap:6rem}.gap-x-28{-moz-column-gap:7rem;column-gap:7rem}.gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.gap-x-3\.5{-moz-column-gap:.875rem;column-gap:.875rem}.gap-x-32{-moz-column-gap:8rem;column-gap:8rem}.gap-x-36{-moz-column-gap:9rem;column-gap:9rem}.gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.gap-x-40{-moz-column-gap:10rem;column-gap:10rem}.gap-x-44{-moz-column-gap:11rem;column-gap:11rem}.gap-x-48{-moz-column-gap:12rem;column-gap:12rem}.gap-x-5{-moz-column-gap:1.25rem;column-gap:1.25rem}.gap-x-52{-moz-column-gap:13rem;column-gap:13rem}.gap-x-56{-moz-column-gap:14rem;column-gap:14rem}.gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.gap-x-60{-moz-column-gap:15rem;column-gap:15rem}.gap-x-64{-moz-column-gap:16rem;column-gap:16rem}.gap-x-68{-moz-column-gap:17rem;column-gap:17rem}.gap-x-7{-moz-column-gap:1.75rem;column-gap:1.75rem}.gap-x-72{-moz-column-gap:18rem;column-gap:18rem}.gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.gap-x-80{-moz-column-gap:20rem;column-gap:20rem}.gap-x-9{-moz-column-gap:2.25rem;column-gap:2.25rem}.gap-x-96{-moz-column-gap:24rem;column-gap:24rem}.gap-x-px{-moz-column-gap:1px;column-gap:1px}.gap-y-0{row-gap:0}.gap-y-0\.5{row-gap:.125rem}.gap-y-1{row-gap:.25rem}.gap-y-1\.5{row-gap:.375rem}.gap-y-10{row-gap:2.5rem}.gap-y-11{row-gap:2.75rem}.gap-y-12{row-gap:3rem}.gap-y-128{row-gap:32rem}.gap-y-14{row-gap:3.5rem}.gap-y-16{row-gap:4rem}.gap-y-2{row-gap:.5rem}.gap-y-2\.5{row-gap:.625rem}.gap-y-20{row-gap:5rem}.gap-y-24{row-gap:6rem}.gap-y-28{row-gap:7rem}.gap-y-3{row-gap:.75rem}.gap-y-3\.5{row-gap:.875rem}.gap-y-32{row-gap:8rem}.gap-y-36{row-gap:9rem}.gap-y-4{row-gap:1rem}.gap-y-40{row-gap:10rem}.gap-y-44{row-gap:11rem}.gap-y-48{row-gap:12rem}.gap-y-5{row-gap:1.25rem}.gap-y-52{row-gap:13rem}.gap-y-56{row-gap:14rem}.gap-y-6{row-gap:1.5rem}.gap-y-60{row-gap:15rem}.gap-y-64{row-gap:16rem}.gap-y-68{row-gap:17rem}.gap-y-7{row-gap:1.75rem}.gap-y-72{row-gap:18rem}.gap-y-8{row-gap:2rem}.gap-y-80{row-gap:20rem}.gap-y-9{row-gap:2.25rem}.gap-y-96{row-gap:24rem}.gap-y-px{row-gap:1px}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem*var(--tw-space-y-reverse))}.self-end{align-self:flex-end}.self-center{align-self:center}.self-stretch{align-self:stretch}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.overflow-x-hidden{overflow-x:hidden}.truncate{overflow:hidden;white-space:nowrap}.text-ellipsis,.truncate{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.whitespace-pre-wrap{white-space:pre-wrap}.break-words{overflow-wrap:break-word}.rounded{border-radius:.25rem}.rounded-full{border-radius:9999px}.rounded-md{border-radius:.375rem}.rounded-sm{border-radius:.125rem}.rounded-b{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.rounded-b-md{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.rounded-t-md{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.rounded-t-none{border-top-left-radius:0;border-top-right-radius:0}.border{border-width:1px}.border-0{border-width:0}.border-b{border-bottom-width:1px}.border-l-4{border-left-width:4px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-t-0{border-top-width:0}.border-blue-200{--tw-border-opacity:1;border-color:rgb(191 219 254/var(--tw-border-opacity))}.border-gray-100{--tw-border-opacity:1;border-color:rgb(243 244 246/var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.border-primary-600{--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity))}.border-red-200{--tw-border-opacity:1;border-color:rgb(254 202 202/var(--tw-border-opacity))}.border-red-500{--tw-border-opacity:1;border-color:rgb(239 68 68/var(--tw-border-opacity))}.border-transparent{border-color:#0000}.bg-amber-100{--tw-bg-opacity:1;background-color:rgb(254 243 199/var(--tw-bg-opacity))}.bg-blue-100{--tw-bg-opacity:1;background-color:rgb(219 234 254/var(--tw-bg-opacity))}.bg-blue-50{--tw-bg-opacity:1;background-color:rgb(239 246 255/var(--tw-bg-opacity))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.bg-gray-200{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.bg-gray-300{--tw-bg-opacity:1;background-color:rgb(209 213 219/var(--tw-bg-opacity))}.bg-gray-50{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.bg-gray-500{--tw-bg-opacity:1;background-color:rgb(107 114 128/var(--tw-bg-opacity))}.bg-gray-700{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.bg-gray-900{--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.bg-green-100{--tw-bg-opacity:1;background-color:rgb(220 252 231/var(--tw-bg-opacity))}.bg-green-500{--tw-bg-opacity:1;background-color:rgb(34 197 94/var(--tw-bg-opacity))}.bg-orange-100{--tw-bg-opacity:1;background-color:rgb(255 237 213/var(--tw-bg-opacity))}.bg-primary-100{--tw-bg-opacity:1;background-color:rgb(var(--color-primary-100)/var(--tw-bg-opacity))}.bg-primary-500{--tw-bg-opacity:1;background-color:rgb(var(--color-primary-500)/var(--tw-bg-opacity))}.bg-primary-600{--tw-bg-opacity:1;background-color:rgb(var(--color-primary-600)/var(--tw-bg-opacity))}.bg-red-100{--tw-bg-opacity:1;background-color:rgb(254 226 226/var(--tw-bg-opacity))}.bg-red-50{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity))}.bg-red-500{--tw-bg-opacity:1;background-color:rgb(239 68 68/var(--tw-bg-opacity))}.bg-red-600{--tw-bg-opacity:1;background-color:rgb(220 38 38/var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-opacity-80{--tw-bg-opacity:0.8}.bg-none{background-image:none}.bg-cover{background-size:cover}.bg-center{background-position:50%}.bg-no-repeat{background-repeat:no-repeat}.p-1{padding:.25rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-12{padding-left:3rem;padding-right:3rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.pb-1{padding-bottom:.25rem}.pb-12{padding-bottom:3rem}.pb-16{padding-bottom:4rem}.pb-2{padding-bottom:.5rem}.pb-4{padding-bottom:1rem}.pl-2{padding-left:.5rem}.pl-3{padding-left:.75rem}.pl-4{padding-left:1rem}.pr-2{padding-right:.5rem}.pr-3{padding-right:.75rem}.pr-4{padding-right:1rem}.pr-8{padding-right:2rem}.pt-1{padding-top:.25rem}.pt-2{padding-top:.5rem}.pt-3{padding-top:.75rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.align-top{vertical-align:top}.align-middle{vertical-align:middle}.align-text-top{vertical-align:text-top}.font-sans{font-family:Inter,sans-serif}.text-2xl{font-size:1.5rem;line-height:2rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.text-xxs{font-size:11px;line-height:14px}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.capitalize{text-transform:capitalize}.italic{font-style:italic}.\!leading-7{line-height:1.75rem!important}.leading-none{line-height:1}.leading-normal{line-height:1.5}.leading-relaxed{line-height:1.625}.text-amber-600{--tw-text-opacity:1;color:rgb(217 119 6/var(--tw-text-opacity))}.text-blue-500{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.text-green-500{--tw-text-opacity:1;color:rgb(34 197 94/var(--tw-text-opacity))}.text-green-600{--tw-text-opacity:1;color:rgb(22 163 74/var(--tw-text-opacity))}.text-orange-500{--tw-text-opacity:1;color:rgb(249 115 22/var(--tw-text-opacity))}.text-primary-500{--tw-text-opacity:1;color:rgb(var(--color-primary-500)/var(--tw-text-opacity))}.text-primary-600{--tw-text-opacity:1;color:rgb(var(--color-primary-600)/var(--tw-text-opacity))}.text-red-500{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.text-red-600{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.underline{text-decoration-line:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.opacity-0{opacity:0}.shadow{--tw-shadow:0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.shadow,.shadow-lg{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow-sm{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.outline-gray-500\/20{outline-color:#6b728033}.outline-green-200{outline-color:#bbf7d0}.outline-red-200{outline-color:#fecaca}.blur{--tw-blur:blur(8px)}.blur,.filter{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)}.backdrop-blur-sm{--tw-backdrop-blur:blur(4px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-height{transition-property:height;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-width{transition-property:width;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-75{transition-duration:75ms}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.border-spacing-none{border-spacing:0}.material-symbols-outlined{font-family:Material Symbols Outlined;font-weight:400;font-style:normal;font-size:18px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale}.scrollable-top:after{position:absolute;left:0;right:0;top:-1rem;height:1rem;background-image:linear-gradient(to top,var(--tw-gradient-stops));--tw-gradient-from:#f3f4f6 var(--tw-gradient-from-position);--tw-gradient-to:#f3f4f600 var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}:is(:where(.dark) .scrollable-top):after{background-image:none}.scrollable-top:after{content:""}.\[a-zA-Z\:\\-\]{a-z-a--z:\-}html{--color-primary-50:#faf5ff;--color-primary-100:#f3e8ff;--color-primary-200:#e9d5ff;--color-primary-300:#d8b4fe;--color-primary-400:#c084fc;--color-primary-500:#a855f7;--color-primary-600:#9333ea;--color-primary-700:#7e22ce;--color-primary-800:#6b21a8;--color-primary-900:#581c87;--color-primary-950:#3b0764}.column-fill-auto{-moz-column-fill:auto;column-fill:auto}[x-cloak]{display:none!important}.asteriskField{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity))}.md-16{font-size:16px}.md-18{font-size:18px}select:not([class*=bg-none]):not([multiple]){background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%236B7280' d='M24 31.4 11.3 18.7l2.85-2.8L24 25.8l9.85-9.85 2.85 2.8Z'/%3E%3C/svg%3E");background-position:right .7rem center;background-repeat:no-repeat;background-size:1.125rem 1.125rem}select:after{content:"";display:block}table select{display:block;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.375rem;border-width:1px;background-repeat:no-repeat;padding:.5rem 1.25rem .5rem .75rem;font-weight:500;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity));--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="rgb(156, 163, 175)"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M7 10l5 5 5-5H7z"/></svg>');background-size:1.125rem 1.125rem;background-position:right .5rem center}table select:focus{--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity))}table tr.selected{--tw-bg-opacity:1;background-color:rgb(254 252 232/var(--tw-bg-opacity))}:is(:where(.dark) table tr.selected){background-color:#ffffff0f}.datetimeshortcuts{position:absolute;right:0;top:1px;display:flex;flex-direction:row-reverse;align-items:center;font-size:0;line-height:1}.datetimeshortcuts a{font-size:0;line-height:1;--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity));transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.datetimeshortcuts a:first-child:hover,.datetimeshortcuts a:hover{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .datetimeshortcuts a:first-child){--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}:is(:where(.dark) .datetimeshortcuts a:first-child:hover){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.datetimeshortcuts a:first-child:after{display:flex;height:2.25rem;width:2.25rem;align-items:center;justify-content:center;border-left-width:1px;padding-top:.5rem;padding-bottom:.5rem;text-align:center;font-size:1rem;line-height:1.5rem;font-family:Material Symbols Outlined;font-weight:400;font-style:normal;font-size:18px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale}.datetimeshortcuts a:first-child:hover:after{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .datetimeshortcuts a:first-child):after{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}:is(:where(.dark) .datetimeshortcuts a:first-child:hover):after{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.datetimeshortcuts a:first-child:after{content:"timer";display:flex}.date-icon{display:block;height:2.25rem;width:2.25rem;--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity));transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.date-icon:hover{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .date-icon){--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}:is(:where(.dark) .date-icon:hover){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.date-icon:after{height:2.25rem;width:2.25rem;align-items:center;justify-content:center;border-left-width:1px;padding-top:.5rem;padding-bottom:.5rem;text-align:center;font-size:1rem;line-height:1.5rem;font-family:Material Symbols Outlined;font-weight:400;font-style:normal;font-size:18px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale}.date-icon:hover:after{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .date-icon):after{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.date-icon:after{content:"edit";display:flex}:is(:where(.dark) .date-icon:hover):after{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.clock-icon{margin-left:.5rem;display:block;height:2.25rem;width:2.25rem}.clock-icon:hover{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .clock-icon){--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}:is(:where(.dark) .clock-icon:hover){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.clock-icon:after{height:2.25rem;width:2.25rem;align-items:center;justify-content:center;border-left-width:1px;padding-top:.5rem;padding-bottom:.5rem;text-align:center;font-size:1rem;line-height:1.5rem;font-family:Material Symbols Outlined;font-weight:400;font-style:normal;font-size:18px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale}.clock-icon:hover:after{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .clock-icon):after{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}:is(:where(.dark) .clock-icon:hover):after{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.clock-icon:after{content:"edit";display:flex}.timezonewarning{margin-top:.5rem;width:100%;font-size:.75rem;line-height:1rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.selector{display:flex;max-width:42rem;flex-grow:1;flex-direction:column;align-items:center}@media (min-width:768px){.selector{flex-direction:row}}.selector select{width:100%;flex-grow:1;background-image:none}:is(:where(.dark) .selector select){--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.selector option{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-left:.75rem;padding-right:.75rem;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}:is(:where(.dark) .selector option){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.selector .list-footer-display{border-top-width:1px;padding-top:.5rem;padding-bottom:.5rem;text-align:center;font-size:.875rem;line-height:1.25rem}:is(:where(.dark) .selector .list-footer-display){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.selector-available,.selector-chosen{display:flex;flex-grow:1;flex-direction:column;align-self:stretch;border-radius:.375rem;border-width:1px;--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}@media (min-width:768px){.selector-available,.selector-chosen{width:18rem}}@media (min-width:1024px){.selector-available,.selector-chosen{width:24rem}}:is(:where(.dark) .selector-available),:is(:where(.dark) .selector-chosen){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.selector-available h2,.selector-chosen h2{margin-bottom:.75rem;border-bottom-width:1px;padding:.5rem .75rem;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}:is(:where(.dark) .selector-available h2),:is(:where(.dark) .selector-chosen h2){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.selector-filter{display:flex}.selector-filter input{margin-left:.75rem;margin-right:.75rem;margin-bottom:.75rem;display:block;flex-grow:1;border-radius:.375rem;--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity));padding:.5rem .75rem;font-size:.875rem;line-height:1.25rem;font-weight:500;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.selector-filter input:focus{outline:2px solid #0000;outline-offset:2px}:is(:where(.dark) .selector-filter input){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.selector-chooseall,.selector-clearall{display:block;border-top-width:1px;padding-top:.5rem;padding-bottom:.5rem;text-align:center;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(var(--color-primary-500)/var(--tw-text-opacity));text-decoration-line:underline}:is(:where(.dark) .selector-chooseall),:is(:where(.dark) .selector-clearall){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.selector-clearall{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity))}:is(:where(.dark) .selector-clearall){--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.selector-chooser{margin-top:1rem;margin-bottom:1rem;display:flex;width:3.5rem;flex-direction:column;font-size:0;line-height:1}.selector-chooser li{padding-top:.25rem;padding-bottom:.25rem;text-align:center}.selector-add:after,.selector-remove:after{width:1.25rem;--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity));font-family:Material Symbols Outlined;font-weight:400;font-style:normal;font-size:18px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale}.selector-add:after{content:"arrow_forward"}.selector-remove:after{content:"arrow_back"}.related-widget-wrapper-link{order:9999}.empty-form{display:none}.add-row{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));padding:1.25rem .75rem;text-align:left;text-align:right;vertical-align:middle;font-size:.875rem;line-height:1.25rem;font-weight:400}:is(:where(.dark) .add-row){--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}[data-inline-type=stacked] .add-row{overflow:hidden;border-top-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}:is(:where(.dark) [data-inline-type=stacked] .add-row){--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}.add-row td{padding:1rem .75rem}.add-row a{display:block;border-radius:.375rem;border-width:1px;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));padding:.5rem .75rem;text-align:center;font-size:.875rem;line-height:1.25rem;font-weight:500;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity));transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}@media (min-width:1024px){.add-row a{float:right}}:is(:where(.dark) .add-row a){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}:is(:where(.dark) .add-row a:hover){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}h3 .delete label{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.inline-deletelink{display:block;font-size:.875rem;line-height:1.25rem;line-height:1;--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity));text-decoration-line:underline}:is(:where(.dark) .inline-deletelink){--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}td .inline-deletelink{display:block}@media (min-width:1024px){td .inline-deletelink{margin-top:.625rem}}h3 span:nth-child(3){margin-left:auto}.select2.select2-container{position:relative;width:100%!important;max-width:42rem;border-radius:.375rem;border-width:1px;--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}:is(:where(.dark) .select2.select2-container){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.errors .select2.select2-container{--tw-border-opacity:1;border-color:rgb(220 38 38/var(--tw-border-opacity))}.select2-container.select2-container--admin-autocomplete .select2-selection--single{height:auto}.select2-container.select2-container--admin-autocomplete .select2-selection--single .select2-selection__rendered{height:2.25rem;padding:.5rem .75rem;font-size:.875rem;line-height:1.25rem;font-weight:500;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}:is(:where(.dark) .select2-container.select2-container--admin-autocomplete .select2-selection--single .select2-selection__rendered){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.select2-container.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__clear,.select2-container.select2-container--admin-autocomplete .select2-selection--single .select2-selection__clear{margin-right:1.25rem;margin-top:-.5rem;display:flex;height:2.25rem;align-items:center;font-size:0;line-height:1}.select2-container.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__clear:after,.select2-container.select2-container--admin-autocomplete .select2-selection--single .select2-selection__clear:after{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity));font-family:Material Symbols Outlined;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale;content:"close";font-size:14px}.select2-container.select2-container--admin-autocomplete .select2-selection--single .select2-selection__arrow{margin-right:.5rem;margin-top:-1px;display:flex;height:2.25rem;align-items:center}.select2-container.select2-container--admin-autocomplete .select2-selection--single .select2-selection__arrow:after{left:0;margin:0;font-size:1.125rem;line-height:1.75rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity));font-family:Material Symbols Outlined;font-weight:400;font-style:normal;font-size:18px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale;content:"expand_more"}.select2-container.select2-container--admin-autocomplete .select2-selection--single .select2-selection__arrow b{display:none}.select2-container.select2-container--admin-autocomplete .select2-search--dropdown{display:flex;padding:.5rem .75rem}.select2-container.select2-container--admin-autocomplete .select2-search--dropdown .select2-search__field{margin-left:0;margin-right:0;width:auto;flex-grow:1;border-radius:.375rem;border-width:1px;border-style:solid;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));padding:.5rem .75rem;font-size:.875rem;line-height:1.25rem;font-weight:500;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity));--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);outline:2px solid #0000;outline-offset:2px}:is(:where(.dark) .select2-container.select2-container--admin-autocomplete .select2-search--dropdown .select2-search__field){--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.select2-container.select2-container--admin-autocomplete.select2-container--open.select2-container--above{border-top-left-radius:0;border-top-right-radius:0}.select2-container.select2-container--admin-autocomplete.select2-container--open.select2-container--below{border-bottom-right-radius:0;border-bottom-left-radius:0}.select2-container.select2-container--open .select2-dropdown{--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity));padding-bottom:.5rem;--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-opacity:1;--tw-ring-color:rgb(var(--color-primary-300)/var(--tw-ring-opacity))}.select2-container.select2-container--open .select2-dropdown:after{position:absolute;left:-1px;right:-1px;top:0;margin-top:-.25rem;display:block;height:.25rem;border-left-width:1px;border-right-width:1px;border-left-color:rgb(var(--color-primary-600)/var(--tw-border-opacity));--tw-border-opacity:1;border-right-color:rgb(var(--color-primary-600)/var(--tw-border-opacity));content:var(--tw-content);--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}:is(:where(.dark) .select2-container.select2-container--open .select2-dropdown){--tw-border-opacity:1;border-color:rgb(var(--color-primary-700)/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity));--tw-ring-color:rgb(var(--color-primary-700)/var(--tw-ring-opacity));--tw-ring-opacity:0.5}:is(:where(.dark) .select2-container.select2-container--open .select2-dropdown):after{border-left-color:rgb(var(--color-primary-700)/var(--tw-border-opacity));--tw-border-opacity:1;border-right-color:rgb(var(--color-primary-700)/var(--tw-border-opacity));content:var(--tw-content);--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.select2-container.select2-container--open .select2-dropdown--below{border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.select2-container.select2-container--open .select2-dropdown--above{border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-left-radius:.375rem;border-top-right-radius:.375rem}.select2-container.select2-container--open .select2-dropdown--above:after{bottom:0;top:auto;margin-bottom:-.25rem;content:var(--tw-content);margin-top:0}.select2-container.select2-container--admin-autocomplete .select2-results__option{display:block;padding:.5rem .75rem;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity));transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}:is(:where(.dark) .select2-container.select2-container--admin-autocomplete .select2-results__option){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.select2-container.select2-container--admin-autocomplete .select2-results__option--highlighted[aria-selected]{--tw-text-opacity:1;color:rgb(var(--color-primary-500)/var(--tw-text-opacity))}.select2-container.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__clear{top:0;margin:0 .5rem 0 0}.select2-container.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__rendered{padding:.25rem 1.5rem 0 .25rem}.select2-container--admin-autocomplete .select2-selection--multiple li.select2-selection__choice{margin:0 .25rem .25rem 0;display:block;height:1.75rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity));padding-left:.5rem;padding-right:.5rem;font-size:.875rem;font-weight:500;line-height:1.75rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity));--tw-shadow:inset 0 2px 4px 0 #0000000d;--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}:is(:where(.dark) .select2-container--admin-autocomplete .select2-selection--multiple li.select2-selection__choice){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}:is(:where(.dark) .select2-container--admin-autocomplete .select2-selection--multiple li.select2-selection__choice:hover){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.select2-container--admin-autocomplete .select2-selection--multiple li.select2-selection__choice .select2-selection__choice__remove{vertical-align:top;font-size:0;line-height:1}.select2-container--admin-autocomplete .select2-selection--multiple li.select2-selection__choice .select2-selection__choice__remove:hover{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}:is(:where(.dark) .select2-container--admin-autocomplete .select2-selection--multiple li.select2-selection__choice .select2-selection__choice__remove:hover){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.select2-container--admin-autocomplete .select2-selection--multiple li.select2-selection__choice .select2-selection__choice__remove:after{height:1.75rem;line-height:1.75rem!important;font-family:Material Symbols Outlined;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale;content:"close";font-size:14px}.select2-container--admin-autocomplete .select2-selection--multiple li.select2-search--inline .select2-search__field{margin:0;height:1.75rem;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.select2.select2-container--open{position:relative;border-bottom-width:0;--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity));--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-opacity:1;--tw-ring-color:rgb(var(--color-primary-300)/var(--tw-ring-opacity))}:is(:where(.dark) .select2.select2-container--open){--tw-border-opacity:1;border-color:rgb(var(--color-primary-700)/var(--tw-border-opacity));--tw-ring-color:rgb(var(--color-primary-700)/var(--tw-ring-opacity));--tw-ring-opacity:0.5}fieldset.collapsed>div{display:none}fieldset.collapse{visibility:visible}fieldset.collapsed,fieldset.collapsed h2{display:block}fieldset.collapsed .collapse-toggle{display:inline}.calendarbox,.clockbox{position:fixed!important;left:50%!important;top:50%!important;z-index:50;width:20rem;--tw-translate-x:-50%;--tw-translate-y:-50%;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));border-radius:.375rem;border-width:1px;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity));--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}:is(:where(.dark) .calendarbox),:is(:where(.dark) .clockbox){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.calendar caption{margin-bottom:.75rem;padding-top:.75rem;padding-bottom:.75rem;font-weight:500;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .calendar caption){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.calendar table{margin-bottom:.75rem;width:100%}.calendar table th{text-align:center;font-size:.75rem;line-height:1rem;font-weight:500;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .calendar table th){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.calendar table td{height:2.5rem;width:2.5rem;padding:.25rem;text-align:center}.calendar table td a{display:block;display:flex;height:2rem;width:2rem;align-items:center;justify-content:center;border-radius:9999px;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}:is(:where(.dark) .calendar table td a){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.calendar table td a:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.calendar table td.today a{--tw-bg-opacity:1;background-color:rgb(var(--color-primary-600)/var(--tw-bg-opacity));font-weight:500;--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.calendar-shortcuts{margin-bottom:.75rem;display:flex;flex-direction:row;justify-content:center;border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem;padding-left:.25rem;padding-right:.25rem;font-size:0;line-height:1}.calendar-shortcuts a{margin-left:.25rem;margin-right:.25rem;width:33.333333%;border-radius:.375rem;border-width:1px;padding:.5rem;text-align:center;font-size:.75rem;line-height:1rem;font-weight:500;line-height:1;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity));--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}:is(:where(.dark) .calendar-shortcuts a){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}:is(:where(.dark) .calendar-shortcuts a:hover){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity));--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.calendar-cancel{display:block;border-top-width:1px;padding-top:.5rem;padding-bottom:.5rem;text-align:center;font-size:.75rem;line-height:1rem;--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity));text-decoration-line:underline}:is(:where(.dark) .calendar-cancel){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.calendarnav-previous{position:absolute;left:0;top:0;margin-left:.5rem;margin-top:.5rem;display:block;font-size:0;line-height:1}.calendarnav-next:after,.calendarnav-previous:after{display:flex;height:1.75rem;width:1.75rem;align-items:center;justify-content:center;border-radius:9999px;border-width:1px;--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity));transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s;font-family:Material Symbols Outlined;font-weight:400;font-style:normal;font-size:18px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale}.calendarnav-next:hover:after,.calendarnav-previous:hover:after{--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity));--tw-text-opacity:1;color:rgb(var(--color-primary-500)/var(--tw-text-opacity))}:is(:where(.dark) .calendarnav-next):after,:is(:where(.dark) .calendarnav-previous):after{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}:is(:where(.dark) .calendarnav-next:hover):after,:is(:where(.dark) .calendarnav-previous:hover):after{border-color:rgb(31 41 55/var(--tw-border-opacity))}.calendarnav-next:after,.calendarnav-previous:after{content:"navigate_before";display:flex}:is(:where(.dark) .calendarnav-next:hover):after,:is(:where(.dark) .calendarnav-previous:hover):after{--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity));--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.calendarnav-next{position:absolute;right:0;top:0;margin-right:.5rem;margin-top:.5rem;display:block;font-size:0;line-height:1}.calendarnav-next:after{content:"navigate_next";display:flex}.clockbox{z-index:50;border-radius:.375rem;border-width:1px;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));font-size:.875rem;line-height:1.25rem;--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}:is(:where(.dark) .clockbox){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.clockbox h2{padding:.5rem .75rem;font-weight:500;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .clockbox h2){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.clockbox .timelist{padding-left:.75rem;padding-right:.75rem;padding-bottom:.5rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}:is(:where(.dark) .clockbox .timelist){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.clockbox .timelist li{display:block;padding-bottom:.25rem;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.clockbox .timelist li:hover{--tw-text-opacity:1;color:rgb(var(--color-primary-500)/var(--tw-text-opacity))}.htmx-swapping:before{bottom:0;left:0;right:0;top:0;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));opacity:.8;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s;content:""}.htmx-swapping:after,.htmx-swapping:before{position:absolute}.htmx-swapping:after{inset:50%;height:1rem;width:1rem}@keyframes spin{to{transform:rotate(1turn)}}.htmx-swapping:after{animation:spin 1s linear infinite;--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity));font-family:Material Symbols Outlined;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale;font-size:16px;content:"sync"}#changelist-filter .admin-numeric-filter-slider .noUi-handle{right:-1rem;height:1rem;width:1rem;cursor:pointer;border-radius:9999px;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}:is(:where(.dark) #changelist-filter .admin-numeric-filter-slider .noUi-handle){--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}#changelist-filter .admin-numeric-filter-slider .noUi-handle-upper{right:0}#changelist-filter .admin-numeric-filter-slider .noUi-handle:after,#changelist-filter .admin-numeric-filter-slider .noUi-handle:before{content:none}#changelist-filter .admin-numeric-filter-slider.noUi-target{height:.25rem;border-width:0;--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}:is(:where(.dark) #changelist-filter .admin-numeric-filter-slider.noUi-target){--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}#changelist-filter .admin-numeric-filter-slider .noUi-connect{height:.25rem;border-width:0;--tw-bg-opacity:1;background-color:rgb(var(--color-primary-600)/var(--tw-bg-opacity))}#changelist-filter .admin-numeric-filter-slider-tooltips{margin-bottom:1.25rem;display:flex;flex-direction:row}#changelist-filter .admin-numeric-filter-slider-tooltips>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(1rem*var(--tw-space-x-reverse));margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)))}#changelist-filter .admin-numeric-filter-slider-tooltips{font-size:.875rem;line-height:1.25rem;font-weight:500;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}trix-toolbar[id^=trix-toolbar-]{position:sticky;top:0}:is(:where(.dark) trix-toolbar[id^=trix-toolbar-]){--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.trix-active{--tw-text-opacity:1;color:rgb(var(--color-primary-600)/var(--tw-text-opacity))}.before\:mr-auto:before{content:var(--tw-content);margin-right:auto}.before\:block:before{content:var(--tw-content);display:block}.before\:flex:before{content:var(--tw-content);display:flex}.before\:w-72:before{content:var(--tw-content);width:18rem}.before\:items-center:before{content:var(--tw-content);align-items:center}.before\:capitalize:before{content:var(--tw-content);text-transform:capitalize}.before\:text-gray-500:before{content:var(--tw-content);--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.before\:content-\[attr\(data-label\)\]:before{--tw-content:attr(data-label);content:var(--tw-content)}.after\:absolute:after{content:var(--tw-content);position:absolute}.after\:left-1:after{content:var(--tw-content);left:.25rem}.after\:left-1\/2:after{content:var(--tw-content);left:50%}.after\:top-1:after{content:var(--tw-content);top:.25rem}.after\:top-1\/2:after{content:var(--tw-content);top:50%}.after\:-ml-px:after{content:var(--tw-content);margin-left:-1px}.after\:-mt-px:after{content:var(--tw-content);margin-top:-1px}.after\:\!flex:after{content:var(--tw-content);display:flex!important}.after\:flex:after{content:var(--tw-content);display:flex}.after\:h-2:after{content:var(--tw-content);height:.5rem}.after\:h-3:after{content:var(--tw-content);height:.75rem}.after\:h-4:after{content:var(--tw-content);height:1rem}.after\:w-2:after{content:var(--tw-content);width:.5rem}.after\:w-3:after{content:var(--tw-content);width:.75rem}.after\:w-4:after{content:var(--tw-content);width:1rem}.after\:-translate-x-1\/2:after{--tw-translate-x:-50%}.after\:-translate-x-1\/2:after,.after\:-translate-y-1\/2:after{content:var(--tw-content);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))}.after\:-translate-y-1\/2:after{--tw-translate-y:-50%}.after\:items-center:after{content:var(--tw-content);align-items:center}.after\:justify-center:after{content:var(--tw-content);justify-content:center}.after\:rounded-full:after{content:var(--tw-content);border-radius:9999px}.after\:bg-red-300:after{content:var(--tw-content);--tw-bg-opacity:1;background-color:rgb(252 165 165/var(--tw-bg-opacity))}.after\:bg-white:after{content:var(--tw-content);--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.after\:\!text-sm:after{content:var(--tw-content);font-size:.875rem!important;line-height:1.25rem!important}.after\:text-sm:after{content:var(--tw-content);font-size:.875rem;line-height:1.25rem}.after\:leading-none:after{content:var(--tw-content);line-height:1}.after\:text-white:after{content:var(--tw-content);--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.after\:shadow-sm:after{content:var(--tw-content);--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.after\:transition-all:after{content:var(--tw-content);transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.after\:content-\[\'\'\]:after{--tw-content:"";content:var(--tw-content)}.after\:content-\[\'done\'\]:after{--tw-content:"done";content:var(--tw-content)}.after\:material-symbols-outlined:after{content:var(--tw-content);font-family:Material Symbols Outlined;font-weight:400;font-style:normal;font-size:18px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale}.first\:mt-0:first-child{margin-top:0}.first\:border-t-0:first-child{border-top-width:0}.last\:mb-0:last-child{margin-bottom:0}.last\:mb-4:last-child{margin-bottom:1rem}.last\:mb-8:last-child{margin-bottom:2rem}.last\:border-0:last-child{border-width:0}.last\:border-b-0:last-child{border-bottom-width:0}.checked\:border-primary-600:checked{--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity))}.checked\:bg-primary-600:checked{--tw-bg-opacity:1;background-color:rgb(var(--color-primary-600)/var(--tw-bg-opacity))}.checked\:transition-all:checked{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.checked\:after\:left-4:checked:after{content:var(--tw-content);left:1rem}.checked\:after\:bg-white:checked:after{content:var(--tw-content);--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.focus-within\:border-primary-600:focus-within{--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity))}.focus-within\:ring:focus-within{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus-within\:ring-primary-300:focus-within{--tw-ring-opacity:1;--tw-ring-color:rgb(var(--color-primary-300)/var(--tw-ring-opacity))}.hover\:border-gray-400:hover{--tw-border-opacity:1;border-color:rgb(156 163 175/var(--tw-border-opacity))}.hover\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.hover\:bg-gray-50:hover{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.hover\:bg-gray-700\/\[\.04\]:hover{background-color:#3741510a}.hover\:bg-red-100:hover{--tw-bg-opacity:1;background-color:rgb(254 226 226/var(--tw-bg-opacity))}.hover\:bg-white:hover{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.hover\:\!text-primary-600:hover{--tw-text-opacity:1!important;color:rgb(var(--color-primary-600)/var(--tw-text-opacity))!important}.hover\:text-gray-700:hover{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.hover\:text-primary-600:hover{--tw-text-opacity:1;color:rgb(var(--color-primary-600)/var(--tw-text-opacity))}.hover\:text-red-700:hover{--tw-text-opacity:1;color:rgb(185 28 28/var(--tw-text-opacity))}.checked\:hover\:border-primary-600:hover:checked,.focus\:border-primary-600:focus{--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity))}.focus\:outline-none:focus{outline:2px solid #0000;outline-offset:2px}.focus\:outline:focus{outline-style:solid}.focus\:outline-1:focus{outline-width:1px}.focus\:outline-offset-2:focus{outline-offset:2px}.focus\:outline-primary-500:focus{outline-color:rgb(var(--color-primary-500)/1)}.focus\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-primary-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(var(--color-primary-300)/var(--tw-ring-opacity))}.group:hover .group-hover\:-right-1{right:-.25rem}.group:hover .group-hover\:bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.group:hover .group-hover\:text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.group:hover .group-hover\:text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.group.inline-stacked .group-\[\.inline-stacked\]\:mx-3,.group.inline-tabular .group-\[\.inline-tabular\]\:mx-3{margin-left:.75rem;margin-right:.75rem}.group.inline-stacked .group-\[\.inline-stacked\]\:mb-3{margin-bottom:.75rem}.group.inline-stacked .group-\[\.inline-stacked\]\:mt-3{margin-top:.75rem}.group.inline-tabular .group-\[\.inline-tabular\]\:mb-0{margin-bottom:0}.group.inline-tabular .group-\[\.inline-tabular\]\:mt-3{margin-top:.75rem}.group.errors .group-\[\.errors\]\:border-red-600{--tw-border-opacity:1;border-color:rgb(220 38 38/var(--tw-border-opacity))}.group.errors .group-\[\.errors\]\:border-x-red-600{--tw-border-opacity:1;border-left-color:rgb(220 38 38/var(--tw-border-opacity));border-right-color:rgb(220 38 38/var(--tw-border-opacity))}.group.errors .group-\[\.errors\]\:border-t-red-600{--tw-border-opacity:1;border-top-color:rgb(220 38 38/var(--tw-border-opacity))}.group.errors .group-\[\.errors\]\:focus\:ring-red-200:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(254 202 202/var(--tw-ring-opacity))}.peer:checked~.peer-checked\:block{display:block}.prose-headings\:font-medium :is(:where(h1,h2,h3,h4,h5,h6,th):not(:where([class~=not-prose],[class~=not-prose] *))){font-weight:500}.prose-headings\:text-gray-700 :is(:where(h1,h2,h3,h4,h5,h6,th):not(:where([class~=not-prose],[class~=not-prose] *))){--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.prose-a\:text-primary-600 :is(:where(a):not(:where([class~=not-prose],[class~=not-prose] *))){--tw-text-opacity:1;color:rgb(var(--color-primary-600)/var(--tw-text-opacity))}.prose-a\:underline :is(:where(a):not(:where([class~=not-prose],[class~=not-prose] *))){text-decoration-line:underline}.prose-blockquote\:border-l-4 :is(:where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *))){border-left-width:4px}.prose-blockquote\:not-italic :is(:where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *))){font-style:normal}.prose-strong\:text-gray-700 :is(:where(strong):not(:where([class~=not-prose],[class~=not-prose] *))){--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.prose-pre\:rounded :is(:where(pre):not(:where([class~=not-prose],[class~=not-prose] *))){border-radius:.25rem}.prose-pre\:bg-gray-50 :is(:where(pre):not(:where([class~=not-prose],[class~=not-prose] *))){--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.prose-ol\:list-decimal :is(:where(ol):not(:where([class~=not-prose],[class~=not-prose] *))){list-style-type:decimal}.prose-ul\:list-disc :is(:where(ul):not(:where([class~=not-prose],[class~=not-prose] *))){list-style-type:disc}@media not all and (min-width:1280px){.max-xl\:fixed{position:fixed}}@media not all and (min-width:768px){.max-md\:w-full{width:100%}}@media (min-width:640px){.sm\:w-96{width:24rem}}@media (min-width:768px){.md\:mb-2{margin-bottom:.5rem}.md\:ml-auto{margin-left:auto}.md\:mr-8{margin-right:2rem}.md\:mt-0{margin-top:0}.md\:block{display:block}.md\:w-48{width:12rem}.md\:flex-row{flex-direction:row}.md\:items-center{align-items:center}.md\:justify-end{justify-content:flex-end}.md\:border-0{border-width:0}.md\:border-b{border-bottom-width:1px}.md\:border-b-0{border-bottom-width:0}.md\:border-l-0{border-left-width:0}.md\:border-r{border-right-width:1px}.md\:border-r-0{border-right-width:0}.md\:border-t-0{border-top-width:0}.md\:border-primary-500{--tw-border-opacity:1;border-color:rgb(var(--color-primary-500)/var(--tw-border-opacity))}.md\:px-0{padding-left:0;padding-right:0}.md\:py-4{padding-top:1rem;padding-bottom:1rem}}@media (min-width:1024px){.lg\:-mx-4{margin-left:-1rem;margin-right:-1rem}.lg\:mb-0{margin-bottom:0}.lg\:mb-12{margin-bottom:3rem}.lg\:ml-auto{margin-left:auto}.lg\:mr-2{margin-right:.5rem}.lg\:mr-3{margin-right:.75rem}.lg\:mt-3{margin-top:.75rem}.lg\:mt-8{margin-top:2rem}.lg\:block{display:block}.lg\:table-cell{display:table-cell}.lg\:table-header-group{display:table-header-group}.lg\:table-row{display:table-row}.lg\:w-1\/2{width:50%}.lg\:w-1\/3{width:33.333333%}.lg\:w-1\/4{width:25%}.lg\:w-1\/5{width:20%}.lg\:w-2\/3{width:66.666667%}.lg\:w-2\/4{width:50%}.lg\:w-2\/5{width:40%}.lg\:w-3\/4{width:75%}.lg\:w-3\/5{width:60%}.lg\:w-4\/5{width:80%}.lg\:w-60{width:15rem}.lg\:w-72{width:18rem}.lg\:w-auto{width:auto}.lg\:w-px{width:1px}.lg\:max-w-xs{max-width:20rem}.lg\:flex-row{flex-direction:row}.lg\:flex-row-reverse{flex-direction:row-reverse}.lg\:gap-0{gap:0}.lg\:gap-0\.5{gap:.125rem}.lg\:gap-1{gap:.25rem}.lg\:gap-1\.5{gap:.375rem}.lg\:gap-10{gap:2.5rem}.lg\:gap-11{gap:2.75rem}.lg\:gap-12{gap:3rem}.lg\:gap-128{gap:32rem}.lg\:gap-14{gap:3.5rem}.lg\:gap-16{gap:4rem}.lg\:gap-2{gap:.5rem}.lg\:gap-2\.5{gap:.625rem}.lg\:gap-20{gap:5rem}.lg\:gap-24{gap:6rem}.lg\:gap-28{gap:7rem}.lg\:gap-3{gap:.75rem}.lg\:gap-3\.5{gap:.875rem}.lg\:gap-32{gap:8rem}.lg\:gap-36{gap:9rem}.lg\:gap-4{gap:1rem}.lg\:gap-40{gap:10rem}.lg\:gap-44{gap:11rem}.lg\:gap-48{gap:12rem}.lg\:gap-5{gap:1.25rem}.lg\:gap-52{gap:13rem}.lg\:gap-56{gap:14rem}.lg\:gap-6{gap:1.5rem}.lg\:gap-60{gap:15rem}.lg\:gap-64{gap:16rem}.lg\:gap-68{gap:17rem}.lg\:gap-7{gap:1.75rem}.lg\:gap-72{gap:18rem}.lg\:gap-8{gap:2rem}.lg\:gap-80{gap:20rem}.lg\:gap-9{gap:2.25rem}.lg\:gap-96{gap:24rem}.lg\:gap-px{gap:1px}.lg\:gap-x-0{-moz-column-gap:0;column-gap:0}.lg\:gap-x-0\.5{-moz-column-gap:.125rem;column-gap:.125rem}.lg\:gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.lg\:gap-x-1\.5{-moz-column-gap:.375rem;column-gap:.375rem}.lg\:gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.lg\:gap-x-11{-moz-column-gap:2.75rem;column-gap:2.75rem}.lg\:gap-x-12{-moz-column-gap:3rem;column-gap:3rem}.lg\:gap-x-128{-moz-column-gap:32rem;column-gap:32rem}.lg\:gap-x-14{-moz-column-gap:3.5rem;column-gap:3.5rem}.lg\:gap-x-16{-moz-column-gap:4rem;column-gap:4rem}.lg\:gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.lg\:gap-x-2\.5{-moz-column-gap:.625rem;column-gap:.625rem}.lg\:gap-x-20{-moz-column-gap:5rem;column-gap:5rem}.lg\:gap-x-24{-moz-column-gap:6rem;column-gap:6rem}.lg\:gap-x-28{-moz-column-gap:7rem;column-gap:7rem}.lg\:gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.lg\:gap-x-3\.5{-moz-column-gap:.875rem;column-gap:.875rem}.lg\:gap-x-32{-moz-column-gap:8rem;column-gap:8rem}.lg\:gap-x-36{-moz-column-gap:9rem;column-gap:9rem}.lg\:gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.lg\:gap-x-40{-moz-column-gap:10rem;column-gap:10rem}.lg\:gap-x-44{-moz-column-gap:11rem;column-gap:11rem}.lg\:gap-x-48{-moz-column-gap:12rem;column-gap:12rem}.lg\:gap-x-5{-moz-column-gap:1.25rem;column-gap:1.25rem}.lg\:gap-x-52{-moz-column-gap:13rem;column-gap:13rem}.lg\:gap-x-56{-moz-column-gap:14rem;column-gap:14rem}.lg\:gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.lg\:gap-x-60{-moz-column-gap:15rem;column-gap:15rem}.lg\:gap-x-64{-moz-column-gap:16rem;column-gap:16rem}.lg\:gap-x-68{-moz-column-gap:17rem;column-gap:17rem}.lg\:gap-x-7{-moz-column-gap:1.75rem;column-gap:1.75rem}.lg\:gap-x-72{-moz-column-gap:18rem;column-gap:18rem}.lg\:gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.lg\:gap-x-80{-moz-column-gap:20rem;column-gap:20rem}.lg\:gap-x-9{-moz-column-gap:2.25rem;column-gap:2.25rem}.lg\:gap-x-96{-moz-column-gap:24rem;column-gap:24rem}.lg\:gap-x-px{-moz-column-gap:1px;column-gap:1px}.lg\:gap-y-0{row-gap:0}.lg\:gap-y-0\.5{row-gap:.125rem}.lg\:gap-y-1{row-gap:.25rem}.lg\:gap-y-1\.5{row-gap:.375rem}.lg\:gap-y-10{row-gap:2.5rem}.lg\:gap-y-11{row-gap:2.75rem}.lg\:gap-y-12{row-gap:3rem}.lg\:gap-y-128{row-gap:32rem}.lg\:gap-y-14{row-gap:3.5rem}.lg\:gap-y-16{row-gap:4rem}.lg\:gap-y-2{row-gap:.5rem}.lg\:gap-y-2\.5{row-gap:.625rem}.lg\:gap-y-20{row-gap:5rem}.lg\:gap-y-24{row-gap:6rem}.lg\:gap-y-28{row-gap:7rem}.lg\:gap-y-3{row-gap:.75rem}.lg\:gap-y-3\.5{row-gap:.875rem}.lg\:gap-y-32{row-gap:8rem}.lg\:gap-y-36{row-gap:9rem}.lg\:gap-y-4{row-gap:1rem}.lg\:gap-y-40{row-gap:10rem}.lg\:gap-y-44{row-gap:11rem}.lg\:gap-y-48{row-gap:12rem}.lg\:gap-y-5{row-gap:1.25rem}.lg\:gap-y-52{row-gap:13rem}.lg\:gap-y-56{row-gap:14rem}.lg\:gap-y-6{row-gap:1.5rem}.lg\:gap-y-60{row-gap:15rem}.lg\:gap-y-64{row-gap:16rem}.lg\:gap-y-68{row-gap:17rem}.lg\:gap-y-7{row-gap:1.75rem}.lg\:gap-y-72{row-gap:18rem}.lg\:gap-y-8{row-gap:2rem}.lg\:gap-y-80{row-gap:20rem}.lg\:gap-y-9{row-gap:2.25rem}.lg\:gap-y-96{row-gap:24rem}.lg\:gap-y-px{row-gap:1px}.lg\:rounded-md{border-radius:.375rem}.lg\:border{border-width:1px}.lg\:border-0{border-width:0}.lg\:border-b-0{border-bottom-width:0}.lg\:border-t{border-top-width:1px}.lg\:border-none{border-style:none}.lg\:border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.lg\:p-12{padding:3rem}.lg\:px-12{padding-left:3rem;padding-right:3rem}.lg\:py-3{padding-top:.75rem;padding-bottom:.75rem}.lg\:text-left{text-align:left}.lg\:align-top{vertical-align:top}.lg\:underline{text-decoration-line:underline}.lg\:shadow-none{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000}.lg\:shadow-none,.lg\:shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.lg\:shadow-sm{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.lg\:before\:hidden:before{content:var(--tw-content);display:none}.lg\:first\:border-t:first-child{border-top-width:1px}}@media (min-width:1280px){.xl\:left-0{left:0}.xl\:left-72{left:18rem}.xl\:block{display:block}.xl\:flex{display:flex}.xl\:hidden{display:none}.xl\:max-w-4xl{max-width:56rem}.xl\:text-base{font-size:1rem;line-height:1.5rem}}:is(:where(.dark) .dark\:block){display:block}:is(:where(.dark) .dark\:hidden){display:none}:is(:where(.dark) .dark\:border){border-width:1px}:is(:where(.dark) .dark\:border-r){border-right-width:1px}:is(:where(.dark) .dark\:border-amber-600\/10){border-color:#d977061a}:is(:where(.dark) .dark\:border-blue-500\/10){border-color:#3b82f61a}:is(:where(.dark) .dark\:border-gray-500){--tw-border-opacity:1;border-color:rgb(107 114 128/var(--tw-border-opacity))}:is(:where(.dark) .dark\:border-gray-600){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}:is(:where(.dark) .dark\:border-gray-700){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}:is(:where(.dark) .dark\:border-gray-800){--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}:is(:where(.dark) .dark\:border-green-500\/10){border-color:#22c55e1a}:is(:where(.dark) .dark\:border-red-500\/10){border-color:#ef44441a}:is(:where(.dark) .dark\:border-red-500\/20){border-color:#ef444433}:is(:where(.dark) .dark\:border-transparent){border-color:#0000}:is(:where(.dark) .dark\:border-r-gray-700){--tw-border-opacity:1;border-right-color:rgb(55 65 81/var(--tw-border-opacity))}:is(:where(.dark) .dark\:bg-amber-600\/20){background-color:#d9770633}:is(:where(.dark) .dark\:bg-blue-500\/20){background-color:#3b82f633}:is(:where(.dark) .dark\:bg-gray-500\/20){background-color:#6b728033}:is(:where(.dark) .dark\:bg-gray-600){--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}:is(:where(.dark) .dark\:bg-gray-700){--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}:is(:where(.dark) .dark\:bg-gray-800){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}:is(:where(.dark) .dark\:bg-gray-900){--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}:is(:where(.dark) .dark\:bg-green-500\/20){background-color:#22c55e33}:is(:where(.dark) .dark\:bg-orange-500\/20){background-color:#f9731633}:is(:where(.dark) .dark\:bg-primary-500\/20){background-color:rgb(var(--color-primary-500)/.2)}:is(:where(.dark) .dark\:bg-red-500\/20){background-color:#ef444433}:is(:where(.dark) .dark\:bg-white\/10){background-color:#ffffff1a}:is(:where(.dark) .dark\:bg-white\/\[\.02\]){background-color:#ffffff05}:is(:where(.dark) .dark\:bg-white\/\[\.04\]){background-color:#ffffff0a}:is(:where(.dark) .dark\:text-gray-200){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}:is(:where(.dark) .dark\:text-gray-300){--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}:is(:where(.dark) .dark\:text-gray-400){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}:is(:where(.dark) .dark\:text-gray-500){--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}:is(:where(.dark) .dark\:text-gray-600){--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}:is(:where(.dark) .dark\:text-primary-500){--tw-text-opacity:1;color:rgb(var(--color-primary-500)/var(--tw-text-opacity))}:is(:where(.dark) .dark\:text-red-500){--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}:is(:where(.dark) .dark\:text-white){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(:where(.dark) .dark\:outline-green-500\/20){outline-color:#22c55e33}:is(:where(.dark) .dark\:outline-red-500\/20){outline-color:#ef444433}:is(:where(.dark) .dark\:before\:text-gray-400):before{content:var(--tw-content);--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}:is(:where(.dark) .after\:dark\:bg-transparent):after{content:var(--tw-content);background-color:initial}:is(:where(.dark) .after\:dark\:text-gray-700):after{content:var(--tw-content);--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .checked\:after\:dark\:bg-gray-200):checked:after{content:var(--tw-content);--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}:is(:where(.dark) .dark\:after\:checked\:text-white:checked):after{content:var(--tw-content);--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(:where(.dark) .dark\:focus-within\:border-primary-600:focus-within){--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity))}:is(:where(.dark) .dark\:focus-within\:ring-primary-700:focus-within){--tw-ring-opacity:1;--tw-ring-color:rgb(var(--color-primary-700)/var(--tw-ring-opacity))}:is(:where(.dark) .dark\:focus-within\:ring-opacity-50:focus-within){--tw-ring-opacity:0.5}:is(:where(.dark) .dark\:hover\:bg-gray-700:hover){--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}:is(:where(.dark) .dark\:hover\:bg-gray-900:hover){--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}:is(:where(.dark) .dark\:hover\:bg-red-500\/20:hover){background-color:#ef444433}:is(:where(.dark) .dark\:hover\:bg-white\/\[\.04\]:hover){background-color:#ffffff0a}:is(:where(.dark) .dark\:hover\:\!text-primary-500:hover){--tw-text-opacity:1!important;color:rgb(var(--color-primary-500)/var(--tw-text-opacity))!important}:is(:where(.dark) .dark\:hover\:text-gray-200:hover){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}:is(:where(.dark) .dark\:hover\:text-red-500:hover){--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}:is(:where(.dark) .dark\:hover\:text-white:hover){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(:where(.dark) .hover\:dark\:text-gray-200):hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}:is(:where(.dark) .dark\:focus\:border-primary-600:focus){--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity))}:is(:where(.dark) .dark\:focus\:ring-primary-600\/30:focus){--tw-ring-color:rgb(var(--color-primary-600)/0.3)}:is(:where(.dark) .dark\:focus\:ring-primary-700:focus){--tw-ring-opacity:1;--tw-ring-color:rgb(var(--color-primary-700)/var(--tw-ring-opacity))}:is(:where(.dark) .dark\:focus\:ring-opacity-50:focus){--tw-ring-opacity:0.5}.group:hover :is(:where(.dark) .group-hover\:dark\:bg-gray-800){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}:is(:where(.dark) .group:hover .dark\:group-hover\:text-gray-200){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.group:hover :is(:where(.dark) .group-hover\:dark\:text-white){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(:where(.dark) .group.errors .dark\:group-\[\.errors\]\:border-red-500){--tw-border-opacity:1;border-color:rgb(239 68 68/var(--tw-border-opacity))}:is(:where(.dark) .group.errors .dark\:group-\[\.errors\]\:border-x-red-500){--tw-border-opacity:1;border-left-color:rgb(239 68 68/var(--tw-border-opacity));border-right-color:rgb(239 68 68/var(--tw-border-opacity))}:is(:where(.dark) .group.errors .dark\:group-\[\.errors\]\:border-t-red-500){--tw-border-opacity:1;border-top-color:rgb(239 68 68/var(--tw-border-opacity))}:is(:where(.dark) .group.errors .dark\:group-\[\.errors\]\:focus\:ring-red-600\/40:focus){--tw-ring-color:#dc262666}:is(:where(.dark) .dark\:prose-headings\:text-gray-200 :is(:where(h1,h2,h3,h4,h5,h6,th):not(:where([class~=not-prose],[class~=not-prose] *)))){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}:is(:where(.dark) .dark\:prose-blockquote\:border-gray-700 :is(:where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)))){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}:is(:where(.dark) .dark\:prose-blockquote\:text-gray-400 :is(:where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)))){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}:is(:where(.dark) .dark\:prose-strong\:text-gray-200 :is(:where(strong):not(:where([class~=not-prose],[class~=not-prose] *)))){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}:is(:where(.dark) .dark\:prose-pre\:bg-gray-800 :is(:where(pre):not(:where([class~=not-prose],[class~=not-prose] *)))){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}@media (min-width:768px){:is(:where(.dark) .dark\:md\:border-gray-800){--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}:is(:where(.dark) .dark\:md\:border-primary-600){--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity))}}@media (min-width:1024px){:is(:where(.dark) .dark\:lg\:border-gray-800){--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}:is(:where(.dark) .lg\:dark\:border-gray-800){--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}}
|
1
|
+
/*! tailwindcss v3.4.0 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Inter,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,::backdrop,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}.prose-sm{font-size:.875rem;line-height:1.7142857}.prose-sm :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em}.prose-sm :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-top:.8888889em;margin-bottom:.8888889em}.prose-sm :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.3333333em;margin-bottom:1.3333333em;padding-left:1.1111111em}.prose-sm :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:2.1428571em;margin-top:0;margin-bottom:.8em;line-height:1.2}.prose-sm :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.4285714em;margin-top:1.6em;margin-bottom:.8em;line-height:1.4}.prose-sm :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.2857143em;margin-top:1.5555556em;margin-bottom:.4444444em;line-height:1.5555556}.prose-sm :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.4285714em;margin-bottom:.5714286em;line-height:1.4285714}.prose-sm :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.7142857em;margin-bottom:1.7142857em}.prose-sm :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.7142857em;margin-bottom:1.7142857em}.prose-sm :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose-sm :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.7142857em;margin-bottom:1.7142857em}.prose-sm :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;border-radius:.3125rem;padding:.1428571em .3571429em}.prose-sm :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em}.prose-sm :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.9em}.prose-sm :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8888889em}.prose-sm :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;line-height:1.6666667;margin-top:1.6666667em;margin-bottom:1.6666667em;border-radius:.25rem;padding:.6666667em 1em}.prose-sm :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em;padding-left:1.5714286em}.prose-sm :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em;padding-left:1.5714286em}.prose-sm :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.2857143em;margin-bottom:.2857143em}.prose-sm :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:.4285714em}.prose-sm :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:.4285714em}.prose-sm :where(.prose-sm>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5714286em;margin-bottom:.5714286em}.prose-sm :where(.prose-sm>ul>li>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose-sm>ul>li>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(.prose-sm>ol>li>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose-sm>ol>li>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5714286em;margin-bottom:.5714286em}.prose-sm :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em}.prose-sm :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.2857143em;padding-left:1.5714286em}.prose-sm :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2.8571429em;margin-bottom:2.8571429em}.prose-sm :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;line-height:1.5}.prose-sm :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){padding-right:1em;padding-bottom:.6666667em;padding-left:1em}.prose-sm :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:0}.prose-sm :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-right:0}.prose-sm :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding:.6666667em 1em}.prose-sm :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:0}.prose-sm :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-right:0}.prose-sm :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.7142857em;margin-bottom:1.7142857em}.prose-sm :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose-sm :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}.prose-sm :where(.prose-sm>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(.prose-sm>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.pointer-events-none{pointer-events:none}.visible{visibility:visible}.invisible{visibility:hidden}.collapse{visibility:collapse}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.-bottom-px{bottom:-1px}.-right-2{right:-.5rem}.bottom-0{bottom:0}.bottom-4{bottom:1rem}.left-0{left:0}.left-72{left:18rem}.right-0{right:0}.right-2{right:.5rem}.right-4{right:1rem}.top-0{top:0}.top-2{top:.5rem}.top-5{top:1.25rem}.top-7{top:1.75rem}.z-10{z-index:10}.z-20{z-index:20}.z-30{z-index:30}.z-50{z-index:50}.-m-3{margin:-.75rem}.-mx-2{margin-left:-.5rem;margin-right:-.5rem}.-mx-3{margin-left:-.75rem;margin-right:-.75rem}.-mx-4{margin-left:-1rem;margin-right:-1rem}.-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.-my-1{margin-top:-.25rem;margin-bottom:-.25rem}.-my-3{margin-top:-.75rem;margin-bottom:-.75rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.mx-4{margin-left:1rem;margin-right:1rem}.mx-6{margin-left:1.5rem;margin-right:1.5rem}.mx-auto{margin-left:auto;margin-right:auto}.my-12{margin-top:3rem;margin-bottom:3rem}.my-2{margin-top:.5rem;margin-bottom:.5rem}.my-3{margin-top:.75rem;margin-bottom:.75rem}.my-4{margin-top:1rem;margin-bottom:1rem}.my-8{margin-top:2rem;margin-bottom:2rem}.-mb-5{margin-bottom:-1.25rem}.-mb-6{margin-bottom:-1.5rem}.-mb-px{margin-bottom:-1px}.-mr-1{margin-right:-.25rem}.-mt-2{margin-top:-.5rem}.-mt-6{margin-top:-1.5rem}.mb-0{margin-bottom:0}.mb-1{margin-bottom:.25rem}.mb-10{margin-bottom:2.5rem}.mb-12{margin-bottom:3rem}.mb-2{margin-bottom:.5rem}.mb-2\.5{margin-bottom:.625rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.ml-1{margin-left:.25rem}.ml-2{margin-left:.5rem}.ml-3{margin-left:.75rem}.ml-4{margin-left:1rem}.ml-6{margin-left:1.5rem}.ml-72{margin-left:18rem}.ml-auto{margin-left:auto}.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.mr-4{margin-right:1rem}.mr-auto{margin-right:auto}.mt-0{margin-top:0}.mt-0\.5{margin-top:.125rem}.mt-1{margin-top:.25rem}.mt-12{margin-top:3rem}.mt-2{margin-top:.5rem}.mt-20{margin-top:5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.mt-auto{margin-top:auto}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.table{display:table}.grid{display:grid}.contents{display:contents}.hidden{display:none}.h-1{height:.25rem}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-16{height:4rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-9\.5{height:2.375rem}.h-full{height:100%}.max-h-screen{max-height:100vh}.min-h-32{min-height:8rem}.min-h-screen{min-height:100vh}.w-1{width:.25rem}.w-1\/2{width:50%}.w-1\/3{width:33.333333%}.w-1\/4{width:25%}.w-1\/5{width:20%}.w-10{width:2.5rem}.w-2\/3{width:66.666667%}.w-2\/4{width:50%}.w-2\/5{width:40%}.w-3\/4{width:75%}.w-3\/5{width:60%}.w-32{width:8rem}.w-4{width:1rem}.w-4\.5{width:1.125rem}.w-4\/12{width:33.333333%}.w-4\/5{width:80%}.w-40{width:10rem}.w-48{width:12rem}.w-52{width:13rem}.w-6{width:1.5rem}.w-7{width:1.75rem}.w-72{width:18rem}.w-8{width:2rem}.w-80{width:20rem}.w-9{width:2.25rem}.w-9\.5{width:2.375rem}.w-96{width:24rem}.w-full{width:100%}.w-px{width:1px}.w-screen{width:100vw}.w-sidebar{width:18rem}.min-w-0{min-width:0}.min-w-sidebar{min-width:18rem}.max-w-2xl{max-width:42rem}.max-w-3xl{max-width:48rem}.max-w-4xl{max-width:56rem}.max-w-lg{max-width:32rem}.max-w-none{max-width:none}.flex-none{flex:none}.flex-shrink-0,.shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.basis-1\/2{flex-basis:50%}.table-fixed{table-layout:fixed}.border-separate{border-collapse:initial}.-translate-x-1\/2{--tw-translate-x:-50%}.-translate-x-1\/2,.translate-y-full{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))}.translate-y-full{--tw-translate-y:100%}.rotate-180{--tw-rotate:180deg}.rotate-180,.transform{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))}.animate-spin{animation:spin 1s linear infinite}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.resize-none{resize:none}.resize{resize:both}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.gap-0{gap:0}.gap-0\.5{gap:.125rem}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-10{gap:2.5rem}.gap-11{gap:2.75rem}.gap-12{gap:3rem}.gap-128{gap:32rem}.gap-14{gap:3.5rem}.gap-16{gap:4rem}.gap-2{gap:.5rem}.gap-2\.5{gap:.625rem}.gap-20{gap:5rem}.gap-24{gap:6rem}.gap-28{gap:7rem}.gap-3{gap:.75rem}.gap-3\.5{gap:.875rem}.gap-32{gap:8rem}.gap-36{gap:9rem}.gap-4{gap:1rem}.gap-40{gap:10rem}.gap-44{gap:11rem}.gap-48{gap:12rem}.gap-5{gap:1.25rem}.gap-52{gap:13rem}.gap-56{gap:14rem}.gap-6{gap:1.5rem}.gap-60{gap:15rem}.gap-64{gap:16rem}.gap-68{gap:17rem}.gap-7{gap:1.75rem}.gap-72{gap:18rem}.gap-8{gap:2rem}.gap-80{gap:20rem}.gap-9{gap:2.25rem}.gap-96{gap:24rem}.gap-px{gap:1px}.gap-x-0{-moz-column-gap:0;column-gap:0}.gap-x-0\.5{-moz-column-gap:.125rem;column-gap:.125rem}.gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.gap-x-1\.5{-moz-column-gap:.375rem;column-gap:.375rem}.gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.gap-x-11{-moz-column-gap:2.75rem;column-gap:2.75rem}.gap-x-12{-moz-column-gap:3rem;column-gap:3rem}.gap-x-128{-moz-column-gap:32rem;column-gap:32rem}.gap-x-14{-moz-column-gap:3.5rem;column-gap:3.5rem}.gap-x-16{-moz-column-gap:4rem;column-gap:4rem}.gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.gap-x-2\.5{-moz-column-gap:.625rem;column-gap:.625rem}.gap-x-20{-moz-column-gap:5rem;column-gap:5rem}.gap-x-24{-moz-column-gap:6rem;column-gap:6rem}.gap-x-28{-moz-column-gap:7rem;column-gap:7rem}.gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.gap-x-3\.5{-moz-column-gap:.875rem;column-gap:.875rem}.gap-x-32{-moz-column-gap:8rem;column-gap:8rem}.gap-x-36{-moz-column-gap:9rem;column-gap:9rem}.gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.gap-x-40{-moz-column-gap:10rem;column-gap:10rem}.gap-x-44{-moz-column-gap:11rem;column-gap:11rem}.gap-x-48{-moz-column-gap:12rem;column-gap:12rem}.gap-x-5{-moz-column-gap:1.25rem;column-gap:1.25rem}.gap-x-52{-moz-column-gap:13rem;column-gap:13rem}.gap-x-56{-moz-column-gap:14rem;column-gap:14rem}.gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.gap-x-60{-moz-column-gap:15rem;column-gap:15rem}.gap-x-64{-moz-column-gap:16rem;column-gap:16rem}.gap-x-68{-moz-column-gap:17rem;column-gap:17rem}.gap-x-7{-moz-column-gap:1.75rem;column-gap:1.75rem}.gap-x-72{-moz-column-gap:18rem;column-gap:18rem}.gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.gap-x-80{-moz-column-gap:20rem;column-gap:20rem}.gap-x-9{-moz-column-gap:2.25rem;column-gap:2.25rem}.gap-x-96{-moz-column-gap:24rem;column-gap:24rem}.gap-x-px{-moz-column-gap:1px;column-gap:1px}.gap-y-0{row-gap:0}.gap-y-0\.5{row-gap:.125rem}.gap-y-1{row-gap:.25rem}.gap-y-1\.5{row-gap:.375rem}.gap-y-10{row-gap:2.5rem}.gap-y-11{row-gap:2.75rem}.gap-y-12{row-gap:3rem}.gap-y-128{row-gap:32rem}.gap-y-14{row-gap:3.5rem}.gap-y-16{row-gap:4rem}.gap-y-2{row-gap:.5rem}.gap-y-2\.5{row-gap:.625rem}.gap-y-20{row-gap:5rem}.gap-y-24{row-gap:6rem}.gap-y-28{row-gap:7rem}.gap-y-3{row-gap:.75rem}.gap-y-3\.5{row-gap:.875rem}.gap-y-32{row-gap:8rem}.gap-y-36{row-gap:9rem}.gap-y-4{row-gap:1rem}.gap-y-40{row-gap:10rem}.gap-y-44{row-gap:11rem}.gap-y-48{row-gap:12rem}.gap-y-5{row-gap:1.25rem}.gap-y-52{row-gap:13rem}.gap-y-56{row-gap:14rem}.gap-y-6{row-gap:1.5rem}.gap-y-60{row-gap:15rem}.gap-y-64{row-gap:16rem}.gap-y-68{row-gap:17rem}.gap-y-7{row-gap:1.75rem}.gap-y-72{row-gap:18rem}.gap-y-8{row-gap:2rem}.gap-y-80{row-gap:20rem}.gap-y-9{row-gap:2.25rem}.gap-y-96{row-gap:24rem}.gap-y-px{row-gap:1px}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem*var(--tw-space-y-reverse))}.self-end{align-self:flex-end}.self-center{align-self:center}.self-stretch{align-self:stretch}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.overflow-x-hidden{overflow-x:hidden}.truncate{overflow:hidden;white-space:nowrap}.text-ellipsis,.truncate{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.whitespace-pre-wrap{white-space:pre-wrap}.break-words{overflow-wrap:break-word}.rounded{border-radius:.25rem}.rounded-full{border-radius:9999px}.rounded-md{border-radius:.375rem}.rounded-sm{border-radius:.125rem}.rounded-b{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.rounded-b-md{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.rounded-t-md{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.rounded-t-none{border-top-left-radius:0;border-top-right-radius:0}.border{border-width:1px}.border-0{border-width:0}.border-b{border-bottom-width:1px}.border-l-4{border-left-width:4px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-t-0{border-top-width:0}.border-blue-200{--tw-border-opacity:1;border-color:rgb(191 219 254/var(--tw-border-opacity))}.border-gray-100{--tw-border-opacity:1;border-color:rgb(243 244 246/var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.border-primary-600{--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity))}.border-red-200{--tw-border-opacity:1;border-color:rgb(254 202 202/var(--tw-border-opacity))}.border-red-500{--tw-border-opacity:1;border-color:rgb(239 68 68/var(--tw-border-opacity))}.border-transparent{border-color:#0000}.bg-amber-100{--tw-bg-opacity:1;background-color:rgb(254 243 199/var(--tw-bg-opacity))}.bg-blue-100{--tw-bg-opacity:1;background-color:rgb(219 234 254/var(--tw-bg-opacity))}.bg-blue-50{--tw-bg-opacity:1;background-color:rgb(239 246 255/var(--tw-bg-opacity))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.bg-gray-200{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.bg-gray-300{--tw-bg-opacity:1;background-color:rgb(209 213 219/var(--tw-bg-opacity))}.bg-gray-50{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.bg-gray-500{--tw-bg-opacity:1;background-color:rgb(107 114 128/var(--tw-bg-opacity))}.bg-gray-700{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.bg-gray-900{--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.bg-green-100{--tw-bg-opacity:1;background-color:rgb(220 252 231/var(--tw-bg-opacity))}.bg-green-500{--tw-bg-opacity:1;background-color:rgb(34 197 94/var(--tw-bg-opacity))}.bg-orange-100{--tw-bg-opacity:1;background-color:rgb(255 237 213/var(--tw-bg-opacity))}.bg-primary-100{--tw-bg-opacity:1;background-color:rgb(var(--color-primary-100)/var(--tw-bg-opacity))}.bg-primary-500{--tw-bg-opacity:1;background-color:rgb(var(--color-primary-500)/var(--tw-bg-opacity))}.bg-primary-600{--tw-bg-opacity:1;background-color:rgb(var(--color-primary-600)/var(--tw-bg-opacity))}.bg-red-100{--tw-bg-opacity:1;background-color:rgb(254 226 226/var(--tw-bg-opacity))}.bg-red-50{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity))}.bg-red-500{--tw-bg-opacity:1;background-color:rgb(239 68 68/var(--tw-bg-opacity))}.bg-red-600{--tw-bg-opacity:1;background-color:rgb(220 38 38/var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-opacity-80{--tw-bg-opacity:0.8}.bg-none{background-image:none}.bg-cover{background-size:cover}.bg-center{background-position:50%}.bg-no-repeat{background-repeat:no-repeat}.p-1{padding:.25rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-12{padding-left:3rem;padding-right:3rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.pb-1{padding-bottom:.25rem}.pb-12{padding-bottom:3rem}.pb-16{padding-bottom:4rem}.pb-2{padding-bottom:.5rem}.pb-4{padding-bottom:1rem}.pl-2{padding-left:.5rem}.pl-3{padding-left:.75rem}.pl-4{padding-left:1rem}.pr-2{padding-right:.5rem}.pr-3{padding-right:.75rem}.pr-4{padding-right:1rem}.pr-8{padding-right:2rem}.pt-1{padding-top:.25rem}.pt-2{padding-top:.5rem}.pt-3{padding-top:.75rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.align-top{vertical-align:top}.align-middle{vertical-align:middle}.align-text-top{vertical-align:text-top}.font-sans{font-family:Inter,sans-serif}.text-2xl{font-size:1.5rem;line-height:2rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.text-xxs{font-size:11px;line-height:14px}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.capitalize{text-transform:capitalize}.italic{font-style:italic}.\!leading-7{line-height:1.75rem!important}.leading-none{line-height:1}.leading-normal{line-height:1.5}.leading-relaxed{line-height:1.625}.text-amber-600{--tw-text-opacity:1;color:rgb(217 119 6/var(--tw-text-opacity))}.text-blue-500{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.text-green-500{--tw-text-opacity:1;color:rgb(34 197 94/var(--tw-text-opacity))}.text-green-600{--tw-text-opacity:1;color:rgb(22 163 74/var(--tw-text-opacity))}.text-orange-500{--tw-text-opacity:1;color:rgb(249 115 22/var(--tw-text-opacity))}.text-primary-500{--tw-text-opacity:1;color:rgb(var(--color-primary-500)/var(--tw-text-opacity))}.text-primary-600{--tw-text-opacity:1;color:rgb(var(--color-primary-600)/var(--tw-text-opacity))}.text-red-500{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.text-red-600{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.underline{text-decoration-line:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.opacity-0{opacity:0}.shadow{--tw-shadow:0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.shadow,.shadow-lg{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow-sm{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.outline-gray-500\/20{outline-color:#6b728033}.outline-green-200{outline-color:#bbf7d0}.outline-red-200{outline-color:#fecaca}.blur{--tw-blur:blur(8px)}.blur,.filter{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)}.backdrop-blur-sm{--tw-backdrop-blur:blur(4px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-height{transition-property:height;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-width{transition-property:width;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-75{transition-duration:75ms}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.border-spacing-none{border-spacing:0}.material-symbols-outlined{font-family:Material Symbols Outlined;font-weight:400;font-style:normal;font-size:18px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale}.scrollable-top:after{position:absolute;left:0;right:0;top:-1rem;height:1rem;background-image:linear-gradient(to top,var(--tw-gradient-stops));--tw-gradient-from:#f3f4f6 var(--tw-gradient-from-position);--tw-gradient-to:#f3f4f600 var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}:is(:where(.dark) .scrollable-top):after{background-image:none}.scrollable-top:after{content:""}.\[a-zA-Z\:\\-\]{a-z-a--z:\-}html{--color-primary-50:#faf5ff;--color-primary-100:#f3e8ff;--color-primary-200:#e9d5ff;--color-primary-300:#d8b4fe;--color-primary-400:#c084fc;--color-primary-500:#a855f7;--color-primary-600:#9333ea;--color-primary-700:#7e22ce;--color-primary-800:#6b21a8;--color-primary-900:#581c87;--color-primary-950:#3b0764}.column-fill-auto{-moz-column-fill:auto;column-fill:auto}[x-cloak]{display:none!important}.asteriskField{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity))}.md-16{font-size:16px}.md-18{font-size:18px}select:not([class*=bg-none]):not([multiple]){background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%236B7280' d='M24 31.4 11.3 18.7l2.85-2.8L24 25.8l9.85-9.85 2.85 2.8Z'/%3E%3C/svg%3E");background-position:right .7rem center;background-repeat:no-repeat;background-size:1.125rem 1.125rem}select:after{content:"";display:block}table select{display:block;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.375rem;border-width:1px;background-repeat:no-repeat;padding:.5rem 1.25rem .5rem .75rem;font-weight:500;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity));--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="rgb(156, 163, 175)"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M7 10l5 5 5-5H7z"/></svg>');background-size:1.125rem 1.125rem;background-position:right .5rem center}table select:focus{--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity))}table tr.selected{--tw-bg-opacity:1;background-color:rgb(254 252 232/var(--tw-bg-opacity))}:is(:where(.dark) table tr.selected){background-color:#ffffff0f}.datetimeshortcuts{position:absolute;right:0;top:1px;display:flex;flex-direction:row-reverse;align-items:center;font-size:0;line-height:1}.datetimeshortcuts a{font-size:0;line-height:1;--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity));transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.datetimeshortcuts a:first-child:hover,.datetimeshortcuts a:hover{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .datetimeshortcuts a:first-child){--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}:is(:where(.dark) .datetimeshortcuts a:first-child:hover){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.datetimeshortcuts a:first-child:after{display:flex;height:2.25rem;width:2.25rem;align-items:center;justify-content:center;border-left-width:1px;padding-top:.5rem;padding-bottom:.5rem;text-align:center;font-size:1rem;line-height:1.5rem;font-family:Material Symbols Outlined;font-weight:400;font-style:normal;font-size:18px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale}.datetimeshortcuts a:first-child:hover:after{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .datetimeshortcuts a:first-child):after{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}:is(:where(.dark) .datetimeshortcuts a:first-child:hover):after{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.datetimeshortcuts a:first-child:after{content:"timer";display:flex}.date-icon{display:block;height:2.25rem;width:2.25rem;--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity));transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.date-icon:hover{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .date-icon){--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}:is(:where(.dark) .date-icon:hover){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.date-icon:after{height:2.25rem;width:2.25rem;align-items:center;justify-content:center;border-left-width:1px;padding-top:.5rem;padding-bottom:.5rem;text-align:center;font-size:1rem;line-height:1.5rem;font-family:Material Symbols Outlined;font-weight:400;font-style:normal;font-size:18px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale}.date-icon:hover:after{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .date-icon):after{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.date-icon:after{content:"edit";display:flex}:is(:where(.dark) .date-icon:hover):after{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.clock-icon{margin-left:.5rem;display:block;height:2.25rem;width:2.25rem}.clock-icon:hover{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .clock-icon){--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}:is(:where(.dark) .clock-icon:hover){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.clock-icon:after{height:2.25rem;width:2.25rem;align-items:center;justify-content:center;border-left-width:1px;padding-top:.5rem;padding-bottom:.5rem;text-align:center;font-size:1rem;line-height:1.5rem;font-family:Material Symbols Outlined;font-weight:400;font-style:normal;font-size:18px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale}.clock-icon:hover:after{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .clock-icon):after{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}:is(:where(.dark) .clock-icon:hover):after{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.clock-icon:after{content:"edit";display:flex}.timezonewarning{margin-top:.5rem;width:100%;font-size:.75rem;line-height:1rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.selector{display:flex;max-width:42rem;flex-grow:1;flex-direction:column;align-items:center}@media (min-width:768px){.selector{flex-direction:row}}.selector select{width:100%;flex-grow:1;background-image:none}:is(:where(.dark) .selector select){--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.selector option{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-left:.75rem;padding-right:.75rem;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}:is(:where(.dark) .selector option){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.selector .list-footer-display{border-top-width:1px;padding-top:.5rem;padding-bottom:.5rem;text-align:center;font-size:.875rem;line-height:1.25rem}:is(:where(.dark) .selector .list-footer-display){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.selector-available,.selector-chosen{display:flex;flex-grow:1;flex-direction:column;align-self:stretch;border-radius:.375rem;border-width:1px;--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}@media (min-width:768px){.selector-available,.selector-chosen{width:18rem}}@media (min-width:1024px){.selector-available,.selector-chosen{width:24rem}}:is(:where(.dark) .selector-available),:is(:where(.dark) .selector-chosen){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.selector-available h2,.selector-chosen h2{margin-bottom:.75rem;border-bottom-width:1px;padding:.5rem .75rem;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}:is(:where(.dark) .selector-available h2),:is(:where(.dark) .selector-chosen h2){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.selector-filter{display:flex}.selector-filter input{margin-left:.75rem;margin-right:.75rem;margin-bottom:.75rem;display:block;flex-grow:1;border-radius:.375rem;--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity));padding:.5rem .75rem;font-size:.875rem;line-height:1.25rem;font-weight:500;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.selector-filter input:focus{outline:2px solid #0000;outline-offset:2px}:is(:where(.dark) .selector-filter input){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.selector-chooseall,.selector-clearall{display:block;border-top-width:1px;padding-top:.5rem;padding-bottom:.5rem;text-align:center;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(var(--color-primary-500)/var(--tw-text-opacity));text-decoration-line:underline}:is(:where(.dark) .selector-chooseall),:is(:where(.dark) .selector-clearall){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.selector-clearall{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity))}:is(:where(.dark) .selector-clearall){--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.selector-chooser{margin-top:1rem;margin-bottom:1rem;display:flex;width:3.5rem;flex-direction:column;font-size:0;line-height:1}.selector-chooser li{padding-top:.25rem;padding-bottom:.25rem;text-align:center}.selector-add:after,.selector-remove:after{width:1.25rem;--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity));font-family:Material Symbols Outlined;font-weight:400;font-style:normal;font-size:18px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale}.selector-add:after{content:"arrow_forward"}.selector-remove:after{content:"arrow_back"}.related-widget-wrapper-link{order:9999}.empty-form{display:none}.add-row{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));padding:1.25rem .75rem;text-align:left;text-align:right;vertical-align:middle;font-size:.875rem;line-height:1.25rem;font-weight:400}:is(:where(.dark) .add-row){--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}[data-inline-type=stacked] .add-row{overflow:hidden;border-top-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}:is(:where(.dark) [data-inline-type=stacked] .add-row){--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}.add-row td{padding:1rem .75rem}.add-row a{display:block;border-radius:.375rem;border-width:1px;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));padding:.5rem .75rem;text-align:center;font-size:.875rem;line-height:1.25rem;font-weight:500;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity));transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}@media (min-width:1024px){.add-row a{float:right}}:is(:where(.dark) .add-row a){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}:is(:where(.dark) .add-row a:hover){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}h3 .delete label{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.inline-deletelink{display:block;font-size:.875rem;line-height:1.25rem;line-height:1;--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity));text-decoration-line:underline}:is(:where(.dark) .inline-deletelink){--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}td .inline-deletelink{display:block}@media (min-width:1024px){td .inline-deletelink{margin-top:.625rem}}h3 span:nth-child(3){margin-left:auto}.select2.select2-container{position:relative;width:100%!important;max-width:42rem;border-radius:.375rem;border-width:1px;--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}:is(:where(.dark) .select2.select2-container){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.errors .select2.select2-container{--tw-border-opacity:1;border-color:rgb(220 38 38/var(--tw-border-opacity))}.select2-container.select2-container--admin-autocomplete .select2-selection--single{height:auto}.select2-container.select2-container--admin-autocomplete .select2-selection--single .select2-selection__rendered{height:2.25rem;padding:.5rem .75rem;font-size:.875rem;line-height:1.25rem;font-weight:500;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}:is(:where(.dark) .select2-container.select2-container--admin-autocomplete .select2-selection--single .select2-selection__rendered){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.select2-container.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__clear,.select2-container.select2-container--admin-autocomplete .select2-selection--single .select2-selection__clear{margin-right:1.25rem;margin-top:-.5rem;display:flex;height:2.25rem;align-items:center;font-size:0;line-height:1}.select2-container.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__clear:after,.select2-container.select2-container--admin-autocomplete .select2-selection--single .select2-selection__clear:after{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity));font-family:Material Symbols Outlined;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale;content:"close";font-size:14px}.select2-container.select2-container--admin-autocomplete .select2-selection--single .select2-selection__arrow{margin-right:.5rem;margin-top:-1px;display:flex;height:2.25rem;align-items:center}.select2-container.select2-container--admin-autocomplete .select2-selection--single .select2-selection__arrow:after{left:0;margin:0;font-size:1.125rem;line-height:1.75rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity));font-family:Material Symbols Outlined;font-weight:400;font-style:normal;font-size:18px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale;content:"expand_more"}.select2-container.select2-container--admin-autocomplete .select2-selection--single .select2-selection__arrow b{display:none}.select2-container.select2-container--admin-autocomplete .select2-search--dropdown{display:flex;padding:.5rem .75rem}.select2-container.select2-container--admin-autocomplete .select2-search--dropdown .select2-search__field{margin-left:0;margin-right:0;width:auto;flex-grow:1;border-radius:.375rem;border-width:1px;border-style:solid;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));padding:.5rem .75rem;font-size:.875rem;line-height:1.25rem;font-weight:500;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity));--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);outline:2px solid #0000;outline-offset:2px}:is(:where(.dark) .select2-container.select2-container--admin-autocomplete .select2-search--dropdown .select2-search__field){--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.select2-container.select2-container--admin-autocomplete.select2-container--open.select2-container--above{border-top-left-radius:0;border-top-right-radius:0}.select2-container.select2-container--admin-autocomplete.select2-container--open.select2-container--below{border-bottom-right-radius:0;border-bottom-left-radius:0}.select2-container.select2-container--open .select2-dropdown{--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity));padding-bottom:.5rem;--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-opacity:1;--tw-ring-color:rgb(var(--color-primary-300)/var(--tw-ring-opacity))}.select2-container.select2-container--open .select2-dropdown:after{position:absolute;left:-1px;right:-1px;top:0;margin-top:-.25rem;display:block;height:.25rem;border-left-width:1px;border-right-width:1px;border-left-color:rgb(var(--color-primary-600)/var(--tw-border-opacity));--tw-border-opacity:1;border-right-color:rgb(var(--color-primary-600)/var(--tw-border-opacity));content:var(--tw-content);--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}:is(:where(.dark) .select2-container.select2-container--open .select2-dropdown){--tw-border-opacity:1;border-color:rgb(var(--color-primary-700)/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity));--tw-ring-color:rgb(var(--color-primary-700)/var(--tw-ring-opacity));--tw-ring-opacity:0.5}:is(:where(.dark) .select2-container.select2-container--open .select2-dropdown):after{border-left-color:rgb(var(--color-primary-700)/var(--tw-border-opacity));--tw-border-opacity:1;border-right-color:rgb(var(--color-primary-700)/var(--tw-border-opacity));content:var(--tw-content);--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.select2-container.select2-container--open .select2-dropdown--below{border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.select2-container.select2-container--open .select2-dropdown--above{border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-left-radius:.375rem;border-top-right-radius:.375rem}.select2-container.select2-container--open .select2-dropdown--above:after{bottom:0;top:auto;margin-bottom:-.25rem;content:var(--tw-content);margin-top:0}.select2-container.select2-container--admin-autocomplete .select2-results__option{display:block;padding:.5rem .75rem;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity));transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}:is(:where(.dark) .select2-container.select2-container--admin-autocomplete .select2-results__option){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.select2-container.select2-container--admin-autocomplete .select2-results__option--highlighted[aria-selected]{--tw-text-opacity:1;color:rgb(var(--color-primary-500)/var(--tw-text-opacity))}.select2-container.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__clear{top:0;margin:0 .5rem 0 0}.select2-container.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__rendered{padding:.25rem 1.5rem 0 .25rem}.select2-container--admin-autocomplete .select2-selection--multiple li.select2-selection__choice{margin:0 .25rem .25rem 0;display:block;height:1.75rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity));padding-left:.5rem;padding-right:.5rem;font-size:.875rem;font-weight:500;line-height:1.75rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity));--tw-shadow:inset 0 2px 4px 0 #0000000d;--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}:is(:where(.dark) .select2-container--admin-autocomplete .select2-selection--multiple li.select2-selection__choice){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}:is(:where(.dark) .select2-container--admin-autocomplete .select2-selection--multiple li.select2-selection__choice:hover){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.select2-container--admin-autocomplete .select2-selection--multiple li.select2-selection__choice .select2-selection__choice__remove{vertical-align:top;font-size:0;line-height:1}.select2-container--admin-autocomplete .select2-selection--multiple li.select2-selection__choice .select2-selection__choice__remove:hover{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}:is(:where(.dark) .select2-container--admin-autocomplete .select2-selection--multiple li.select2-selection__choice .select2-selection__choice__remove:hover){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.select2-container--admin-autocomplete .select2-selection--multiple li.select2-selection__choice .select2-selection__choice__remove:after{height:1.75rem;line-height:1.75rem!important;font-family:Material Symbols Outlined;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale;content:"close";font-size:14px}.select2-container--admin-autocomplete .select2-selection--multiple li.select2-search--inline .select2-search__field{margin:0;height:1.75rem;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.select2.select2-container--open{position:relative;border-bottom-width:0;--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity));--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-opacity:1;--tw-ring-color:rgb(var(--color-primary-300)/var(--tw-ring-opacity))}:is(:where(.dark) .select2.select2-container--open){--tw-border-opacity:1;border-color:rgb(var(--color-primary-700)/var(--tw-border-opacity));--tw-ring-color:rgb(var(--color-primary-700)/var(--tw-ring-opacity));--tw-ring-opacity:0.5}fieldset.collapsed>div{display:none}fieldset.collapse{visibility:visible}fieldset.collapsed,fieldset.collapsed h2{display:block}fieldset.collapsed .collapse-toggle{display:inline}.calendarbox,.clockbox{position:fixed!important;left:50%!important;top:50%!important;z-index:50;width:20rem;--tw-translate-x:-50%;--tw-translate-y:-50%;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));border-radius:.375rem;border-width:1px;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity));--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}:is(:where(.dark) .calendarbox),:is(:where(.dark) .clockbox){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.calendar caption{margin-bottom:.75rem;padding-top:.75rem;padding-bottom:.75rem;font-weight:500;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .calendar caption){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.calendar table{margin-bottom:.75rem;width:100%}.calendar table th{text-align:center;font-size:.75rem;line-height:1rem;font-weight:500;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .calendar table th){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.calendar table td{height:2.5rem;width:2.5rem;padding:.25rem;text-align:center}.calendar table td a{display:block;display:flex;height:2rem;width:2rem;align-items:center;justify-content:center;border-radius:9999px;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}:is(:where(.dark) .calendar table td a){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.calendar table td a:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.calendar table td.today a{--tw-bg-opacity:1;background-color:rgb(var(--color-primary-600)/var(--tw-bg-opacity));font-weight:500;--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.calendar-shortcuts{margin-bottom:.75rem;display:flex;flex-direction:row;justify-content:center;border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem;padding-left:.25rem;padding-right:.25rem;font-size:0;line-height:1}.calendar-shortcuts a{margin-left:.25rem;margin-right:.25rem;width:33.333333%;border-radius:.375rem;border-width:1px;padding:.5rem;text-align:center;font-size:.75rem;line-height:1rem;font-weight:500;line-height:1;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity));--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}:is(:where(.dark) .calendar-shortcuts a){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}:is(:where(.dark) .calendar-shortcuts a:hover){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity));--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.calendar-cancel{display:block;border-top-width:1px;padding-top:.5rem;padding-bottom:.5rem;text-align:center;font-size:.75rem;line-height:1rem;--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity));text-decoration-line:underline}:is(:where(.dark) .calendar-cancel){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.calendarnav-previous{position:absolute;left:0;top:0;margin-left:.5rem;margin-top:.5rem;display:block;font-size:0;line-height:1}.calendarnav-next:after,.calendarnav-previous:after{display:flex;height:1.75rem;width:1.75rem;align-items:center;justify-content:center;border-radius:9999px;border-width:1px;--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity));transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s;font-family:Material Symbols Outlined;font-weight:400;font-style:normal;font-size:18px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale}.calendarnav-next:hover:after,.calendarnav-previous:hover:after{--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity));--tw-text-opacity:1;color:rgb(var(--color-primary-500)/var(--tw-text-opacity))}:is(:where(.dark) .calendarnav-next):after,:is(:where(.dark) .calendarnav-previous):after{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}:is(:where(.dark) .calendarnav-next:hover):after,:is(:where(.dark) .calendarnav-previous:hover):after{border-color:rgb(31 41 55/var(--tw-border-opacity))}.calendarnav-next:after,.calendarnav-previous:after{content:"navigate_before";display:flex}:is(:where(.dark) .calendarnav-next:hover):after,:is(:where(.dark) .calendarnav-previous:hover):after{--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity));--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.calendarnav-next{position:absolute;right:0;top:0;margin-right:.5rem;margin-top:.5rem;display:block;font-size:0;line-height:1}.calendarnav-next:after{content:"navigate_next";display:flex}.clockbox{z-index:50;border-radius:.375rem;border-width:1px;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));font-size:.875rem;line-height:1.25rem;--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}:is(:where(.dark) .clockbox){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.clockbox h2{padding:.5rem .75rem;font-weight:500;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .clockbox h2){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.clockbox .timelist{padding-left:.75rem;padding-right:.75rem;padding-bottom:.5rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}:is(:where(.dark) .clockbox .timelist){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.clockbox .timelist li{display:block;padding-bottom:.25rem;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.clockbox .timelist li:hover{--tw-text-opacity:1;color:rgb(var(--color-primary-500)/var(--tw-text-opacity))}.htmx-swapping:before{bottom:0;left:0;right:0;top:0;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));opacity:.8;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s;content:""}.htmx-swapping:after,.htmx-swapping:before{position:absolute}.htmx-swapping:after{inset:50%;height:1rem;width:1rem}@keyframes spin{to{transform:rotate(1turn)}}.htmx-swapping:after{animation:spin 1s linear infinite;--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity));font-family:Material Symbols Outlined;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale;font-size:16px;content:"sync"}#changelist-filter .admin-numeric-filter-slider .noUi-handle{right:-1rem;height:1rem;width:1rem;cursor:pointer;border-radius:9999px;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}:is(:where(.dark) #changelist-filter .admin-numeric-filter-slider .noUi-handle){--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}#changelist-filter .admin-numeric-filter-slider .noUi-handle-upper{right:0}#changelist-filter .admin-numeric-filter-slider .noUi-handle:after,#changelist-filter .admin-numeric-filter-slider .noUi-handle:before{content:none}#changelist-filter .admin-numeric-filter-slider.noUi-target{height:.25rem;border-width:0;--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}:is(:where(.dark) #changelist-filter .admin-numeric-filter-slider.noUi-target){--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}#changelist-filter .admin-numeric-filter-slider .noUi-connect{height:.25rem;border-width:0;--tw-bg-opacity:1;background-color:rgb(var(--color-primary-600)/var(--tw-bg-opacity))}#changelist-filter .admin-numeric-filter-slider-tooltips{margin-bottom:1.25rem;display:flex;flex-direction:row}#changelist-filter .admin-numeric-filter-slider-tooltips>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(1rem*var(--tw-space-x-reverse));margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)))}#changelist-filter .admin-numeric-filter-slider-tooltips{font-size:.875rem;line-height:1.25rem;font-weight:500;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}trix-toolbar[id^=trix-toolbar-]{position:sticky;top:0}:is(:where(.dark) trix-toolbar[id^=trix-toolbar-]){--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.trix-active{--tw-text-opacity:1;color:rgb(var(--color-primary-600)/var(--tw-text-opacity))}.ui-tabs{display:flex;flex-direction:column}.ui-tabs.ui-widget .ui-tabs-nav{margin:0 auto 1rem 0;display:flex;gap:.5rem;border-radius:.25rem;border-width:0;--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity));padding:.25rem;font-size:.875rem;line-height:1.25rem}.ui-tabs.ui-widget .ui-tabs-nav:after{content:var(--tw-content);display:none}:is(:where(.dark) .ui-tabs.ui-widget .ui-tabs-nav){background-color:#ffffff0a}.ui-tabs.ui-widget .ui-tabs-nav li{top:0;border-width:0}.ui-tabs.ui-widget .ui-tabs-nav li a{margin:0;display:flex;flex-direction:row;align-items:center;border-radius:.25rem;border-width:0;background-color:initial;padding:.25rem .625rem;font-size:.875rem;line-height:1.25rem;font-weight:500;--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.ui-tabs.ui-widget .ui-tabs-nav li a:hover{background-color:#3741510a;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .ui-tabs.ui-widget .ui-tabs-nav li a:hover){background-color:#ffffff0a;--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ui-tabs.ui-widget .ui-tabs-nav li.ui-tabs-active a{display:flex;flex-direction:row;align-items:center;border-radius:.25rem;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));padding:.25rem .625rem;font-weight:500;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity));--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ui-tabs.ui-widget .ui-tabs-nav li.ui-tabs-active a:hover{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}:is(:where(.dark) .ui-tabs.ui-widget .ui-tabs-nav li.ui-tabs-active a){--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(:where(.dark) .ui-tabs.ui-widget .ui-tabs-nav li.ui-tabs-active a:hover){--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.before\:mr-auto:before{content:var(--tw-content);margin-right:auto}.before\:block:before{content:var(--tw-content);display:block}.before\:flex:before{content:var(--tw-content);display:flex}.before\:w-72:before{content:var(--tw-content);width:18rem}.before\:items-center:before{content:var(--tw-content);align-items:center}.before\:capitalize:before{content:var(--tw-content);text-transform:capitalize}.before\:text-gray-500:before{content:var(--tw-content);--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.before\:content-\[attr\(data-label\)\]:before{--tw-content:attr(data-label);content:var(--tw-content)}.after\:absolute:after{content:var(--tw-content);position:absolute}.after\:left-1:after{content:var(--tw-content);left:.25rem}.after\:left-1\/2:after{content:var(--tw-content);left:50%}.after\:top-1:after{content:var(--tw-content);top:.25rem}.after\:top-1\/2:after{content:var(--tw-content);top:50%}.after\:-ml-px:after{content:var(--tw-content);margin-left:-1px}.after\:-mt-px:after{content:var(--tw-content);margin-top:-1px}.after\:\!flex:after{content:var(--tw-content);display:flex!important}.after\:flex:after{content:var(--tw-content);display:flex}.after\:h-2:after{content:var(--tw-content);height:.5rem}.after\:h-3:after{content:var(--tw-content);height:.75rem}.after\:h-4:after{content:var(--tw-content);height:1rem}.after\:w-2:after{content:var(--tw-content);width:.5rem}.after\:w-3:after{content:var(--tw-content);width:.75rem}.after\:w-4:after{content:var(--tw-content);width:1rem}.after\:-translate-x-1\/2:after{--tw-translate-x:-50%}.after\:-translate-x-1\/2:after,.after\:-translate-y-1\/2:after{content:var(--tw-content);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))}.after\:-translate-y-1\/2:after{--tw-translate-y:-50%}.after\:items-center:after{content:var(--tw-content);align-items:center}.after\:justify-center:after{content:var(--tw-content);justify-content:center}.after\:rounded-full:after{content:var(--tw-content);border-radius:9999px}.after\:bg-red-300:after{content:var(--tw-content);--tw-bg-opacity:1;background-color:rgb(252 165 165/var(--tw-bg-opacity))}.after\:bg-white:after{content:var(--tw-content);--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.after\:\!text-sm:after{content:var(--tw-content);font-size:.875rem!important;line-height:1.25rem!important}.after\:text-sm:after{content:var(--tw-content);font-size:.875rem;line-height:1.25rem}.after\:leading-none:after{content:var(--tw-content);line-height:1}.after\:text-white:after{content:var(--tw-content);--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.after\:shadow-sm:after{content:var(--tw-content);--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.after\:transition-all:after{content:var(--tw-content);transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.after\:content-\[\'\'\]:after{--tw-content:"";content:var(--tw-content)}.after\:content-\[\'done\'\]:after{--tw-content:"done";content:var(--tw-content)}.after\:material-symbols-outlined:after{content:var(--tw-content);font-family:Material Symbols Outlined;font-weight:400;font-style:normal;font-size:18px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-moz-font-feature-settings:"liga";-moz-osx-font-smoothing:grayscale}.first\:mt-0:first-child{margin-top:0}.first\:border-t-0:first-child{border-top-width:0}.last\:mb-0:last-child{margin-bottom:0}.last\:mb-4:last-child{margin-bottom:1rem}.last\:mb-8:last-child{margin-bottom:2rem}.last\:border-0:last-child{border-width:0}.last\:border-b-0:last-child{border-bottom-width:0}.checked\:border-primary-600:checked{--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity))}.checked\:bg-primary-600:checked{--tw-bg-opacity:1;background-color:rgb(var(--color-primary-600)/var(--tw-bg-opacity))}.checked\:transition-all:checked{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.checked\:after\:left-4:checked:after{content:var(--tw-content);left:1rem}.checked\:after\:bg-white:checked:after{content:var(--tw-content);--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.focus-within\:border-primary-600:focus-within{--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity))}.focus-within\:ring:focus-within{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus-within\:ring-primary-300:focus-within{--tw-ring-opacity:1;--tw-ring-color:rgb(var(--color-primary-300)/var(--tw-ring-opacity))}.hover\:border-gray-400:hover{--tw-border-opacity:1;border-color:rgb(156 163 175/var(--tw-border-opacity))}.hover\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.hover\:bg-gray-50:hover{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.hover\:bg-gray-700\/\[\.04\]:hover{background-color:#3741510a}.hover\:bg-red-100:hover{--tw-bg-opacity:1;background-color:rgb(254 226 226/var(--tw-bg-opacity))}.hover\:bg-white:hover{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.hover\:\!text-primary-600:hover{--tw-text-opacity:1!important;color:rgb(var(--color-primary-600)/var(--tw-text-opacity))!important}.hover\:text-gray-700:hover{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.hover\:text-primary-600:hover{--tw-text-opacity:1;color:rgb(var(--color-primary-600)/var(--tw-text-opacity))}.hover\:text-red-700:hover{--tw-text-opacity:1;color:rgb(185 28 28/var(--tw-text-opacity))}.checked\:hover\:border-primary-600:hover:checked,.focus\:border-primary-600:focus{--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity))}.focus\:outline-none:focus{outline:2px solid #0000;outline-offset:2px}.focus\:outline:focus{outline-style:solid}.focus\:outline-1:focus{outline-width:1px}.focus\:outline-offset-2:focus{outline-offset:2px}.focus\:outline-primary-500:focus{outline-color:rgb(var(--color-primary-500)/1)}.focus\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-primary-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(var(--color-primary-300)/var(--tw-ring-opacity))}.group:hover .group-hover\:-right-1{right:-.25rem}.group:hover .group-hover\:bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.group:hover .group-hover\:text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.group:hover .group-hover\:text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.group.inline-stacked .group-\[\.inline-stacked\]\:mx-3,.group.inline-tabular .group-\[\.inline-tabular\]\:mx-3{margin-left:.75rem;margin-right:.75rem}.group.inline-stacked .group-\[\.inline-stacked\]\:mb-3{margin-bottom:.75rem}.group.inline-stacked .group-\[\.inline-stacked\]\:mt-3{margin-top:.75rem}.group.inline-tabular .group-\[\.inline-tabular\]\:mb-0{margin-bottom:0}.group.inline-tabular .group-\[\.inline-tabular\]\:mt-3{margin-top:.75rem}.group.errors .group-\[\.errors\]\:border-red-600{--tw-border-opacity:1;border-color:rgb(220 38 38/var(--tw-border-opacity))}.group.errors .group-\[\.errors\]\:border-x-red-600{--tw-border-opacity:1;border-left-color:rgb(220 38 38/var(--tw-border-opacity));border-right-color:rgb(220 38 38/var(--tw-border-opacity))}.group.errors .group-\[\.errors\]\:border-t-red-600{--tw-border-opacity:1;border-top-color:rgb(220 38 38/var(--tw-border-opacity))}.group.errors .group-\[\.errors\]\:focus\:ring-red-200:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(254 202 202/var(--tw-ring-opacity))}.peer:checked~.peer-checked\:block{display:block}.prose-headings\:font-medium :is(:where(h1,h2,h3,h4,h5,h6,th):not(:where([class~=not-prose],[class~=not-prose] *))){font-weight:500}.prose-headings\:text-gray-700 :is(:where(h1,h2,h3,h4,h5,h6,th):not(:where([class~=not-prose],[class~=not-prose] *))){--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.prose-a\:text-primary-600 :is(:where(a):not(:where([class~=not-prose],[class~=not-prose] *))){--tw-text-opacity:1;color:rgb(var(--color-primary-600)/var(--tw-text-opacity))}.prose-a\:underline :is(:where(a):not(:where([class~=not-prose],[class~=not-prose] *))){text-decoration-line:underline}.prose-blockquote\:border-l-4 :is(:where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *))){border-left-width:4px}.prose-blockquote\:not-italic :is(:where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *))){font-style:normal}.prose-strong\:text-gray-700 :is(:where(strong):not(:where([class~=not-prose],[class~=not-prose] *))){--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.prose-pre\:rounded :is(:where(pre):not(:where([class~=not-prose],[class~=not-prose] *))){border-radius:.25rem}.prose-pre\:bg-gray-50 :is(:where(pre):not(:where([class~=not-prose],[class~=not-prose] *))){--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.prose-ol\:list-decimal :is(:where(ol):not(:where([class~=not-prose],[class~=not-prose] *))){list-style-type:decimal}.prose-ul\:list-disc :is(:where(ul):not(:where([class~=not-prose],[class~=not-prose] *))){list-style-type:disc}@media not all and (min-width:1280px){.max-xl\:fixed{position:fixed}}@media not all and (min-width:768px){.max-md\:w-full{width:100%}}@media (min-width:640px){.sm\:w-96{width:24rem}}@media (min-width:768px){.md\:mb-2{margin-bottom:.5rem}.md\:ml-auto{margin-left:auto}.md\:mr-8{margin-right:2rem}.md\:mt-0{margin-top:0}.md\:block{display:block}.md\:w-48{width:12rem}.md\:flex-row{flex-direction:row}.md\:items-center{align-items:center}.md\:justify-end{justify-content:flex-end}.md\:border-0{border-width:0}.md\:border-b{border-bottom-width:1px}.md\:border-b-0{border-bottom-width:0}.md\:border-l-0{border-left-width:0}.md\:border-r{border-right-width:1px}.md\:border-r-0{border-right-width:0}.md\:border-t-0{border-top-width:0}.md\:border-primary-500{--tw-border-opacity:1;border-color:rgb(var(--color-primary-500)/var(--tw-border-opacity))}.md\:px-0{padding-left:0;padding-right:0}.md\:py-4{padding-top:1rem;padding-bottom:1rem}}@media (min-width:1024px){.lg\:-mx-4{margin-left:-1rem;margin-right:-1rem}.lg\:mb-0{margin-bottom:0}.lg\:mb-12{margin-bottom:3rem}.lg\:ml-auto{margin-left:auto}.lg\:mr-2{margin-right:.5rem}.lg\:mr-3{margin-right:.75rem}.lg\:mt-3{margin-top:.75rem}.lg\:mt-8{margin-top:2rem}.lg\:block{display:block}.lg\:table-cell{display:table-cell}.lg\:table-header-group{display:table-header-group}.lg\:table-row{display:table-row}.lg\:w-1\/2{width:50%}.lg\:w-1\/3{width:33.333333%}.lg\:w-1\/4{width:25%}.lg\:w-1\/5{width:20%}.lg\:w-2\/3{width:66.666667%}.lg\:w-2\/4{width:50%}.lg\:w-2\/5{width:40%}.lg\:w-3\/4{width:75%}.lg\:w-3\/5{width:60%}.lg\:w-4\/5{width:80%}.lg\:w-60{width:15rem}.lg\:w-72{width:18rem}.lg\:w-auto{width:auto}.lg\:w-px{width:1px}.lg\:max-w-xs{max-width:20rem}.lg\:flex-row{flex-direction:row}.lg\:flex-row-reverse{flex-direction:row-reverse}.lg\:gap-0{gap:0}.lg\:gap-0\.5{gap:.125rem}.lg\:gap-1{gap:.25rem}.lg\:gap-1\.5{gap:.375rem}.lg\:gap-10{gap:2.5rem}.lg\:gap-11{gap:2.75rem}.lg\:gap-12{gap:3rem}.lg\:gap-128{gap:32rem}.lg\:gap-14{gap:3.5rem}.lg\:gap-16{gap:4rem}.lg\:gap-2{gap:.5rem}.lg\:gap-2\.5{gap:.625rem}.lg\:gap-20{gap:5rem}.lg\:gap-24{gap:6rem}.lg\:gap-28{gap:7rem}.lg\:gap-3{gap:.75rem}.lg\:gap-3\.5{gap:.875rem}.lg\:gap-32{gap:8rem}.lg\:gap-36{gap:9rem}.lg\:gap-4{gap:1rem}.lg\:gap-40{gap:10rem}.lg\:gap-44{gap:11rem}.lg\:gap-48{gap:12rem}.lg\:gap-5{gap:1.25rem}.lg\:gap-52{gap:13rem}.lg\:gap-56{gap:14rem}.lg\:gap-6{gap:1.5rem}.lg\:gap-60{gap:15rem}.lg\:gap-64{gap:16rem}.lg\:gap-68{gap:17rem}.lg\:gap-7{gap:1.75rem}.lg\:gap-72{gap:18rem}.lg\:gap-8{gap:2rem}.lg\:gap-80{gap:20rem}.lg\:gap-9{gap:2.25rem}.lg\:gap-96{gap:24rem}.lg\:gap-px{gap:1px}.lg\:gap-x-0{-moz-column-gap:0;column-gap:0}.lg\:gap-x-0\.5{-moz-column-gap:.125rem;column-gap:.125rem}.lg\:gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.lg\:gap-x-1\.5{-moz-column-gap:.375rem;column-gap:.375rem}.lg\:gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.lg\:gap-x-11{-moz-column-gap:2.75rem;column-gap:2.75rem}.lg\:gap-x-12{-moz-column-gap:3rem;column-gap:3rem}.lg\:gap-x-128{-moz-column-gap:32rem;column-gap:32rem}.lg\:gap-x-14{-moz-column-gap:3.5rem;column-gap:3.5rem}.lg\:gap-x-16{-moz-column-gap:4rem;column-gap:4rem}.lg\:gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.lg\:gap-x-2\.5{-moz-column-gap:.625rem;column-gap:.625rem}.lg\:gap-x-20{-moz-column-gap:5rem;column-gap:5rem}.lg\:gap-x-24{-moz-column-gap:6rem;column-gap:6rem}.lg\:gap-x-28{-moz-column-gap:7rem;column-gap:7rem}.lg\:gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.lg\:gap-x-3\.5{-moz-column-gap:.875rem;column-gap:.875rem}.lg\:gap-x-32{-moz-column-gap:8rem;column-gap:8rem}.lg\:gap-x-36{-moz-column-gap:9rem;column-gap:9rem}.lg\:gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.lg\:gap-x-40{-moz-column-gap:10rem;column-gap:10rem}.lg\:gap-x-44{-moz-column-gap:11rem;column-gap:11rem}.lg\:gap-x-48{-moz-column-gap:12rem;column-gap:12rem}.lg\:gap-x-5{-moz-column-gap:1.25rem;column-gap:1.25rem}.lg\:gap-x-52{-moz-column-gap:13rem;column-gap:13rem}.lg\:gap-x-56{-moz-column-gap:14rem;column-gap:14rem}.lg\:gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.lg\:gap-x-60{-moz-column-gap:15rem;column-gap:15rem}.lg\:gap-x-64{-moz-column-gap:16rem;column-gap:16rem}.lg\:gap-x-68{-moz-column-gap:17rem;column-gap:17rem}.lg\:gap-x-7{-moz-column-gap:1.75rem;column-gap:1.75rem}.lg\:gap-x-72{-moz-column-gap:18rem;column-gap:18rem}.lg\:gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.lg\:gap-x-80{-moz-column-gap:20rem;column-gap:20rem}.lg\:gap-x-9{-moz-column-gap:2.25rem;column-gap:2.25rem}.lg\:gap-x-96{-moz-column-gap:24rem;column-gap:24rem}.lg\:gap-x-px{-moz-column-gap:1px;column-gap:1px}.lg\:gap-y-0{row-gap:0}.lg\:gap-y-0\.5{row-gap:.125rem}.lg\:gap-y-1{row-gap:.25rem}.lg\:gap-y-1\.5{row-gap:.375rem}.lg\:gap-y-10{row-gap:2.5rem}.lg\:gap-y-11{row-gap:2.75rem}.lg\:gap-y-12{row-gap:3rem}.lg\:gap-y-128{row-gap:32rem}.lg\:gap-y-14{row-gap:3.5rem}.lg\:gap-y-16{row-gap:4rem}.lg\:gap-y-2{row-gap:.5rem}.lg\:gap-y-2\.5{row-gap:.625rem}.lg\:gap-y-20{row-gap:5rem}.lg\:gap-y-24{row-gap:6rem}.lg\:gap-y-28{row-gap:7rem}.lg\:gap-y-3{row-gap:.75rem}.lg\:gap-y-3\.5{row-gap:.875rem}.lg\:gap-y-32{row-gap:8rem}.lg\:gap-y-36{row-gap:9rem}.lg\:gap-y-4{row-gap:1rem}.lg\:gap-y-40{row-gap:10rem}.lg\:gap-y-44{row-gap:11rem}.lg\:gap-y-48{row-gap:12rem}.lg\:gap-y-5{row-gap:1.25rem}.lg\:gap-y-52{row-gap:13rem}.lg\:gap-y-56{row-gap:14rem}.lg\:gap-y-6{row-gap:1.5rem}.lg\:gap-y-60{row-gap:15rem}.lg\:gap-y-64{row-gap:16rem}.lg\:gap-y-68{row-gap:17rem}.lg\:gap-y-7{row-gap:1.75rem}.lg\:gap-y-72{row-gap:18rem}.lg\:gap-y-8{row-gap:2rem}.lg\:gap-y-80{row-gap:20rem}.lg\:gap-y-9{row-gap:2.25rem}.lg\:gap-y-96{row-gap:24rem}.lg\:gap-y-px{row-gap:1px}.lg\:rounded-md{border-radius:.375rem}.lg\:border{border-width:1px}.lg\:border-0{border-width:0}.lg\:border-b-0{border-bottom-width:0}.lg\:border-t{border-top-width:1px}.lg\:border-none{border-style:none}.lg\:border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.lg\:p-12{padding:3rem}.lg\:px-12{padding-left:3rem;padding-right:3rem}.lg\:py-3{padding-top:.75rem;padding-bottom:.75rem}.lg\:text-left{text-align:left}.lg\:align-top{vertical-align:top}.lg\:underline{text-decoration-line:underline}.lg\:shadow-none{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000}.lg\:shadow-none,.lg\:shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.lg\:shadow-sm{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.lg\:before\:hidden:before{content:var(--tw-content);display:none}.lg\:first\:border-t:first-child{border-top-width:1px}}@media (min-width:1280px){.xl\:left-0{left:0}.xl\:left-72{left:18rem}.xl\:block{display:block}.xl\:flex{display:flex}.xl\:hidden{display:none}.xl\:max-w-4xl{max-width:56rem}.xl\:text-base{font-size:1rem;line-height:1.5rem}}:is(:where(.dark) .dark\:block){display:block}:is(:where(.dark) .dark\:hidden){display:none}:is(:where(.dark) .dark\:border){border-width:1px}:is(:where(.dark) .dark\:border-r){border-right-width:1px}:is(:where(.dark) .dark\:border-amber-600\/10){border-color:#d977061a}:is(:where(.dark) .dark\:border-blue-500\/10){border-color:#3b82f61a}:is(:where(.dark) .dark\:border-gray-500){--tw-border-opacity:1;border-color:rgb(107 114 128/var(--tw-border-opacity))}:is(:where(.dark) .dark\:border-gray-600){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}:is(:where(.dark) .dark\:border-gray-700){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}:is(:where(.dark) .dark\:border-gray-800){--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}:is(:where(.dark) .dark\:border-green-500\/10){border-color:#22c55e1a}:is(:where(.dark) .dark\:border-red-500\/10){border-color:#ef44441a}:is(:where(.dark) .dark\:border-red-500\/20){border-color:#ef444433}:is(:where(.dark) .dark\:border-transparent){border-color:#0000}:is(:where(.dark) .dark\:border-r-gray-700){--tw-border-opacity:1;border-right-color:rgb(55 65 81/var(--tw-border-opacity))}:is(:where(.dark) .dark\:bg-amber-600\/20){background-color:#d9770633}:is(:where(.dark) .dark\:bg-blue-500\/20){background-color:#3b82f633}:is(:where(.dark) .dark\:bg-gray-500\/20){background-color:#6b728033}:is(:where(.dark) .dark\:bg-gray-600){--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}:is(:where(.dark) .dark\:bg-gray-700){--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}:is(:where(.dark) .dark\:bg-gray-800){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}:is(:where(.dark) .dark\:bg-gray-900){--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}:is(:where(.dark) .dark\:bg-green-500\/20){background-color:#22c55e33}:is(:where(.dark) .dark\:bg-orange-500\/20){background-color:#f9731633}:is(:where(.dark) .dark\:bg-primary-500\/20){background-color:rgb(var(--color-primary-500)/.2)}:is(:where(.dark) .dark\:bg-red-500\/20){background-color:#ef444433}:is(:where(.dark) .dark\:bg-white\/10){background-color:#ffffff1a}:is(:where(.dark) .dark\:bg-white\/\[\.02\]){background-color:#ffffff05}:is(:where(.dark) .dark\:bg-white\/\[\.04\]){background-color:#ffffff0a}:is(:where(.dark) .dark\:text-gray-200){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}:is(:where(.dark) .dark\:text-gray-300){--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}:is(:where(.dark) .dark\:text-gray-400){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}:is(:where(.dark) .dark\:text-gray-500){--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}:is(:where(.dark) .dark\:text-gray-600){--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}:is(:where(.dark) .dark\:text-primary-500){--tw-text-opacity:1;color:rgb(var(--color-primary-500)/var(--tw-text-opacity))}:is(:where(.dark) .dark\:text-red-500){--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}:is(:where(.dark) .dark\:text-white){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(:where(.dark) .dark\:outline-green-500\/20){outline-color:#22c55e33}:is(:where(.dark) .dark\:outline-red-500\/20){outline-color:#ef444433}:is(:where(.dark) .dark\:before\:text-gray-400):before{content:var(--tw-content);--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}:is(:where(.dark) .after\:dark\:bg-transparent):after{content:var(--tw-content);background-color:initial}:is(:where(.dark) .after\:dark\:text-gray-700):after{content:var(--tw-content);--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}:is(:where(.dark) .checked\:after\:dark\:bg-gray-200):checked:after{content:var(--tw-content);--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}:is(:where(.dark) .dark\:after\:checked\:text-white:checked):after{content:var(--tw-content);--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(:where(.dark) .dark\:focus-within\:border-primary-600:focus-within){--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity))}:is(:where(.dark) .dark\:focus-within\:ring-primary-700:focus-within){--tw-ring-opacity:1;--tw-ring-color:rgb(var(--color-primary-700)/var(--tw-ring-opacity))}:is(:where(.dark) .dark\:focus-within\:ring-opacity-50:focus-within){--tw-ring-opacity:0.5}:is(:where(.dark) .dark\:hover\:bg-gray-700:hover){--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}:is(:where(.dark) .dark\:hover\:bg-gray-900:hover){--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}:is(:where(.dark) .dark\:hover\:bg-red-500\/20:hover){background-color:#ef444433}:is(:where(.dark) .dark\:hover\:bg-white\/\[\.04\]:hover){background-color:#ffffff0a}:is(:where(.dark) .dark\:hover\:\!text-primary-500:hover){--tw-text-opacity:1!important;color:rgb(var(--color-primary-500)/var(--tw-text-opacity))!important}:is(:where(.dark) .dark\:hover\:text-gray-200:hover){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}:is(:where(.dark) .dark\:hover\:text-red-500:hover){--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}:is(:where(.dark) .dark\:hover\:text-white:hover){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(:where(.dark) .hover\:dark\:text-gray-200):hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}:is(:where(.dark) .dark\:focus\:border-primary-600:focus){--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity))}:is(:where(.dark) .dark\:focus\:ring-primary-600\/30:focus){--tw-ring-color:rgb(var(--color-primary-600)/0.3)}:is(:where(.dark) .dark\:focus\:ring-primary-700:focus){--tw-ring-opacity:1;--tw-ring-color:rgb(var(--color-primary-700)/var(--tw-ring-opacity))}:is(:where(.dark) .dark\:focus\:ring-opacity-50:focus){--tw-ring-opacity:0.5}.group:hover :is(:where(.dark) .group-hover\:dark\:bg-gray-800){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}:is(:where(.dark) .group:hover .dark\:group-hover\:text-gray-200){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.group:hover :is(:where(.dark) .group-hover\:dark\:text-white){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(:where(.dark) .group.errors .dark\:group-\[\.errors\]\:border-red-500){--tw-border-opacity:1;border-color:rgb(239 68 68/var(--tw-border-opacity))}:is(:where(.dark) .group.errors .dark\:group-\[\.errors\]\:border-x-red-500){--tw-border-opacity:1;border-left-color:rgb(239 68 68/var(--tw-border-opacity));border-right-color:rgb(239 68 68/var(--tw-border-opacity))}:is(:where(.dark) .group.errors .dark\:group-\[\.errors\]\:border-t-red-500){--tw-border-opacity:1;border-top-color:rgb(239 68 68/var(--tw-border-opacity))}:is(:where(.dark) .group.errors .dark\:group-\[\.errors\]\:focus\:ring-red-600\/40:focus){--tw-ring-color:#dc262666}:is(:where(.dark) .dark\:prose-headings\:text-gray-200 :is(:where(h1,h2,h3,h4,h5,h6,th):not(:where([class~=not-prose],[class~=not-prose] *)))){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}:is(:where(.dark) .dark\:prose-blockquote\:border-gray-700 :is(:where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)))){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}:is(:where(.dark) .dark\:prose-blockquote\:text-gray-400 :is(:where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)))){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}:is(:where(.dark) .dark\:prose-strong\:text-gray-200 :is(:where(strong):not(:where([class~=not-prose],[class~=not-prose] *)))){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}:is(:where(.dark) .dark\:prose-pre\:bg-gray-800 :is(:where(pre):not(:where([class~=not-prose],[class~=not-prose] *)))){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}@media (min-width:768px){:is(:where(.dark) .dark\:md\:border-gray-800){--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}:is(:where(.dark) .dark\:md\:border-primary-600){--tw-border-opacity:1;border-color:rgb(var(--color-primary-600)/var(--tw-border-opacity))}}@media (min-width:1024px){:is(:where(.dark) .dark\:lg\:border-gray-800){--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}:is(:where(.dark) .lg\:dark\:border-gray-800){--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}}
|
unfold/styles.css
CHANGED
@@ -586,3 +586,26 @@ trix-toolbar[id^="trix-toolbar-"] {
|
|
586
586
|
.trix-active {
|
587
587
|
@apply text-primary-600;
|
588
588
|
}
|
589
|
+
|
590
|
+
/*******************************************************
|
591
|
+
django-modeltranslation
|
592
|
+
*******************************************************/
|
593
|
+
.ui-tabs {
|
594
|
+
@apply flex flex-col;
|
595
|
+
}
|
596
|
+
|
597
|
+
.ui-tabs.ui-widget .ui-tabs-nav {
|
598
|
+
@apply bg-gray-100 border-0 flex gap-2 m-0 mb-4 mr-auto p-1 rounded text-sm dark:bg-white/[.04] after:hidden;
|
599
|
+
}
|
600
|
+
|
601
|
+
.ui-tabs.ui-widget .ui-tabs-nav li {
|
602
|
+
@apply border-0 top-0;
|
603
|
+
}
|
604
|
+
|
605
|
+
.ui-tabs.ui-widget .ui-tabs-nav li a {
|
606
|
+
@apply bg-transparent border-0 flex flex-row font-medium items-center m-0 px-2.5 py-1 rounded text-gray-400 text-sm hover:bg-gray-700/[.04] hover:text-gray-700 dark:hover:bg-white/[.04] dark:hover:text-white;
|
607
|
+
}
|
608
|
+
|
609
|
+
.ui-tabs.ui-widget .ui-tabs-nav li.ui-tabs-active a {
|
610
|
+
@apply flex flex-row font-medium items-center px-2.5 py-1 rounded bg-white shadow-sm text-gray-700 hover:bg-white dark:bg-gray-900 dark:hover:bg-gray-900 dark:text-white;
|
611
|
+
}
|
@@ -95,8 +95,12 @@
|
|
95
95
|
|
96
96
|
{% block field_sets %}
|
97
97
|
{% for fieldset in adminform %}
|
98
|
-
{%
|
98
|
+
{% if "tab" not in fieldset.classes %}
|
99
|
+
{% include 'admin/includes/fieldset.html' %}
|
100
|
+
{% endif %}
|
99
101
|
{% endfor %}
|
102
|
+
|
103
|
+
{% include "unfold/helpers/fieldsets_tabs.html" %}
|
100
104
|
{% endblock %}
|
101
105
|
|
102
106
|
{% block after_field_sets %}{% endblock %}
|
@@ -1,8 +1,8 @@
|
|
1
1
|
{% load unfold %}
|
2
2
|
|
3
|
-
<fieldset class="module {{ fieldset.classes }}">
|
4
|
-
{% if fieldset.name %}
|
5
|
-
<h2 class="bg-gray-100 border border-transparent font-semibold mb-6 px-4 py-3 rounded-md text-gray-
|
3
|
+
<fieldset class="module{% if fieldset.classes %} {{ fieldset.classes }}{% endif %}">
|
4
|
+
{% if fieldset.name and "tab" not in fieldset.classes %}
|
5
|
+
<h2 class="bg-gray-100 border border-transparent font-semibold mb-6 px-4 py-3 rounded-md text-gray-700 text-sm lg:-mx-4 dark:bg-white/[.02] dark:border dark:border-gray-800 dark:text-gray-200">
|
6
6
|
{{ fieldset.name }}
|
7
7
|
</h2>
|
8
8
|
{% endif %}
|
@@ -15,7 +15,7 @@
|
|
15
15
|
|
16
16
|
<div class="aligned border border-gray-200 mb-8 rounded-md pt-3 px-3 shadow-sm dark:border-gray-800">
|
17
17
|
{% for line in fieldset %}
|
18
|
-
<div class="block {% if not line.fields|length_is:'1' %}flex flex-row flex-wrap gap-x-8
|
18
|
+
<div class="form-row block {% if not line.fields|length_is:'1' %}flex flex-row flex-wrap gap-x-8{% endif %}{% if not line.has_visible_field %} hidden{% endif %}{% for field in line %}{% if field.field.name %} field-{{ field.field.name }}{% endif %}{% endfor %}">
|
19
19
|
{% for field in line %}
|
20
20
|
<div class="flex group {% if field.errors %}errors {% endif %}{% if not line.fields|length_is:1 %}lg:max-w-xs w-full {% endif %}{% if not forloop.parentloop.last %} mb-6 {% else %} mb-3{% endif %} {% if row %}flex-row items-center{% else %}flex-col{% endif %}">
|
21
21
|
{% if field.is_checkbox %}
|
@@ -3,40 +3,42 @@
|
|
3
3
|
{% if sidebar_navigation %}
|
4
4
|
<div class="overflow-auto">
|
5
5
|
{% for group in sidebar_navigation %}
|
6
|
-
{% if group.
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
{% if group.title %}
|
11
|
-
<h3 class="font-medium my-3 px-6 text-gray-900 text-sm first:mt-0 dark:text-gray-200">
|
12
|
-
{{ group.title }}
|
13
|
-
</h3>
|
14
|
-
{% endif %}
|
6
|
+
{% if group.items %}
|
7
|
+
{% if group.separator %}
|
8
|
+
<hr class="border-t border-gray-200 mx-6 my-2 dark:border-gray-800" />
|
9
|
+
{% endif %}
|
15
10
|
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
{% if item.icon %}
|
22
|
-
<span class="material-symbols-outlined md-18 mr-3 w-4.5">
|
23
|
-
{{ item.icon }}
|
24
|
-
</span>
|
25
|
-
{% endif %}
|
11
|
+
{% if group.title %}
|
12
|
+
<h3 class="font-medium my-3 px-6 text-gray-900 text-sm first:mt-0 dark:text-gray-200">
|
13
|
+
{{ group.title }}
|
14
|
+
</h3>
|
15
|
+
{% endif %}
|
26
16
|
|
27
|
-
|
28
|
-
|
29
|
-
|
17
|
+
<ol class="px-6">
|
18
|
+
{% for item in group.items %}
|
19
|
+
<li>
|
20
|
+
<a href="{{ item.link }}"
|
21
|
+
class="border border-transparent flex h-11 items-center -mx-3 px-3 py-2 rounded-md {% if item.active %}bg-gray-100 font-semibold text-primary-600 dark:border dark:border-gray-800 dark:bg-white/[.02] dark:text-primary-500{% else %}text-gray-500 hover:text-gray-700 dark:text-gray-400 hover:dark:text-gray-200{% endif %}">
|
22
|
+
{% if item.icon %}
|
23
|
+
<span class="material-symbols-outlined md-18 mr-3 w-4.5">
|
24
|
+
{{ item.icon }}
|
25
|
+
</span>
|
26
|
+
{% endif %}
|
30
27
|
|
31
|
-
|
32
|
-
|
33
|
-
{{ item.badge|safe }}
|
28
|
+
<span class="text-sm">
|
29
|
+
{{ item.title|safe }}
|
34
30
|
</span>
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
31
|
+
|
32
|
+
{% if item.badge %}
|
33
|
+
<span class="bg-red-600 font-semibold ml-2 px-1 rounded-sm text-xs text-white">
|
34
|
+
{{ item.badge|safe }}
|
35
|
+
</span>
|
36
|
+
{% endif %}
|
37
|
+
</a>
|
38
|
+
</li>
|
39
|
+
{% endfor %}
|
40
|
+
</ol>
|
41
|
+
{% endif %}
|
40
42
|
{% endfor %}
|
41
43
|
</div>
|
42
44
|
|
@@ -0,0 +1,26 @@
|
|
1
|
+
{% load unfold %}
|
2
|
+
|
3
|
+
{% with tabs=adminform|tabs %}
|
4
|
+
{% if tabs %}
|
5
|
+
<div x-data="{openTab: null}">
|
6
|
+
<ul class="bg-gray-100 border border-transparent flex gap-10 mb-6 px-4 py-3 rounded-md text-gray-400 text-sm lg:-mx-4 dark:bg-white/[.02] dark:border dark:border-gray-800 dark:text-gray-400">
|
7
|
+
{% for fieldset in tabs %}
|
8
|
+
<li>
|
9
|
+
<a class="cursor-pointer font-semibold hover:text-gray-700 dark:hover:text-white"
|
10
|
+
x-on:click="openTab = '{{ fieldset.name|slugify }}'"
|
11
|
+
x-bind:class="openTab == '{{ fieldset.name|slugify }}'{% if forloop.first %} || openTab == null{% endif %} ? 'text-gray-700 dark:text-white' : ''">
|
12
|
+
{{ fieldset.name }}
|
13
|
+
</a>
|
14
|
+
</li>
|
15
|
+
{% endfor %}
|
16
|
+
</ul>
|
17
|
+
|
18
|
+
{% for fieldset in tabs %}
|
19
|
+
<div class="tab-wrapper{% if fieldset.name %} fieldset-{{ fieldset.name|slugify }}{% endif %}"
|
20
|
+
x-show="openTab == '{{ fieldset.name|slugify }}'{% if forloop.first %} || openTab == null{% endif %}">
|
21
|
+
{% include 'admin/includes/fieldset.html' %}
|
22
|
+
</div>
|
23
|
+
{% endfor %}
|
24
|
+
</div>
|
25
|
+
{% endif %}
|
26
|
+
{% endwith %}
|
unfold/templatetags/unfold.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1
|
-
from typing import Any, Dict, Mapping, Optional, Union
|
1
|
+
from typing import Any, Dict, List, Mapping, Optional, Union
|
2
2
|
|
3
3
|
from django import template
|
4
|
+
from django.contrib.admin.helpers import AdminForm, Fieldset
|
4
5
|
from django.forms import Field
|
5
6
|
from django.template import Library, Node, RequestContext, TemplateSyntaxError
|
6
7
|
from django.template.base import NodeList, Parser, Token, token_kwargs
|
@@ -42,6 +43,17 @@ def index(indexable: Mapping[int, Any], i: int) -> Any:
|
|
42
43
|
return indexable[i]
|
43
44
|
|
44
45
|
|
46
|
+
@register.filter
|
47
|
+
def tabs(adminform: AdminForm) -> List[Fieldset]:
|
48
|
+
result = []
|
49
|
+
|
50
|
+
for fieldset in adminform:
|
51
|
+
if "tab" in fieldset.classes and fieldset.name:
|
52
|
+
result.append(fieldset)
|
53
|
+
|
54
|
+
return result
|
55
|
+
|
56
|
+
|
45
57
|
class CaptureNode(Node):
|
46
58
|
def __init__(self, nodelist: NodeList, varname: str, silent: bool) -> None:
|
47
59
|
self.nodelist = nodelist
|
File without changes
|
File without changes
|