plutonium 0.16.5 → 0.18.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/plutonium.css +1 -1
- data/app/assets/plutonium.js +23273 -9599
- data/app/assets/plutonium.js.map +4 -4
- data/app/assets/plutonium.min.js +159 -49
- data/app/assets/plutonium.min.js.map +4 -4
- data/app/views/plutonium/_resource_header.html.erb +33 -24
- data/app/views/rodauth/otp_unlock.html.erb +22 -0
- data/app/views/rodauth/otp_unlock_not_available.html.erb +14 -0
- data/app/views/rodauth/webauthn_remove.html.erb +1 -0
- data/docs/guide/getting-started/resources.md +2 -2
- data/docs/guide/tutorial.md +4 -4
- data/gemfiles/rails_7.gemfile.lock +406 -0
- data/lib/generators/pu/core/assets/assets_generator.rb +7 -1
- data/lib/generators/pu/res/conn/conn_generator.rb +24 -10
- data/lib/generators/pu/rodauth/concerns/configuration.rb +11 -0
- data/lib/generators/pu/rodauth/concerns/feature_selector.rb +4 -0
- data/lib/generators/pu/rodauth/install_generator.rb +3 -1
- data/lib/generators/pu/rodauth/migration/active_record/otp_unlock.erb +7 -0
- data/lib/generators/pu/rodauth/templates/INSTRUCTIONS +2 -46
- data/lib/generators/pu/rodauth/templates/app/controllers/plugin_controller.rb.tt +3 -3
- data/lib/generators/pu/rodauth/templates/app/mailers/rodauth_mailer.rb.tt +50 -1
- data/lib/generators/pu/rodauth/templates/app/rodauth/account_rodauth_plugin.rb.tt +37 -3
- data/lib/generators/pu/rodauth/templates/app/rodauth/rodauth_plugin.rb.tt +33 -8
- data/lib/generators/pu/rodauth/templates/app/views/rodauth_mailer/otp_disabled.text.erb +2 -0
- data/lib/generators/pu/rodauth/templates/app/views/rodauth_mailer/otp_locked_out.text.erb +9 -0
- data/lib/generators/pu/rodauth/templates/app/views/rodauth_mailer/otp_setup.text.erb +2 -0
- data/lib/generators/pu/rodauth/templates/app/views/rodauth_mailer/otp_unlock_failed.text.erb +8 -0
- data/lib/generators/pu/rodauth/templates/app/views/rodauth_mailer/otp_unlocked.text.erb +2 -0
- data/lib/generators/pu/rodauth/templates/app/views/rodauth_mailer/webauthn_authenticator_added.text.erb +3 -0
- data/lib/generators/pu/rodauth/templates/app/views/rodauth_mailer/webauthn_authenticator_removed.text.erb +3 -0
- data/lib/generators/pu/rodauth/views_generator.rb +1 -12
- data/lib/plutonium/core/controllers/authorizable.rb +3 -1
- data/lib/plutonium/helpers/application_helper.rb +0 -8
- data/lib/plutonium/helpers.rb +0 -3
- data/lib/plutonium/railtie.rb +0 -14
- data/lib/plutonium/reloader.rb +2 -12
- data/lib/plutonium/rodauth/controller_methods.rb +1 -3
- data/lib/plutonium/ui/component/behaviour.rb +1 -1
- data/lib/plutonium/ui/component/kit.rb +59 -15
- data/lib/plutonium/ui/display/base.rb +6 -2
- data/lib/plutonium/ui/display/{component → components}/association.rb +1 -1
- data/lib/plutonium/ui/display/components/attachment.rb +93 -0
- data/lib/plutonium/ui/display/{component → components}/markdown.rb +2 -1
- data/lib/plutonium/ui/display/resource.rb +21 -6
- data/lib/plutonium/ui/display/theme.rb +2 -1
- data/lib/plutonium/ui/form/base.rb +7 -0
- data/lib/plutonium/ui/form/components/belongs_to.rb +45 -1
- data/lib/plutonium/ui/form/components/has_many.rb +45 -1
- data/lib/plutonium/ui/form/components/uppy.rb +173 -0
- data/lib/plutonium/ui/form/query.rb +5 -5
- data/lib/plutonium/ui/form/resource.rb +6 -6
- data/lib/plutonium/ui/form/theme.rb +6 -2
- data/lib/plutonium/ui/frame_navigator_panel.rb +25 -4
- data/lib/plutonium/ui/layout/base.rb +24 -1
- data/lib/plutonium/ui/layout/header.rb +1 -1
- data/lib/plutonium/ui/layout/sidebar.rb +0 -1
- data/lib/plutonium/ui/nav_grid_menu.rb +93 -0
- data/lib/plutonium/ui/nav_user.rb +121 -0
- data/lib/plutonium/ui/panel.rb +2 -2
- data/lib/plutonium/ui/tab_list.rb +73 -0
- data/lib/plutonium/ui/table/base.rb +7 -1
- data/lib/plutonium/ui/table/components/attachment.rb +71 -0
- data/lib/plutonium/ui/table/components/pagy_info.rb +12 -4
- data/lib/plutonium/ui/table/components/pagy_pagination.rb +5 -5
- data/lib/plutonium/ui/table/display_theme.rb +2 -1
- data/lib/plutonium/ui/table/resource.rb +11 -12
- data/lib/plutonium/version.rb +1 -1
- data/package-lock.json +356 -18
- data/package.json +6 -2
- data/src/js/controllers/attachment_input_controller.js +241 -0
- data/src/js/controllers/attachment_preview_container_controller.js +15 -0
- data/src/js/controllers/attachment_preview_controller.js +63 -0
- data/src/js/controllers/color_mode_controller.js +0 -1
- data/src/js/controllers/easymde_controller.js +0 -1
- data/src/js/controllers/flatpickr_controller.js +0 -1
- data/src/js/controllers/form_controller.js +0 -1
- data/src/js/controllers/frame_navigator_controller.js +16 -12
- data/src/js/controllers/intl_tel_input_controller.js +0 -1
- data/src/js/controllers/register_controllers.js +12 -30
- data/src/js/controllers/resource_collapse_controller.js +0 -1
- data/src/js/controllers/resource_dismiss_controller.js +0 -1
- data/src/js/controllers/resource_drop_down_controller.js +161 -9
- data/src/js/controllers/{header_controller.js → resource_header_controller.js} +1 -0
- data/src/js/controllers/resource_tab_list_controller.js +64 -0
- data/src/js/controllers/select_navigator.js +16 -0
- data/src/js/controllers/slim_select_controller.js +0 -1
- data/src/js/support/dom_element.js +78 -0
- data/src/js/support/mime_icon.js +127 -0
- data/tailwind.options.js +0 -5
- metadata +29 -642
- data/README copy.md +0 -83
- data/app/assets/application.js.bk +0 -31419
- data/app/assets/icons/flags/ghana.svg +0 -49
- data/app/assets/icons/outline/address-book.svg +0 -3
- data/app/assets/icons/outline/adjustments-horizontal.svg +0 -3
- data/app/assets/icons/outline/adjustments-vertical.svg +0 -3
- data/app/assets/icons/outline/align-center.svg +0 -3
- data/app/assets/icons/outline/angle-down.svg +0 -3
- data/app/assets/icons/outline/angle-left.svg +0 -3
- data/app/assets/icons/outline/angle-right.svg +0 -3
- data/app/assets/icons/outline/angle-up.svg +0 -3
- data/app/assets/icons/outline/annotation.svg +0 -3
- data/app/assets/icons/outline/archive-arrow-down.svg +0 -3
- data/app/assets/icons/outline/archive.svg +0 -3
- data/app/assets/icons/outline/arrow-down-to-bracket.svg +0 -3
- data/app/assets/icons/outline/arrow-down.svg +0 -3
- data/app/assets/icons/outline/arrow-left-to-bracket.svg +0 -3
- data/app/assets/icons/outline/arrow-left.svg +0 -3
- data/app/assets/icons/outline/arrow-right-alt.svg +0 -3
- data/app/assets/icons/outline/arrow-right-to-bracket.svg +0 -3
- data/app/assets/icons/outline/arrow-right.svg +0 -3
- data/app/assets/icons/outline/arrow-sort-letters.svg +0 -3
- data/app/assets/icons/outline/arrow-up-down.svg +0 -3
- data/app/assets/icons/outline/arrow-up-from-bracket.svg +0 -3
- data/app/assets/icons/outline/arrow-up-right-down-left.svg +0 -3
- data/app/assets/icons/outline/arrow-up-right-from-square.svg +0 -3
- data/app/assets/icons/outline/arrow-up.svg +0 -3
- data/app/assets/icons/outline/arrows-repeat-count.svg +0 -3
- data/app/assets/icons/outline/arrows-repeat.svg +0 -3
- data/app/assets/icons/outline/atom.svg +0 -3
- data/app/assets/icons/outline/backward-step.svg +0 -3
- data/app/assets/icons/outline/badge-check.svg +0 -3
- data/app/assets/icons/outline/bars-from-left.svg +0 -3
- data/app/assets/icons/outline/bars.svg +0 -3
- data/app/assets/icons/outline/bell-active-alt.svg +0 -3
- data/app/assets/icons/outline/bell-active.svg +0 -3
- data/app/assets/icons/outline/bell-ring.svg +0 -3
- data/app/assets/icons/outline/bell.svg +0 -3
- data/app/assets/icons/outline/blender-phone.svg +0 -3
- data/app/assets/icons/outline/book-open.svg +0 -3
- data/app/assets/icons/outline/book.svg +0 -3
- data/app/assets/icons/outline/bookmark.svg +0 -3
- data/app/assets/icons/outline/brain.svg +0 -3
- data/app/assets/icons/outline/briefcase.svg +0 -3
- data/app/assets/icons/outline/bug.svg +0 -3
- data/app/assets/icons/outline/building.svg +0 -3
- data/app/assets/icons/outline/bullhorn.svg +0 -3
- data/app/assets/icons/outline/calendar-edit.svg +0 -3
- data/app/assets/icons/outline/calendar-month.svg +0 -3
- data/app/assets/icons/outline/calendar-plus.svg +0 -3
- data/app/assets/icons/outline/calendar-week.svg +0 -3
- data/app/assets/icons/outline/camera-photo.svg +0 -4
- data/app/assets/icons/outline/caption.svg +0 -3
- data/app/assets/icons/outline/caret-down.svg +0 -3
- data/app/assets/icons/outline/caret-left.svg +0 -3
- data/app/assets/icons/outline/caret-right.svg +0 -3
- data/app/assets/icons/outline/caret-sort.svg +0 -3
- data/app/assets/icons/outline/caret-up.svg +0 -3
- data/app/assets/icons/outline/cart-plus-alt.svg +0 -3
- data/app/assets/icons/outline/cart-plus.svg +0 -3
- data/app/assets/icons/outline/cart.svg +0 -3
- data/app/assets/icons/outline/cash.svg +0 -3
- data/app/assets/icons/outline/chart-line-down.svg +0 -3
- data/app/assets/icons/outline/chart-line-up.svg +0 -3
- data/app/assets/icons/outline/chart-mixed-dollar.svg +0 -3
- data/app/assets/icons/outline/chart-mixed.svg +0 -3
- data/app/assets/icons/outline/chart-pie.svg +0 -4
- data/app/assets/icons/outline/chart.svg +0 -3
- data/app/assets/icons/outline/check-circle.svg +0 -3
- data/app/assets/icons/outline/check-plus-circle.svg +0 -3
- data/app/assets/icons/outline/check.svg +0 -3
- data/app/assets/icons/outline/chevron-double-down.svg +0 -3
- data/app/assets/icons/outline/chevron-double-left.svg +0 -3
- data/app/assets/icons/outline/chevron-double-right.svg +0 -3
- data/app/assets/icons/outline/chevron-double-up.svg +0 -3
- data/app/assets/icons/outline/chevron-down.svg +0 -3
- data/app/assets/icons/outline/chevron-left.svg +0 -3
- data/app/assets/icons/outline/chevron-right.svg +0 -3
- data/app/assets/icons/outline/chevron-sort.svg +0 -3
- data/app/assets/icons/outline/chevron-up.svg +0 -3
- data/app/assets/icons/outline/circle-pause.svg +0 -3
- data/app/assets/icons/outline/circle-plus.svg +0 -3
- data/app/assets/icons/outline/clapperboard-play.svg +0 -3
- data/app/assets/icons/outline/clipboard-check.svg +0 -3
- data/app/assets/icons/outline/clipboard-list.svg +0 -3
- data/app/assets/icons/outline/clipboard.svg +0 -3
- data/app/assets/icons/outline/clock.svg +0 -3
- data/app/assets/icons/outline/close-circle.svg +0 -3
- data/app/assets/icons/outline/close.svg +0 -3
- data/app/assets/icons/outline/cloud-arrow-up.svg +0 -3
- data/app/assets/icons/outline/code-branch.svg +0 -3
- data/app/assets/icons/outline/code-fork.svg +0 -3
- data/app/assets/icons/outline/code-merge.svg +0 -3
- data/app/assets/icons/outline/code-pull-request.svg +0 -3
- data/app/assets/icons/outline/code.svg +0 -3
- data/app/assets/icons/outline/cog.svg +0 -4
- data/app/assets/icons/outline/column.svg +0 -3
- data/app/assets/icons/outline/command.svg +0 -3
- data/app/assets/icons/outline/compress.svg +0 -3
- data/app/assets/icons/outline/computer-speaker.svg +0 -3
- data/app/assets/icons/outline/credit-card.svg +0 -3
- data/app/assets/icons/outline/database.svg +0 -3
- data/app/assets/icons/outline/desktop-pc.svg +0 -3
- data/app/assets/icons/outline/dna.svg +0 -3
- data/app/assets/icons/outline/dollar.svg +0 -3
- data/app/assets/icons/outline/dots-horizontal.svg +0 -3
- data/app/assets/icons/outline/dots-vertical.svg +0 -3
- data/app/assets/icons/outline/download.svg +0 -3
- data/app/assets/icons/outline/draw-square.svg +0 -3
- data/app/assets/icons/outline/edit.svg +0 -3
- data/app/assets/icons/outline/envelope-open.svg +0 -3
- data/app/assets/icons/outline/envelope.svg +0 -3
- data/app/assets/icons/outline/euro.svg +0 -3
- data/app/assets/icons/outline/exclamation-circle.svg +0 -3
- data/app/assets/icons/outline/expand.svg +0 -3
- data/app/assets/icons/outline/eye-slash.svg +0 -3
- data/app/assets/icons/outline/eye.svg +0 -4
- data/app/assets/icons/outline/face-explode.svg +0 -4
- data/app/assets/icons/outline/face-grin-stars.svg +0 -6
- data/app/assets/icons/outline/face-grin.svg +0 -3
- data/app/assets/icons/outline/face-laugh.svg +0 -3
- data/app/assets/icons/outline/file-chart-bar.svg +0 -3
- data/app/assets/icons/outline/file-check.svg +0 -3
- data/app/assets/icons/outline/file-circle-plus.svg +0 -3
- data/app/assets/icons/outline/file-clone.svg +0 -3
- data/app/assets/icons/outline/file-code.svg +0 -3
- data/app/assets/icons/outline/file-copy-alt.svg +0 -3
- data/app/assets/icons/outline/file-copy.svg +0 -3
- data/app/assets/icons/outline/file-csv.svg +0 -3
- data/app/assets/icons/outline/file-export.svg +0 -3
- data/app/assets/icons/outline/file-image.svg +0 -4
- data/app/assets/icons/outline/file-import.svg +0 -3
- data/app/assets/icons/outline/file-invoice.svg +0 -3
- data/app/assets/icons/outline/file-lines.svg +0 -3
- data/app/assets/icons/outline/file-music.svg +0 -3
- data/app/assets/icons/outline/file-paste.svg +0 -3
- data/app/assets/icons/outline/file-pdf.svg +0 -3
- data/app/assets/icons/outline/file-pen.svg +0 -3
- data/app/assets/icons/outline/file-ppt.svg +0 -3
- data/app/assets/icons/outline/file-search.svg +0 -3
- data/app/assets/icons/outline/file-shield.svg +0 -3
- data/app/assets/icons/outline/file-video.svg +0 -3
- data/app/assets/icons/outline/file-word.svg +0 -3
- data/app/assets/icons/outline/file-zip.svg +0 -3
- data/app/assets/icons/outline/file.svg +0 -3
- data/app/assets/icons/outline/filter.svg +0 -3
- data/app/assets/icons/outline/fingerprint.svg +0 -3
- data/app/assets/icons/outline/fire.svg +0 -3
- data/app/assets/icons/outline/flag.svg +0 -3
- data/app/assets/icons/outline/folder-arrow-right.svg +0 -3
- data/app/assets/icons/outline/folder-duplicate.svg +0 -3
- data/app/assets/icons/outline/folder-open.svg +0 -3
- data/app/assets/icons/outline/folder-plus.svg +0 -3
- data/app/assets/icons/outline/folder.svg +0 -3
- data/app/assets/icons/outline/forward-step.svg +0 -3
- data/app/assets/icons/outline/forward.svg +0 -3
- data/app/assets/icons/outline/gift-box.svg +0 -3
- data/app/assets/icons/outline/globe.svg +0 -3
- data/app/assets/icons/outline/grid-plus.svg +0 -3
- data/app/assets/icons/outline/grid.svg +0 -3
- data/app/assets/icons/outline/headphones.svg +0 -3
- data/app/assets/icons/outline/heart.svg +0 -3
- data/app/assets/icons/outline/home.svg +0 -3
- data/app/assets/icons/outline/hourglass.svg +0 -3
- data/app/assets/icons/outline/image.svg +0 -3
- data/app/assets/icons/outline/inbox-full.svg +0 -3
- data/app/assets/icons/outline/inbox.svg +0 -3
- data/app/assets/icons/outline/indent.svg +0 -3
- data/app/assets/icons/outline/info-circle.svg +0 -3
- data/app/assets/icons/outline/keyboard.svg +0 -5
- data/app/assets/icons/outline/label.svg +0 -3
- data/app/assets/icons/outline/landmark.svg +0 -3
- data/app/assets/icons/outline/layers.svg +0 -3
- data/app/assets/icons/outline/letter-bold.svg +0 -3
- data/app/assets/icons/outline/letter-italic.svg +0 -3
- data/app/assets/icons/outline/letter-underline.svg +0 -3
- data/app/assets/icons/outline/life-saver.svg +0 -3
- data/app/assets/icons/outline/lightbulb.svg +0 -3
- data/app/assets/icons/outline/link.svg +0 -3
- data/app/assets/icons/outline/list-music.svg +0 -3
- data/app/assets/icons/outline/list.svg +0 -3
- data/app/assets/icons/outline/lock-open.svg +0 -3
- data/app/assets/icons/outline/lock-time.svg +0 -3
- data/app/assets/icons/outline/lock.svg +0 -3
- data/app/assets/icons/outline/mail-box.svg +0 -3
- data/app/assets/icons/outline/map-pin-alt.svg +0 -4
- data/app/assets/icons/outline/map-pin.svg +0 -3
- data/app/assets/icons/outline/message-caption.svg +0 -3
- data/app/assets/icons/outline/message-dots.svg +0 -3
- data/app/assets/icons/outline/messages.svg +0 -3
- data/app/assets/icons/outline/microphone.svg +0 -3
- data/app/assets/icons/outline/minimize.svg +0 -3
- data/app/assets/icons/outline/minus.svg +0 -3
- data/app/assets/icons/outline/mobile-phone.svg +0 -3
- data/app/assets/icons/outline/moon.svg +0 -3
- data/app/assets/icons/outline/newspaper.svg +0 -3
- data/app/assets/icons/outline/ordered-list.svg +0 -3
- data/app/assets/icons/outline/outdent.svg +0 -3
- data/app/assets/icons/outline/palette.svg +0 -3
- data/app/assets/icons/outline/paper-clip.svg +0 -3
- data/app/assets/icons/outline/paper-plane.svg +0 -3
- data/app/assets/icons/outline/paragraph.svg +0 -3
- data/app/assets/icons/outline/pause.svg +0 -3
- data/app/assets/icons/outline/pen-nib.svg +0 -3
- data/app/assets/icons/outline/pen.svg +0 -3
- data/app/assets/icons/outline/phone.svg +0 -3
- data/app/assets/icons/outline/play.svg +0 -3
- data/app/assets/icons/outline/plus.svg +0 -3
- data/app/assets/icons/outline/printer.svg +0 -3
- data/app/assets/icons/outline/profile-card.svg +0 -3
- data/app/assets/icons/outline/question-circle.svg +0 -3
- data/app/assets/icons/outline/quote.svg +0 -3
- data/app/assets/icons/outline/receipt.svg +0 -3
- data/app/assets/icons/outline/rectangle-list.svg +0 -3
- data/app/assets/icons/outline/redo.svg +0 -3
- data/app/assets/icons/outline/refresh.svg +0 -3
- data/app/assets/icons/outline/reply-all.svg +0 -3
- data/app/assets/icons/outline/reply.svg +0 -3
- data/app/assets/icons/outline/restore-window.svg +0 -3
- data/app/assets/icons/outline/rocket.svg +0 -3
- data/app/assets/icons/outline/ruler-combined.svg +0 -3
- data/app/assets/icons/outline/sale-percent.svg +0 -3
- data/app/assets/icons/outline/scale-balanced.svg +0 -3
- data/app/assets/icons/outline/search.svg +0 -3
- data/app/assets/icons/outline/share-all.svg +0 -3
- data/app/assets/icons/outline/share-nodes.svg +0 -3
- data/app/assets/icons/outline/shield-check.svg +0 -3
- data/app/assets/icons/outline/shield.svg +0 -3
- data/app/assets/icons/outline/shopping-bag.svg +0 -3
- data/app/assets/icons/outline/shuffle.svg +0 -3
- data/app/assets/icons/outline/sort-horizontal.svg +0 -3
- data/app/assets/icons/outline/sort.svg +0 -3
- data/app/assets/icons/outline/star-half-stroke.svg +0 -3
- data/app/assets/icons/outline/star-half.svg +0 -3
- data/app/assets/icons/outline/star.svg +0 -3
- data/app/assets/icons/outline/store.svg +0 -3
- data/app/assets/icons/outline/sun.svg +0 -3
- data/app/assets/icons/outline/swatchbook.svg +0 -3
- data/app/assets/icons/outline/table-column.svg +0 -3
- data/app/assets/icons/outline/table-row.svg +0 -3
- data/app/assets/icons/outline/tablet.svg +0 -3
- data/app/assets/icons/outline/tag.svg +0 -3
- data/app/assets/icons/outline/terminal.svg +0 -3
- data/app/assets/icons/outline/text-size.svg +0 -3
- data/app/assets/icons/outline/text-slash.svg +0 -3
- data/app/assets/icons/outline/thumbs-down.svg +0 -3
- data/app/assets/icons/outline/thumbs-up.svg +0 -3
- data/app/assets/icons/outline/ticket.svg +0 -3
- data/app/assets/icons/outline/trash-bin.svg +0 -3
- data/app/assets/icons/outline/truck.svg +0 -3
- data/app/assets/icons/outline/undo.svg +0 -3
- data/app/assets/icons/outline/upload.svg +0 -3
- data/app/assets/icons/outline/user-add.svg +0 -3
- data/app/assets/icons/outline/user-circle.svg +0 -3
- data/app/assets/icons/outline/user-edit.svg +0 -3
- data/app/assets/icons/outline/user-headset.svg +0 -3
- data/app/assets/icons/outline/user-remove.svg +0 -3
- data/app/assets/icons/outline/user-settings.svg +0 -3
- data/app/assets/icons/outline/user.svg +0 -3
- data/app/assets/icons/outline/users-group.svg +0 -3
- data/app/assets/icons/outline/users.svg +0 -3
- data/app/assets/icons/outline/video-camera.svg +0 -3
- data/app/assets/icons/outline/volume-down.svg +0 -3
- data/app/assets/icons/outline/volume-up.svg +0 -3
- data/app/assets/icons/outline/wallet.svg +0 -3
- data/app/assets/icons/outline/wand-magic-sparkles.svg +0 -3
- data/app/assets/icons/outline/window.svg +0 -3
- data/app/assets/icons/outline/zoom-in.svg +0 -3
- data/app/assets/icons/outline/zoom-out.svg +0 -3
- data/app/assets/icons/solid/X.svg +0 -3
- data/app/assets/icons/solid/address-book.svg +0 -3
- data/app/assets/icons/solid/adjustments-horizontal.svg +0 -3
- data/app/assets/icons/solid/adjustments-vertical.svg +0 -3
- data/app/assets/icons/solid/annotation.svg +0 -3
- data/app/assets/icons/solid/apple.svg +0 -3
- data/app/assets/icons/solid/archive-arrow-down.svg +0 -3
- data/app/assets/icons/solid/archive.svg +0 -4
- data/app/assets/icons/solid/arrow-right-alt.svg +0 -3
- data/app/assets/icons/solid/arrow-up-right-from-square.svg +0 -4
- data/app/assets/icons/solid/backward-step.svg +0 -3
- data/app/assets/icons/solid/badge-check.svg +0 -3
- data/app/assets/icons/solid/bell-active-alt.svg +0 -3
- data/app/assets/icons/solid/bell-active.svg +0 -5
- data/app/assets/icons/solid/bell-ring.svg +0 -3
- data/app/assets/icons/solid/bell.svg +0 -3
- data/app/assets/icons/solid/blender-phone.svg +0 -3
- data/app/assets/icons/solid/book-open.svg +0 -3
- data/app/assets/icons/solid/book.svg +0 -3
- data/app/assets/icons/solid/bookmark.svg +0 -3
- data/app/assets/icons/solid/brain.svg +0 -3
- data/app/assets/icons/solid/briefcase.svg +0 -3
- data/app/assets/icons/solid/bug.svg +0 -3
- data/app/assets/icons/solid/building.svg +0 -3
- data/app/assets/icons/solid/bullhorn.svg +0 -3
- data/app/assets/icons/solid/calendar-edit.svg +0 -4
- data/app/assets/icons/solid/calendar-month.svg +0 -3
- data/app/assets/icons/solid/calendar-plus.svg +0 -3
- data/app/assets/icons/solid/calendar-week.svg +0 -3
- data/app/assets/icons/solid/camera-photo.svg +0 -3
- data/app/assets/icons/solid/caption.svg +0 -3
- data/app/assets/icons/solid/caret-down.svg +0 -3
- data/app/assets/icons/solid/caret-left.svg +0 -3
- data/app/assets/icons/solid/caret-right.svg +0 -3
- data/app/assets/icons/solid/caret-sort.svg +0 -3
- data/app/assets/icons/solid/caret-up.svg +0 -3
- data/app/assets/icons/solid/cart-plus-alt.svg +0 -4
- data/app/assets/icons/solid/cart-plus.svg +0 -4
- data/app/assets/icons/solid/cart.svg +0 -3
- data/app/assets/icons/solid/cash.svg +0 -5
- data/app/assets/icons/solid/chart-mixed-dollar.svg +0 -3
- data/app/assets/icons/solid/chart-pie.svg +0 -4
- data/app/assets/icons/solid/check-circle.svg +0 -3
- data/app/assets/icons/solid/check-plus-circle.svg +0 -4
- data/app/assets/icons/solid/circle-pause.svg +0 -3
- data/app/assets/icons/solid/circle-plus.svg +0 -3
- data/app/assets/icons/solid/clapperboard-play.svg +0 -3
- data/app/assets/icons/solid/clipboard-check.svg +0 -3
- data/app/assets/icons/solid/clipboard-list.svg +0 -3
- data/app/assets/icons/solid/clipboard.svg +0 -3
- data/app/assets/icons/solid/clock.svg +0 -3
- data/app/assets/icons/solid/close-circle.svg +0 -3
- data/app/assets/icons/solid/cloud-arrow-up.svg +0 -4
- data/app/assets/icons/solid/code-branch.svg +0 -3
- data/app/assets/icons/solid/code-fork.svg +0 -3
- data/app/assets/icons/solid/code-merge.svg +0 -3
- data/app/assets/icons/solid/code-pull-request.svg +0 -3
- data/app/assets/icons/solid/cog.svg +0 -3
- data/app/assets/icons/solid/column.svg +0 -3
- data/app/assets/icons/solid/computer-speaker.svg +0 -4
- data/app/assets/icons/solid/credit-card.svg +0 -4
- data/app/assets/icons/solid/css.svg +0 -3
- data/app/assets/icons/solid/database.svg +0 -3
- data/app/assets/icons/solid/desktop-pc.svg +0 -3
- data/app/assets/icons/solid/discord.svg +0 -3
- data/app/assets/icons/solid/download.svg +0 -4
- data/app/assets/icons/solid/draw-square.svg +0 -4
- data/app/assets/icons/solid/dribbble.svg +0 -3
- data/app/assets/icons/solid/dropbox.svg +0 -4
- data/app/assets/icons/solid/edit.svg +0 -4
- data/app/assets/icons/solid/envelope-open.svg +0 -4
- data/app/assets/icons/solid/envelope.svg +0 -4
- data/app/assets/icons/solid/exclamation-circle.svg +0 -3
- data/app/assets/icons/solid/eye-slash.svg +0 -5
- data/app/assets/icons/solid/eye.svg +0 -3
- data/app/assets/icons/solid/face-explode.svg +0 -3
- data/app/assets/icons/solid/face-grin-stars.svg +0 -3
- data/app/assets/icons/solid/face-grin.svg +0 -3
- data/app/assets/icons/solid/face-laugh.svg +0 -3
- data/app/assets/icons/solid/facebook.svg +0 -3
- data/app/assets/icons/solid/file-chart-bar.svg +0 -3
- data/app/assets/icons/solid/file-check.svg +0 -4
- data/app/assets/icons/solid/file-circle-plus.svg +0 -4
- data/app/assets/icons/solid/file-clone.svg +0 -4
- data/app/assets/icons/solid/file-code.svg +0 -3
- data/app/assets/icons/solid/file-copy-alt.svg +0 -4
- data/app/assets/icons/solid/file-copy.svg +0 -4
- data/app/assets/icons/solid/file-csv.svg +0 -3
- data/app/assets/icons/solid/file-export.svg +0 -3
- data/app/assets/icons/solid/file-image.svg +0 -3
- data/app/assets/icons/solid/file-import.svg +0 -3
- data/app/assets/icons/solid/file-invoice.svg +0 -3
- data/app/assets/icons/solid/file-lines.svg +0 -3
- data/app/assets/icons/solid/file-music.svg +0 -3
- data/app/assets/icons/solid/file-paste.svg +0 -4
- data/app/assets/icons/solid/file-pdf.svg +0 -3
- data/app/assets/icons/solid/file-pen.svg +0 -4
- data/app/assets/icons/solid/file-ppt.svg +0 -3
- data/app/assets/icons/solid/file-search.svg +0 -3
- data/app/assets/icons/solid/file-shield.svg +0 -4
- data/app/assets/icons/solid/file-video.svg +0 -3
- data/app/assets/icons/solid/file-word.svg +0 -3
- data/app/assets/icons/solid/file-zip.svg +0 -3
- data/app/assets/icons/solid/file.svg +0 -3
- data/app/assets/icons/solid/filter.svg +0 -3
- data/app/assets/icons/solid/fire.svg +0 -3
- data/app/assets/icons/solid/flag.svg +0 -3
- data/app/assets/icons/solid/flowbite.svg +0 -6
- data/app/assets/icons/solid/folder-arrow-right.svg +0 -3
- data/app/assets/icons/solid/folder-duplicate.svg +0 -4
- data/app/assets/icons/solid/folder-open.svg +0 -3
- data/app/assets/icons/solid/folder-plus.svg +0 -3
- data/app/assets/icons/solid/folder.svg +0 -3
- data/app/assets/icons/solid/forward-step.svg +0 -3
- data/app/assets/icons/solid/forward.svg +0 -3
- data/app/assets/icons/solid/gift-box.svg +0 -3
- data/app/assets/icons/solid/github.svg +0 -3
- data/app/assets/icons/solid/globe.svg +0 -3
- data/app/assets/icons/solid/google.svg +0 -3
- data/app/assets/icons/solid/grid-plus.svg +0 -3
- data/app/assets/icons/solid/grid.svg +0 -3
- data/app/assets/icons/solid/headphones.svg +0 -3
- data/app/assets/icons/solid/heart.svg +0 -3
- data/app/assets/icons/solid/home.svg +0 -3
- data/app/assets/icons/solid/hourglass.svg +0 -3
- data/app/assets/icons/solid/html.svg +0 -3
- data/app/assets/icons/solid/image.svg +0 -4
- data/app/assets/icons/solid/inbox-full.svg +0 -3
- data/app/assets/icons/solid/inbox.svg +0 -3
- data/app/assets/icons/solid/indent.svg +0 -3
- data/app/assets/icons/solid/info-circle.svg +0 -3
- data/app/assets/icons/solid/keyboard.svg +0 -3
- data/app/assets/icons/solid/label.svg +0 -3
- data/app/assets/icons/solid/landmark.svg +0 -4
- data/app/assets/icons/solid/layers.svg +0 -4
- data/app/assets/icons/solid/life-saver.svg +0 -3
- data/app/assets/icons/solid/lightbulb.svg +0 -3
- data/app/assets/icons/solid/linkedin.svg +0 -4
- data/app/assets/icons/solid/list-music.svg +0 -3
- data/app/assets/icons/solid/lock-open.svg +0 -3
- data/app/assets/icons/solid/lock-time.svg +0 -4
- data/app/assets/icons/solid/lock.svg +0 -3
- data/app/assets/icons/solid/mail-box.svg +0 -3
- data/app/assets/icons/solid/map-pin-alt.svg +0 -3
- data/app/assets/icons/solid/map-pin.svg +0 -3
- data/app/assets/icons/solid/message-caption.svg +0 -3
- data/app/assets/icons/solid/message-dots.svg +0 -3
- data/app/assets/icons/solid/messages.svg +0 -4
- data/app/assets/icons/solid/microphone.svg +0 -4
- data/app/assets/icons/solid/mobile-phone.svg +0 -3
- data/app/assets/icons/solid/moon.svg +0 -3
- data/app/assets/icons/solid/newspaper.svg +0 -3
- data/app/assets/icons/solid/npm.svg +0 -3
- data/app/assets/icons/solid/outdent.svg +0 -3
- data/app/assets/icons/solid/palette.svg +0 -3
- data/app/assets/icons/solid/paper-plane.svg +0 -3
- data/app/assets/icons/solid/paragraph.svg +0 -3
- data/app/assets/icons/solid/pause.svg +0 -3
- data/app/assets/icons/solid/pen-nib.svg +0 -3
- data/app/assets/icons/solid/pen.svg +0 -3
- data/app/assets/icons/solid/phone.svg +0 -3
- data/app/assets/icons/solid/play.svg +0 -3
- data/app/assets/icons/solid/printer.svg +0 -3
- data/app/assets/icons/solid/profile-card.svg +0 -3
- data/app/assets/icons/solid/question-circle.svg +0 -3
- data/app/assets/icons/solid/quote.svg +0 -3
- data/app/assets/icons/solid/react.svg +0 -4
- data/app/assets/icons/solid/receipt.svg +0 -3
- data/app/assets/icons/solid/rectangle-list.svg +0 -3
- data/app/assets/icons/solid/reply-all.svg +0 -3
- data/app/assets/icons/solid/reply.svg +0 -3
- data/app/assets/icons/solid/rocket.svg +0 -3
- data/app/assets/icons/solid/sale-percent.svg +0 -3
- data/app/assets/icons/solid/scale-balanced.svg +0 -3
- data/app/assets/icons/solid/search.svg +0 -4
- data/app/assets/icons/solid/share-all.svg +0 -3
- data/app/assets/icons/solid/share-nodes.svg +0 -3
- data/app/assets/icons/solid/shield-check.svg +0 -3
- data/app/assets/icons/solid/shield.svg +0 -3
- data/app/assets/icons/solid/shopping-bag.svg +0 -3
- data/app/assets/icons/solid/stackoverflow.svg +0 -4
- data/app/assets/icons/solid/star-half-stroke.svg +0 -3
- data/app/assets/icons/solid/star-half.svg +0 -3
- data/app/assets/icons/solid/star.svg +0 -3
- data/app/assets/icons/solid/store.svg +0 -3
- data/app/assets/icons/solid/sun.svg +0 -3
- data/app/assets/icons/solid/swatchbook.svg +0 -3
- data/app/assets/icons/solid/table-column.svg +0 -3
- data/app/assets/icons/solid/table-row.svg +0 -3
- data/app/assets/icons/solid/tablet.svg +0 -3
- data/app/assets/icons/solid/tag.svg +0 -3
- data/app/assets/icons/solid/tailwind.svg +0 -3
- data/app/assets/icons/solid/terminal.svg +0 -3
- data/app/assets/icons/solid/thumbs-down.svg +0 -3
- data/app/assets/icons/solid/thumbs-up.svg +0 -3
- data/app/assets/icons/solid/ticket.svg +0 -3
- data/app/assets/icons/solid/trash-bin.svg +0 -3
- data/app/assets/icons/solid/truck.svg +0 -3
- data/app/assets/icons/solid/twitter.svg +0 -3
- data/app/assets/icons/solid/upload.svg +0 -3
- data/app/assets/icons/solid/user-add.svg +0 -3
- data/app/assets/icons/solid/user-circle.svg +0 -3
- data/app/assets/icons/solid/user-edit.svg +0 -3
- data/app/assets/icons/solid/user-headset.svg +0 -3
- data/app/assets/icons/solid/user-remove.svg +0 -3
- data/app/assets/icons/solid/user-settings.svg +0 -3
- data/app/assets/icons/solid/user.svg +0 -3
- data/app/assets/icons/solid/users-group.svg +0 -3
- data/app/assets/icons/solid/users.svg +0 -3
- data/app/assets/icons/solid/video-camera.svg +0 -3
- data/app/assets/icons/solid/volume-down.svg +0 -4
- data/app/assets/icons/solid/volume-up.svg +0 -5
- data/app/assets/icons/solid/vue.svg +0 -3
- data/app/assets/icons/solid/wallet.svg +0 -4
- data/app/assets/icons/solid/wand-magic-sparkles.svg +0 -4
- data/app/assets/icons/solid/window-restore.svg +0 -4
- data/app/assets/icons/solid/window.svg +0 -3
- data/app/assets/icons/solid/youtube.svg +0 -3
- data/app/assets/icons/solid/zoom-in.svg +0 -3
- data/app/assets/icons/solid/zoom-out.svg +0 -3
- data/app/views/components/action_button/action_button_component.html.erb +0 -7
- data/app/views/components/action_button/action_button_component.rb +0 -15
- data/app/views/components/attributes.rb +0 -184
- data/app/views/components/base.rb +0 -29
- data/app/views/components/block/block_component.html.erb +0 -3
- data/app/views/components/block/block_component.rb +0 -44
- data/app/views/components/breadcrumbs/breadcrumbs_component.html.erb +0 -96
- data/app/views/components/breadcrumbs/breadcrumbs_component.rb +0 -9
- data/app/views/components/button/button_component.html.erb +0 -11
- data/app/views/components/button/button_component.rb +0 -128
- data/app/views/components/dyna_frame_content/dyna_frame_content_component.html.erb +0 -8
- data/app/views/components/dyna_frame_content/dyna_frame_content_component.rb +0 -6
- data/app/views/components/dyna_frame_host/dyna_frame_host_component.html.erb +0 -3
- data/app/views/components/dyna_frame_host/dyna_frame_host_component.rb +0 -18
- data/app/views/components/empty_card/empty_card_component.html.erb +0 -6
- data/app/views/components/empty_card/empty_card_component.rb +0 -7
- data/app/views/components/form/form_builder.rb +0 -75
- data/app/views/components/form/form_component.html.erb +0 -73
- data/app/views/components/form/form_component.rb +0 -23
- data/app/views/components/has_many_panel/has_many_panel_component.html.erb +0 -25
- data/app/views/components/has_many_panel/has_many_panel_component.rb +0 -16
- data/app/views/components/header/header_component.html.erb +0 -1
- data/app/views/components/header/header_component.rb +0 -7
- data/app/views/components/interactive_action_form/interactive_action_form_component.html.erb +0 -39
- data/app/views/components/interactive_action_form/interactive_action_form_component.rb +0 -8
- data/app/views/components/nav_grid_menu/nav_grid_menu_component.html.erb +0 -24
- data/app/views/components/nav_grid_menu/nav_grid_menu_component.rb +0 -23
- data/app/views/components/nav_grid_menu_item/nav_grid_menu_item_component.html.erb +0 -4
- data/app/views/components/nav_grid_menu_item/nav_grid_menu_item_component.rb +0 -20
- data/app/views/components/nav_user/nav_user_component.html.erb +0 -50
- data/app/views/components/nav_user/nav_user_component.rb +0 -32
- data/app/views/components/nav_user_link/nav_user_link_component.html.erb +0 -7
- data/app/views/components/nav_user_link/nav_user_link_component.rb +0 -23
- data/app/views/components/nav_user_section/nav_user_section_component.html.erb +0 -7
- data/app/views/components/nav_user_section/nav_user_section_component.rb +0 -18
- data/app/views/components/nested_resource_form_fields/nested_resource_form_fields_component.html.erb +0 -64
- data/app/views/components/nested_resource_form_fields/nested_resource_form_fields_component.rb +0 -29
- data/app/views/components/pagination/pagination_component.html.erb +0 -6
- data/app/views/components/pagination/pagination_component.rb +0 -94
- data/app/views/components/panel/panel_component.html.erb +0 -17
- data/app/views/components/panel/panel_component.rb +0 -17
- data/app/views/components/resource_header/resource_header_component.html.erb +0 -83
- data/app/views/components/resource_header/resource_header_component.rb +0 -30
- data/app/views/components/resource_layout/resource_layout_component.html.erb +0 -53
- data/app/views/components/resource_layout/resource_layout_component.rb +0 -41
- data/app/views/components/sidebar/sidebar_component.html.erb +0 -69
- data/app/views/components/sidebar/sidebar_component.rb +0 -23
- data/app/views/components/sidebar_menu/sidebar_menu_component.html.erb +0 -5
- data/app/views/components/sidebar_menu/sidebar_menu_component.rb +0 -17
- data/app/views/components/sidebar_menu_item/sidebar_menu_item_component.html.erb +0 -64
- data/app/views/components/sidebar_menu_item/sidebar_menu_item_component.rb +0 -52
- data/app/views/components/skeleton/table/table_component.html.erb +0 -18
- data/app/views/components/skeleton/table/table_component.rb +0 -6
- data/app/views/components/table/table_component.html.erb +0 -43
- data/app/views/components/table/table_component.rb +0 -159
- data/app/views/components/table_search_input/table_search_input_component.html.erb +0 -48
- data/app/views/components/table_search_input/table_search_input_component.rb +0 -15
- data/app/views/components/table_toolbar/table_toolbar_component.html.erb +0 -7
- data/app/views/components/table_toolbar/table_toolbar_component.rb +0 -17
- data/app/views/components/toolbar/toolbar_component.html.erb +0 -67
- data/app/views/components/toolbar/toolbar_component.rb +0 -26
- data/app/views/layouts/resource.html copy.erb +0 -49
- data/app/views/plutonium/_resource_header.html copy.erb +0 -287
- data/lib/generators/pu/gen/component/component_generator.rb +0 -99
- data/lib/generators/pu/gen/component/templates/component.html.erb.tt +0 -3
- data/lib/generators/pu/gen/component/templates/component.rb.tt +0 -15
- data/lib/generators/pu/gen/component/templates/controller.js.tt +0 -8
- data/lib/plutonium/builders/menus/sidebar_menu.rb.bk +0 -26
- data/lib/plutonium/builders/menus/sidebar_menu_item.rb.bk +0 -28
- data/lib/plutonium/component_registry.rb +0 -19
- data/lib/plutonium/core/action.rb +0 -49
- data/lib/plutonium/core/actions/basic_action.rb +0 -16
- data/lib/plutonium/core/actions/collection.rb +0 -37
- data/lib/plutonium/core/actions/destroy_action.rb +0 -23
- data/lib/plutonium/core/actions/edit_action.rb +0 -21
- data/lib/plutonium/core/actions/interactive_action.rb +0 -64
- data/lib/plutonium/core/actions/new_action.rb +0 -20
- data/lib/plutonium/core/actions/show_action.rb +0 -19
- data/lib/plutonium/core/associations/renderers/base.rb +0 -77
- data/lib/plutonium/core/associations/renderers/factory.rb +0 -36
- data/lib/plutonium/core/associations/renderers/has_many_renderer.rb +0 -18
- data/lib/plutonium/core/autodiscovery/association_renderer_discoverer.rb +0 -31
- data/lib/plutonium/core/autodiscovery/discoverer.rb +0 -15
- data/lib/plutonium/core/autodiscovery/input_discoverer.rb +0 -31
- data/lib/plutonium/core/autodiscovery/renderer_discoverer.rb +0 -31
- data/lib/plutonium/core/definers/action_definer.rb +0 -25
- data/lib/plutonium/core/definers/association_renderer_definer.rb +0 -33
- data/lib/plutonium/core/definers/field_definer.rb +0 -19
- data/lib/plutonium/core/definers/field_input_definer.rb +0 -77
- data/lib/plutonium/core/definers/field_renderer_definer.rb +0 -37
- data/lib/plutonium/core/fields/inputs/attachment_input.rb +0 -24
- data/lib/plutonium/core/fields/inputs/base.rb +0 -110
- data/lib/plutonium/core/fields/inputs/belongs_to_association_input.rb +0 -15
- data/lib/plutonium/core/fields/inputs/checkbox_input.rb +0 -15
- data/lib/plutonium/core/fields/inputs/date_time_input.rb +0 -15
- data/lib/plutonium/core/fields/inputs/factory.rb +0 -50
- data/lib/plutonium/core/fields/inputs/has_many_association_input.rb +0 -15
- data/lib/plutonium/core/fields/inputs/nested_input.rb +0 -72
- data/lib/plutonium/core/fields/inputs/noop_input.rb +0 -16
- data/lib/plutonium/core/fields/inputs/phone_input.rb +0 -22
- data/lib/plutonium/core/fields/inputs/polymorphic_belongs_to_association_input.rb +0 -48
- data/lib/plutonium/core/fields/inputs/simple_form_association_input.rb +0 -26
- data/lib/plutonium/core/fields/inputs/simple_form_input.rb +0 -13
- data/lib/plutonium/core/fields/renderers/association_renderer.rb +0 -28
- data/lib/plutonium/core/fields/renderers/attachment_renderer.rb +0 -21
- data/lib/plutonium/core/fields/renderers/base.rb +0 -83
- data/lib/plutonium/core/fields/renderers/basic_renderer.rb +0 -13
- data/lib/plutonium/core/fields/renderers/factory.rb +0 -37
- data/lib/plutonium/core/renderable.rb +0 -20
- data/lib/plutonium/core/ui/collection.rb +0 -18
- data/lib/plutonium/core/ui/detail.rb +0 -15
- data/lib/plutonium/core/ui/form.rb +0 -12
- data/lib/plutonium/helpers/action_buttons_helper.rb +0 -32
- data/lib/plutonium/helpers/component_helper.rb +0 -14
- data/lib/plutonium/helpers/form_helper.rb +0 -50
- data/lib/plutonium/icons.rb +0 -32
- data/lib/plutonium/preserved__/field.rb.bk +0 -65
- data/lib/plutonium/preserved__/input.rb.bk +0 -93
- data/lib/plutonium/ui/table/components/pagy_page_info.rb +0 -70
- data/src/js/controllers/has_many_panel_controller.js +0 -8
- data/src/js/controllers/interactive_action_form_controller.js +0 -13
- data/src/js/controllers/nav_grid_menu_controller.js +0 -8
- data/src/js/controllers/nav_grid_menu_item_controller.js +0 -8
- data/src/js/controllers/nav_user_controller.js +0 -8
- data/src/js/controllers/nav_user_link_controller.js +0 -8
- data/src/js/controllers/nav_user_section_controller.js +0 -8
- data/src/js/controllers/resource_layout_controller.js +0 -8
- data/src/js/controllers/sidebar_controller.js +0 -8
- data/src/js/controllers/sidebar_menu_controller.js +0 -8
- data/src/js/controllers/sidebar_menu_item_controller.js +0 -8
- data/src/js/controllers/table_controller.js +0 -8
- data/src/js/controllers/table_search_input_controller.js +0 -8
- data/src/js/controllers/table_toolbar_controller.js +0 -8
- data/src/js/controllers/toolbar_controller.js +0 -8
data/app/assets/plutonium.css
CHANGED
@@ -1 +1 @@
|
|
1
|
-
/*! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:Lato,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}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-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-feature-settings:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-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{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}[multiple],[type=date],[type=datetime-local],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],input:where(:not([type])),select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-radius:0;border-width:1px;font-size:1rem;line-height:1.5rem;padding:.5rem .75rem;--tw-shadow:0 0 #0000}[multiple]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=email]:focus,[type=month]:focus,[type=number]:focus,[type=password]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=time]:focus,[type=url]:focus,[type=week]:focus,input:where(:not([type])):focus,select:focus,textarea:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#1c64f2;--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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);border-color:#1c64f2;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}::-webkit-date-and-time-value{text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-meridiem-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-year-field{padding-bottom:0;padding-top:0}select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}[multiple],[size]:where(select:not([size="1"])){background-image:none;background-position:0 0;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox]:checked,[type=radio]:checked{background-color:currentColor;background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}[type=checkbox]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0'/%3E%3C/svg%3E")}@media (forced-colors:active) {[type=checkbox]:checked,[type=radio]:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=checkbox]:checked:focus,[type=checkbox]:checked:hover,[type=radio]:checked:focus,[type=radio]:checked:hover{background-color:currentColor;border-color:transparent}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3E%3C/svg%3E");background-size:100% 100%}@media (forced-colors:active) {[type=checkbox]:indeterminate{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}.tooltip-arrow,.tooltip-arrow:before{background:inherit;height:8px;position:absolute;width:8px}.tooltip-arrow{visibility:hidden}.tooltip-arrow:before{content:"";transform:rotate(45deg);visibility:visible}[data-tooltip-style^=light]+.tooltip>.tooltip-arrow:before{border-color:#e5e7eb;border-style:solid}[data-tooltip-style^=light]+.tooltip[data-popper-placement^=top]>.tooltip-arrow:before{border-bottom-width:1px;border-right-width:1px}[data-tooltip-style^=light]+.tooltip[data-popper-placement^=right]>.tooltip-arrow:before{border-bottom-width:1px;border-left-width:1px}[data-tooltip-style^=light]+.tooltip[data-popper-placement^=bottom]>.tooltip-arrow:before{border-left-width:1px;border-top-width:1px}[data-tooltip-style^=light]+.tooltip[data-popper-placement^=left]>.tooltip-arrow:before{border-right-width:1px;border-top-width:1px}.tooltip[data-popper-placement^=top]>.tooltip-arrow{bottom:-4px}.tooltip[data-popper-placement^=bottom]>.tooltip-arrow{top:-4px}.tooltip[data-popper-placement^=left]>.tooltip-arrow{right:-4px}.tooltip[data-popper-placement^=right]>.tooltip-arrow{left:-4px}.tooltip.invisible>.tooltip-arrow:before{visibility:hidden}[data-popper-arrow],[data-popper-arrow]:before{background:inherit;height:8px;position:absolute;width:8px}[data-popper-arrow]{visibility:hidden}[data-popper-arrow]:after,[data-popper-arrow]:before{content:"";transform:rotate(45deg);visibility:visible}[data-popper-arrow]:after{background:inherit;height:9px;position:absolute;width:9px}[role=tooltip]>[data-popper-arrow]:before{border-color:#e5e7eb;border-style:solid}.dark [role=tooltip]>[data-popper-arrow]:before{border-color:#4b5563;border-style:solid}[role=tooltip]>[data-popper-arrow]:after{border-color:#e5e7eb;border-style:solid}.dark [role=tooltip]>[data-popper-arrow]:after{border-color:#4b5563;border-style:solid}[data-popover][role=tooltip][data-popper-placement^=top]>[data-popper-arrow]:after,[data-popover][role=tooltip][data-popper-placement^=top]>[data-popper-arrow]:before{border-bottom-width:1px;border-right-width:1px}[data-popover][role=tooltip][data-popper-placement^=right]>[data-popper-arrow]:after,[data-popover][role=tooltip][data-popper-placement^=right]>[data-popper-arrow]:before{border-bottom-width:1px;border-left-width:1px}[data-popover][role=tooltip][data-popper-placement^=bottom]>[data-popper-arrow]:after,[data-popover][role=tooltip][data-popper-placement^=bottom]>[data-popper-arrow]:before{border-left-width:1px;border-top-width:1px}[data-popover][role=tooltip][data-popper-placement^=left]>[data-popper-arrow]:after,[data-popover][role=tooltip][data-popper-placement^=left]>[data-popper-arrow]:before{border-right-width:1px;border-top-width:1px}[data-popover][role=tooltip][data-popper-placement^=top]>[data-popper-arrow]{bottom:-5px}[data-popover][role=tooltip][data-popper-placement^=bottom]>[data-popper-arrow]{top:-5px}[data-popover][role=tooltip][data-popper-placement^=left]>[data-popper-arrow]{right:-5px}[data-popover][role=tooltip][data-popper-placement^=right]>[data-popper-arrow]{left:-5px}[role=tooltip].invisible>[data-popper-arrow]:after,[role=tooltip].invisible>[data-popper-arrow]:before{visibility:hidden}[multiple],[type=date],[type=datetime-local],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-radius:0;border-width:1px;font-size:1rem;line-height:1.5rem;padding:.5rem .75rem;--tw-shadow:0 0 #0000}[multiple]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=email]:focus,[type=month]:focus,[type=number]:focus,[type=password]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=time]:focus,[type=url]:focus,[type=week]:focus,select:focus,textarea:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#1c64f2;--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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);border-color:#1c64f2;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em}select:not([size]){background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' aria-hidden='true' viewBox='0 0 10 6'%3E%3Cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 1 4 4 4-4'/%3E%3C/svg%3E");background-position:right .75rem center;background-repeat:no-repeat;background-size:.75em .75em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}:is([dir=rtl]) select:not([size]){background-position:left .75rem center;padding-left:0;padding-right:.75rem}[multiple]{background-image:none;background-position:0 0;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-origin:border-box;border-color:#6b7280;border-width:1px;color:#1c64f2;display:inline-block;flex-shrink:0;height:1rem;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;width:1rem;--tw-shadow:0 0 #0000}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:2px;--tw-ring-offset-color:#fff;--tw-ring-color:#1c64f2;--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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.dark [type=checkbox]:checked,.dark [type=radio]:checked,[type=checkbox]:checked,[type=radio]:checked{background-color:currentColor;background-position:50%;background-repeat:no-repeat;background-size:.55em .55em;border-color:transparent}[type=checkbox]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' aria-hidden='true' viewBox='0 0 16 12'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M1 5.917 5.724 10.5 15 1.5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:.55em .55em;-webkit-print-color-adjust:exact;print-color-adjust:exact}.dark [type=radio]:checked,[type=radio]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E");background-size:1em 1em}[type=checkbox]:indeterminate{background-color:currentColor;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' aria-hidden='true' viewBox='0 0 16 12'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M.5 6h14'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:.55em .55em;border-color:transparent;-webkit-print-color-adjust:exact;print-color-adjust:exact}[type=checkbox]:indeterminate:focus,[type=checkbox]:indeterminate:hover{background-color:currentColor;border-color:transparent}[type=file]{background:unset;border-color:inherit;border-radius:0;border-width:0;font-size:unset;line-height:inherit;padding:0}[type=file]:focus{outline:1px auto inherit}input[type=file]::file-selector-button{background:#1f2937;border:0;color:#fff;cursor:pointer;font-size:.875rem;font-weight:500;margin-inline-end:1rem;margin-inline-start:-1rem;padding:.625rem 1rem .625rem 2rem}input[type=file]::file-selector-button:hover{background:#374151}:is([dir=rtl]) input[type=file]::file-selector-button{padding-left:1rem;padding-right:2rem}.dark input[type=file]::file-selector-button{background:#4b5563;color:#fff}.dark input[type=file]::file-selector-button:hover{background:#6b7280}input[type=range]::-webkit-slider-thumb{appearance:none;-moz-appearance:none;-webkit-appearance:none;background:#1c64f2;border:0;border-radius:9999px;cursor:pointer;height:1.25rem;width:1.25rem}input[type=range]:disabled::-webkit-slider-thumb{background:#9ca3af}.dark input[type=range]:disabled::-webkit-slider-thumb{background:#6b7280}input[type=range]:focus::-webkit-slider-thumb{outline:2px solid transparent;outline-offset:2px;--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(4px + 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:1px;--tw-ring-color:rgb(164 202 254/var(--tw-ring-opacity))}input[type=range]::-moz-range-thumb{appearance:none;-moz-appearance:none;-webkit-appearance:none;background:#1c64f2;border:0;border-radius:9999px;cursor:pointer;height:1.25rem;width:1.25rem}input[type=range]:disabled::-moz-range-thumb{background:#9ca3af}.dark input[type=range]:disabled::-moz-range-thumb{background:#6b7280}input[type=range]::-moz-range-progress{background:#3f83f8}input[type=range]::-ms-fill-lower{background:#3f83f8}.toggle-bg:after{background:#fff;border-color:#d1d5db;border-radius:9999px;border-width:1px;box-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color);content:"";height:1.25rem;left:.125rem;position:absolute;top:.125rem;transition-duration:.15s;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;width:1.25rem}input:checked+.toggle-bg:after{border-color:#fff;transform:translateX(100%);}input:checked+.toggle-bg{background:#1c64f2;border-color:#1c64f2}*,: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:rgba(63,131,248,.5);--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: }::backdrop{--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:rgba(63,131,248,.5);--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:475px){.container{max-width:475px}}@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}}.format{color:var(--tw-prose-body);max-width:65ch}.format :where(p):not(:where([class~=not-format] *)){margin-bottom:1.25em;margin-top:1.25em}.format :where([class~=lead]):not(:where([class~=not-format] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.format :where(a):not(:where([class~=not-format] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}.format :where(strong):not(:where([class~=not-format] *)){color:var(--tw-prose-bold);font-weight:600}.format :where(a strong):not(:where([class~=not-format] *)){color:inherit}.format :where(blockquote strong):not(:where([class~=not-format] *)){color:inherit}.format :where(thead th strong):not(:where([class~=not-format] *)){color:inherit}.format :where(ol):not(:where([class~=not-format] *)){list-style-type:decimal;margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}.format :where(ol[type=A]):not(:where([class~=not-format] *)){list-style-type:upper-alpha}.format :where(ol[type=a]):not(:where([class~=not-format] *)){list-style-type:lower-alpha}.format :where(ol[type=A s]):not(:where([class~=not-format] *)){list-style-type:upper-alpha}.format :where(ol[type=a s]):not(:where([class~=not-format] *)){list-style-type:lower-alpha}.format :where(ol[type=I]):not(:where([class~=not-format] *)){list-style-type:upper-roman}.format :where(ol[type=i]):not(:where([class~=not-format] *)){list-style-type:lower-roman}.format :where(ol[type=I s]):not(:where([class~=not-format] *)){list-style-type:upper-roman}.format :where(ol[type=i s]):not(:where([class~=not-format] *)){list-style-type:lower-roman}.format :where(ol[type="1"]):not(:where([class~=not-format] *)){list-style-type:decimal}.format :where(ul):not(:where([class~=not-format] *)){list-style-type:disc;margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}.format :where(ol>li):not(:where([class~=not-format] *))::marker{color:var(--tw-prose-counters);font-weight:400}.format :where(ul>li):not(:where([class~=not-format] *))::marker{color:var(--tw-prose-bullets)}.format :where(dt):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}.format :where(hr):not(:where([class~=not-format] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-bottom:3em;margin-top:3em}.format :where(blockquote):not(:where([class~=not-format] *)){border-inline-start-color:var(--tw-prose-quote-borders);border-inline-start-width:.25rem;color:var(--tw-prose-quotes);font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-inline-start:1em;quotes:"\201C""\201D""\2018""\2019"}.format :where(blockquote p:first-of-type):not(:where([class~=not-format] *)):before{content:open-quote}.format :where(blockquote p:last-of-type):not(:where([class~=not-format] *)):after{content:close-quote}.format :where(h1):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.format :where(h1 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:900}.format :where(h2):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.format :where(h2 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:800}.format :where(h3):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.format :where(h3 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:700}.format :where(h4):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.format :where(h4 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:700}.format :where(img):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.format :where(picture):not(:where([class~=not-format] *)){display:block;margin-bottom:2em;margin-top:2em}.format :where(video):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.format :where(kbd):not(:where([class~=not-format] *)){border-radius:.3125rem;box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows)/10%),0 3px 0 rgb(var(--tw-prose-kbd-shadows)/10%);color:var(--tw-prose-kbd);font-family:inherit;font-size:.875em;font-weight:500;padding-inline-end:.375em;padding-bottom:.1875em;padding-top:.1875em;padding-inline-start:.375em}.format :where(code):not(:where([class~=not-format] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.format :where(code):not(:where([class~=not-format] *)):before{content:"`"}.format :where(code):not(:where([class~=not-format] *)):after{content:"`"}.format :where(a code):not(:where([class~=not-format] *)){color:inherit}.format :where(h1 code):not(:where([class~=not-format] *)){color:inherit}.format :where(h2 code):not(:where([class~=not-format] *)){color:inherit;font-size:.875em}.format :where(h3 code):not(:where([class~=not-format] *)){color:inherit;font-size:.9em}.format :where(h4 code):not(:where([class~=not-format] *)){color:inherit}.format :where(blockquote code):not(:where([class~=not-format] *)){color:inherit}.format :where(thead th code):not(:where([class~=not-format] *)){color:inherit}.format :where(pre):not(:where([class~=not-format] *)){background-color:var(--tw-prose-pre-bg);border-radius:.375rem;color:var(--tw-prose-pre-code);font-size:.875em;font-weight:400;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;overflow-x:auto;padding-inline-end:1.1428571em;padding-bottom:.8571429em;padding-top:.8571429em;padding-inline-start:1.1428571em}.format :where(pre code):not(:where([class~=not-format] *)){background-color:transparent;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;padding:0}.format :where(pre code):not(:where([class~=not-format] *)):before{content:none}.format :where(pre code):not(:where([class~=not-format] *)):after{content:none}.format :where(table):not(:where([class~=not-format] *)){font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;width:100%}.format :where(thead):not(:where([class~=not-format] *)){border-bottom-color:var(--tw-prose-th-borders);border-bottom-width:1px}.format :where(thead th):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em;vertical-align:bottom}.format :where(tbody tr):not(:where([class~=not-format] *)){border-bottom-color:var(--tw-prose-td-borders);border-bottom-width:1px}.format :where(tbody tr:last-child):not(:where([class~=not-format] *)){border-bottom-width:0}.format :where(tbody td):not(:where([class~=not-format] *)){vertical-align:baseline}.format :where(tfoot):not(:where([class~=not-format] *)){border-top-color:var(--tw-prose-th-borders);border-top-width:1px}.format :where(tfoot td):not(:where([class~=not-format] *)){vertical-align:top}.format :where(th,td):not(:where([class~=not-format] *)){text-align:start}.format :where(figure>*):not(:where([class~=not-format] *)){margin-bottom:0;margin-top:0}.format :where(figcaption):not(:where([class~=not-format] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.format{--tw-prose-body:#374151;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#111827;--tw-prose-bold:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-kbd:#111827;--tw-prose-kbd-shadows:17 24 39;--tw-prose-code:#111827;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:255 255 255;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:rgba(0,0,0,.5);--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;font-size:1rem;line-height:1.75}.format :where(picture>img):not(:where([class~=not-format] *)){margin-bottom:0;margin-top:0}.format :where(li):not(:where([class~=not-format] *)){margin-bottom:.5em;margin-top:.5em}.format :where(ol>li):not(:where([class~=not-format] *)){padding-inline-start:.375em}.format :where(ul>li):not(:where([class~=not-format] *)){padding-inline-start:.375em}.format :where(.format>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.format :where(.format>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format :where(.format>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format :where(.format>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format :where(.format>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.format :where(dl):not(:where([class~=not-format] *)){margin-bottom:1.25em;margin-top:1.25em}.format :where(dd):not(:where([class~=not-format] *)){margin-top:.5em;padding-inline-start:1.625em}.format :where(hr+*):not(:where([class~=not-format] *)){margin-top:0}.format :where(h2+*):not(:where([class~=not-format] *)){margin-top:0}.format :where(h3+*):not(:where([class~=not-format] *)){margin-top:0}.format :where(h4+*):not(:where([class~=not-format] *)){margin-top:0}.format :where(thead th:first-child):not(:where([class~=not-format] *)){padding-inline-start:0}.format :where(thead th:last-child):not(:where([class~=not-format] *)){padding-inline-end:0}.format :where(tbody td,tfoot td):not(:where([class~=not-format] *)){padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-top:.5714286em;padding-inline-start:.5714286em}.format :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-format] *)){padding-inline-start:0}.format :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-format] *)){padding-inline-end:0}.format :where(figure):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.format :where(.format>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format :where(.format>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-sm :where(.format>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.5714286em;margin-top:.5714286em}.format-sm :where(.format>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.1428571em}.format-sm :where(.format>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.1428571em}.format-sm :where(.format>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.1428571em}.format-sm :where(.format>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.1428571em}.format-sm :where(.format>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-sm :where(.format>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-base :where(.format>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.format-base :where(.format>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format-base :where(.format>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format-base :where(.format>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format-base :where(.format>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format-base :where(.format>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-base :where(.format>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-lg :where(.format>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8888889em;margin-top:.8888889em}.format-lg :where(.format>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-lg :where(.format>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-lg :where(.format>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-lg :where(.format>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-lg :where(.format>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-lg :where(.format>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-xl :where(.format>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8em;margin-top:.8em}.format-xl :where(.format>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.2em}.format-xl :where(.format>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.2em}.format-xl :where(.format>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.2em}.format-xl :where(.format>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.2em}.format-xl :where(.format>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-xl :where(.format>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-2xl :where(.format>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8333333em;margin-top:.8333333em}.format-2xl :where(.format>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-2xl :where(.format>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-2xl :where(.format>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-2xl :where(.format>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-2xl :where(.format>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-2xl :where(.format>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-primary{--tw-prose-body:#111827;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#0b6d71;--tw-prose-bold:#111827;--tw-prose-counters:#4b5563;--tw-prose-bullets:#4b5563;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#d1d5db;--tw-prose-captions:#374151;--tw-prose-code:#111827;--tw-prose-code-bg:#f0fdfd;--tw-prose-pre-code:#e0fafa;--tw-prose-pre-bg:#111827;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-th-bg:#f3f4f6;--tw-prose-invert-body:#fff;--tw-prose-invert-headings:#e6ecf1;--tw-prose-invert-lead:#678cab;--tw-prose-invert-links:#17b8be;--tw-prose-invert-bold:#e6ecf1;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#9ca3af;--tw-prose-invert-hr:#0a5558;--tw-prose-invert-quotes:#e6ecf1;--tw-prose-invert-quote-borders:#6b7280;--tw-prose-invert-captions:#9db3c7;--tw-prose-invert-code:#e6ecf1;--tw-prose-invert-code-bg:#042f30;--tw-prose-invert-pre-code:#084547;--tw-prose-invert-pre-bg:#e6ecf1;--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;--tw-prose-invert-th-bg:#1f2937}.pu-color-input::-webkit-color-swatch-wrapper{padding:0}.pu-color-input::-webkit-color-swatch{border-radius:.5rem;border-style:none}.pu-color-input::-moz-color-swatch{border-radius:.5rem;border-style:none}.CodeMirror{overflow:hidden;position:relative;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.CodeMirror:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.CodeMirror{direction:ltr}.CodeMirror-lines{padding:4px 0}.CodeMirror-scroll{height:100%;margin-bottom:-50px;margin-right:-50px;outline:none;overflow:scroll!important;padding-bottom:50px;position:relative;z-index:0}.CodeMirror-sizer{border-right:50px solid transparent;box-sizing:content-box;position:relative}.CodeMirror-gutter-filler,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-vscrollbar{display:none;outline:none;position:absolute;z-index:6}.CodeMirror-vscrollbar{overflow-x:hidden;overflow-y:scroll;right:0;top:0}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-x:scroll;overflow-y:hidden}.CodeMirror-scrollbar-filler{bottom:0;right:0}.CodeMirror-gutter-filler{bottom:0;left:0}.CodeMirror-gutters{border-right-width:1px;left:0;min-height:100%;position:absolute;top:0;z-index:3;--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))}.CodeMirror-gutters:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.CodeMirror-gutters{box-sizing:content-box;white-space:nowrap}.CodeMirror-linenumber{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.CodeMirror-linenumber:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.CodeMirror-linenumber{min-width:20px;padding:0 3px 0 5px;text-align:right;white-space:nowrap}.CodeMirror-cursor{border-left-width:1px;border-right-width:0;--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.CodeMirror-cursor:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.CodeMirror-cursor{pointer-events:none;position:absolute;width:0}.cm-fat-cursor .CodeMirror-cursor{background:#7e7}.CodeMirror pre.CodeMirror-line,.CodeMirror pre.CodeMirror-line-like{background:transparent;border-radius:0;border-width:0;font-family:inherit;font-size:inherit;margin:0;padding:0 4px;white-space:pre;word-wrap:normal;color:inherit;line-height:inherit;overflow:visible;position:relative;z-index:2;-webkit-tap-highlight-color:transparent;font-variant-ligatures:contextual}.CodeMirror-wrap pre.CodeMirror-line,.CodeMirror-wrap pre.CodeMirror-line-like{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-gutter{box-sizing:content-box;display:inline-block;height:100%;margin-bottom:-50px;vertical-align:top;white-space:normal}.CodeMirror-gutter-wrapper{background:none!important;border:none!important;position:absolute;z-index:4}.EasyMDEContainer{display:block}.EasyMDEContainer.sided--no-fullscreen{display:flex;flex-direction:row;flex-wrap:wrap}.EasyMDEContainer .CodeMirror{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem;border-width:1px;box-sizing:border-box;height:auto;overflow-wrap:break-word;z-index:0;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));padding:.625rem}.EasyMDEContainer .CodeMirror:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.EasyMDEContainer .CodeMirror-fullscreen{border-bottom-right-radius:0;border-right-width:0;bottom:0;height:auto;left:0;position:fixed;right:0;top:50px;z-index:40;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.EasyMDEContainer .CodeMirror-fullscreen:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.EasyMDEContainer .CodeMirror-sided{width:50%!important}.EasyMDEContainer.sided--no-fullscreen .CodeMirror-sided{border-bottom-right-radius:0;border-right-width:0;flex:1 1 0%;position:relative}.EasyMDEContainer .CodeMirror-placeholder{opacity:.5}.editor-toolbar{position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none}.editor-toolbar>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.25rem*var(--tw-space-x-reverse))}.editor-toolbar{border-left-width:1px;border-right-width:1px;border-top-left-radius:.5rem;border-top-right-radius:.5rem;border-top-width:1px;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));padding:.625rem}.editor-toolbar:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.editor-toolbar.fullscreen{border-width:0;box-sizing:border-box;height:50px;left:0;opacity:1;padding:.625rem 0;position:fixed;top:0;width:100%;z-index:50}.editor-toolbar button{background-color:transparent;border-color:transparent;border-radius:.25rem;border-width:1px;cursor:pointer;display:inline-block;font-weight:700;height:30px;margin:0;min-width:30px;padding:0 .375rem;text-align:center;white-space:nowrap;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity));text-decoration-line:none}.editor-toolbar button:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.editor-toolbar button:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.editor-toolbar button:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.editor-toolbar button.active{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.editor-toolbar button.active:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.editor-toolbar i.separator{border-left-color:rgb(209 213 219/var(--tw-border-opacity));border-left-width:1px;border-right-width:1px;display:inline-block;margin-left:.375rem;margin-right:.375rem;width:0;--tw-border-opacity:1;border-right-color:rgb(255 255 255/var(--tw-border-opacity));color:transparent;text-indent:-10px}.editor-toolbar i.separator:where(.dark,.dark *){border-left-color:rgb(75 85 99/var(--tw-border-opacity));--tw-border-opacity:1;border-right-color:rgb(31 41 55/var(--tw-border-opacity))}.editor-toolbar button:after{font-family:Arial,Helvetica Neue,Helvetica,sans-serif;font-size:65%;position:relative;top:2px;vertical-align:text-bottom}.editor-toolbar button.heading-1:after{content:"1"}.editor-toolbar button.heading-2:after{content:"2"}.editor-toolbar button.heading-3:after{content:"3"}.editor-toolbar button.heading-bigger:after{content:"▲"}.editor-toolbar button.heading-smaller:after{content:"▼"}.editor-preview{color:var(--tw-prose-body);max-width:65ch}.editor-preview :where(p):not(:where([class~=not-format] *)){margin-bottom:1.25em;margin-top:1.25em}.editor-preview :where([class~=lead]):not(:where([class~=not-format] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.editor-preview :where(a):not(:where([class~=not-format] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}.editor-preview :where(strong):not(:where([class~=not-format] *)){color:var(--tw-prose-bold);font-weight:600}.editor-preview :where(a strong):not(:where([class~=not-format] *)){color:inherit}.editor-preview :where(blockquote strong):not(:where([class~=not-format] *)){color:inherit}.editor-preview :where(thead th strong):not(:where([class~=not-format] *)){color:inherit}.editor-preview :where(ol):not(:where([class~=not-format] *)){list-style-type:decimal;margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}.editor-preview :where(ol[type=A]):not(:where([class~=not-format] *)){list-style-type:upper-alpha}.editor-preview :where(ol[type=a]):not(:where([class~=not-format] *)){list-style-type:lower-alpha}.editor-preview :where(ol[type=A s]):not(:where([class~=not-format] *)){list-style-type:upper-alpha}.editor-preview :where(ol[type=a s]):not(:where([class~=not-format] *)){list-style-type:lower-alpha}.editor-preview :where(ol[type=I]):not(:where([class~=not-format] *)){list-style-type:upper-roman}.editor-preview :where(ol[type=i]):not(:where([class~=not-format] *)){list-style-type:lower-roman}.editor-preview :where(ol[type=I s]):not(:where([class~=not-format] *)){list-style-type:upper-roman}.editor-preview :where(ol[type=i s]):not(:where([class~=not-format] *)){list-style-type:lower-roman}.editor-preview :where(ol[type="1"]):not(:where([class~=not-format] *)){list-style-type:decimal}.editor-preview :where(ul):not(:where([class~=not-format] *)){list-style-type:disc;margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}.editor-preview :where(ol>li):not(:where([class~=not-format] *))::marker{color:var(--tw-prose-counters);font-weight:400}.editor-preview :where(ul>li):not(:where([class~=not-format] *))::marker{color:var(--tw-prose-bullets)}.editor-preview :where(dt):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}.editor-preview :where(hr):not(:where([class~=not-format] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-bottom:3em;margin-top:3em}.editor-preview :where(blockquote):not(:where([class~=not-format] *)){border-inline-start-color:var(--tw-prose-quote-borders);border-inline-start-width:.25rem;color:var(--tw-prose-quotes);font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-inline-start:1em;quotes:"\201C""\201D""\2018""\2019"}.editor-preview :where(blockquote p:first-of-type):not(:where([class~=not-format] *)):before{content:open-quote}.editor-preview :where(blockquote p:last-of-type):not(:where([class~=not-format] *)):after{content:close-quote}.editor-preview :where(h1):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.editor-preview :where(h1 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:900}.editor-preview :where(h2):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.editor-preview :where(h2 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:800}.editor-preview :where(h3):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.editor-preview :where(h3 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:700}.editor-preview :where(h4):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.editor-preview :where(h4 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:700}.editor-preview :where(img):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.editor-preview :where(picture):not(:where([class~=not-format] *)){display:block;margin-bottom:2em;margin-top:2em}.editor-preview :where(video):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.editor-preview :where(kbd):not(:where([class~=not-format] *)){border-radius:.3125rem;box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows)/10%),0 3px 0 rgb(var(--tw-prose-kbd-shadows)/10%);color:var(--tw-prose-kbd);font-family:inherit;font-size:.875em;font-weight:500;padding-inline-end:.375em;padding-bottom:.1875em;padding-top:.1875em;padding-inline-start:.375em}.editor-preview :where(code):not(:where([class~=not-format] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.editor-preview :where(code):not(:where([class~=not-format] *)):before{content:"`"}.editor-preview :where(code):not(:where([class~=not-format] *)):after{content:"`"}.editor-preview :where(a code):not(:where([class~=not-format] *)){color:inherit}.editor-preview :where(h1 code):not(:where([class~=not-format] *)){color:inherit}.editor-preview :where(h2 code):not(:where([class~=not-format] *)){color:inherit;font-size:.875em}.editor-preview :where(h3 code):not(:where([class~=not-format] *)){color:inherit;font-size:.9em}.editor-preview :where(h4 code):not(:where([class~=not-format] *)){color:inherit}.editor-preview :where(blockquote code):not(:where([class~=not-format] *)){color:inherit}.editor-preview :where(thead th code):not(:where([class~=not-format] *)){color:inherit}.editor-preview :where(pre):not(:where([class~=not-format] *)){background-color:var(--tw-prose-pre-bg);border-radius:.375rem;color:var(--tw-prose-pre-code);font-size:.875em;font-weight:400;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;overflow-x:auto;padding-inline-end:1.1428571em;padding-bottom:.8571429em;padding-top:.8571429em;padding-inline-start:1.1428571em}.editor-preview :where(pre code):not(:where([class~=not-format] *)){background-color:transparent;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;padding:0}.editor-preview :where(pre code):not(:where([class~=not-format] *)):before{content:none}.editor-preview :where(pre code):not(:where([class~=not-format] *)):after{content:none}.editor-preview :where(table):not(:where([class~=not-format] *)){font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;width:100%}.editor-preview :where(thead):not(:where([class~=not-format] *)){border-bottom-color:var(--tw-prose-th-borders);border-bottom-width:1px}.editor-preview :where(thead th):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em;vertical-align:bottom}.editor-preview :where(tbody tr):not(:where([class~=not-format] *)){border-bottom-color:var(--tw-prose-td-borders);border-bottom-width:1px}.editor-preview :where(tbody tr:last-child):not(:where([class~=not-format] *)){border-bottom-width:0}.editor-preview :where(tbody td):not(:where([class~=not-format] *)){vertical-align:baseline}.editor-preview :where(tfoot):not(:where([class~=not-format] *)){border-top-color:var(--tw-prose-th-borders);border-top-width:1px}.editor-preview :where(tfoot td):not(:where([class~=not-format] *)){vertical-align:top}.editor-preview :where(th,td):not(:where([class~=not-format] *)){text-align:start}.editor-preview :where(figure>*):not(:where([class~=not-format] *)){margin-bottom:0;margin-top:0}.editor-preview :where(figcaption):not(:where([class~=not-format] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.editor-preview{--tw-prose-body:#374151;--tw-prose-links:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-kbd:#111827;--tw-prose-kbd-shadows:17 24 39;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:255 255 255;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:rgba(0,0,0,.5);font-size:1rem;line-height:1.75}.editor-preview :where(picture>img):not(:where([class~=not-format] *)){margin-bottom:0;margin-top:0}.editor-preview :where(li):not(:where([class~=not-format] *)){margin-bottom:.5em;margin-top:.5em}.editor-preview :where(ol>li):not(:where([class~=not-format] *)){padding-inline-start:.375em}.editor-preview :where(ul>li):not(:where([class~=not-format] *)){padding-inline-start:.375em}.editor-preview :where(.format>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.editor-preview :where(.format>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.editor-preview :where(.format>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.editor-preview :where(.format>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.editor-preview :where(.format>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.editor-preview :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.editor-preview :where(dl):not(:where([class~=not-format] *)){margin-bottom:1.25em;margin-top:1.25em}.editor-preview :where(dd):not(:where([class~=not-format] *)){margin-top:.5em;padding-inline-start:1.625em}.editor-preview :where(hr+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview :where(h2+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview :where(h3+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview :where(h4+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview :where(thead th:first-child):not(:where([class~=not-format] *)){padding-inline-start:0}.editor-preview :where(thead th:last-child):not(:where([class~=not-format] *)){padding-inline-end:0}.editor-preview :where(tbody td,tfoot td):not(:where([class~=not-format] *)){padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-top:.5714286em;padding-inline-start:.5714286em}.editor-preview :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-format] *)){padding-inline-start:0}.editor-preview :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-format] *)){padding-inline-end:0}.editor-preview :where(figure):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.editor-preview :where(.format>:first-child):not(:where([class~=not-format] *)){margin-top:0}.editor-preview :where(.format>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-sm :where(.editor-preview>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.5714286em;margin-top:.5714286em}.format-sm :where(.editor-preview>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.1428571em}.format-sm :where(.editor-preview>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.1428571em}.format-sm :where(.editor-preview>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.1428571em}.format-sm :where(.editor-preview>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.1428571em}.format-sm :where(.editor-preview>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-sm :where(.editor-preview>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-base :where(.editor-preview>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.format-base :where(.editor-preview>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format-base :where(.editor-preview>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format-base :where(.editor-preview>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format-base :where(.editor-preview>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format-base :where(.editor-preview>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-base :where(.editor-preview>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-lg :where(.editor-preview>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8888889em;margin-top:.8888889em}.format-lg :where(.editor-preview>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-lg :where(.editor-preview>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-lg :where(.editor-preview>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-lg :where(.editor-preview>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-lg :where(.editor-preview>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-lg :where(.editor-preview>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-xl :where(.editor-preview>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8em;margin-top:.8em}.format-xl :where(.editor-preview>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.2em}.format-xl :where(.editor-preview>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.2em}.format-xl :where(.editor-preview>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.2em}.format-xl :where(.editor-preview>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.2em}.format-xl :where(.editor-preview>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-xl :where(.editor-preview>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-2xl :where(.editor-preview>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8333333em;margin-top:.8333333em}.format-2xl :where(.editor-preview>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-2xl :where(.editor-preview>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-2xl :where(.editor-preview>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-2xl :where(.editor-preview>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-2xl :where(.editor-preview>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-2xl :where(.editor-preview>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.editor-preview{--tw-prose-body:#111827;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#0b6d71;--tw-prose-bold:#111827;--tw-prose-counters:#4b5563;--tw-prose-bullets:#4b5563;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#d1d5db;--tw-prose-captions:#374151;--tw-prose-code:#111827;--tw-prose-code-bg:#f0fdfd;--tw-prose-pre-code:#e0fafa;--tw-prose-pre-bg:#111827;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-th-bg:#f3f4f6;--tw-prose-invert-body:#fff;--tw-prose-invert-headings:#e6ecf1;--tw-prose-invert-lead:#678cab;--tw-prose-invert-links:#17b8be;--tw-prose-invert-bold:#e6ecf1;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#9ca3af;--tw-prose-invert-hr:#0a5558;--tw-prose-invert-quotes:#e6ecf1;--tw-prose-invert-quote-borders:#6b7280;--tw-prose-invert-captions:#9db3c7;--tw-prose-invert-code:#e6ecf1;--tw-prose-invert-code-bg:#042f30;--tw-prose-invert-pre-code:#084547;--tw-prose-invert-pre-bg:#e6ecf1;--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;--tw-prose-invert-th-bg:#1f2937;max-width:none;--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));padding:.625rem}.editor-preview:where(.dark,.dark *){--tw-prose-body:var(--tw-prose-invert-body);--tw-prose-headings:var(--tw-prose-invert-headings);--tw-prose-lead:var(--tw-prose-invert-lead);--tw-prose-links:var(--tw-prose-invert-links);--tw-prose-bold:var(--tw-prose-invert-bold);--tw-prose-counters:var(--tw-prose-invert-counters);--tw-prose-bullets:var(--tw-prose-invert-bullets);--tw-prose-hr:var(--tw-prose-invert-hr);--tw-prose-quotes:var(--tw-prose-invert-quotes);--tw-prose-quote-borders:var(--tw-prose-invert-quote-borders);--tw-prose-captions:var(--tw-prose-invert-captions);--tw-prose-kbd:var(--tw-prose-invert-kbd);--tw-prose-kbd-shadows:var(--tw-prose-invert-kbd-shadows);--tw-prose-code:var(--tw-prose-invert-code);--tw-prose-pre-code:var(--tw-prose-invert-pre-code);--tw-prose-pre-bg:var(--tw-prose-invert-pre-bg);--tw-prose-th-borders:var(--tw-prose-invert-th-borders);--tw-prose-td-borders:var(--tw-prose-invert-td-borders);--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.editor-preview-side{color:var(--tw-prose-body);max-width:65ch}.editor-preview-side :where(p):not(:where([class~=not-format] *)){margin-bottom:1.25em;margin-top:1.25em}.editor-preview-side :where([class~=lead]):not(:where([class~=not-format] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.editor-preview-side :where(a):not(:where([class~=not-format] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}.editor-preview-side :where(strong):not(:where([class~=not-format] *)){color:var(--tw-prose-bold);font-weight:600}.editor-preview-side :where(a strong):not(:where([class~=not-format] *)){color:inherit}.editor-preview-side :where(blockquote strong):not(:where([class~=not-format] *)){color:inherit}.editor-preview-side :where(thead th strong):not(:where([class~=not-format] *)){color:inherit}.editor-preview-side :where(ol):not(:where([class~=not-format] *)){list-style-type:decimal;margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}.editor-preview-side :where(ol[type=A]):not(:where([class~=not-format] *)){list-style-type:upper-alpha}.editor-preview-side :where(ol[type=a]):not(:where([class~=not-format] *)){list-style-type:lower-alpha}.editor-preview-side :where(ol[type=A s]):not(:where([class~=not-format] *)){list-style-type:upper-alpha}.editor-preview-side :where(ol[type=a s]):not(:where([class~=not-format] *)){list-style-type:lower-alpha}.editor-preview-side :where(ol[type=I]):not(:where([class~=not-format] *)){list-style-type:upper-roman}.editor-preview-side :where(ol[type=i]):not(:where([class~=not-format] *)){list-style-type:lower-roman}.editor-preview-side :where(ol[type=I s]):not(:where([class~=not-format] *)){list-style-type:upper-roman}.editor-preview-side :where(ol[type=i s]):not(:where([class~=not-format] *)){list-style-type:lower-roman}.editor-preview-side :where(ol[type="1"]):not(:where([class~=not-format] *)){list-style-type:decimal}.editor-preview-side :where(ul):not(:where([class~=not-format] *)){list-style-type:disc;margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}.editor-preview-side :where(ol>li):not(:where([class~=not-format] *))::marker{color:var(--tw-prose-counters);font-weight:400}.editor-preview-side :where(ul>li):not(:where([class~=not-format] *))::marker{color:var(--tw-prose-bullets)}.editor-preview-side :where(dt):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}.editor-preview-side :where(hr):not(:where([class~=not-format] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-bottom:3em;margin-top:3em}.editor-preview-side :where(blockquote):not(:where([class~=not-format] *)){border-inline-start-color:var(--tw-prose-quote-borders);border-inline-start-width:.25rem;color:var(--tw-prose-quotes);font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-inline-start:1em;quotes:"\201C""\201D""\2018""\2019"}.editor-preview-side :where(blockquote p:first-of-type):not(:where([class~=not-format] *)):before{content:open-quote}.editor-preview-side :where(blockquote p:last-of-type):not(:where([class~=not-format] *)):after{content:close-quote}.editor-preview-side :where(h1):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.editor-preview-side :where(h1 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:900}.editor-preview-side :where(h2):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.editor-preview-side :where(h2 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:800}.editor-preview-side :where(h3):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.editor-preview-side :where(h3 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:700}.editor-preview-side :where(h4):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.editor-preview-side :where(h4 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:700}.editor-preview-side :where(img):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.editor-preview-side :where(picture):not(:where([class~=not-format] *)){display:block;margin-bottom:2em;margin-top:2em}.editor-preview-side :where(video):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.editor-preview-side :where(kbd):not(:where([class~=not-format] *)){border-radius:.3125rem;box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows)/10%),0 3px 0 rgb(var(--tw-prose-kbd-shadows)/10%);color:var(--tw-prose-kbd);font-family:inherit;font-size:.875em;font-weight:500;padding-inline-end:.375em;padding-bottom:.1875em;padding-top:.1875em;padding-inline-start:.375em}.editor-preview-side :where(code):not(:where([class~=not-format] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.editor-preview-side :where(code):not(:where([class~=not-format] *)):before{content:"`"}.editor-preview-side :where(code):not(:where([class~=not-format] *)):after{content:"`"}.editor-preview-side :where(a code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-side :where(h1 code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-side :where(h2 code):not(:where([class~=not-format] *)){color:inherit;font-size:.875em}.editor-preview-side :where(h3 code):not(:where([class~=not-format] *)){color:inherit;font-size:.9em}.editor-preview-side :where(h4 code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-side :where(blockquote code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-side :where(thead th code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-side :where(pre):not(:where([class~=not-format] *)){background-color:var(--tw-prose-pre-bg);border-radius:.375rem;color:var(--tw-prose-pre-code);font-size:.875em;font-weight:400;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;overflow-x:auto;padding-inline-end:1.1428571em;padding-bottom:.8571429em;padding-top:.8571429em;padding-inline-start:1.1428571em}.editor-preview-side :where(pre code):not(:where([class~=not-format] *)){background-color:transparent;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;padding:0}.editor-preview-side :where(pre code):not(:where([class~=not-format] *)):before{content:none}.editor-preview-side :where(pre code):not(:where([class~=not-format] *)):after{content:none}.editor-preview-side :where(table):not(:where([class~=not-format] *)){font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;width:100%}.editor-preview-side :where(thead):not(:where([class~=not-format] *)){border-bottom-color:var(--tw-prose-th-borders);border-bottom-width:1px}.editor-preview-side :where(thead th):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em;vertical-align:bottom}.editor-preview-side :where(tbody tr):not(:where([class~=not-format] *)){border-bottom-color:var(--tw-prose-td-borders);border-bottom-width:1px}.editor-preview-side :where(tbody tr:last-child):not(:where([class~=not-format] *)){border-bottom-width:0}.editor-preview-side :where(tbody td):not(:where([class~=not-format] *)){vertical-align:baseline}.editor-preview-side :where(tfoot):not(:where([class~=not-format] *)){border-top-color:var(--tw-prose-th-borders);border-top-width:1px}.editor-preview-side :where(tfoot td):not(:where([class~=not-format] *)){vertical-align:top}.editor-preview-side :where(th,td):not(:where([class~=not-format] *)){text-align:start}.editor-preview-side :where(figure>*):not(:where([class~=not-format] *)){margin-bottom:0;margin-top:0}.editor-preview-side :where(figcaption):not(:where([class~=not-format] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.editor-preview-side{--tw-prose-body:#374151;--tw-prose-links:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-kbd:#111827;--tw-prose-kbd-shadows:17 24 39;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:255 255 255;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:rgba(0,0,0,.5);font-size:1rem;line-height:1.75}.editor-preview-side :where(picture>img):not(:where([class~=not-format] *)){margin-bottom:0;margin-top:0}.editor-preview-side :where(li):not(:where([class~=not-format] *)){margin-bottom:.5em;margin-top:.5em}.editor-preview-side :where(ol>li):not(:where([class~=not-format] *)){padding-inline-start:.375em}.editor-preview-side :where(ul>li):not(:where([class~=not-format] *)){padding-inline-start:.375em}.editor-preview-side :where(.format>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.editor-preview-side :where(.format>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.editor-preview-side :where(.format>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.editor-preview-side :where(.format>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.editor-preview-side :where(.format>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.editor-preview-side :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.editor-preview-side :where(dl):not(:where([class~=not-format] *)){margin-bottom:1.25em;margin-top:1.25em}.editor-preview-side :where(dd):not(:where([class~=not-format] *)){margin-top:.5em;padding-inline-start:1.625em}.editor-preview-side :where(hr+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-side :where(h2+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-side :where(h3+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-side :where(h4+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-side :where(thead th:first-child):not(:where([class~=not-format] *)){padding-inline-start:0}.editor-preview-side :where(thead th:last-child):not(:where([class~=not-format] *)){padding-inline-end:0}.editor-preview-side :where(tbody td,tfoot td):not(:where([class~=not-format] *)){padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-top:.5714286em;padding-inline-start:.5714286em}.editor-preview-side :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-format] *)){padding-inline-start:0}.editor-preview-side :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-format] *)){padding-inline-end:0}.editor-preview-side :where(figure):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.editor-preview-side :where(.format>:first-child):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-side :where(.format>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-sm :where(.editor-preview-side>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.5714286em;margin-top:.5714286em}.format-sm :where(.editor-preview-side>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.1428571em}.format-sm :where(.editor-preview-side>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.1428571em}.format-sm :where(.editor-preview-side>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.1428571em}.format-sm :where(.editor-preview-side>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.1428571em}.format-sm :where(.editor-preview-side>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-sm :where(.editor-preview-side>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-base :where(.editor-preview-side>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.format-base :where(.editor-preview-side>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format-base :where(.editor-preview-side>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format-base :where(.editor-preview-side>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format-base :where(.editor-preview-side>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format-base :where(.editor-preview-side>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-base :where(.editor-preview-side>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-lg :where(.editor-preview-side>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8888889em;margin-top:.8888889em}.format-lg :where(.editor-preview-side>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-lg :where(.editor-preview-side>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-lg :where(.editor-preview-side>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-lg :where(.editor-preview-side>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-lg :where(.editor-preview-side>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-lg :where(.editor-preview-side>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-xl :where(.editor-preview-side>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8em;margin-top:.8em}.format-xl :where(.editor-preview-side>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.2em}.format-xl :where(.editor-preview-side>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.2em}.format-xl :where(.editor-preview-side>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.2em}.format-xl :where(.editor-preview-side>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.2em}.format-xl :where(.editor-preview-side>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-xl :where(.editor-preview-side>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-2xl :where(.editor-preview-side>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8333333em;margin-top:.8333333em}.format-2xl :where(.editor-preview-side>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-2xl :where(.editor-preview-side>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-2xl :where(.editor-preview-side>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-2xl :where(.editor-preview-side>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-2xl :where(.editor-preview-side>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-2xl :where(.editor-preview-side>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.editor-preview-side{--tw-prose-body:#111827;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#0b6d71;--tw-prose-bold:#111827;--tw-prose-counters:#4b5563;--tw-prose-bullets:#4b5563;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#d1d5db;--tw-prose-captions:#374151;--tw-prose-code:#111827;--tw-prose-code-bg:#f0fdfd;--tw-prose-pre-code:#e0fafa;--tw-prose-pre-bg:#111827;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-th-bg:#f3f4f6;--tw-prose-invert-body:#fff;--tw-prose-invert-headings:#e6ecf1;--tw-prose-invert-lead:#678cab;--tw-prose-invert-links:#17b8be;--tw-prose-invert-bold:#e6ecf1;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#9ca3af;--tw-prose-invert-hr:#0a5558;--tw-prose-invert-quotes:#e6ecf1;--tw-prose-invert-quote-borders:#6b7280;--tw-prose-invert-captions:#9db3c7;--tw-prose-invert-code:#e6ecf1;--tw-prose-invert-code-bg:#042f30;--tw-prose-invert-pre-code:#084547;--tw-prose-invert-pre-bg:#e6ecf1;--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;--tw-prose-invert-th-bg:#1f2937;border-width:1px;bottom:0;box-sizing:border-box;display:none;max-width:none;overflow:auto;overflow-wrap:break-word;position:fixed;right:0;top:50px;width:50%;z-index:50;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.editor-preview-side:where(.dark,.dark *){--tw-prose-body:var(--tw-prose-invert-body);--tw-prose-headings:var(--tw-prose-invert-headings);--tw-prose-lead:var(--tw-prose-invert-lead);--tw-prose-links:var(--tw-prose-invert-links);--tw-prose-bold:var(--tw-prose-invert-bold);--tw-prose-counters:var(--tw-prose-invert-counters);--tw-prose-bullets:var(--tw-prose-invert-bullets);--tw-prose-hr:var(--tw-prose-invert-hr);--tw-prose-quotes:var(--tw-prose-invert-quotes);--tw-prose-quote-borders:var(--tw-prose-invert-quote-borders);--tw-prose-captions:var(--tw-prose-invert-captions);--tw-prose-kbd:var(--tw-prose-invert-kbd);--tw-prose-kbd-shadows:var(--tw-prose-invert-kbd-shadows);--tw-prose-code:var(--tw-prose-invert-code);--tw-prose-pre-code:var(--tw-prose-invert-pre-code);--tw-prose-pre-bg:var(--tw-prose-invert-pre-bg);--tw-prose-th-borders:var(--tw-prose-invert-th-borders);--tw-prose-td-borders:var(--tw-prose-invert-td-borders);--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.editor-preview-active-side{display:block}.EasyMDEContainer.sided--no-fullscreen .editor-preview-active-side{flex:1 1 0%;height:auto;position:static}.editor-preview>p{margin-top:0}.editor-preview pre{margin-bottom:.625rem;--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.editor-preview pre:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.editor-preview table td,.editor-preview table th{border-width:1px;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));padding:.375rem}.editor-preview table td:where(.dark,.dark *),.editor-preview table th:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.editor-statusbar{font-size:.875rem;line-height:1.25rem;padding:.5rem;text-align:right;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.editor-statusbar:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.EasyMDEContainer.sided--no-fullscreen .editor-statusbar{width:100%}.editor-statusbar span{display:inline-block;margin-left:1rem;min-width:4em}.editor-statusbar .lines:before{content:"lines: "}.editor-statusbar .words:before{content:"words: "}.editor-statusbar .characters:before{content:"characters: "}.cm-s-easymde .cm-em{font-style:italic;--tw-text-opacity:1;color:rgb(26 53 73/var(--tw-text-opacity))}.cm-s-easymde .cm-em:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(103 140 171/var(--tw-text-opacity))}.cm-s-easymde .cm-strong{font-weight:700;--tw-text-opacity:1;color:rgb(26 53 73/var(--tw-text-opacity))}.cm-s-easymde .cm-strong:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(103 140 171/var(--tw-text-opacity))}.cm-s-easymde .cm-strikethrough{font-style:italic;--tw-text-opacity:1;color:rgb(26 53 73/var(--tw-text-opacity));text-decoration-line:line-through}.cm-s-easymde .cm-strikethrough:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(103 140 171/var(--tw-text-opacity))}.cm-s-easymde .cm-quote{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-quote:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-s-easymde .cm-keyword{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-keyword:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-s-easymde .cm-atom{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-atom:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-s-easymde .cm-number{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-number:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-s-easymde .cm-def{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-def:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-s-easymde .cm-variable{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-variable:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-s-easymde .cm-variable-2{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-variable-2:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-s-easymde .cm-variable-3{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-variable-3:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-formatting.cm-formatting-list{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-formatting.cm-formatting-list:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-formatting.cm-formatting-link{--tw-text-opacity:1!important;color:rgb(12 27 38/var(--tw-text-opacity))!important}.cm-formatting.cm-formatting-link:where(.dark,.dark *){--tw-text-opacity:1!important;color:rgb(103 140 171/var(--tw-text-opacity))!important}.cm-formatting.cm-formatting-link-string{--tw-text-opacity:1!important;color:rgb(12 27 38/var(--tw-text-opacity))!important}.cm-formatting.cm-formatting-link-string:where(.dark,.dark *){--tw-text-opacity:1!important;color:rgb(103 140 171/var(--tw-text-opacity))!important}.cm-s-easymde .cm-string{--tw-text-opacity:1;color:rgb(255 100 122/var(--tw-text-opacity))}.cm-s-easymde .cm-string:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 158 170/var(--tw-text-opacity))}.cm-s-easymde .cm-string.cm-url{--tw-text-opacity:1;color:rgb(255 100 122/var(--tw-text-opacity))}.cm-s-easymde .cm-string.cm-url:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 158 170/var(--tw-text-opacity))}.cm-s-easymde .cm-url{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-url:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-s-easymde .cm-string-2{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-string-2:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-s-easymde .cm-comment{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.cm-s-easymde .cm-comment:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.cm-s-easymde .cm-tag{color:#63a35c}.cm-s-easymde .cm-meta{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.cm-s-easymde .cm-meta:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.cm-s-easymde .cm-attribute{--tw-text-opacity:1;color:rgb(26 53 73/var(--tw-text-opacity))}.cm-s-easymde .cm-attribute:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(103 140 171/var(--tw-text-opacity))}.cm-s-easymde .cm-error{--tw-text-opacity:1;color:rgb(224 36 36/var(--tw-text-opacity))}.cm-s-easymde .cm-error:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(249 128 128/var(--tw-text-opacity))}.cm-s-easymde .cm-header-1{font-size:calc(1.375rem + 1.5vw)}.cm-s-easymde .cm-header-2{font-size:calc(1.325rem + .9vw)}.cm-s-easymde .cm-header-3{font-size:calc(1.3rem + .6vw)}.cm-s-easymde .cm-header-4{font-size:calc(1.275rem + .3vw)}.cm-s-easymde .cm-header-5{font-size:1.25rem}.cm-s-easymde .cm-header-6{font-size:1rem}.cm-s-easymde .cm-header-1,.cm-s-easymde .cm-header-2,.cm-s-easymde .cm-header-3,.cm-s-easymde .cm-header-4,.cm-s-easymde .cm-header-5,.cm-s-easymde .cm-header-6{line-height:1.25;margin-bottom:.5rem}.editor-toolbar .easymde-dropdown{border-width:1px;position:relative;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.editor-toolbar .easymde-dropdown:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.editor-toolbar .easymde-dropdown,.editor-toolbar .easymde-dropdown:hover{background:linear-gradient(to bottom right,#fff,#fff 84%,#333 0,#333)}.tooltip.easymde-dropdown-content>.tooltip-arrow:before,[role=tooltip].easymde-dropdown-content>[data-popper-arrow]:after,[role=tooltip].easymde-dropdown-content>[data-popper-arrow]:before{visibility:hidden}.easymde-dropdown-content{display:block;position:absolute;top:30px;visibility:hidden;z-index:20;--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));padding:.5rem;--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.easymde-dropdown-content:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.easymde-dropdown:active .easymde-dropdown-content,.easymde-dropdown:focus .easymde-dropdown-content,.easymde-dropdown:focus-within .easymde-dropdown-content{visibility:visible}.editor-toolbar.fullscreen:before{background:linear-gradient(90deg,#fff 0,hsla(0,0%,100%,0));left:0}.editor-toolbar.fullscreen:after,.editor-toolbar.fullscreen:before{height:50px;margin:0;padding:0;position:fixed;top:0;width:1.25rem}.editor-toolbar.fullscreen:after{background:linear-gradient(90deg,hsla(0,0%,100%,0) 0,#fff);right:0}.dark .editor-toolbar.fullscreen:before{background:linear-gradient(90deg,#1f2937 0,rgba(31,41,55,0))}.dark .editor-toolbar.fullscreen:after{background:linear-gradient(90deg,rgba(31,41,55,0) 0,#1f2937)}@media only screen and (max-width:700px){.editor-toolbar i.no-mobile{display:none}}.CodeMirror .cm-spell-error:not(.cm-url):not(.cm-comment):not(.cm-tag):not(.cm-word){background-color:hsla(0,84%,95%,.5)}.CodeMirror .cm-spell-error:not(.cm-url):not(.cm-comment):not(.cm-tag):not(.cm-word):where(.dark,.dark *){background-color:rgba(119,29,29,.3)}span[data-img-src]:after{background-image:var(--bg-image);background-repeat:no-repeat;background-size:contain;content:"";display:block;height:0;max-height:100%;max-width:100%;padding-top:var(--height);width:var(--width)}.CodeMirror-rtl pre{direction:rtl}.CodeMirror-selectedtext{background-color:rgba(229,231,235,.7)}.CodeMirror-selectedtext:where(.dark,.dark *){background-color:rgba(75,85,99,.5)}@keyframes blink{50%{background-color:transparent}}.cm-fat-cursor .CodeMirror-cursor{--tw-bg-opacity:1;background-color:rgb(119 238 119/var(--tw-bg-opacity));border:0!important;width:auto}.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-fat-cursor .CodeMirror-line::selection,.cm-fat-cursor .CodeMirror-line>span::selection,.cm-fat-cursor .CodeMirror-line>span>span::selection{background:transparent}.cm-fat-cursor .CodeMirror-line::-moz-selection,.cm-fat-cursor .CodeMirror-line>span::-moz-selection,.cm-fat-cursor .CodeMirror-line>span>span::-moz-selection{background:transparent}.cm-fat-cursor{caret-color:transparent}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.CodeMirror-selected{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.CodeMirror-selected:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.CodeMirror-focused .CodeMirror-selected{--tw-bg-opacity:1;background-color:rgb(225 239 254/var(--tw-bg-opacity))}.CodeMirror-focused .CodeMirror-selected:where(.dark,.dark *){background-color:rgba(35,56,118,.3)}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line{outline:2px solid transparent;outline-offset:2px}.cm-tab{display:inline-block;text-decoration-line:none}[role=tooltip]div.CodeMirror-cursors>[data-popper-arrow]:after,[role=tooltip]div.CodeMirror-cursors>[data-popper-arrow]:before,div.tooltip.CodeMirror-cursors>.tooltip-arrow:before{visibility:hidden}div.CodeMirror-cursors{position:relative;visibility:hidden;z-index:3}.CodeMirror-focused div.CodeMirror-cursors,div.CodeMirror-dragcursors{visibility:visible}.tooltip.CodeMirror-measure>.tooltip-arrow:before,[role=tooltip].CodeMirror-measure>[data-popper-arrow]:after,[role=tooltip].CodeMirror-measure>[data-popper-arrow]:before{visibility:hidden}.CodeMirror-measure{height:0;overflow:hidden;position:absolute;visibility:hidden;width:100%}.CodeMirror-linebackground{inset:0;position:absolute;z-index:0}.CodeMirror-linewidget{padding:.1px;position:relative;z-index:2}.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber{-moz-user-select:none;-webkit-user-select:none;user-select:none}.CodeMirror-wrap pre.CodeMirror-line,.CodeMirror-wrap pre.CodeMirror-line-like{overflow-wrap:normal;overflow-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-composing{border-bottom-width:2px;border-style:solid}div.CodeMirror span.CodeMirror-matchingbracket{--tw-text-opacity:1;color:rgb(4 108 78/var(--tw-text-opacity))}div.CodeMirror span.CodeMirror-matchingbracket:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(49 196 141/var(--tw-text-opacity))}div.CodeMirror span.CodeMirror-nonmatchingbracket{--tw-text-opacity:1;color:rgb(224 36 36/var(--tw-text-opacity))}div.CodeMirror span.CodeMirror-nonmatchingbracket:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(249 128 128/var(--tw-text-opacity))}.CodeMirror-activeline-background{--tw-bg-opacity:1;background-color:rgb(235 245 255/var(--tw-bg-opacity))}.CodeMirror-activeline-background:where(.dark,.dark *){background-color:rgba(35,56,118,.1)}.CodeMirror-fullscreen{z-index:9999}.editor-toolbar.disabled-for-preview button:not(.no-disable){opacity:.6;pointer-events:none}.CodeMirror-measure pre{position:static}.CodeMirror-scroll{-webkit-overflow-scrolling:touch}.CodeMirror pre.CodeMirror-line,.CodeMirror pre.CodeMirror-line-like{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.cm-s-easymde .cm-header{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-header:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{--tw-bg-opacity:1;background-color:rgb(224 250 250/var(--tw-bg-opacity))}.CodeMirror-line:where(.dark,.dark *)::selection,.CodeMirror-line>span:where(.dark,.dark *)::selection,.CodeMirror-line>span>span:where(.dark,.dark *)::selection{background-color:rgba(8,69,71,.3)}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{--tw-bg-opacity:1;background-color:rgb(224 250 250/var(--tw-bg-opacity))}.CodeMirror-line:where(.dark,.dark *)::-moz-selection,.CodeMirror-line>span:where(.dark,.dark *)::-moz-selection,.CodeMirror-line>span>span:where(.dark,.dark *)::-moz-selection{background-color:rgba(8,69,71,.3)}.CodeMirror-matchingtag{background-color:hsla(52,96%,70%,.3)}.CodeMirror-matchingtag:where(.dark,.dark *){background-color:rgba(99,49,18,.3)}.cm-searching{background-color:hsla(52,96%,70%,.4)}.cm-searching:where(.dark,.dark *){background-color:rgba(99,49,18,.4)}.CodeMirror-rulers{bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:-50px}.CodeMirror-ruler{border-left-width:1px;bottom:0;position:absolute;top:0;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.CodeMirror-ruler:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.editor-preview-full{box-sizing:border-box;display:none;height:100%;left:0;overflow:auto;position:absolute;top:0;width:100%;z-index:7}.editor-preview-active{display:block}.editor-preview-full{color:var(--tw-prose-body);max-width:65ch}.editor-preview-full :where(p):not(:where([class~=not-format] *)){margin-bottom:1.25em;margin-top:1.25em}.editor-preview-full :where([class~=lead]):not(:where([class~=not-format] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.editor-preview-full :where(a):not(:where([class~=not-format] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}.editor-preview-full :where(strong):not(:where([class~=not-format] *)){color:var(--tw-prose-bold);font-weight:600}.editor-preview-full :where(a strong):not(:where([class~=not-format] *)){color:inherit}.editor-preview-full :where(blockquote strong):not(:where([class~=not-format] *)){color:inherit}.editor-preview-full :where(thead th strong):not(:where([class~=not-format] *)){color:inherit}.editor-preview-full :where(ol):not(:where([class~=not-format] *)){list-style-type:decimal;margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}.editor-preview-full :where(ol[type=A]):not(:where([class~=not-format] *)){list-style-type:upper-alpha}.editor-preview-full :where(ol[type=a]):not(:where([class~=not-format] *)){list-style-type:lower-alpha}.editor-preview-full :where(ol[type=A s]):not(:where([class~=not-format] *)){list-style-type:upper-alpha}.editor-preview-full :where(ol[type=a s]):not(:where([class~=not-format] *)){list-style-type:lower-alpha}.editor-preview-full :where(ol[type=I]):not(:where([class~=not-format] *)){list-style-type:upper-roman}.editor-preview-full :where(ol[type=i]):not(:where([class~=not-format] *)){list-style-type:lower-roman}.editor-preview-full :where(ol[type=I s]):not(:where([class~=not-format] *)){list-style-type:upper-roman}.editor-preview-full :where(ol[type=i s]):not(:where([class~=not-format] *)){list-style-type:lower-roman}.editor-preview-full :where(ol[type="1"]):not(:where([class~=not-format] *)){list-style-type:decimal}.editor-preview-full :where(ul):not(:where([class~=not-format] *)){list-style-type:disc;margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}.editor-preview-full :where(ol>li):not(:where([class~=not-format] *))::marker{color:var(--tw-prose-counters);font-weight:400}.editor-preview-full :where(ul>li):not(:where([class~=not-format] *))::marker{color:var(--tw-prose-bullets)}.editor-preview-full :where(dt):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}.editor-preview-full :where(hr):not(:where([class~=not-format] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-bottom:3em;margin-top:3em}.editor-preview-full :where(blockquote):not(:where([class~=not-format] *)){border-inline-start-color:var(--tw-prose-quote-borders);border-inline-start-width:.25rem;color:var(--tw-prose-quotes);font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-inline-start:1em;quotes:"\201C""\201D""\2018""\2019"}.editor-preview-full :where(blockquote p:first-of-type):not(:where([class~=not-format] *)):before{content:open-quote}.editor-preview-full :where(blockquote p:last-of-type):not(:where([class~=not-format] *)):after{content:close-quote}.editor-preview-full :where(h1):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.editor-preview-full :where(h1 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:900}.editor-preview-full :where(h2):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.editor-preview-full :where(h2 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:800}.editor-preview-full :where(h3):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.editor-preview-full :where(h3 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:700}.editor-preview-full :where(h4):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.editor-preview-full :where(h4 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:700}.editor-preview-full :where(img):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.editor-preview-full :where(picture):not(:where([class~=not-format] *)){display:block;margin-bottom:2em;margin-top:2em}.editor-preview-full :where(video):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.editor-preview-full :where(kbd):not(:where([class~=not-format] *)){border-radius:.3125rem;box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows)/10%),0 3px 0 rgb(var(--tw-prose-kbd-shadows)/10%);color:var(--tw-prose-kbd);font-family:inherit;font-size:.875em;font-weight:500;padding-inline-end:.375em;padding-bottom:.1875em;padding-top:.1875em;padding-inline-start:.375em}.editor-preview-full :where(code):not(:where([class~=not-format] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.editor-preview-full :where(code):not(:where([class~=not-format] *)):before{content:"`"}.editor-preview-full :where(code):not(:where([class~=not-format] *)):after{content:"`"}.editor-preview-full :where(a code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-full :where(h1 code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-full :where(h2 code):not(:where([class~=not-format] *)){color:inherit;font-size:.875em}.editor-preview-full :where(h3 code):not(:where([class~=not-format] *)){color:inherit;font-size:.9em}.editor-preview-full :where(h4 code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-full :where(blockquote code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-full :where(thead th code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-full :where(pre):not(:where([class~=not-format] *)){background-color:var(--tw-prose-pre-bg);border-radius:.375rem;color:var(--tw-prose-pre-code);font-size:.875em;font-weight:400;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;overflow-x:auto;padding-inline-end:1.1428571em;padding-bottom:.8571429em;padding-top:.8571429em;padding-inline-start:1.1428571em}.editor-preview-full :where(pre code):not(:where([class~=not-format] *)){background-color:transparent;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;padding:0}.editor-preview-full :where(pre code):not(:where([class~=not-format] *)):before{content:none}.editor-preview-full :where(pre code):not(:where([class~=not-format] *)):after{content:none}.editor-preview-full :where(table):not(:where([class~=not-format] *)){font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;width:100%}.editor-preview-full :where(thead):not(:where([class~=not-format] *)){border-bottom-color:var(--tw-prose-th-borders);border-bottom-width:1px}.editor-preview-full :where(thead th):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em;vertical-align:bottom}.editor-preview-full :where(tbody tr):not(:where([class~=not-format] *)){border-bottom-color:var(--tw-prose-td-borders);border-bottom-width:1px}.editor-preview-full :where(tbody tr:last-child):not(:where([class~=not-format] *)){border-bottom-width:0}.editor-preview-full :where(tbody td):not(:where([class~=not-format] *)){vertical-align:baseline}.editor-preview-full :where(tfoot):not(:where([class~=not-format] *)){border-top-color:var(--tw-prose-th-borders);border-top-width:1px}.editor-preview-full :where(tfoot td):not(:where([class~=not-format] *)){vertical-align:top}.editor-preview-full :where(th,td):not(:where([class~=not-format] *)){text-align:start}.editor-preview-full :where(figure>*):not(:where([class~=not-format] *)){margin-bottom:0;margin-top:0}.editor-preview-full :where(figcaption):not(:where([class~=not-format] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.editor-preview-full{--tw-prose-body:#374151;--tw-prose-links:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-kbd:#111827;--tw-prose-kbd-shadows:17 24 39;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:255 255 255;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:rgba(0,0,0,.5);font-size:1rem;line-height:1.75}.editor-preview-full :where(picture>img):not(:where([class~=not-format] *)){margin-bottom:0;margin-top:0}.editor-preview-full :where(li):not(:where([class~=not-format] *)){margin-bottom:.5em;margin-top:.5em}.editor-preview-full :where(ol>li):not(:where([class~=not-format] *)){padding-inline-start:.375em}.editor-preview-full :where(ul>li):not(:where([class~=not-format] *)){padding-inline-start:.375em}.editor-preview-full :where(.format>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.editor-preview-full :where(.format>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.editor-preview-full :where(.format>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.editor-preview-full :where(.format>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.editor-preview-full :where(.format>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.editor-preview-full :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.editor-preview-full :where(dl):not(:where([class~=not-format] *)){margin-bottom:1.25em;margin-top:1.25em}.editor-preview-full :where(dd):not(:where([class~=not-format] *)){margin-top:.5em;padding-inline-start:1.625em}.editor-preview-full :where(hr+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-full :where(h2+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-full :where(h3+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-full :where(h4+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-full :where(thead th:first-child):not(:where([class~=not-format] *)){padding-inline-start:0}.editor-preview-full :where(thead th:last-child):not(:where([class~=not-format] *)){padding-inline-end:0}.editor-preview-full :where(tbody td,tfoot td):not(:where([class~=not-format] *)){padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-top:.5714286em;padding-inline-start:.5714286em}.editor-preview-full :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-format] *)){padding-inline-start:0}.editor-preview-full :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-format] *)){padding-inline-end:0}.editor-preview-full :where(figure):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.editor-preview-full :where(.format>:first-child):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-full :where(.format>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-sm :where(.editor-preview-full>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.5714286em;margin-top:.5714286em}.format-sm :where(.editor-preview-full>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.1428571em}.format-sm :where(.editor-preview-full>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.1428571em}.format-sm :where(.editor-preview-full>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.1428571em}.format-sm :where(.editor-preview-full>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.1428571em}.format-sm :where(.editor-preview-full>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-sm :where(.editor-preview-full>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-base :where(.editor-preview-full>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.format-base :where(.editor-preview-full>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format-base :where(.editor-preview-full>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format-base :where(.editor-preview-full>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format-base :where(.editor-preview-full>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format-base :where(.editor-preview-full>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-base :where(.editor-preview-full>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-lg :where(.editor-preview-full>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8888889em;margin-top:.8888889em}.format-lg :where(.editor-preview-full>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-lg :where(.editor-preview-full>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-lg :where(.editor-preview-full>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-lg :where(.editor-preview-full>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-lg :where(.editor-preview-full>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-lg :where(.editor-preview-full>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-xl :where(.editor-preview-full>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8em;margin-top:.8em}.format-xl :where(.editor-preview-full>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.2em}.format-xl :where(.editor-preview-full>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.2em}.format-xl :where(.editor-preview-full>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.2em}.format-xl :where(.editor-preview-full>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.2em}.format-xl :where(.editor-preview-full>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-xl :where(.editor-preview-full>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-2xl :where(.editor-preview-full>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8333333em;margin-top:.8333333em}.format-2xl :where(.editor-preview-full>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-2xl :where(.editor-preview-full>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-2xl :where(.editor-preview-full>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-2xl :where(.editor-preview-full>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-2xl :where(.editor-preview-full>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-2xl :where(.editor-preview-full>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.editor-preview-full{--tw-prose-body:#111827;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#0b6d71;--tw-prose-bold:#111827;--tw-prose-counters:#4b5563;--tw-prose-bullets:#4b5563;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#d1d5db;--tw-prose-captions:#374151;--tw-prose-code:#111827;--tw-prose-code-bg:#f0fdfd;--tw-prose-pre-code:#e0fafa;--tw-prose-pre-bg:#111827;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-th-bg:#f3f4f6;--tw-prose-invert-body:#fff;--tw-prose-invert-headings:#e6ecf1;--tw-prose-invert-lead:#678cab;--tw-prose-invert-links:#17b8be;--tw-prose-invert-bold:#e6ecf1;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#9ca3af;--tw-prose-invert-hr:#0a5558;--tw-prose-invert-quotes:#e6ecf1;--tw-prose-invert-quote-borders:#6b7280;--tw-prose-invert-captions:#9db3c7;--tw-prose-invert-code:#e6ecf1;--tw-prose-invert-code-bg:#042f30;--tw-prose-invert-pre-code:#084547;--tw-prose-invert-pre-bg:#e6ecf1;--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;--tw-prose-invert-th-bg:#1f2937;max-width:none;--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));padding:.625rem}.editor-preview-full:where(.dark,.dark *){--tw-prose-body:var(--tw-prose-invert-body);--tw-prose-headings:var(--tw-prose-invert-headings);--tw-prose-lead:var(--tw-prose-invert-lead);--tw-prose-links:var(--tw-prose-invert-links);--tw-prose-bold:var(--tw-prose-invert-bold);--tw-prose-counters:var(--tw-prose-invert-counters);--tw-prose-bullets:var(--tw-prose-invert-bullets);--tw-prose-hr:var(--tw-prose-invert-hr);--tw-prose-quotes:var(--tw-prose-invert-quotes);--tw-prose-quote-borders:var(--tw-prose-invert-quote-borders);--tw-prose-captions:var(--tw-prose-invert-captions);--tw-prose-kbd:var(--tw-prose-invert-kbd);--tw-prose-kbd-shadows:var(--tw-prose-invert-kbd-shadows);--tw-prose-code:var(--tw-prose-invert-code);--tw-prose-pre-code:var(--tw-prose-invert-pre-code);--tw-prose-pre-bg:var(--tw-prose-invert-pre-bg);--tw-prose-th-borders:var(--tw-prose-invert-th-borders);--tw-prose-td-borders:var(--tw-prose-invert-td-borders);--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.editor-preview-full>p{margin-top:0}.editor-preview-full pre{margin-bottom:.625rem;--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.editor-preview-full pre:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.editor-preview-full table td,.editor-preview-full table th{border-width:1px;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));padding:.375rem}.editor-preview-full table td:where(.dark,.dark *),.editor-preview-full table th:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}:root{--ss-primary-color:#17b8be;--ss-bg-color:#fff;--ss-font-color:#111827;--ss-font-placeholder-color:#6b7280;--ss-disabled-color:#f3f4f6;--ss-border-color:#d1d5db;--ss-highlight-color:#fce96a;--ss-success-color:#0e9f6e;--ss-error-color:#f05252;--ss-focus-color:#17b8be}.dark{--ss-primary-color:#40d9de;--ss-bg-color:#374151;--ss-font-color:#fff;--ss-font-placeholder-color:#9ca3af;--ss-disabled-color:#1f2937;--ss-border-color:#4b5563;--ss-highlight-color:#faca15;--ss-success-color:#31c48d;--ss-error-color:#f98080;--ss-focus-color:#40d9de}@keyframes ss-valueIn{0%{--tw-scale-x:0;--tw-scale-y:0;opacity:0;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))}to{--tw-scale-x:1;--tw-scale-y:1;opacity:1;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))}}@keyframes ss-valueOut{0%{--tw-scale-x:1;--tw-scale-y:1;opacity:1;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))}to{--tw-scale-x:0;--tw-scale-y:0;opacity:0;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))}}.ss-hide{display:none!important}.ss-main{border-radius:.375rem;border-width:1px;cursor:pointer;display:flex;flex-direction:row;overflow:hidden;position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));font-size:.875rem;font-weight:500;line-height:1.25rem;padding:.5rem;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity));--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--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-duration:.2s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ss-main:focus{outline:2px solid transparent;outline-offset:2px}.ss-main:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ss-main:focus{--tw-border-opacity:1;border-color:rgb(23 184 190/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(1px + 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(23 184 190/var(--tw-ring-opacity))}.ss-main.ss-disabled{cursor:not-allowed;--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.ss-main.ss-disabled:where(.dark,.dark *){--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))}.ss-main.ss-open-above{border-bottom-left-radius:.375rem;border-bottom-right-radius:.375rem;border-top-left-radius:0;border-top-right-radius:0}.ss-main.ss-open-below{border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:.375rem;border-top-right-radius:.375rem}.ss-main .ss-values{display:inline-flex;flex:1 1 0%;flex-wrap:wrap;gap:5px}.ss-main .ss-values .ss-placeholder{align-items:center;display:flex;line-height:1.5;margin:0;overflow:hidden;padding:0;text-overflow:ellipsis;white-space:nowrap;width:100%;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.ss-main .ss-values .ss-placeholder:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.ss-main .ss-values .ss-max{align-items:center;border-radius:.375rem;display:flex;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:-moz-fit-content;width:fit-content;--tw-bg-opacity:1;background-color:rgb(23 184 190/var(--tw-bg-opacity));font-size:.75rem;line-height:1rem;line-height:1.5;padding:3px 5px;--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ss-main .ss-values .ss-max:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.ss-main .ss-values .ss-single{display:flex;margin:0}.ss-main .ss-values .ss-value{align-items:center;border-radius:.375rem;display:flex;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:-moz-fit-content;width:fit-content;--tw-bg-opacity:1;background-color:rgb(23 184 190/var(--tw-bg-opacity));--tw-text-opacity:1;animation:ss-valueIn .2s ease-out forwards;color:rgb(255 255 255/var(--tw-text-opacity))}.ss-main .ss-values .ss-value.ss-value-out{animation:ss-valueOut .2s ease-out forwards}.ss-main .ss-values .ss-value .ss-value-text{font-size:.75rem;line-height:1rem;line-height:1.5;padding:3px 5px}.ss-main .ss-values .ss-value .ss-value-delete{align-items:center;border-left-width:1px;border-style:solid;box-sizing:content-box;cursor:pointer;display:flex;height:7px;width:7px;--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity));padding:3px 5px}.ss-main .ss-values .ss-value .ss-value-delete svg{height:7px;width:7px}.ss-main .ss-values .ss-value .ss-value-delete svg path{fill:none;stroke:#fff;stroke-width:18;stroke-linecap:round;stroke-linejoin:round}.ss-main .ss-deselect{align-items:center;display:flex;flex:none;height:auto;justify-content:center;padding:0 5px;width:-moz-fit-content;width:fit-content}.ss-main .ss-deselect svg{height:8px;width:8px}.ss-main .ss-deselect svg path{fill:none;stroke:#6b7280}.ss-main .ss-deselect svg path:where(.dark,.dark *){stroke:#9ca3af}.ss-main .ss-deselect svg path{stroke-width:20;stroke-linecap:round;stroke-linejoin:round}.ss-main .ss-arrow{align-items:center;display:flex;flex:none;height:1rem;justify-content:flex-end;margin:auto;width:1rem}.ss-main .ss-arrow path{fill:none;stroke:#6b7280;transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ss-main .ss-arrow path:where(.dark,.dark *){stroke:#9ca3af}.ss-main .ss-arrow path{stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.ss-content{box-sizing:border-box;display:flex;height:auto;max-height:300px;position:absolute;transform-origin:top;width:auto;z-index:10000;--tw-scale-y:0;border-bottom-left-radius:.375rem;border-bottom-right-radius:.375rem;border-width:1px;flex-direction:column;overflow:hidden;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));--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));opacity:0;--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px 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-duration:.2s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ss-content:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.ss-content.ss-relative{height:100%;position:relative}.ss-content.ss-fixed{position:fixed}.ss-content.ss-open-above{transform-origin:bottom;--tw-scale-y:1;border-top-left-radius:.375rem;border-top-right-radius:.375rem;flex-direction:column-reverse;opacity:1;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))}.ss-content.ss-open-below{transform-origin:top;--tw-scale-y:1;border-bottom-left-radius:.375rem;border-bottom-right-radius:.375rem;opacity:1;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))}.ss-content .ss-search{display:flex;flex:none;flex-direction:row;padding:.5rem}.ss-content .ss-search input{border-radius:.375rem;border-width:1px;box-sizing:border-box;display:inline-flex;flex:1 1 auto;margin:0;min-width:0;width:100%;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity));font-size:.875rem;font-weight:500;line-height:1.25rem;line-height:1.5;padding:.5rem;text-align:left;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.ss-content .ss-search input::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.ss-content .ss-search input::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.ss-content .ss-search input{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--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)}.ss-content .ss-search input:focus{--tw-border-opacity:1;border-color:rgb(23 184 190/var(--tw-border-opacity));outline:2px solid transparent;outline-offset:2px;--tw-ring-opacity:1;--tw-ring-color:rgb(23 184 190/var(--tw-ring-opacity))}.ss-content .ss-search input:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ss-content .ss-search input:where(.dark,.dark *)::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.ss-content .ss-search input:where(.dark,.dark *)::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.ss-content .ss-search .ss-addable{align-items:center;border-width:1px;cursor:pointer;display:inline-flex;flex:none;height:auto;justify-content:center;margin-left:.5rem;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--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)}.ss-content .ss-search .ss-addable:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.ss-content .ss-search .ss-addable svg{align-items:center;display:flex;flex:none;height:1rem;justify-content:flex-end;margin:.5rem;width:1rem}.ss-content .ss-search .ss-addable svg path{fill:none;stroke:#6b7280}.ss-content .ss-search .ss-addable svg path:where(.dark,.dark *){stroke:#9ca3af}.ss-content .ss-search .ss-addable svg path{stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.ss-content .ss-list{flex:1 1 auto;height:auto;overflow-x:hidden;overflow-y:auto}.ss-content .ss-list .ss-error{padding:.5rem;--tw-text-opacity:1;color:rgb(240 82 82/var(--tw-text-opacity))}.ss-content .ss-list .ss-error:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(249 128 128/var(--tw-text-opacity))}.ss-content .ss-list .ss-searching{padding:.5rem;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.ss-content .ss-list .ss-searching:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ss-content .ss-list .ss-optgroup.ss-close .ss-option{display:none!important}.ss-content .ss-list .ss-search{flex:none;font-size:.875rem;font-weight:500;line-height:1.25rem;padding:.5rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.ss-content .ss-list .ss-search:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.ss-content>.ss-search{display:flex;flex:none;flex-direction:row;padding:.5rem}.ss-content .ss-list .ss-optgroup .ss-optgroup-label{align-items:center;display:flex;flex-direction:row;justify-content:space-between;--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));padding:.5rem}.ss-content .ss-list .ss-optgroup .ss-optgroup-label:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-label-text{flex:1 1 auto;font-weight:700;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-label-text:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ss-content .ss-list .ss-optgroup .ss-optgroup-label:has(.ss-arrow){cursor:pointer}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions{align-items:center;display:flex;flex:none;flex-direction:row;gap:.5rem;justify-content:center}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall{cursor:pointer;display:flex;flex:none;flex-direction:row}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall:hover{opacity:.5}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall.ss-selected svg path{stroke:#f05252}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall.ss-selected svg path:where(.dark,.dark *){stroke:#f98080}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall span{align-items:center;display:flex;flex:none;font-size:60%;justify-content:center;padding-right:.25rem;text-align:center}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg{flex:none;height:13px;width:13px}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg path{fill:none;stroke:#0e9f6e}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg path:where(.dark,.dark *){stroke:#31c48d}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg path{stroke-linecap:round;stroke-linejoin:round}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg:first-child{stroke-width:5}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg:last-child{stroke-width:11}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable{cursor:pointer;display:flex;flex:none;flex-direction:row}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow{flex:1 1 auto;height:10px;width:10px}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow path{fill:none;stroke:#6b7280;transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow path:where(.dark,.dark *){stroke:#9ca3af}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow path{stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.ss-content .ss-list .ss-optgroup .ss-option{padding:.5rem .5rem .5rem 1.5rem}.ss-content .ss-list .ss-option{cursor:pointer;display:block;padding:.5rem;-webkit-user-select:none;-moz-user-select:none;user-select:none;white-space:normal;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.ss-content .ss-list .ss-option:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.ss-content .ss-list .ss-option:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ss-content .ss-list .ss-option:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.ss-content .ss-list .ss-option{min-height:0}.ss-content .ss-list .ss-option:empty{display:none;margin:0;padding:0}.ss-content .ss-list .ss-option.ss-highlighted,.ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected{--tw-bg-opacity:1;background-color:rgb(23 184 190/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ss-content .ss-list .ss-option.ss-highlighted:where(.dark,.dark *),.ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.ss-content .ss-list .ss-option.ss-disabled{cursor:not-allowed;--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.ss-content .ss-list .ss-option.ss-disabled:where(.dark,.dark *){--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))}.ss-content .ss-list .ss-option .ss-search-highlight{display:inline-block;--tw-bg-opacity:1;background-color:rgb(252 233 106/var(--tw-bg-opacity))}.ss-content .ss-list .ss-option .ss-search-highlight:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(250 202 21/var(--tw-bg-opacity))}.sr-only{height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;clip:rect(0,0,0,0);border-width:0;white-space:nowrap}.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}.inset-x-0{left:0;right:0}.inset-y-0{bottom:0;top:0}.-top-\[50px\]{top:-50px}.bottom-0{bottom:0}.bottom-\[-2px\]{bottom:-2px}.bottom-\[60px\]{bottom:60px}.left-0{left:0}.right-0{right:0}.top-0{top:0}.top-16{top:4rem}.top-\[30px\]{top:30px}.top-\[50px\]{top:50px}.z-0{z-index:0}.z-10{z-index:10}.z-20{z-index:20}.z-30{z-index:30}.z-40{z-index:40}.z-50{z-index:50}.z-\[10000\]{z-index:10000}.z-\[2\]{z-index:2}.z-\[3\]{z-index:3}.z-\[7\]{z-index:7}.z-\[9999\]{z-index:9999}.col-span-1{grid-column:span 1/span 1}.col-span-10{grid-column:span 10/span 10}.col-span-11{grid-column:span 11/span 11}.col-span-12{grid-column:span 12/span 12}.col-span-2{grid-column:span 2/span 2}.col-span-3{grid-column:span 3/span 3}.col-span-4{grid-column:span 4/span 4}.col-span-5{grid-column:span 5/span 5}.col-span-6{grid-column:span 6/span 6}.col-span-7{grid-column:span 7/span 7}.col-span-8{grid-column:span 8/span 8}.col-span-9{grid-column:span 9/span 9}.col-span-full{grid-column:1/-1}.col-start-1{grid-column-start:1}.col-start-10{grid-column-start:10}.col-start-11{grid-column-start:11}.col-start-12{grid-column-start:12}.col-start-13{grid-column-start:13}.col-start-2{grid-column-start:2}.col-start-3{grid-column-start:3}.col-start-4{grid-column-start:4}.col-start-5{grid-column-start:5}.col-start-6{grid-column-start:6}.col-start-7{grid-column-start:7}.col-start-8{grid-column-start:8}.col-start-9{grid-column-start:9}.col-start-auto{grid-column-start:auto}.col-end-1{grid-column-end:1}.col-end-10{grid-column-end:10}.col-end-11{grid-column-end:11}.col-end-12{grid-column-end:12}.col-end-13{grid-column-end:13}.col-end-2{grid-column-end:2}.col-end-3{grid-column-end:3}.col-end-4{grid-column-end:4}.col-end-5{grid-column-end:5}.col-end-6{grid-column-end:6}.col-end-7{grid-column-end:7}.col-end-8{grid-column-end:8}.col-end-9{grid-column-end:9}.col-end-auto{grid-column-end:auto}.row-span-1{grid-row:span 1/span 1}.row-span-10{grid-row:span 10/span 10}.row-span-11{grid-row:span 11/span 11}.row-span-12{grid-row:span 12/span 12}.row-span-2{grid-row:span 2/span 2}.row-span-3{grid-row:span 3/span 3}.row-span-4{grid-row:span 4/span 4}.row-span-5{grid-row:span 5/span 5}.row-span-6{grid-row:span 6/span 6}.row-span-7{grid-row:span 7/span 7}.row-span-8{grid-row:span 8/span 8}.row-span-9{grid-row:span 9/span 9}.row-span-full{grid-row:1/-1}.row-start-1{grid-row-start:1}.row-start-10{grid-row-start:10}.row-start-11{grid-row-start:11}.row-start-12{grid-row-start:12}.row-start-13{grid-row-start:13}.row-start-2{grid-row-start:2}.row-start-3{grid-row-start:3}.row-start-4{grid-row-start:4}.row-start-5{grid-row-start:5}.row-start-6{grid-row-start:6}.row-start-7{grid-row-start:7}.row-start-8{grid-row-start:8}.row-start-9{grid-row-start:9}.row-start-auto{grid-row-start:auto}.row-end-1{grid-row-end:1}.row-end-10{grid-row-end:10}.row-end-11{grid-row-end:11}.row-end-12{grid-row-end:12}.row-end-13{grid-row-end:13}.row-end-2{grid-row-end:2}.row-end-3{grid-row-end:3}.row-end-4{grid-row-end:4}.row-end-5{grid-row-end:5}.row-end-6{grid-row-end:6}.row-end-7{grid-row-end:7}.row-end-8{grid-row-end:8}.row-end-9{grid-row-end:9}.row-end-auto{grid-row-end:auto}.m-0{margin:0}.-mx-1{margin-left:-.25rem;margin-right:-.25rem}.-mx-1\.5{margin-left:-.375rem;margin-right:-.375rem}.-my-1{margin-bottom:-.25rem;margin-top:-.25rem}.-my-1\.5{margin-bottom:-.375rem;margin-top:-.375rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.mx-4{margin-left:1rem;margin-right:1rem}.mx-auto{margin-left:auto;margin-right:auto}.my-1{margin-bottom:.25rem;margin-top:.25rem}.my-3{margin-bottom:.75rem;margin-top:.75rem}.my-4{margin-bottom:1rem;margin-top:1rem}.-ml-1{margin-left:-.25rem}.-mr-1{margin-right:-.25rem}.-mt-5{margin-top:-1.25rem}.mb-1{margin-bottom:.25rem}.mb-1\.5{margin-bottom:.375rem}.mb-2{margin-bottom:.5rem}.mb-2\.5{margin-bottom:.625rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.me-2{margin-inline-end:.5rem}.me-2\.5{margin-inline-end:.625rem}.me-3{margin-inline-end:.75rem}.ml-1{margin-left:.25rem}.ml-1\.5{margin-left:.375rem}.ml-2{margin-left:.5rem}.ml-2\.5{margin-left:.625rem}.ml-3{margin-left:.75rem}.ml-6{margin-left:1.5rem}.ml-9{margin-left:2.25rem}.ml-auto{margin-left:auto}.mr-1{margin-right:.25rem}.mr-1\.5{margin-right:.375rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.mr-auto{margin-right:auto}.ms-1{margin-inline-start:.25rem}.ms-2{margin-inline-start:.5rem}.ms-3{margin-inline-start:.75rem}.ms-auto{margin-inline-start:auto}.mt-1{margin-top:.25rem}.mt-1\.5{margin-top:.375rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.mt-\[2px\]{margin-top:2px}.box-border{box-sizing:border-box}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.h-0{height:0}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-2{height:.5rem}.h-2\.5{height:.625rem}.h-24{height:6rem}.h-3{height:.75rem}.h-3\.5{height:.875rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-\[10px\]{height:10px}.h-\[13px\]{height:13px}.h-\[30px\]{height:30px}.h-\[50px\]{height:50px}.h-\[7px\]{height:7px}.h-\[8px\]{height:8px}.h-auto{height:auto}.h-full{height:100%}.h-screen{height:100vh}.max-h-\[150px\]{max-height:150px}.max-h-\[300px\]{max-height:300px}.max-h-fit{max-height:-moz-fit-content;max-height:fit-content}.max-h-full{max-height:100%}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.w-0{width:0}.w-1\/2{width:50%}.w-10{width:2.5rem}.w-11{width:2.75rem}.w-12{width:3rem}.w-2{width:.5rem}.w-2\.5{width:.625rem}.w-24{width:6rem}.w-3{width:.75rem}.w-3\.5{width:.875rem}.w-32{width:8rem}.w-4{width:1rem}.w-44{width:11rem}.w-48{width:12rem}.w-5{width:1.25rem}.w-56{width:14rem}.w-6{width:1.5rem}.w-64{width:16rem}.w-8{width:2rem}.w-\[10px\]{width:10px}.w-\[13px\]{width:13px}.w-\[7px\]{width:7px}.w-\[8px\]{width:8px}.w-auto{width:auto}.w-fit{width:-moz-fit-content;width:fit-content}.w-full{width:100%}.min-w-0{min-width:0}.min-w-\[30px\]{min-width:30px}.min-w-\[4em\]{min-width:4em}.max-w-\[250px\]{max-width:250px}.max-w-\[310px\]{max-width:310px}.max-w-full{max-width:100%}.max-w-md{max-width:28rem}.max-w-sm{max-width:24rem}.flex-1{flex:1 1 0%}.flex-auto{flex:1 1 auto}.flex-none{flex:none}.flex-shrink{flex-shrink:1}.flex-shrink-0,.shrink-0{flex-shrink:0}.table-auto{table-layout:auto}.origin-bottom{transform-origin:bottom}.origin-top{transform-origin:top}.-translate-x-full{--tw-translate-x:-100%}.-translate-x-full,.-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%}.translate-x-0{--tw-translate-x:0px}.translate-x-0,.translate-x-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-x-full{--tw-translate-x:100%}.translate-y-full{--tw-translate-y:100%}.rotate-180,.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))}.rotate-180{--tw-rotate:180deg}.scale-0{--tw-scale-x:0;--tw-scale-y:0}.scale-0,.scale-100{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))}.scale-100{--tw-scale-x:1;--tw-scale-y:1}.scale-y-0{--tw-scale-y:0}.scale-y-0,.scale-y-100{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))}.scale-y-100{--tw-scale-y:1}.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))}.transform-none{transform:none}.cursor-default{cursor:default}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.resize{resize:both}.list-inside{list-style-position:inside}.list-disc{list-style-type:disc}.list-none{list-style-type:none}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.grid-flow-row-dense{grid-auto-flow:row dense}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.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-end{align-items:flex-end}.items-center{align-items:center}.items-stretch{align-items:stretch}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.gap-\[5px\]{gap:5px}.gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.gap-y-10{row-gap:2.5rem}.gap-y-2{row-gap:.5rem}.-space-x-px>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(-1px*(1 - var(--tw-space-x-reverse)));margin-right:calc(-1px*var(--tw-space-x-reverse))}.space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.25rem*var(--tw-space-x-reverse))}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.space-x-3>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.75rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.75rem*var(--tw-space-x-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.25rem*var(--tw-space-y-reverse));margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.divide-gray-100>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(243 244 246/var(--tw-divide-opacity))}.divide-gray-200>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(229 231 235/var(--tw-divide-opacity))}.self-center{align-self:center}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.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-normal{white-space:normal}.whitespace-nowrap{white-space:nowrap}.whitespace-pre{white-space:pre}.whitespace-pre-line{white-space:pre-line}.whitespace-pre-wrap{white-space:pre-wrap}.break-words{overflow-wrap:break-word}.rounded{border-radius:.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-sm{border-radius:.125rem}.rounded-xl{border-radius:.75rem}.rounded-b-lg{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.rounded-b-md{border-bottom-left-radius:.375rem;border-bottom-right-radius:.375rem}.rounded-e-lg{border-end-end-radius:.5rem;border-start-end-radius:.5rem}.rounded-e-md{border-end-end-radius:.375rem;border-start-end-radius:.375rem}.rounded-l-lg{border-bottom-left-radius:.5rem;border-top-left-radius:.5rem}.rounded-r-lg{border-bottom-right-radius:.5rem;border-top-right-radius:.5rem}.rounded-s-lg{border-end-start-radius:.5rem;border-start-start-radius:.5rem}.rounded-s-md{border-end-start-radius:.375rem;border-start-start-radius:.375rem}.rounded-t-lg{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.rounded-t-md{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.rounded-br-none{border-bottom-right-radius:0}.border{border-width:1px}.border-0{border-width:0}.border-y-0{border-bottom-width:0;border-top-width:0}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-e-0{border-inline-end-width:0}.border-l{border-left-width:1px}.border-r{border-right-width:1px}.border-r-0{border-right-width:0}.border-s{border-inline-start-width:1px}.border-t{border-top-width:1px}.border-solid{border-style:solid}.border-none{border-style:none}.\!border-primary-700{--tw-border-opacity:1!important;border-color:rgb(11 109 113/var(--tw-border-opacity))!important}.border-black{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.border-blue-600{--tw-border-opacity:1;border-color:rgb(28 100 242/var(--tw-border-opacity))}.border-blue-700{--tw-border-opacity:1;border-color:rgb(26 86 219/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-gray-400{--tw-border-opacity:1;border-color:rgb(156 163 175/var(--tw-border-opacity))}.border-gray-600{--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.border-gray-800{--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}.border-green-500{--tw-border-opacity:1;border-color:rgb(14 159 110/var(--tw-border-opacity))}.border-green-700{--tw-border-opacity:1;border-color:rgb(4 108 78/var(--tw-border-opacity))}.border-primary-700{--tw-border-opacity:1;border-color:rgb(11 109 113/var(--tw-border-opacity))}.border-purple-700{--tw-border-opacity:1;border-color:rgb(108 43 217/var(--tw-border-opacity))}.border-red-300{--tw-border-opacity:1;border-color:rgb(248 180 180/var(--tw-border-opacity))}.border-red-500{--tw-border-opacity:1;border-color:rgb(240 82 82/var(--tw-border-opacity))}.border-red-600{--tw-border-opacity:1;border-color:rgb(224 36 36/var(--tw-border-opacity))}.border-red-700{--tw-border-opacity:1;border-color:rgb(200 30 30/var(--tw-border-opacity))}.border-transparent{border-color:transparent}.border-white{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.border-yellow-400{--tw-border-opacity:1;border-color:rgb(227 160 8/var(--tw-border-opacity))}.border-l-gray-300{--tw-border-opacity:1;border-left-color:rgb(209 213 219/var(--tw-border-opacity))}.border-r-white{--tw-border-opacity:1;border-right-color:rgb(255 255 255/var(--tw-border-opacity))}.\!bg-primary-600{--tw-bg-opacity:1!important;background-color:rgb(14 143 148/var(--tw-bg-opacity))!important}.\!bg-primary-700{--tw-bg-opacity:1!important;background-color:rgb(11 109 113/var(--tw-bg-opacity))!important}.bg-\[\#7e7\]{--tw-bg-opacity:1;background-color:rgb(119 238 119/var(--tw-bg-opacity))}.bg-accent-100{--tw-bg-opacity:1;background-color:rgb(255 228 231/var(--tw-bg-opacity))}.bg-accent-700{--tw-bg-opacity:1;background-color:rgb(231 61 85/var(--tw-bg-opacity))}.bg-blue-100{--tw-bg-opacity:1;background-color:rgb(225 239 254/var(--tw-bg-opacity))}.bg-blue-50{--tw-bg-opacity:1;background-color:rgb(235 245 255/var(--tw-bg-opacity))}.bg-blue-600{--tw-bg-opacity:1;background-color:rgb(28 100 242/var(--tw-bg-opacity))}.bg-blue-700{--tw-bg-opacity:1;background-color:rgb(26 86 219/var(--tw-bg-opacity))}.bg-blue-800{--tw-bg-opacity:1;background-color:rgb(30 66 159/var(--tw-bg-opacity))}.bg-danger-100{--tw-bg-opacity:1;background-color:rgb(254 226 226/var(--tw-bg-opacity))}.bg-danger-700{--tw-bg-opacity:1;background-color:rgb(185 28 28/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-200\/70{background-color:rgba(229,231,235,.7)}.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-800{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.bg-gray-900{--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.bg-gray-900\/50{background-color:rgba(17,24,39,.5)}.bg-green-100{--tw-bg-opacity:1;background-color:rgb(222 247 236/var(--tw-bg-opacity))}.bg-green-400{--tw-bg-opacity:1;background-color:rgb(49 196 141/var(--tw-bg-opacity))}.bg-green-50{--tw-bg-opacity:1;background-color:rgb(243 250 247/var(--tw-bg-opacity))}.bg-green-700{--tw-bg-opacity:1;background-color:rgb(4 108 78/var(--tw-bg-opacity))}.bg-green-800{--tw-bg-opacity:1;background-color:rgb(3 84 63/var(--tw-bg-opacity))}.bg-info-100{--tw-bg-opacity:1;background-color:rgb(224 242 254/var(--tw-bg-opacity))}.bg-info-700{--tw-bg-opacity:1;background-color:rgb(3 105 161/var(--tw-bg-opacity))}.bg-primary-100{--tw-bg-opacity:1;background-color:rgb(224 250 250/var(--tw-bg-opacity))}.bg-primary-500{--tw-bg-opacity:1;background-color:rgb(23 184 190/var(--tw-bg-opacity))}.bg-primary-600{--tw-bg-opacity:1;background-color:rgb(14 143 148/var(--tw-bg-opacity))}.bg-primary-700{--tw-bg-opacity:1;background-color:rgb(11 109 113/var(--tw-bg-opacity))}.bg-purple-500{--tw-bg-opacity:1;background-color:rgb(144 97 249/var(--tw-bg-opacity))}.bg-purple-700{--tw-bg-opacity:1;background-color:rgb(108 43 217/var(--tw-bg-opacity))}.bg-red-100{--tw-bg-opacity:1;background-color:rgb(253 232 232/var(--tw-bg-opacity))}.bg-red-100\/50{background-color:hsla(0,84%,95%,.5)}.bg-red-50{--tw-bg-opacity:1;background-color:rgb(253 242 242/var(--tw-bg-opacity))}.bg-red-600{--tw-bg-opacity:1;background-color:rgb(224 36 36/var(--tw-bg-opacity))}.bg-red-700{--tw-bg-opacity:1;background-color:rgb(200 30 30/var(--tw-bg-opacity))}.bg-red-800{--tw-bg-opacity:1;background-color:rgb(155 28 28/var(--tw-bg-opacity))}.bg-secondary-100{--tw-bg-opacity:1;background-color:rgb(230 236 241/var(--tw-bg-opacity))}.bg-secondary-700{--tw-bg-opacity:1;background-color:rgb(21 44 61/var(--tw-bg-opacity))}.bg-success-100{--tw-bg-opacity:1;background-color:rgb(220 252 231/var(--tw-bg-opacity))}.bg-success-700{--tw-bg-opacity:1;background-color:rgb(21 128 61/var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.bg-warning-100{--tw-bg-opacity:1;background-color:rgb(254 243 199/var(--tw-bg-opacity))}.bg-warning-700{--tw-bg-opacity:1;background-color:rgb(180 83 9/var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-white\/50{background-color:hsla(0,0%,100%,.5)}.bg-yellow-100{--tw-bg-opacity:1;background-color:rgb(253 246 178/var(--tw-bg-opacity))}.bg-yellow-200{--tw-bg-opacity:1;background-color:rgb(252 233 106/var(--tw-bg-opacity))}.bg-yellow-200\/30{background-color:hsla(52,96%,70%,.3)}.bg-yellow-200\/40{background-color:hsla(52,96%,70%,.4)}.bg-yellow-300{--tw-bg-opacity:1;background-color:rgb(250 202 21/var(--tw-bg-opacity))}.bg-yellow-400{--tw-bg-opacity:1;background-color:rgb(227 160 8/var(--tw-bg-opacity))}.bg-yellow-50{--tw-bg-opacity:1;background-color:rgb(253 253 234/var(--tw-bg-opacity))}.bg-yellow-500{--tw-bg-opacity:1;background-color:rgb(194 120 3/var(--tw-bg-opacity))}.bg-yellow-700{--tw-bg-opacity:1;background-color:rgb(142 75 16/var(--tw-bg-opacity))}.bg-yellow-800{--tw-bg-opacity:1;background-color:rgb(114 59 19/var(--tw-bg-opacity))}.bg-contain{background-size:contain}.fill-none{fill:none}.stroke-gray-500{stroke:#6b7280}.stroke-green-500{stroke:#0e9f6e}.stroke-red-500{stroke:#f05252}.p-0{padding:0}.p-1{padding:.25rem}.p-1\.5{padding:.375rem}.p-2{padding:.5rem}.p-2\.5{padding:.625rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.p-\[0_5px\]{padding:0 5px}.p-\[3px_5px\]{padding:3px 5px}.px-0{padding-left:0;padding-right:0}.px-1{padding-left:.25rem;padding-right:.25rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-1\.5{padding-bottom:.375rem;padding-top:.375rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-2\.5{padding-bottom:.625rem;padding-top:.625rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-3\.5{padding-bottom:.875rem;padding-top:.875rem}.py-4{padding-bottom:1rem;padding-top:1rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.py-8{padding-bottom:2rem;padding-top:2rem}.pb-6{padding-bottom:1.5rem}.pl-10{padding-left:2.5rem}.pl-11{padding-left:2.75rem}.pl-3{padding-left:.75rem}.ps-0{padding-inline-start:0}.pt-14{padding-top:3.5rem}.pt-2{padding-top:.5rem}.pt-20{padding-top:5rem}.pt-4{padding-top:1rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-start{text-align:start}.text-end{text-align:end}.-indent-\[10px\]{text-indent:-10px}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-\[60\%\]{font-size:60%}.text-base{font-size:1rem;line-height:1.5rem}.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}.font-bold{font-weight:700}.font-extrabold{font-weight:800}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.italic{font-style:italic}.leading-6{line-height:1.5rem}.leading-9{line-height:2.25rem}.leading-none{line-height:1}.leading-normal{line-height:1.5}.leading-tight{line-height:1.25}.tracking-tight{letter-spacing:-.025em}.text-accent-600{--tw-text-opacity:1;color:rgb(255 100 122/var(--tw-text-opacity))}.text-accent-700{--tw-text-opacity:1;color:rgb(231 61 85/var(--tw-text-opacity))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-blue-200{--tw-text-opacity:1;color:rgb(195 221 253/var(--tw-text-opacity))}.text-blue-400{--tw-text-opacity:1;color:rgb(118 169 250/var(--tw-text-opacity))}.text-blue-500{--tw-text-opacity:1;color:rgb(63 131 248/var(--tw-text-opacity))}.text-blue-600{--tw-text-opacity:1;color:rgb(28 100 242/var(--tw-text-opacity))}.text-blue-700{--tw-text-opacity:1;color:rgb(26 86 219/var(--tw-text-opacity))}.text-blue-800{--tw-text-opacity:1;color:rgb(30 66 159/var(--tw-text-opacity))}.text-danger-700{--tw-text-opacity:1;color:rgb(185 28 28/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-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.text-green-200{--tw-text-opacity:1;color:rgb(188 240 218/var(--tw-text-opacity))}.text-green-400{--tw-text-opacity:1;color:rgb(49 196 141/var(--tw-text-opacity))}.text-green-500{--tw-text-opacity:1;color:rgb(14 159 110/var(--tw-text-opacity))}.text-green-600{--tw-text-opacity:1;color:rgb(5 122 85/var(--tw-text-opacity))}.text-green-700{--tw-text-opacity:1;color:rgb(4 108 78/var(--tw-text-opacity))}.text-green-800{--tw-text-opacity:1;color:rgb(3 84 63/var(--tw-text-opacity))}.text-green-900{--tw-text-opacity:1;color:rgb(1 71 55/var(--tw-text-opacity))}.text-info-700{--tw-text-opacity:1;color:rgb(3 105 161/var(--tw-text-opacity))}.text-primary-600{--tw-text-opacity:1;color:rgb(14 143 148/var(--tw-text-opacity))}.text-primary-700{--tw-text-opacity:1;color:rgb(11 109 113/var(--tw-text-opacity))}.text-primary-800{--tw-text-opacity:1;color:rgb(10 85 88/var(--tw-text-opacity))}.text-purple-600{--tw-text-opacity:1;color:rgb(126 58 242/var(--tw-text-opacity))}.text-purple-700{--tw-text-opacity:1;color:rgb(108 43 217/var(--tw-text-opacity))}.text-red-200{--tw-text-opacity:1;color:rgb(251 213 213/var(--tw-text-opacity))}.text-red-400{--tw-text-opacity:1;color:rgb(249 128 128/var(--tw-text-opacity))}.text-red-500{--tw-text-opacity:1;color:rgb(240 82 82/var(--tw-text-opacity))}.text-red-600{--tw-text-opacity:1;color:rgb(224 36 36/var(--tw-text-opacity))}.text-red-700{--tw-text-opacity:1;color:rgb(200 30 30/var(--tw-text-opacity))}.text-red-800{--tw-text-opacity:1;color:rgb(155 28 28/var(--tw-text-opacity))}.text-red-900{--tw-text-opacity:1;color:rgb(119 29 29/var(--tw-text-opacity))}.text-secondary-600{--tw-text-opacity:1;color:rgb(26 53 73/var(--tw-text-opacity))}.text-secondary-700{--tw-text-opacity:1;color:rgb(21 44 61/var(--tw-text-opacity))}.text-secondary-900{--tw-text-opacity:1;color:rgb(12 27 38/var(--tw-text-opacity))}.text-success-700{--tw-text-opacity:1;color:rgb(21 128 61/var(--tw-text-opacity))}.text-transparent{color:transparent}.text-warning-700{--tw-text-opacity:1;color:rgb(180 83 9/var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-yellow-200{--tw-text-opacity:1;color:rgb(252 233 106/var(--tw-text-opacity))}.text-yellow-400{--tw-text-opacity:1;color:rgb(227 160 8/var(--tw-text-opacity))}.text-yellow-500{--tw-text-opacity:1;color:rgb(194 120 3/var(--tw-text-opacity))}.text-yellow-600{--tw-text-opacity:1;color:rgb(159 88 10/var(--tw-text-opacity))}.text-yellow-800{--tw-text-opacity:1;color:rgb(114 59 19/var(--tw-text-opacity))}.underline{text-decoration-line:underline}.line-through{text-decoration-line:line-through}.no-underline{text-decoration-line:none}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.placeholder-gray-400::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.placeholder-gray-400::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.placeholder-green-700::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(4 108 78/var(--tw-placeholder-opacity))}.placeholder-green-700::placeholder{--tw-placeholder-opacity:1;color:rgb(4 108 78/var(--tw-placeholder-opacity))}.placeholder-red-700::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(200 30 30/var(--tw-placeholder-opacity))}.placeholder-red-700::placeholder{--tw-placeholder-opacity:1;color:rgb(200 30 30/var(--tw-placeholder-opacity))}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.shadow,.shadow-inner{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-inner{--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color)}.shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow-lg,.shadow-md{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--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}.ring-1{--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(1px + 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)}.ring-blue-400{--tw-ring-opacity:1;--tw-ring-color:rgb(118 169 250/var(--tw-ring-opacity))}.ring-green-400{--tw-ring-opacity:1;--tw-ring-color:rgb(49 196 141/var(--tw-ring-opacity))}.ring-primary-500{--tw-ring-opacity:1;--tw-ring-color:rgb(23 184 190/var(--tw-ring-opacity))}.ring-red-400{--tw-ring-opacity:1;--tw-ring-color:rgb(249 128 128/var(--tw-ring-opacity))}.ring-yellow-400{--tw-ring-opacity:1;--tw-ring-color:rgb(227 160 8/var(--tw-ring-opacity))}.blur{--tw-blur:blur(8px)}.blur,.grayscale{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)}.grayscale{--tw-grayscale:grayscale(100%)}.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)}.transition{transition-duration:.15s;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-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.duration-75{transition-duration:75ms}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.dark\:format-invert:where(.dark,.dark *){--tw-prose-body:var(--tw-prose-invert-body);--tw-prose-headings:var(--tw-prose-invert-headings);--tw-prose-lead:var(--tw-prose-invert-lead);--tw-prose-links:var(--tw-prose-invert-links);--tw-prose-bold:var(--tw-prose-invert-bold);--tw-prose-counters:var(--tw-prose-invert-counters);--tw-prose-bullets:var(--tw-prose-invert-bullets);--tw-prose-hr:var(--tw-prose-invert-hr);--tw-prose-quotes:var(--tw-prose-invert-quotes);--tw-prose-quote-borders:var(--tw-prose-invert-quote-borders);--tw-prose-captions:var(--tw-prose-invert-captions);--tw-prose-kbd:var(--tw-prose-invert-kbd);--tw-prose-kbd-shadows:var(--tw-prose-invert-kbd-shadows);--tw-prose-code:var(--tw-prose-invert-code);--tw-prose-pre-code:var(--tw-prose-invert-pre-code);--tw-prose-pre-bg:var(--tw-prose-invert-pre-bg);--tw-prose-th-borders:var(--tw-prose-invert-th-borders);--tw-prose-td-borders:var(--tw-prose-invert-td-borders)}.first\:border-t-0:first-child{border-top-width:0}.first\:pt-0:first-child{padding-top:0}.last\:border-r-0:last-child{border-right-width:0}.last\:border-none:last-child{border-style:none}.valid\:border-green-500:valid{--tw-border-opacity:1;border-color:rgb(14 159 110/var(--tw-border-opacity))}.invalid\:border-red-500:invalid{--tw-border-opacity:1;border-color:rgb(240 82 82/var(--tw-border-opacity))}.invalid\:text-red-600:invalid{--tw-text-opacity:1;color:rgb(224 36 36/var(--tw-text-opacity))}.hover\:max-w-\[600px\]:hover{max-width:600px}.hover\:max-w-fit:hover{max-width:-moz-fit-content;max-width:fit-content}.hover\:border-gray-300:hover{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.hover\:\!bg-primary-800:hover{--tw-bg-opacity:1!important;background-color:rgb(10 85 88/var(--tw-bg-opacity))!important}.hover\:bg-accent-200:hover{--tw-bg-opacity:1;background-color:rgb(255 204 210/var(--tw-bg-opacity))}.hover\:bg-accent-800:hover{--tw-bg-opacity:1;background-color:rgb(209 45 68/var(--tw-bg-opacity))}.hover\:bg-blue-100:hover{--tw-bg-opacity:1;background-color:rgb(225 239 254/var(--tw-bg-opacity))}.hover\:bg-blue-700:hover{--tw-bg-opacity:1;background-color:rgb(26 86 219/var(--tw-bg-opacity))}.hover\:bg-blue-800:hover{--tw-bg-opacity:1;background-color:rgb(30 66 159/var(--tw-bg-opacity))}.hover\:bg-danger-200:hover{--tw-bg-opacity:1;background-color:rgb(254 202 202/var(--tw-bg-opacity))}.hover\:bg-danger-800:hover{--tw-bg-opacity:1;background-color:rgb(153 27 27/var(--tw-bg-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-900:hover{--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.hover\:bg-green-800:hover{--tw-bg-opacity:1;background-color:rgb(3 84 63/var(--tw-bg-opacity))}.hover\:bg-info-200:hover{--tw-bg-opacity:1;background-color:rgb(186 230 253/var(--tw-bg-opacity))}.hover\:bg-info-800:hover{--tw-bg-opacity:1;background-color:rgb(7 89 133/var(--tw-bg-opacity))}.hover\:bg-primary-200:hover{--tw-bg-opacity:1;background-color:rgb(186 243 245/var(--tw-bg-opacity))}.hover\:bg-primary-700:hover{--tw-bg-opacity:1;background-color:rgb(11 109 113/var(--tw-bg-opacity))}.hover\:bg-primary-800:hover{--tw-bg-opacity:1;background-color:rgb(10 85 88/var(--tw-bg-opacity))}.hover\:bg-purple-800:hover{--tw-bg-opacity:1;background-color:rgb(85 33 181/var(--tw-bg-opacity))}.hover\:bg-red-700:hover{--tw-bg-opacity:1;background-color:rgb(200 30 30/var(--tw-bg-opacity))}.hover\:bg-red-800:hover{--tw-bg-opacity:1;background-color:rgb(155 28 28/var(--tw-bg-opacity))}.hover\:bg-secondary-200:hover{--tw-bg-opacity:1;background-color:rgb(199 213 225/var(--tw-bg-opacity))}.hover\:bg-secondary-800:hover{--tw-bg-opacity:1;background-color:rgb(16 34 49/var(--tw-bg-opacity))}.hover\:bg-success-200:hover{--tw-bg-opacity:1;background-color:rgb(187 247 208/var(--tw-bg-opacity))}.hover\:bg-success-800:hover{--tw-bg-opacity:1;background-color:rgb(22 101 52/var(--tw-bg-opacity))}.hover\:bg-warning-200:hover{--tw-bg-opacity:1;background-color:rgb(253 230 138/var(--tw-bg-opacity))}.hover\:bg-warning-800:hover{--tw-bg-opacity:1;background-color:rgb(146 64 14/var(--tw-bg-opacity))}.hover\:bg-white:hover{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.hover\:bg-yellow-400:hover{--tw-bg-opacity:1;background-color:rgb(227 160 8/var(--tw-bg-opacity))}.hover\:bg-yellow-500:hover{--tw-bg-opacity:1;background-color:rgb(194 120 3/var(--tw-bg-opacity))}.hover\:bg-yellow-800:hover{--tw-bg-opacity:1;background-color:rgb(114 59 19/var(--tw-bg-opacity))}.hover\:text-blue-600:hover{--tw-text-opacity:1;color:rgb(28 100 242/var(--tw-text-opacity))}.hover\:text-blue-700:hover{--tw-text-opacity:1;color:rgb(26 86 219/var(--tw-text-opacity))}.hover\:text-blue-800:hover{--tw-text-opacity:1;color:rgb(30 66 159/var(--tw-text-opacity))}.hover\:text-gray-600:hover{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.hover\:text-gray-700:hover{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.hover\:text-gray-900:hover{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.hover\:text-primary-600:hover{--tw-text-opacity:1;color:rgb(14 143 148/var(--tw-text-opacity))}.hover\:text-primary-700:hover{--tw-text-opacity:1;color:rgb(11 109 113/var(--tw-text-opacity))}.hover\:text-primary-800:hover{--tw-text-opacity:1;color:rgb(10 85 88/var(--tw-text-opacity))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.hover\:underline:hover{text-decoration-line:underline}.focus\:z-10:focus{z-index:10}.focus\:border-blue-500:focus{--tw-border-opacity:1;border-color:rgb(63 131 248/var(--tw-border-opacity))}.focus\:border-green-500:focus{--tw-border-opacity:1;border-color:rgb(14 159 110/var(--tw-border-opacity))}.focus\:border-primary-500:focus{--tw-border-opacity:1;border-color:rgb(23 184 190/var(--tw-border-opacity))}.focus\:border-primary-600:focus{--tw-border-opacity:1;border-color:rgb(14 143 148/var(--tw-border-opacity))}.focus\:border-red-500:focus{--tw-border-opacity:1;border-color:rgb(240 82 82/var(--tw-border-opacity))}.focus\:border-red-600:focus{--tw-border-opacity:1;border-color:rgb(224 36 36/var(--tw-border-opacity))}.focus\:bg-gray-100:focus{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.focus\:text-gray-700:focus{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.focus\:text-white:focus{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring-2: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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-2:focus,.focus\:ring-4:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-4: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(4px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:\!ring-primary-300:focus{--tw-ring-opacity:1!important;--tw-ring-color:rgb(125 232 236/var(--tw-ring-opacity))!important}.focus\:ring-accent-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(255 177 186/var(--tw-ring-opacity))}.focus\:ring-blue-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(164 202 254/var(--tw-ring-opacity))}.focus\:ring-blue-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(63 131 248/var(--tw-ring-opacity))}.focus\:ring-danger-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(252 165 165/var(--tw-ring-opacity))}.focus\:ring-gray-100:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(243 244 246/var(--tw-ring-opacity))}.focus\:ring-gray-200:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(229 231 235/var(--tw-ring-opacity))}.focus\:ring-gray-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(209 213 219/var(--tw-ring-opacity))}.focus\:ring-green-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(132 225 188/var(--tw-ring-opacity))}.focus\:ring-green-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(14 159 110/var(--tw-ring-opacity))}.focus\:ring-info-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(125 211 252/var(--tw-ring-opacity))}.focus\:ring-primary-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(125 232 236/var(--tw-ring-opacity))}.focus\:ring-primary-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(23 184 190/var(--tw-ring-opacity))}.focus\:ring-primary-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(14 143 148/var(--tw-ring-opacity))}.focus\:ring-primary-700:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(11 109 113/var(--tw-ring-opacity))}.focus\:ring-purple-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(202 191 253/var(--tw-ring-opacity))}.focus\:ring-red-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(248 180 180/var(--tw-ring-opacity))}.focus\:ring-red-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(240 82 82/var(--tw-ring-opacity))}.focus\:ring-red-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(224 36 36/var(--tw-ring-opacity))}.focus\:ring-secondary-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(157 179 199/var(--tw-ring-opacity))}.focus\:ring-success-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(134 239 172/var(--tw-ring-opacity))}.focus\:ring-warning-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(252 211 77/var(--tw-ring-opacity))}.focus\:ring-yellow-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(250 202 21/var(--tw-ring-opacity))}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus\:invalid\:border-red-500:invalid:focus{--tw-border-opacity:1;border-color:rgb(240 82 82/var(--tw-border-opacity))}.focus\:invalid\:ring-red-500:invalid:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(240 82 82/var(--tw-ring-opacity))}.focus-visible\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\:ring-2:focus-visible{--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(2px + 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-visible\:ring-blue-600:focus-visible{--tw-ring-opacity:1;--tw-ring-color:rgb(28 100 242/var(--tw-ring-opacity))}.focus-visible\:ring-primary-600:focus-visible{--tw-ring-opacity:1;--tw-ring-color:rgb(14 143 148/var(--tw-ring-opacity))}.group:hover .group-hover\:text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.group:hover .group-hover\:text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}@media (prefers-reduced-motion:no-preference){@keyframes pulse{50%{opacity:.5}}.motion-safe\:animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes spin{to{transform:rotate(1turn)}}.motion-safe\:animate-spin{animation:spin 1s linear infinite}}@media (min-width:475px){.xs\:block{display:block}}@media (min-width:640px){.sm\:col-span-1{grid-column:span 1/span 1}.sm\:col-span-10{grid-column:span 10/span 10}.sm\:col-span-11{grid-column:span 11/span 11}.sm\:col-span-12{grid-column:span 12/span 12}.sm\:col-span-2{grid-column:span 2/span 2}.sm\:col-span-3{grid-column:span 3/span 3}.sm\:col-span-4{grid-column:span 4/span 4}.sm\:col-span-5{grid-column:span 5/span 5}.sm\:col-span-6{grid-column:span 6/span 6}.sm\:col-span-7{grid-column:span 7/span 7}.sm\:col-span-8{grid-column:span 8/span 8}.sm\:col-span-9{grid-column:span 9/span 9}.sm\:col-span-full{grid-column:1/-1}.sm\:col-start-1{grid-column-start:1}.sm\:col-start-10{grid-column-start:10}.sm\:col-start-11{grid-column-start:11}.sm\:col-start-12{grid-column-start:12}.sm\:col-start-13{grid-column-start:13}.sm\:col-start-2{grid-column-start:2}.sm\:col-start-3{grid-column-start:3}.sm\:col-start-4{grid-column-start:4}.sm\:col-start-5{grid-column-start:5}.sm\:col-start-6{grid-column-start:6}.sm\:col-start-7{grid-column-start:7}.sm\:col-start-8{grid-column-start:8}.sm\:col-start-9{grid-column-start:9}.sm\:col-start-auto{grid-column-start:auto}.sm\:col-end-1{grid-column-end:1}.sm\:col-end-10{grid-column-end:10}.sm\:col-end-11{grid-column-end:11}.sm\:col-end-12{grid-column-end:12}.sm\:col-end-13{grid-column-end:13}.sm\:col-end-2{grid-column-end:2}.sm\:col-end-3{grid-column-end:3}.sm\:col-end-4{grid-column-end:4}.sm\:col-end-5{grid-column-end:5}.sm\:col-end-6{grid-column-end:6}.sm\:col-end-7{grid-column-end:7}.sm\:col-end-8{grid-column-end:8}.sm\:col-end-9{grid-column-end:9}.sm\:col-end-auto{grid-column-end:auto}.sm\:row-span-1{grid-row:span 1/span 1}.sm\:row-span-10{grid-row:span 10/span 10}.sm\:row-span-11{grid-row:span 11/span 11}.sm\:row-span-12{grid-row:span 12/span 12}.sm\:row-span-2{grid-row:span 2/span 2}.sm\:row-span-3{grid-row:span 3/span 3}.sm\:row-span-4{grid-row:span 4/span 4}.sm\:row-span-5{grid-row:span 5/span 5}.sm\:row-span-6{grid-row:span 6/span 6}.sm\:row-span-7{grid-row:span 7/span 7}.sm\:row-span-8{grid-row:span 8/span 8}.sm\:row-span-9{grid-row:span 9/span 9}.sm\:row-span-full{grid-row:1/-1}.sm\:row-start-1{grid-row-start:1}.sm\:row-start-10{grid-row-start:10}.sm\:row-start-11{grid-row-start:11}.sm\:row-start-12{grid-row-start:12}.sm\:row-start-13{grid-row-start:13}.sm\:row-start-2{grid-row-start:2}.sm\:row-start-3{grid-row-start:3}.sm\:row-start-4{grid-row-start:4}.sm\:row-start-5{grid-row-start:5}.sm\:row-start-6{grid-row-start:6}.sm\:row-start-7{grid-row-start:7}.sm\:row-start-8{grid-row-start:8}.sm\:row-start-9{grid-row-start:9}.sm\:row-start-auto{grid-row-start:auto}.sm\:row-end-1{grid-row-end:1}.sm\:row-end-10{grid-row-end:10}.sm\:row-end-11{grid-row-end:11}.sm\:row-end-12{grid-row-end:12}.sm\:row-end-13{grid-row-end:13}.sm\:row-end-2{grid-row-end:2}.sm\:row-end-3{grid-row-end:3}.sm\:row-end-4{grid-row-end:4}.sm\:row-end-5{grid-row-end:5}.sm\:row-end-6{grid-row-end:6}.sm\:row-end-7{grid-row-end:7}.sm\:row-end-8{grid-row-end:8}.sm\:row-end-9{grid-row-end:9}.sm\:row-end-auto{grid-row-end:auto}.sm\:flex{display:flex}.sm\:max-w-md{max-width:28rem}.sm\:flex-row{flex-direction:row}.sm\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.sm\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.sm\:rounded-lg{border-radius:.5rem}.sm\:rounded-b-lg{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.sm\:rounded-t-lg{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.sm\:p-8{padding:2rem}.sm\:text-lg{font-size:1.125rem;line-height:1.75rem}}@media (min-width:768px){.md\:col-span-1{grid-column:span 1/span 1}.md\:col-span-10{grid-column:span 10/span 10}.md\:col-span-11{grid-column:span 11/span 11}.md\:col-span-12{grid-column:span 12/span 12}.md\:col-span-2{grid-column:span 2/span 2}.md\:col-span-3{grid-column:span 3/span 3}.md\:col-span-4{grid-column:span 4/span 4}.md\:col-span-5{grid-column:span 5/span 5}.md\:col-span-6{grid-column:span 6/span 6}.md\:col-span-7{grid-column:span 7/span 7}.md\:col-span-8{grid-column:span 8/span 8}.md\:col-span-9{grid-column:span 9/span 9}.md\:col-span-full{grid-column:1/-1}.md\:col-start-1{grid-column-start:1}.md\:col-start-10{grid-column-start:10}.md\:col-start-11{grid-column-start:11}.md\:col-start-12{grid-column-start:12}.md\:col-start-13{grid-column-start:13}.md\:col-start-2{grid-column-start:2}.md\:col-start-3{grid-column-start:3}.md\:col-start-4{grid-column-start:4}.md\:col-start-5{grid-column-start:5}.md\:col-start-6{grid-column-start:6}.md\:col-start-7{grid-column-start:7}.md\:col-start-8{grid-column-start:8}.md\:col-start-9{grid-column-start:9}.md\:col-start-auto{grid-column-start:auto}.md\:col-end-1{grid-column-end:1}.md\:col-end-10{grid-column-end:10}.md\:col-end-11{grid-column-end:11}.md\:col-end-12{grid-column-end:12}.md\:col-end-13{grid-column-end:13}.md\:col-end-2{grid-column-end:2}.md\:col-end-3{grid-column-end:3}.md\:col-end-4{grid-column-end:4}.md\:col-end-5{grid-column-end:5}.md\:col-end-6{grid-column-end:6}.md\:col-end-7{grid-column-end:7}.md\:col-end-8{grid-column-end:8}.md\:col-end-9{grid-column-end:9}.md\:col-end-auto{grid-column-end:auto}.md\:row-span-1{grid-row:span 1/span 1}.md\:row-span-10{grid-row:span 10/span 10}.md\:row-span-11{grid-row:span 11/span 11}.md\:row-span-12{grid-row:span 12/span 12}.md\:row-span-2{grid-row:span 2/span 2}.md\:row-span-3{grid-row:span 3/span 3}.md\:row-span-4{grid-row:span 4/span 4}.md\:row-span-5{grid-row:span 5/span 5}.md\:row-span-6{grid-row:span 6/span 6}.md\:row-span-7{grid-row:span 7/span 7}.md\:row-span-8{grid-row:span 8/span 8}.md\:row-span-9{grid-row:span 9/span 9}.md\:row-span-full{grid-row:1/-1}.md\:row-start-1{grid-row-start:1}.md\:row-start-10{grid-row-start:10}.md\:row-start-11{grid-row-start:11}.md\:row-start-12{grid-row-start:12}.md\:row-start-13{grid-row-start:13}.md\:row-start-2{grid-row-start:2}.md\:row-start-3{grid-row-start:3}.md\:row-start-4{grid-row-start:4}.md\:row-start-5{grid-row-start:5}.md\:row-start-6{grid-row-start:6}.md\:row-start-7{grid-row-start:7}.md\:row-start-8{grid-row-start:8}.md\:row-start-9{grid-row-start:9}.md\:row-start-auto{grid-row-start:auto}.md\:row-end-1{grid-row-end:1}.md\:row-end-10{grid-row-end:10}.md\:row-end-11{grid-row-end:11}.md\:row-end-12{grid-row-end:12}.md\:row-end-13{grid-row-end:13}.md\:row-end-2{grid-row-end:2}.md\:row-end-3{grid-row-end:3}.md\:row-end-4{grid-row-end:4}.md\:row-end-5{grid-row-end:5}.md\:row-end-6{grid-row-end:6}.md\:row-end-7{grid-row-end:7}.md\:row-end-8{grid-row-end:8}.md\:row-end-9{grid-row-end:9}.md\:row-end-auto{grid-row-end:auto}.md\:mr-0{margin-right:0}.md\:ms-2{margin-inline-start:.5rem}.md\:mt-0{margin-top:0}.md\:block{display:block}.md\:h-screen{height:100vh}.md\:w-1\/2{width:50%}.md\:w-1\/6{width:16.666667%}.md\:w-5\/6{width:83.333333%}.md\:w-64{width:16rem}.md\:w-auto{width:auto}.md\:min-w-60{min-width:15rem}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:flex-row{flex-direction:row}.md\:items-center{align-items:center}.md\:space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.md\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.md\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.md\:space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.md\:p-6{padding:1.5rem}.md\:pl-2{padding-left:.5rem}.md\:text-4xl{font-size:2.25rem;line-height:2.5rem}.md\:text-xl{font-size:1.25rem;line-height:1.75rem}}@media (min-width:1024px){.lg\:sticky{position:sticky}.lg\:order-2{order:2}.lg\:col-span-1{grid-column:span 1/span 1}.lg\:col-span-10{grid-column:span 10/span 10}.lg\:col-span-11{grid-column:span 11/span 11}.lg\:col-span-12{grid-column:span 12/span 12}.lg\:col-span-2{grid-column:span 2/span 2}.lg\:col-span-3{grid-column:span 3/span 3}.lg\:col-span-4{grid-column:span 4/span 4}.lg\:col-span-5{grid-column:span 5/span 5}.lg\:col-span-6{grid-column:span 6/span 6}.lg\:col-span-7{grid-column:span 7/span 7}.lg\:col-span-8{grid-column:span 8/span 8}.lg\:col-span-9{grid-column:span 9/span 9}.lg\:col-span-full{grid-column:1/-1}.lg\:col-start-1{grid-column-start:1}.lg\:col-start-10{grid-column-start:10}.lg\:col-start-11{grid-column-start:11}.lg\:col-start-12{grid-column-start:12}.lg\:col-start-13{grid-column-start:13}.lg\:col-start-2{grid-column-start:2}.lg\:col-start-3{grid-column-start:3}.lg\:col-start-4{grid-column-start:4}.lg\:col-start-5{grid-column-start:5}.lg\:col-start-6{grid-column-start:6}.lg\:col-start-7{grid-column-start:7}.lg\:col-start-8{grid-column-start:8}.lg\:col-start-9{grid-column-start:9}.lg\:col-start-auto{grid-column-start:auto}.lg\:col-end-1{grid-column-end:1}.lg\:col-end-10{grid-column-end:10}.lg\:col-end-11{grid-column-end:11}.lg\:col-end-12{grid-column-end:12}.lg\:col-end-13{grid-column-end:13}.lg\:col-end-2{grid-column-end:2}.lg\:col-end-3{grid-column-end:3}.lg\:col-end-4{grid-column-end:4}.lg\:col-end-5{grid-column-end:5}.lg\:col-end-6{grid-column-end:6}.lg\:col-end-7{grid-column-end:7}.lg\:col-end-8{grid-column-end:8}.lg\:col-end-9{grid-column-end:9}.lg\:col-end-auto{grid-column-end:auto}.lg\:row-span-1{grid-row:span 1/span 1}.lg\:row-span-10{grid-row:span 10/span 10}.lg\:row-span-11{grid-row:span 11/span 11}.lg\:row-span-12{grid-row:span 12/span 12}.lg\:row-span-2{grid-row:span 2/span 2}.lg\:row-span-3{grid-row:span 3/span 3}.lg\:row-span-4{grid-row:span 4/span 4}.lg\:row-span-5{grid-row:span 5/span 5}.lg\:row-span-6{grid-row:span 6/span 6}.lg\:row-span-7{grid-row:span 7/span 7}.lg\:row-span-8{grid-row:span 8/span 8}.lg\:row-span-9{grid-row:span 9/span 9}.lg\:row-span-full{grid-row:1/-1}.lg\:row-start-1{grid-row-start:1}.lg\:row-start-10{grid-row-start:10}.lg\:row-start-11{grid-row-start:11}.lg\:row-start-12{grid-row-start:12}.lg\:row-start-13{grid-row-start:13}.lg\:row-start-2{grid-row-start:2}.lg\:row-start-3{grid-row-start:3}.lg\:row-start-4{grid-row-start:4}.lg\:row-start-5{grid-row-start:5}.lg\:row-start-6{grid-row-start:6}.lg\:row-start-7{grid-row-start:7}.lg\:row-start-8{grid-row-start:8}.lg\:row-start-9{grid-row-start:9}.lg\:row-start-auto{grid-row-start:auto}.lg\:row-end-1{grid-row-end:1}.lg\:row-end-10{grid-row-end:10}.lg\:row-end-11{grid-row-end:11}.lg\:row-end-12{grid-row-end:12}.lg\:row-end-13{grid-row-end:13}.lg\:row-end-2{grid-row-end:2}.lg\:row-end-3{grid-row-end:3}.lg\:row-end-4{grid-row-end:4}.lg\:row-end-5{grid-row-end:5}.lg\:row-end-6{grid-row-end:6}.lg\:row-end-7{grid-row-end:7}.lg\:row-end-8{grid-row-end:8}.lg\:row-end-9{grid-row-end:9}.lg\:row-end-auto{grid-row-end:auto}.lg\:ml-64{margin-left:16rem}.lg\:flex{display:flex}.lg\:hidden{display:none}.lg\:translate-x-0{--tw-translate-x:0px;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))}.lg\:py-0{padding-bottom:0;padding-top:0}:where(.dyna,.dyna *) .lg\:dyna\:static{position:static}}@media (min-width:1280px){.xl\:col-span-1{grid-column:span 1/span 1}.xl\:col-span-10{grid-column:span 10/span 10}.xl\:col-span-11{grid-column:span 11/span 11}.xl\:col-span-12{grid-column:span 12/span 12}.xl\:col-span-2{grid-column:span 2/span 2}.xl\:col-span-3{grid-column:span 3/span 3}.xl\:col-span-4{grid-column:span 4/span 4}.xl\:col-span-5{grid-column:span 5/span 5}.xl\:col-span-6{grid-column:span 6/span 6}.xl\:col-span-7{grid-column:span 7/span 7}.xl\:col-span-8{grid-column:span 8/span 8}.xl\:col-span-9{grid-column:span 9/span 9}.xl\:col-span-full{grid-column:1/-1}.xl\:col-start-1{grid-column-start:1}.xl\:col-start-10{grid-column-start:10}.xl\:col-start-11{grid-column-start:11}.xl\:col-start-12{grid-column-start:12}.xl\:col-start-13{grid-column-start:13}.xl\:col-start-2{grid-column-start:2}.xl\:col-start-3{grid-column-start:3}.xl\:col-start-4{grid-column-start:4}.xl\:col-start-5{grid-column-start:5}.xl\:col-start-6{grid-column-start:6}.xl\:col-start-7{grid-column-start:7}.xl\:col-start-8{grid-column-start:8}.xl\:col-start-9{grid-column-start:9}.xl\:col-start-auto{grid-column-start:auto}.xl\:col-end-1{grid-column-end:1}.xl\:col-end-10{grid-column-end:10}.xl\:col-end-11{grid-column-end:11}.xl\:col-end-12{grid-column-end:12}.xl\:col-end-13{grid-column-end:13}.xl\:col-end-2{grid-column-end:2}.xl\:col-end-3{grid-column-end:3}.xl\:col-end-4{grid-column-end:4}.xl\:col-end-5{grid-column-end:5}.xl\:col-end-6{grid-column-end:6}.xl\:col-end-7{grid-column-end:7}.xl\:col-end-8{grid-column-end:8}.xl\:col-end-9{grid-column-end:9}.xl\:col-end-auto{grid-column-end:auto}.xl\:row-span-1{grid-row:span 1/span 1}.xl\:row-span-10{grid-row:span 10/span 10}.xl\:row-span-11{grid-row:span 11/span 11}.xl\:row-span-12{grid-row:span 12/span 12}.xl\:row-span-2{grid-row:span 2/span 2}.xl\:row-span-3{grid-row:span 3/span 3}.xl\:row-span-4{grid-row:span 4/span 4}.xl\:row-span-5{grid-row:span 5/span 5}.xl\:row-span-6{grid-row:span 6/span 6}.xl\:row-span-7{grid-row:span 7/span 7}.xl\:row-span-8{grid-row:span 8/span 8}.xl\:row-span-9{grid-row:span 9/span 9}.xl\:row-span-full{grid-row:1/-1}.xl\:row-start-1{grid-row-start:1}.xl\:row-start-10{grid-row-start:10}.xl\:row-start-11{grid-row-start:11}.xl\:row-start-12{grid-row-start:12}.xl\:row-start-13{grid-row-start:13}.xl\:row-start-2{grid-row-start:2}.xl\:row-start-3{grid-row-start:3}.xl\:row-start-4{grid-row-start:4}.xl\:row-start-5{grid-row-start:5}.xl\:row-start-6{grid-row-start:6}.xl\:row-start-7{grid-row-start:7}.xl\:row-start-8{grid-row-start:8}.xl\:row-start-9{grid-row-start:9}.xl\:row-start-auto{grid-row-start:auto}.xl\:row-end-1{grid-row-end:1}.xl\:row-end-10{grid-row-end:10}.xl\:row-end-11{grid-row-end:11}.xl\:row-end-12{grid-row-end:12}.xl\:row-end-13{grid-row-end:13}.xl\:row-end-2{grid-row-end:2}.xl\:row-end-3{grid-row-end:3}.xl\:row-end-4{grid-row-end:4}.xl\:row-end-5{grid-row-end:5}.xl\:row-end-6{grid-row-end:6}.xl\:row-end-7{grid-row-end:7}.xl\:row-end-8{grid-row-end:8}.xl\:row-end-9{grid-row-end:9}.xl\:row-end-auto{grid-row-end:auto}.xl\:p-0{padding:0}}@media (min-width:1536px){.\32xl\:col-span-1{grid-column:span 1/span 1}.\32xl\:col-span-10{grid-column:span 10/span 10}.\32xl\:col-span-11{grid-column:span 11/span 11}.\32xl\:col-span-12{grid-column:span 12/span 12}.\32xl\:col-span-2{grid-column:span 2/span 2}.\32xl\:col-span-3{grid-column:span 3/span 3}.\32xl\:col-span-4{grid-column:span 4/span 4}.\32xl\:col-span-5{grid-column:span 5/span 5}.\32xl\:col-span-6{grid-column:span 6/span 6}.\32xl\:col-span-7{grid-column:span 7/span 7}.\32xl\:col-span-8{grid-column:span 8/span 8}.\32xl\:col-span-9{grid-column:span 9/span 9}.\32xl\:col-span-full{grid-column:1/-1}.\32xl\:col-start-1{grid-column-start:1}.\32xl\:col-start-10{grid-column-start:10}.\32xl\:col-start-11{grid-column-start:11}.\32xl\:col-start-12{grid-column-start:12}.\32xl\:col-start-13{grid-column-start:13}.\32xl\:col-start-2{grid-column-start:2}.\32xl\:col-start-3{grid-column-start:3}.\32xl\:col-start-4{grid-column-start:4}.\32xl\:col-start-5{grid-column-start:5}.\32xl\:col-start-6{grid-column-start:6}.\32xl\:col-start-7{grid-column-start:7}.\32xl\:col-start-8{grid-column-start:8}.\32xl\:col-start-9{grid-column-start:9}.\32xl\:col-start-auto{grid-column-start:auto}.\32xl\:col-end-1{grid-column-end:1}.\32xl\:col-end-10{grid-column-end:10}.\32xl\:col-end-11{grid-column-end:11}.\32xl\:col-end-12{grid-column-end:12}.\32xl\:col-end-13{grid-column-end:13}.\32xl\:col-end-2{grid-column-end:2}.\32xl\:col-end-3{grid-column-end:3}.\32xl\:col-end-4{grid-column-end:4}.\32xl\:col-end-5{grid-column-end:5}.\32xl\:col-end-6{grid-column-end:6}.\32xl\:col-end-7{grid-column-end:7}.\32xl\:col-end-8{grid-column-end:8}.\32xl\:col-end-9{grid-column-end:9}.\32xl\:col-end-auto{grid-column-end:auto}.\32xl\:row-span-1{grid-row:span 1/span 1}.\32xl\:row-span-10{grid-row:span 10/span 10}.\32xl\:row-span-11{grid-row:span 11/span 11}.\32xl\:row-span-12{grid-row:span 12/span 12}.\32xl\:row-span-2{grid-row:span 2/span 2}.\32xl\:row-span-3{grid-row:span 3/span 3}.\32xl\:row-span-4{grid-row:span 4/span 4}.\32xl\:row-span-5{grid-row:span 5/span 5}.\32xl\:row-span-6{grid-row:span 6/span 6}.\32xl\:row-span-7{grid-row:span 7/span 7}.\32xl\:row-span-8{grid-row:span 8/span 8}.\32xl\:row-span-9{grid-row:span 9/span 9}.\32xl\:row-span-full{grid-row:1/-1}.\32xl\:row-start-1{grid-row-start:1}.\32xl\:row-start-10{grid-row-start:10}.\32xl\:row-start-11{grid-row-start:11}.\32xl\:row-start-12{grid-row-start:12}.\32xl\:row-start-13{grid-row-start:13}.\32xl\:row-start-2{grid-row-start:2}.\32xl\:row-start-3{grid-row-start:3}.\32xl\:row-start-4{grid-row-start:4}.\32xl\:row-start-5{grid-row-start:5}.\32xl\:row-start-6{grid-row-start:6}.\32xl\:row-start-7{grid-row-start:7}.\32xl\:row-start-8{grid-row-start:8}.\32xl\:row-start-9{grid-row-start:9}.\32xl\:row-start-auto{grid-row-start:auto}.\32xl\:row-end-1{grid-row-end:1}.\32xl\:row-end-10{grid-row-end:10}.\32xl\:row-end-11{grid-row-end:11}.\32xl\:row-end-12{grid-row-end:12}.\32xl\:row-end-13{grid-row-end:13}.\32xl\:row-end-2{grid-row-end:2}.\32xl\:row-end-3{grid-row-end:3}.\32xl\:row-end-4{grid-row-end:4}.\32xl\:row-end-5{grid-row-end:5}.\32xl\:row-end-6{grid-row-end:6}.\32xl\:row-end-7{grid-row-end:7}.\32xl\:row-end-8{grid-row-end:8}.\32xl\:row-end-9{grid-row-end:9}.\32xl\:row-end-auto{grid-row-end:auto}.\32xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}.rtl\:rotate-180:where([dir=rtl],[dir=rtl] *){--tw-rotate:180deg;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))}.rtl\:space-x-reverse:where([dir=rtl],[dir=rtl] *)>:not([hidden])~:not([hidden]){--tw-space-x-reverse:1}.rtl\:text-right:where([dir=rtl],[dir=rtl] *){text-align:right}.dark\:divide-gray-600:where(.dark,.dark *)>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(75 85 99/var(--tw-divide-opacity))}.dark\:divide-gray-700:where(.dark,.dark *)>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(55 65 81/var(--tw-divide-opacity))}.dark\:border:where(.dark,.dark *){border-width:1px}.dark\:border-blue-500:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(63 131 248/var(--tw-border-opacity))}.dark\:border-gray-300:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.dark\:border-gray-500:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(107 114 128/var(--tw-border-opacity))}.dark\:border-gray-600:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.dark\:border-gray-700:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.dark\:border-gray-800:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}.dark\:border-green-500:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(14 159 110/var(--tw-border-opacity))}.dark\:border-primary-500:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(23 184 190/var(--tw-border-opacity))}.dark\:border-primary-600:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(14 143 148/var(--tw-border-opacity))}.dark\:border-purple-400:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(172 148 250/var(--tw-border-opacity))}.dark\:border-red-400:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(249 128 128/var(--tw-border-opacity))}.dark\:border-red-500:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(240 82 82/var(--tw-border-opacity))}.dark\:border-transparent:where(.dark,.dark *){border-color:transparent}.dark\:border-white:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.dark\:border-yellow-300:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(250 202 21/var(--tw-border-opacity))}.dark\:border-l-gray-600:where(.dark,.dark *){--tw-border-opacity:1;border-left-color:rgb(75 85 99/var(--tw-border-opacity))}.dark\:border-r-gray-800:where(.dark,.dark *){--tw-border-opacity:1;border-right-color:rgb(31 41 55/var(--tw-border-opacity))}.dark\:\!bg-primary-600:where(.dark,.dark *){--tw-bg-opacity:1!important;background-color:rgb(14 143 148/var(--tw-bg-opacity))!important}.dark\:\!bg-primary-700:where(.dark,.dark *){--tw-bg-opacity:1!important;background-color:rgb(11 109 113/var(--tw-bg-opacity))!important}.dark\:bg-accent-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(255 100 122/var(--tw-bg-opacity))}.dark\:bg-accent-700:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(231 61 85/var(--tw-bg-opacity))}.dark\:bg-blue-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(28 100 242/var(--tw-bg-opacity))}.dark\:bg-danger-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(220 38 38/var(--tw-bg-opacity))}.dark\:bg-danger-700:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(185 28 28/var(--tw-bg-opacity))}.dark\:bg-emerald-400:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(52 211 153/var(--tw-bg-opacity))}.dark\:bg-gray-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.dark\:bg-gray-700:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark\:bg-gray-800:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.dark\:bg-gray-800\/50:where(.dark,.dark *){background-color:rgba(31,41,55,.5)}.dark\:bg-gray-900:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.dark\:bg-gray-900\/80:where(.dark,.dark *){background-color:rgba(17,24,39,.8)}.dark\:bg-green-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(5 122 85/var(--tw-bg-opacity))}.dark\:bg-info-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(2 132 199/var(--tw-bg-opacity))}.dark\:bg-info-700:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(3 105 161/var(--tw-bg-opacity))}.dark\:bg-primary-200:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(186 243 245/var(--tw-bg-opacity))}.dark\:bg-primary-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(14 143 148/var(--tw-bg-opacity))}.dark\:bg-primary-700:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(11 109 113/var(--tw-bg-opacity))}.dark\:bg-purple-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(126 58 242/var(--tw-bg-opacity))}.dark\:bg-red-400:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(249 128 128/var(--tw-bg-opacity))}.dark\:bg-red-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(224 36 36/var(--tw-bg-opacity))}.dark\:bg-secondary-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(26 53 73/var(--tw-bg-opacity))}.dark\:bg-secondary-700:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(21 44 61/var(--tw-bg-opacity))}.dark\:bg-stone-300:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(214 211 209/var(--tw-bg-opacity))}.dark\:bg-success-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(22 163 74/var(--tw-bg-opacity))}.dark\:bg-success-700:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(21 128 61/var(--tw-bg-opacity))}.dark\:bg-violet-400:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(167 139 250/var(--tw-bg-opacity))}.dark\:bg-warning-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(217 119 6/var(--tw-bg-opacity))}.dark\:bg-warning-700:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(180 83 9/var(--tw-bg-opacity))}.dark\:bg-yellow-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(159 88 10/var(--tw-bg-opacity))}.dark\:stroke-gray-400:where(.dark,.dark *){stroke:#9ca3af}.dark\:text-accent-100:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 228 231/var(--tw-text-opacity))}.dark\:text-blue-300:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(164 202 254/var(--tw-text-opacity))}.dark\:text-blue-500:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(63 131 248/var(--tw-text-opacity))}.dark\:text-danger-100:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(254 226 226/var(--tw-text-opacity))}.dark\:text-gray-100:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.dark\:text-gray-200:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.dark\:text-gray-300:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark\:text-gray-400:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.dark\:text-gray-500:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.dark\:text-gray-900:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark\:text-green-400:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(49 196 141/var(--tw-text-opacity))}.dark\:text-green-500:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(14 159 110/var(--tw-text-opacity))}.dark\:text-info-100:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(224 242 254/var(--tw-text-opacity))}.dark\:text-primary-100:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(224 250 250/var(--tw-text-opacity))}.dark\:text-primary-300:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(125 232 236/var(--tw-text-opacity))}.dark\:text-primary-500:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(23 184 190/var(--tw-text-opacity))}.dark\:text-primary-600:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(14 143 148/var(--tw-text-opacity))}.dark\:text-primary-800:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(10 85 88/var(--tw-text-opacity))}.dark\:text-purple-400:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(172 148 250/var(--tw-text-opacity))}.dark\:text-purple-500:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(144 97 249/var(--tw-text-opacity))}.dark\:text-red-400:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(249 128 128/var(--tw-text-opacity))}.dark\:text-red-500:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(240 82 82/var(--tw-text-opacity))}.dark\:text-secondary-100:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(230 236 241/var(--tw-text-opacity))}.dark\:text-secondary-400:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(103 140 171/var(--tw-text-opacity))}.dark\:text-success-100:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(220 252 231/var(--tw-text-opacity))}.dark\:text-warning-100:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(254 243 199/var(--tw-text-opacity))}.dark\:text-white:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark\:text-yellow-300:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(250 202 21/var(--tw-text-opacity))}.dark\:text-yellow-500:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(194 120 3/var(--tw-text-opacity))}.dark\:placeholder-gray-400:where(.dark,.dark *)::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.dark\:placeholder-gray-400:where(.dark,.dark *)::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.dark\:placeholder-green-500:where(.dark,.dark *)::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(14 159 110/var(--tw-placeholder-opacity))}.dark\:placeholder-green-500:where(.dark,.dark *)::placeholder{--tw-placeholder-opacity:1;color:rgb(14 159 110/var(--tw-placeholder-opacity))}.dark\:placeholder-red-500:where(.dark,.dark *)::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(240 82 82/var(--tw-placeholder-opacity))}.dark\:placeholder-red-500:where(.dark,.dark *)::placeholder{--tw-placeholder-opacity:1;color:rgb(240 82 82/var(--tw-placeholder-opacity))}.dark\:shadow-none:where(.dark,.dark *){--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)}.dark\:ring-offset-gray-700:where(.dark,.dark *){--tw-ring-offset-color:#374151}.dark\:ring-offset-gray-800:where(.dark,.dark *){--tw-ring-offset-color:#1f2937}.dark\:checked\:border-current:checked:where(.dark,.dark *){border-color:currentColor}.dark\:checked\:bg-current:checked:where(.dark,.dark *){background-color:currentColor}.dark\:checked\:text-emerald-400:checked:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(52 211 153/var(--tw-text-opacity))}.dark\:hover\:border-gray-600:hover:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.dark\:hover\:\!bg-primary-700:hover:where(.dark,.dark *){--tw-bg-opacity:1!important;background-color:rgb(11 109 113/var(--tw-bg-opacity))!important}.dark\:hover\:bg-accent-600:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(255 100 122/var(--tw-bg-opacity))}.dark\:hover\:bg-accent-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(231 61 85/var(--tw-bg-opacity))}.dark\:hover\:bg-blue-500:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(63 131 248/var(--tw-bg-opacity))}.dark\:hover\:bg-blue-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(26 86 219/var(--tw-bg-opacity))}.dark\:hover\:bg-danger-600:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(220 38 38/var(--tw-bg-opacity))}.dark\:hover\:bg-danger-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(185 28 28/var(--tw-bg-opacity))}.dark\:hover\:bg-gray-600:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.dark\:hover\:bg-gray-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark\:hover\:bg-gray-800:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.dark\:hover\:bg-green-600:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(5 122 85/var(--tw-bg-opacity))}.dark\:hover\:bg-green-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(4 108 78/var(--tw-bg-opacity))}.dark\:hover\:bg-info-600:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(2 132 199/var(--tw-bg-opacity))}.dark\:hover\:bg-info-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(3 105 161/var(--tw-bg-opacity))}.dark\:hover\:bg-primary-500:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(23 184 190/var(--tw-bg-opacity))}.dark\:hover\:bg-primary-600:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(14 143 148/var(--tw-bg-opacity))}.dark\:hover\:bg-primary-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(11 109 113/var(--tw-bg-opacity))}.dark\:hover\:bg-purple-500:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(144 97 249/var(--tw-bg-opacity))}.dark\:hover\:bg-purple-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(108 43 217/var(--tw-bg-opacity))}.dark\:hover\:bg-red-500:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(240 82 82/var(--tw-bg-opacity))}.dark\:hover\:bg-red-600:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(224 36 36/var(--tw-bg-opacity))}.dark\:hover\:bg-red-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(200 30 30/var(--tw-bg-opacity))}.dark\:hover\:bg-secondary-600:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(26 53 73/var(--tw-bg-opacity))}.dark\:hover\:bg-secondary-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(21 44 61/var(--tw-bg-opacity))}.dark\:hover\:bg-success-600:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(22 163 74/var(--tw-bg-opacity))}.dark\:hover\:bg-success-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(21 128 61/var(--tw-bg-opacity))}.dark\:hover\:bg-violet-500:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(139 92 246/var(--tw-bg-opacity))}.dark\:hover\:bg-warning-600:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(217 119 6/var(--tw-bg-opacity))}.dark\:hover\:bg-warning-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(180 83 9/var(--tw-bg-opacity))}.dark\:hover\:bg-yellow-400:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(227 160 8/var(--tw-bg-opacity))}.dark\:hover\:bg-yellow-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(142 75 16/var(--tw-bg-opacity))}.dark\:hover\:text-blue-400:hover:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(118 169 250/var(--tw-text-opacity))}.dark\:hover\:text-blue-500:hover:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(63 131 248/var(--tw-text-opacity))}.dark\:hover\:text-gray-300:hover:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark\:hover\:text-primary-400:hover:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(64 217 222/var(--tw-text-opacity))}.dark\:hover\:text-white:hover:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark\:hover\:underline:hover:where(.dark,.dark *){text-decoration-line:underline}.dark\:focus\:border-blue-500:focus:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(63 131 248/var(--tw-border-opacity))}.dark\:focus\:border-emerald-400:focus:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(52 211 153/var(--tw-border-opacity))}.dark\:focus\:border-primary-500:focus:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(23 184 190/var(--tw-border-opacity))}.focus\:dark\:border-emerald-400:where(.dark,.dark *):focus{--tw-border-opacity:1;border-color:rgb(52 211 153/var(--tw-border-opacity))}.dark\:focus\:bg-gray-700:focus:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark\:focus\:bg-gray-800:focus:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.focus\:dark\:bg-gray-700:where(.dark,.dark *):focus{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark\:focus\:text-white:focus:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark\:focus\:ring-accent-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(255 100 122/var(--tw-ring-opacity))}.dark\:focus\:ring-accent-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(209 45 68/var(--tw-ring-opacity))}.dark\:focus\:ring-blue-500:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(63 131 248/var(--tw-ring-opacity))}.dark\:focus\:ring-blue-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(28 100 242/var(--tw-ring-opacity))}.dark\:focus\:ring-blue-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(30 66 159/var(--tw-ring-opacity))}.dark\:focus\:ring-danger-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(220 38 38/var(--tw-ring-opacity))}.dark\:focus\:ring-danger-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(153 27 27/var(--tw-ring-opacity))}.dark\:focus\:ring-emerald-400:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(52 211 153/var(--tw-ring-opacity))}.dark\:focus\:ring-gray-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(75 85 99/var(--tw-ring-opacity))}.dark\:focus\:ring-gray-700:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(55 65 81/var(--tw-ring-opacity))}.dark\:focus\:ring-gray-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(31 41 55/var(--tw-ring-opacity))}.dark\:focus\:ring-green-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(3 84 63/var(--tw-ring-opacity))}.dark\:focus\:ring-info-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(2 132 199/var(--tw-ring-opacity))}.dark\:focus\:ring-info-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(7 89 133/var(--tw-ring-opacity))}.dark\:focus\:ring-primary-500:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(23 184 190/var(--tw-ring-opacity))}.dark\:focus\:ring-primary-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(14 143 148/var(--tw-ring-opacity))}.dark\:focus\:ring-primary-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(10 85 88/var(--tw-ring-opacity))}.dark\:focus\:ring-purple-900:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(74 29 150/var(--tw-ring-opacity))}.dark\:focus\:ring-red-400:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(249 128 128/var(--tw-ring-opacity))}.dark\:focus\:ring-red-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(224 36 36/var(--tw-ring-opacity))}.dark\:focus\:ring-red-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(155 28 28/var(--tw-ring-opacity))}.dark\:focus\:ring-red-900:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(119 29 29/var(--tw-ring-opacity))}.dark\:focus\:ring-secondary-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(26 53 73/var(--tw-ring-opacity))}.dark\:focus\:ring-secondary-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(16 34 49/var(--tw-ring-opacity))}.dark\:focus\:ring-success-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(22 163 74/var(--tw-ring-opacity))}.dark\:focus\:ring-success-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(22 101 52/var(--tw-ring-opacity))}.dark\:focus\:ring-violet-400:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(167 139 250/var(--tw-ring-opacity))}.dark\:focus\:ring-warning-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(217 119 6/var(--tw-ring-opacity))}.dark\:focus\:ring-warning-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(146 64 14/var(--tw-ring-opacity))}.dark\:focus\:ring-yellow-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(114 59 19/var(--tw-ring-opacity))}.dark\:focus\:ring-yellow-900:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(99 49 18/var(--tw-ring-opacity))}.dark\:focus\:ring-offset-current:focus:where(.dark,.dark *){--tw-ring-offset-color:currentColor}.dark\:focus\:ring-offset-gray-800:focus:where(.dark,.dark *){--tw-ring-offset-color:#1f2937}.dark\:focus\:ring-offset-gray-900:focus:where(.dark,.dark *){--tw-ring-offset-color:#111827}.dark\:focus-visible\:ring-2:focus-visible:where(.dark,.dark *){--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(2px + 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)}.dark\:focus-visible\:ring-blue-300:focus-visible:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(164 202 254/var(--tw-ring-opacity))}.dark\:focus-visible\:ring-primary-300:focus-visible:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(125 232 236/var(--tw-ring-opacity))}.group:hover .dark\:group-hover\:text-gray-400:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.group:hover .dark\:group-hover\:text-white:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}
|
1
|
+
/*! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:Lato,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}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-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-feature-settings:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-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{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}[multiple],[type=date],[type=datetime-local],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],input:where(:not([type])),select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-radius:0;border-width:1px;font-size:1rem;line-height:1.5rem;padding:.5rem .75rem;--tw-shadow:0 0 #0000}[multiple]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=email]:focus,[type=month]:focus,[type=number]:focus,[type=password]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=time]:focus,[type=url]:focus,[type=week]:focus,input:where(:not([type])):focus,select:focus,textarea:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);border-color:#2563eb;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-meridiem-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-year-field{padding-bottom:0;padding-top:0}select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}[multiple],[size]:where(select:not([size="1"])){background-image:none;background-position:0 0;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-origin:border-box;border-color:#6b7280;border-width:1px;color:#2563eb;display:inline-block;flex-shrink:0;height:1rem;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;width:1rem;--tw-shadow:0 0 #0000}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:2px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}[type=checkbox]:checked,[type=radio]:checked{background-color:currentColor;background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}[type=checkbox]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0'/%3E%3C/svg%3E")}@media (forced-colors:active) {[type=checkbox]:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=radio]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}@media (forced-colors:active) {[type=radio]:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=checkbox]:checked:focus,[type=checkbox]:checked:hover,[type=radio]:checked:focus,[type=radio]:checked:hover{background-color:currentColor;border-color:transparent}[type=checkbox]:indeterminate{background-color:currentColor;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}@media (forced-colors:active) {[type=checkbox]:indeterminate{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=checkbox]:indeterminate:focus,[type=checkbox]:indeterminate:hover{background-color:currentColor;border-color:transparent}[type=file]{background:unset;border-color:inherit;border-radius:0;border-width:0;font-size:unset;line-height:inherit;padding:0}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}*,: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:rgba(59,130,246,.5);--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: }::backdrop{--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:rgba(59,130,246,.5);--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:475px){.container{max-width:475px}}@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}}.format{color:var(--tw-prose-body);max-width:65ch}.format :where(p):not(:where([class~=not-format] *)){margin-bottom:1.25em;margin-top:1.25em}.format :where([class~=lead]):not(:where([class~=not-format] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.format :where(a):not(:where([class~=not-format] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}.format :where(strong):not(:where([class~=not-format] *)){color:var(--tw-prose-bold);font-weight:600}.format :where(a strong):not(:where([class~=not-format] *)){color:inherit}.format :where(blockquote strong):not(:where([class~=not-format] *)){color:inherit}.format :where(thead th strong):not(:where([class~=not-format] *)){color:inherit}.format :where(ol):not(:where([class~=not-format] *)){list-style-type:decimal;margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}.format :where(ol[type=A]):not(:where([class~=not-format] *)){list-style-type:upper-alpha}.format :where(ol[type=a]):not(:where([class~=not-format] *)){list-style-type:lower-alpha}.format :where(ol[type=A s]):not(:where([class~=not-format] *)){list-style-type:upper-alpha}.format :where(ol[type=a s]):not(:where([class~=not-format] *)){list-style-type:lower-alpha}.format :where(ol[type=I]):not(:where([class~=not-format] *)){list-style-type:upper-roman}.format :where(ol[type=i]):not(:where([class~=not-format] *)){list-style-type:lower-roman}.format :where(ol[type=I s]):not(:where([class~=not-format] *)){list-style-type:upper-roman}.format :where(ol[type=i s]):not(:where([class~=not-format] *)){list-style-type:lower-roman}.format :where(ol[type="1"]):not(:where([class~=not-format] *)){list-style-type:decimal}.format :where(ul):not(:where([class~=not-format] *)){list-style-type:disc;margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}.format :where(ol>li):not(:where([class~=not-format] *))::marker{color:var(--tw-prose-counters);font-weight:400}.format :where(ul>li):not(:where([class~=not-format] *))::marker{color:var(--tw-prose-bullets)}.format :where(dt):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}.format :where(hr):not(:where([class~=not-format] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-bottom:3em;margin-top:3em}.format :where(blockquote):not(:where([class~=not-format] *)){border-inline-start-color:var(--tw-prose-quote-borders);border-inline-start-width:.25rem;color:var(--tw-prose-quotes);font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-inline-start:1em;quotes:"\201C""\201D""\2018""\2019"}.format :where(blockquote p:first-of-type):not(:where([class~=not-format] *)):before{content:open-quote}.format :where(blockquote p:last-of-type):not(:where([class~=not-format] *)):after{content:close-quote}.format :where(h1):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.format :where(h1 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:900}.format :where(h2):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.format :where(h2 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:800}.format :where(h3):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.format :where(h3 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:700}.format :where(h4):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.format :where(h4 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:700}.format :where(img):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.format :where(picture):not(:where([class~=not-format] *)){display:block;margin-bottom:2em;margin-top:2em}.format :where(video):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.format :where(kbd):not(:where([class~=not-format] *)){border-radius:.3125rem;box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows)/10%),0 3px 0 rgb(var(--tw-prose-kbd-shadows)/10%);color:var(--tw-prose-kbd);font-family:inherit;font-size:.875em;font-weight:500;padding-inline-end:.375em;padding-bottom:.1875em;padding-top:.1875em;padding-inline-start:.375em}.format :where(code):not(:where([class~=not-format] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.format :where(code):not(:where([class~=not-format] *)):before{content:"`"}.format :where(code):not(:where([class~=not-format] *)):after{content:"`"}.format :where(a code):not(:where([class~=not-format] *)){color:inherit}.format :where(h1 code):not(:where([class~=not-format] *)){color:inherit}.format :where(h2 code):not(:where([class~=not-format] *)){color:inherit;font-size:.875em}.format :where(h3 code):not(:where([class~=not-format] *)){color:inherit;font-size:.9em}.format :where(h4 code):not(:where([class~=not-format] *)){color:inherit}.format :where(blockquote code):not(:where([class~=not-format] *)){color:inherit}.format :where(thead th code):not(:where([class~=not-format] *)){color:inherit}.format :where(pre):not(:where([class~=not-format] *)){background-color:var(--tw-prose-pre-bg);border-radius:.375rem;color:var(--tw-prose-pre-code);font-size:.875em;font-weight:400;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;overflow-x:auto;padding-inline-end:1.1428571em;padding-bottom:.8571429em;padding-top:.8571429em;padding-inline-start:1.1428571em}.format :where(pre code):not(:where([class~=not-format] *)){background-color:transparent;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;padding:0}.format :where(pre code):not(:where([class~=not-format] *)):before{content:none}.format :where(pre code):not(:where([class~=not-format] *)):after{content:none}.format :where(table):not(:where([class~=not-format] *)){font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;width:100%}.format :where(thead):not(:where([class~=not-format] *)){border-bottom-color:var(--tw-prose-th-borders);border-bottom-width:1px}.format :where(thead th):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em;vertical-align:bottom}.format :where(tbody tr):not(:where([class~=not-format] *)){border-bottom-color:var(--tw-prose-td-borders);border-bottom-width:1px}.format :where(tbody tr:last-child):not(:where([class~=not-format] *)){border-bottom-width:0}.format :where(tbody td):not(:where([class~=not-format] *)){vertical-align:baseline}.format :where(tfoot):not(:where([class~=not-format] *)){border-top-color:var(--tw-prose-th-borders);border-top-width:1px}.format :where(tfoot td):not(:where([class~=not-format] *)){vertical-align:top}.format :where(th,td):not(:where([class~=not-format] *)){text-align:start}.format :where(figure>*):not(:where([class~=not-format] *)){margin-bottom:0;margin-top:0}.format :where(figcaption):not(:where([class~=not-format] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.format{--tw-prose-body:#374151;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#111827;--tw-prose-bold:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-kbd:#111827;--tw-prose-kbd-shadows:17 24 39;--tw-prose-code:#111827;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:255 255 255;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:rgba(0,0,0,.5);--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;font-size:1rem;line-height:1.75}.format :where(picture>img):not(:where([class~=not-format] *)){margin-bottom:0;margin-top:0}.format :where(li):not(:where([class~=not-format] *)){margin-bottom:.5em;margin-top:.5em}.format :where(ol>li):not(:where([class~=not-format] *)){padding-inline-start:.375em}.format :where(ul>li):not(:where([class~=not-format] *)){padding-inline-start:.375em}.format :where(.format>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.format :where(.format>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format :where(.format>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format :where(.format>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format :where(.format>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.format :where(dl):not(:where([class~=not-format] *)){margin-bottom:1.25em;margin-top:1.25em}.format :where(dd):not(:where([class~=not-format] *)){margin-top:.5em;padding-inline-start:1.625em}.format :where(hr+*):not(:where([class~=not-format] *)){margin-top:0}.format :where(h2+*):not(:where([class~=not-format] *)){margin-top:0}.format :where(h3+*):not(:where([class~=not-format] *)){margin-top:0}.format :where(h4+*):not(:where([class~=not-format] *)){margin-top:0}.format :where(thead th:first-child):not(:where([class~=not-format] *)){padding-inline-start:0}.format :where(thead th:last-child):not(:where([class~=not-format] *)){padding-inline-end:0}.format :where(tbody td,tfoot td):not(:where([class~=not-format] *)){padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-top:.5714286em;padding-inline-start:.5714286em}.format :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-format] *)){padding-inline-start:0}.format :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-format] *)){padding-inline-end:0}.format :where(figure):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.format :where(.format>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format :where(.format>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-sm :where(.format>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.5714286em;margin-top:.5714286em}.format-sm :where(.format>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.1428571em}.format-sm :where(.format>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.1428571em}.format-sm :where(.format>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.1428571em}.format-sm :where(.format>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.1428571em}.format-sm :where(.format>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-sm :where(.format>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-base :where(.format>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.format-base :where(.format>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format-base :where(.format>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format-base :where(.format>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format-base :where(.format>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format-base :where(.format>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-base :where(.format>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-lg :where(.format>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8888889em;margin-top:.8888889em}.format-lg :where(.format>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-lg :where(.format>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-lg :where(.format>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-lg :where(.format>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-lg :where(.format>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-lg :where(.format>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-xl :where(.format>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8em;margin-top:.8em}.format-xl :where(.format>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.2em}.format-xl :where(.format>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.2em}.format-xl :where(.format>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.2em}.format-xl :where(.format>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.2em}.format-xl :where(.format>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-xl :where(.format>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-2xl :where(.format>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8333333em;margin-top:.8333333em}.format-2xl :where(.format>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-2xl :where(.format>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-2xl :where(.format>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-2xl :where(.format>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-2xl :where(.format>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-2xl :where(.format>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-primary{--tw-prose-body:#111827;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#0b6d71;--tw-prose-bold:#111827;--tw-prose-counters:#4b5563;--tw-prose-bullets:#4b5563;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#d1d5db;--tw-prose-captions:#374151;--tw-prose-code:#111827;--tw-prose-code-bg:#f0fdfd;--tw-prose-pre-code:#e0fafa;--tw-prose-pre-bg:#111827;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-th-bg:#f3f4f6;--tw-prose-invert-body:#fff;--tw-prose-invert-headings:#e6ecf1;--tw-prose-invert-lead:#678cab;--tw-prose-invert-links:#17b8be;--tw-prose-invert-bold:#e6ecf1;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#9ca3af;--tw-prose-invert-hr:#0a5558;--tw-prose-invert-quotes:#e6ecf1;--tw-prose-invert-quote-borders:#6b7280;--tw-prose-invert-captions:#9db3c7;--tw-prose-invert-code:#e6ecf1;--tw-prose-invert-code-bg:#042f30;--tw-prose-invert-pre-code:#084547;--tw-prose-invert-pre-bg:#e6ecf1;--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;--tw-prose-invert-th-bg:#1f2937}.pu-color-input::-webkit-color-swatch-wrapper{padding:0}.pu-color-input::-webkit-color-swatch{border-radius:.5rem;border-style:none}.pu-color-input::-moz-color-swatch{border-radius:.5rem;border-style:none}.CodeMirror{overflow:hidden;position:relative;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.CodeMirror:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.CodeMirror{direction:ltr}.CodeMirror-lines{padding:4px 0}.CodeMirror-scroll{height:100%;margin-bottom:-50px;margin-right:-50px;outline:none;overflow:scroll!important;padding-bottom:50px;position:relative;z-index:0}.CodeMirror-sizer{border-right:50px solid transparent;box-sizing:content-box;position:relative}.CodeMirror-gutter-filler,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-vscrollbar{display:none;outline:none;position:absolute;z-index:6}.CodeMirror-vscrollbar{overflow-x:hidden;overflow-y:scroll;right:0;top:0}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-x:scroll;overflow-y:hidden}.CodeMirror-scrollbar-filler{bottom:0;right:0}.CodeMirror-gutter-filler{bottom:0;left:0}.CodeMirror-gutters{border-right-width:1px;left:0;min-height:100%;position:absolute;top:0;z-index:3;--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))}.CodeMirror-gutters:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.CodeMirror-gutters{box-sizing:content-box;white-space:nowrap}.CodeMirror-linenumber{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.CodeMirror-linenumber:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.CodeMirror-linenumber{min-width:20px;padding:0 3px 0 5px;text-align:right;white-space:nowrap}.CodeMirror-cursor{border-left-width:1px;border-right-width:0;--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.CodeMirror-cursor:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.CodeMirror-cursor{pointer-events:none;position:absolute;width:0}.cm-fat-cursor .CodeMirror-cursor{background:#7e7}.CodeMirror pre.CodeMirror-line,.CodeMirror pre.CodeMirror-line-like{background:transparent;border-radius:0;border-width:0;font-family:inherit;font-size:inherit;margin:0;padding:0 4px;white-space:pre;word-wrap:normal;color:inherit;line-height:inherit;overflow:visible;position:relative;z-index:2;-webkit-tap-highlight-color:transparent;font-variant-ligatures:contextual}.CodeMirror-wrap pre.CodeMirror-line,.CodeMirror-wrap pre.CodeMirror-line-like{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-gutter{box-sizing:content-box;display:inline-block;height:100%;margin-bottom:-50px;vertical-align:top;white-space:normal}.CodeMirror-gutter-wrapper{background:none!important;border:none!important;position:absolute;z-index:4}.EasyMDEContainer{display:block}.EasyMDEContainer.sided--no-fullscreen{display:flex;flex-direction:row;flex-wrap:wrap}.EasyMDEContainer .CodeMirror{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem;border-width:1px;box-sizing:border-box;height:auto;overflow-wrap:break-word;z-index:0;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));padding:.625rem}.EasyMDEContainer .CodeMirror:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.EasyMDEContainer .CodeMirror-fullscreen{border-bottom-right-radius:0;border-right-width:0;bottom:0;height:auto;left:0;position:fixed;right:0;top:50px;z-index:40;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.EasyMDEContainer .CodeMirror-fullscreen:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.EasyMDEContainer .CodeMirror-sided{width:50%!important}.EasyMDEContainer.sided--no-fullscreen .CodeMirror-sided{border-bottom-right-radius:0;border-right-width:0;flex:1 1 0%;position:relative}.EasyMDEContainer .CodeMirror-placeholder{opacity:.5}.editor-toolbar{position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none}.editor-toolbar>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.25rem*var(--tw-space-x-reverse))}.editor-toolbar{border-left-width:1px;border-right-width:1px;border-top-left-radius:.5rem;border-top-right-radius:.5rem;border-top-width:1px;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));padding:.625rem}.editor-toolbar:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.editor-toolbar.fullscreen{border-width:0;box-sizing:border-box;height:50px;left:0;opacity:1;padding:.625rem 0;position:fixed;top:0;width:100%;z-index:50}.editor-toolbar button{background-color:transparent;border-color:transparent;border-radius:.25rem;border-width:1px;cursor:pointer;display:inline-block;font-weight:700;height:30px;margin:0;min-width:30px;padding:0 .375rem;text-align:center;white-space:nowrap;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity));text-decoration-line:none}.editor-toolbar button:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.editor-toolbar button:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.editor-toolbar button:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.editor-toolbar button.active{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.editor-toolbar button.active:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.editor-toolbar i.separator{border-left-color:rgb(209 213 219/var(--tw-border-opacity));border-left-width:1px;border-right-width:1px;display:inline-block;margin-left:.375rem;margin-right:.375rem;width:0;--tw-border-opacity:1;border-right-color:rgb(255 255 255/var(--tw-border-opacity));color:transparent;text-indent:-10px}.editor-toolbar i.separator:where(.dark,.dark *){border-left-color:rgb(75 85 99/var(--tw-border-opacity));--tw-border-opacity:1;border-right-color:rgb(31 41 55/var(--tw-border-opacity))}.editor-toolbar button:after{font-family:Arial,Helvetica Neue,Helvetica,sans-serif;font-size:65%;position:relative;top:2px;vertical-align:text-bottom}.editor-toolbar button.heading-1:after{content:"1"}.editor-toolbar button.heading-2:after{content:"2"}.editor-toolbar button.heading-3:after{content:"3"}.editor-toolbar button.heading-bigger:after{content:"▲"}.editor-toolbar button.heading-smaller:after{content:"▼"}.editor-preview{color:var(--tw-prose-body);max-width:65ch}.editor-preview :where(p):not(:where([class~=not-format] *)){margin-bottom:1.25em;margin-top:1.25em}.editor-preview :where([class~=lead]):not(:where([class~=not-format] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.editor-preview :where(a):not(:where([class~=not-format] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}.editor-preview :where(strong):not(:where([class~=not-format] *)){color:var(--tw-prose-bold);font-weight:600}.editor-preview :where(a strong):not(:where([class~=not-format] *)){color:inherit}.editor-preview :where(blockquote strong):not(:where([class~=not-format] *)){color:inherit}.editor-preview :where(thead th strong):not(:where([class~=not-format] *)){color:inherit}.editor-preview :where(ol):not(:where([class~=not-format] *)){list-style-type:decimal;margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}.editor-preview :where(ol[type=A]):not(:where([class~=not-format] *)){list-style-type:upper-alpha}.editor-preview :where(ol[type=a]):not(:where([class~=not-format] *)){list-style-type:lower-alpha}.editor-preview :where(ol[type=A s]):not(:where([class~=not-format] *)){list-style-type:upper-alpha}.editor-preview :where(ol[type=a s]):not(:where([class~=not-format] *)){list-style-type:lower-alpha}.editor-preview :where(ol[type=I]):not(:where([class~=not-format] *)){list-style-type:upper-roman}.editor-preview :where(ol[type=i]):not(:where([class~=not-format] *)){list-style-type:lower-roman}.editor-preview :where(ol[type=I s]):not(:where([class~=not-format] *)){list-style-type:upper-roman}.editor-preview :where(ol[type=i s]):not(:where([class~=not-format] *)){list-style-type:lower-roman}.editor-preview :where(ol[type="1"]):not(:where([class~=not-format] *)){list-style-type:decimal}.editor-preview :where(ul):not(:where([class~=not-format] *)){list-style-type:disc;margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}.editor-preview :where(ol>li):not(:where([class~=not-format] *))::marker{color:var(--tw-prose-counters);font-weight:400}.editor-preview :where(ul>li):not(:where([class~=not-format] *))::marker{color:var(--tw-prose-bullets)}.editor-preview :where(dt):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}.editor-preview :where(hr):not(:where([class~=not-format] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-bottom:3em;margin-top:3em}.editor-preview :where(blockquote):not(:where([class~=not-format] *)){border-inline-start-color:var(--tw-prose-quote-borders);border-inline-start-width:.25rem;color:var(--tw-prose-quotes);font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-inline-start:1em;quotes:"\201C""\201D""\2018""\2019"}.editor-preview :where(blockquote p:first-of-type):not(:where([class~=not-format] *)):before{content:open-quote}.editor-preview :where(blockquote p:last-of-type):not(:where([class~=not-format] *)):after{content:close-quote}.editor-preview :where(h1):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.editor-preview :where(h1 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:900}.editor-preview :where(h2):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.editor-preview :where(h2 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:800}.editor-preview :where(h3):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.editor-preview :where(h3 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:700}.editor-preview :where(h4):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.editor-preview :where(h4 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:700}.editor-preview :where(img):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.editor-preview :where(picture):not(:where([class~=not-format] *)){display:block;margin-bottom:2em;margin-top:2em}.editor-preview :where(video):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.editor-preview :where(kbd):not(:where([class~=not-format] *)){border-radius:.3125rem;box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows)/10%),0 3px 0 rgb(var(--tw-prose-kbd-shadows)/10%);color:var(--tw-prose-kbd);font-family:inherit;font-size:.875em;font-weight:500;padding-inline-end:.375em;padding-bottom:.1875em;padding-top:.1875em;padding-inline-start:.375em}.editor-preview :where(code):not(:where([class~=not-format] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.editor-preview :where(code):not(:where([class~=not-format] *)):before{content:"`"}.editor-preview :where(code):not(:where([class~=not-format] *)):after{content:"`"}.editor-preview :where(a code):not(:where([class~=not-format] *)){color:inherit}.editor-preview :where(h1 code):not(:where([class~=not-format] *)){color:inherit}.editor-preview :where(h2 code):not(:where([class~=not-format] *)){color:inherit;font-size:.875em}.editor-preview :where(h3 code):not(:where([class~=not-format] *)){color:inherit;font-size:.9em}.editor-preview :where(h4 code):not(:where([class~=not-format] *)){color:inherit}.editor-preview :where(blockquote code):not(:where([class~=not-format] *)){color:inherit}.editor-preview :where(thead th code):not(:where([class~=not-format] *)){color:inherit}.editor-preview :where(pre):not(:where([class~=not-format] *)){background-color:var(--tw-prose-pre-bg);border-radius:.375rem;color:var(--tw-prose-pre-code);font-size:.875em;font-weight:400;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;overflow-x:auto;padding-inline-end:1.1428571em;padding-bottom:.8571429em;padding-top:.8571429em;padding-inline-start:1.1428571em}.editor-preview :where(pre code):not(:where([class~=not-format] *)){background-color:transparent;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;padding:0}.editor-preview :where(pre code):not(:where([class~=not-format] *)):before{content:none}.editor-preview :where(pre code):not(:where([class~=not-format] *)):after{content:none}.editor-preview :where(table):not(:where([class~=not-format] *)){font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;width:100%}.editor-preview :where(thead):not(:where([class~=not-format] *)){border-bottom-color:var(--tw-prose-th-borders);border-bottom-width:1px}.editor-preview :where(thead th):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em;vertical-align:bottom}.editor-preview :where(tbody tr):not(:where([class~=not-format] *)){border-bottom-color:var(--tw-prose-td-borders);border-bottom-width:1px}.editor-preview :where(tbody tr:last-child):not(:where([class~=not-format] *)){border-bottom-width:0}.editor-preview :where(tbody td):not(:where([class~=not-format] *)){vertical-align:baseline}.editor-preview :where(tfoot):not(:where([class~=not-format] *)){border-top-color:var(--tw-prose-th-borders);border-top-width:1px}.editor-preview :where(tfoot td):not(:where([class~=not-format] *)){vertical-align:top}.editor-preview :where(th,td):not(:where([class~=not-format] *)){text-align:start}.editor-preview :where(figure>*):not(:where([class~=not-format] *)){margin-bottom:0;margin-top:0}.editor-preview :where(figcaption):not(:where([class~=not-format] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.editor-preview{--tw-prose-body:#374151;--tw-prose-links:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-kbd:#111827;--tw-prose-kbd-shadows:17 24 39;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:255 255 255;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:rgba(0,0,0,.5);font-size:1rem;line-height:1.75}.editor-preview :where(picture>img):not(:where([class~=not-format] *)){margin-bottom:0;margin-top:0}.editor-preview :where(li):not(:where([class~=not-format] *)){margin-bottom:.5em;margin-top:.5em}.editor-preview :where(ol>li):not(:where([class~=not-format] *)){padding-inline-start:.375em}.editor-preview :where(ul>li):not(:where([class~=not-format] *)){padding-inline-start:.375em}.editor-preview :where(.format>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.editor-preview :where(.format>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.editor-preview :where(.format>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.editor-preview :where(.format>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.editor-preview :where(.format>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.editor-preview :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.editor-preview :where(dl):not(:where([class~=not-format] *)){margin-bottom:1.25em;margin-top:1.25em}.editor-preview :where(dd):not(:where([class~=not-format] *)){margin-top:.5em;padding-inline-start:1.625em}.editor-preview :where(hr+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview :where(h2+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview :where(h3+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview :where(h4+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview :where(thead th:first-child):not(:where([class~=not-format] *)){padding-inline-start:0}.editor-preview :where(thead th:last-child):not(:where([class~=not-format] *)){padding-inline-end:0}.editor-preview :where(tbody td,tfoot td):not(:where([class~=not-format] *)){padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-top:.5714286em;padding-inline-start:.5714286em}.editor-preview :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-format] *)){padding-inline-start:0}.editor-preview :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-format] *)){padding-inline-end:0}.editor-preview :where(figure):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.editor-preview :where(.format>:first-child):not(:where([class~=not-format] *)){margin-top:0}.editor-preview :where(.format>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-sm :where(.editor-preview>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.5714286em;margin-top:.5714286em}.format-sm :where(.editor-preview>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.1428571em}.format-sm :where(.editor-preview>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.1428571em}.format-sm :where(.editor-preview>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.1428571em}.format-sm :where(.editor-preview>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.1428571em}.format-sm :where(.editor-preview>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-sm :where(.editor-preview>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-base :where(.editor-preview>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.format-base :where(.editor-preview>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format-base :where(.editor-preview>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format-base :where(.editor-preview>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format-base :where(.editor-preview>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format-base :where(.editor-preview>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-base :where(.editor-preview>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-lg :where(.editor-preview>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8888889em;margin-top:.8888889em}.format-lg :where(.editor-preview>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-lg :where(.editor-preview>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-lg :where(.editor-preview>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-lg :where(.editor-preview>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-lg :where(.editor-preview>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-lg :where(.editor-preview>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-xl :where(.editor-preview>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8em;margin-top:.8em}.format-xl :where(.editor-preview>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.2em}.format-xl :where(.editor-preview>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.2em}.format-xl :where(.editor-preview>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.2em}.format-xl :where(.editor-preview>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.2em}.format-xl :where(.editor-preview>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-xl :where(.editor-preview>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-2xl :where(.editor-preview>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8333333em;margin-top:.8333333em}.format-2xl :where(.editor-preview>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-2xl :where(.editor-preview>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-2xl :where(.editor-preview>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-2xl :where(.editor-preview>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-2xl :where(.editor-preview>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-2xl :where(.editor-preview>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.editor-preview{--tw-prose-body:#111827;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#0b6d71;--tw-prose-bold:#111827;--tw-prose-counters:#4b5563;--tw-prose-bullets:#4b5563;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#d1d5db;--tw-prose-captions:#374151;--tw-prose-code:#111827;--tw-prose-code-bg:#f0fdfd;--tw-prose-pre-code:#e0fafa;--tw-prose-pre-bg:#111827;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-th-bg:#f3f4f6;--tw-prose-invert-body:#fff;--tw-prose-invert-headings:#e6ecf1;--tw-prose-invert-lead:#678cab;--tw-prose-invert-links:#17b8be;--tw-prose-invert-bold:#e6ecf1;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#9ca3af;--tw-prose-invert-hr:#0a5558;--tw-prose-invert-quotes:#e6ecf1;--tw-prose-invert-quote-borders:#6b7280;--tw-prose-invert-captions:#9db3c7;--tw-prose-invert-code:#e6ecf1;--tw-prose-invert-code-bg:#042f30;--tw-prose-invert-pre-code:#084547;--tw-prose-invert-pre-bg:#e6ecf1;--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;--tw-prose-invert-th-bg:#1f2937;max-width:none;--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));padding:.625rem}.editor-preview:where(.dark,.dark *){--tw-prose-body:var(--tw-prose-invert-body);--tw-prose-headings:var(--tw-prose-invert-headings);--tw-prose-lead:var(--tw-prose-invert-lead);--tw-prose-links:var(--tw-prose-invert-links);--tw-prose-bold:var(--tw-prose-invert-bold);--tw-prose-counters:var(--tw-prose-invert-counters);--tw-prose-bullets:var(--tw-prose-invert-bullets);--tw-prose-hr:var(--tw-prose-invert-hr);--tw-prose-quotes:var(--tw-prose-invert-quotes);--tw-prose-quote-borders:var(--tw-prose-invert-quote-borders);--tw-prose-captions:var(--tw-prose-invert-captions);--tw-prose-kbd:var(--tw-prose-invert-kbd);--tw-prose-kbd-shadows:var(--tw-prose-invert-kbd-shadows);--tw-prose-code:var(--tw-prose-invert-code);--tw-prose-pre-code:var(--tw-prose-invert-pre-code);--tw-prose-pre-bg:var(--tw-prose-invert-pre-bg);--tw-prose-th-borders:var(--tw-prose-invert-th-borders);--tw-prose-td-borders:var(--tw-prose-invert-td-borders);--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.editor-preview-side{color:var(--tw-prose-body);max-width:65ch}.editor-preview-side :where(p):not(:where([class~=not-format] *)){margin-bottom:1.25em;margin-top:1.25em}.editor-preview-side :where([class~=lead]):not(:where([class~=not-format] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.editor-preview-side :where(a):not(:where([class~=not-format] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}.editor-preview-side :where(strong):not(:where([class~=not-format] *)){color:var(--tw-prose-bold);font-weight:600}.editor-preview-side :where(a strong):not(:where([class~=not-format] *)){color:inherit}.editor-preview-side :where(blockquote strong):not(:where([class~=not-format] *)){color:inherit}.editor-preview-side :where(thead th strong):not(:where([class~=not-format] *)){color:inherit}.editor-preview-side :where(ol):not(:where([class~=not-format] *)){list-style-type:decimal;margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}.editor-preview-side :where(ol[type=A]):not(:where([class~=not-format] *)){list-style-type:upper-alpha}.editor-preview-side :where(ol[type=a]):not(:where([class~=not-format] *)){list-style-type:lower-alpha}.editor-preview-side :where(ol[type=A s]):not(:where([class~=not-format] *)){list-style-type:upper-alpha}.editor-preview-side :where(ol[type=a s]):not(:where([class~=not-format] *)){list-style-type:lower-alpha}.editor-preview-side :where(ol[type=I]):not(:where([class~=not-format] *)){list-style-type:upper-roman}.editor-preview-side :where(ol[type=i]):not(:where([class~=not-format] *)){list-style-type:lower-roman}.editor-preview-side :where(ol[type=I s]):not(:where([class~=not-format] *)){list-style-type:upper-roman}.editor-preview-side :where(ol[type=i s]):not(:where([class~=not-format] *)){list-style-type:lower-roman}.editor-preview-side :where(ol[type="1"]):not(:where([class~=not-format] *)){list-style-type:decimal}.editor-preview-side :where(ul):not(:where([class~=not-format] *)){list-style-type:disc;margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}.editor-preview-side :where(ol>li):not(:where([class~=not-format] *))::marker{color:var(--tw-prose-counters);font-weight:400}.editor-preview-side :where(ul>li):not(:where([class~=not-format] *))::marker{color:var(--tw-prose-bullets)}.editor-preview-side :where(dt):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}.editor-preview-side :where(hr):not(:where([class~=not-format] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-bottom:3em;margin-top:3em}.editor-preview-side :where(blockquote):not(:where([class~=not-format] *)){border-inline-start-color:var(--tw-prose-quote-borders);border-inline-start-width:.25rem;color:var(--tw-prose-quotes);font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-inline-start:1em;quotes:"\201C""\201D""\2018""\2019"}.editor-preview-side :where(blockquote p:first-of-type):not(:where([class~=not-format] *)):before{content:open-quote}.editor-preview-side :where(blockquote p:last-of-type):not(:where([class~=not-format] *)):after{content:close-quote}.editor-preview-side :where(h1):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.editor-preview-side :where(h1 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:900}.editor-preview-side :where(h2):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.editor-preview-side :where(h2 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:800}.editor-preview-side :where(h3):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.editor-preview-side :where(h3 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:700}.editor-preview-side :where(h4):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.editor-preview-side :where(h4 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:700}.editor-preview-side :where(img):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.editor-preview-side :where(picture):not(:where([class~=not-format] *)){display:block;margin-bottom:2em;margin-top:2em}.editor-preview-side :where(video):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.editor-preview-side :where(kbd):not(:where([class~=not-format] *)){border-radius:.3125rem;box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows)/10%),0 3px 0 rgb(var(--tw-prose-kbd-shadows)/10%);color:var(--tw-prose-kbd);font-family:inherit;font-size:.875em;font-weight:500;padding-inline-end:.375em;padding-bottom:.1875em;padding-top:.1875em;padding-inline-start:.375em}.editor-preview-side :where(code):not(:where([class~=not-format] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.editor-preview-side :where(code):not(:where([class~=not-format] *)):before{content:"`"}.editor-preview-side :where(code):not(:where([class~=not-format] *)):after{content:"`"}.editor-preview-side :where(a code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-side :where(h1 code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-side :where(h2 code):not(:where([class~=not-format] *)){color:inherit;font-size:.875em}.editor-preview-side :where(h3 code):not(:where([class~=not-format] *)){color:inherit;font-size:.9em}.editor-preview-side :where(h4 code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-side :where(blockquote code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-side :where(thead th code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-side :where(pre):not(:where([class~=not-format] *)){background-color:var(--tw-prose-pre-bg);border-radius:.375rem;color:var(--tw-prose-pre-code);font-size:.875em;font-weight:400;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;overflow-x:auto;padding-inline-end:1.1428571em;padding-bottom:.8571429em;padding-top:.8571429em;padding-inline-start:1.1428571em}.editor-preview-side :where(pre code):not(:where([class~=not-format] *)){background-color:transparent;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;padding:0}.editor-preview-side :where(pre code):not(:where([class~=not-format] *)):before{content:none}.editor-preview-side :where(pre code):not(:where([class~=not-format] *)):after{content:none}.editor-preview-side :where(table):not(:where([class~=not-format] *)){font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;width:100%}.editor-preview-side :where(thead):not(:where([class~=not-format] *)){border-bottom-color:var(--tw-prose-th-borders);border-bottom-width:1px}.editor-preview-side :where(thead th):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em;vertical-align:bottom}.editor-preview-side :where(tbody tr):not(:where([class~=not-format] *)){border-bottom-color:var(--tw-prose-td-borders);border-bottom-width:1px}.editor-preview-side :where(tbody tr:last-child):not(:where([class~=not-format] *)){border-bottom-width:0}.editor-preview-side :where(tbody td):not(:where([class~=not-format] *)){vertical-align:baseline}.editor-preview-side :where(tfoot):not(:where([class~=not-format] *)){border-top-color:var(--tw-prose-th-borders);border-top-width:1px}.editor-preview-side :where(tfoot td):not(:where([class~=not-format] *)){vertical-align:top}.editor-preview-side :where(th,td):not(:where([class~=not-format] *)){text-align:start}.editor-preview-side :where(figure>*):not(:where([class~=not-format] *)){margin-bottom:0;margin-top:0}.editor-preview-side :where(figcaption):not(:where([class~=not-format] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.editor-preview-side{--tw-prose-body:#374151;--tw-prose-links:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-kbd:#111827;--tw-prose-kbd-shadows:17 24 39;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:255 255 255;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:rgba(0,0,0,.5);font-size:1rem;line-height:1.75}.editor-preview-side :where(picture>img):not(:where([class~=not-format] *)){margin-bottom:0;margin-top:0}.editor-preview-side :where(li):not(:where([class~=not-format] *)){margin-bottom:.5em;margin-top:.5em}.editor-preview-side :where(ol>li):not(:where([class~=not-format] *)){padding-inline-start:.375em}.editor-preview-side :where(ul>li):not(:where([class~=not-format] *)){padding-inline-start:.375em}.editor-preview-side :where(.format>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.editor-preview-side :where(.format>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.editor-preview-side :where(.format>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.editor-preview-side :where(.format>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.editor-preview-side :where(.format>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.editor-preview-side :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.editor-preview-side :where(dl):not(:where([class~=not-format] *)){margin-bottom:1.25em;margin-top:1.25em}.editor-preview-side :where(dd):not(:where([class~=not-format] *)){margin-top:.5em;padding-inline-start:1.625em}.editor-preview-side :where(hr+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-side :where(h2+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-side :where(h3+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-side :where(h4+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-side :where(thead th:first-child):not(:where([class~=not-format] *)){padding-inline-start:0}.editor-preview-side :where(thead th:last-child):not(:where([class~=not-format] *)){padding-inline-end:0}.editor-preview-side :where(tbody td,tfoot td):not(:where([class~=not-format] *)){padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-top:.5714286em;padding-inline-start:.5714286em}.editor-preview-side :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-format] *)){padding-inline-start:0}.editor-preview-side :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-format] *)){padding-inline-end:0}.editor-preview-side :where(figure):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.editor-preview-side :where(.format>:first-child):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-side :where(.format>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-sm :where(.editor-preview-side>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.5714286em;margin-top:.5714286em}.format-sm :where(.editor-preview-side>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.1428571em}.format-sm :where(.editor-preview-side>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.1428571em}.format-sm :where(.editor-preview-side>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.1428571em}.format-sm :where(.editor-preview-side>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.1428571em}.format-sm :where(.editor-preview-side>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-sm :where(.editor-preview-side>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-base :where(.editor-preview-side>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.format-base :where(.editor-preview-side>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format-base :where(.editor-preview-side>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format-base :where(.editor-preview-side>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format-base :where(.editor-preview-side>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format-base :where(.editor-preview-side>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-base :where(.editor-preview-side>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-lg :where(.editor-preview-side>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8888889em;margin-top:.8888889em}.format-lg :where(.editor-preview-side>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-lg :where(.editor-preview-side>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-lg :where(.editor-preview-side>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-lg :where(.editor-preview-side>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-lg :where(.editor-preview-side>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-lg :where(.editor-preview-side>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-xl :where(.editor-preview-side>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8em;margin-top:.8em}.format-xl :where(.editor-preview-side>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.2em}.format-xl :where(.editor-preview-side>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.2em}.format-xl :where(.editor-preview-side>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.2em}.format-xl :where(.editor-preview-side>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.2em}.format-xl :where(.editor-preview-side>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-xl :where(.editor-preview-side>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-2xl :where(.editor-preview-side>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8333333em;margin-top:.8333333em}.format-2xl :where(.editor-preview-side>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-2xl :where(.editor-preview-side>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-2xl :where(.editor-preview-side>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-2xl :where(.editor-preview-side>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-2xl :where(.editor-preview-side>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-2xl :where(.editor-preview-side>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.editor-preview-side{--tw-prose-body:#111827;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#0b6d71;--tw-prose-bold:#111827;--tw-prose-counters:#4b5563;--tw-prose-bullets:#4b5563;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#d1d5db;--tw-prose-captions:#374151;--tw-prose-code:#111827;--tw-prose-code-bg:#f0fdfd;--tw-prose-pre-code:#e0fafa;--tw-prose-pre-bg:#111827;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-th-bg:#f3f4f6;--tw-prose-invert-body:#fff;--tw-prose-invert-headings:#e6ecf1;--tw-prose-invert-lead:#678cab;--tw-prose-invert-links:#17b8be;--tw-prose-invert-bold:#e6ecf1;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#9ca3af;--tw-prose-invert-hr:#0a5558;--tw-prose-invert-quotes:#e6ecf1;--tw-prose-invert-quote-borders:#6b7280;--tw-prose-invert-captions:#9db3c7;--tw-prose-invert-code:#e6ecf1;--tw-prose-invert-code-bg:#042f30;--tw-prose-invert-pre-code:#084547;--tw-prose-invert-pre-bg:#e6ecf1;--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;--tw-prose-invert-th-bg:#1f2937;border-width:1px;bottom:0;box-sizing:border-box;display:none;max-width:none;overflow:auto;overflow-wrap:break-word;position:fixed;right:0;top:50px;width:50%;z-index:50;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.editor-preview-side:where(.dark,.dark *){--tw-prose-body:var(--tw-prose-invert-body);--tw-prose-headings:var(--tw-prose-invert-headings);--tw-prose-lead:var(--tw-prose-invert-lead);--tw-prose-links:var(--tw-prose-invert-links);--tw-prose-bold:var(--tw-prose-invert-bold);--tw-prose-counters:var(--tw-prose-invert-counters);--tw-prose-bullets:var(--tw-prose-invert-bullets);--tw-prose-hr:var(--tw-prose-invert-hr);--tw-prose-quotes:var(--tw-prose-invert-quotes);--tw-prose-quote-borders:var(--tw-prose-invert-quote-borders);--tw-prose-captions:var(--tw-prose-invert-captions);--tw-prose-kbd:var(--tw-prose-invert-kbd);--tw-prose-kbd-shadows:var(--tw-prose-invert-kbd-shadows);--tw-prose-code:var(--tw-prose-invert-code);--tw-prose-pre-code:var(--tw-prose-invert-pre-code);--tw-prose-pre-bg:var(--tw-prose-invert-pre-bg);--tw-prose-th-borders:var(--tw-prose-invert-th-borders);--tw-prose-td-borders:var(--tw-prose-invert-td-borders);--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.editor-preview-active-side{display:block}.EasyMDEContainer.sided--no-fullscreen .editor-preview-active-side{flex:1 1 0%;height:auto;position:static}.editor-preview>p{margin-top:0}.editor-preview pre{margin-bottom:.625rem;--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.editor-preview pre:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.editor-preview table td,.editor-preview table th{border-width:1px;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));padding:.375rem}.editor-preview table td:where(.dark,.dark *),.editor-preview table th:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.editor-statusbar{font-size:.875rem;line-height:1.25rem;padding:.5rem;text-align:right;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.editor-statusbar:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.EasyMDEContainer.sided--no-fullscreen .editor-statusbar{width:100%}.editor-statusbar span{display:inline-block;margin-left:1rem;min-width:4em}.editor-statusbar .lines:before{content:"lines: "}.editor-statusbar .words:before{content:"words: "}.editor-statusbar .characters:before{content:"characters: "}.cm-s-easymde .cm-em{font-style:italic;--tw-text-opacity:1;color:rgb(26 53 73/var(--tw-text-opacity))}.cm-s-easymde .cm-em:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(103 140 171/var(--tw-text-opacity))}.cm-s-easymde .cm-strong{font-weight:700;--tw-text-opacity:1;color:rgb(26 53 73/var(--tw-text-opacity))}.cm-s-easymde .cm-strong:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(103 140 171/var(--tw-text-opacity))}.cm-s-easymde .cm-strikethrough{font-style:italic;--tw-text-opacity:1;color:rgb(26 53 73/var(--tw-text-opacity));text-decoration-line:line-through}.cm-s-easymde .cm-strikethrough:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(103 140 171/var(--tw-text-opacity))}.cm-s-easymde .cm-quote{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-quote:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-s-easymde .cm-keyword{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-keyword:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-s-easymde .cm-atom{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-atom:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-s-easymde .cm-number{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-number:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-s-easymde .cm-def{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-def:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-s-easymde .cm-variable{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-variable:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-s-easymde .cm-variable-2{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-variable-2:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-s-easymde .cm-variable-3{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-variable-3:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-formatting.cm-formatting-list{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-formatting.cm-formatting-list:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-formatting.cm-formatting-link{--tw-text-opacity:1!important;color:rgb(12 27 38/var(--tw-text-opacity))!important}.cm-formatting.cm-formatting-link:where(.dark,.dark *){--tw-text-opacity:1!important;color:rgb(103 140 171/var(--tw-text-opacity))!important}.cm-formatting.cm-formatting-link-string{--tw-text-opacity:1!important;color:rgb(12 27 38/var(--tw-text-opacity))!important}.cm-formatting.cm-formatting-link-string:where(.dark,.dark *){--tw-text-opacity:1!important;color:rgb(103 140 171/var(--tw-text-opacity))!important}.cm-s-easymde .cm-string{--tw-text-opacity:1;color:rgb(255 100 122/var(--tw-text-opacity))}.cm-s-easymde .cm-string:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 158 170/var(--tw-text-opacity))}.cm-s-easymde .cm-string.cm-url{--tw-text-opacity:1;color:rgb(255 100 122/var(--tw-text-opacity))}.cm-s-easymde .cm-string.cm-url:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 158 170/var(--tw-text-opacity))}.cm-s-easymde .cm-url{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-url:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-s-easymde .cm-string-2{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-string-2:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-s-easymde .cm-comment{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.cm-s-easymde .cm-comment:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.cm-s-easymde .cm-tag{color:#63a35c}.cm-s-easymde .cm-meta{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.cm-s-easymde .cm-meta:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.cm-s-easymde .cm-attribute{--tw-text-opacity:1;color:rgb(26 53 73/var(--tw-text-opacity))}.cm-s-easymde .cm-attribute:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(103 140 171/var(--tw-text-opacity))}.cm-s-easymde .cm-error{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity))}.cm-s-easymde .cm-error:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}.cm-s-easymde .cm-header-1{font-size:calc(1.375rem + 1.5vw)}.cm-s-easymde .cm-header-2{font-size:calc(1.325rem + .9vw)}.cm-s-easymde .cm-header-3{font-size:calc(1.3rem + .6vw)}.cm-s-easymde .cm-header-4{font-size:calc(1.275rem + .3vw)}.cm-s-easymde .cm-header-5{font-size:1.25rem}.cm-s-easymde .cm-header-6{font-size:1rem}.cm-s-easymde .cm-header-1,.cm-s-easymde .cm-header-2,.cm-s-easymde .cm-header-3,.cm-s-easymde .cm-header-4,.cm-s-easymde .cm-header-5,.cm-s-easymde .cm-header-6{line-height:1.25;margin-bottom:.5rem}.editor-toolbar .easymde-dropdown{border-width:1px;position:relative;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.editor-toolbar .easymde-dropdown:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.editor-toolbar .easymde-dropdown,.editor-toolbar .easymde-dropdown:hover{background:linear-gradient(to bottom right,#fff,#fff 84%,#333 0,#333)}.easymde-dropdown-content{display:block;position:absolute;top:30px;visibility:hidden;z-index:20;--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));padding:.5rem;--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.easymde-dropdown-content:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.easymde-dropdown:active .easymde-dropdown-content,.easymde-dropdown:focus .easymde-dropdown-content,.easymde-dropdown:focus-within .easymde-dropdown-content{visibility:visible}.editor-toolbar.fullscreen:before{background:linear-gradient(90deg,#fff 0,hsla(0,0%,100%,0));left:0}.editor-toolbar.fullscreen:after,.editor-toolbar.fullscreen:before{height:50px;margin:0;padding:0;position:fixed;top:0;width:1.25rem}.editor-toolbar.fullscreen:after{background:linear-gradient(90deg,hsla(0,0%,100%,0) 0,#fff);right:0}.dark .editor-toolbar.fullscreen:before{background:linear-gradient(90deg,#1f2937 0,rgba(31,41,55,0))}.dark .editor-toolbar.fullscreen:after{background:linear-gradient(90deg,rgba(31,41,55,0) 0,#1f2937)}@media only screen and (max-width:700px){.editor-toolbar i.no-mobile{display:none}}.CodeMirror .cm-spell-error:not(.cm-url):not(.cm-comment):not(.cm-tag):not(.cm-word){background-color:hsla(0,93%,94%,.5)}.CodeMirror .cm-spell-error:not(.cm-url):not(.cm-comment):not(.cm-tag):not(.cm-word):where(.dark,.dark *){background-color:rgba(127,29,29,.3)}span[data-img-src]:after{background-image:var(--bg-image);background-repeat:no-repeat;background-size:contain;content:"";display:block;height:0;max-height:100%;max-width:100%;padding-top:var(--height);width:var(--width)}.CodeMirror-rtl pre{direction:rtl}.CodeMirror-selectedtext{background-color:rgba(229,231,235,.7)}.CodeMirror-selectedtext:where(.dark,.dark *){background-color:rgba(75,85,99,.5)}@keyframes blink{50%{background-color:transparent}}.cm-fat-cursor .CodeMirror-cursor{--tw-bg-opacity:1;background-color:rgb(119 238 119/var(--tw-bg-opacity));border:0!important;width:auto}.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-fat-cursor .CodeMirror-line::selection,.cm-fat-cursor .CodeMirror-line>span::selection,.cm-fat-cursor .CodeMirror-line>span>span::selection{background:transparent}.cm-fat-cursor .CodeMirror-line::-moz-selection,.cm-fat-cursor .CodeMirror-line>span::-moz-selection,.cm-fat-cursor .CodeMirror-line>span>span::-moz-selection{background:transparent}.cm-fat-cursor{caret-color:transparent}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.CodeMirror-selected{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.CodeMirror-selected:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.CodeMirror-focused .CodeMirror-selected{--tw-bg-opacity:1;background-color:rgb(219 234 254/var(--tw-bg-opacity))}.CodeMirror-focused .CodeMirror-selected:where(.dark,.dark *){background-color:rgba(30,58,138,.3)}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line{outline:2px solid transparent;outline-offset:2px}.cm-tab{display:inline-block;text-decoration-line:none}div.CodeMirror-cursors{position:relative;visibility:hidden;z-index:3}.CodeMirror-focused div.CodeMirror-cursors,div.CodeMirror-dragcursors{visibility:visible}.CodeMirror-measure{height:0;overflow:hidden;position:absolute;visibility:hidden;width:100%}.CodeMirror-linebackground{inset:0;position:absolute;z-index:0}.CodeMirror-linewidget{padding:.1px;position:relative;z-index:2}.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber{-moz-user-select:none;-webkit-user-select:none;user-select:none}.CodeMirror-wrap pre.CodeMirror-line,.CodeMirror-wrap pre.CodeMirror-line-like{overflow-wrap:normal;overflow-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-composing{border-bottom-width:2px;border-style:solid}div.CodeMirror span.CodeMirror-matchingbracket{--tw-text-opacity:1;color:rgb(21 128 61/var(--tw-text-opacity))}div.CodeMirror span.CodeMirror-matchingbracket:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(74 222 128/var(--tw-text-opacity))}div.CodeMirror span.CodeMirror-nonmatchingbracket{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity))}div.CodeMirror span.CodeMirror-nonmatchingbracket:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}.CodeMirror-activeline-background{--tw-bg-opacity:1;background-color:rgb(239 246 255/var(--tw-bg-opacity))}.CodeMirror-activeline-background:where(.dark,.dark *){background-color:rgba(30,58,138,.1)}.CodeMirror-fullscreen{z-index:9999}.editor-toolbar.disabled-for-preview button:not(.no-disable){opacity:.6;pointer-events:none}.CodeMirror-measure pre{position:static}.CodeMirror-scroll{-webkit-overflow-scrolling:touch}.CodeMirror pre.CodeMirror-line,.CodeMirror pre.CodeMirror-line-like{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.cm-s-easymde .cm-header{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-s-easymde .cm-header:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{--tw-bg-opacity:1;background-color:rgb(224 250 250/var(--tw-bg-opacity))}.CodeMirror-line:where(.dark,.dark *)::selection,.CodeMirror-line>span:where(.dark,.dark *)::selection,.CodeMirror-line>span>span:where(.dark,.dark *)::selection{background-color:rgba(8,69,71,.3)}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{--tw-bg-opacity:1;background-color:rgb(224 250 250/var(--tw-bg-opacity))}.CodeMirror-line:where(.dark,.dark *)::-moz-selection,.CodeMirror-line>span:where(.dark,.dark *)::-moz-selection,.CodeMirror-line>span>span:where(.dark,.dark *)::-moz-selection{background-color:rgba(8,69,71,.3)}.CodeMirror-matchingtag{background-color:hsla(53,98%,77%,.3)}.CodeMirror-matchingtag:where(.dark,.dark *){background-color:rgba(113,63,18,.3)}.cm-searching{background-color:hsla(53,98%,77%,.4)}.cm-searching:where(.dark,.dark *){background-color:rgba(113,63,18,.4)}.CodeMirror-rulers{bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:-50px}.CodeMirror-ruler{border-left-width:1px;bottom:0;position:absolute;top:0;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.CodeMirror-ruler:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.editor-preview-full{box-sizing:border-box;display:none;height:100%;left:0;overflow:auto;position:absolute;top:0;width:100%;z-index:7}.editor-preview-active{display:block}.editor-preview-full{color:var(--tw-prose-body);max-width:65ch}.editor-preview-full :where(p):not(:where([class~=not-format] *)){margin-bottom:1.25em;margin-top:1.25em}.editor-preview-full :where([class~=lead]):not(:where([class~=not-format] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.editor-preview-full :where(a):not(:where([class~=not-format] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}.editor-preview-full :where(strong):not(:where([class~=not-format] *)){color:var(--tw-prose-bold);font-weight:600}.editor-preview-full :where(a strong):not(:where([class~=not-format] *)){color:inherit}.editor-preview-full :where(blockquote strong):not(:where([class~=not-format] *)){color:inherit}.editor-preview-full :where(thead th strong):not(:where([class~=not-format] *)){color:inherit}.editor-preview-full :where(ol):not(:where([class~=not-format] *)){list-style-type:decimal;margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}.editor-preview-full :where(ol[type=A]):not(:where([class~=not-format] *)){list-style-type:upper-alpha}.editor-preview-full :where(ol[type=a]):not(:where([class~=not-format] *)){list-style-type:lower-alpha}.editor-preview-full :where(ol[type=A s]):not(:where([class~=not-format] *)){list-style-type:upper-alpha}.editor-preview-full :where(ol[type=a s]):not(:where([class~=not-format] *)){list-style-type:lower-alpha}.editor-preview-full :where(ol[type=I]):not(:where([class~=not-format] *)){list-style-type:upper-roman}.editor-preview-full :where(ol[type=i]):not(:where([class~=not-format] *)){list-style-type:lower-roman}.editor-preview-full :where(ol[type=I s]):not(:where([class~=not-format] *)){list-style-type:upper-roman}.editor-preview-full :where(ol[type=i s]):not(:where([class~=not-format] *)){list-style-type:lower-roman}.editor-preview-full :where(ol[type="1"]):not(:where([class~=not-format] *)){list-style-type:decimal}.editor-preview-full :where(ul):not(:where([class~=not-format] *)){list-style-type:disc;margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}.editor-preview-full :where(ol>li):not(:where([class~=not-format] *))::marker{color:var(--tw-prose-counters);font-weight:400}.editor-preview-full :where(ul>li):not(:where([class~=not-format] *))::marker{color:var(--tw-prose-bullets)}.editor-preview-full :where(dt):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}.editor-preview-full :where(hr):not(:where([class~=not-format] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-bottom:3em;margin-top:3em}.editor-preview-full :where(blockquote):not(:where([class~=not-format] *)){border-inline-start-color:var(--tw-prose-quote-borders);border-inline-start-width:.25rem;color:var(--tw-prose-quotes);font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-inline-start:1em;quotes:"\201C""\201D""\2018""\2019"}.editor-preview-full :where(blockquote p:first-of-type):not(:where([class~=not-format] *)):before{content:open-quote}.editor-preview-full :where(blockquote p:last-of-type):not(:where([class~=not-format] *)):after{content:close-quote}.editor-preview-full :where(h1):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.editor-preview-full :where(h1 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:900}.editor-preview-full :where(h2):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.editor-preview-full :where(h2 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:800}.editor-preview-full :where(h3):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.editor-preview-full :where(h3 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:700}.editor-preview-full :where(h4):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.editor-preview-full :where(h4 strong):not(:where([class~=not-format] *)){color:inherit;font-weight:700}.editor-preview-full :where(img):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.editor-preview-full :where(picture):not(:where([class~=not-format] *)){display:block;margin-bottom:2em;margin-top:2em}.editor-preview-full :where(video):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.editor-preview-full :where(kbd):not(:where([class~=not-format] *)){border-radius:.3125rem;box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows)/10%),0 3px 0 rgb(var(--tw-prose-kbd-shadows)/10%);color:var(--tw-prose-kbd);font-family:inherit;font-size:.875em;font-weight:500;padding-inline-end:.375em;padding-bottom:.1875em;padding-top:.1875em;padding-inline-start:.375em}.editor-preview-full :where(code):not(:where([class~=not-format] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.editor-preview-full :where(code):not(:where([class~=not-format] *)):before{content:"`"}.editor-preview-full :where(code):not(:where([class~=not-format] *)):after{content:"`"}.editor-preview-full :where(a code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-full :where(h1 code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-full :where(h2 code):not(:where([class~=not-format] *)){color:inherit;font-size:.875em}.editor-preview-full :where(h3 code):not(:where([class~=not-format] *)){color:inherit;font-size:.9em}.editor-preview-full :where(h4 code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-full :where(blockquote code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-full :where(thead th code):not(:where([class~=not-format] *)){color:inherit}.editor-preview-full :where(pre):not(:where([class~=not-format] *)){background-color:var(--tw-prose-pre-bg);border-radius:.375rem;color:var(--tw-prose-pre-code);font-size:.875em;font-weight:400;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;overflow-x:auto;padding-inline-end:1.1428571em;padding-bottom:.8571429em;padding-top:.8571429em;padding-inline-start:1.1428571em}.editor-preview-full :where(pre code):not(:where([class~=not-format] *)){background-color:transparent;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;padding:0}.editor-preview-full :where(pre code):not(:where([class~=not-format] *)):before{content:none}.editor-preview-full :where(pre code):not(:where([class~=not-format] *)):after{content:none}.editor-preview-full :where(table):not(:where([class~=not-format] *)){font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;width:100%}.editor-preview-full :where(thead):not(:where([class~=not-format] *)){border-bottom-color:var(--tw-prose-th-borders);border-bottom-width:1px}.editor-preview-full :where(thead th):not(:where([class~=not-format] *)){color:var(--tw-prose-headings);font-weight:600;padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em;vertical-align:bottom}.editor-preview-full :where(tbody tr):not(:where([class~=not-format] *)){border-bottom-color:var(--tw-prose-td-borders);border-bottom-width:1px}.editor-preview-full :where(tbody tr:last-child):not(:where([class~=not-format] *)){border-bottom-width:0}.editor-preview-full :where(tbody td):not(:where([class~=not-format] *)){vertical-align:baseline}.editor-preview-full :where(tfoot):not(:where([class~=not-format] *)){border-top-color:var(--tw-prose-th-borders);border-top-width:1px}.editor-preview-full :where(tfoot td):not(:where([class~=not-format] *)){vertical-align:top}.editor-preview-full :where(th,td):not(:where([class~=not-format] *)){text-align:start}.editor-preview-full :where(figure>*):not(:where([class~=not-format] *)){margin-bottom:0;margin-top:0}.editor-preview-full :where(figcaption):not(:where([class~=not-format] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.editor-preview-full{--tw-prose-body:#374151;--tw-prose-links:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-kbd:#111827;--tw-prose-kbd-shadows:17 24 39;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:255 255 255;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:rgba(0,0,0,.5);font-size:1rem;line-height:1.75}.editor-preview-full :where(picture>img):not(:where([class~=not-format] *)){margin-bottom:0;margin-top:0}.editor-preview-full :where(li):not(:where([class~=not-format] *)){margin-bottom:.5em;margin-top:.5em}.editor-preview-full :where(ol>li):not(:where([class~=not-format] *)){padding-inline-start:.375em}.editor-preview-full :where(ul>li):not(:where([class~=not-format] *)){padding-inline-start:.375em}.editor-preview-full :where(.format>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.editor-preview-full :where(.format>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.editor-preview-full :where(.format>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.editor-preview-full :where(.format>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.editor-preview-full :where(.format>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.editor-preview-full :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.editor-preview-full :where(dl):not(:where([class~=not-format] *)){margin-bottom:1.25em;margin-top:1.25em}.editor-preview-full :where(dd):not(:where([class~=not-format] *)){margin-top:.5em;padding-inline-start:1.625em}.editor-preview-full :where(hr+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-full :where(h2+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-full :where(h3+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-full :where(h4+*):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-full :where(thead th:first-child):not(:where([class~=not-format] *)){padding-inline-start:0}.editor-preview-full :where(thead th:last-child):not(:where([class~=not-format] *)){padding-inline-end:0}.editor-preview-full :where(tbody td,tfoot td):not(:where([class~=not-format] *)){padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-top:.5714286em;padding-inline-start:.5714286em}.editor-preview-full :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-format] *)){padding-inline-start:0}.editor-preview-full :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-format] *)){padding-inline-end:0}.editor-preview-full :where(figure):not(:where([class~=not-format] *)){margin-bottom:2em;margin-top:2em}.editor-preview-full :where(.format>:first-child):not(:where([class~=not-format] *)){margin-top:0}.editor-preview-full :where(.format>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-sm :where(.editor-preview-full>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.5714286em;margin-top:.5714286em}.format-sm :where(.editor-preview-full>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.1428571em}.format-sm :where(.editor-preview-full>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.1428571em}.format-sm :where(.editor-preview-full>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.1428571em}.format-sm :where(.editor-preview-full>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.1428571em}.format-sm :where(.editor-preview-full>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-sm :where(.editor-preview-full>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-base :where(.editor-preview-full>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.75em;margin-top:.75em}.format-base :where(.editor-preview-full>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format-base :where(.editor-preview-full>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format-base :where(.editor-preview-full>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.25em}.format-base :where(.editor-preview-full>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.25em}.format-base :where(.editor-preview-full>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-base :where(.editor-preview-full>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-lg :where(.editor-preview-full>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8888889em;margin-top:.8888889em}.format-lg :where(.editor-preview-full>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-lg :where(.editor-preview-full>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-lg :where(.editor-preview-full>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-lg :where(.editor-preview-full>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-lg :where(.editor-preview-full>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-lg :where(.editor-preview-full>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-xl :where(.editor-preview-full>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8em;margin-top:.8em}.format-xl :where(.editor-preview-full>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.2em}.format-xl :where(.editor-preview-full>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.2em}.format-xl :where(.editor-preview-full>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.2em}.format-xl :where(.editor-preview-full>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.2em}.format-xl :where(.editor-preview-full>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-xl :where(.editor-preview-full>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.format-2xl :where(.editor-preview-full>ul>li p):not(:where([class~=not-format] *)){margin-bottom:.8333333em;margin-top:.8333333em}.format-2xl :where(.editor-preview-full>ul>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-2xl :where(.editor-preview-full>ul>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-2xl :where(.editor-preview-full>ol>li>p:first-child):not(:where([class~=not-format] *)){margin-top:1.3333333em}.format-2xl :where(.editor-preview-full>ol>li>p:last-child):not(:where([class~=not-format] *)){margin-bottom:1.3333333em}.format-2xl :where(.editor-preview-full>:first-child):not(:where([class~=not-format] *)){margin-top:0}.format-2xl :where(.editor-preview-full>:last-child):not(:where([class~=not-format] *)){margin-bottom:0}.editor-preview-full{--tw-prose-body:#111827;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#0b6d71;--tw-prose-bold:#111827;--tw-prose-counters:#4b5563;--tw-prose-bullets:#4b5563;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#d1d5db;--tw-prose-captions:#374151;--tw-prose-code:#111827;--tw-prose-code-bg:#f0fdfd;--tw-prose-pre-code:#e0fafa;--tw-prose-pre-bg:#111827;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-th-bg:#f3f4f6;--tw-prose-invert-body:#fff;--tw-prose-invert-headings:#e6ecf1;--tw-prose-invert-lead:#678cab;--tw-prose-invert-links:#17b8be;--tw-prose-invert-bold:#e6ecf1;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#9ca3af;--tw-prose-invert-hr:#0a5558;--tw-prose-invert-quotes:#e6ecf1;--tw-prose-invert-quote-borders:#6b7280;--tw-prose-invert-captions:#9db3c7;--tw-prose-invert-code:#e6ecf1;--tw-prose-invert-code-bg:#042f30;--tw-prose-invert-pre-code:#084547;--tw-prose-invert-pre-bg:#e6ecf1;--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;--tw-prose-invert-th-bg:#1f2937;max-width:none;--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));padding:.625rem}.editor-preview-full:where(.dark,.dark *){--tw-prose-body:var(--tw-prose-invert-body);--tw-prose-headings:var(--tw-prose-invert-headings);--tw-prose-lead:var(--tw-prose-invert-lead);--tw-prose-links:var(--tw-prose-invert-links);--tw-prose-bold:var(--tw-prose-invert-bold);--tw-prose-counters:var(--tw-prose-invert-counters);--tw-prose-bullets:var(--tw-prose-invert-bullets);--tw-prose-hr:var(--tw-prose-invert-hr);--tw-prose-quotes:var(--tw-prose-invert-quotes);--tw-prose-quote-borders:var(--tw-prose-invert-quote-borders);--tw-prose-captions:var(--tw-prose-invert-captions);--tw-prose-kbd:var(--tw-prose-invert-kbd);--tw-prose-kbd-shadows:var(--tw-prose-invert-kbd-shadows);--tw-prose-code:var(--tw-prose-invert-code);--tw-prose-pre-code:var(--tw-prose-invert-pre-code);--tw-prose-pre-bg:var(--tw-prose-invert-pre-bg);--tw-prose-th-borders:var(--tw-prose-invert-th-borders);--tw-prose-td-borders:var(--tw-prose-invert-td-borders);--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.editor-preview-full>p{margin-top:0}.editor-preview-full pre{margin-bottom:.625rem;--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.editor-preview-full pre:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.editor-preview-full table td,.editor-preview-full table th{border-width:1px;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));padding:.375rem}.editor-preview-full table td:where(.dark,.dark *),.editor-preview-full table th:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}:root{--ss-primary-color:#17b8be;--ss-bg-color:#fff;--ss-font-color:#111827;--ss-font-placeholder-color:#6b7280;--ss-disabled-color:#f3f4f6;--ss-border-color:#d1d5db;--ss-highlight-color:#fef08a;--ss-success-color:#22c55e;--ss-error-color:#ef4444;--ss-focus-color:#17b8be}.dark{--ss-primary-color:#40d9de;--ss-bg-color:#374151;--ss-font-color:#fff;--ss-font-placeholder-color:#9ca3af;--ss-disabled-color:#1f2937;--ss-border-color:#4b5563;--ss-highlight-color:#fde047;--ss-success-color:#4ade80;--ss-error-color:#f87171;--ss-focus-color:#40d9de}@keyframes ss-valueIn{0%{--tw-scale-x:0;--tw-scale-y:0;opacity:0;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))}to{--tw-scale-x:1;--tw-scale-y:1;opacity:1;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))}}@keyframes ss-valueOut{0%{--tw-scale-x:1;--tw-scale-y:1;opacity:1;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))}to{--tw-scale-x:0;--tw-scale-y:0;opacity:0;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))}}.ss-hide{display:none!important}.ss-main{border-radius:.375rem;border-width:1px;cursor:pointer;display:flex;flex-direction:row;overflow:hidden;position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));font-size:.875rem;font-weight:500;line-height:1.25rem;padding:.5rem;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity));--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--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-duration:.2s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ss-main:focus{outline:2px solid transparent;outline-offset:2px}.ss-main:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ss-main:focus{--tw-border-opacity:1;border-color:rgb(23 184 190/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(1px + 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(23 184 190/var(--tw-ring-opacity))}.ss-main.ss-disabled{cursor:not-allowed;--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.ss-main.ss-disabled:where(.dark,.dark *){--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))}.ss-main.ss-open-above{border-bottom-left-radius:.375rem;border-bottom-right-radius:.375rem;border-top-left-radius:0;border-top-right-radius:0}.ss-main.ss-open-below{border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:.375rem;border-top-right-radius:.375rem}.ss-main .ss-values{display:inline-flex;flex:1 1 0%;flex-wrap:wrap;gap:5px}.ss-main .ss-values .ss-placeholder{align-items:center;display:flex;line-height:1.5;margin:0;overflow:hidden;padding:0;text-overflow:ellipsis;white-space:nowrap;width:100%;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.ss-main .ss-values .ss-placeholder:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.ss-main .ss-values .ss-max{align-items:center;border-radius:.375rem;display:flex;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:-moz-fit-content;width:fit-content;--tw-bg-opacity:1;background-color:rgb(23 184 190/var(--tw-bg-opacity));font-size:.75rem;line-height:1rem;line-height:1.5;padding:3px 5px;--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ss-main .ss-values .ss-max:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.ss-main .ss-values .ss-single{display:flex;margin:0}.ss-main .ss-values .ss-value{align-items:center;border-radius:.375rem;display:flex;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:-moz-fit-content;width:fit-content;--tw-bg-opacity:1;background-color:rgb(23 184 190/var(--tw-bg-opacity));--tw-text-opacity:1;animation:ss-valueIn .2s ease-out forwards;color:rgb(255 255 255/var(--tw-text-opacity))}.ss-main .ss-values .ss-value.ss-value-out{animation:ss-valueOut .2s ease-out forwards}.ss-main .ss-values .ss-value .ss-value-text{font-size:.75rem;line-height:1rem;line-height:1.5;padding:3px 5px}.ss-main .ss-values .ss-value .ss-value-delete{align-items:center;border-left-width:1px;border-style:solid;box-sizing:content-box;cursor:pointer;display:flex;height:7px;width:7px;--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity));padding:3px 5px}.ss-main .ss-values .ss-value .ss-value-delete svg{height:7px;width:7px}.ss-main .ss-values .ss-value .ss-value-delete svg path{fill:none;stroke:#fff;stroke-width:18;stroke-linecap:round;stroke-linejoin:round}.ss-main .ss-deselect{align-items:center;display:flex;flex:none;height:auto;justify-content:center;padding:0 5px;width:-moz-fit-content;width:fit-content}.ss-main .ss-deselect svg{height:8px;width:8px}.ss-main .ss-deselect svg path{fill:none;stroke:#6b7280}.ss-main .ss-deselect svg path:where(.dark,.dark *){stroke:#9ca3af}.ss-main .ss-deselect svg path{stroke-width:20;stroke-linecap:round;stroke-linejoin:round}.ss-main .ss-arrow{align-items:center;display:flex;flex:none;height:1rem;justify-content:flex-end;margin:auto;width:1rem}.ss-main .ss-arrow path{fill:none;stroke:#6b7280;transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ss-main .ss-arrow path:where(.dark,.dark *){stroke:#9ca3af}.ss-main .ss-arrow path{stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.ss-content{box-sizing:border-box;display:flex;height:auto;max-height:300px;position:absolute;transform-origin:top;width:auto;z-index:10000;--tw-scale-y:0;border-bottom-left-radius:.375rem;border-bottom-right-radius:.375rem;border-width:1px;flex-direction:column;overflow:hidden;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));--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));opacity:0;--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px 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-duration:.2s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ss-content:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.ss-content.ss-relative{height:100%;position:relative}.ss-content.ss-fixed{position:fixed}.ss-content.ss-open-above{transform-origin:bottom;--tw-scale-y:1;border-top-left-radius:.375rem;border-top-right-radius:.375rem;flex-direction:column-reverse;opacity:1;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))}.ss-content.ss-open-below{transform-origin:top;--tw-scale-y:1;border-bottom-left-radius:.375rem;border-bottom-right-radius:.375rem;opacity:1;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))}.ss-content .ss-search{display:flex;flex:none;flex-direction:row;padding:.5rem}.ss-content .ss-search input{border-radius:.375rem;border-width:1px;box-sizing:border-box;display:inline-flex;flex:1 1 auto;margin:0;min-width:0;width:100%;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity));font-size:.875rem;font-weight:500;line-height:1.25rem;line-height:1.5;padding:.5rem;text-align:left;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.ss-content .ss-search input::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.ss-content .ss-search input::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.ss-content .ss-search input{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--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)}.ss-content .ss-search input:focus{--tw-border-opacity:1;border-color:rgb(23 184 190/var(--tw-border-opacity));outline:2px solid transparent;outline-offset:2px;--tw-ring-opacity:1;--tw-ring-color:rgb(23 184 190/var(--tw-ring-opacity))}.ss-content .ss-search input:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ss-content .ss-search input:where(.dark,.dark *)::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.ss-content .ss-search input:where(.dark,.dark *)::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.ss-content .ss-search .ss-addable{align-items:center;border-width:1px;cursor:pointer;display:inline-flex;flex:none;height:auto;justify-content:center;margin-left:.5rem;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--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)}.ss-content .ss-search .ss-addable:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.ss-content .ss-search .ss-addable svg{align-items:center;display:flex;flex:none;height:1rem;justify-content:flex-end;margin:.5rem;width:1rem}.ss-content .ss-search .ss-addable svg path{fill:none;stroke:#6b7280}.ss-content .ss-search .ss-addable svg path:where(.dark,.dark *){stroke:#9ca3af}.ss-content .ss-search .ss-addable svg path{stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.ss-content .ss-list{flex:1 1 auto;height:auto;overflow-x:hidden;overflow-y:auto}.ss-content .ss-list .ss-error{padding:.5rem;--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.ss-content .ss-list .ss-error:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}.ss-content .ss-list .ss-searching{padding:.5rem;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.ss-content .ss-list .ss-searching:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ss-content .ss-list .ss-optgroup.ss-close .ss-option{display:none!important}.ss-content .ss-list .ss-search{flex:none;font-size:.875rem;font-weight:500;line-height:1.25rem;padding:.5rem;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.ss-content .ss-list .ss-search:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.ss-content>.ss-search{display:flex;flex:none;flex-direction:row;padding:.5rem}.ss-content .ss-list .ss-optgroup .ss-optgroup-label{align-items:center;display:flex;flex-direction:row;justify-content:space-between;--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));padding:.5rem}.ss-content .ss-list .ss-optgroup .ss-optgroup-label:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-label-text{flex:1 1 auto;font-weight:700;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-label-text:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ss-content .ss-list .ss-optgroup .ss-optgroup-label:has(.ss-arrow){cursor:pointer}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions{align-items:center;display:flex;flex:none;flex-direction:row;gap:.5rem;justify-content:center}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall{cursor:pointer;display:flex;flex:none;flex-direction:row}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall:hover{opacity:.5}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall.ss-selected svg path{stroke:#ef4444}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall.ss-selected svg path:where(.dark,.dark *){stroke:#f87171}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall span{align-items:center;display:flex;flex:none;font-size:60%;justify-content:center;padding-right:.25rem;text-align:center}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg{flex:none;height:13px;width:13px}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg path{fill:none;stroke:#22c55e}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg path:where(.dark,.dark *){stroke:#4ade80}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg path{stroke-linecap:round;stroke-linejoin:round}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg:first-child{stroke-width:5}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg:last-child{stroke-width:11}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable{cursor:pointer;display:flex;flex:none;flex-direction:row}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow{flex:1 1 auto;height:10px;width:10px}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow path{fill:none;stroke:#6b7280;transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow path:where(.dark,.dark *){stroke:#9ca3af}.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow path{stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.ss-content .ss-list .ss-optgroup .ss-option{padding:.5rem .5rem .5rem 1.5rem}.ss-content .ss-list .ss-option{cursor:pointer;display:block;padding:.5rem;-webkit-user-select:none;-moz-user-select:none;user-select:none;white-space:normal;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.ss-content .ss-list .ss-option:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.ss-content .ss-list .ss-option:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ss-content .ss-list .ss-option:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.ss-content .ss-list .ss-option{min-height:0}.ss-content .ss-list .ss-option:empty{display:none;margin:0;padding:0}.ss-content .ss-list .ss-option.ss-highlighted,.ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected{--tw-bg-opacity:1;background-color:rgb(23 184 190/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ss-content .ss-list .ss-option.ss-highlighted:where(.dark,.dark *),.ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.ss-content .ss-list .ss-option.ss-disabled{cursor:not-allowed;--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.ss-content .ss-list .ss-option.ss-disabled:where(.dark,.dark *){--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))}.ss-content .ss-list .ss-option .ss-search-highlight{display:inline-block;--tw-bg-opacity:1;background-color:rgb(254 240 138/var(--tw-bg-opacity))}.ss-content .ss-list .ss-option .ss-search-highlight:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(253 224 71/var(--tw-bg-opacity))}.sr-only{height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;clip:rect(0,0,0,0);border-width:0;white-space:nowrap}.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}.inset-x-0{left:0;right:0}.inset-y-0{bottom:0;top:0}.-top-\[50px\]{top:-50px}.bottom-0{bottom:0}.bottom-\[-2px\]{bottom:-2px}.bottom-\[60px\]{bottom:60px}.left-0{left:0}.right-0{right:0}.top-0{top:0}.top-16{top:4rem}.top-\[30px\]{top:30px}.top-\[50px\]{top:50px}.z-0{z-index:0}.z-20{z-index:20}.z-30{z-index:30}.z-40{z-index:40}.z-50{z-index:50}.z-\[10000\]{z-index:10000}.z-\[2\]{z-index:2}.z-\[3\]{z-index:3}.z-\[7\]{z-index:7}.z-\[9999\]{z-index:9999}.col-span-1{grid-column:span 1/span 1}.col-span-10{grid-column:span 10/span 10}.col-span-11{grid-column:span 11/span 11}.col-span-12{grid-column:span 12/span 12}.col-span-2{grid-column:span 2/span 2}.col-span-3{grid-column:span 3/span 3}.col-span-4{grid-column:span 4/span 4}.col-span-5{grid-column:span 5/span 5}.col-span-6{grid-column:span 6/span 6}.col-span-7{grid-column:span 7/span 7}.col-span-8{grid-column:span 8/span 8}.col-span-9{grid-column:span 9/span 9}.col-span-full{grid-column:1/-1}.col-start-1{grid-column-start:1}.col-start-10{grid-column-start:10}.col-start-11{grid-column-start:11}.col-start-12{grid-column-start:12}.col-start-13{grid-column-start:13}.col-start-2{grid-column-start:2}.col-start-3{grid-column-start:3}.col-start-4{grid-column-start:4}.col-start-5{grid-column-start:5}.col-start-6{grid-column-start:6}.col-start-7{grid-column-start:7}.col-start-8{grid-column-start:8}.col-start-9{grid-column-start:9}.col-start-auto{grid-column-start:auto}.col-end-1{grid-column-end:1}.col-end-10{grid-column-end:10}.col-end-11{grid-column-end:11}.col-end-12{grid-column-end:12}.col-end-13{grid-column-end:13}.col-end-2{grid-column-end:2}.col-end-3{grid-column-end:3}.col-end-4{grid-column-end:4}.col-end-5{grid-column-end:5}.col-end-6{grid-column-end:6}.col-end-7{grid-column-end:7}.col-end-8{grid-column-end:8}.col-end-9{grid-column-end:9}.col-end-auto{grid-column-end:auto}.row-span-1{grid-row:span 1/span 1}.row-span-10{grid-row:span 10/span 10}.row-span-11{grid-row:span 11/span 11}.row-span-12{grid-row:span 12/span 12}.row-span-2{grid-row:span 2/span 2}.row-span-3{grid-row:span 3/span 3}.row-span-4{grid-row:span 4/span 4}.row-span-5{grid-row:span 5/span 5}.row-span-6{grid-row:span 6/span 6}.row-span-7{grid-row:span 7/span 7}.row-span-8{grid-row:span 8/span 8}.row-span-9{grid-row:span 9/span 9}.row-span-full{grid-row:1/-1}.row-start-1{grid-row-start:1}.row-start-10{grid-row-start:10}.row-start-11{grid-row-start:11}.row-start-12{grid-row-start:12}.row-start-13{grid-row-start:13}.row-start-2{grid-row-start:2}.row-start-3{grid-row-start:3}.row-start-4{grid-row-start:4}.row-start-5{grid-row-start:5}.row-start-6{grid-row-start:6}.row-start-7{grid-row-start:7}.row-start-8{grid-row-start:8}.row-start-9{grid-row-start:9}.row-start-auto{grid-row-start:auto}.row-end-1{grid-row-end:1}.row-end-10{grid-row-end:10}.row-end-11{grid-row-end:11}.row-end-12{grid-row-end:12}.row-end-13{grid-row-end:13}.row-end-2{grid-row-end:2}.row-end-3{grid-row-end:3}.row-end-4{grid-row-end:4}.row-end-5{grid-row-end:5}.row-end-6{grid-row-end:6}.row-end-7{grid-row-end:7}.row-end-8{grid-row-end:8}.row-end-9{grid-row-end:9}.row-end-auto{grid-row-end:auto}.m-0{margin:0}.-mx-1{margin-left:-.25rem;margin-right:-.25rem}.-mx-1\.5{margin-left:-.375rem;margin-right:-.375rem}.-my-1{margin-bottom:-.25rem;margin-top:-.25rem}.-my-1\.5{margin-bottom:-.375rem;margin-top:-.375rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.mx-4{margin-left:1rem;margin-right:1rem}.mx-auto{margin-left:auto;margin-right:auto}.my-1{margin-bottom:.25rem;margin-top:.25rem}.my-3{margin-bottom:.75rem;margin-top:.75rem}.my-4{margin-bottom:1rem;margin-top:1rem}.-mb-px{margin-bottom:-1px}.-ml-1{margin-left:-.25rem}.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-2\.5{margin-bottom:.625rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.me-2{margin-inline-end:.5rem}.me-2\.5{margin-inline-end:.625rem}.ml-1{margin-left:.25rem}.ml-1\.5{margin-left:.375rem}.ml-2{margin-left:.5rem}.ml-2\.5{margin-left:.625rem}.ml-3{margin-left:.75rem}.ml-9{margin-left:2.25rem}.ml-auto{margin-left:auto}.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}.mr-auto{margin-right:auto}.ms-1{margin-inline-start:.25rem}.ms-2{margin-inline-start:.5rem}.ms-3{margin-inline-start:.75rem}.ms-auto{margin-inline-start:auto}.mt-1{margin-top:.25rem}.mt-1\.5{margin-top:.375rem}.mt-2{margin-top:.5rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.box-border{box-sizing:border-box}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.aspect-square{aspect-ratio:1/1}.h-0{height:0}.h-10{height:2.5rem}.h-2{height:.5rem}.h-2\.5{height:.625rem}.h-24{height:6rem}.h-3{height:.75rem}.h-3\.5{height:.875rem}.h-4{height:1rem}.h-4\/5{height:80%}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-8{height:2rem}.h-\[10px\]{height:10px}.h-\[13px\]{height:13px}.h-\[30px\]{height:30px}.h-\[50px\]{height:50px}.h-\[7px\]{height:7px}.h-\[8px\]{height:8px}.h-auto{height:auto}.h-full{height:100%}.h-screen{height:100vh}.max-h-\[150px\]{max-height:150px}.max-h-\[300px\]{max-height:300px}.max-h-fit{max-height:-moz-fit-content;max-height:fit-content}.max-h-full{max-height:100%}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.w-0{width:0}.w-1\/2{width:50%}.w-10{width:2.5rem}.w-12{width:3rem}.w-2{width:.5rem}.w-2\.5{width:.625rem}.w-24{width:6rem}.w-3{width:.75rem}.w-3\.5{width:.875rem}.w-3\/5{width:60%}.w-32{width:8rem}.w-4{width:1rem}.w-48{width:12rem}.w-5{width:1.25rem}.w-56{width:14rem}.w-6{width:1.5rem}.w-64{width:16rem}.w-8{width:2rem}.w-\[10px\]{width:10px}.w-\[13px\]{width:13px}.w-\[7px\]{width:7px}.w-\[8px\]{width:8px}.w-auto{width:auto}.w-fit{width:-moz-fit-content;width:fit-content}.w-full{width:100%}.min-w-0{min-width:0}.min-w-\[30px\]{min-width:30px}.min-w-\[4em\]{min-width:4em}.min-w-\[5em\]{min-width:5em}.max-w-\[310px\]{max-width:310px}.max-w-full{max-width:100%}.max-w-md{max-width:28rem}.max-w-sm{max-width:24rem}.flex-1{flex:1 1 0%}.flex-auto{flex:1 1 auto}.flex-none{flex:none}.flex-shrink-0,.shrink-0{flex-shrink:0}.origin-bottom{transform-origin:bottom}.origin-top{transform-origin:top}.-translate-x-full{--tw-translate-x:-100%}.-translate-x-full,.-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%}.translate-x-full{--tw-translate-x:100%}.translate-x-full,.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,.scale-0{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))}.scale-0{--tw-scale-x:0;--tw-scale-y:0}.scale-100{--tw-scale-x:1;--tw-scale-y:1}.scale-100,.scale-y-0{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))}.scale-y-0{--tw-scale-y:0}.scale-y-100{--tw-scale-y:1}.scale-y-100,.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))}.transform-none{transform:none}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.list-inside{list-style-position:inside}.list-disc{list-style-type:disc}.list-none{list-style-type:none}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.grid-flow-row-dense{grid-auto-flow:row dense}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-\[repeat\(auto-fill\2c minmax\(0\2c 180px\)\)\]{grid-template-columns:repeat(auto-fill,minmax(0,180px))}.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}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.gap-\[5px\]{gap:5px}.gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.gap-y-10{row-gap:2.5rem}.gap-y-2{row-gap:.5rem}.-space-x-px>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(-1px*(1 - var(--tw-space-x-reverse)));margin-right:calc(-1px*var(--tw-space-x-reverse))}.space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.25rem*var(--tw-space-x-reverse))}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.divide-gray-100>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(243 244 246/var(--tw-divide-opacity))}.divide-gray-200>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(229 231 235/var(--tw-divide-opacity))}.self-center{align-self:center}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.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-normal{white-space:normal}.whitespace-nowrap{white-space:nowrap}.whitespace-pre{white-space:pre}.whitespace-pre-line{white-space:pre-line}.whitespace-pre-wrap{white-space:pre-wrap}.break-words{overflow-wrap:break-word}.rounded{border-radius:.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-sm{border-radius:.125rem}.rounded-xl{border-radius:.75rem}.rounded-b-lg{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.rounded-b-md{border-bottom-left-radius:.375rem;border-bottom-right-radius:.375rem}.rounded-e-lg{border-end-end-radius:.5rem;border-start-end-radius:.5rem}.rounded-s-lg{border-end-start-radius:.5rem;border-start-start-radius:.5rem}.rounded-t-lg{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.rounded-t-md{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.rounded-br-none{border-bottom-right-radius:0}.border{border-width:1px}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-l{border-left-width:1px}.border-r{border-right-width:1px}.border-r-0{border-right-width:0}.border-t{border-top-width:1px}.border-solid{border-style:solid}.border-none{border-style:none}.border-black{--tw-border-opacity:1;border-color:rgb(0 0 0/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-gray-400{--tw-border-opacity:1;border-color:rgb(156 163 175/var(--tw-border-opacity))}.border-gray-600{--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.border-green-500{--tw-border-opacity:1;border-color:rgb(34 197 94/var(--tw-border-opacity))}.border-primary-600{--tw-border-opacity:1;border-color:rgb(14 143 148/var(--tw-border-opacity))}.border-primary-700{--tw-border-opacity:1;border-color:rgb(11 109 113/var(--tw-border-opacity))}.border-red-300{--tw-border-opacity:1;border-color:rgb(252 165 165/var(--tw-border-opacity))}.border-red-500{--tw-border-opacity:1;border-color:rgb(239 68 68/var(--tw-border-opacity))}.border-red-600{--tw-border-opacity:1;border-color:rgb(220 38 38/var(--tw-border-opacity))}.border-transparent{border-color:transparent}.border-white{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.border-l-gray-300{--tw-border-opacity:1;border-left-color:rgb(209 213 219/var(--tw-border-opacity))}.border-r-white{--tw-border-opacity:1;border-right-color:rgb(255 255 255/var(--tw-border-opacity))}.bg-\[\#7e7\]{--tw-bg-opacity:1;background-color:rgb(119 238 119/var(--tw-bg-opacity))}.bg-accent-100{--tw-bg-opacity:1;background-color:rgb(255 228 231/var(--tw-bg-opacity))}.bg-accent-700{--tw-bg-opacity:1;background-color:rgb(231 61 85/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-blue-600{--tw-bg-opacity:1;background-color:rgb(37 99 235/var(--tw-bg-opacity))}.bg-blue-700{--tw-bg-opacity:1;background-color:rgb(29 78 216/var(--tw-bg-opacity))}.bg-blue-800{--tw-bg-opacity:1;background-color:rgb(30 64 175/var(--tw-bg-opacity))}.bg-danger-100{--tw-bg-opacity:1;background-color:rgb(254 226 226/var(--tw-bg-opacity))}.bg-danger-700{--tw-bg-opacity:1;background-color:rgb(185 28 28/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-200\/70{background-color:rgba(229,231,235,.7)}.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-800{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.bg-gray-900\/50{background-color:rgba(17,24,39,.5)}.bg-green-100{--tw-bg-opacity:1;background-color:rgb(220 252 231/var(--tw-bg-opacity))}.bg-green-50{--tw-bg-opacity:1;background-color:rgb(240 253 244/var(--tw-bg-opacity))}.bg-green-800{--tw-bg-opacity:1;background-color:rgb(22 101 52/var(--tw-bg-opacity))}.bg-info-100{--tw-bg-opacity:1;background-color:rgb(224 242 254/var(--tw-bg-opacity))}.bg-info-700{--tw-bg-opacity:1;background-color:rgb(3 105 161/var(--tw-bg-opacity))}.bg-primary-100{--tw-bg-opacity:1;background-color:rgb(224 250 250/var(--tw-bg-opacity))}.bg-primary-500{--tw-bg-opacity:1;background-color:rgb(23 184 190/var(--tw-bg-opacity))}.bg-primary-600{--tw-bg-opacity:1;background-color:rgb(14 143 148/var(--tw-bg-opacity))}.bg-primary-700{--tw-bg-opacity:1;background-color:rgb(11 109 113/var(--tw-bg-opacity))}.bg-red-100{--tw-bg-opacity:1;background-color:rgb(254 226 226/var(--tw-bg-opacity))}.bg-red-100\/50{background-color:hsla(0,93%,94%,.5)}.bg-red-50{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity))}.bg-red-600{--tw-bg-opacity:1;background-color:rgb(220 38 38/var(--tw-bg-opacity))}.bg-red-700{--tw-bg-opacity:1;background-color:rgb(185 28 28/var(--tw-bg-opacity))}.bg-red-800{--tw-bg-opacity:1;background-color:rgb(153 27 27/var(--tw-bg-opacity))}.bg-secondary-100{--tw-bg-opacity:1;background-color:rgb(230 236 241/var(--tw-bg-opacity))}.bg-secondary-700{--tw-bg-opacity:1;background-color:rgb(21 44 61/var(--tw-bg-opacity))}.bg-success-100{--tw-bg-opacity:1;background-color:rgb(220 252 231/var(--tw-bg-opacity))}.bg-success-700{--tw-bg-opacity:1;background-color:rgb(21 128 61/var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.bg-warning-100{--tw-bg-opacity:1;background-color:rgb(254 243 199/var(--tw-bg-opacity))}.bg-warning-700{--tw-bg-opacity:1;background-color:rgb(180 83 9/var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-yellow-100{--tw-bg-opacity:1;background-color:rgb(254 249 195/var(--tw-bg-opacity))}.bg-yellow-200{--tw-bg-opacity:1;background-color:rgb(254 240 138/var(--tw-bg-opacity))}.bg-yellow-200\/30{background-color:hsla(53,98%,77%,.3)}.bg-yellow-200\/40{background-color:hsla(53,98%,77%,.4)}.bg-yellow-300{--tw-bg-opacity:1;background-color:rgb(253 224 71/var(--tw-bg-opacity))}.bg-yellow-50{--tw-bg-opacity:1;background-color:rgb(254 252 232/var(--tw-bg-opacity))}.bg-yellow-700{--tw-bg-opacity:1;background-color:rgb(161 98 7/var(--tw-bg-opacity))}.bg-yellow-800{--tw-bg-opacity:1;background-color:rgb(133 77 14/var(--tw-bg-opacity))}.bg-contain{background-size:contain}.fill-none{fill:none}.stroke-gray-500{stroke:#6b7280}.stroke-green-500{stroke:#22c55e}.stroke-red-500{stroke:#ef4444}.object-cover{-o-object-fit:cover;object-fit:cover}.p-0{padding:0}.p-1{padding:.25rem}.p-1\.5{padding:.375rem}.p-2{padding:.5rem}.p-2\.5{padding:.625rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.p-\[0_5px\]{padding:0 5px}.p-\[3px_5px\]{padding:3px 5px}.px-0{padding-left:0;padding-right:0}.px-1{padding-left:.25rem;padding-right:.25rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-1\.5{padding-bottom:.375rem;padding-top:.375rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-2\.5{padding-bottom:.625rem;padding-top:.625rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-4{padding-bottom:1rem;padding-top:1rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.py-8{padding-bottom:2rem;padding-top:2rem}.pb-6{padding-bottom:1.5rem}.pl-10{padding-left:2.5rem}.pl-3{padding-left:.75rem}.ps-0{padding-inline-start:0}.pt-14{padding-top:3.5rem}.pt-20{padding-top:5rem}.pt-4{padding-top:1rem}.text-left{text-align:left}.text-center{text-align:center}.text-start{text-align:start}.text-end{text-align:end}.-indent-\[10px\]{text-indent:-10px}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-\[60\%\]{font-size:60%}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-extrabold{font-weight:800}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.italic{font-style:italic}.leading-none{line-height:1}.leading-normal{line-height:1.5}.leading-tight{line-height:1.25}.tracking-tight{letter-spacing:-.025em}.text-accent-600{--tw-text-opacity:1;color:rgb(255 100 122/var(--tw-text-opacity))}.text-accent-700{--tw-text-opacity:1;color:rgb(231 61 85/var(--tw-text-opacity))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-blue-200{--tw-text-opacity:1;color:rgb(191 219 254/var(--tw-text-opacity))}.text-blue-400{--tw-text-opacity:1;color:rgb(96 165 250/var(--tw-text-opacity))}.text-blue-500{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}.text-blue-600{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.text-blue-800{--tw-text-opacity:1;color:rgb(30 64 175/var(--tw-text-opacity))}.text-danger-700{--tw-text-opacity:1;color:rgb(185 28 28/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-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.text-green-200{--tw-text-opacity:1;color:rgb(187 247 208/var(--tw-text-opacity))}.text-green-400{--tw-text-opacity:1;color:rgb(74 222 128/var(--tw-text-opacity))}.text-green-500{--tw-text-opacity:1;color:rgb(34 197 94/var(--tw-text-opacity))}.text-green-700{--tw-text-opacity:1;color:rgb(21 128 61/var(--tw-text-opacity))}.text-green-800{--tw-text-opacity:1;color:rgb(22 101 52/var(--tw-text-opacity))}.text-green-900{--tw-text-opacity:1;color:rgb(20 83 45/var(--tw-text-opacity))}.text-info-700{--tw-text-opacity:1;color:rgb(3 105 161/var(--tw-text-opacity))}.text-primary-600{--tw-text-opacity:1;color:rgb(14 143 148/var(--tw-text-opacity))}.text-primary-700{--tw-text-opacity:1;color:rgb(11 109 113/var(--tw-text-opacity))}.text-primary-800{--tw-text-opacity:1;color:rgb(10 85 88/var(--tw-text-opacity))}.text-red-200{--tw-text-opacity:1;color:rgb(254 202 202/var(--tw-text-opacity))}.text-red-400{--tw-text-opacity:1;color:rgb(248 113 113/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-red-700{--tw-text-opacity:1;color:rgb(185 28 28/var(--tw-text-opacity))}.text-red-800{--tw-text-opacity:1;color:rgb(153 27 27/var(--tw-text-opacity))}.text-red-900{--tw-text-opacity:1;color:rgb(127 29 29/var(--tw-text-opacity))}.text-secondary-600{--tw-text-opacity:1;color:rgb(26 53 73/var(--tw-text-opacity))}.text-secondary-700{--tw-text-opacity:1;color:rgb(21 44 61/var(--tw-text-opacity))}.text-secondary-900{--tw-text-opacity:1;color:rgb(12 27 38/var(--tw-text-opacity))}.text-success-700{--tw-text-opacity:1;color:rgb(21 128 61/var(--tw-text-opacity))}.text-transparent{color:transparent}.text-warning-700{--tw-text-opacity:1;color:rgb(180 83 9/var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-yellow-200{--tw-text-opacity:1;color:rgb(254 240 138/var(--tw-text-opacity))}.text-yellow-400{--tw-text-opacity:1;color:rgb(250 204 21/var(--tw-text-opacity))}.text-yellow-500{--tw-text-opacity:1;color:rgb(234 179 8/var(--tw-text-opacity))}.text-yellow-800{--tw-text-opacity:1;color:rgb(133 77 14/var(--tw-text-opacity))}.underline{text-decoration-line:underline}.line-through{text-decoration-line:line-through}.no-underline{text-decoration-line:none}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.placeholder-gray-400::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.placeholder-gray-400::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.placeholder-green-700::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(21 128 61/var(--tw-placeholder-opacity))}.placeholder-green-700::placeholder{--tw-placeholder-opacity:1;color:rgb(21 128 61/var(--tw-placeholder-opacity))}.placeholder-red-700::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(185 28 28/var(--tw-placeholder-opacity))}.placeholder-red-700::placeholder{--tw-placeholder-opacity:1;color:rgb(185 28 28/var(--tw-placeholder-opacity))}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.shadow,.shadow-inner{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-inner{--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color)}.shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow-lg,.shadow-md{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--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}.ring-1{--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(1px + 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)}.ring-blue-400{--tw-ring-opacity:1;--tw-ring-color:rgb(96 165 250/var(--tw-ring-opacity))}.ring-green-400{--tw-ring-opacity:1;--tw-ring-color:rgb(74 222 128/var(--tw-ring-opacity))}.ring-primary-500{--tw-ring-opacity:1;--tw-ring-color:rgb(23 184 190/var(--tw-ring-opacity))}.ring-red-400{--tw-ring-opacity:1;--tw-ring-color:rgb(248 113 113/var(--tw-ring-opacity))}.ring-yellow-400{--tw-ring-opacity:1;--tw-ring-color:rgb(250 204 21/var(--tw-ring-opacity))}.grayscale{--tw-grayscale:grayscale(100%)}.filter,.grayscale{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)}.transition{transition-duration:.15s;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-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.duration-75{transition-duration:75ms}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.dark\:format-invert:where(.dark,.dark *){--tw-prose-body:var(--tw-prose-invert-body);--tw-prose-headings:var(--tw-prose-invert-headings);--tw-prose-lead:var(--tw-prose-invert-lead);--tw-prose-links:var(--tw-prose-invert-links);--tw-prose-bold:var(--tw-prose-invert-bold);--tw-prose-counters:var(--tw-prose-invert-counters);--tw-prose-bullets:var(--tw-prose-invert-bullets);--tw-prose-hr:var(--tw-prose-invert-hr);--tw-prose-quotes:var(--tw-prose-invert-quotes);--tw-prose-quote-borders:var(--tw-prose-invert-quote-borders);--tw-prose-captions:var(--tw-prose-invert-captions);--tw-prose-kbd:var(--tw-prose-invert-kbd);--tw-prose-kbd-shadows:var(--tw-prose-invert-kbd-shadows);--tw-prose-code:var(--tw-prose-invert-code);--tw-prose-pre-code:var(--tw-prose-invert-pre-code);--tw-prose-pre-bg:var(--tw-prose-invert-pre-bg);--tw-prose-th-borders:var(--tw-prose-invert-th-borders);--tw-prose-td-borders:var(--tw-prose-invert-td-borders)}.last\:border-r-0:last-child{border-right-width:0}.last\:border-none:last-child{border-style:none}.valid\:border-green-500:valid{--tw-border-opacity:1;border-color:rgb(34 197 94/var(--tw-border-opacity))}.invalid\:border-red-500:invalid{--tw-border-opacity:1;border-color:rgb(239 68 68/var(--tw-border-opacity))}.invalid\:text-red-600:invalid{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity))}.hover\:max-w-\[600px\]:hover{max-width:600px}.hover\:border-gray-300:hover{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.hover\:bg-accent-200:hover{--tw-bg-opacity:1;background-color:rgb(255 204 210/var(--tw-bg-opacity))}.hover\:bg-accent-800:hover{--tw-bg-opacity:1;background-color:rgb(209 45 68/var(--tw-bg-opacity))}.hover\:bg-blue-100:hover{--tw-bg-opacity:1;background-color:rgb(219 234 254/var(--tw-bg-opacity))}.hover\:bg-blue-700:hover{--tw-bg-opacity:1;background-color:rgb(29 78 216/var(--tw-bg-opacity))}.hover\:bg-blue-800:hover{--tw-bg-opacity:1;background-color:rgb(30 64 175/var(--tw-bg-opacity))}.hover\:bg-danger-200:hover{--tw-bg-opacity:1;background-color:rgb(254 202 202/var(--tw-bg-opacity))}.hover\:bg-danger-800:hover{--tw-bg-opacity:1;background-color:rgb(153 27 27/var(--tw-bg-opacity))}.hover\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.hover\:bg-gray-200:hover{--tw-bg-opacity:1;background-color:rgb(229 231 235/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-info-200:hover{--tw-bg-opacity:1;background-color:rgb(186 230 253/var(--tw-bg-opacity))}.hover\:bg-info-800:hover{--tw-bg-opacity:1;background-color:rgb(7 89 133/var(--tw-bg-opacity))}.hover\:bg-primary-200:hover{--tw-bg-opacity:1;background-color:rgb(186 243 245/var(--tw-bg-opacity))}.hover\:bg-primary-700:hover{--tw-bg-opacity:1;background-color:rgb(11 109 113/var(--tw-bg-opacity))}.hover\:bg-primary-800:hover{--tw-bg-opacity:1;background-color:rgb(10 85 88/var(--tw-bg-opacity))}.hover\:bg-red-50:hover{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity))}.hover\:bg-red-700:hover{--tw-bg-opacity:1;background-color:rgb(185 28 28/var(--tw-bg-opacity))}.hover\:bg-red-800:hover{--tw-bg-opacity:1;background-color:rgb(153 27 27/var(--tw-bg-opacity))}.hover\:bg-secondary-200:hover{--tw-bg-opacity:1;background-color:rgb(199 213 225/var(--tw-bg-opacity))}.hover\:bg-secondary-800:hover{--tw-bg-opacity:1;background-color:rgb(16 34 49/var(--tw-bg-opacity))}.hover\:bg-success-200:hover{--tw-bg-opacity:1;background-color:rgb(187 247 208/var(--tw-bg-opacity))}.hover\:bg-success-800:hover{--tw-bg-opacity:1;background-color:rgb(22 101 52/var(--tw-bg-opacity))}.hover\:bg-warning-200:hover{--tw-bg-opacity:1;background-color:rgb(253 230 138/var(--tw-bg-opacity))}.hover\:bg-warning-800:hover{--tw-bg-opacity:1;background-color:rgb(146 64 14/var(--tw-bg-opacity))}.hover\:bg-yellow-400:hover{--tw-bg-opacity:1;background-color:rgb(250 204 21/var(--tw-bg-opacity))}.hover\:bg-yellow-800:hover{--tw-bg-opacity:1;background-color:rgb(133 77 14/var(--tw-bg-opacity))}.hover\:text-blue-700:hover{--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity))}.hover\:text-blue-800:hover{--tw-text-opacity:1;color:rgb(30 64 175/var(--tw-text-opacity))}.hover\:text-gray-600:hover{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.hover\:text-gray-700:hover{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.hover\:text-gray-900:hover{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.hover\:text-primary-600:hover{--tw-text-opacity:1;color:rgb(14 143 148/var(--tw-text-opacity))}.hover\:text-primary-800:hover{--tw-text-opacity:1;color:rgb(10 85 88/var(--tw-text-opacity))}.hover\:underline:hover{text-decoration-line:underline}.hover\:shadow-md:hover{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.focus\:z-10:focus{z-index:10}.focus\:border-blue-500:focus{--tw-border-opacity:1;border-color:rgb(59 130 246/var(--tw-border-opacity))}.focus\:border-green-500:focus{--tw-border-opacity:1;border-color:rgb(34 197 94/var(--tw-border-opacity))}.focus\:border-primary-500:focus{--tw-border-opacity:1;border-color:rgb(23 184 190/var(--tw-border-opacity))}.focus\:border-primary-600:focus{--tw-border-opacity:1;border-color:rgb(14 143 148/var(--tw-border-opacity))}.focus\:border-red-500:focus{--tw-border-opacity:1;border-color:rgb(239 68 68/var(--tw-border-opacity))}.focus\:border-red-600:focus{--tw-border-opacity:1;border-color:rgb(220 38 38/var(--tw-border-opacity))}.focus\:bg-gray-100:focus{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.focus\:text-gray-700:focus{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.focus\:text-white:focus{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring-2: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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-2:focus,.focus\:ring-4:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-4: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(4px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-accent-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(255 177 186/var(--tw-ring-opacity))}.focus\:ring-blue-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(147 197 253/var(--tw-ring-opacity))}.focus\:ring-blue-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity))}.focus\:ring-danger-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(252 165 165/var(--tw-ring-opacity))}.focus\:ring-gray-100:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(243 244 246/var(--tw-ring-opacity))}.focus\:ring-gray-200:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(229 231 235/var(--tw-ring-opacity))}.focus\:ring-gray-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(209 213 219/var(--tw-ring-opacity))}.focus\:ring-green-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(34 197 94/var(--tw-ring-opacity))}.focus\:ring-info-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(125 211 252/var(--tw-ring-opacity))}.focus\:ring-primary-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(125 232 236/var(--tw-ring-opacity))}.focus\:ring-primary-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(23 184 190/var(--tw-ring-opacity))}.focus\:ring-primary-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(14 143 148/var(--tw-ring-opacity))}.focus\:ring-primary-700:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(11 109 113/var(--tw-ring-opacity))}.focus\:ring-red-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(252 165 165/var(--tw-ring-opacity))}.focus\:ring-red-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(239 68 68/var(--tw-ring-opacity))}.focus\:ring-red-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(220 38 38/var(--tw-ring-opacity))}.focus\:ring-secondary-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(157 179 199/var(--tw-ring-opacity))}.focus\:ring-success-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(134 239 172/var(--tw-ring-opacity))}.focus\:ring-warning-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(252 211 77/var(--tw-ring-opacity))}.focus\:ring-yellow-300:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(253 224 71/var(--tw-ring-opacity))}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus\:invalid\:border-red-500:invalid:focus{--tw-border-opacity:1;border-color:rgb(239 68 68/var(--tw-border-opacity))}.focus\:invalid\:ring-red-500:invalid:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(239 68 68/var(--tw-ring-opacity))}.focus-visible\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\:ring-2:focus-visible{--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(2px + 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-visible\:ring-blue-600:focus-visible{--tw-ring-opacity:1;--tw-ring-color:rgb(37 99 235/var(--tw-ring-opacity))}.focus-visible\:ring-primary-600:focus-visible{--tw-ring-opacity:1;--tw-ring-color:rgb(14 143 148/var(--tw-ring-opacity))}.group:hover .group-hover\:text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.group:hover .group-hover\:text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}@media (prefers-reduced-motion:no-preference){@keyframes pulse{50%{opacity:.5}}.motion-safe\:animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes spin{to{transform:rotate(1turn)}}.motion-safe\:animate-spin{animation:spin 1s linear infinite}}@media (min-width:475px){.xs\:block{display:block}}@media (min-width:640px){.sm\:col-span-1{grid-column:span 1/span 1}.sm\:col-span-10{grid-column:span 10/span 10}.sm\:col-span-11{grid-column:span 11/span 11}.sm\:col-span-12{grid-column:span 12/span 12}.sm\:col-span-2{grid-column:span 2/span 2}.sm\:col-span-3{grid-column:span 3/span 3}.sm\:col-span-4{grid-column:span 4/span 4}.sm\:col-span-5{grid-column:span 5/span 5}.sm\:col-span-6{grid-column:span 6/span 6}.sm\:col-span-7{grid-column:span 7/span 7}.sm\:col-span-8{grid-column:span 8/span 8}.sm\:col-span-9{grid-column:span 9/span 9}.sm\:col-span-full{grid-column:1/-1}.sm\:col-start-1{grid-column-start:1}.sm\:col-start-10{grid-column-start:10}.sm\:col-start-11{grid-column-start:11}.sm\:col-start-12{grid-column-start:12}.sm\:col-start-13{grid-column-start:13}.sm\:col-start-2{grid-column-start:2}.sm\:col-start-3{grid-column-start:3}.sm\:col-start-4{grid-column-start:4}.sm\:col-start-5{grid-column-start:5}.sm\:col-start-6{grid-column-start:6}.sm\:col-start-7{grid-column-start:7}.sm\:col-start-8{grid-column-start:8}.sm\:col-start-9{grid-column-start:9}.sm\:col-start-auto{grid-column-start:auto}.sm\:col-end-1{grid-column-end:1}.sm\:col-end-10{grid-column-end:10}.sm\:col-end-11{grid-column-end:11}.sm\:col-end-12{grid-column-end:12}.sm\:col-end-13{grid-column-end:13}.sm\:col-end-2{grid-column-end:2}.sm\:col-end-3{grid-column-end:3}.sm\:col-end-4{grid-column-end:4}.sm\:col-end-5{grid-column-end:5}.sm\:col-end-6{grid-column-end:6}.sm\:col-end-7{grid-column-end:7}.sm\:col-end-8{grid-column-end:8}.sm\:col-end-9{grid-column-end:9}.sm\:col-end-auto{grid-column-end:auto}.sm\:row-span-1{grid-row:span 1/span 1}.sm\:row-span-10{grid-row:span 10/span 10}.sm\:row-span-11{grid-row:span 11/span 11}.sm\:row-span-12{grid-row:span 12/span 12}.sm\:row-span-2{grid-row:span 2/span 2}.sm\:row-span-3{grid-row:span 3/span 3}.sm\:row-span-4{grid-row:span 4/span 4}.sm\:row-span-5{grid-row:span 5/span 5}.sm\:row-span-6{grid-row:span 6/span 6}.sm\:row-span-7{grid-row:span 7/span 7}.sm\:row-span-8{grid-row:span 8/span 8}.sm\:row-span-9{grid-row:span 9/span 9}.sm\:row-span-full{grid-row:1/-1}.sm\:row-start-1{grid-row-start:1}.sm\:row-start-10{grid-row-start:10}.sm\:row-start-11{grid-row-start:11}.sm\:row-start-12{grid-row-start:12}.sm\:row-start-13{grid-row-start:13}.sm\:row-start-2{grid-row-start:2}.sm\:row-start-3{grid-row-start:3}.sm\:row-start-4{grid-row-start:4}.sm\:row-start-5{grid-row-start:5}.sm\:row-start-6{grid-row-start:6}.sm\:row-start-7{grid-row-start:7}.sm\:row-start-8{grid-row-start:8}.sm\:row-start-9{grid-row-start:9}.sm\:row-start-auto{grid-row-start:auto}.sm\:row-end-1{grid-row-end:1}.sm\:row-end-10{grid-row-end:10}.sm\:row-end-11{grid-row-end:11}.sm\:row-end-12{grid-row-end:12}.sm\:row-end-13{grid-row-end:13}.sm\:row-end-2{grid-row-end:2}.sm\:row-end-3{grid-row-end:3}.sm\:row-end-4{grid-row-end:4}.sm\:row-end-5{grid-row-end:5}.sm\:row-end-6{grid-row-end:6}.sm\:row-end-7{grid-row-end:7}.sm\:row-end-8{grid-row-end:8}.sm\:row-end-9{grid-row-end:9}.sm\:row-end-auto{grid-row-end:auto}.sm\:flex{display:flex}.sm\:max-w-md{max-width:28rem}.sm\:flex-row{flex-direction:row}.sm\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.sm\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.sm\:rounded-lg{border-radius:.5rem}.sm\:p-8{padding:2rem}.sm\:text-lg{font-size:1.125rem;line-height:1.75rem}}@media (min-width:768px){.md\:col-span-1{grid-column:span 1/span 1}.md\:col-span-10{grid-column:span 10/span 10}.md\:col-span-11{grid-column:span 11/span 11}.md\:col-span-12{grid-column:span 12/span 12}.md\:col-span-2{grid-column:span 2/span 2}.md\:col-span-3{grid-column:span 3/span 3}.md\:col-span-4{grid-column:span 4/span 4}.md\:col-span-5{grid-column:span 5/span 5}.md\:col-span-6{grid-column:span 6/span 6}.md\:col-span-7{grid-column:span 7/span 7}.md\:col-span-8{grid-column:span 8/span 8}.md\:col-span-9{grid-column:span 9/span 9}.md\:col-span-full{grid-column:1/-1}.md\:col-start-1{grid-column-start:1}.md\:col-start-10{grid-column-start:10}.md\:col-start-11{grid-column-start:11}.md\:col-start-12{grid-column-start:12}.md\:col-start-13{grid-column-start:13}.md\:col-start-2{grid-column-start:2}.md\:col-start-3{grid-column-start:3}.md\:col-start-4{grid-column-start:4}.md\:col-start-5{grid-column-start:5}.md\:col-start-6{grid-column-start:6}.md\:col-start-7{grid-column-start:7}.md\:col-start-8{grid-column-start:8}.md\:col-start-9{grid-column-start:9}.md\:col-start-auto{grid-column-start:auto}.md\:col-end-1{grid-column-end:1}.md\:col-end-10{grid-column-end:10}.md\:col-end-11{grid-column-end:11}.md\:col-end-12{grid-column-end:12}.md\:col-end-13{grid-column-end:13}.md\:col-end-2{grid-column-end:2}.md\:col-end-3{grid-column-end:3}.md\:col-end-4{grid-column-end:4}.md\:col-end-5{grid-column-end:5}.md\:col-end-6{grid-column-end:6}.md\:col-end-7{grid-column-end:7}.md\:col-end-8{grid-column-end:8}.md\:col-end-9{grid-column-end:9}.md\:col-end-auto{grid-column-end:auto}.md\:row-span-1{grid-row:span 1/span 1}.md\:row-span-10{grid-row:span 10/span 10}.md\:row-span-11{grid-row:span 11/span 11}.md\:row-span-12{grid-row:span 12/span 12}.md\:row-span-2{grid-row:span 2/span 2}.md\:row-span-3{grid-row:span 3/span 3}.md\:row-span-4{grid-row:span 4/span 4}.md\:row-span-5{grid-row:span 5/span 5}.md\:row-span-6{grid-row:span 6/span 6}.md\:row-span-7{grid-row:span 7/span 7}.md\:row-span-8{grid-row:span 8/span 8}.md\:row-span-9{grid-row:span 9/span 9}.md\:row-span-full{grid-row:1/-1}.md\:row-start-1{grid-row-start:1}.md\:row-start-10{grid-row-start:10}.md\:row-start-11{grid-row-start:11}.md\:row-start-12{grid-row-start:12}.md\:row-start-13{grid-row-start:13}.md\:row-start-2{grid-row-start:2}.md\:row-start-3{grid-row-start:3}.md\:row-start-4{grid-row-start:4}.md\:row-start-5{grid-row-start:5}.md\:row-start-6{grid-row-start:6}.md\:row-start-7{grid-row-start:7}.md\:row-start-8{grid-row-start:8}.md\:row-start-9{grid-row-start:9}.md\:row-start-auto{grid-row-start:auto}.md\:row-end-1{grid-row-end:1}.md\:row-end-10{grid-row-end:10}.md\:row-end-11{grid-row-end:11}.md\:row-end-12{grid-row-end:12}.md\:row-end-13{grid-row-end:13}.md\:row-end-2{grid-row-end:2}.md\:row-end-3{grid-row-end:3}.md\:row-end-4{grid-row-end:4}.md\:row-end-5{grid-row-end:5}.md\:row-end-6{grid-row-end:6}.md\:row-end-7{grid-row-end:7}.md\:row-end-8{grid-row-end:8}.md\:row-end-9{grid-row-end:9}.md\:row-end-auto{grid-row-end:auto}.md\:mr-0{margin-right:0}.md\:ms-2{margin-inline-start:.5rem}.md\:mt-0{margin-top:0}.md\:h-screen{height:100vh}.md\:w-1\/6{width:16.666667%}.md\:w-5\/6{width:83.333333%}.md\:min-w-60{min-width:15rem}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:flex-row{flex-direction:row}.md\:space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.md\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.md\:space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.md\:p-6{padding:1.5rem}.md\:text-4xl{font-size:2.25rem;line-height:2.5rem}.md\:text-xl{font-size:1.25rem;line-height:1.75rem}}@media (min-width:1024px){.lg\:sticky{position:sticky}.lg\:order-2{order:2}.lg\:col-span-1{grid-column:span 1/span 1}.lg\:col-span-10{grid-column:span 10/span 10}.lg\:col-span-11{grid-column:span 11/span 11}.lg\:col-span-12{grid-column:span 12/span 12}.lg\:col-span-2{grid-column:span 2/span 2}.lg\:col-span-3{grid-column:span 3/span 3}.lg\:col-span-4{grid-column:span 4/span 4}.lg\:col-span-5{grid-column:span 5/span 5}.lg\:col-span-6{grid-column:span 6/span 6}.lg\:col-span-7{grid-column:span 7/span 7}.lg\:col-span-8{grid-column:span 8/span 8}.lg\:col-span-9{grid-column:span 9/span 9}.lg\:col-span-full{grid-column:1/-1}.lg\:col-start-1{grid-column-start:1}.lg\:col-start-10{grid-column-start:10}.lg\:col-start-11{grid-column-start:11}.lg\:col-start-12{grid-column-start:12}.lg\:col-start-13{grid-column-start:13}.lg\:col-start-2{grid-column-start:2}.lg\:col-start-3{grid-column-start:3}.lg\:col-start-4{grid-column-start:4}.lg\:col-start-5{grid-column-start:5}.lg\:col-start-6{grid-column-start:6}.lg\:col-start-7{grid-column-start:7}.lg\:col-start-8{grid-column-start:8}.lg\:col-start-9{grid-column-start:9}.lg\:col-start-auto{grid-column-start:auto}.lg\:col-end-1{grid-column-end:1}.lg\:col-end-10{grid-column-end:10}.lg\:col-end-11{grid-column-end:11}.lg\:col-end-12{grid-column-end:12}.lg\:col-end-13{grid-column-end:13}.lg\:col-end-2{grid-column-end:2}.lg\:col-end-3{grid-column-end:3}.lg\:col-end-4{grid-column-end:4}.lg\:col-end-5{grid-column-end:5}.lg\:col-end-6{grid-column-end:6}.lg\:col-end-7{grid-column-end:7}.lg\:col-end-8{grid-column-end:8}.lg\:col-end-9{grid-column-end:9}.lg\:col-end-auto{grid-column-end:auto}.lg\:row-span-1{grid-row:span 1/span 1}.lg\:row-span-10{grid-row:span 10/span 10}.lg\:row-span-11{grid-row:span 11/span 11}.lg\:row-span-12{grid-row:span 12/span 12}.lg\:row-span-2{grid-row:span 2/span 2}.lg\:row-span-3{grid-row:span 3/span 3}.lg\:row-span-4{grid-row:span 4/span 4}.lg\:row-span-5{grid-row:span 5/span 5}.lg\:row-span-6{grid-row:span 6/span 6}.lg\:row-span-7{grid-row:span 7/span 7}.lg\:row-span-8{grid-row:span 8/span 8}.lg\:row-span-9{grid-row:span 9/span 9}.lg\:row-span-full{grid-row:1/-1}.lg\:row-start-1{grid-row-start:1}.lg\:row-start-10{grid-row-start:10}.lg\:row-start-11{grid-row-start:11}.lg\:row-start-12{grid-row-start:12}.lg\:row-start-13{grid-row-start:13}.lg\:row-start-2{grid-row-start:2}.lg\:row-start-3{grid-row-start:3}.lg\:row-start-4{grid-row-start:4}.lg\:row-start-5{grid-row-start:5}.lg\:row-start-6{grid-row-start:6}.lg\:row-start-7{grid-row-start:7}.lg\:row-start-8{grid-row-start:8}.lg\:row-start-9{grid-row-start:9}.lg\:row-start-auto{grid-row-start:auto}.lg\:row-end-1{grid-row-end:1}.lg\:row-end-10{grid-row-end:10}.lg\:row-end-11{grid-row-end:11}.lg\:row-end-12{grid-row-end:12}.lg\:row-end-13{grid-row-end:13}.lg\:row-end-2{grid-row-end:2}.lg\:row-end-3{grid-row-end:3}.lg\:row-end-4{grid-row-end:4}.lg\:row-end-5{grid-row-end:5}.lg\:row-end-6{grid-row-end:6}.lg\:row-end-7{grid-row-end:7}.lg\:row-end-8{grid-row-end:8}.lg\:row-end-9{grid-row-end:9}.lg\:row-end-auto{grid-row-end:auto}.lg\:ml-64{margin-left:16rem}.lg\:flex{display:flex}.lg\:hidden{display:none}.lg\:translate-x-0{--tw-translate-x:0px;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))}.lg\:py-0{padding-bottom:0;padding-top:0}:where(.dyna,.dyna *) .lg\:dyna\:static{position:static}}@media (min-width:1280px){.xl\:col-span-1{grid-column:span 1/span 1}.xl\:col-span-10{grid-column:span 10/span 10}.xl\:col-span-11{grid-column:span 11/span 11}.xl\:col-span-12{grid-column:span 12/span 12}.xl\:col-span-2{grid-column:span 2/span 2}.xl\:col-span-3{grid-column:span 3/span 3}.xl\:col-span-4{grid-column:span 4/span 4}.xl\:col-span-5{grid-column:span 5/span 5}.xl\:col-span-6{grid-column:span 6/span 6}.xl\:col-span-7{grid-column:span 7/span 7}.xl\:col-span-8{grid-column:span 8/span 8}.xl\:col-span-9{grid-column:span 9/span 9}.xl\:col-span-full{grid-column:1/-1}.xl\:col-start-1{grid-column-start:1}.xl\:col-start-10{grid-column-start:10}.xl\:col-start-11{grid-column-start:11}.xl\:col-start-12{grid-column-start:12}.xl\:col-start-13{grid-column-start:13}.xl\:col-start-2{grid-column-start:2}.xl\:col-start-3{grid-column-start:3}.xl\:col-start-4{grid-column-start:4}.xl\:col-start-5{grid-column-start:5}.xl\:col-start-6{grid-column-start:6}.xl\:col-start-7{grid-column-start:7}.xl\:col-start-8{grid-column-start:8}.xl\:col-start-9{grid-column-start:9}.xl\:col-start-auto{grid-column-start:auto}.xl\:col-end-1{grid-column-end:1}.xl\:col-end-10{grid-column-end:10}.xl\:col-end-11{grid-column-end:11}.xl\:col-end-12{grid-column-end:12}.xl\:col-end-13{grid-column-end:13}.xl\:col-end-2{grid-column-end:2}.xl\:col-end-3{grid-column-end:3}.xl\:col-end-4{grid-column-end:4}.xl\:col-end-5{grid-column-end:5}.xl\:col-end-6{grid-column-end:6}.xl\:col-end-7{grid-column-end:7}.xl\:col-end-8{grid-column-end:8}.xl\:col-end-9{grid-column-end:9}.xl\:col-end-auto{grid-column-end:auto}.xl\:row-span-1{grid-row:span 1/span 1}.xl\:row-span-10{grid-row:span 10/span 10}.xl\:row-span-11{grid-row:span 11/span 11}.xl\:row-span-12{grid-row:span 12/span 12}.xl\:row-span-2{grid-row:span 2/span 2}.xl\:row-span-3{grid-row:span 3/span 3}.xl\:row-span-4{grid-row:span 4/span 4}.xl\:row-span-5{grid-row:span 5/span 5}.xl\:row-span-6{grid-row:span 6/span 6}.xl\:row-span-7{grid-row:span 7/span 7}.xl\:row-span-8{grid-row:span 8/span 8}.xl\:row-span-9{grid-row:span 9/span 9}.xl\:row-span-full{grid-row:1/-1}.xl\:row-start-1{grid-row-start:1}.xl\:row-start-10{grid-row-start:10}.xl\:row-start-11{grid-row-start:11}.xl\:row-start-12{grid-row-start:12}.xl\:row-start-13{grid-row-start:13}.xl\:row-start-2{grid-row-start:2}.xl\:row-start-3{grid-row-start:3}.xl\:row-start-4{grid-row-start:4}.xl\:row-start-5{grid-row-start:5}.xl\:row-start-6{grid-row-start:6}.xl\:row-start-7{grid-row-start:7}.xl\:row-start-8{grid-row-start:8}.xl\:row-start-9{grid-row-start:9}.xl\:row-start-auto{grid-row-start:auto}.xl\:row-end-1{grid-row-end:1}.xl\:row-end-10{grid-row-end:10}.xl\:row-end-11{grid-row-end:11}.xl\:row-end-12{grid-row-end:12}.xl\:row-end-13{grid-row-end:13}.xl\:row-end-2{grid-row-end:2}.xl\:row-end-3{grid-row-end:3}.xl\:row-end-4{grid-row-end:4}.xl\:row-end-5{grid-row-end:5}.xl\:row-end-6{grid-row-end:6}.xl\:row-end-7{grid-row-end:7}.xl\:row-end-8{grid-row-end:8}.xl\:row-end-9{grid-row-end:9}.xl\:row-end-auto{grid-row-end:auto}.xl\:p-0{padding:0}}@media (min-width:1536px){.\32xl\:col-span-1{grid-column:span 1/span 1}.\32xl\:col-span-10{grid-column:span 10/span 10}.\32xl\:col-span-11{grid-column:span 11/span 11}.\32xl\:col-span-12{grid-column:span 12/span 12}.\32xl\:col-span-2{grid-column:span 2/span 2}.\32xl\:col-span-3{grid-column:span 3/span 3}.\32xl\:col-span-4{grid-column:span 4/span 4}.\32xl\:col-span-5{grid-column:span 5/span 5}.\32xl\:col-span-6{grid-column:span 6/span 6}.\32xl\:col-span-7{grid-column:span 7/span 7}.\32xl\:col-span-8{grid-column:span 8/span 8}.\32xl\:col-span-9{grid-column:span 9/span 9}.\32xl\:col-span-full{grid-column:1/-1}.\32xl\:col-start-1{grid-column-start:1}.\32xl\:col-start-10{grid-column-start:10}.\32xl\:col-start-11{grid-column-start:11}.\32xl\:col-start-12{grid-column-start:12}.\32xl\:col-start-13{grid-column-start:13}.\32xl\:col-start-2{grid-column-start:2}.\32xl\:col-start-3{grid-column-start:3}.\32xl\:col-start-4{grid-column-start:4}.\32xl\:col-start-5{grid-column-start:5}.\32xl\:col-start-6{grid-column-start:6}.\32xl\:col-start-7{grid-column-start:7}.\32xl\:col-start-8{grid-column-start:8}.\32xl\:col-start-9{grid-column-start:9}.\32xl\:col-start-auto{grid-column-start:auto}.\32xl\:col-end-1{grid-column-end:1}.\32xl\:col-end-10{grid-column-end:10}.\32xl\:col-end-11{grid-column-end:11}.\32xl\:col-end-12{grid-column-end:12}.\32xl\:col-end-13{grid-column-end:13}.\32xl\:col-end-2{grid-column-end:2}.\32xl\:col-end-3{grid-column-end:3}.\32xl\:col-end-4{grid-column-end:4}.\32xl\:col-end-5{grid-column-end:5}.\32xl\:col-end-6{grid-column-end:6}.\32xl\:col-end-7{grid-column-end:7}.\32xl\:col-end-8{grid-column-end:8}.\32xl\:col-end-9{grid-column-end:9}.\32xl\:col-end-auto{grid-column-end:auto}.\32xl\:row-span-1{grid-row:span 1/span 1}.\32xl\:row-span-10{grid-row:span 10/span 10}.\32xl\:row-span-11{grid-row:span 11/span 11}.\32xl\:row-span-12{grid-row:span 12/span 12}.\32xl\:row-span-2{grid-row:span 2/span 2}.\32xl\:row-span-3{grid-row:span 3/span 3}.\32xl\:row-span-4{grid-row:span 4/span 4}.\32xl\:row-span-5{grid-row:span 5/span 5}.\32xl\:row-span-6{grid-row:span 6/span 6}.\32xl\:row-span-7{grid-row:span 7/span 7}.\32xl\:row-span-8{grid-row:span 8/span 8}.\32xl\:row-span-9{grid-row:span 9/span 9}.\32xl\:row-span-full{grid-row:1/-1}.\32xl\:row-start-1{grid-row-start:1}.\32xl\:row-start-10{grid-row-start:10}.\32xl\:row-start-11{grid-row-start:11}.\32xl\:row-start-12{grid-row-start:12}.\32xl\:row-start-13{grid-row-start:13}.\32xl\:row-start-2{grid-row-start:2}.\32xl\:row-start-3{grid-row-start:3}.\32xl\:row-start-4{grid-row-start:4}.\32xl\:row-start-5{grid-row-start:5}.\32xl\:row-start-6{grid-row-start:6}.\32xl\:row-start-7{grid-row-start:7}.\32xl\:row-start-8{grid-row-start:8}.\32xl\:row-start-9{grid-row-start:9}.\32xl\:row-start-auto{grid-row-start:auto}.\32xl\:row-end-1{grid-row-end:1}.\32xl\:row-end-10{grid-row-end:10}.\32xl\:row-end-11{grid-row-end:11}.\32xl\:row-end-12{grid-row-end:12}.\32xl\:row-end-13{grid-row-end:13}.\32xl\:row-end-2{grid-row-end:2}.\32xl\:row-end-3{grid-row-end:3}.\32xl\:row-end-4{grid-row-end:4}.\32xl\:row-end-5{grid-row-end:5}.\32xl\:row-end-6{grid-row-end:6}.\32xl\:row-end-7{grid-row-end:7}.\32xl\:row-end-8{grid-row-end:8}.\32xl\:row-end-9{grid-row-end:9}.\32xl\:row-end-auto{grid-row-end:auto}.\32xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}.rtl\:rotate-180:where([dir=rtl],[dir=rtl] *){--tw-rotate:180deg;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))}.rtl\:space-x-reverse:where([dir=rtl],[dir=rtl] *)>:not([hidden])~:not([hidden]){--tw-space-x-reverse:1}.rtl\:text-right:where([dir=rtl],[dir=rtl] *){text-align:right}.dark\:divide-gray-600:where(.dark,.dark *)>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(75 85 99/var(--tw-divide-opacity))}.dark\:divide-gray-700:where(.dark,.dark *)>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(55 65 81/var(--tw-divide-opacity))}.dark\:border:where(.dark,.dark *){border-width:1px}.dark\:border-gray-500:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(107 114 128/var(--tw-border-opacity))}.dark\:border-gray-600:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.dark\:border-gray-700:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.dark\:border-gray-800:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}.dark\:border-green-500:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(34 197 94/var(--tw-border-opacity))}.dark\:border-primary-500:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(23 184 190/var(--tw-border-opacity))}.dark\:border-primary-600:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(14 143 148/var(--tw-border-opacity))}.dark\:border-red-400:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(248 113 113/var(--tw-border-opacity))}.dark\:border-red-500:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(239 68 68/var(--tw-border-opacity))}.dark\:border-transparent:where(.dark,.dark *){border-color:transparent}.dark\:border-white:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.dark\:border-l-gray-600:where(.dark,.dark *){--tw-border-opacity:1;border-left-color:rgb(75 85 99/var(--tw-border-opacity))}.dark\:border-r-gray-800:where(.dark,.dark *){--tw-border-opacity:1;border-right-color:rgb(31 41 55/var(--tw-border-opacity))}.dark\:bg-accent-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(255 100 122/var(--tw-bg-opacity))}.dark\:bg-accent-700:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(231 61 85/var(--tw-bg-opacity))}.dark\:bg-blue-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(37 99 235/var(--tw-bg-opacity))}.dark\:bg-danger-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(220 38 38/var(--tw-bg-opacity))}.dark\:bg-danger-700:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(185 28 28/var(--tw-bg-opacity))}.dark\:bg-emerald-400:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(52 211 153/var(--tw-bg-opacity))}.dark\:bg-gray-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.dark\:bg-gray-700:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark\:bg-gray-800:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.dark\:bg-gray-900:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.dark\:bg-gray-900\/80:where(.dark,.dark *){background-color:rgba(17,24,39,.8)}.dark\:bg-info-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(2 132 199/var(--tw-bg-opacity))}.dark\:bg-info-700:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(3 105 161/var(--tw-bg-opacity))}.dark\:bg-primary-200:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(186 243 245/var(--tw-bg-opacity))}.dark\:bg-primary-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(14 143 148/var(--tw-bg-opacity))}.dark\:bg-primary-700:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(11 109 113/var(--tw-bg-opacity))}.dark\:bg-red-400:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(248 113 113/var(--tw-bg-opacity))}.dark\:bg-red-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(220 38 38/var(--tw-bg-opacity))}.dark\:bg-secondary-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(26 53 73/var(--tw-bg-opacity))}.dark\:bg-secondary-700:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(21 44 61/var(--tw-bg-opacity))}.dark\:bg-stone-300:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(214 211 209/var(--tw-bg-opacity))}.dark\:bg-success-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(22 163 74/var(--tw-bg-opacity))}.dark\:bg-success-700:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(21 128 61/var(--tw-bg-opacity))}.dark\:bg-violet-400:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(167 139 250/var(--tw-bg-opacity))}.dark\:bg-warning-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(217 119 6/var(--tw-bg-opacity))}.dark\:bg-warning-700:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(180 83 9/var(--tw-bg-opacity))}.dark\:bg-yellow-600:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(202 138 4/var(--tw-bg-opacity))}.dark\:stroke-gray-400:where(.dark,.dark *){stroke:#9ca3af}.dark\:text-accent-100:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 228 231/var(--tw-text-opacity))}.dark\:text-blue-300:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(147 197 253/var(--tw-text-opacity))}.dark\:text-danger-100:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(254 226 226/var(--tw-text-opacity))}.dark\:text-gray-100:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.dark\:text-gray-200:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.dark\:text-gray-300:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark\:text-gray-400:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.dark\:text-gray-500:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.dark\:text-gray-900:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark\:text-green-400:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(74 222 128/var(--tw-text-opacity))}.dark\:text-green-500:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(34 197 94/var(--tw-text-opacity))}.dark\:text-info-100:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(224 242 254/var(--tw-text-opacity))}.dark\:text-primary-100:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(224 250 250/var(--tw-text-opacity))}.dark\:text-primary-300:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(125 232 236/var(--tw-text-opacity))}.dark\:text-primary-500:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(23 184 190/var(--tw-text-opacity))}.dark\:text-primary-800:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(10 85 88/var(--tw-text-opacity))}.dark\:text-red-400:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}.dark\:text-red-500:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.dark\:text-secondary-100:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(230 236 241/var(--tw-text-opacity))}.dark\:text-secondary-400:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(103 140 171/var(--tw-text-opacity))}.dark\:text-success-100:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(220 252 231/var(--tw-text-opacity))}.dark\:text-warning-100:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(254 243 199/var(--tw-text-opacity))}.dark\:text-white:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark\:placeholder-gray-400:where(.dark,.dark *)::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.dark\:placeholder-gray-400:where(.dark,.dark *)::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.dark\:placeholder-green-500:where(.dark,.dark *)::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(34 197 94/var(--tw-placeholder-opacity))}.dark\:placeholder-green-500:where(.dark,.dark *)::placeholder{--tw-placeholder-opacity:1;color:rgb(34 197 94/var(--tw-placeholder-opacity))}.dark\:placeholder-red-500:where(.dark,.dark *)::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(239 68 68/var(--tw-placeholder-opacity))}.dark\:placeholder-red-500:where(.dark,.dark *)::placeholder{--tw-placeholder-opacity:1;color:rgb(239 68 68/var(--tw-placeholder-opacity))}.dark\:shadow-none:where(.dark,.dark *){--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)}.dark\:ring-offset-gray-800:where(.dark,.dark *){--tw-ring-offset-color:#1f2937}.dark\:checked\:border-current:checked:where(.dark,.dark *){border-color:currentColor}.dark\:checked\:bg-current:checked:where(.dark,.dark *){background-color:currentColor}.dark\:checked\:text-emerald-400:checked:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(52 211 153/var(--tw-text-opacity))}.dark\:hover\:border-gray-600:hover:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.dark\:hover\:bg-accent-600:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(255 100 122/var(--tw-bg-opacity))}.dark\:hover\:bg-accent-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(231 61 85/var(--tw-bg-opacity))}.dark\:hover\:bg-blue-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(29 78 216/var(--tw-bg-opacity))}.dark\:hover\:bg-danger-600:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(220 38 38/var(--tw-bg-opacity))}.dark\:hover\:bg-danger-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(185 28 28/var(--tw-bg-opacity))}.dark\:hover\:bg-gray-600:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.dark\:hover\:bg-gray-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark\:hover\:bg-info-600:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(2 132 199/var(--tw-bg-opacity))}.dark\:hover\:bg-info-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(3 105 161/var(--tw-bg-opacity))}.dark\:hover\:bg-primary-600:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(14 143 148/var(--tw-bg-opacity))}.dark\:hover\:bg-primary-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(11 109 113/var(--tw-bg-opacity))}.dark\:hover\:bg-red-500:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(239 68 68/var(--tw-bg-opacity))}.dark\:hover\:bg-red-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(185 28 28/var(--tw-bg-opacity))}.dark\:hover\:bg-red-900\/50:hover:where(.dark,.dark *){background-color:rgba(127,29,29,.5)}.dark\:hover\:bg-secondary-600:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(26 53 73/var(--tw-bg-opacity))}.dark\:hover\:bg-secondary-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(21 44 61/var(--tw-bg-opacity))}.dark\:hover\:bg-success-600:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(22 163 74/var(--tw-bg-opacity))}.dark\:hover\:bg-success-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(21 128 61/var(--tw-bg-opacity))}.dark\:hover\:bg-violet-500:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(139 92 246/var(--tw-bg-opacity))}.dark\:hover\:bg-warning-600:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(217 119 6/var(--tw-bg-opacity))}.dark\:hover\:bg-warning-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(180 83 9/var(--tw-bg-opacity))}.dark\:hover\:bg-yellow-700:hover:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(161 98 7/var(--tw-bg-opacity))}.dark\:hover\:text-blue-400:hover:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(96 165 250/var(--tw-text-opacity))}.dark\:hover\:text-gray-300:hover:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark\:hover\:text-primary-400:hover:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(64 217 222/var(--tw-text-opacity))}.dark\:hover\:text-primary-500:hover:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(23 184 190/var(--tw-text-opacity))}.dark\:hover\:text-white:hover:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark\:focus\:border-blue-500:focus:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(59 130 246/var(--tw-border-opacity))}.dark\:focus\:border-emerald-400:focus:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(52 211 153/var(--tw-border-opacity))}.dark\:focus\:border-primary-500:focus:where(.dark,.dark *){--tw-border-opacity:1;border-color:rgb(23 184 190/var(--tw-border-opacity))}.focus\:dark\:border-emerald-400:where(.dark,.dark *):focus{--tw-border-opacity:1;border-color:rgb(52 211 153/var(--tw-border-opacity))}.dark\:focus\:bg-gray-700:focus:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark\:focus\:bg-gray-800:focus:where(.dark,.dark *){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.focus\:dark\:bg-gray-700:where(.dark,.dark *):focus{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark\:focus\:text-white:focus:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark\:focus\:ring-accent-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(255 100 122/var(--tw-ring-opacity))}.dark\:focus\:ring-accent-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(209 45 68/var(--tw-ring-opacity))}.dark\:focus\:ring-blue-500:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity))}.dark\:focus\:ring-blue-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(37 99 235/var(--tw-ring-opacity))}.dark\:focus\:ring-blue-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(30 64 175/var(--tw-ring-opacity))}.dark\:focus\:ring-danger-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(220 38 38/var(--tw-ring-opacity))}.dark\:focus\:ring-danger-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(153 27 27/var(--tw-ring-opacity))}.dark\:focus\:ring-emerald-400:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(52 211 153/var(--tw-ring-opacity))}.dark\:focus\:ring-gray-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(75 85 99/var(--tw-ring-opacity))}.dark\:focus\:ring-gray-700:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(55 65 81/var(--tw-ring-opacity))}.dark\:focus\:ring-info-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(2 132 199/var(--tw-ring-opacity))}.dark\:focus\:ring-info-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(7 89 133/var(--tw-ring-opacity))}.dark\:focus\:ring-primary-500:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(23 184 190/var(--tw-ring-opacity))}.dark\:focus\:ring-primary-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(14 143 148/var(--tw-ring-opacity))}.dark\:focus\:ring-primary-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(10 85 88/var(--tw-ring-opacity))}.dark\:focus\:ring-red-400:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(248 113 113/var(--tw-ring-opacity))}.dark\:focus\:ring-red-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(220 38 38/var(--tw-ring-opacity))}.dark\:focus\:ring-red-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(153 27 27/var(--tw-ring-opacity))}.dark\:focus\:ring-secondary-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(26 53 73/var(--tw-ring-opacity))}.dark\:focus\:ring-secondary-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(16 34 49/var(--tw-ring-opacity))}.dark\:focus\:ring-success-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(22 163 74/var(--tw-ring-opacity))}.dark\:focus\:ring-success-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(22 101 52/var(--tw-ring-opacity))}.dark\:focus\:ring-violet-400:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(167 139 250/var(--tw-ring-opacity))}.dark\:focus\:ring-warning-600:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(217 119 6/var(--tw-ring-opacity))}.dark\:focus\:ring-warning-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(146 64 14/var(--tw-ring-opacity))}.dark\:focus\:ring-yellow-800:focus:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(133 77 14/var(--tw-ring-opacity))}.dark\:focus\:ring-offset-current:focus:where(.dark,.dark *){--tw-ring-offset-color:currentColor}.dark\:focus\:ring-offset-gray-900:focus:where(.dark,.dark *){--tw-ring-offset-color:#111827}.dark\:focus-visible\:ring-2:focus-visible:where(.dark,.dark *){--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(2px + 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)}.dark\:focus-visible\:ring-blue-300:focus-visible:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(147 197 253/var(--tw-ring-opacity))}.dark\:focus-visible\:ring-primary-300:focus-visible:where(.dark,.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(125 232 236/var(--tw-ring-opacity))}.group:hover .dark\:group-hover\:text-gray-400:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.group:hover .dark\:group-hover\:text-white:where(.dark,.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}
|