diff --git a/app/Http/Controllers/Cpanel/AnalyticsController.php b/app/Http/Controllers/Cpanel/AnalyticsController.php new file mode 100644 index 00000000..8e7c6bc8 --- /dev/null +++ b/app/Http/Controllers/Cpanel/AnalyticsController.php @@ -0,0 +1,14 @@ +get(); }); - $latestDiscussions = Cache::remember('latestDiscussions', now()->addDay(), function () { + $latestDiscussions = Cache::remember('latestDiscussions', now()->addHour(), function () { return Discussion::query() - ->scopes('popular') + ->recent() ->orderByViews() ->limit(3) ->get(); diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php index aaca3676..48e9e3f2 100644 --- a/app/Http/Kernel.php +++ b/app/Http/Kernel.php @@ -22,6 +22,7 @@ class Kernel extends HttpKernel \Illuminate\Foundation\Http\Middleware\ValidatePostSize::class, \App\Http\Middleware\TrimStrings::class, \Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class, + \AndreasElia\Analytics\Http\Middleware\Analytics::class, ]; /** diff --git a/app/Models/Article.php b/app/Models/Article.php index cd570aa5..2e99ef8e 100644 --- a/app/Models/Article.php +++ b/app/Models/Article.php @@ -396,7 +396,7 @@ public function scopeNotDeclined(Builder $query): Builder public function scopeRecent(Builder $query): Builder { return $query->orderByDesc('published_at') - ->orderByDesc('published_at'); + ->orderByDesc('created_at'); } /** diff --git a/app/Models/Discussion.php b/app/Models/Discussion.php index 00f4f8df..ec92562d 100644 --- a/app/Models/Discussion.php +++ b/app/Models/Discussion.php @@ -51,7 +51,7 @@ class Discussion extends Model implements ReactableInterface, ReplyInterface, Su /** * The attributes that should be cast to native types. * - * @var array + * @var string[] */ protected $casts = [ 'locked' => 'boolean', diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php index 87db4af5..0d12152a 100644 --- a/app/Providers/AppServiceProvider.php +++ b/app/Providers/AppServiceProvider.php @@ -37,8 +37,8 @@ public function register(): void public function boot(): void { date_default_timezone_set('Africa/Douala'); - setlocale(LC_TIME, 'French'); - setlocale(LC_ALL, 'fr_FR.UTF-8'); + setlocale(LC_TIME, 'fr_FR', 'fr', 'FR', 'French', 'fr_FR.UTF-8'); + setlocale(LC_ALL, 'fr_FR', 'fr', 'FR', 'French', 'fr_FR.UTF-8'); Carbon::setLocale('fr'); $this->bootMacros(); diff --git a/app/Widgets/MostActiveUsersPerWeek.php b/app/Widgets/MostActiveUsersPerWeek.php new file mode 100644 index 00000000..019d7270 --- /dev/null +++ b/app/Widgets/MostActiveUsersPerWeek.php @@ -0,0 +1,58 @@ +withCount('activities') + ->verifiedUsers() + ->whereHas('activities', function (Builder $query) { + return $query->whereBetween('created_at', [ + now()->startOfWeek(), + now()->endOfWeek() + ]); + }) + ->orderByDesc('activities_count') + ->limit(5) + ->get(); + + return view('widgets.most_active_users_per_week', [ + 'config' => $this->config, + 'users' => $users, + ]); + } +} diff --git a/app/Widgets/MostLikedPostsPerWeek.php b/app/Widgets/MostLikedPostsPerWeek.php new file mode 100644 index 00000000..2a46f579 --- /dev/null +++ b/app/Widgets/MostLikedPostsPerWeek.php @@ -0,0 +1,49 @@ +popular() + ->limit(5) + ->get(); + + return view('widgets.most_liked_posts_per_week', [ + 'config' => $this->config, + 'articles' => $articles, + ]); + } +} diff --git a/app/Widgets/MostViewedPostsPerWeek.php b/app/Widgets/MostViewedPostsPerWeek.php new file mode 100644 index 00000000..5e068c02 --- /dev/null +++ b/app/Widgets/MostViewedPostsPerWeek.php @@ -0,0 +1,52 @@ +startOfWeek(), now()->endOfWeek())) + ->published() + ->orderByDesc('views_count') + ->orderByDesc('published_at') + ->limit(5) + ->get(); + + return view('widgets.most_viewed_posts_per_week', [ + 'config' => $this->config, + 'articles' => $articles, + ]); + } +} diff --git a/app/Widgets/RecentNumbers.php b/app/Widgets/RecentNumbers.php index d915f2a5..5829a647 100644 --- a/app/Widgets/RecentNumbers.php +++ b/app/Widgets/RecentNumbers.php @@ -56,8 +56,11 @@ public function run(): View $differenceArticle = $currentMonthArticles - $lastMonthArticles; $totalViews = views(Article::class)->count(); - $lastMonthViews = views(Article::class)->period(Period::pastMonths(1))->count(); - $currentViews = views(Article::class)->period(Period::create(now()->startOfMonth()))->count(); + $lastMonthViews = views(Article::class) + ->period(Period::create(now()->subMonth()->startOfMonth(), now()->subMonth()->endOfMonth())) + ->remember(now()->addMonth()) + ->count(); + $currentViews = views(Article::class)->period(Period::upto(now()->startOfMonth()))->count(); $differenceViews = $currentViews - $lastMonthViews; return view('widgets.recent_numbers', [ diff --git a/app/Widgets/RecentPostsPerWeek.php b/app/Widgets/RecentPostsPerWeek.php new file mode 100644 index 00000000..45706607 --- /dev/null +++ b/app/Widgets/RecentPostsPerWeek.php @@ -0,0 +1,34 @@ +whereBetween('created_at', [now()->startOfWeek(), now()->endOfWeek()]) + ->limit(5) + ->get(); + + return view('widgets.recent_posts_per_week', [ + 'config' => $this->config, + 'articles' => $articles, + ]); + } +} diff --git a/composer.json b/composer.json index f42b8aba..1985f6f6 100644 --- a/composer.json +++ b/composer.json @@ -8,6 +8,7 @@ "php": "^8.0", "ext-fileinfo": "*", "ext-json": "*", + "andreaselia/analytics": "^1.5", "archtechx/laravel-seo": "^0.4.0", "arrilot/laravel-widgets": "^3.13", "blade-ui-kit/blade-heroicons": "^1.3", diff --git a/composer.lock b/composer.lock index 3da5297e..aea2e6e8 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "7fbd2eaca58c0f49db1438262b3ed922", + "content-hash": "e4393b792f0e20d38c10662bed13ec6b", "packages": [ { "name": "abraham/twitteroauth", @@ -68,6 +68,80 @@ }, "time": "2022-04-02T16:47:22+00:00" }, + { + "name": "andreaselia/analytics", + "version": "v1.5.1", + "source": { + "type": "git", + "url": "https://github.com/andreaselia/laravel-analytics.git", + "reference": "0c1d0faa46b28a154609b299242c5ee8acf6f0b8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/andreaselia/laravel-analytics/zipball/0c1d0faa46b28a154609b299242c5ee8acf6f0b8", + "reference": "0c1d0faa46b28a154609b299242c5ee8acf6f0b8", + "shasum": "" + }, + "require": { + "ext-intl": "*", + "illuminate/collections": "^8.0|^9.0", + "illuminate/database": "^8.0|^9.0", + "illuminate/http": "^8.0|^9.0", + "illuminate/support": "^8.0|^9.0", + "illuminate/view": "^8.0|^9.0", + "jenssegers/agent": "^2.6", + "php": "^7.4|^8.0" + }, + "require-dev": { + "orchestra/testbench": "6.0", + "phpunit/phpunit": "^9.5" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "AndreasElia\\Analytics\\AnalyticsServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "AndreasElia\\Analytics\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Andreas Elia", + "email": "contact@andreaselia.co.uk" + }, + { + "name": "Tom Irons", + "email": "tom@irons.pw" + } + ], + "description": "Analytics for the Laravel framework.", + "keywords": [ + "analytics", + "laravel", + "middleware", + "package" + ], + "support": { + "issues": "https://github.com/andreaselia/laravel-analytics/issues", + "source": "https://github.com/andreaselia/laravel-analytics/tree/v1.5.1" + }, + "funding": [ + { + "url": "https://github.com/andreaselia", + "type": "github" + } + ], + "time": "2022-07-28T11:01:09+00:00" + }, { "name": "archtechx/laravel-seo", "version": "v0.4.0", diff --git a/config/analytics.php b/config/analytics.php new file mode 100644 index 00000000..45d59a04 --- /dev/null +++ b/config/analytics.php @@ -0,0 +1,34 @@ + 'analytics', + + 'middleware' => [ + 'web', + 'auth', + 'role:moderator|admin', + ], + + /** + * Exclude + * + * The routes excluded from page view tracking. + */ + + 'exclude' => [ + '/cpanel/*', + '/livewire/message/*', + ], + + 'session' => [ + 'provider' => \AndreasElia\Analytics\RequestSessionProvider::class, + ], + +]; diff --git a/public/css/app.css b/public/css/app.css index df648152..07deab80 100755 --- a/public/css/app.css +++ b/public/css/app.css @@ -1,11 +1,11 @@ .hljs{background:#282c34;color:#abb2bf;display:block;overflow-x:auto;padding:.5em}.hljs-comment,.hljs-quote{color:#5c6370;font-style:italic}.hljs-doctag,.hljs-formula,.hljs-keyword{color:#c678dd}.hljs-deletion,.hljs-name,.hljs-section,.hljs-selector-tag,.hljs-subst{color:#e06c75}.hljs-literal{color:#56b6c2}.hljs-addition,.hljs-attribute,.hljs-meta-string,.hljs-regexp,.hljs-string{color:#98c379}.hljs-built_in,.hljs-class .hljs-title{color:#e6c07b}.hljs-attr,.hljs-number,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-pseudo,.hljs-template-variable,.hljs-type,.hljs-variable{color:#d19a66}.hljs-bullet,.hljs-link,.hljs-meta,.hljs-selector-id,.hljs-symbol,.hljs-title{color:#61aeee}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}.hljs-link{text-decoration:underline} .choices{font-size:16px;margin-bottom:24px;overflow:hidden;position:relative}.choices:focus{outline:none}.choices:last-child{margin-bottom:0}.choices.is-open{overflow:visible;overflow:initial}.choices.is-disabled .choices__inner,.choices.is-disabled .choices__input{background-color:#eaeaea;cursor:not-allowed;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.choices.is-disabled .choices__item{cursor:not-allowed}.choices [hidden]{display:none!important}.choices[data-type*=select-one]{cursor:pointer}.choices[data-type*=select-one] .choices__inner{padding-bottom:7.5px}.choices[data-type*=select-one] .choices__input{background-color:#fff;border-bottom:1px solid #ddd;display:block;margin:0;padding:10px;width:100%}.choices[data-type*=select-one] .choices__button{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJtMi41OTIuMDQ0IDE4LjM2NCAxOC4zNjQtMi41NDggMi41NDhMLjA0NCAyLjU5MnoiLz48cGF0aCBkPSJNMCAxOC4zNjQgMTguMzY0IDBsMi41NDggMi41NDhMMi41NDggMjAuOTEyeiIvPjwvZz48L3N2Zz4=");background-size:8px;border-radius:10em;height:20px;margin-right:25px;margin-top:-10px;opacity:.25;padding:0;position:absolute;right:0;top:50%;width:20px}.choices[data-type*=select-one] .choices__button:focus,.choices[data-type*=select-one] .choices__button:hover{opacity:1}.choices[data-type*=select-one] .choices__button:focus{box-shadow:0 0 0 2px #00bcd4}.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button{display:none}.choices[data-type*=select-one]:after{border:5px solid transparent;border-top-color:#333;content:"";height:0;margin-top:-2.5px;pointer-events:none;position:absolute;right:11.5px;top:50%;width:0}.choices[data-type*=select-one].is-open:after{border-color:transparent transparent #333;margin-top:-7.5px}.choices[data-type*=select-one][dir=rtl]:after{left:11.5px;right:auto}.choices[data-type*=select-one][dir=rtl] .choices__button{left:0;margin-left:25px;margin-right:0;right:auto}.choices[data-type*=select-multiple] .choices__inner,.choices[data-type*=text] .choices__inner{cursor:text}.choices[data-type*=select-multiple] .choices__button,.choices[data-type*=text] .choices__button{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJtMi41OTIuMDQ0IDE4LjM2NCAxOC4zNjQtMi41NDggMi41NDhMLjA0NCAyLjU5MnoiLz48cGF0aCBkPSJNMCAxOC4zNjQgMTguMzY0IDBsMi41NDggMi41NDhMMi41NDggMjAuOTEyeiIvPjwvZz48L3N2Zz4=");background-size:8px;border-left:1px solid #008fa1;border-radius:0;display:inline-block;line-height:1;margin:0 -4px 0 8px;opacity:.75;padding-left:16px;position:relative;width:8px}.choices[data-type*=select-multiple] .choices__button:focus,.choices[data-type*=select-multiple] .choices__button:hover,.choices[data-type*=text] .choices__button:focus,.choices[data-type*=text] .choices__button:hover{opacity:1}.choices__inner{background-color:#f9f9f9;border:1px solid #ddd;border-radius:2.5px;display:inline-block;font-size:14px;min-height:44px;overflow:hidden;padding:7.5px 7.5px 3.75px;vertical-align:top;width:100%}.is-focused .choices__inner,.is-open .choices__inner{border-color:#b7b7b7}.is-open .choices__inner{border-radius:2.5px 2.5px 0 0}.is-flipped.is-open .choices__inner{border-radius:0 0 2.5px 2.5px}.choices__list{list-style:none;margin:0;padding-left:0}.choices__list--single{display:inline-block;padding:4px 16px 4px 4px;width:100%}[dir=rtl] .choices__list--single{padding-left:16px;padding-right:4px}.choices__list--single .choices__item{width:100%}.choices__list--multiple{display:inline}.choices__list--multiple .choices__item{background-color:#00bcd4;border:1px solid #00a5bb;border-radius:20px;box-sizing:border-box;color:#fff;display:inline-block;font-size:12px;font-weight:500;margin-bottom:3.75px;margin-right:3.75px;padding:4px 10px;vertical-align:middle;word-break:break-all}.choices__list--multiple .choices__item[data-deletable]{padding-right:5px}[dir=rtl] .choices__list--multiple .choices__item{margin-left:3.75px;margin-right:0}.choices__list--multiple .choices__item.is-highlighted{background-color:#00a5bb;border:1px solid #008fa1}.is-disabled .choices__list--multiple .choices__item{background-color:#aaa;border:1px solid #919191}.choices__list--dropdown{background-color:#fff;border:1px solid #ddd;border-bottom-left-radius:2.5px;border-bottom-right-radius:2.5px;margin-top:-1px;overflow:hidden;position:absolute;top:100%;visibility:hidden;width:100%;will-change:visibility;word-break:break-all;z-index:1}.choices__list--dropdown.is-active{visibility:visible}.is-open .choices__list--dropdown{border-color:#b7b7b7}.is-flipped .choices__list--dropdown{border-radius:.25rem .25rem 0 0;bottom:100%;margin-bottom:-1px;margin-top:0;top:auto}.choices__list--dropdown .choices__list{-webkit-overflow-scrolling:touch;max-height:300px;overflow:auto;position:relative;will-change:scroll-position}.choices__list--dropdown .choices__item{font-size:14px;padding:10px;position:relative}[dir=rtl] .choices__list--dropdown .choices__item{text-align:right}@media (min-width:640px){.choices__list--dropdown .choices__item--selectable{padding-right:100px}.choices__list--dropdown .choices__item--selectable:after{content:attr(data-select-text);font-size:12px;opacity:0;position:absolute;right:10px;top:50%;transform:translateY(-50%)}[dir=rtl] .choices__list--dropdown .choices__item--selectable{padding-left:100px;padding-right:10px;text-align:right}[dir=rtl] .choices__list--dropdown .choices__item--selectable:after{left:10px;right:auto}}.choices__list--dropdown .choices__item--selectable.is-highlighted{background-color:#f2f2f2}.choices__list--dropdown .choices__item--selectable.is-highlighted:after{opacity:.5}.choices__item{cursor:default}.choices__item--selectable{cursor:pointer}.choices__item--disabled{cursor:not-allowed;opacity:.5;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.choices__heading{border-bottom:1px solid #f7f7f7;color:gray;font-size:12px;font-weight:600;padding:10px}.choices__button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;background-position:50%;background-repeat:no-repeat;border:0;cursor:pointer;text-indent:-9999px}.choices__button:focus{outline:none}.choices__input{background-color:#f9f9f9;border:0;border-radius:0;display:inline-block;font-size:14px;margin-bottom:5px;max-width:100%;padding:4px 0 4px 2px;vertical-align:baseline}.choices__input:focus{outline:0}[dir=rtl] .choices__input{padding-left:0;padding-right:2px}.choices__placeholder{opacity:.5} .iti{display:inline-block;position:relative}.iti *{box-sizing:border-box;-moz-box-sizing:border-box}.iti__hide{display:none}.iti__v-hide{visibility:hidden}.iti input,.iti input[type=tel],.iti input[type=text]{margin-bottom:0!important;margin-right:0;margin-top:0!important;padding-right:36px;position:relative;z-index:0}.iti__flag-container{bottom:0;padding:1px;position:absolute;right:0;top:0}.iti__selected-flag{align-items:center;display:flex;height:100%;padding:0 6px 0 8px;position:relative;z-index:1}.iti__arrow{border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #555;height:0;margin-left:6px;width:0}.iti__arrow--up{border-bottom:4px solid #555;border-top:none}.iti__country-list{-webkit-overflow-scrolling:touch;background-color:#fff;border:1px solid #ccc;box-shadow:1px 1px 4px rgba(0,0,0,.2);list-style:none;margin:0 0 0 -1px;max-height:200px;overflow-y:scroll;padding:0;position:absolute;text-align:left;white-space:nowrap;z-index:2}.iti__country-list--dropup{bottom:100%;margin-bottom:-1px}@media (max-width:500px){.iti__country-list{white-space:normal}}.iti__flag-box{display:inline-block;width:20px}.iti__divider{border-bottom:1px solid #ccc;margin-bottom:5px;padding-bottom:5px}.iti__country{outline:none;padding:5px 10px}.iti__dial-code{color:#999}.iti__country.iti__highlight{background-color:rgba(0,0,0,.05)}.iti__country-name,.iti__dial-code,.iti__flag-box{vertical-align:middle}.iti__country-name,.iti__flag-box{margin-right:6px}.iti--allow-dropdown input,.iti--allow-dropdown input[type=tel],.iti--allow-dropdown input[type=text],.iti--separate-dial-code input,.iti--separate-dial-code input[type=tel],.iti--separate-dial-code input[type=text]{margin-left:0;padding-left:52px;padding-right:6px}.iti--allow-dropdown .iti__flag-container,.iti--separate-dial-code .iti__flag-container{left:0;right:auto}.iti--allow-dropdown .iti__flag-container:hover{cursor:pointer}.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag{background-color:rgba(0,0,0,.05)}.iti--allow-dropdown input[disabled]+.iti__flag-container:hover,.iti--allow-dropdown input[readonly]+.iti__flag-container:hover{cursor:default}.iti--allow-dropdown input[disabled]+.iti__flag-container:hover .iti__selected-flag,.iti--allow-dropdown input[readonly]+.iti__flag-container:hover .iti__selected-flag{background-color:transparent}.iti--separate-dial-code .iti__selected-flag{background-color:rgba(0,0,0,.05)}.iti--separate-dial-code .iti__selected-dial-code{margin-left:6px}.iti--container{left:-1000px;padding:1px;position:absolute;top:-1000px;z-index:1060}.iti--container:hover{cursor:pointer}.iti-mobile .iti--container{bottom:30px;left:30px;position:fixed;right:30px;top:30px}.iti-mobile .iti__country-list{max-height:100%;width:100%}.iti-mobile .iti__country{line-height:1.5em;padding:10px}.iti__flag{width:20px}.iti__flag.iti__be{width:18px}.iti__flag.iti__ch{width:15px}.iti__flag.iti__mc{width:19px}.iti__flag.iti__ne{width:18px}.iti__flag.iti__np{width:13px}.iti__flag.iti__va{width:15px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.iti__flag{background-size:5652px 15px}}.iti__flag.iti__ac{background-position:0 0;height:10px}.iti__flag.iti__ad{background-position:-22px 0;height:14px}.iti__flag.iti__ae{background-position:-44px 0;height:10px}.iti__flag.iti__af{background-position:-66px 0;height:14px}.iti__flag.iti__ag{background-position:-88px 0;height:14px}.iti__flag.iti__ai{background-position:-110px 0;height:10px}.iti__flag.iti__al{background-position:-132px 0;height:15px}.iti__flag.iti__am{background-position:-154px 0;height:10px}.iti__flag.iti__ao{background-position:-176px 0;height:14px}.iti__flag.iti__aq{background-position:-198px 0;height:14px}.iti__flag.iti__ar{background-position:-220px 0;height:13px}.iti__flag.iti__as{background-position:-242px 0;height:10px}.iti__flag.iti__at{background-position:-264px 0;height:14px}.iti__flag.iti__au{background-position:-286px 0;height:10px}.iti__flag.iti__aw{background-position:-308px 0;height:14px}.iti__flag.iti__ax{background-position:-330px 0;height:13px}.iti__flag.iti__az{background-position:-352px 0;height:10px}.iti__flag.iti__ba{background-position:-374px 0;height:10px}.iti__flag.iti__bb{background-position:-396px 0;height:14px}.iti__flag.iti__bd{background-position:-418px 0;height:12px}.iti__flag.iti__be{background-position:-440px 0;height:15px}.iti__flag.iti__bf{background-position:-460px 0;height:14px}.iti__flag.iti__bg{background-position:-482px 0;height:12px}.iti__flag.iti__bh{background-position:-504px 0;height:12px}.iti__flag.iti__bi{background-position:-526px 0;height:12px}.iti__flag.iti__bj{background-position:-548px 0;height:14px}.iti__flag.iti__bl{background-position:-570px 0;height:14px}.iti__flag.iti__bm{background-position:-592px 0;height:10px}.iti__flag.iti__bn{background-position:-614px 0;height:10px}.iti__flag.iti__bo{background-position:-636px 0;height:14px}.iti__flag.iti__bq{background-position:-658px 0;height:14px}.iti__flag.iti__br{background-position:-680px 0;height:14px}.iti__flag.iti__bs{background-position:-702px 0;height:10px}.iti__flag.iti__bt{background-position:-724px 0;height:14px}.iti__flag.iti__bv{background-position:-746px 0;height:15px}.iti__flag.iti__bw{background-position:-768px 0;height:14px}.iti__flag.iti__by{background-position:-790px 0;height:10px}.iti__flag.iti__bz{background-position:-812px 0;height:14px}.iti__flag.iti__ca{background-position:-834px 0;height:10px}.iti__flag.iti__cc{background-position:-856px 0;height:10px}.iti__flag.iti__cd{background-position:-878px 0;height:15px}.iti__flag.iti__cf{background-position:-900px 0;height:14px}.iti__flag.iti__cg{background-position:-922px 0;height:14px}.iti__flag.iti__ch{background-position:-944px 0;height:15px}.iti__flag.iti__ci{background-position:-961px 0;height:14px}.iti__flag.iti__ck{background-position:-983px 0;height:10px}.iti__flag.iti__cl{background-position:-1005px 0;height:14px}.iti__flag.iti__cm{background-position:-1027px 0;height:14px}.iti__flag.iti__cn{background-position:-1049px 0;height:14px}.iti__flag.iti__co{background-position:-1071px 0;height:14px}.iti__flag.iti__cp{background-position:-1093px 0;height:14px}.iti__flag.iti__cr{background-position:-1115px 0;height:12px}.iti__flag.iti__cu{background-position:-1137px 0;height:10px}.iti__flag.iti__cv{background-position:-1159px 0;height:12px}.iti__flag.iti__cw{background-position:-1181px 0;height:14px}.iti__flag.iti__cx{background-position:-1203px 0;height:10px}.iti__flag.iti__cy{background-position:-1225px 0;height:14px}.iti__flag.iti__cz{background-position:-1247px 0;height:14px}.iti__flag.iti__de{background-position:-1269px 0;height:12px}.iti__flag.iti__dg{background-position:-1291px 0;height:10px}.iti__flag.iti__dj{background-position:-1313px 0;height:14px}.iti__flag.iti__dk{background-position:-1335px 0;height:15px}.iti__flag.iti__dm{background-position:-1357px 0;height:10px}.iti__flag.iti__do{background-position:-1379px 0;height:14px}.iti__flag.iti__dz{background-position:-1401px 0;height:14px}.iti__flag.iti__ea{background-position:-1423px 0;height:14px}.iti__flag.iti__ec{background-position:-1445px 0;height:14px}.iti__flag.iti__ee{background-position:-1467px 0;height:13px}.iti__flag.iti__eg{background-position:-1489px 0;height:14px}.iti__flag.iti__eh{background-position:-1511px 0;height:10px}.iti__flag.iti__er{background-position:-1533px 0;height:10px}.iti__flag.iti__es{background-position:-1555px 0;height:14px}.iti__flag.iti__et{background-position:-1577px 0;height:10px}.iti__flag.iti__eu{background-position:-1599px 0;height:14px}.iti__flag.iti__fi{background-position:-1621px 0;height:12px}.iti__flag.iti__fj{background-position:-1643px 0;height:10px}.iti__flag.iti__fk{background-position:-1665px 0;height:10px}.iti__flag.iti__fm{background-position:-1687px 0;height:11px}.iti__flag.iti__fo{background-position:-1709px 0;height:15px}.iti__flag.iti__fr{background-position:-1731px 0;height:14px}.iti__flag.iti__ga{background-position:-1753px 0;height:15px}.iti__flag.iti__gb{background-position:-1775px 0;height:10px}.iti__flag.iti__gd{background-position:-1797px 0;height:12px}.iti__flag.iti__ge{background-position:-1819px 0;height:14px}.iti__flag.iti__gf{background-position:-1841px 0;height:14px}.iti__flag.iti__gg{background-position:-1863px 0;height:14px}.iti__flag.iti__gh{background-position:-1885px 0;height:14px}.iti__flag.iti__gi{background-position:-1907px 0;height:10px}.iti__flag.iti__gl{background-position:-1929px 0;height:14px}.iti__flag.iti__gm{background-position:-1951px 0;height:14px}.iti__flag.iti__gn{background-position:-1973px 0;height:14px}.iti__flag.iti__gp{background-position:-1995px 0;height:14px}.iti__flag.iti__gq{background-position:-2017px 0;height:14px}.iti__flag.iti__gr{background-position:-2039px 0;height:14px}.iti__flag.iti__gs{background-position:-2061px 0;height:10px}.iti__flag.iti__gt{background-position:-2083px 0;height:13px}.iti__flag.iti__gu{background-position:-2105px 0;height:11px}.iti__flag.iti__gw{background-position:-2127px 0;height:10px}.iti__flag.iti__gy{background-position:-2149px 0;height:12px}.iti__flag.iti__hk{background-position:-2171px 0;height:14px}.iti__flag.iti__hm{background-position:-2193px 0;height:10px}.iti__flag.iti__hn{background-position:-2215px 0;height:10px}.iti__flag.iti__hr{background-position:-2237px 0;height:10px}.iti__flag.iti__ht{background-position:-2259px 0;height:12px}.iti__flag.iti__hu{background-position:-2281px 0;height:10px}.iti__flag.iti__ic{background-position:-2303px 0;height:14px}.iti__flag.iti__id{background-position:-2325px 0;height:14px}.iti__flag.iti__ie{background-position:-2347px 0;height:10px}.iti__flag.iti__il{background-position:-2369px 0;height:15px}.iti__flag.iti__im{background-position:-2391px 0;height:10px}.iti__flag.iti__in{background-position:-2413px 0;height:14px}.iti__flag.iti__io{background-position:-2435px 0;height:10px}.iti__flag.iti__iq{background-position:-2457px 0;height:14px}.iti__flag.iti__ir{background-position:-2479px 0;height:12px}.iti__flag.iti__is{background-position:-2501px 0;height:15px}.iti__flag.iti__it{background-position:-2523px 0;height:14px}.iti__flag.iti__je{background-position:-2545px 0;height:12px}.iti__flag.iti__jm{background-position:-2567px 0;height:10px}.iti__flag.iti__jo{background-position:-2589px 0;height:10px}.iti__flag.iti__jp{background-position:-2611px 0;height:14px}.iti__flag.iti__ke{background-position:-2633px 0;height:14px}.iti__flag.iti__kg{background-position:-2655px 0;height:12px}.iti__flag.iti__kh{background-position:-2677px 0;height:13px}.iti__flag.iti__ki{background-position:-2699px 0;height:10px}.iti__flag.iti__km{background-position:-2721px 0;height:12px}.iti__flag.iti__kn{background-position:-2743px 0;height:14px}.iti__flag.iti__kp{background-position:-2765px 0;height:10px}.iti__flag.iti__kr{background-position:-2787px 0;height:14px}.iti__flag.iti__kw{background-position:-2809px 0;height:10px}.iti__flag.iti__ky{background-position:-2831px 0;height:10px}.iti__flag.iti__kz{background-position:-2853px 0;height:10px}.iti__flag.iti__la{background-position:-2875px 0;height:14px}.iti__flag.iti__lb{background-position:-2897px 0;height:14px}.iti__flag.iti__lc{background-position:-2919px 0;height:10px}.iti__flag.iti__li{background-position:-2941px 0;height:12px}.iti__flag.iti__lk{background-position:-2963px 0;height:10px}.iti__flag.iti__lr{background-position:-2985px 0;height:11px}.iti__flag.iti__ls{background-position:-3007px 0;height:14px}.iti__flag.iti__lt{background-position:-3029px 0;height:12px}.iti__flag.iti__lu{background-position:-3051px 0;height:12px}.iti__flag.iti__lv{background-position:-3073px 0;height:10px}.iti__flag.iti__ly{background-position:-3095px 0;height:10px}.iti__flag.iti__ma{background-position:-3117px 0;height:14px}.iti__flag.iti__mc{background-position:-3139px 0;height:15px}.iti__flag.iti__md{background-position:-3160px 0;height:10px}.iti__flag.iti__me{background-position:-3182px 0;height:10px}.iti__flag.iti__mf{background-position:-3204px 0;height:14px}.iti__flag.iti__mg{background-position:-3226px 0;height:14px}.iti__flag.iti__mh{background-position:-3248px 0;height:11px}.iti__flag.iti__mk{background-position:-3270px 0;height:10px}.iti__flag.iti__ml{background-position:-3292px 0;height:14px}.iti__flag.iti__mm{background-position:-3314px 0;height:14px}.iti__flag.iti__mn{background-position:-3336px 0;height:10px}.iti__flag.iti__mo{background-position:-3358px 0;height:14px}.iti__flag.iti__mp{background-position:-3380px 0;height:10px}.iti__flag.iti__mq{background-position:-3402px 0;height:14px}.iti__flag.iti__mr{background-position:-3424px 0;height:14px}.iti__flag.iti__ms{background-position:-3446px 0;height:10px}.iti__flag.iti__mt{background-position:-3468px 0;height:14px}.iti__flag.iti__mu{background-position:-3490px 0;height:14px}.iti__flag.iti__mv{background-position:-3512px 0;height:14px}.iti__flag.iti__mw{background-position:-3534px 0;height:14px}.iti__flag.iti__mx{background-position:-3556px 0;height:12px}.iti__flag.iti__my{background-position:-3578px 0;height:10px}.iti__flag.iti__mz{background-position:-3600px 0;height:14px}.iti__flag.iti__na{background-position:-3622px 0;height:14px}.iti__flag.iti__nc{background-position:-3644px 0;height:10px}.iti__flag.iti__ne{background-position:-3666px 0;height:15px}.iti__flag.iti__nf{background-position:-3686px 0;height:10px}.iti__flag.iti__ng{background-position:-3708px 0;height:10px}.iti__flag.iti__ni{background-position:-3730px 0;height:12px}.iti__flag.iti__nl{background-position:-3752px 0;height:14px}.iti__flag.iti__no{background-position:-3774px 0;height:15px}.iti__flag.iti__np{background-position:-3796px 0;height:15px}.iti__flag.iti__nr{background-position:-3811px 0;height:10px}.iti__flag.iti__nu{background-position:-3833px 0;height:10px}.iti__flag.iti__nz{background-position:-3855px 0;height:10px}.iti__flag.iti__om{background-position:-3877px 0;height:10px}.iti__flag.iti__pa{background-position:-3899px 0;height:14px}.iti__flag.iti__pe{background-position:-3921px 0;height:14px}.iti__flag.iti__pf{background-position:-3943px 0;height:14px}.iti__flag.iti__pg{background-position:-3965px 0;height:15px}.iti__flag.iti__ph{background-position:-3987px 0;height:10px}.iti__flag.iti__pk{background-position:-4009px 0;height:14px}.iti__flag.iti__pl{background-position:-4031px 0;height:13px}.iti__flag.iti__pm{background-position:-4053px 0;height:14px}.iti__flag.iti__pn{background-position:-4075px 0;height:10px}.iti__flag.iti__pr{background-position:-4097px 0;height:14px}.iti__flag.iti__ps{background-position:-4119px 0;height:10px}.iti__flag.iti__pt{background-position:-4141px 0;height:14px}.iti__flag.iti__pw{background-position:-4163px 0;height:13px}.iti__flag.iti__py{background-position:-4185px 0;height:11px}.iti__flag.iti__qa{background-position:-4207px 0;height:8px}.iti__flag.iti__re{background-position:-4229px 0;height:14px}.iti__flag.iti__ro{background-position:-4251px 0;height:14px}.iti__flag.iti__rs{background-position:-4273px 0;height:14px}.iti__flag.iti__ru{background-position:-4295px 0;height:14px}.iti__flag.iti__rw{background-position:-4317px 0;height:14px}.iti__flag.iti__sa{background-position:-4339px 0;height:14px}.iti__flag.iti__sb{background-position:-4361px 0;height:10px}.iti__flag.iti__sc{background-position:-4383px 0;height:10px}.iti__flag.iti__sd{background-position:-4405px 0;height:10px}.iti__flag.iti__se{background-position:-4427px 0;height:13px}.iti__flag.iti__sg{background-position:-4449px 0;height:14px}.iti__flag.iti__sh{background-position:-4471px 0;height:10px}.iti__flag.iti__si{background-position:-4493px 0;height:10px}.iti__flag.iti__sj{background-position:-4515px 0;height:15px}.iti__flag.iti__sk{background-position:-4537px 0;height:14px}.iti__flag.iti__sl{background-position:-4559px 0;height:14px}.iti__flag.iti__sm{background-position:-4581px 0;height:15px}.iti__flag.iti__sn{background-position:-4603px 0;height:14px}.iti__flag.iti__so{background-position:-4625px 0;height:14px}.iti__flag.iti__sr{background-position:-4647px 0;height:14px}.iti__flag.iti__ss{background-position:-4669px 0;height:10px}.iti__flag.iti__st{background-position:-4691px 0;height:10px}.iti__flag.iti__sv{background-position:-4713px 0;height:12px}.iti__flag.iti__sx{background-position:-4735px 0;height:14px}.iti__flag.iti__sy{background-position:-4757px 0;height:14px}.iti__flag.iti__sz{background-position:-4779px 0;height:14px}.iti__flag.iti__ta{background-position:-4801px 0;height:10px}.iti__flag.iti__tc{background-position:-4823px 0;height:10px}.iti__flag.iti__td{background-position:-4845px 0;height:14px}.iti__flag.iti__tf{background-position:-4867px 0;height:14px}.iti__flag.iti__tg{background-position:-4889px 0;height:13px}.iti__flag.iti__th{background-position:-4911px 0;height:14px}.iti__flag.iti__tj{background-position:-4933px 0;height:10px}.iti__flag.iti__tk{background-position:-4955px 0;height:10px}.iti__flag.iti__tl{background-position:-4977px 0;height:10px}.iti__flag.iti__tm{background-position:-4999px 0;height:14px}.iti__flag.iti__tn{background-position:-5021px 0;height:14px}.iti__flag.iti__to{background-position:-5043px 0;height:10px}.iti__flag.iti__tr{background-position:-5065px 0;height:14px}.iti__flag.iti__tt{background-position:-5087px 0;height:12px}.iti__flag.iti__tv{background-position:-5109px 0;height:10px}.iti__flag.iti__tw{background-position:-5131px 0;height:14px}.iti__flag.iti__tz{background-position:-5153px 0;height:14px}.iti__flag.iti__ua{background-position:-5175px 0;height:14px}.iti__flag.iti__ug{background-position:-5197px 0;height:14px}.iti__flag.iti__um{background-position:-5219px 0;height:11px}.iti__flag.iti__un{background-position:-5241px 0;height:14px}.iti__flag.iti__us{background-position:-5263px 0;height:11px}.iti__flag.iti__uy{background-position:-5285px 0;height:14px}.iti__flag.iti__uz{background-position:-5307px 0;height:10px}.iti__flag.iti__va{background-position:-5329px 0;height:15px}.iti__flag.iti__vc{background-position:-5346px 0;height:14px}.iti__flag.iti__ve{background-position:-5368px 0;height:14px}.iti__flag.iti__vg{background-position:-5390px 0;height:10px}.iti__flag.iti__vi{background-position:-5412px 0;height:14px}.iti__flag.iti__vn{background-position:-5434px 0;height:14px}.iti__flag.iti__vu{background-position:-5456px 0;height:12px}.iti__flag.iti__wf{background-position:-5478px 0;height:14px}.iti__flag.iti__ws{background-position:-5500px 0;height:10px}.iti__flag.iti__xk{background-position:-5522px 0;height:15px}.iti__flag.iti__ye{background-position:-5544px 0;height:14px}.iti__flag.iti__yt{background-position:-5566px 0;height:14px}.iti__flag.iti__za{background-position:-5588px 0;height:14px}.iti__flag.iti__zm{background-position:-5610px 0;height:14px}.iti__flag.iti__zw{background-position:-5632px 0;height:10px}.iti__flag{background-color:#dbdbdb;background-image:url(/images/vendor/intl-tel-input/build/flags.png?007b2705c0a8f69dfdf6ea1bfa0341c9);background-position:20px 0;background-repeat:no-repeat;box-shadow:0 0 1px 0 #888;height:15px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.iti__flag{background-image:url(/images/vendor/intl-tel-input/build/flags@2x.png?9d5328fb490cddd43f6698012123404b)}}.iti__flag.iti__np{background-color:transparent} -body,html{height:100%}input{width:100%}.hide-scroll::-webkit-scrollbar{display:none}[x-cloak]{display:none}.affiliate img{border-bottom-left-radius:0;border-bottom-right-radius:0;margin-bottom:0!important} +body,html{height:100%}input{width:100%}.hide-scroll::-webkit-scrollbar{display:none}[x-cloak]{display:none}.affiliate img{border-bottom-left-radius:0;border-bottom-right-radius:0;margin-bottom:0!important;margin-top:0!important} .brand-laravel{color:var(--brand-laravel)}.brand-alpinejs{color:var(--brand-alpinejs)}.brand-javascript{color:var(--brand-javascript)}.brand-typesript{color:var(--brand-typesript)}.brand-react{color:var(--brand-react)}.brand-vue-js{color:var(--brand-vue-js)}.brand-php{color:var(--brand-php)}.brand-digital-ocean{color:var(--brand-digital-ocean)}.brand-forge{color:var(--brand-forge)}.brand-packages{color:var(--brand-packages)}.brand-outils{color:var(--brand-outils)}.brand-tailwindcss{color:var(--brand-tailwindcss)}.brand-design{color:var(--brand-design)}.brand-open-source{color:var(--brand-open-source)}.brand-freelance{color:var(--brand-freelance)}.brand-salaire{color:var(--brand-salaire)}.brand-projets{color:var(--brand-projets)}.brand-entrepreneuriat{color:var(--brand-entrepreneuriat)}.brand-paiement-en-ligne{color:var(--brand-paiement-en-ligne)}.brand-branding{color:var(--brand-branding)}.brand-applications{color:var(--brand-applications)}.brand-event{color:var(--brand-event)}.brand-tutoriel{color:var(--brand-tutoriel)}.brand-communaute{color:var(--brand-communaute)}.brand-astuces{color:var(--brand-astuces)} .iti{display:block}.iti__selected-flag{padding:0 10px}.choices{margin-top:8px}.standard .choices__input.choices__input--cloned{display:none}.standard .choices__inner{--tw-border-opacity:1!important;--tw-bg-opacity:1!important;align-items:center!important;background-color:rgba(var(--color-input-fill),var(--tw-bg-opacity))!important;border-color:rgba(var(--color-input-border),var(--tw-border-opacity))!important;border-radius:.25rem!important;border-width:1px!important;display:flex!important;height:3rem!important;padding:.5rem!important;width:100%!important}.standard .choices__list--dropdown{--tw-border-opacity:1!important;border-color:rgba(var(--color-input-border),var(--tw-border-opacity))!important;border-width:2px!important}.standard .choices__list--dropdown .choices__list{--tw-border-opacity:1!important;--tw-bg-opacity:1!important;background-color:rgba(var(--color-input-fill),var(--tw-bg-opacity))!important;border-color:rgba(var(--color-border),var(--tw-border-opacity))!important;border-width:1px!important}.standard .choices__list--single{padding:0!important}.standard .choices__item{--tw-bg-opacity:1!important;--tw-text-opacity:1!important;background-color:rgba(var(--color-footer-fill),var(--tw-bg-opacity))!important;border-radius:.25rem!important;border-width:0!important;color:rgba(var(--color-text-base),var(--tw-text-opacity))!important;cursor:pointer!important;font-size:.875rem!important;line-height:1.25rem!important;margin-bottom:0!important;margin-top:0!important;padding:.25rem .5rem!important}.standard .choices__item.choices__item--choice{border-radius:0!important;padding-bottom:.5rem!important;padding-top:.5rem!important}.standard .choices__item.choices__item--choice.choices__item--selectable{--tw-bg-opacity:1!important;--tw-text-opacity:1!important;background-color:rgba(var(--color-input-fill),var(--tw-bg-opacity))!important;border-radius:0!important;color:rgba(var(--color-text-base),var(--tw-text-opacity))!important;padding:.5rem!important}.standard .choices__item.choices__item--choice.choices__item--selectable:hover{--tw-bg-opacity:1!important;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity))!important}.standard .choices__item.choices__item--selectable{background-color:rgba(16,185,129,var(--tw-bg-opacity))!important;border-color:rgba(16,185,129,var(--tw-border-opacity))!important}.standard .choices__item.choices__item--selectable,.standard .choices__item.is-highlighted{--tw-border-opacity:1!important;--tw-bg-opacity:1!important;--tw-text-opacity:1!important;color:rgba(255,255,255,var(--tw-text-opacity))!important}.standard .choices__item.is-highlighted{background-color:rgba(5,150,105,var(--tw-bg-opacity))!important;border-color:rgba(5,150,105,var(--tw-border-opacity))!important}.standard .choices[data-type*=select-one]:after{border-color:var(--color-input-border) transparent transparent transparent!important}.standard .choices[data-type*=select-one] .choices__input{--tw-border-opacity:1!important;border-bottom-width:2px!important;border-color:rgba(var(--color-input-border),var(--tw-border-opacity))!important;border-radius:0!important}.standard .choices__item.choices__item--choice.choices__item--selectable.is-highlighted,.standard .choices__item.choices__item--choice.is-selected.choices__item--selectable{--tw-border-opacity:1!important;--tw-bg-opacity:1!important;--tw-text-opacity:1!important;background-color:rgba(16,185,129,var(--tw-bg-opacity))!important;border-color:rgba(16,185,129,var(--tw-border-opacity))!important;color:rgba(255,255,255,var(--tw-text-opacity))!important} pre{border-radius:.25rem;margin-bottom:1rem;margin-top:1rem;overflow-x:auto;padding:0!important}pre code.torchlight{display:block;min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content;padding-bottom:1rem;padding-top:1rem}pre code.torchlight .line{padding-left:1rem;padding-right:1rem}pre code.torchlight .line-number,pre code.torchlight .summary-caret{margin-right:1rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.torchlight.has-focus-lines .line:not(.line-focus){filter:blur(.095rem);opacity:.65;transition:filter .35s,opacity .35s}.torchlight.has-focus-lines:hover .line:not(.line-focus){filter:blur(0);opacity:1}.torchlight summary:focus{outline:none}.torchlight details>summary::-webkit-details-marker,.torchlight details>summary::marker{display:none}.torchlight details .summary-caret:after{pointer-events:none}.torchlight .summary-caret-empty:after,.torchlight details .summary-caret-end:after,.torchlight details .summary-caret-middle:after{content:" "}.torchlight details[open] .summary-caret-start:after{content:"-"}.torchlight details:not([open]) .summary-caret-start:after{content:"+"}.torchlight details[open] .summary-hide-when-open{display:none}.torchlight details:not([open]) .summary-hide-when-open{display:inline;display:initial} .toc li a{--tw-text-opacity:1;align-items:center;border-radius:.375rem;color:rgba(var(--color-text-base),var(--tw-text-opacity));display:flex;font-size:.875rem;font-weight:500;line-height:1.25rem;padding-bottom:.375rem;padding-top:.375rem;position:relative;transition-duration:.15s;transition-property:color,background-color,border-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-text-decoration-color,-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-text-decoration-color,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.toc li a:hover{--tw-text-opacity:1;color:rgba(var(--color-text-inverted),var(--tw-text-opacity))}.toc li a:focus{outline:2px solid transparent;outline-offset:2px}.toc li>ul>li{padding-left:1rem}.toc li.active>a,.toc li:not(.active)>ul>li.active a{--tw-text-opacity:1;color:rgba(var(--color-text-primary),var(--tw-text-opacity))} .header.is-fixed{--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);background-color:rgba(var(--color-menu-fill),.8);left:0;position:fixed;right: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));transition-duration:.3s}.header.is-hidden{transform:translateY(-100%)} .gu-mirror{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";filter:alpha(opacity=80);margin:0!important;opacity:.8;position:fixed!important;z-index:9999!important}.gu-hide{display:none!important}.gu-unselectable{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.gu-transit{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";filter:alpha(opacity=20);opacity:.2}.media-library,.media-library *,.media-library-item *{all:unset;border-style:solid;border-width:0;box-sizing:border-box;position:relative}.media-library-sortable .media-library-item{-webkit-user-drag:element}.media-library script,.media-library-item script{display:none}.media-library{--tw-text-opacity:1;color:rgba(var(--color-text-inverted-muted),var(--tw-text-opacity));display:grid;grid-template-areas:"errors" "items" "uploader";margin-bottom:2px}.media-library-listerrors{grid-area:errors;margin-bottom:-2px}.media-library-items{grid-area:items;margin-bottom:-2px}.media-library-uploader{grid-area:uploader;margin-bottom:-2px}.media-library-item.gu-mirror{--tw-border-opacity:1;--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);border-color:rgba(var(--color-input-border),var(--tw-border-opacity));border-width:2px;box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.media-library-add{display:flex}.media-library-replace,.media-library-replace .media-library-dropzone,.media-library-replace .media-library-placeholder{bottom:0;height:100%;left:0;margin:0;position:absolute;right:0;top:0;width:100%}.media-library-multiple .media-library-items{--tw-border-opacity:1;border-color:rgba(var(--color-input-border),var(--tw-border-opacity));border-width:2px;display:block}.media-library-item{--tw-bg-opacity:1;align-items:center;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity));display:flex;min-width:0}.media-library-item-row:not(:last-child){--tw-border-opacity:1;border-bottom-width:1px;border-color:rgba(var(--color-input-border),var(--tw-border-opacity))}.media-library-filled.media-library-sortable .media-library-add .media-library-dropzone:before{content:""}.media-library-filled.media-library-sortable .media-library-add .media-library-dropzone:before,.media-library-row-drag{--tw-bg-opacity:0.5;--tw-border-opacity:1;--tw-text-opacity:1;align-items:center;align-self:stretch;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity));border-color:rgba(var(--color-input-border),var(--tw-border-opacity));border-right-width:1px;color:rgba(var(--color-text-base),var(--tw-text-opacity));cursor:move;display:flex;flex:none;flex-direction:column;justify-content:center;width:2rem}.media-library-row-drag:hover{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.media-library-row-remove{--tw-text-opacity:1;align-items:center;color:rgba(var(--color-text-base),var(--tw-text-opacity));cursor:pointer;display:flex;height:3rem;justify-content:center;opacity:.5;position:absolute;right:0;top:0;width:3rem}.media-library-row-remove:hover{opacity:1;transition-duration:.3s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.media-library-listerrors{--tw-border-opacity:0.5;--tw-bg-opacity:0.5;background-color:rgba(254,202,202,var(--tw-bg-opacity));border-color:rgba(252,165,165,var(--tw-border-opacity));border-width:2px;display:block;font-size:.75rem;line-height:1rem}.media-library-listerror{align-items:flex-start;display:flex}.media-library-listerror:not(:last-child){--tw-border-opacity:0.25;border-bottom-width:2px;border-color:rgba(252,165,165,var(--tw-border-opacity))}.media-library-listerror-icon{align-self:stretch;display:flex;justify-content:center;margin-left:1rem;margin-right:1rem;padding-bottom:.75rem;padding-top:.75rem;width:2rem}.media-library-filled.media-library-sortable .media-library-listerror-icon{--tw-bg-opacity:0.5;--tw-border-opacity:1;background-color:rgba(254,202,202,var(--tw-bg-opacity));border-color:rgba(254,202,202,var(--tw-border-opacity));border-right-width:1px;margin-left:0;margin-right:1rem}.media-library-listerror-content{flex-grow:1;padding-right:3rem}.media-library-listerror-title{--tw-text-opacity:1;align-items:center;color:rgba(220,38,38,var(--tw-text-opacity));display:flex;height:3rem}.media-library-listerror-items{--tw-border-opacity:0.25;border-color:rgba(252,165,165,var(--tw-border-opacity));border-top-width:1px;margin-top:-.5rem}.media-library-listerror-item{align-items:center;display:flex;padding-bottom:.75rem;padding-top:.75rem}.media-library-listerror-thumb{flex:none;height:1.5rem;margin-right:.75rem;width:1.5rem}.media-library-listerror-thumb:after{--tw-border-opacity:0.5;border-color:rgba(220,38,38,var(--tw-border-opacity));border-width:1px;bottom:0;content:"";left:0;position:absolute;right:0;top:0}.media-library-listerror-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.media-library-thumb{flex:none;height:4rem;margin:1rem;position:relative;width:4rem}.media-library-single .media-library-thumb{margin:0 1rem 0 0}.media-library-thumb-img{height:100%;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:100%}.media-library-thumb-extension{--tw-bg-opacity:1;align-items:center;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity));display:flex;height:100%;justify-content:center;width:100%}.media-library-thumb-extension-truncate{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity));font-size:.75rem;font-weight:600;line-height:1rem;max-width:100%;overflow:hidden;text-overflow:ellipsis;text-transform:uppercase;white-space:nowrap}.media-library-placeholder{align-items:center;display:flex;height:calc(4rem - 4px);justify-content:center;width:4rem}.media-library-filled.media-library-sortable .media-library-add .media-library-placeholder{height:2rem;margin-left:-2rem;margin-right:1rem;width:2rem}.media-library-multiple.media-library-empty .media-library-add .media-library-placeholder:before{--tw-bg-opacity:0.25;background-color:rgba(var(--color-footer-fill),var(--tw-bg-opacity));content:"";height:2.5rem;left:50%;position:absolute;top:50%;transform:translate(calc(-50% + 3px),calc(-50% + 3px));width:2.5rem}.media-library-multiple.media-library-empty .media-library-add .media-library-placeholder:after{--tw-bg-opacity:1;--tw-border-opacity:0.25;background-color:rgba(var(--color-input-fill),var(--tw-bg-opacity));border-color:rgba(var(--color-input-border),var(--tw-border-opacity));border-width:1px;content:"";height:2.5rem;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:2.5rem}.media-library-dropzone-drop .media-library-placeholder,.media-library-dropzone:not(.disabled):active .media-library-placeholder{transform:translateY(1px)}.media-library-help{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity));font-size:.75rem;line-height:1rem;padding-right:1rem;text-align:left}.media-library-help-clear{cursor:pointer;opacity:.75;padding-left:.5rem;padding-right:.5rem}.media-library-help-clear:hover{opacity:1;transition-duration:.3s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.media-library-dropzone{--tw-border-opacity:0.5;align-items:center;-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important;background-color:transparent;border-color:rgba(var(--color-input-border),var(--tw-border-opacity));border-width:2px;display:flex;flex-grow:1;transition-duration:.3s;transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1)}.media-library-dropzone-add{--tw-bg-opacity:1;background-color:rgba(var(--color-card-muted-fill),var(--tw-bg-opacity));border-style:dashed}.media-library-dropzone-replace{border-style:solid}.media-library-dropzone-drag,.media-library-dropzone:not(.disabled):hover{--tw-bg-opacity:0.25;--tw-border-opacity:0.25;background-color:rgba(110,231,183,var(--tw-bg-opacity));border-color:rgba(5,150,105,var(--tw-border-opacity))}.media-library-dropzone-drop,.media-library-dropzone:not(.disabled):active,.media-library-dropzone:not(.disabled):focus{--tw-bg-opacity:0.5;--tw-border-opacity:0.25;background-color:rgba(110,231,183,var(--tw-bg-opacity));border-color:rgba(5,150,105,var(--tw-border-opacity));outline:2px solid transparent;outline-offset:2px}.media-library-dropzone.disabled{--tw-bg-opacity:0.25;--tw-border-opacity:0.25;background-color:rgba(252,165,165,var(--tw-bg-opacity));border-color:rgba(220,38,38,var(--tw-border-opacity));cursor:not-allowed}.media-library-properties{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity));flex-grow:1;font-size:.75rem;line-height:1rem;margin-bottom:1rem;margin-right:1rem;margin-top:1rem;min-width:0}.media-library-single .media-library-properties{margin-bottom:0;margin-top:0}.media-library-properties-fixed{flex-grow:0;width:8rem}.media-library-property{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity));display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.media-library-field{display:block;margin-bottom:.5rem;margin-top:.5rem;overflow:hidden}.media-library-field-error{--tw-text-opacity:1;color:rgba(220,38,38,var(--tw-text-opacity));display:block;margin-top:.25rem}.media-library-label{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity));display:block;font-size:.75rem;line-height:1rem;padding-right:.5rem}.media-library-input{--tw-text-opacity:1;--tw-bg-opacity:1;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity));border-radius:.375rem;color:rgba(var(--color-text-inverted),var(--tw-text-opacity));flex:1 1 0%;font-size:.75rem;line-height:1rem;padding:.25rem .5rem;transition-duration:.3s;transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1);width:100%}.media-library-input:focus{--tw-bg-opacity:1;background-color:rgba(209,250,229,var(--tw-bg-opacity));outline:2px solid transparent;outline-offset:2px}.media-library-button{--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);--tw-border-opacity:0.75;align-items:center;border-color:rgba(var(--color-input-border),var(--tw-border-opacity));border-radius:9999px;border-width:1px;box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow);display:flex;height:1.5rem;justify-content:center;line-height:1;transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);width:1.5rem;z-index:10}.media-library-sortable .media-library-button{height:1.25rem;width:1.25rem}.media-library-button-info{color:rgba(16,185,129,var(--tw-text-opacity))}.media-library-button-info,.media-library-button-warning{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity))}.media-library-button-warning{color:rgba(239,68,68,var(--tw-text-opacity))}.media-library-button-error{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-border-opacity:1;background-color:rgba(239,68,68,var(--tw-bg-opacity));border-color:rgba(248,113,113,var(--tw-border-opacity));color:rgba(var(--color-text-inverted),var(--tw-text-opacity))}.media-library-button-success{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgba(16,185,129,var(--tw-bg-opacity));color:rgba(var(--color-text-inverted),var(--tw-text-opacity))}.media-library-replace .media-library-button{opacity:0}.media-library-dropzone-drag+.media-library-placeholder .media-library-button,.media-library-dropzone:not(.disabled):focus .media-library-placeholder .media-library-button,.media-library-dropzone:not(.disabled):hover .media-library-placeholder .media-library-button{--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:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow);opacity:1}.media-library-dropzone-drop .media-library-placeholder .media-library-button,.media-library-dropzone:not(.disabled):active .media-library-placeholder .media-library-button{--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow);opacity:1}.media-library-icon{height:1.25rem;width:1.25rem}.media-library-icon-fill{fill:currentColor}.media-library-progress-wrap{--tw-bg-opacity:0.5;align-items:center;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity));bottom:0;display:flex;height:100%;justify-content:center;left:0;opacity:0;padding-left:.75rem;padding-right:.75rem;pointer-events:none;position:absolute;right:0;top:0;transition-duration:.3s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);width:100%;z-index:10}.media-library-progress-wrap-loading{opacity:1}.media-library-progress{--tw-bg-opacity:1;--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);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity));border-radius:9999px;box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow);height:.25rem;max-width:28rem;width:100%}.media-library progress::-webkit-progress-bar{--tw-bg-opacity:1;-webkit-appearance:none;appearance:none;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity));border-radius:9999px}.media-library progress::-moz-progress-bar{--tw-bg-opacity:1;background-color:rgba(16,185,129,var(--tw-bg-opacity));height:100%}.media-library progress::-webkit-progress-value{--tw-bg-opacity:1;background-color:rgba(16,185,129,var(--tw-bg-opacity));height:100%}.media-library-text-separator{opacity:.5;padding-left:.25rem;padding-right:.25rem}.media-library-text-success{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.media-library-text-error{--tw-text-opacity:1;color:rgba(220,38,38,var(--tw-text-opacity))}.media-library-text-link{cursor:pointer;-webkit-text-decoration-line:underline;text-decoration-line:underline}.media-library-hidden{display:none}.media-library-block{display:block}[dir=rtl] .media-library-row-remove{left:0;right:auto}[dir=rtl] .media-library-properties{margin-left:1rem;margin-right:0}[dir=rtl] .media-library-filled.media-library-sortable .media-library-add .media-library-placeholder{margin-left:1rem;margin-right:-2rem}[dir=rtl] .media-library-filled.media-library-sortable .media-library-add .media-library-dropzone:before,[dir=rtl] .media-library-row-drag{border-left-width:1px;border-right-width:0}[dir=rtl] .media-library-help{padding-left:1rem;padding-right:0;text-align:right}[dir=rtl] .media-library-listerror-content{padding-left:3rem;padding-right:0}[dir=rtl] .media-library-filled.media-library-sortable .media-library-listerror-icon{border-left-width:1px;border-right-width:0;margin-left:1rem;margin-right:0} -/*! tailwindcss v3.1.8 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;font-family:DM Sans,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,Helvetica Neue,Arial,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}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:JetBrains Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}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-size:100%;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}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input:-ms-input-placeholder,textarea:-ms-input-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%}[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{--tw-shadow:0 0 transparent;-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}[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{--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);outline:2px solid transparent;outline-offset:2px}input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}input:-ms-input-placeholder,textarea:-ms-input-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}::-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{color-adjust:exact;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]{color-adjust:inherit;background-image:none;background-position:0 0;background-repeat:repeat;background-size:auto auto;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:inherit;print-color-adjust:inherit}[type=checkbox],[type=radio]{color-adjust:exact;--tw-shadow:0 0 transparent;-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;-ms-user-select:none;user-select:none;vertical-align:middle;width:1rem}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{--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);outline:2px solid transparent;outline-offset:2px}[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 viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%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 0z'/%3E%3C/svg%3E")}[type=radio]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}[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}[type=checkbox]:indeterminate:focus,[type=checkbox]:indeterminate:hover{background-color:currentColor;border-color:transparent}[type=file]{background:transparent none repeat 0 0/auto auto padding-box border-box scroll;background:initial;border-color:inherit;border-radius:0;border-width:0;font-size:inherit;line-height:inherit;padding:0}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}:root{--color-text-primary:5,150,105;--color-text-primary-hover:16,185,129;--color-text-link-menu:107,114,128;--color-text-link-menu-hover:17,24,39;--color-text-base:107,114,128;--color-text-muted:156,163,175;--color-text-inverted:17,24,39;--color-text-inverted-muted:31,41,55;--color-link-fill:243,244,246;--color-menu-fill:255,255,255;--color-body-fill:249,250,251;--color-footer-fill:var(--color-menu-fill);--color-footer-light-fill:var(--color-body-fill);--color-input-fill:var(--color-menu-fill);--color-button-default:var(--color-menu-fill);--color-card-fill:var(--color-menu-fill);--color-card-gray:243,244,246;--color-card-muted-fill:var(--color-body-fill);--color-input-border:209,213,219;--color-divide:229,231,235;--color-divide-light:243,244,246;--color-border:var(--color-divide);--color-border-light:var(--color-divide-light)}.theme-dark{--color-text-primary:5,150,105;--color-text-primary-hover:16,185,129;--color-text-link-menu:209,213,219;--color-text-link-menu-hover:255,255,255;--color-text-base:181,181,189;--color-text-muted:107,114,128;--color-text-inverted:255,255,255;--color-text-inverted-muted:156,163,175;--color-link-fill:55,65,81;--color-menu-fill:22,27,34;--color-body-fill:13,17,23;--color-footer-fill:var(--color-menu-fill);--color-footer-light-fill:var(--color-footer-fill);--color-input-fill:31,41,55;--color-button-default:55,65,81;--color-card-fill:22,27,34;--color-card-gray:var(--color-menu-fill);--color-card-muted-fill:17,22,29;--color-input-border:31,41,55;--color-divide:55,65,81;--color-divide-light:55,65,81;--color-border:55,65,81;--color-border-light:55,65,81}*,: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-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 transparent;--tw-ring-shadow:0 0 transparent;--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent;--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: }::-webkit-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-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 transparent;--tw-ring-shadow:0 0 transparent;--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent;--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-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 transparent;--tw-ring-shadow:0 0 transparent;--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}.aspect-w-4{--tw-aspect-w:4;padding-bottom:calc(var(--tw-aspect-h)/var(--tw-aspect-w)*100%);position:relative}.aspect-w-4>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.aspect-h-2{--tw-aspect-h:2}.aspect-w-2{--tw-aspect-w:2;padding-bottom:calc(var(--tw-aspect-h)/var(--tw-aspect-w)*100%);position:relative}.aspect-w-2>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.aspect-h-1{--tw-aspect-h:1}.aspect-w-3{--tw-aspect-w:3;padding-bottom:calc(var(--tw-aspect-h)/var(--tw-aspect-w)*100%);position:relative}.aspect-w-3>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.form-input,.form-multiselect,.form-select,.form-textarea{--tw-shadow:0 0 transparent;-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}.form-input:focus,.form-multiselect:focus,.form-select:focus,.form-textarea:focus{--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);outline:2px solid transparent;outline-offset:2px}.form-input::-moz-placeholder,.form-textarea::-moz-placeholder{color:#6b7280;opacity:1}.form-input:-ms-input-placeholder,.form-textarea:-ms-input-placeholder{color:#6b7280;opacity:1}.form-input::placeholder,.form-textarea::placeholder{color:#6b7280;opacity:1}.form-input::-webkit-datetime-edit-fields-wrapper{padding:0}.form-input::-webkit-date-and-time-value{min-height:1.5em}.form-input::-webkit-datetime-edit,.form-input::-webkit-datetime-edit-day-field,.form-input::-webkit-datetime-edit-hour-field,.form-input::-webkit-datetime-edit-meridiem-field,.form-input::-webkit-datetime-edit-millisecond-field,.form-input::-webkit-datetime-edit-minute-field,.form-input::-webkit-datetime-edit-month-field,.form-input::-webkit-datetime-edit-second-field,.form-input::-webkit-datetime-edit-year-field{padding-bottom:0;padding-top:0}.form-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}.form-checkbox,.form-radio,.form-select{color-adjust:exact;-webkit-print-color-adjust:exact;print-color-adjust:exact}.form-checkbox,.form-radio{--tw-shadow:0 0 transparent;-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-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:1rem}.form-checkbox{border-radius:0}.form-radio{border-radius:100%}.form-checkbox:focus,.form-radio:focus{--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);outline:2px solid transparent;outline-offset:2px}.form-checkbox:checked,.form-radio:checked{background-color:currentColor;background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}.form-checkbox:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%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 0z'/%3E%3C/svg%3E")}.form-radio:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}.form-checkbox:checked:focus,.form-checkbox:checked:hover,.form-radio:checked:focus,.form-radio:checked:hover{background-color:currentColor;border-color:transparent}.form-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}.form-checkbox:indeterminate:focus,.form-checkbox:indeterminate:hover{background-color:currentColor;border-color:transparent}.prose{color:#6b7280;color:rgb(var(--color-text-base));max-width:65ch}.prose :where([class~=lead]):not(:where([class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.prose :where(a):not(:where([class~=not-prose] *)){color:#059669;color:rgb(var(--color-text-primary));font-weight:500;text-decoration:none}.prose :where(a):not(:where([class~=not-prose] *)):hover{color:#10b981;color:rgb(var(--color-text-primary-hover))}.prose :where(strong):not(:where([class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(ol):not(:where([class~=not-prose] *)){list-style-type:decimal;padding-left:1.625em}.prose :where(ol[type=A]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose] *)){list-style-type:disc;padding-left:1.625em}.prose :where(ol>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-counters);font-weight:400}.prose :where(ul>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(hr):not(:where([class~=not-prose] *)){border-color:#e5e7eb;border-color:rgb(var(--color-border));border-top-width:1px;margin-bottom:3em;margin-top:3em}.prose :where(blockquote):not(:where([class~=not-prose] *)){border-left-color:var(--tw-prose-quote-borders);border-left-width:.25rem;color:#111827;color:rgb(var(--color-text-inverted));font-style:normal;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-left:1em;quotes:"\201C""\201D""\2018""\2019"}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose] *)):before{content:none}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.prose :where(h1 strong):not(:where([class~=not-prose] *)){font-weight:900}.prose :where(h2):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.prose :where(h2 strong):not(:where([class~=not-prose] *)){font-weight:800}.prose :where(h3):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.prose :where(h3 strong):not(:where([class~=not-prose] *)){font-weight:700}.prose :where(h4):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.prose :where(h4 strong):not(:where([class~=not-prose] *)){font-weight:700}.prose :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose :where(figcaption):not(:where([class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose :where(code):not(:where([class~=not-prose] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.prose :where(code):not(:where([class~=not-prose] *)):before{content:"`"}.prose :where(code):not(:where([class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose] *)){color:var(--tw-prose-links)}.prose :where(pre):not(:where([class~=not-prose] *)){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:.8571429em 1.1428571em}.prose :where(pre code):not(:where([class~=not-prose] *)){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}.prose :where(pre code):not(:where([class~=not-prose] *)):before{content:none}.prose :where(pre code):not(:where([class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;text-align:left;width:100%}.prose :where(thead):not(:where([class~=not-prose] *)){border-bottom-color:var(--tw-prose-th-borders);border-bottom-width:1px}.prose :where(thead th):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;padding-bottom:.5714286em;padding-left:.5714286em;padding-right:.5714286em;vertical-align:bottom}.prose :where(tbody tr):not(:where([class~=not-prose] *)){border-bottom-color:var(--tw-prose-td-borders);border-bottom-width:1px}.prose :where(tbody tr:last-child):not(:where([class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose] *)){padding:.5714286em;vertical-align:baseline}.prose{--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-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-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}.prose :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}.prose :where(img):not(:where([class~=not-prose] *)){border-radius:.5rem;margin-bottom:2em;margin-top:2em}.prose :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(h2 code):not(:where([class~=not-prose] *)){font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose] *)){font-size:.9em}.prose :where(li):not(:where([class~=not-prose] *)){margin-bottom:.5em;margin-top:.5em}.prose :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose :where(h1,h2,h3,h4):not(:where([class~=not-prose] *)){color:#111827;color:rgb(var(--color-text-inverted));font-family:Lexend,sans-serif}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose] *)):after{content:none}.prose :where(pre,code,p>code):not(:where([class~=not-prose] *)){color:#f59e0b;font-family:JetBrains Mono,monospace;font-weight:500}.prose :where(li strong,strong):not(:where([class~=not-prose] *)){color:#1f2937;color:rgb(var(--color-text-inverted-muted));font-weight:400}.prose-sm{font-size:.875rem;line-height:1.7142857}.prose-sm :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em}.prose-sm :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.8888889em;margin-top:.8888889em}.prose-sm :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em;padding-left:1.1111111em}.prose-sm :where(h1):not(:where([class~=not-prose] *)){font-size:2.1428571em;line-height:1.2;margin-bottom:.8em;margin-top:0}.prose-sm :where(h2):not(:where([class~=not-prose] *)){font-size:1.4285714em;line-height:1.4;margin-bottom:.8em;margin-top:1.6em}.prose-sm :where(h3):not(:where([class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.5555556em}.prose-sm :where(h4):not(:where([class~=not-prose] *)){line-height:1.4285714;margin-bottom:.5714286em;margin-top:1.4285714em}.prose-sm :where(img):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.prose-sm :where(video):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.prose-sm :where(figure):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.prose-sm :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose-sm :where(figcaption):not(:where([class~=not-prose] *)){font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}.prose-sm :where(code):not(:where([class~=not-prose] *)){font-size:.8571429em}.prose-sm :where(h2 code):not(:where([class~=not-prose] *)){font-size:.9em}.prose-sm :where(h3 code):not(:where([class~=not-prose] *)){font-size:.8888889em}.prose-sm :where(pre):not(:where([class~=not-prose] *)){border-radius:.25rem;font-size:.8571429em;line-height:1.6666667;margin-bottom:1.6666667em;margin-top:1.6666667em;padding:.6666667em 1em}.prose-sm :where(ol):not(:where([class~=not-prose] *)){padding-left:1.5714286em}.prose-sm :where(ul):not(:where([class~=not-prose] *)){padding-left:1.5714286em}.prose-sm :where(li):not(:where([class~=not-prose] *)){margin-bottom:.2857143em;margin-top:.2857143em}.prose-sm :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4285714em}.prose-sm :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4285714em}.prose-sm>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.prose-sm>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.prose-sm :where(hr):not(:where([class~=not-prose] *)){margin-bottom:2.8571429em;margin-top:2.8571429em}.prose-sm :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(table):not(:where([class~=not-prose] *)){font-size:.8571429em;line-height:1.5}.prose-sm :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.6666667em;padding-left:1em;padding-right:1em}.prose-sm :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-sm :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-sm :where(tbody td):not(:where([class~=not-prose] *)){padding:.6666667em 1em}.prose-sm :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-sm :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-sm>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-base{font-size:1rem;line-height:1.75}.prose-base :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}.prose-base :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.prose-base :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6em;margin-top:1.6em;padding-left:1em}.prose-base :where(h1):not(:where([class~=not-prose] *)){font-size:2.25em;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.prose-base :where(h2):not(:where([class~=not-prose] *)){font-size:1.5em;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.prose-base :where(h3):not(:where([class~=not-prose] *)){font-size:1.25em;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.prose-base :where(h4):not(:where([class~=not-prose] *)){line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.prose-base :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose-base :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose-base :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose-base :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose-base :where(figcaption):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose-base :where(code):not(:where([class~=not-prose] *)){font-size:.875em}.prose-base :where(h2 code):not(:where([class~=not-prose] *)){font-size:.875em}.prose-base :where(h3 code):not(:where([class~=not-prose] *)){font-size:.9em}.prose-base :where(pre):not(:where([class~=not-prose] *)){border-radius:.375rem;font-size:.875em;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;padding:.8571429em 1.1428571em}.prose-base :where(ol):not(:where([class~=not-prose] *)){padding-left:1.625em}.prose-base :where(ul):not(:where([class~=not-prose] *)){padding-left:1.625em}.prose-base :where(li):not(:where([class~=not-prose] *)){margin-bottom:.5em;margin-top:.5em}.prose-base :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose-base :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose-base>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose-base>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose-base :where(hr):not(:where([class~=not-prose] *)){margin-bottom:3em;margin-top:3em}.prose-base :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(table):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.7142857}.prose-base :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.5714286em;padding-left:.5714286em;padding-right:.5714286em}.prose-base :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-base :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-base :where(tbody td):not(:where([class~=not-prose] *)){padding:.5714286em}.prose-base :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-base :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-base>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-base>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-lg{font-size:1.125rem;line-height:1.7777778}.prose-lg :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em}.prose-lg :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2222222em;line-height:1.4545455;margin-bottom:1.0909091em;margin-top:1.0909091em}.prose-lg :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6666667em;margin-top:1.6666667em;padding-left:1em}.prose-lg :where(h1):not(:where([class~=not-prose] *)){font-size:2.6666667em;line-height:1;margin-bottom:.8333333em;margin-top:0}.prose-lg :where(h2):not(:where([class~=not-prose] *)){font-size:1.6666667em;line-height:1.3333333;margin-bottom:1.0666667em;margin-top:1.8666667em}.prose-lg :where(h3):not(:where([class~=not-prose] *)){font-size:1.3333333em;line-height:1.5;margin-bottom:.6666667em;margin-top:1.6666667em}.prose-lg :where(h4):not(:where([class~=not-prose] *)){line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.7777778em}.prose-lg :where(img):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.prose-lg :where(video):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.prose-lg :where(figure):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.prose-lg :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose-lg :where(figcaption):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5;margin-top:1em}.prose-lg :where(code):not(:where([class~=not-prose] *)){font-size:.8888889em}.prose-lg :where(h2 code):not(:where([class~=not-prose] *)){font-size:.8666667em}.prose-lg :where(h3 code):not(:where([class~=not-prose] *)){font-size:.875em}.prose-lg :where(pre):not(:where([class~=not-prose] *)){border-radius:.375rem;font-size:.8888889em;line-height:1.75;margin-bottom:2em;margin-top:2em;padding:1em 1.5em}.prose-lg :where(ol):not(:where([class~=not-prose] *)){padding-left:1.5555556em}.prose-lg :where(ul):not(:where([class~=not-prose] *)){padding-left:1.5555556em}.prose-lg :where(li):not(:where([class~=not-prose] *)){margin-bottom:.6666667em;margin-top:.6666667em}.prose-lg :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}.prose-lg :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}.prose-lg>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.prose-lg>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.prose-lg :where(hr):not(:where([class~=not-prose] *)){margin-bottom:3.1111111em;margin-top:3.1111111em}.prose-lg :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(table):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5}.prose-lg :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.75em;padding-left:.75em;padding-right:.75em}.prose-lg :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-lg :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-lg :where(tbody td):not(:where([class~=not-prose] *)){padding:.75em}.prose-lg :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-lg :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-lg>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-green{--tw-prose-links:#16a34a;--tw-prose-invert-links:#22c55e}.sr-only{clip:rect(0,0,0,0);border-width:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.visible{visibility:visible}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:-webkit-sticky;position:sticky}.inset-0{bottom:0;left:0;right:0;top:0}.-inset-px{bottom:-1px;left:-1px;right:-1px;top:-1px}.inset-x-0{left:0;right:0}.inset-y-0{bottom:0;top:0}.bottom-0{bottom:0}.top-0{top:0}.top-5{top:1.25rem}.left-5{left:1.25rem}.-bottom-0\.5{bottom:-.125rem}.-right-1{right:-.25rem}.-bottom-0{bottom:0}.right-0{right:0}.top-40{top:10rem}.left-0{left:0}.-top-8{top:-2rem}.top-\[-75px\]{top:-75px}.top-\[-50px\]{top:-50px}.top-16{top:4rem}.top-4{top:1rem}.left-1{left:.25rem}.-top-3{top:-.75rem}.right-3{right:.75rem}.right-5{right:1.25rem}.right-2{right:.5rem}.-top-2{top:-.5rem}.top-2{top:.5rem}.left-0\.5{left:.125rem}.z-0{z-index:0}.z-30{z-index:30}.z-50{z-index:50}.z-40{z-index:40}.z-20{z-index:20}.z-10{z-index:10}.order-2{order:2}.order-1{order:1}.col-span-1{grid-column:span 1/span 1}.-m-2{margin:-.5rem}.-m-3{margin:-.75rem}.my-10{margin-bottom:2.5rem;margin-top:2.5rem}.-mx-2{margin-left:-.5rem;margin-right:-.5rem}.mx-auto{margin-left:auto;margin-right:auto}.mx-1\.5{margin-left:.375rem;margin-right:.375rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.-my-5{margin-bottom:-1.25rem;margin-top:-1.25rem}.my-8{margin-bottom:2rem;margin-top:2rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.-my-2{margin-bottom:-.5rem;margin-top:-.5rem}.-mx-4{margin-left:-1rem;margin-right:-1rem}.mx-0{margin-left:0;margin-right:0}.my-auto{margin-bottom:auto;margin-top:auto}.my-2{margin-bottom:.5rem;margin-top:.5rem}.my-1{margin-bottom:.25rem;margin-top:.25rem}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.mr-2{margin-right:.5rem}.mb-6{margin-bottom:1.5rem}.mt-1{margin-top:.25rem}.mt-8{margin-top:2rem}.mt-2{margin-top:.5rem}.mt-5{margin-top:1.25rem}.mt-12{margin-top:3rem}.mb-14{margin-bottom:3.5rem}.-mt-4{margin-top:-1rem}.mt-4{margin-top:1rem}.mb-2{margin-bottom:.5rem}.ml-4{margin-left:1rem}.ml-2{margin-left:.5rem}.mt-3{margin-top:.75rem}.mt-6{margin-top:1.5rem}.mt-10{margin-top:2.5rem}.ml-1\.5{margin-left:.375rem}.ml-1{margin-left:.25rem}.mr-1\.5{margin-right:.375rem}.mr-1{margin-right:.25rem}.ml-12{margin-left:3rem}.-ml-1{margin-left:-.25rem}.-ml-px{margin-left:-1px}.mr-3{margin-right:.75rem}.ml-3{margin-left:.75rem}.-mr-1{margin-right:-.25rem}.mt-16{margin-top:4rem}.mb-5{margin-bottom:1.25rem}.ml-9{margin-left:2.25rem}.mb-4{margin-bottom:1rem}.mb-1\.5{margin-bottom:.375rem}.mb-1{margin-bottom:.25rem}.-mt-1{margin-top:-.25rem}.mt-0\.5{margin-top:.125rem}.mt-0{margin-top:0}.ml-2\.5{margin-left:.625rem}.ml-8{margin-left:2rem}.-mt-2{margin-top:-.5rem}.ml-3\.5{margin-left:.875rem}.-ml-9{margin-left:-2.25rem}.mb-3{margin-bottom:.75rem}.-mb-2{margin-bottom:-.5rem}.mb-8{margin-bottom:2rem}.-mt-12{margin-top:-3rem}.-mb-px{margin-bottom:-1px}.ml-6{margin-left:1.5rem}.mt-1\.5{margin-top:.375rem}.mt-24{margin-top:6rem}.-ml-4{margin-left:-1rem}.ml-auto{margin-left:auto}.-mt-3{margin-top:-.75rem}.-mb-8{margin-bottom:-2rem}.-mt-6{margin-top:-1.5rem}.-ml-0\.5{margin-left:-.125rem}.-ml-0{margin-left:0}.mr-0{margin-right:0}.ml-5{margin-left:1.25rem}.mr-4{margin-right:1rem}.mt-11{margin-top:2.75rem}.mb-11{margin-bottom:2.75rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.flow-root{display:flow-root}.grid{display:grid}.contents{display:contents}.hidden{display:none}.h-auto{height:auto}.h-16{height:4rem}.h-5{height:1.25rem}.h-14{height:3.5rem}.h-12{height:3rem}.h-8{height:2rem}.h-6{height:1.5rem}.h-80{height:20rem}.h-full{height:100%}.h-32{height:8rem}.h-10{height:2.5rem}.h-9{height:2.25rem}.h-3\.5{height:.875rem}.h-3{height:.75rem}.h-\[450px\]{height:450px}.h-7{height:1.75rem}.h-4{height:1rem}.h-\[120px\]{height:120px}.h-2{height:.5rem}.h-64{height:16rem}.h-24{height:6rem}.h-1\/3{height:33.333333%}.h-96{height:24rem}.h-0\.5{height:.125rem}.h-0{height:0}.h-56{height:14rem}.h-\[350px\]{height:350px}.h-\[250px\]{height:250px}.h-screen{height:100vh}.max-h-56{max-height:14rem}.max-h-96{max-height:24rem}.max-h-52{max-height:13rem}.max-h-60{max-height:15rem}.max-h-64{max-height:16rem}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.min-h-\[250px\]{min-height:250px}.w-full{width:100%}.w-5{width:1.25rem}.w-1\/2{width:50%}.w-1\/3{width:33.333333%}.w-auto{width:auto}.w-6{width:1.5rem}.w-14{width:3.5rem}.w-8{width:2rem}.w-0\.5{width:.125rem}.w-0{width:0}.w-10{width:2.5rem}.w-9{width:2.25rem}.w-3\.5{width:.875rem}.w-3{width:.75rem}.w-screen{width:100vw}.w-4{width:1rem}.w-3\/4{width:75%}.w-5\/6{width:83.333333%}.w-2{width:.5rem}.w-12{width:3rem}.w-40{width:10rem}.w-7{width:1.75rem}.w-56{width:14rem}.w-24{width:6rem}.w-px{width:1px}.w-60{width:15rem}.w-11{width:2.75rem}.w-\[calc\(100\%-3\.5rem\)\]{width:calc(100% - 3.5rem)}.w-48{width:12rem}.min-w-0{min-width:0}.min-w-full{min-width:100%}.max-w-7xl{max-width:80rem}.max-w-xl{max-width:36rem}.max-w-4xl{max-width:56rem}.max-w-3xl{max-width:48rem}.max-w-none{max-width:none}.max-w-full{max-width:100%}.max-w-xs{max-width:20rem}.max-w-md{max-width:28rem}.max-w-sm{max-width:24rem}.max-w-2xl{max-width:42rem}.max-w-lg{max-width:32rem}.max-w-\[18rem\]{max-width:18rem}.flex-none{flex:none}.flex-1{flex:1 1 0%}.flex-shrink-0,.shrink-0{flex-shrink:0}.flex-grow,.grow{flex-grow:1}.origin-top{transform-origin:top}.origin-top-right{transform-origin:top right}.origin-top-left{transform-origin:top left}.translate-x-full{--tw-translate-x:100%}.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-0{--tw-translate-x:0px}.translate-y-2{--tw-translate-y:0.5rem}.translate-y-0,.translate-y-2{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-0{--tw-translate-y:0px}.translate-y-7{--tw-translate-y:1.75rem}.translate-y-7,.translate-y-9{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-9{--tw-translate-y:2.25rem}.translate-y-1{--tw-translate-y:0.25rem}.translate-x-5,.translate-y-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))}.translate-x-5{--tw-translate-x:1.25rem}.translate-y-4{--tw-translate-y:1rem}.-translate-y-12,.translate-y-4{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-12{--tw-translate-y:-3rem}.rotate-45{--tw-rotate:45deg}.rotate-45,.rotate-90{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-90{--tw-rotate:90deg}.rotate-0{--tw-rotate:0deg}.rotate-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-95{--tw-scale-x:.95;--tw-scale-y:.95}.scale-95,.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))}@-webkit-keyframes spin{to{transform:rotate(1turn)}}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes pulse{50%{opacity:.5}}@keyframes pulse{50%{opacity:.5}}.animate-pulse{-webkit-animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite;animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@-webkit-keyframes linear-progress{0%{left:-30%}to{left:100%}}@keyframes linear-progress{0%{left:-30%}to{left:100%}}.animate-linear-progress{-webkit-animation:linear-progress 2s linear infinite;animation:linear-progress 2s linear infinite}.cursor-pointer{cursor:pointer}.cursor-text{cursor:text}.cursor-default{cursor:default}.\!cursor-wait{cursor:wait!important}.cursor-not-allowed{cursor:not-allowed}.select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.resize-none{resize:none}.list-disc{list-style-type:disc}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,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-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.flex-nowrap{flex-wrap:nowrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-baseline{align-items:baseline}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-10{gap:2.5rem}.gap-8{gap:2rem}.gap-5{gap:1.25rem}.gap-2{gap:.5rem}.gap-1{gap:.25rem}.gap-6{gap:1.5rem}.gap-3{gap:.75rem}.gap-y-8{row-gap:2rem}.gap-y-12{row-gap:3rem}.gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.gap-x-12{-moz-column-gap:3rem;column-gap:3rem}.gap-y-4{row-gap:1rem}.gap-x-5{-moz-column-gap:1.25rem;column-gap:1.25rem}.gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.gap-y-6{row-gap:1.5rem}.gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.gap-y-2{row-gap:.5rem}.gap-y-0{row-gap:0}.gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.gap-x-0\.5{-moz-column-gap:.125rem;column-gap:.125rem}.gap-x-0{-moz-column-gap:0;column-gap:0}.space-y-12>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(3rem*var(--tw-space-y-reverse));margin-top:calc(3rem*(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-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-x-5>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.25rem*var(--tw-space-x-reverse))}.space-x-1\.5>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.375rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.375rem*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-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)))}.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-8>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(2rem*var(--tw-space-y-reverse));margin-top:calc(2rem*(1 - var(--tw-space-y-reverse)))}.space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.25rem*var(--tw-space-y-reverse));margin-top:calc(1.25rem*(1 - var(--tw-space-y-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-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-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-y-10>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(2.5rem*var(--tw-space-y-reverse));margin-top:calc(2.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-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-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-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.5rem*var(--tw-space-x-reverse))}.space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(2rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(2rem*var(--tw-space-x-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-x>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-left-width:calc(1px*(1 - var(--tw-divide-x-reverse)));border-right-width:calc(1px*var(--tw-divide-x-reverse))}.divide-skin-base>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgba(var(--color-divide),var(--tw-divide-opacity))}.divide-skin-light>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgba(var(--color-divide-light),var(--tw-divide-opacity))}.divide-skin-input>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgba(var(--color-input-border),var(--tw-divide-opacity))}.divide-secondary-200>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgba(226,232,240,var(--tw-divide-opacity))}.self-start{align-self:flex-start}.self-center{align-self:center}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.\!overflow-hidden{overflow:hidden!important}.overflow-scroll{overflow:scroll}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-x-hidden{overflow-x:hidden}.overflow-y-scroll{overflow-y:scroll}.overscroll-contain{-ms-scroll-chaining:none;overscroll-behavior:contain}.scroll-smooth{scroll-behavior:smooth}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-normal{white-space:normal}.whitespace-nowrap{white-space:nowrap}.whitespace-pre-wrap{white-space:pre-wrap}.break-words{word-wrap:break-word}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-full{border-radius:9999px}.rounded{border-radius:.25rem}.rounded-sm{border-radius:.125rem}.rounded-xl{border-radius:.75rem}.rounded-none{border-radius:0}.rounded-3xl{border-radius:1.5rem}.rounded-t-lg{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.rounded-l-md{border-bottom-left-radius:.375rem;border-top-left-radius:.375rem}.rounded-r-md{border-bottom-right-radius:.375rem;border-top-right-radius:.375rem}.rounded-l-lg{border-bottom-left-radius:.5rem;border-top-left-radius:.5rem}.rounded-r-lg{border-top-right-radius:.5rem}.rounded-b-lg,.rounded-r-lg{border-bottom-right-radius:.5rem}.rounded-b-lg{border-bottom-left-radius:.5rem}.rounded-t-none{border-top-left-radius:0;border-top-right-radius:0}.rounded-t-md{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.rounded-tl{border-top-left-radius:.25rem}.rounded-tl-sm{border-top-left-radius:.125rem}.rounded-tr-lg{border-top-right-radius:.5rem}.rounded-br-lg{border-bottom-right-radius:.5rem}.border{border-width:1px}.border-0{border-width:0}.border-2{border-width:2px}.border-t{border-top-width:1px}.border-b{border-bottom-width:1px}.border-l{border-left-width:1px}.border-r-0{border-right-width:0}.border-b-2{border-bottom-width:2px}.border-l-4{border-left-width:4px}.border-r{border-right-width:1px}.border-dashed{border-style:dashed}.border-none{border-style:none}.border-skin-input{--tw-border-opacity:1;border-color:rgba(var(--color-input-border),var(--tw-border-opacity))}.border-negative-300{--tw-border-opacity:1;border-color:rgba(252,165,165,var(--tw-border-opacity))}.border-transparent{border-color:transparent}.border-skin-base{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.border-red-300{--tw-border-opacity:1;border-color:rgba(252,165,165,var(--tw-border-opacity))}.border-green-500{--tw-border-opacity:1;border-color:rgba(16,185,129,var(--tw-border-opacity))}.border-white{--tw-border-opacity:1;border-color:rgba(255,255,255,var(--tw-border-opacity))}.border-gray-300{--tw-border-opacity:1;border-color:rgba(209,213,219,var(--tw-border-opacity))}.border-gray-800{--tw-border-opacity:1;border-color:rgba(31,41,55,var(--tw-border-opacity))}.border-secondary-200{--tw-border-opacity:1;border-color:rgba(226,232,240,var(--tw-border-opacity))}.border-primary-600{--tw-border-opacity:1;border-color:rgba(5,150,105,var(--tw-border-opacity))}.border-gray-400{--tw-border-opacity:1;border-color:rgba(156,163,175,var(--tw-border-opacity))}.border-primary-400{--tw-border-opacity:1;border-color:rgba(52,211,153,var(--tw-border-opacity))}.border-negative-200{--tw-border-opacity:1;border-color:rgba(254,202,202,var(--tw-border-opacity))}.border-secondary-400{--tw-border-opacity:1;border-color:rgba(148,163,184,var(--tw-border-opacity))}.border-secondary-300{--tw-border-opacity:1;border-color:rgba(203,213,225,var(--tw-border-opacity))}.border-secondary-700{--tw-border-opacity:1;border-color:rgba(51,65,85,var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity:1;border-color:rgba(229,231,235,var(--tw-border-opacity))}.border-primary-500{--tw-border-opacity:1;border-color:rgba(16,185,129,var(--tw-border-opacity))}.border-secondary-600{--tw-border-opacity:1;border-color:rgba(71,85,105,var(--tw-border-opacity))}.border-positive-500{--tw-border-opacity:1;border-color:rgba(16,185,129,var(--tw-border-opacity))}.border-negative-500{--tw-border-opacity:1;border-color:rgba(239,68,68,var(--tw-border-opacity))}.border-warning-600{--tw-border-opacity:1;border-color:rgba(217,119,6,var(--tw-border-opacity))}.border-info-600{--tw-border-opacity:1;border-color:rgba(37,99,235,var(--tw-border-opacity))}.border-slate-600{--tw-border-opacity:1;border-color:rgba(71,85,105,var(--tw-border-opacity))}.border-black{--tw-border-opacity:1;border-color:rgba(22,27,34,var(--tw-border-opacity))}.border-gray-500{--tw-border-opacity:1;border-color:rgba(107,114,128,var(--tw-border-opacity))}.border-zinc-500{--tw-border-opacity:1;border-color:rgba(113,113,122,var(--tw-border-opacity))}.border-neutral-500{--tw-border-opacity:1;border-color:rgba(115,115,115,var(--tw-border-opacity))}.border-stone-500{--tw-border-opacity:1;border-color:rgba(120,113,108,var(--tw-border-opacity))}.border-red-500{--tw-border-opacity:1;border-color:rgba(239,68,68,var(--tw-border-opacity))}.border-orange-500{--tw-border-opacity:1;border-color:rgba(249,115,22,var(--tw-border-opacity))}.border-amber-600{--tw-border-opacity:1;border-color:rgba(217,119,6,var(--tw-border-opacity))}.border-lime-500{--tw-border-opacity:1;border-color:rgba(132,204,22,var(--tw-border-opacity))}.border-emerald-500{--tw-border-opacity:1;border-color:rgba(16,185,129,var(--tw-border-opacity))}.border-teal-500{--tw-border-opacity:1;border-color:rgba(20,184,166,var(--tw-border-opacity))}.border-cyan-500{--tw-border-opacity:1;border-color:rgba(6,182,212,var(--tw-border-opacity))}.border-sky-500{--tw-border-opacity:1;border-color:rgba(14,165,233,var(--tw-border-opacity))}.border-blue-500{--tw-border-opacity:1;border-color:rgba(59,130,246,var(--tw-border-opacity))}.border-indigo-500{--tw-border-opacity:1;border-color:rgba(16,185,129,var(--tw-border-opacity))}.border-violet-500{--tw-border-opacity:1;border-color:rgba(139,92,246,var(--tw-border-opacity))}.border-purple-500{--tw-border-opacity:1;border-color:rgba(168,85,247,var(--tw-border-opacity))}.border-fuchsia-500{--tw-border-opacity:1;border-color:rgba(217,70,239,var(--tw-border-opacity))}.border-pink-500{--tw-border-opacity:1;border-color:rgba(236,72,153,var(--tw-border-opacity))}.border-rose-500{--tw-border-opacity:1;border-color:rgba(244,63,94,var(--tw-border-opacity))}.border-negative-400{--tw-border-opacity:1;border-color:rgba(248,113,113,var(--tw-border-opacity))}.bg-skin-button{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity));background-color:rgba(var(--color-button-default),var(--tw-bg-opacity))}.bg-primary-500{--tw-bg-opacity:1;background-color:rgba(16,185,129,var(--tw-bg-opacity))}.bg-secondary-500{--tw-bg-opacity:1;background-color:rgba(100,116,139,var(--tw-bg-opacity))}.bg-positive-500{--tw-bg-opacity:1;background-color:rgba(16,185,129,var(--tw-bg-opacity))}.bg-negative-500{--tw-bg-opacity:1;background-color:rgba(239,68,68,var(--tw-bg-opacity))}.bg-warning-500{--tw-bg-opacity:1;background-color:rgba(245,158,11,var(--tw-bg-opacity))}.bg-info-500{--tw-bg-opacity:1;background-color:rgba(59,130,246,var(--tw-bg-opacity))}.bg-gray-700{--tw-bg-opacity:1;background-color:rgba(55,65,81,var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.bg-black{--tw-bg-opacity:1;background-color:rgba(22,27,34,var(--tw-bg-opacity))}.bg-slate-500{--tw-bg-opacity:1;background-color:rgba(100,116,139,var(--tw-bg-opacity))}.bg-gray-500{--tw-bg-opacity:1;background-color:rgba(107,114,128,var(--tw-bg-opacity))}.bg-zinc-500{--tw-bg-opacity:1;background-color:rgba(113,113,122,var(--tw-bg-opacity))}.bg-neutral-500{--tw-bg-opacity:1;background-color:rgba(115,115,115,var(--tw-bg-opacity))}.bg-stone-500{--tw-bg-opacity:1;background-color:rgba(120,113,108,var(--tw-bg-opacity))}.bg-red-500{--tw-bg-opacity:1;background-color:rgba(239,68,68,var(--tw-bg-opacity))}.bg-orange-500{--tw-bg-opacity:1;background-color:rgba(249,115,22,var(--tw-bg-opacity))}.bg-amber-500{--tw-bg-opacity:1;background-color:rgba(245,158,11,var(--tw-bg-opacity))}.bg-lime-500{--tw-bg-opacity:1;background-color:rgba(132,204,22,var(--tw-bg-opacity))}.bg-emerald-500,.bg-green-500{--tw-bg-opacity:1;background-color:rgba(16,185,129,var(--tw-bg-opacity))}.bg-teal-500{--tw-bg-opacity:1;background-color:rgba(20,184,166,var(--tw-bg-opacity))}.bg-cyan-500{--tw-bg-opacity:1;background-color:rgba(6,182,212,var(--tw-bg-opacity))}.bg-sky-500{--tw-bg-opacity:1;background-color:rgba(14,165,233,var(--tw-bg-opacity))}.bg-blue-500{--tw-bg-opacity:1;background-color:rgba(59,130,246,var(--tw-bg-opacity))}.bg-indigo-500{--tw-bg-opacity:1;background-color:rgba(16,185,129,var(--tw-bg-opacity))}.bg-violet-500{--tw-bg-opacity:1;background-color:rgba(139,92,246,var(--tw-bg-opacity))}.bg-purple-500{--tw-bg-opacity:1;background-color:rgba(168,85,247,var(--tw-bg-opacity))}.bg-fuchsia-500{--tw-bg-opacity:1;background-color:rgba(217,70,239,var(--tw-bg-opacity))}.bg-pink-500{--tw-bg-opacity:1;background-color:rgba(236,72,153,var(--tw-bg-opacity))}.bg-rose-500{--tw-bg-opacity:1;background-color:rgba(244,63,94,var(--tw-bg-opacity))}.bg-skin-input{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity));background-color:rgba(var(--color-input-fill),var(--tw-bg-opacity))}.bg-green-50{--tw-bg-opacity:1;background-color:rgba(236,253,245,var(--tw-bg-opacity))}.bg-skin-card{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity));background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity))}.bg-green-700{--tw-bg-opacity:1;background-color:rgba(4,120,87,var(--tw-bg-opacity))}.bg-flag-green{--tw-bg-opacity:1;background-color:rgba(9,145,112,var(--tw-bg-opacity))}.bg-green-600{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.bg-skin-card-gray{--tw-bg-opacity:1;background-color:rgba(243,244,246,var(--tw-bg-opacity));background-color:rgba(var(--color-card-gray),var(--tw-bg-opacity))}.bg-skin-body{--tw-bg-opacity:1;background-color:rgba(249,250,251,var(--tw-bg-opacity));background-color:rgba(var(--color-body-fill),var(--tw-bg-opacity))}.bg-negative-600{--tw-bg-opacity:1;background-color:rgba(220,38,38,var(--tw-bg-opacity))}.bg-red-50{--tw-bg-opacity:1;background-color:rgba(254,242,242,var(--tw-bg-opacity))}.bg-green-100{--tw-bg-opacity:1;background-color:rgba(209,250,229,var(--tw-bg-opacity))}.bg-blue-50{--tw-bg-opacity:1;background-color:rgba(239,246,255,var(--tw-bg-opacity))}.bg-skin-button-hover,.bg-skin-card-muted{--tw-bg-opacity:1;background-color:rgba(249,250,251,var(--tw-bg-opacity));background-color:rgba(var(--color-card-muted-fill),var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.bg-blue-100{--tw-bg-opacity:1;background-color:rgba(219,234,254,var(--tw-bg-opacity))}.bg-skin-footer{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity));background-color:rgba(var(--color-footer-fill),var(--tw-bg-opacity))}.bg-red-100{--tw-bg-opacity:1;background-color:rgba(254,226,226,var(--tw-bg-opacity))}.bg-skin-menu{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity));background-color:rgba(var(--color-menu-fill),var(--tw-bg-opacity))}.bg-red-400{--tw-bg-opacity:1;background-color:rgba(248,113,113,var(--tw-bg-opacity))}.bg-skin-primary{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity));background-color:rgba(var(--color-text-primary),var(--tw-bg-opacity))}.bg-flag-red{--tw-bg-opacity:1;background-color:rgba(226,27,48,var(--tw-bg-opacity))}.bg-yellow-500{--tw-bg-opacity:1;background-color:rgba(234,179,8,var(--tw-bg-opacity))}.bg-yellow-100{--tw-bg-opacity:1;background-color:rgba(254,249,195,var(--tw-bg-opacity))}.bg-skin-link{--tw-bg-opacity:1;background-color:rgba(243,244,246,var(--tw-bg-opacity));background-color:rgba(var(--color-link-fill),var(--tw-bg-opacity))}.bg-yellow-50{--tw-bg-opacity:1;background-color:rgba(254,252,232,var(--tw-bg-opacity))}.bg-gray-900{--tw-bg-opacity:1;background-color:rgba(17,24,39,var(--tw-bg-opacity))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgba(243,244,246,var(--tw-bg-opacity))}.bg-gray-800{--tw-bg-opacity:1;background-color:rgba(31,41,55,var(--tw-bg-opacity))}.bg-secondary-50{--tw-bg-opacity:1;background-color:rgba(248,250,252,var(--tw-bg-opacity))}.bg-primary-600{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.bg-negative-50{--tw-bg-opacity:1;background-color:rgba(254,242,242,var(--tw-bg-opacity))}.bg-secondary-400{--tw-bg-opacity:1;background-color:rgba(148,163,184,var(--tw-bg-opacity))}.bg-secondary-300{--tw-bg-opacity:1;background-color:rgba(203,213,225,var(--tw-bg-opacity))}.bg-secondary-100,.bg-slate-100{--tw-bg-opacity:1;background-color:rgba(241,245,249,var(--tw-bg-opacity))}.bg-secondary-700{--tw-bg-opacity:1;background-color:rgba(51,65,85,var(--tw-bg-opacity))}.bg-gray-200{--tw-bg-opacity:1;background-color:rgba(229,231,235,var(--tw-bg-opacity))}.bg-slate-200{--tw-bg-opacity:1;background-color:rgba(226,232,240,var(--tw-bg-opacity))}.bg-positive-50{--tw-bg-opacity:1;background-color:rgba(236,253,245,var(--tw-bg-opacity))}.bg-info-50{--tw-bg-opacity:1;background-color:rgba(239,246,255,var(--tw-bg-opacity))}.bg-warning-50{--tw-bg-opacity:1;background-color:rgba(255,251,235,var(--tw-bg-opacity))}.bg-secondary-200{--tw-bg-opacity:1;background-color:rgba(226,232,240,var(--tw-bg-opacity))}.bg-opacity-10{--tw-bg-opacity:0.1}.bg-opacity-50{--tw-bg-opacity:0.5}.bg-opacity-20{--tw-bg-opacity:0.2}.bg-opacity-60{--tw-bg-opacity:0.6}.bg-opacity-75{--tw-bg-opacity:0.75}.bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}.bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--tw-gradient-stops))}.from-green-500{--tw-gradient-from:#10b981;--tw-gradient-to:rgba(16,185,129,0);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black{--tw-gradient-from:#161b22;--tw-gradient-to:rgba(22,27,34,0);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-\[\#413626\]{--tw-gradient-from:#413626;--tw-gradient-to:rgba(65,54,38,0);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-flag-yellow{--tw-gradient-from:#ffdc44;--tw-gradient-to:rgba(255,220,68,0);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.via-indigo-600{--tw-gradient-to:rgba(5,150,105,0);--tw-gradient-stops:var(--tw-gradient-from),#059669,var(--tw-gradient-to)}.to-blue-500{--tw-gradient-to:#3b82f6}.to-\[\#7E5D36\]{--tw-gradient-to:#7e5d36}.to-flag-red{--tw-gradient-to:#e21b30}.fill-current{fill:currentColor}.stroke-current{stroke:currentColor}.object-cover{-o-object-fit:cover;object-fit:cover}.object-center{-o-object-position:center;object-position:center}.p-6{padding:1.5rem}.p-1{padding:.25rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-2{padding:.5rem}.p-1\.5{padding:.375rem}.p-2\.5{padding:.625rem}.p-3{padding:.75rem}.p-0\.5{padding:.125rem}.p-0{padding:0}.px-3{padding-left:.75rem;padding-right:.75rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-8{padding-bottom:2rem;padding-top:2rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-4{padding-left:1rem;padding-right:1rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-0\.5{padding-bottom:.125rem;padding-top:.125rem}.py-0{padding-bottom:0;padding-top:0}.py-12{padding-bottom:3rem;padding-top:3rem}.py-14{padding-bottom:3.5rem;padding-top:3.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-0\.5{padding-left:.125rem;padding-right:.125rem}.py-px{padding-bottom:1px;padding-top:1px}.px-0{padding-left:0;padding-right:0}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.px-1{padding-left:.25rem;padding-right:.25rem}.py-16{padding-bottom:4rem;padding-top:4rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-4{padding-bottom:1rem;padding-top:1rem}.py-1\.5{padding-bottom:.375rem;padding-top:.375rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.px-3\.5{padding-left:.875rem;padding-right:.875rem}.py-3\.5{padding-bottom:.875rem;padding-top:.875rem}.py-2\.5{padding-bottom:.625rem;padding-top:.625rem}.px-7{padding-left:1.75rem;padding-right:1.75rem}.pt-12{padding-top:3rem}.pr-2{padding-right:.5rem}.pr-1{padding-right:.25rem}.pb-64{padding-bottom:16rem}.pb-2{padding-bottom:.5rem}.pl-2{padding-left:.5rem}.pt-6{padding-top:1.5rem}.pt-5{padding-top:1.25rem}.pl-10{padding-left:2.5rem}.pl-3{padding-left:.75rem}.pb-5{padding-bottom:1.25rem}.pt-0\.5{padding-top:.125rem}.pt-0{padding-top:0}.pl-5{padding-left:1.25rem}.pb-8{padding-bottom:2rem}.pt-16{padding-top:4rem}.pb-4{padding-bottom:1rem}.pt-2{padding-top:.5rem}.pr-10{padding-right:2.5rem}.pt-10{padding-top:2.5rem}.pb-10{padding-bottom:2.5rem}.pt-4{padding-top:1rem}.pr-12{padding-right:3rem}.pl-4{padding-left:1rem}.pb-3{padding-bottom:.75rem}.pr-4{padding-right:1rem}.pr-3{padding-right:.75rem}.pb-6{padding-bottom:1.5rem}.pt-8{padding-top:2rem}.pb-20{padding-bottom:5rem}.pl-8{padding-left:2rem}.pb-1{padding-bottom:.25rem}.pr-9{padding-right:2.25rem}.pt-7{padding-top:1.75rem}.pl-1{padding-left:.25rem}.pl-2\.5{padding-left:.625rem}.pr-2\.5{padding-right:.625rem}.pl-3\.5{padding-left:.875rem}.pr-14{padding-right:3.5rem}.pr-0\.5{padding-right:.125rem}.pr-0{padding-right:0}.pl-16{padding-left:4rem}.pr-8{padding-right:2rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.align-middle{vertical-align:middle}.align-bottom{vertical-align:bottom}.font-sans{font-family:DM Sans,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,Helvetica Neue,Arial,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-heading{font-family:Lexend,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,Helvetica Neue,Arial,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-mono{font-family:JetBrains Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-xs{font-size:.75rem;line-height:1rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-5xl{font-size:3rem;line-height:1}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-\[12px\]{font-size:12px}.text-3xs{font-size:.5rem}.text-2xs{font-size:.65rem}.font-bold{font-weight:700}.font-semibold{font-weight:600}.font-extrabold{font-weight:800}.font-normal{font-weight:400}.font-medium{font-weight:500}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.capitalize{text-transform:capitalize}.italic{font-style:italic}.leading-6{line-height:1.5rem}.leading-5{line-height:1.25rem}.leading-7{line-height:1.75rem}.leading-4{line-height:1rem}.leading-tight{line-height:1.25}.leading-none{line-height:1}.leading-8{line-height:2rem}.leading-loose{line-height:2}.leading-3{line-height:.75rem}.leading-normal{line-height:1.5}.tracking-tight{letter-spacing:-.025em}.tracking-wide{letter-spacing:.025em}.tracking-wider{letter-spacing:.05em}.tracking-widest{letter-spacing:.1em}.tracking-tighter{letter-spacing:-.05em}.\!text-skin-primary{--tw-text-opacity:1!important;color:rgba(5,150,105,var(--tw-text-opacity))!important;color:rgba(var(--color-text-primary),var(--tw-text-opacity))!important}.text-skin-base{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity));color:rgba(var(--color-text-base),var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.text-slate-500{--tw-text-opacity:1;color:rgba(100,116,139,var(--tw-text-opacity))}.text-slate-100{--tw-text-opacity:1;color:rgba(241,245,249,var(--tw-text-opacity))}.text-negative-900{--tw-text-opacity:1;color:rgba(127,29,29,var(--tw-text-opacity))}.text-skin-inverted{--tw-text-opacity:1;color:rgba(17,24,39,var(--tw-text-opacity));color:rgba(var(--color-text-inverted),var(--tw-text-opacity))}.text-skin-primary{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity));color:rgba(var(--color-text-primary),var(--tw-text-opacity))}.text-green-900{--tw-text-opacity:1;color:rgba(6,78,59,var(--tw-text-opacity))}.text-green-600{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.text-skin-muted{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity));color:rgba(var(--color-text-muted),var(--tw-text-opacity))}.text-flag-green{--tw-text-opacity:1;color:rgba(9,145,112,var(--tw-text-opacity))}.text-green-300{--tw-text-opacity:1;color:rgba(110,231,183,var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.text-rose-500{--tw-text-opacity:1;color:rgba(244,63,94,var(--tw-text-opacity))}.text-skin-inverted-muted{--tw-text-opacity:1;color:rgba(31,41,55,var(--tw-text-opacity));color:rgba(var(--color-text-inverted-muted),var(--tw-text-opacity))}.text-red-500{--tw-text-opacity:1;color:rgba(239,68,68,var(--tw-text-opacity))}.text-green-500{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.text-green-400{--tw-text-opacity:1;color:rgba(52,211,153,var(--tw-text-opacity))}.text-green-800{--tw-text-opacity:1;color:rgba(6,95,70,var(--tw-text-opacity))}.text-red-600{--tw-text-opacity:1;color:rgba(220,38,38,var(--tw-text-opacity))}.text-\[\#5865F2\]{--tw-text-opacity:1;color:rgba(88,101,242,var(--tw-text-opacity))}.text-red-400{--tw-text-opacity:1;color:rgba(248,113,113,var(--tw-text-opacity))}.text-red-800{--tw-text-opacity:1;color:rgba(153,27,27,var(--tw-text-opacity))}.text-blue-400{--tw-text-opacity:1;color:rgba(96,165,250,var(--tw-text-opacity))}.text-blue-700{--tw-text-opacity:1;color:rgba(29,78,216,var(--tw-text-opacity))}.text-red-700{--tw-text-opacity:1;color:rgba(185,28,28,var(--tw-text-opacity))}.text-green-700{--tw-text-opacity:1;color:rgba(4,120,87,var(--tw-text-opacity))}.text-skin-menu{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity));color:rgba(var(--color-text-link-menu),var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity:1;color:rgba(31,41,55,var(--tw-text-opacity))}.text-\[\#1E9DEA\]{--tw-text-opacity:1;color:rgba(30,157,234,var(--tw-text-opacity))}.text-blue-800{--tw-text-opacity:1;color:rgba(30,64,175,var(--tw-text-opacity))}.text-yellow-800{--tw-text-opacity:1;color:rgba(133,77,14,var(--tw-text-opacity))}.text-skin-inverted-muted\/70{color:rgba(31,41,55,.7);color:rgba(var(--color-text-inverted-muted),.7)}.text-skin-base\/60{color:hsla(220,9%,46%,.6);color:rgba(var(--color-text-base),.6)}.text-skin-menu-hover{--tw-text-opacity:1;color:rgba(17,24,39,var(--tw-text-opacity));color:rgba(var(--color-text-link-menu-hover),var(--tw-text-opacity))}.text-yellow-500{--tw-text-opacity:1;color:rgba(234,179,8,var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgba(209,213,219,var(--tw-text-opacity))}.text-yellow-400{--tw-text-opacity:1;color:rgba(250,204,21,var(--tw-text-opacity))}.text-yellow-700{--tw-text-opacity:1;color:rgba(161,98,7,var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgba(55,65,81,var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity:1;color:rgba(229,231,235,var(--tw-text-opacity))}.text-gray-100{--tw-text-opacity:1;color:rgba(243,244,246,var(--tw-text-opacity))}.text-blue-500{--tw-text-opacity:1;color:rgba(59,130,246,var(--tw-text-opacity))}.text-secondary-700{--tw-text-opacity:1;color:rgba(51,65,85,var(--tw-text-opacity))}.text-negative-600{--tw-text-opacity:1;color:rgba(220,38,38,var(--tw-text-opacity))}.text-negative-400{--tw-text-opacity:1;color:rgba(248,113,113,var(--tw-text-opacity))}.text-secondary-400{--tw-text-opacity:1;color:rgba(148,163,184,var(--tw-text-opacity))}.text-primary-600{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.\!text-white{--tw-text-opacity:1!important;color:rgba(255,255,255,var(--tw-text-opacity))!important}.text-secondary-500{--tw-text-opacity:1;color:rgba(100,116,139,var(--tw-text-opacity))}.text-negative-800{--tw-text-opacity:1;color:rgba(153,27,27,var(--tw-text-opacity))}.text-negative-700{--tw-text-opacity:1;color:rgba(185,28,28,var(--tw-text-opacity))}.text-negative-500{--tw-text-opacity:1;color:rgba(239,68,68,var(--tw-text-opacity))}.text-secondary-300{--tw-text-opacity:1;color:rgba(203,213,225,var(--tw-text-opacity))}.text-primary-500{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.\!text-transparent{color:transparent!important}.text-red-900{--tw-text-opacity:1;color:rgba(127,29,29,var(--tw-text-opacity))}.text-secondary-600{--tw-text-opacity:1;color:rgba(71,85,105,var(--tw-text-opacity))}.text-secondary-900{--tw-text-opacity:1;color:rgba(15,23,42,var(--tw-text-opacity))}.text-positive-400{--tw-text-opacity:1;color:rgba(52,211,153,var(--tw-text-opacity))}.text-info-400{--tw-text-opacity:1;color:rgba(96,165,250,var(--tw-text-opacity))}.text-warning-400{--tw-text-opacity:1;color:rgba(251,191,36,var(--tw-text-opacity))}.text-secondary-100{--tw-text-opacity:1;color:rgba(241,245,249,var(--tw-text-opacity))}.text-positive-500{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.text-warning-600{--tw-text-opacity:1;color:rgba(217,119,6,var(--tw-text-opacity))}.text-info-600{--tw-text-opacity:1;color:rgba(37,99,235,var(--tw-text-opacity))}.text-slate-600{--tw-text-opacity:1;color:rgba(71,85,105,var(--tw-text-opacity))}.text-black{--tw-text-opacity:1;color:rgba(22,27,34,var(--tw-text-opacity))}.text-zinc-500{--tw-text-opacity:1;color:rgba(113,113,122,var(--tw-text-opacity))}.text-neutral-500{--tw-text-opacity:1;color:rgba(115,115,115,var(--tw-text-opacity))}.text-stone-500{--tw-text-opacity:1;color:rgba(120,113,108,var(--tw-text-opacity))}.text-orange-500{--tw-text-opacity:1;color:rgba(249,115,22,var(--tw-text-opacity))}.text-amber-600{--tw-text-opacity:1;color:rgba(217,119,6,var(--tw-text-opacity))}.text-lime-500{--tw-text-opacity:1;color:rgba(132,204,22,var(--tw-text-opacity))}.text-emerald-500{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.text-teal-500{--tw-text-opacity:1;color:rgba(20,184,166,var(--tw-text-opacity))}.text-cyan-500{--tw-text-opacity:1;color:rgba(6,182,212,var(--tw-text-opacity))}.text-sky-500{--tw-text-opacity:1;color:rgba(14,165,233,var(--tw-text-opacity))}.text-indigo-500{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.text-violet-500{--tw-text-opacity:1;color:rgba(139,92,246,var(--tw-text-opacity))}.text-purple-500{--tw-text-opacity:1;color:rgba(168,85,247,var(--tw-text-opacity))}.text-fuchsia-500{--tw-text-opacity:1;color:rgba(217,70,239,var(--tw-text-opacity))}.text-pink-500{--tw-text-opacity:1;color:rgba(236,72,153,var(--tw-text-opacity))}.text-positive-600{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.text-slate-900{--tw-text-opacity:1;color:rgba(15,23,42,var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity:1;color:rgba(75,85,99,var(--tw-text-opacity))}.text-zinc-600{--tw-text-opacity:1;color:rgba(82,82,91,var(--tw-text-opacity))}.text-neutral-600{--tw-text-opacity:1;color:rgba(82,82,82,var(--tw-text-opacity))}.text-stone-600{--tw-text-opacity:1;color:rgba(87,83,78,var(--tw-text-opacity))}.text-orange-600{--tw-text-opacity:1;color:rgba(234,88,12,var(--tw-text-opacity))}.text-lime-600{--tw-text-opacity:1;color:rgba(101,163,13,var(--tw-text-opacity))}.text-emerald-600{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.text-teal-600{--tw-text-opacity:1;color:rgba(13,148,136,var(--tw-text-opacity))}.text-cyan-600{--tw-text-opacity:1;color:rgba(8,145,178,var(--tw-text-opacity))}.text-sky-600{--tw-text-opacity:1;color:rgba(2,132,199,var(--tw-text-opacity))}.text-blue-600{--tw-text-opacity:1;color:rgba(37,99,235,var(--tw-text-opacity))}.text-indigo-600{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.text-violet-600{--tw-text-opacity:1;color:rgba(124,58,237,var(--tw-text-opacity))}.text-purple-600{--tw-text-opacity:1;color:rgba(147,51,234,var(--tw-text-opacity))}.text-fuchsia-600{--tw-text-opacity:1;color:rgba(192,38,211,var(--tw-text-opacity))}.text-pink-600{--tw-text-opacity:1;color:rgba(219,39,119,var(--tw-text-opacity))}.text-rose-600{--tw-text-opacity:1;color:rgba(225,29,72,var(--tw-text-opacity))}.underline{-webkit-text-decoration-line:underline;text-decoration-line:underline}.\!no-underline{-webkit-text-decoration-line:none!important;text-decoration-line:none!important}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.placeholder-skin-input::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(156,163,175,var(--tw-placeholder-opacity));color:rgba(var(--color-text-muted),var(--tw-placeholder-opacity))}.placeholder-skin-input:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(156,163,175,var(--tw-placeholder-opacity));color:rgba(var(--color-text-muted),var(--tw-placeholder-opacity))}.placeholder-skin-input::placeholder{--tw-placeholder-opacity:1;color:rgba(156,163,175,var(--tw-placeholder-opacity));color:rgba(var(--color-text-muted),var(--tw-placeholder-opacity))}.placeholder-negative-500::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(239,68,68,var(--tw-placeholder-opacity))}.placeholder-negative-500:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(239,68,68,var(--tw-placeholder-opacity))}.placeholder-negative-500::placeholder{--tw-placeholder-opacity:1;color:rgba(239,68,68,var(--tw-placeholder-opacity))}.placeholder-red-300::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(252,165,165,var(--tw-placeholder-opacity))}.placeholder-red-300:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(252,165,165,var(--tw-placeholder-opacity))}.placeholder-red-300::placeholder{--tw-placeholder-opacity:1;color:rgba(252,165,165,var(--tw-placeholder-opacity))}.placeholder-gray-500::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(107,114,128,var(--tw-placeholder-opacity))}.placeholder-gray-500:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(107,114,128,var(--tw-placeholder-opacity))}.placeholder-gray-500::placeholder{--tw-placeholder-opacity:1;color:rgba(107,114,128,var(--tw-placeholder-opacity))}.placeholder-negative-300::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(252,165,165,var(--tw-placeholder-opacity))}.placeholder-negative-300:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(252,165,165,var(--tw-placeholder-opacity))}.placeholder-negative-300::placeholder{--tw-placeholder-opacity:1;color:rgba(252,165,165,var(--tw-placeholder-opacity))}.placeholder-secondary-400::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(148,163,184,var(--tw-placeholder-opacity))}.placeholder-secondary-400:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(148,163,184,var(--tw-placeholder-opacity))}.placeholder-secondary-400::placeholder{--tw-placeholder-opacity:1;color:rgba(148,163,184,var(--tw-placeholder-opacity))}.opacity-25{opacity:.25}.opacity-75{opacity:.75}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-70{opacity:.7}.opacity-50{opacity:.5}.opacity-20{opacity:.2}.opacity-60{opacity:.6}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.shadow-lg,.shadow-sm{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.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{--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-xl{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.shadow-xl{--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color)}.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-md,.shadow-none{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.shadow-none{--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent}.outline-none{outline:2px solid transparent;outline-offset:2px}.outline{outline-style:solid}.ring-8{--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(8px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-2,.ring-8{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.ring-2{--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)}.ring-4{--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)}.ring-1,.ring-4{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.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)}.ring-0{--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(var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.ring-primary-500{--tw-ring-opacity:1;--tw-ring-color:rgba(16,185,129,var(--tw-ring-opacity))}.ring-secondary-500{--tw-ring-opacity:1;--tw-ring-color:rgba(100,116,139,var(--tw-ring-opacity))}.ring-positive-500{--tw-ring-opacity:1;--tw-ring-color:rgba(16,185,129,var(--tw-ring-opacity))}.ring-negative-500{--tw-ring-opacity:1;--tw-ring-color:rgba(239,68,68,var(--tw-ring-opacity))}.ring-warning-500{--tw-ring-opacity:1;--tw-ring-color:rgba(245,158,11,var(--tw-ring-opacity))}.ring-info-500{--tw-ring-opacity:1;--tw-ring-color:rgba(59,130,246,var(--tw-ring-opacity))}.ring-gray-700{--tw-ring-opacity:1;--tw-ring-color:rgba(55,65,81,var(--tw-ring-opacity))}.ring-slate-200{--tw-ring-opacity:1;--tw-ring-color:rgba(226,232,240,var(--tw-ring-opacity))}.ring-black{--tw-ring-opacity:1;--tw-ring-color:rgba(22,27,34,var(--tw-ring-opacity))}.ring-slate-500{--tw-ring-opacity:1;--tw-ring-color:rgba(100,116,139,var(--tw-ring-opacity))}.ring-gray-500{--tw-ring-opacity:1;--tw-ring-color:rgba(107,114,128,var(--tw-ring-opacity))}.ring-zinc-500{--tw-ring-opacity:1;--tw-ring-color:rgba(113,113,122,var(--tw-ring-opacity))}.ring-neutral-500{--tw-ring-opacity:1;--tw-ring-color:rgba(115,115,115,var(--tw-ring-opacity))}.ring-stone-500{--tw-ring-opacity:1;--tw-ring-color:rgba(120,113,108,var(--tw-ring-opacity))}.ring-red-500{--tw-ring-opacity:1;--tw-ring-color:rgba(239,68,68,var(--tw-ring-opacity))}.ring-orange-500{--tw-ring-opacity:1;--tw-ring-color:rgba(249,115,22,var(--tw-ring-opacity))}.ring-amber-500{--tw-ring-opacity:1;--tw-ring-color:rgba(245,158,11,var(--tw-ring-opacity))}.ring-lime-500{--tw-ring-opacity:1;--tw-ring-color:rgba(132,204,22,var(--tw-ring-opacity))}.ring-emerald-500,.ring-green-500{--tw-ring-opacity:1;--tw-ring-color:rgba(16,185,129,var(--tw-ring-opacity))}.ring-teal-500{--tw-ring-opacity:1;--tw-ring-color:rgba(20,184,166,var(--tw-ring-opacity))}.ring-cyan-500{--tw-ring-opacity:1;--tw-ring-color:rgba(6,182,212,var(--tw-ring-opacity))}.ring-sky-500{--tw-ring-opacity:1;--tw-ring-color:rgba(14,165,233,var(--tw-ring-opacity))}.ring-blue-500{--tw-ring-opacity:1;--tw-ring-color:rgba(59,130,246,var(--tw-ring-opacity))}.ring-indigo-500{--tw-ring-opacity:1;--tw-ring-color:rgba(16,185,129,var(--tw-ring-opacity))}.ring-violet-500{--tw-ring-opacity:1;--tw-ring-color:rgba(139,92,246,var(--tw-ring-opacity))}.ring-purple-500{--tw-ring-opacity:1;--tw-ring-color:rgba(168,85,247,var(--tw-ring-opacity))}.ring-fuchsia-500{--tw-ring-opacity:1;--tw-ring-color:rgba(217,70,239,var(--tw-ring-opacity))}.ring-pink-500{--tw-ring-opacity:1;--tw-ring-color:rgba(236,72,153,var(--tw-ring-opacity))}.ring-rose-500{--tw-ring-opacity:1;--tw-ring-color:rgba(244,63,94,var(--tw-ring-opacity))}.ring-body{--tw-ring-color:rgb(var(--color-body-fill))}.ring-white{--tw-ring-opacity:1;--tw-ring-color:rgba(255,255,255,var(--tw-ring-opacity))}.ring-card{--tw-ring-color:rgb(var(--color-card-fill))}.ring-gray-300{--tw-ring-opacity:1;--tw-ring-color:rgba(209,213,219,var(--tw-ring-opacity))}.ring-secondary-600{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.ring-warning-600{--tw-ring-opacity:1;--tw-ring-color:rgba(217,119,6,var(--tw-ring-opacity))}.ring-info-600{--tw-ring-opacity:1;--tw-ring-color:rgba(37,99,235,var(--tw-ring-opacity))}.ring-slate-600{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.ring-amber-600{--tw-ring-opacity:1;--tw-ring-color:rgba(217,119,6,var(--tw-ring-opacity))}.ring-primary-600{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.ring-negative-600,.ring-red-600{--tw-ring-opacity:1;--tw-ring-color:rgba(220,38,38,var(--tw-ring-opacity))}.ring-orange-600{--tw-ring-opacity:1;--tw-ring-color:rgba(234,88,12,var(--tw-ring-opacity))}.ring-lime-600{--tw-ring-opacity:1;--tw-ring-color:rgba(101,163,13,var(--tw-ring-opacity))}.ring-emerald-600,.ring-green-600{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.ring-teal-600{--tw-ring-opacity:1;--tw-ring-color:rgba(13,148,136,var(--tw-ring-opacity))}.ring-cyan-600{--tw-ring-opacity:1;--tw-ring-color:rgba(8,145,178,var(--tw-ring-opacity))}.ring-sky-600{--tw-ring-opacity:1;--tw-ring-color:rgba(2,132,199,var(--tw-ring-opacity))}.ring-blue-600{--tw-ring-opacity:1;--tw-ring-color:rgba(37,99,235,var(--tw-ring-opacity))}.ring-indigo-600{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.ring-violet-600{--tw-ring-opacity:1;--tw-ring-color:rgba(124,58,237,var(--tw-ring-opacity))}.ring-purple-600{--tw-ring-opacity:1;--tw-ring-color:rgba(147,51,234,var(--tw-ring-opacity))}.ring-fuchsia-600{--tw-ring-opacity:1;--tw-ring-color:rgba(192,38,211,var(--tw-ring-opacity))}.ring-pink-600{--tw-ring-opacity:1;--tw-ring-color:rgba(219,39,119,var(--tw-ring-opacity))}.ring-rose-600{--tw-ring-opacity:1;--tw-ring-color:rgba(225,29,72,var(--tw-ring-opacity))}.ring-opacity-5{--tw-ring-opacity:0.05}.blur-sm{--tw-blur:blur(4px)}.blur,.blur-sm{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)}.blur{--tw-blur:blur(8px)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.backdrop-blur-md{--tw-backdrop-blur:blur(12px)}.backdrop-blur-md,.backdrop-blur-sm{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.backdrop-blur-sm{--tw-backdrop-blur:blur(4px)}.backdrop-blur-lg{--tw-backdrop-blur:blur(16px)}.backdrop-blur-lg,.backdrop-blur-xl{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.backdrop-blur-xl{--tw-backdrop-blur:blur(24px)}.backdrop-blur-2xl{--tw-backdrop-blur:blur(40px)}.backdrop-blur-2xl,.backdrop-blur-3xl{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.backdrop-blur-3xl{--tw-backdrop-blur:blur(64px)}.backdrop-blur{--tw-backdrop-blur:blur(8px)}.backdrop-blur,.backdrop-filter{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.transition{transition-duration:.15s;transition-property:color,background-color,border-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-text-decoration-color,-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-text-decoration-color,-webkit-backdrop-filter;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)}.transition-all{transition-duration:.15s;transition-property:all;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-colors{transition-duration:.15s;transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1)}.delay-200{transition-delay:.2s}.duration-100{transition-duration:.1s}.duration-500{transition-duration:.5s}.duration-150{transition-duration:.15s}.duration-300{transition-duration:.3s}.duration-200{transition-duration:.2s}.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)}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-linear{transition-timing-function:linear}.hide-scrollbar::-webkit-scrollbar{display:none}.hide-scrollbar{-ms-overflow-style:none;scrollbar-width:none}.soft-scrollbar::-webkit-scrollbar{cursor:pointer;height:4px;width:4px}.soft-scrollbar::-webkit-scrollbar-track{background-color:#e2e8f0;cursor:pointer}.soft-scrollbar::-webkit-scrollbar-thumb{background-color:#94a3b8;cursor:pointer}.dark .soft-scrollbar::-webkit-scrollbar-track{background-color:#475569;cursor:pointer}.dark .soft-scrollbar::-webkit-scrollbar-thumb{background-color:#334155;cursor:pointer}.line-clamp-2{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;overflow:hidden}:root{--brand-laravel:#ff2d20;--brand-livewire:#fb70a9;--brand-inertia:#8b5cf6;--brand-javascript:#f7df1e;--brand-typesript:#007acc;--brand-react:#53c1de;--brand-vue-js:#41b883;--brand-php:#777bb3;--brand-digital-ocean:#0080ff;--brand-forge:#19b69b;--brand-packages:#4f46e5;--brand-outils:#22d3ee;--brand-tailwindcss:#06b6d4;--brand-design:#78350f;--brand-alpinejs:#2d3441;--brand-open-source:#f97316;--brand-freelance:#f43f5e;--brand-salaire:#c7d2fe;--brand-projets:#14b8a6;--brand-entrepreneuriat:#0ea5e9;--brand-paiement-en-ligne:#10b981;--brand-branding:#ec4899;--brand-applications:#0284c7;--brand-developpement:#4d7c0f;--brand-event:#36bffa;--brand-tutoriel:#164e63;--brand-communaute:#dd2590;--brand-astuces:#d6bbfb}[x-cloak]{display:none!important}.prose iframe{width:100%}.logo-dark,.theme-dark .logo-white{display:none}.theme-dark .logo-dark{display:block}.checked\:translate-x-3:checked{--tw-translate-x:0.75rem}.checked\:translate-x-3:checked,.checked\:translate-x-3\.5:checked{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))}.checked\:translate-x-3\.5:checked{--tw-translate-x:0.875rem}.checked\:translate-x-4:checked{--tw-translate-x:1rem;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))}.checked\:bg-none:checked{background-image:none}.checked\:text-white:checked{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.focus-within\:ring-2[focus-within]{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.focus-within\:ring-2:focus-within{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.focus-within\:ring-green-500[focus-within]{--tw-ring-opacity:1;--tw-ring-color:rgba(16,185,129,var(--tw-ring-opacity))}.focus-within\:ring-green-500:focus-within{--tw-ring-opacity:1;--tw-ring-color:rgba(16,185,129,var(--tw-ring-opacity))}.focus-within\:ring-offset-2[focus-within]{--tw-ring-offset-width:2px}.focus-within\:ring-offset-2:focus-within{--tw-ring-offset-width:2px}.hover\:scale-125:hover{--tw-scale-x:1.25;--tw-scale-y:1.25;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))}.hover\:border-green-300:hover{--tw-border-opacity:1;border-color:rgba(110,231,183,var(--tw-border-opacity))}.hover\:border-green-600:hover{--tw-border-opacity:1;border-color:rgba(5,150,105,var(--tw-border-opacity))}.hover\:border-green-500:hover{--tw-border-opacity:1;border-color:rgba(16,185,129,var(--tw-border-opacity))}.hover\:border-skin-base:hover{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.hover\:border-gray-400:hover{--tw-border-opacity:1;border-color:rgba(156,163,175,var(--tw-border-opacity))}.hover\:bg-skin-button-hover:hover{--tw-bg-opacity:1;background-color:rgba(249,250,251,var(--tw-bg-opacity));background-color:rgba(var(--color-card-muted-fill),var(--tw-bg-opacity))}.hover\:bg-primary-600:hover{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.hover\:bg-secondary-600:hover{--tw-bg-opacity:1;background-color:rgba(71,85,105,var(--tw-bg-opacity))}.hover\:bg-positive-600:hover{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.hover\:bg-negative-600:hover{--tw-bg-opacity:1;background-color:rgba(220,38,38,var(--tw-bg-opacity))}.hover\:bg-warning-600:hover{--tw-bg-opacity:1;background-color:rgba(217,119,6,var(--tw-bg-opacity))}.hover\:bg-info-600:hover{--tw-bg-opacity:1;background-color:rgba(37,99,235,var(--tw-bg-opacity))}.hover\:bg-gray-900:hover{--tw-bg-opacity:1;background-color:rgba(17,24,39,var(--tw-bg-opacity))}.hover\:bg-slate-50:hover{--tw-bg-opacity:1;background-color:rgba(248,250,252,var(--tw-bg-opacity))}.hover\:bg-slate-900:hover{--tw-bg-opacity:1;background-color:rgba(15,23,42,var(--tw-bg-opacity))}.hover\:bg-slate-600:hover{--tw-bg-opacity:1;background-color:rgba(71,85,105,var(--tw-bg-opacity))}.hover\:bg-gray-600:hover{--tw-bg-opacity:1;background-color:rgba(75,85,99,var(--tw-bg-opacity))}.hover\:bg-zinc-600:hover{--tw-bg-opacity:1;background-color:rgba(82,82,91,var(--tw-bg-opacity))}.hover\:bg-neutral-600:hover{--tw-bg-opacity:1;background-color:rgba(82,82,82,var(--tw-bg-opacity))}.hover\:bg-stone-600:hover{--tw-bg-opacity:1;background-color:rgba(87,83,78,var(--tw-bg-opacity))}.hover\:bg-red-600:hover{--tw-bg-opacity:1;background-color:rgba(220,38,38,var(--tw-bg-opacity))}.hover\:bg-orange-600:hover{--tw-bg-opacity:1;background-color:rgba(234,88,12,var(--tw-bg-opacity))}.hover\:bg-amber-600:hover{--tw-bg-opacity:1;background-color:rgba(217,119,6,var(--tw-bg-opacity))}.hover\:bg-lime-600:hover{--tw-bg-opacity:1;background-color:rgba(101,163,13,var(--tw-bg-opacity))}.hover\:bg-emerald-600:hover,.hover\:bg-green-600:hover{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.hover\:bg-teal-600:hover{--tw-bg-opacity:1;background-color:rgba(13,148,136,var(--tw-bg-opacity))}.hover\:bg-cyan-600:hover{--tw-bg-opacity:1;background-color:rgba(8,145,178,var(--tw-bg-opacity))}.hover\:bg-sky-600:hover{--tw-bg-opacity:1;background-color:rgba(2,132,199,var(--tw-bg-opacity))}.hover\:bg-blue-600:hover{--tw-bg-opacity:1;background-color:rgba(37,99,235,var(--tw-bg-opacity))}.hover\:bg-indigo-600:hover{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.hover\:bg-violet-600:hover{--tw-bg-opacity:1;background-color:rgba(124,58,237,var(--tw-bg-opacity))}.hover\:bg-purple-600:hover{--tw-bg-opacity:1;background-color:rgba(147,51,234,var(--tw-bg-opacity))}.hover\:bg-fuchsia-600:hover{--tw-bg-opacity:1;background-color:rgba(192,38,211,var(--tw-bg-opacity))}.hover\:bg-pink-600:hover{--tw-bg-opacity:1;background-color:rgba(219,39,119,var(--tw-bg-opacity))}.hover\:bg-rose-600:hover{--tw-bg-opacity:1;background-color:rgba(225,29,72,var(--tw-bg-opacity))}.hover\:bg-green-700:hover{--tw-bg-opacity:1;background-color:rgba(4,120,87,var(--tw-bg-opacity))}.hover\:bg-skin-card-muted:hover{--tw-bg-opacity:1;background-color:rgba(249,250,251,var(--tw-bg-opacity));background-color:rgba(var(--color-card-muted-fill),var(--tw-bg-opacity))}.hover\:bg-negative-500:hover{--tw-bg-opacity:1;background-color:rgba(239,68,68,var(--tw-bg-opacity))}.hover\:bg-skin-card:hover{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity));background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity))}.hover\:bg-skin-footer:hover{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity));background-color:rgba(var(--color-footer-fill),var(--tw-bg-opacity))}.hover\:bg-skin-body:hover{--tw-bg-opacity:1;background-color:rgba(249,250,251,var(--tw-bg-opacity));background-color:rgba(var(--color-body-fill),var(--tw-bg-opacity))}.hover\:bg-skin-primary:hover{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity));background-color:rgba(var(--color-text-primary),var(--tw-bg-opacity))}.hover\:bg-gray-800:hover{--tw-bg-opacity:1;background-color:rgba(31,41,55,var(--tw-bg-opacity))}.hover\:bg-red-50:hover{--tw-bg-opacity:1;background-color:rgba(254,242,242,var(--tw-bg-opacity))}.hover\:bg-green-100:hover,.hover\:bg-primary-100:hover{--tw-bg-opacity:1;background-color:rgba(209,250,229,var(--tw-bg-opacity))}.hover\:bg-secondary-50:hover{--tw-bg-opacity:1;background-color:rgba(248,250,252,var(--tw-bg-opacity))}.hover\:bg-primary-500:hover{--tw-bg-opacity:1;background-color:rgba(16,185,129,var(--tw-bg-opacity))}.hover\:bg-slate-100:hover{--tw-bg-opacity:1;background-color:rgba(241,245,249,var(--tw-bg-opacity))}.hover\:bg-primary-50:hover{--tw-bg-opacity:1;background-color:rgba(236,253,245,var(--tw-bg-opacity))}.hover\:bg-secondary-100:hover{--tw-bg-opacity:1;background-color:rgba(241,245,249,var(--tw-bg-opacity))}.hover\:bg-positive-50:hover{--tw-bg-opacity:1;background-color:rgba(236,253,245,var(--tw-bg-opacity))}.hover\:bg-negative-50:hover{--tw-bg-opacity:1;background-color:rgba(254,242,242,var(--tw-bg-opacity))}.hover\:bg-warning-50:hover{--tw-bg-opacity:1;background-color:rgba(255,251,235,var(--tw-bg-opacity))}.hover\:bg-info-50:hover{--tw-bg-opacity:1;background-color:rgba(239,246,255,var(--tw-bg-opacity))}.hover\:bg-slate-200:hover{--tw-bg-opacity:1;background-color:rgba(226,232,240,var(--tw-bg-opacity))}.hover\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgba(243,244,246,var(--tw-bg-opacity))}.hover\:bg-zinc-100:hover{--tw-bg-opacity:1;background-color:rgba(244,244,245,var(--tw-bg-opacity))}.hover\:bg-neutral-100:hover{--tw-bg-opacity:1;background-color:rgba(245,245,245,var(--tw-bg-opacity))}.hover\:bg-stone-100:hover{--tw-bg-opacity:1;background-color:rgba(245,245,244,var(--tw-bg-opacity))}.hover\:bg-orange-50:hover{--tw-bg-opacity:1;background-color:rgba(255,247,237,var(--tw-bg-opacity))}.hover\:bg-amber-50:hover{--tw-bg-opacity:1;background-color:rgba(255,251,235,var(--tw-bg-opacity))}.hover\:bg-lime-50:hover{--tw-bg-opacity:1;background-color:rgba(247,254,231,var(--tw-bg-opacity))}.hover\:bg-emerald-50:hover,.hover\:bg-green-50:hover{--tw-bg-opacity:1;background-color:rgba(236,253,245,var(--tw-bg-opacity))}.hover\:bg-teal-50:hover{--tw-bg-opacity:1;background-color:rgba(240,253,250,var(--tw-bg-opacity))}.hover\:bg-cyan-50:hover{--tw-bg-opacity:1;background-color:rgba(236,254,255,var(--tw-bg-opacity))}.hover\:bg-sky-50:hover{--tw-bg-opacity:1;background-color:rgba(240,249,255,var(--tw-bg-opacity))}.hover\:bg-blue-50:hover{--tw-bg-opacity:1;background-color:rgba(239,246,255,var(--tw-bg-opacity))}.hover\:bg-indigo-50:hover{--tw-bg-opacity:1;background-color:rgba(236,253,245,var(--tw-bg-opacity))}.hover\:bg-violet-50:hover{--tw-bg-opacity:1;background-color:rgba(245,243,255,var(--tw-bg-opacity))}.hover\:bg-purple-50:hover{--tw-bg-opacity:1;background-color:rgba(250,245,255,var(--tw-bg-opacity))}.hover\:bg-fuchsia-50:hover{--tw-bg-opacity:1;background-color:rgba(253,244,255,var(--tw-bg-opacity))}.hover\:bg-pink-50:hover{--tw-bg-opacity:1;background-color:rgba(253,242,248,var(--tw-bg-opacity))}.hover\:bg-rose-50:hover{--tw-bg-opacity:1;background-color:rgba(255,241,242,var(--tw-bg-opacity))}.hover\:bg-positive-100:hover{--tw-bg-opacity:1;background-color:rgba(209,250,229,var(--tw-bg-opacity))}.hover\:bg-negative-100:hover{--tw-bg-opacity:1;background-color:rgba(254,226,226,var(--tw-bg-opacity))}.hover\:bg-warning-100:hover{--tw-bg-opacity:1;background-color:rgba(254,243,199,var(--tw-bg-opacity))}.hover\:bg-info-100:hover{--tw-bg-opacity:1;background-color:rgba(219,234,254,var(--tw-bg-opacity))}.hover\:bg-red-100:hover{--tw-bg-opacity:1;background-color:rgba(254,226,226,var(--tw-bg-opacity))}.hover\:bg-orange-100:hover{--tw-bg-opacity:1;background-color:rgba(255,237,213,var(--tw-bg-opacity))}.hover\:bg-amber-100:hover{--tw-bg-opacity:1;background-color:rgba(254,243,199,var(--tw-bg-opacity))}.hover\:bg-lime-100:hover{--tw-bg-opacity:1;background-color:rgba(236,252,203,var(--tw-bg-opacity))}.hover\:bg-emerald-100:hover{--tw-bg-opacity:1;background-color:rgba(209,250,229,var(--tw-bg-opacity))}.hover\:bg-teal-100:hover{--tw-bg-opacity:1;background-color:rgba(204,251,241,var(--tw-bg-opacity))}.hover\:bg-cyan-100:hover{--tw-bg-opacity:1;background-color:rgba(207,250,254,var(--tw-bg-opacity))}.hover\:bg-sky-100:hover{--tw-bg-opacity:1;background-color:rgba(224,242,254,var(--tw-bg-opacity))}.hover\:bg-blue-100:hover{--tw-bg-opacity:1;background-color:rgba(219,234,254,var(--tw-bg-opacity))}.hover\:bg-indigo-100:hover{--tw-bg-opacity:1;background-color:rgba(209,250,229,var(--tw-bg-opacity))}.hover\:bg-violet-100:hover{--tw-bg-opacity:1;background-color:rgba(237,233,254,var(--tw-bg-opacity))}.hover\:bg-purple-100:hover{--tw-bg-opacity:1;background-color:rgba(243,232,255,var(--tw-bg-opacity))}.hover\:bg-fuchsia-100:hover{--tw-bg-opacity:1;background-color:rgba(250,232,255,var(--tw-bg-opacity))}.hover\:bg-pink-100:hover{--tw-bg-opacity:1;background-color:rgba(252,231,243,var(--tw-bg-opacity))}.hover\:bg-rose-100:hover{--tw-bg-opacity:1;background-color:rgba(255,228,230,var(--tw-bg-opacity))}.hover\:\!text-skin-primary-hover:hover{--tw-text-opacity:1!important;color:rgba(16,185,129,var(--tw-text-opacity))!important;color:rgba(var(--color-text-primary-hover),var(--tw-text-opacity))!important}.hover\:text-skin-primary-hover:hover{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity));color:rgba(var(--color-text-primary-hover),var(--tw-text-opacity))}.hover\:text-skin-base:hover{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity));color:rgba(var(--color-text-base),var(--tw-text-opacity))}.hover\:text-green-600:hover{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.hover\:text-green-500:hover{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.hover\:text-rose-500:hover{--tw-text-opacity:1;color:rgba(244,63,94,var(--tw-text-opacity))}.hover\:text-skin-inverted-muted:hover{--tw-text-opacity:1;color:rgba(31,41,55,var(--tw-text-opacity));color:rgba(var(--color-text-inverted-muted),var(--tw-text-opacity))}.hover\:text-skin-inverted:hover{--tw-text-opacity:1;color:rgba(17,24,39,var(--tw-text-opacity));color:rgba(var(--color-text-inverted),var(--tw-text-opacity))}.hover\:text-skin-menu-hover:hover{--tw-text-opacity:1;color:rgba(17,24,39,var(--tw-text-opacity));color:rgba(var(--color-text-link-menu-hover),var(--tw-text-opacity))}.hover\:text-blue-600:hover{--tw-text-opacity:1;color:rgba(37,99,235,var(--tw-text-opacity))}.hover\:text-skin-primary:hover{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity));color:rgba(var(--color-text-primary),var(--tw-text-opacity))}.hover\:text-red-500:hover{--tw-text-opacity:1;color:rgba(239,68,68,var(--tw-text-opacity))}.hover\:text-\[\#29aaec\]:hover{--tw-text-opacity:1;color:rgba(41,170,236,var(--tw-text-opacity))}.hover\:text-\[\#004182\]:hover{--tw-text-opacity:1;color:rgba(0,65,130,var(--tw-text-opacity))}.hover\:text-green-800:hover{--tw-text-opacity:1;color:rgba(6,95,70,var(--tw-text-opacity))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.hover\:text-yellow-600:hover{--tw-text-opacity:1;color:rgba(202,138,4,var(--tw-text-opacity))}.hover\:text-green-900:hover{--tw-text-opacity:1;color:rgba(6,78,59,var(--tw-text-opacity))}.hover\:text-skin-muted:hover{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity));color:rgba(var(--color-text-muted),var(--tw-text-opacity))}.hover\:text-gray-500:hover{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.hover\:text-negative-500:hover{--tw-text-opacity:1;color:rgba(239,68,68,var(--tw-text-opacity))}.hover\:text-secondary-700:hover{--tw-text-opacity:1;color:rgba(51,65,85,var(--tw-text-opacity))}.hover\:text-primary-500:hover{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.hover\:text-negative-400:hover{--tw-text-opacity:1;color:rgba(248,113,113,var(--tw-text-opacity))}.hover\:text-secondary-500:hover{--tw-text-opacity:1;color:rgba(100,116,139,var(--tw-text-opacity))}.hover\:text-secondary-900:hover{--tw-text-opacity:1;color:rgba(15,23,42,var(--tw-text-opacity))}.hover\:underline:hover{-webkit-text-decoration-line:underline;text-decoration-line:underline}.hover\:opacity-50:hover{opacity:.5}.hover\:shadow-sm:hover{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.hover\:ring-primary-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.hover\:ring-secondary-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.hover\:ring-positive-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.hover\:ring-negative-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(220,38,38,var(--tw-ring-opacity))}.hover\:ring-warning-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(217,119,6,var(--tw-ring-opacity))}.hover\:ring-info-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(37,99,235,var(--tw-ring-opacity))}.hover\:ring-gray-900:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(17,24,39,var(--tw-ring-opacity))}.hover\:ring-slate-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.hover\:ring-gray-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(75,85,99,var(--tw-ring-opacity))}.hover\:ring-zinc-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(82,82,91,var(--tw-ring-opacity))}.hover\:ring-neutral-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(82,82,82,var(--tw-ring-opacity))}.hover\:ring-stone-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(87,83,78,var(--tw-ring-opacity))}.hover\:ring-red-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(220,38,38,var(--tw-ring-opacity))}.hover\:ring-orange-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(234,88,12,var(--tw-ring-opacity))}.hover\:ring-amber-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(217,119,6,var(--tw-ring-opacity))}.hover\:ring-lime-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(101,163,13,var(--tw-ring-opacity))}.hover\:ring-emerald-600:hover,.hover\:ring-green-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.hover\:ring-teal-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(13,148,136,var(--tw-ring-opacity))}.hover\:ring-cyan-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(8,145,178,var(--tw-ring-opacity))}.hover\:ring-sky-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(2,132,199,var(--tw-ring-opacity))}.hover\:ring-blue-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(37,99,235,var(--tw-ring-opacity))}.hover\:ring-indigo-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.hover\:ring-violet-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(124,58,237,var(--tw-ring-opacity))}.hover\:ring-purple-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(147,51,234,var(--tw-ring-opacity))}.hover\:ring-fuchsia-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(192,38,211,var(--tw-ring-opacity))}.hover\:ring-pink-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(219,39,119,var(--tw-ring-opacity))}.hover\:ring-rose-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(225,29,72,var(--tw-ring-opacity))}.focus\:z-10:focus{z-index:10}.focus\:border:focus{border-width:1px}.focus\:border-0:focus{border-width:0}.focus\:border-flag-green:focus{--tw-border-opacity:1;border-color:rgba(9,145,112,var(--tw-border-opacity))}.focus\:border-negative-500:focus{--tw-border-opacity:1;border-color:rgba(239,68,68,var(--tw-border-opacity))}.focus\:border-transparent:focus{border-color:transparent}.focus\:border-red-500:focus{--tw-border-opacity:1;border-color:rgba(239,68,68,var(--tw-border-opacity))}.focus\:border-green-500:focus{--tw-border-opacity:1;border-color:rgba(16,185,129,var(--tw-border-opacity))}.focus\:border-negative-700:focus{--tw-border-opacity:1;border-color:rgba(185,28,28,var(--tw-border-opacity))}.focus\:border-skin-input:focus{--tw-border-opacity:1;border-color:rgba(var(--color-input-border),var(--tw-border-opacity))}.focus\:border-green-300:focus{--tw-border-opacity:1;border-color:rgba(110,231,183,var(--tw-border-opacity))}.focus\:border-skin-base:focus{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.focus\:border-blue-300:focus{--tw-border-opacity:1;border-color:rgba(147,197,253,var(--tw-border-opacity))}.focus\:border-primary-400:focus{--tw-border-opacity:1;border-color:rgba(52,211,153,var(--tw-border-opacity))}.focus\:border-negative-400:focus{--tw-border-opacity:1;border-color:rgba(248,113,113,var(--tw-border-opacity))}.focus\:border-primary-500:focus{--tw-border-opacity:1;border-color:rgba(16,185,129,var(--tw-border-opacity))}.focus\:bg-green-100:focus,.focus\:bg-primary-100:focus{--tw-bg-opacity:1;background-color:rgba(209,250,229,var(--tw-bg-opacity))}.focus\:\!text-skin-primary-hover:focus{--tw-text-opacity:1!important;color:rgba(16,185,129,var(--tw-text-opacity))!important;color:rgba(var(--color-text-primary-hover),var(--tw-text-opacity))!important}.focus\:text-skin-base:focus{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity));color:rgba(var(--color-text-base),var(--tw-text-opacity))}.focus\:text-green-600:focus{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.focus\:text-green-800:focus,.focus\:text-primary-800:focus{--tw-text-opacity:1;color:rgba(6,95,70,var(--tw-text-opacity))}.focus\:underline:focus{-webkit-text-decoration-line:underline;text-decoration-line:underline}.focus\:placeholder-skin-input-focus:focus::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(107,114,128,var(--tw-placeholder-opacity));color:rgba(var(--color-text-base),var(--tw-placeholder-opacity))}.focus\:placeholder-skin-input-focus:focus:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(107,114,128,var(--tw-placeholder-opacity));color:rgba(var(--color-text-base),var(--tw-placeholder-opacity))}.focus\:placeholder-skin-input-focus:focus::placeholder{--tw-placeholder-opacity:1;color:rgba(107,114,128,var(--tw-placeholder-opacity));color:rgba(var(--color-text-base),var(--tw-placeholder-opacity))}.focus\:shadow-none:focus{--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent;box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.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-1:focus,.focus\:ring-2:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.focus\:ring-1: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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-0: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(var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-0:focus,.focus\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.focus\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-inset:focus{--tw-ring-inset:inset}.focus\:ring-green-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(16,185,129,var(--tw-ring-opacity))}.focus\:ring-flag-green:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(9,145,112,var(--tw-ring-opacity))}.focus\:ring-negative-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(239,68,68,var(--tw-ring-opacity))}.focus\:ring-transparent:focus{--tw-ring-color:transparent}.focus\:ring-red-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(239,68,68,var(--tw-ring-opacity))}.focus\:ring-blue-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(37,99,235,var(--tw-ring-opacity))}.focus\:ring-primary-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.focus\:ring-secondary-200:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(226,232,240,var(--tw-ring-opacity))}.focus\:ring-primary-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(16,185,129,var(--tw-ring-opacity))}.focus\:ring-opacity-50:focus{--tw-ring-opacity:0.5}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus\:ring-offset-0:focus{--tw-ring-offset-width:0px}.focus\:ring-offset-body:focus{--tw-ring-offset-color:rgb(var(--color-body-fill))}.focus\:ring-offset-blue-50:focus{--tw-ring-offset-color:#eff6ff}.active\:bg-skin-footer:active{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity));background-color:rgba(var(--color-footer-fill),var(--tw-bg-opacity))}.active\:bg-gray-100:active{--tw-bg-opacity:1;background-color:rgba(243,244,246,var(--tw-bg-opacity))}.active\:text-skin-base:active{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity));color:rgba(var(--color-text-base),var(--tw-text-opacity))}.active\:text-gray-700:active{--tw-text-opacity:1;color:rgba(55,65,81,var(--tw-text-opacity))}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:border-primary-400:disabled{--tw-border-opacity:1;border-color:rgba(52,211,153,var(--tw-border-opacity))}.disabled\:bg-primary-400:disabled{--tw-bg-opacity:1;background-color:rgba(52,211,153,var(--tw-bg-opacity))}.disabled\:text-primary-400:disabled{--tw-text-opacity:1;color:rgba(52,211,153,var(--tw-text-opacity))}.disabled\:opacity-80:disabled{opacity:.8}.group:hover .group-hover\:block{display:block}.group:hover .group-hover\:hidden{display:none}.group:hover .group-hover\:rotate-90{--tw-rotate:90deg;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))}.group:hover .group-hover\:bg-skin-card-gray{--tw-bg-opacity:1;background-color:rgba(243,244,246,var(--tw-bg-opacity));background-color:rgba(var(--color-card-gray),var(--tw-bg-opacity))}.group:hover .group-hover\:text-green-400{--tw-text-opacity:1;color:rgba(52,211,153,var(--tw-text-opacity))}.group:hover .group-hover\:text-skin-base{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity));color:rgba(var(--color-text-base),var(--tw-text-opacity))}.group:hover .group-hover\:text-green-600{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.group:hover .group-hover\:text-white{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.group:hover .group-hover\:text-green-200{--tw-text-opacity:1;color:rgba(167,243,208,var(--tw-text-opacity))}.group:hover .group-hover\:text-skin-primary{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity));color:rgba(var(--color-text-primary),var(--tw-text-opacity))}.group:hover .group-hover\:underline{-webkit-text-decoration-line:underline;text-decoration-line:underline}.group:hover .group-hover\:opacity-75{opacity:.75}.group:focus .group-focus\:text-primary-700{--tw-text-opacity:1;color:rgba(4,120,87,var(--tw-text-opacity))}.group:focus .group-focus\:ring-2{--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),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.group:focus .group-focus\:ring-primary-600{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.group:focus .group-focus\:ring-negative-600{--tw-ring-opacity:1;--tw-ring-color:rgba(220,38,38,var(--tw-ring-opacity))}.group:focus .group-focus\:ring-offset-2{--tw-ring-offset-width:2px}.peer:checked~.peer-checked\:bg-primary-600{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.peer:focus~.peer-focus\:ring-2{--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),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.peer:focus~.peer-focus\:ring-primary-600{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.peer:focus~.peer-focus\:ring-negative-600{--tw-ring-opacity:1;--tw-ring-color:rgba(220,38,38,var(--tw-ring-opacity))}.peer:focus~.peer-focus\:ring-offset-2{--tw-ring-offset-width:2px}.dark .dark\:border-0{border-width:0}.dark .dark\:border{border-width:1px}.dark .dark\:border-none{border-style:none}.dark .dark\:border-slate-700{--tw-border-opacity:1;border-color:rgba(51,65,85,var(--tw-border-opacity))}.dark .dark\:border-gray-700{--tw-border-opacity:1;border-color:rgba(55,65,81,var(--tw-border-opacity))}.dark .dark\:border-secondary-600{--tw-border-opacity:1;border-color:rgba(71,85,105,var(--tw-border-opacity))}.dark .dark\:border-gray-400{--tw-border-opacity:1;border-color:rgba(156,163,175,var(--tw-border-opacity))}.dark .dark\:border-negative-700{--tw-border-opacity:1;border-color:rgba(185,28,28,var(--tw-border-opacity))}.dark .dark\:border-secondary-400{--tw-border-opacity:1;border-color:rgba(148,163,184,var(--tw-border-opacity))}.dark .dark\:border-negative-600{--tw-border-opacity:1;border-color:rgba(220,38,38,var(--tw-border-opacity))}.dark .dark\:border-secondary-700{--tw-border-opacity:1;border-color:rgba(51,65,85,var(--tw-border-opacity))}.dark .dark\:border-secondary-500,.dark .dark\:border-slate-500{--tw-border-opacity:1;border-color:rgba(100,116,139,var(--tw-border-opacity))}.dark .dark\:border-slate-400{--tw-border-opacity:1;border-color:rgba(148,163,184,var(--tw-border-opacity))}.dark .dark\:border-zinc-400{--tw-border-opacity:1;border-color:rgba(161,161,170,var(--tw-border-opacity))}.dark .dark\:border-neutral-400{--tw-border-opacity:1;border-color:rgba(163,163,163,var(--tw-border-opacity))}.dark .dark\:border-stone-400{--tw-border-opacity:1;border-color:rgba(168,162,158,var(--tw-border-opacity))}.dark .dark\:bg-primary-700{--tw-bg-opacity:1;background-color:rgba(4,120,87,var(--tw-bg-opacity))}.dark .dark\:bg-secondary-700{--tw-bg-opacity:1;background-color:rgba(51,65,85,var(--tw-bg-opacity))}.dark .dark\:bg-positive-700{--tw-bg-opacity:1;background-color:rgba(4,120,87,var(--tw-bg-opacity))}.dark .dark\:bg-negative-700{--tw-bg-opacity:1;background-color:rgba(185,28,28,var(--tw-bg-opacity))}.dark .dark\:bg-warning-700{--tw-bg-opacity:1;background-color:rgba(180,83,9,var(--tw-bg-opacity))}.dark .dark\:bg-info-700{--tw-bg-opacity:1;background-color:rgba(29,78,216,var(--tw-bg-opacity))}.dark .dark\:bg-gray-700{--tw-bg-opacity:1;background-color:rgba(55,65,81,var(--tw-bg-opacity))}.dark .dark\:bg-slate-700{--tw-bg-opacity:1;background-color:rgba(51,65,85,var(--tw-bg-opacity))}.dark .dark\:bg-zinc-700{--tw-bg-opacity:1;background-color:rgba(63,63,70,var(--tw-bg-opacity))}.dark .dark\:bg-neutral-700{--tw-bg-opacity:1;background-color:rgba(64,64,64,var(--tw-bg-opacity))}.dark .dark\:bg-stone-700{--tw-bg-opacity:1;background-color:rgba(68,64,60,var(--tw-bg-opacity))}.dark .dark\:bg-red-700{--tw-bg-opacity:1;background-color:rgba(185,28,28,var(--tw-bg-opacity))}.dark .dark\:bg-orange-700{--tw-bg-opacity:1;background-color:rgba(194,65,12,var(--tw-bg-opacity))}.dark .dark\:bg-amber-700{--tw-bg-opacity:1;background-color:rgba(180,83,9,var(--tw-bg-opacity))}.dark .dark\:bg-lime-700{--tw-bg-opacity:1;background-color:rgba(77,124,15,var(--tw-bg-opacity))}.dark .dark\:bg-emerald-700,.dark .dark\:bg-green-700{--tw-bg-opacity:1;background-color:rgba(4,120,87,var(--tw-bg-opacity))}.dark .dark\:bg-teal-700{--tw-bg-opacity:1;background-color:rgba(15,118,110,var(--tw-bg-opacity))}.dark .dark\:bg-cyan-700{--tw-bg-opacity:1;background-color:rgba(14,116,144,var(--tw-bg-opacity))}.dark .dark\:bg-sky-700{--tw-bg-opacity:1;background-color:rgba(3,105,161,var(--tw-bg-opacity))}.dark .dark\:bg-blue-700{--tw-bg-opacity:1;background-color:rgba(29,78,216,var(--tw-bg-opacity))}.dark .dark\:bg-indigo-700{--tw-bg-opacity:1;background-color:rgba(4,120,87,var(--tw-bg-opacity))}.dark .dark\:bg-violet-700{--tw-bg-opacity:1;background-color:rgba(109,40,217,var(--tw-bg-opacity))}.dark .dark\:bg-purple-700{--tw-bg-opacity:1;background-color:rgba(126,34,206,var(--tw-bg-opacity))}.dark .dark\:bg-fuchsia-700{--tw-bg-opacity:1;background-color:rgba(162,28,175,var(--tw-bg-opacity))}.dark .dark\:bg-pink-700{--tw-bg-opacity:1;background-color:rgba(190,24,93,var(--tw-bg-opacity))}.dark .dark\:bg-rose-700{--tw-bg-opacity:1;background-color:rgba(190,18,60,var(--tw-bg-opacity))}.dark .dark\:bg-gray-600{--tw-bg-opacity:1;background-color:rgba(75,85,99,var(--tw-bg-opacity))}.dark .dark\:bg-secondary-800{--tw-bg-opacity:1;background-color:rgba(30,41,59,var(--tw-bg-opacity))}.dark .dark\:bg-secondary-600{--tw-bg-opacity:1;background-color:rgba(71,85,105,var(--tw-bg-opacity))}.dark .dark\:bg-transparent{background-color:transparent}.dark .dark\:bg-slate-600{--tw-bg-opacity:1;background-color:rgba(71,85,105,var(--tw-bg-opacity))}.dark .dark\:bg-secondary-200{--tw-bg-opacity:1;background-color:rgba(226,232,240,var(--tw-bg-opacity))}.dark .dark\:bg-opacity-60{--tw-bg-opacity:0.6}.dark .dark\:text-slate-200{--tw-text-opacity:1;color:rgba(226,232,240,var(--tw-text-opacity))}.dark .dark\:text-gray-200{--tw-text-opacity:1;color:rgba(229,231,235,var(--tw-text-opacity))}.dark .dark\:text-secondary-400{--tw-text-opacity:1;color:rgba(148,163,184,var(--tw-text-opacity))}.dark .dark\:text-gray-600{--tw-text-opacity:1;color:rgba(75,85,99,var(--tw-text-opacity))}.dark .dark\:text-negative-600{--tw-text-opacity:1;color:rgba(220,38,38,var(--tw-text-opacity))}.dark .dark\:text-secondary-500{--tw-text-opacity:1;color:rgba(100,116,139,var(--tw-text-opacity))}.dark .dark\:text-slate-400{--tw-text-opacity:1;color:rgba(148,163,184,var(--tw-text-opacity))}.dark .dark\:text-secondary-600{--tw-text-opacity:1;color:rgba(71,85,105,var(--tw-text-opacity))}.dark .dark\:text-gray-400{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}.dark .dark\:text-slate-500{--tw-text-opacity:1;color:rgba(100,116,139,var(--tw-text-opacity))}.dark .dark\:text-zinc-400{--tw-text-opacity:1;color:rgba(161,161,170,var(--tw-text-opacity))}.dark .dark\:text-neutral-400{--tw-text-opacity:1;color:rgba(163,163,163,var(--tw-text-opacity))}.dark .dark\:text-stone-400{--tw-text-opacity:1;color:rgba(168,162,158,var(--tw-text-opacity))}.dark .dark\:text-slate-300{--tw-text-opacity:1;color:rgba(203,213,225,var(--tw-text-opacity))}.dark .dark\:text-negative-500{--tw-text-opacity:1;color:rgba(239,68,68,var(--tw-text-opacity))}.dark .dark\:placeholder-negative-500::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(239,68,68,var(--tw-placeholder-opacity))}.dark .dark\:placeholder-negative-500:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(239,68,68,var(--tw-placeholder-opacity))}.dark .dark\:placeholder-negative-500::placeholder{--tw-placeholder-opacity:1;color:rgba(239,68,68,var(--tw-placeholder-opacity))}.dark .dark\:placeholder-secondary-500::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(100,116,139,var(--tw-placeholder-opacity))}.dark .dark\:placeholder-secondary-500:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(100,116,139,var(--tw-placeholder-opacity))}.dark .dark\:placeholder-secondary-500::placeholder{--tw-placeholder-opacity:1;color:rgba(100,116,139,var(--tw-placeholder-opacity))}.dark .dark\:ring-primary-700{--tw-ring-opacity:1;--tw-ring-color:rgba(4,120,87,var(--tw-ring-opacity))}.dark .dark\:ring-secondary-700{--tw-ring-opacity:1;--tw-ring-color:rgba(51,65,85,var(--tw-ring-opacity))}.dark .dark\:ring-positive-700{--tw-ring-opacity:1;--tw-ring-color:rgba(4,120,87,var(--tw-ring-opacity))}.dark .dark\:ring-negative-700{--tw-ring-opacity:1;--tw-ring-color:rgba(185,28,28,var(--tw-ring-opacity))}.dark .dark\:ring-warning-700{--tw-ring-opacity:1;--tw-ring-color:rgba(180,83,9,var(--tw-ring-opacity))}.dark .dark\:ring-info-700{--tw-ring-opacity:1;--tw-ring-color:rgba(29,78,216,var(--tw-ring-opacity))}.dark .dark\:ring-gray-700{--tw-ring-opacity:1;--tw-ring-color:rgba(55,65,81,var(--tw-ring-opacity))}.dark .dark\:ring-slate-700{--tw-ring-opacity:1;--tw-ring-color:rgba(51,65,85,var(--tw-ring-opacity))}.dark .dark\:ring-zinc-700{--tw-ring-opacity:1;--tw-ring-color:rgba(63,63,70,var(--tw-ring-opacity))}.dark .dark\:ring-neutral-700{--tw-ring-opacity:1;--tw-ring-color:rgba(64,64,64,var(--tw-ring-opacity))}.dark .dark\:ring-stone-700{--tw-ring-opacity:1;--tw-ring-color:rgba(68,64,60,var(--tw-ring-opacity))}.dark .dark\:ring-red-700{--tw-ring-opacity:1;--tw-ring-color:rgba(185,28,28,var(--tw-ring-opacity))}.dark .dark\:ring-orange-700{--tw-ring-opacity:1;--tw-ring-color:rgba(194,65,12,var(--tw-ring-opacity))}.dark .dark\:ring-amber-700{--tw-ring-opacity:1;--tw-ring-color:rgba(180,83,9,var(--tw-ring-opacity))}.dark .dark\:ring-lime-700{--tw-ring-opacity:1;--tw-ring-color:rgba(77,124,15,var(--tw-ring-opacity))}.dark .dark\:ring-emerald-700,.dark .dark\:ring-green-700{--tw-ring-opacity:1;--tw-ring-color:rgba(4,120,87,var(--tw-ring-opacity))}.dark .dark\:ring-teal-700{--tw-ring-opacity:1;--tw-ring-color:rgba(15,118,110,var(--tw-ring-opacity))}.dark .dark\:ring-cyan-700{--tw-ring-opacity:1;--tw-ring-color:rgba(14,116,144,var(--tw-ring-opacity))}.dark .dark\:ring-sky-700{--tw-ring-opacity:1;--tw-ring-color:rgba(3,105,161,var(--tw-ring-opacity))}.dark .dark\:ring-blue-700{--tw-ring-opacity:1;--tw-ring-color:rgba(29,78,216,var(--tw-ring-opacity))}.dark .dark\:ring-indigo-700{--tw-ring-opacity:1;--tw-ring-color:rgba(4,120,87,var(--tw-ring-opacity))}.dark .dark\:ring-violet-700{--tw-ring-opacity:1;--tw-ring-color:rgba(109,40,217,var(--tw-ring-opacity))}.dark .dark\:ring-purple-700{--tw-ring-opacity:1;--tw-ring-color:rgba(126,34,206,var(--tw-ring-opacity))}.dark .dark\:ring-fuchsia-700{--tw-ring-opacity:1;--tw-ring-color:rgba(162,28,175,var(--tw-ring-opacity))}.dark .dark\:ring-pink-700{--tw-ring-opacity:1;--tw-ring-color:rgba(190,24,93,var(--tw-ring-opacity))}.dark .dark\:ring-rose-700{--tw-ring-opacity:1;--tw-ring-color:rgba(190,18,60,var(--tw-ring-opacity))}.dark .dark\:ring-slate-600{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.dark .dark\:ring-gray-600{--tw-ring-opacity:1;--tw-ring-color:rgba(75,85,99,var(--tw-ring-opacity))}.dark .dark\:ring-zinc-600{--tw-ring-opacity:1;--tw-ring-color:rgba(82,82,91,var(--tw-ring-opacity))}.dark .dark\:ring-neutral-600{--tw-ring-opacity:1;--tw-ring-color:rgba(82,82,82,var(--tw-ring-opacity))}.dark .dark\:ring-stone-600{--tw-ring-opacity:1;--tw-ring-color:rgba(87,83,78,var(--tw-ring-opacity))}.dark .dark\:ring-negative-600{--tw-ring-opacity:1;--tw-ring-color:rgba(220,38,38,var(--tw-ring-opacity))}.dark .dark\:ring-offset-slate-800{--tw-ring-offset-color:#1e293b}.dark .dark\:ring-offset-gray-800{--tw-ring-offset-color:#1f2937}.dark .dark\:ring-offset-slate-700{--tw-ring-offset-color:#334155}.dark .dark\:checked\:border-secondary-600:checked{--tw-border-opacity:1;border-color:rgba(71,85,105,var(--tw-border-opacity))}.dark .dark\:checked\:border-negative-700:checked{--tw-border-opacity:1;border-color:rgba(185,28,28,var(--tw-border-opacity))}.dark .dark\:checked\:bg-negative-700:checked{--tw-bg-opacity:1;background-color:rgba(185,28,28,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-primary-600:hover{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-secondary-600:hover{--tw-bg-opacity:1;background-color:rgba(71,85,105,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-positive-600:hover{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-negative-600:hover{--tw-bg-opacity:1;background-color:rgba(220,38,38,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-warning-600:hover{--tw-bg-opacity:1;background-color:rgba(217,119,6,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-info-600:hover{--tw-bg-opacity:1;background-color:rgba(37,99,235,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-gray-600:hover{--tw-bg-opacity:1;background-color:rgba(75,85,99,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-slate-600:hover{--tw-bg-opacity:1;background-color:rgba(71,85,105,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-zinc-600:hover{--tw-bg-opacity:1;background-color:rgba(82,82,91,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-neutral-600:hover{--tw-bg-opacity:1;background-color:rgba(82,82,82,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-stone-600:hover{--tw-bg-opacity:1;background-color:rgba(87,83,78,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-red-600:hover{--tw-bg-opacity:1;background-color:rgba(220,38,38,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-orange-600:hover{--tw-bg-opacity:1;background-color:rgba(234,88,12,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-amber-600:hover{--tw-bg-opacity:1;background-color:rgba(217,119,6,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-lime-600:hover{--tw-bg-opacity:1;background-color:rgba(101,163,13,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-emerald-600:hover,.dark .dark\:hover\:bg-green-600:hover{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-teal-600:hover{--tw-bg-opacity:1;background-color:rgba(13,148,136,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-cyan-600:hover{--tw-bg-opacity:1;background-color:rgba(8,145,178,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-sky-600:hover{--tw-bg-opacity:1;background-color:rgba(2,132,199,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-blue-600:hover{--tw-bg-opacity:1;background-color:rgba(37,99,235,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-indigo-600:hover{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-violet-600:hover{--tw-bg-opacity:1;background-color:rgba(124,58,237,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-purple-600:hover{--tw-bg-opacity:1;background-color:rgba(147,51,234,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-fuchsia-600:hover{--tw-bg-opacity:1;background-color:rgba(192,38,211,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-pink-600:hover{--tw-bg-opacity:1;background-color:rgba(219,39,119,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-rose-600:hover{--tw-bg-opacity:1;background-color:rgba(225,29,72,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-secondary-700:hover,.dark .dark\:hover\:bg-slate-700:hover{--tw-bg-opacity:1;background-color:rgba(51,65,85,var(--tw-bg-opacity))}.dark .dark\:hover\:text-secondary-600:hover{--tw-text-opacity:1;color:rgba(71,85,105,var(--tw-text-opacity))}.dark .dark\:hover\:text-secondary-100:hover{--tw-text-opacity:1;color:rgba(241,245,249,var(--tw-text-opacity))}.dark .dark\:hover\:ring-2:hover{--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),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.dark .dark\:hover\:ring-primary-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-secondary-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-positive-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-negative-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(220,38,38,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-warning-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(217,119,6,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-info-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(37,99,235,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-gray-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(75,85,99,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-slate-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-zinc-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(82,82,91,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-neutral-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(82,82,82,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-stone-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(87,83,78,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-red-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(220,38,38,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-orange-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(234,88,12,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-amber-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(217,119,6,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-lime-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(101,163,13,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-emerald-600:hover,.dark .dark\:hover\:ring-green-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-teal-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(13,148,136,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-cyan-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(8,145,178,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-sky-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(2,132,199,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-blue-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(37,99,235,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-indigo-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-violet-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(124,58,237,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-purple-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(147,51,234,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-fuchsia-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(192,38,211,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-pink-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(219,39,119,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-rose-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(225,29,72,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-gray-400:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(156,163,175,var(--tw-ring-opacity))}.dark .dark\:focus\:border-secondary-500:focus{--tw-border-opacity:1;border-color:rgba(100,116,139,var(--tw-border-opacity))}.dark .dark\:focus\:border-negative-600:focus{--tw-border-opacity:1;border-color:rgba(220,38,38,var(--tw-border-opacity))}.dark .dark\:focus\:bg-secondary-700:focus{--tw-bg-opacity:1;background-color:rgba(51,65,85,var(--tw-bg-opacity))}.dark .dark\:focus\:ring-secondary-400:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(148,163,184,var(--tw-ring-opacity))}.dark .dark\:focus\:ring-secondary-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.dark .dark\:focus\:ring-offset-secondary-800:focus{--tw-ring-offset-color:#1e293b}.dark .group:hover .dark\:group-hover\:text-gray-500{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.dark .group:focus .dark\:group-focus\:text-primary-500{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.dark .group:focus .dark\:group-focus\:ring-secondary-600{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.dark .group:focus .dark\:group-focus\:ring-negative-700{--tw-ring-opacity:1;--tw-ring-color:rgba(185,28,28,var(--tw-ring-opacity))}.dark .peer:checked~.dark\:peer-checked\:bg-secondary-700{--tw-bg-opacity:1;background-color:rgba(51,65,85,var(--tw-bg-opacity))}.dark .peer:focus~.dark\:peer-focus\:ring-secondary-600{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.dark .peer:focus~.dark\:peer-focus\:ring-negative-700{--tw-ring-opacity:1;--tw-ring-color:rgba(185,28,28,var(--tw-ring-opacity))}.dark .peer:focus~.dark\:peer-focus\:ring-offset-secondary-800{--tw-ring-offset-color:#1e293b}@media (min-width:640px){.sm\:prose-base{font-size:1rem;line-height:1.75}.sm\:prose-base :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}.sm\:prose-base :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.sm\:prose-base :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6em;margin-top:1.6em;padding-left:1em}.sm\:prose-base :where(h1):not(:where([class~=not-prose] *)){font-size:2.25em;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.sm\:prose-base :where(h2):not(:where([class~=not-prose] *)){font-size:1.5em;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.sm\:prose-base :where(h3):not(:where([class~=not-prose] *)){font-size:1.25em;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.sm\:prose-base :where(h4):not(:where([class~=not-prose] *)){line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.sm\:prose-base :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.sm\:prose-base :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.sm\:prose-base :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.sm\:prose-base :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.sm\:prose-base :where(figcaption):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.sm\:prose-base :where(code):not(:where([class~=not-prose] *)){font-size:.875em}.sm\:prose-base :where(h2 code):not(:where([class~=not-prose] *)){font-size:.875em}.sm\:prose-base :where(h3 code):not(:where([class~=not-prose] *)){font-size:.9em}.sm\:prose-base :where(pre):not(:where([class~=not-prose] *)){border-radius:.375rem;font-size:.875em;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;padding:.8571429em 1.1428571em}.sm\:prose-base :where(ol):not(:where([class~=not-prose] *)){padding-left:1.625em}.sm\:prose-base :where(ul):not(:where([class~=not-prose] *)){padding-left:1.625em}.sm\:prose-base :where(li):not(:where([class~=not-prose] *)){margin-bottom:.5em;margin-top:.5em}.sm\:prose-base :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.375em}.sm\:prose-base :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.375em}.sm\:prose-base>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.sm\:prose-base>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.sm\:prose-base>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.sm\:prose-base>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.sm\:prose-base>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.sm\:prose-base :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.sm\:prose-base :where(hr):not(:where([class~=not-prose] *)){margin-bottom:3em;margin-top:3em}.sm\:prose-base :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.sm\:prose-base :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.sm\:prose-base :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.sm\:prose-base :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.sm\:prose-base :where(table):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.7142857}.sm\:prose-base :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.5714286em;padding-left:.5714286em;padding-right:.5714286em}.sm\:prose-base :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.sm\:prose-base :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.sm\:prose-base :where(tbody td):not(:where([class~=not-prose] *)){padding:.5714286em}.sm\:prose-base :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.sm\:prose-base :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.sm\:prose-base>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.sm\:prose-base>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.sm\:absolute{position:absolute}.sm\:inset-auto{bottom:auto;left:auto;right:auto;top:auto}.sm\:top-0{top:0}.sm\:right-0{right:0}.sm\:left-0{left:0}.sm\:bottom-0{bottom:0}.sm\:z-10{z-index:10}.sm\:order-last{order:9999}.sm\:col-span-1{grid-column:span 1/span 1}.sm\:col-span-2{grid-column:span 2/span 2}.sm\:col-span-3{grid-column:span 3/span 3}.sm\:mx-auto{margin-left:auto;margin-right:auto}.sm\:-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.sm\:-mx-4{margin-left:-1rem;margin-right:-1rem}.sm\:mx-0{margin-left:0;margin-right:0}.sm\:my-8{margin-bottom:2rem;margin-top:2rem}.sm\:mt-0{margin-top:0}.sm\:mt-14{margin-top:3.5rem}.sm\:mt-5{margin-top:1.25rem}.sm\:ml-3{margin-left:.75rem}.sm\:mt-12{margin-top:3rem}.sm\:ml-0{margin-left:0}.sm\:mt-8{margin-top:2rem}.sm\:ml-2{margin-left:.5rem}.sm\:mt-px{margin-top:1px}.sm\:-mt-16{margin-top:-4rem}.sm\:ml-16{margin-left:4rem}.sm\:ml-4{margin-left:1rem}.sm\:mt-6{margin-top:1.5rem}.sm\:mt-16{margin-top:4rem}.sm\:mt-11{margin-top:2.75rem}.sm\:mb-16{margin-bottom:4rem}.sm\:mb-11{margin-bottom:2.75rem}.sm\:block{display:block}.sm\:inline-block{display:inline-block}.sm\:flex{display:flex}.sm\:inline-flex{display:inline-flex}.sm\:grid{display:grid}.sm\:hidden{display:none}.sm\:h-12{height:3rem}.sm\:h-20{height:5rem}.sm\:h-16{height:4rem}.sm\:h-10{height:2.5rem}.sm\:h-32{height:8rem}.sm\:h-9{height:2.25rem}.sm\:h-screen{height:100vh}.sm\:h-48{height:12rem}.sm\:h-6{height:1.5rem}.sm\:max-h-60{max-height:15rem}.sm\:min-h-max{min-height:-webkit-max-content;min-height:-moz-max-content;min-height:max-content}.sm\:w-auto{width:auto}.sm\:w-32{width:8rem}.sm\:w-12{width:3rem}.sm\:w-10{width:2.5rem}.sm\:w-full{width:100%}.sm\:w-72{width:18rem}.sm\:w-48{width:12rem}.sm\:w-6{width:1.5rem}.sm\:min-w-0{min-width:0}.sm\:max-w-xl{max-width:36rem}.sm\:max-w-2xl{max-width:42rem}.sm\:max-w-3xl{max-width:48rem}.sm\:max-w-4xl{max-width:56rem}.sm\:max-w-lg{max-width:32rem}.sm\:max-w-md{max-width:28rem}.sm\:max-w-none{max-width:none}.sm\:max-w-sm{max-width:24rem}.sm\:max-w-5xl{max-width:64rem}.sm\:max-w-6xl{max-width:72rem}.sm\:max-w-7xl{max-width:80rem}.sm\:flex-1{flex:1 1 0%}.sm\:flex-auto{flex:1 1 auto}.sm\:flex-none{flex:none}.sm\:shrink-0{flex-shrink:0}.sm\:translate-y-0{--tw-translate-y:0px}.sm\:translate-x-2,.sm\:translate-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))}.sm\:translate-x-2{--tw-translate-x:0.5rem}.sm\:translate-x-0{--tw-translate-x:0px}.sm\:scale-95,.sm\:translate-x-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))}.sm\:scale-95{--tw-scale-x:.95;--tw-scale-y:.95}.sm\:scale-100{--tw-scale-x:1;--tw-scale-y: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))}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.sm\:grid-cols-none{grid-template-columns:none}.sm\:flex-row{flex-direction:row}.sm\:flex-row-reverse{flex-direction:row-reverse}.sm\:items-start{align-items:flex-start}.sm\:items-end{align-items:flex-end}.sm\:items-center{align-items:center}.sm\:justify-start{justify-content:flex-start}.sm\:justify-end{justify-content:flex-end}.sm\:justify-center{justify-content:center}.sm\:justify-between{justify-content:space-between}.sm\:gap-6{gap:1.5rem}.sm\:gap-8{gap:2rem}.sm\:gap-12{gap:3rem}.sm\:gap-4{gap:1rem}.sm\:gap-10{gap:2.5rem}.sm\:gap-0\.5{gap:.125rem}.sm\:gap-0{gap:0}.sm\:gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.sm\:gap-y-12{row-gap:3rem}.sm\:gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.sm\:gap-y-0{row-gap:0}.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\: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-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.25rem*var(--tw-space-y-reverse));margin-top:calc(1.25rem*(1 - var(--tw-space-y-reverse)))}.sm\: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))}.sm\: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)))}.sm\:space-x-5>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.25rem*var(--tw-space-x-reverse))}.sm\:space-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.5rem*var(--tw-space-x-reverse))}.sm\:space-y-10>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(2.5rem*var(--tw-space-y-reverse));margin-top:calc(2.5rem*(1 - var(--tw-space-y-reverse)))}.sm\:truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sm\:rounded-lg{border-radius:.5rem}.sm\:rounded-xl{border-radius:.75rem}.sm\:rounded-md{border-radius:.375rem}.sm\:border-0{border-width:0}.sm\:border-t{border-top-width:1px}.sm\:border-skin-base{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.sm\:bg-secondary-100{--tw-bg-opacity:1;background-color:rgba(241,245,249,var(--tw-bg-opacity))}.sm\:p-10{padding:2.5rem}.sm\:p-6{padding:1.5rem}.sm\:p-4{padding:1rem}.sm\:p-8{padding:2rem}.sm\:p-0{padding:0}.sm\:p-5{padding:1.25rem}.sm\:py-10{padding-bottom:2.5rem;padding-top:2.5rem}.sm\:py-24{padding-bottom:6rem;padding-top:6rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:py-9{padding-bottom:2.25rem;padding-top:2.25rem}.sm\:px-4{padding-left:1rem;padding-right:1rem}.sm\:py-6{padding-bottom:1.5rem;padding-top:1.5rem}.sm\:px-0{padding-left:0;padding-right:0}.sm\:py-2{padding-bottom:.5rem;padding-top:.5rem}.sm\:px-1{padding-left:.25rem;padding-right:.25rem}.sm\:px-5{padding-left:1.25rem;padding-right:1.25rem}.sm\:px-3{padding-left:.75rem;padding-right:.75rem}.sm\:pt-14{padding-top:3.5rem}.sm\:pt-24{padding-top:6rem}.sm\:pb-64{padding-bottom:16rem}.sm\:pt-0{padding-top:0}.sm\:pt-2{padding-top:.5rem}.sm\:pb-1{padding-bottom:.25rem}.sm\:pl-6{padding-left:1.5rem}.sm\:pr-6{padding-right:1.5rem}.sm\:pt-5{padding-top:1.25rem}.sm\:pt-10{padding-top:2.5rem}.sm\:pt-16{padding-top:4rem}.sm\:pt-7{padding-top:1.75rem}.sm\:pt-4{padding-top:1rem}.sm\:pl-14{padding-left:3.5rem}.sm\:text-left{text-align:left}.sm\:text-center{text-align:center}.sm\:text-right{text-align:right}.sm\:align-middle{vertical-align:middle}.sm\:text-sm{font-size:.875rem;line-height:1.25rem}.sm\:text-base{font-size:1rem;line-height:1.5rem}.sm\:text-3xl{font-size:1.875rem;line-height:2.25rem}.sm\:text-lg{font-size:1.125rem;line-height:1.75rem}.sm\:text-2xl{font-size:1.5rem;line-height:2rem}.sm\:text-xl{font-size:1.25rem;line-height:1.75rem}.sm\:text-5xl{font-size:3rem;line-height:1}.sm\:text-4xl{font-size:2.25rem;line-height:2.5rem}.sm\:leading-none{line-height:1}.sm\:leading-10{line-height:2.5rem}.sm\:leading-5{line-height:1.25rem}.sm\:leading-8{line-height:2rem}.sm\: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);box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.sm\:duration-700{transition-duration:.7s}.dark .sm\:dark\:bg-secondary-800{--tw-bg-opacity:1;background-color:rgba(30,41,59,var(--tw-bg-opacity))}}@media (min-width:768px){.md\:prose-sm{font-size:.875rem;line-height:1.7142857}.md\:prose-sm :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em}.md\:prose-sm :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.8888889em;margin-top:.8888889em}.md\:prose-sm :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em;padding-left:1.1111111em}.md\:prose-sm :where(h1):not(:where([class~=not-prose] *)){font-size:2.1428571em;line-height:1.2;margin-bottom:.8em;margin-top:0}.md\:prose-sm :where(h2):not(:where([class~=not-prose] *)){font-size:1.4285714em;line-height:1.4;margin-bottom:.8em;margin-top:1.6em}.md\:prose-sm :where(h3):not(:where([class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.5555556em}.md\:prose-sm :where(h4):not(:where([class~=not-prose] *)){line-height:1.4285714;margin-bottom:.5714286em;margin-top:1.4285714em}.md\:prose-sm :where(img):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.md\:prose-sm :where(video):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.md\:prose-sm :where(figure):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.md\:prose-sm :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.md\:prose-sm :where(figcaption):not(:where([class~=not-prose] *)){font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}.md\:prose-sm :where(code):not(:where([class~=not-prose] *)){font-size:.8571429em}.md\:prose-sm :where(h2 code):not(:where([class~=not-prose] *)){font-size:.9em}.md\:prose-sm :where(h3 code):not(:where([class~=not-prose] *)){font-size:.8888889em}.md\:prose-sm :where(pre):not(:where([class~=not-prose] *)){border-radius:.25rem;font-size:.8571429em;line-height:1.6666667;margin-bottom:1.6666667em;margin-top:1.6666667em;padding:.6666667em 1em}.md\:prose-sm :where(ol):not(:where([class~=not-prose] *)){padding-left:1.5714286em}.md\:prose-sm :where(ul):not(:where([class~=not-prose] *)){padding-left:1.5714286em}.md\:prose-sm :where(li):not(:where([class~=not-prose] *)){margin-bottom:.2857143em;margin-top:.2857143em}.md\:prose-sm :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4285714em}.md\:prose-sm :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4285714em}.md\:prose-sm>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.md\:prose-sm>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.md\:prose-sm>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.md\:prose-sm>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.md\:prose-sm>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.md\:prose-sm :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.md\:prose-sm :where(hr):not(:where([class~=not-prose] *)){margin-bottom:2.8571429em;margin-top:2.8571429em}.md\:prose-sm :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-sm :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-sm :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-sm :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-sm :where(table):not(:where([class~=not-prose] *)){font-size:.8571429em;line-height:1.5}.md\:prose-sm :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.6666667em;padding-left:1em;padding-right:1em}.md\:prose-sm :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-sm :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-sm :where(tbody td):not(:where([class~=not-prose] *)){padding:.6666667em 1em}.md\:prose-sm :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-sm :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-sm>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-sm>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.md\:prose-lg{font-size:1.125rem;line-height:1.7777778}.md\:prose-lg :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em}.md\:prose-lg :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2222222em;line-height:1.4545455;margin-bottom:1.0909091em;margin-top:1.0909091em}.md\:prose-lg :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6666667em;margin-top:1.6666667em;padding-left:1em}.md\:prose-lg :where(h1):not(:where([class~=not-prose] *)){font-size:2.6666667em;line-height:1;margin-bottom:.8333333em;margin-top:0}.md\:prose-lg :where(h2):not(:where([class~=not-prose] *)){font-size:1.6666667em;line-height:1.3333333;margin-bottom:1.0666667em;margin-top:1.8666667em}.md\:prose-lg :where(h3):not(:where([class~=not-prose] *)){font-size:1.3333333em;line-height:1.5;margin-bottom:.6666667em;margin-top:1.6666667em}.md\:prose-lg :where(h4):not(:where([class~=not-prose] *)){line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.7777778em}.md\:prose-lg :where(img):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.md\:prose-lg :where(video):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.md\:prose-lg :where(figure):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.md\:prose-lg :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.md\:prose-lg :where(figcaption):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5;margin-top:1em}.md\:prose-lg :where(code):not(:where([class~=not-prose] *)){font-size:.8888889em}.md\:prose-lg :where(h2 code):not(:where([class~=not-prose] *)){font-size:.8666667em}.md\:prose-lg :where(h3 code):not(:where([class~=not-prose] *)){font-size:.875em}.md\:prose-lg :where(pre):not(:where([class~=not-prose] *)){border-radius:.375rem;font-size:.8888889em;line-height:1.75;margin-bottom:2em;margin-top:2em;padding:1em 1.5em}.md\:prose-lg :where(ol):not(:where([class~=not-prose] *)){padding-left:1.5555556em}.md\:prose-lg :where(ul):not(:where([class~=not-prose] *)){padding-left:1.5555556em}.md\:prose-lg :where(li):not(:where([class~=not-prose] *)){margin-bottom:.6666667em;margin-top:.6666667em}.md\:prose-lg :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}.md\:prose-lg :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}.md\:prose-lg>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.md\:prose-lg>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.md\:prose-lg>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.md\:prose-lg>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.md\:prose-lg>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.md\:prose-lg :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.md\:prose-lg :where(hr):not(:where([class~=not-prose] *)){margin-bottom:3.1111111em;margin-top:3.1111111em}.md\:prose-lg :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-lg :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-lg :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-lg :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-lg :where(table):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5}.md\:prose-lg :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.75em;padding-left:.75em;padding-right:.75em}.md\:prose-lg :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-lg :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-lg :where(tbody td):not(:where([class~=not-prose] *)){padding:.75em}.md\:prose-lg :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-lg :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-lg>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-lg>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.md\:prose-xl{font-size:1.25rem;line-height:1.8}.md\:prose-xl :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.2em;margin-top:1.2em}.md\:prose-xl :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2em;line-height:1.5;margin-bottom:1em;margin-top:1em}.md\:prose-xl :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6em;margin-top:1.6em;padding-left:1.0666667em}.md\:prose-xl :where(h1):not(:where([class~=not-prose] *)){font-size:2.8em;line-height:1;margin-bottom:.8571429em;margin-top:0}.md\:prose-xl :where(h2):not(:where([class~=not-prose] *)){font-size:1.8em;line-height:1.1111111;margin-bottom:.8888889em;margin-top:1.5555556em}.md\:prose-xl :where(h3):not(:where([class~=not-prose] *)){font-size:1.5em;line-height:1.3333333;margin-bottom:.6666667em;margin-top:1.6em}.md\:prose-xl :where(h4):not(:where([class~=not-prose] *)){line-height:1.6;margin-bottom:.6em;margin-top:1.8em}.md\:prose-xl :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.md\:prose-xl :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.md\:prose-xl :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.md\:prose-xl :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.md\:prose-xl :where(figcaption):not(:where([class~=not-prose] *)){font-size:.9em;line-height:1.5555556;margin-top:1em}.md\:prose-xl :where(code):not(:where([class~=not-prose] *)){font-size:.9em}.md\:prose-xl :where(h2 code):not(:where([class~=not-prose] *)){font-size:.8611111em}.md\:prose-xl :where(h3 code):not(:where([class~=not-prose] *)){font-size:.9em}.md\:prose-xl :where(pre):not(:where([class~=not-prose] *)){border-radius:.5rem;font-size:.9em;line-height:1.7777778;margin-bottom:2em;margin-top:2em;padding:1.1111111em 1.3333333em}.md\:prose-xl :where(ol):not(:where([class~=not-prose] *)){padding-left:1.6em}.md\:prose-xl :where(ul):not(:where([class~=not-prose] *)){padding-left:1.6em}.md\:prose-xl :where(li):not(:where([class~=not-prose] *)){margin-bottom:.6em;margin-top:.6em}.md\:prose-xl :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4em}.md\:prose-xl :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4em}.md\:prose-xl>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.md\:prose-xl>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.md\:prose-xl>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.md\:prose-xl>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.md\:prose-xl>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.md\:prose-xl :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.md\:prose-xl :where(hr):not(:where([class~=not-prose] *)){margin-bottom:2.8em;margin-top:2.8em}.md\:prose-xl :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-xl :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-xl :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-xl :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-xl :where(table):not(:where([class~=not-prose] *)){font-size:.9em;line-height:1.5555556}.md\:prose-xl :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.8888889em;padding-left:.6666667em;padding-right:.6666667em}.md\:prose-xl :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-xl :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-xl :where(tbody td):not(:where([class~=not-prose] *)){padding:.8888889em .6666667em}.md\:prose-xl :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-xl :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-xl>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-xl>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.md\:mx-auto{margin-left:auto;margin-right:auto}.md\:mt-0{margin-top:0}.md\:ml-6{margin-left:1.5rem}.md\:ml-4{margin-left:1rem}.md\:block{display:block}.md\:flex{display:flex}.md\:hidden{display:none}.md\:w-auto{width:auto}.md\:max-w-xl{max-width:36rem}.md\:max-w-2xl{max-width:42rem}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:items-center{align-items:center}.md\:justify-between{justify-content:space-between}.md\:gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.md\:rounded-lg{border-radius:.5rem}.md\:border-t-0{border-top-width:0}.md\:border-l{border-left-width:1px}.md\:px-1{padding-left:.25rem;padding-right:.25rem}.md\:px-6{padding-left:1.5rem;padding-right:1.5rem}.md\:px-4{padding-left:1rem;padding-right:1rem}.md\:text-4xl{font-size:2.25rem;line-height:2.5rem}}@media (min-width:1024px){.lg\:prose-lg{font-size:1.125rem;line-height:1.7777778}.lg\:prose-lg :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em}.lg\:prose-lg :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2222222em;line-height:1.4545455;margin-bottom:1.0909091em;margin-top:1.0909091em}.lg\:prose-lg :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6666667em;margin-top:1.6666667em;padding-left:1em}.lg\:prose-lg :where(h1):not(:where([class~=not-prose] *)){font-size:2.6666667em;line-height:1;margin-bottom:.8333333em;margin-top:0}.lg\:prose-lg :where(h2):not(:where([class~=not-prose] *)){font-size:1.6666667em;line-height:1.3333333;margin-bottom:1.0666667em;margin-top:1.8666667em}.lg\:prose-lg :where(h3):not(:where([class~=not-prose] *)){font-size:1.3333333em;line-height:1.5;margin-bottom:.6666667em;margin-top:1.6666667em}.lg\:prose-lg :where(h4):not(:where([class~=not-prose] *)){line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.7777778em}.lg\:prose-lg :where(img):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.lg\:prose-lg :where(video):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.lg\:prose-lg :where(figure):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.lg\:prose-lg :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.lg\:prose-lg :where(figcaption):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5;margin-top:1em}.lg\:prose-lg :where(code):not(:where([class~=not-prose] *)){font-size:.8888889em}.lg\:prose-lg :where(h2 code):not(:where([class~=not-prose] *)){font-size:.8666667em}.lg\:prose-lg :where(h3 code):not(:where([class~=not-prose] *)){font-size:.875em}.lg\:prose-lg :where(pre):not(:where([class~=not-prose] *)){border-radius:.375rem;font-size:.8888889em;line-height:1.75;margin-bottom:2em;margin-top:2em;padding:1em 1.5em}.lg\:prose-lg :where(ol):not(:where([class~=not-prose] *)){padding-left:1.5555556em}.lg\:prose-lg :where(ul):not(:where([class~=not-prose] *)){padding-left:1.5555556em}.lg\:prose-lg :where(li):not(:where([class~=not-prose] *)){margin-bottom:.6666667em;margin-top:.6666667em}.lg\:prose-lg :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}.lg\:prose-lg :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}.lg\:prose-lg>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.lg\:prose-lg>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.lg\:prose-lg>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.lg\:prose-lg>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.lg\:prose-lg>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.lg\:prose-lg :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.lg\:prose-lg :where(hr):not(:where([class~=not-prose] *)){margin-bottom:3.1111111em;margin-top:3.1111111em}.lg\:prose-lg :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-lg :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-lg :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-lg :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-lg :where(table):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5}.lg\:prose-lg :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.75em;padding-left:.75em;padding-right:.75em}.lg\:prose-lg :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.lg\:prose-lg :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.lg\:prose-lg :where(tbody td):not(:where([class~=not-prose] *)){padding:.75em}.lg\:prose-lg :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.lg\:prose-lg :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.lg\:prose-lg>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-lg>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.lg\:prose-xl{font-size:1.25rem;line-height:1.8}.lg\:prose-xl :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.2em;margin-top:1.2em}.lg\:prose-xl :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2em;line-height:1.5;margin-bottom:1em;margin-top:1em}.lg\:prose-xl :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6em;margin-top:1.6em;padding-left:1.0666667em}.lg\:prose-xl :where(h1):not(:where([class~=not-prose] *)){font-size:2.8em;line-height:1;margin-bottom:.8571429em;margin-top:0}.lg\:prose-xl :where(h2):not(:where([class~=not-prose] *)){font-size:1.8em;line-height:1.1111111;margin-bottom:.8888889em;margin-top:1.5555556em}.lg\:prose-xl :where(h3):not(:where([class~=not-prose] *)){font-size:1.5em;line-height:1.3333333;margin-bottom:.6666667em;margin-top:1.6em}.lg\:prose-xl :where(h4):not(:where([class~=not-prose] *)){line-height:1.6;margin-bottom:.6em;margin-top:1.8em}.lg\:prose-xl :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.lg\:prose-xl :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.lg\:prose-xl :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.lg\:prose-xl :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.lg\:prose-xl :where(figcaption):not(:where([class~=not-prose] *)){font-size:.9em;line-height:1.5555556;margin-top:1em}.lg\:prose-xl :where(code):not(:where([class~=not-prose] *)){font-size:.9em}.lg\:prose-xl :where(h2 code):not(:where([class~=not-prose] *)){font-size:.8611111em}.lg\:prose-xl :where(h3 code):not(:where([class~=not-prose] *)){font-size:.9em}.lg\:prose-xl :where(pre):not(:where([class~=not-prose] *)){border-radius:.5rem;font-size:.9em;line-height:1.7777778;margin-bottom:2em;margin-top:2em;padding:1.1111111em 1.3333333em}.lg\:prose-xl :where(ol):not(:where([class~=not-prose] *)){padding-left:1.6em}.lg\:prose-xl :where(ul):not(:where([class~=not-prose] *)){padding-left:1.6em}.lg\:prose-xl :where(li):not(:where([class~=not-prose] *)){margin-bottom:.6em;margin-top:.6em}.lg\:prose-xl :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4em}.lg\:prose-xl :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4em}.lg\:prose-xl>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.lg\:prose-xl>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.lg\:prose-xl>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.lg\:prose-xl>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.lg\:prose-xl>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.lg\:prose-xl :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.lg\:prose-xl :where(hr):not(:where([class~=not-prose] *)){margin-bottom:2.8em;margin-top:2.8em}.lg\:prose-xl :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-xl :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-xl :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-xl :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-xl :where(table):not(:where([class~=not-prose] *)){font-size:.9em;line-height:1.5555556}.lg\:prose-xl :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.8888889em;padding-left:.6666667em;padding-right:.6666667em}.lg\:prose-xl :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.lg\:prose-xl :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.lg\:prose-xl :where(tbody td):not(:where([class~=not-prose] *)){padding:.8888889em .6666667em}.lg\:prose-xl :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.lg\:prose-xl :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.lg\:prose-xl>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-xl>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.lg\:left-1\/2{left:50%}.lg\:col-span-3{grid-column:span 3/span 3}.lg\:col-span-2{grid-column:span 2/span 2}.lg\:col-span-6{grid-column:span 6/span 6}.lg\:col-span-5{grid-column:span 5/span 5}.lg\:col-span-4{grid-column:span 4/span 4}.lg\:col-span-1{grid-column:span 1/span 1}.lg\:col-span-8{grid-column:span 8/span 8}.lg\:col-span-7{grid-column:span 7/span 7}.lg\:col-span-10{grid-column:span 10/span 10}.lg\:col-span-9{grid-column:span 9/span 9}.lg\:col-start-10{grid-column-start:10}.lg\:row-span-3{grid-row:span 3/span 3}.lg\:mx-0{margin-left:0;margin-right:0}.lg\:-mx-8{margin-left:-2rem;margin-right:-2rem}.lg\:mt-8{margin-top:2rem}.lg\:mt-0{margin-top:0}.lg\:mt-12{margin-top:3rem}.lg\:mt-10{margin-top:2.5rem}.lg\:mb-32{margin-bottom:8rem}.lg\:ml-10{margin-left:2.5rem}.lg\:ml-0{margin-left:0}.lg\:ml-6{margin-left:1.5rem}.lg\:block{display:block}.lg\:flex{display:flex}.lg\:grid{display:grid}.lg\:hidden{display:none}.lg\:h-20{height:5rem}.lg\:h-48{height:12rem}.lg\:w-20{width:5rem}.lg\:w-90{width:22.5rem}.lg\:max-w-2xl{max-width:42rem}.lg\:max-w-3xl{max-width:48rem}.lg\:max-w-4xl{max-width:56rem}.lg\:max-w-none{max-width:none}.lg\:max-w-7xl{max-width:80rem}.lg\:max-w-xl{max-width:36rem}.lg\:max-w-xs{max-width:20rem}.lg\:-translate-x-1\/2{--tw-translate-x:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.lg\:grid-flow-col{grid-auto-flow:column}.lg\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}.lg\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.lg\:grid-rows-3{grid-template-rows:repeat(3,minmax(0,1fr))}.lg\:items-start{align-items:flex-start}.lg\:items-center{align-items:center}.lg\:justify-start{justify-content:flex-start}.lg\:justify-end{justify-content:flex-end}.lg\:justify-between{justify-content:space-between}.lg\:gap-16{gap:4rem}.lg\:gap-6{gap:1.5rem}.lg\:gap-24{gap:6rem}.lg\:gap-8{gap:2rem}.lg\:gap-10{gap:2.5rem}.lg\:gap-12{gap:3rem}.lg\:gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.lg\:gap-x-5{-moz-column-gap:1.25rem;column-gap:1.25rem}.lg\:gap-y-12{row-gap:3rem}.lg\:gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.lg\:gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.lg\:gap-y-6{row-gap:1.5rem}.lg\: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)))}.lg\: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))}.lg\:space-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.5rem*var(--tw-space-x-reverse))}.lg\:self-center{align-self:center}.lg\:border-l{border-left-width:1px}.lg\:border-skin-base{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.lg\:py-12{padding-bottom:3rem;padding-top:3rem}.lg\:py-20{padding-bottom:5rem;padding-top:5rem}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:py-16{padding-bottom:4rem;padding-top:4rem}.lg\:py-8{padding-bottom:2rem;padding-top:2rem}.lg\:px-0{padding-left:0;padding-right:0}.lg\:pl-8{padding-left:2rem}.lg\:pb-20{padding-bottom:5rem}.lg\:pb-12{padding-bottom:3rem}.lg\:pb-16{padding-bottom:4rem}.lg\:text-left{text-align:left}.lg\:text-sm{font-size:.875rem;line-height:1.25rem}.lg\:text-4xl{font-size:2.25rem;line-height:2.5rem}.lg\:text-base{font-size:1rem;line-height:1.5rem}.lg\:text-5xl{font-size:3rem;line-height:1}.lg\:text-lg{font-size:1.125rem;line-height:1.75rem}.lg\:leading-\[3\.5rem\]{line-height:3.5rem}}@media (min-width:1280px){.xl\:absolute{position:absolute}.xl\:relative{position:relative}.xl\:inset-0{left:0;right:0}.xl\:inset-0,.xl\:inset-y-0{bottom:0;top:0}.xl\:left-0{left:0}.xl\:col-span-7{grid-column:span 7/span 7}.xl\:col-span-3{grid-column:span 3/span 3}.xl\:col-start-2{grid-column-start:2}.xl\:col-start-1{grid-column-start:1}.xl\:mt-16{margin-top:4rem}.xl\:grid{display:grid}.xl\:h-full{height:100%}.xl\:w-32{width:8rem}.xl\:grid-flow-col-dense{grid-auto-flow:column dense}.xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.xl\:gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.xl\:bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.xl\:pb-14{padding-bottom:3.5rem}.xl\:pb-24{padding-bottom:6rem}.xl\:text-base{font-size:1rem;line-height:1.5rem}.xl\:text-4xl{font-size:2.25rem;line-height:2.5rem}.xl\:text-3xl{font-size:1.875rem;line-height:2.25rem}.xl\:text-xl{font-size:1.25rem;line-height:1.75rem}} +/*! tailwindcss v3.1.8 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;font-family:DM Sans,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,Helvetica Neue,Arial,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}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:JetBrains Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}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-size:100%;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}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input:-ms-input-placeholder,textarea:-ms-input-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%}[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{--tw-shadow:0 0 transparent;-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}[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{--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);outline:2px solid transparent;outline-offset:2px}input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}input:-ms-input-placeholder,textarea:-ms-input-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}::-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{color-adjust:exact;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]{color-adjust:inherit;background-image:none;background-position:0 0;background-repeat:repeat;background-size:auto auto;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:inherit;print-color-adjust:inherit}[type=checkbox],[type=radio]{color-adjust:exact;--tw-shadow:0 0 transparent;-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;-ms-user-select:none;user-select:none;vertical-align:middle;width:1rem}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{--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);outline:2px solid transparent;outline-offset:2px}[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 viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%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 0z'/%3E%3C/svg%3E")}[type=radio]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}[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}[type=checkbox]:indeterminate:focus,[type=checkbox]:indeterminate:hover{background-color:currentColor;border-color:transparent}[type=file]{background:transparent none repeat 0 0/auto auto padding-box border-box scroll;background:initial;border-color:inherit;border-radius:0;border-width:0;font-size:inherit;line-height:inherit;padding:0}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}:root{--color-text-primary:5,150,105;--color-text-primary-hover:16,185,129;--color-text-link-menu:107,114,128;--color-text-link-menu-hover:17,24,39;--color-text-base:107,114,128;--color-text-muted:156,163,175;--color-text-inverted:17,24,39;--color-text-inverted-muted:31,41,55;--color-link-fill:243,244,246;--color-menu-fill:255,255,255;--color-body-fill:249,250,251;--color-footer-fill:var(--color-menu-fill);--color-footer-light-fill:var(--color-body-fill);--color-input-fill:var(--color-menu-fill);--color-button-default:var(--color-menu-fill);--color-card-fill:var(--color-menu-fill);--color-card-gray:243,244,246;--color-card-muted-fill:var(--color-body-fill);--color-input-border:209,213,219;--color-divide:229,231,235;--color-divide-light:243,244,246;--color-border:var(--color-divide);--color-border-light:var(--color-divide-light)}.theme-dark{--color-text-primary:5,150,105;--color-text-primary-hover:16,185,129;--color-text-link-menu:209,213,219;--color-text-link-menu-hover:255,255,255;--color-text-base:181,181,189;--color-text-muted:107,114,128;--color-text-inverted:255,255,255;--color-text-inverted-muted:156,163,175;--color-link-fill:55,65,81;--color-menu-fill:22,27,34;--color-body-fill:13,17,23;--color-footer-fill:var(--color-menu-fill);--color-footer-light-fill:var(--color-footer-fill);--color-input-fill:31,41,55;--color-button-default:55,65,81;--color-card-fill:22,27,34;--color-card-gray:var(--color-menu-fill);--color-card-muted-fill:17,22,29;--color-input-border:31,41,55;--color-divide:55,65,81;--color-divide-light:55,65,81;--color-border:55,65,81;--color-border-light:55,65,81}*,: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-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 transparent;--tw-ring-shadow:0 0 transparent;--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent;--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: }::-webkit-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-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 transparent;--tw-ring-shadow:0 0 transparent;--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent;--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-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 transparent;--tw-ring-shadow:0 0 transparent;--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}.aspect-w-4{--tw-aspect-w:4;padding-bottom:calc(var(--tw-aspect-h)/var(--tw-aspect-w)*100%);position:relative}.aspect-w-4>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.aspect-h-2{--tw-aspect-h:2}.aspect-w-2{--tw-aspect-w:2;padding-bottom:calc(var(--tw-aspect-h)/var(--tw-aspect-w)*100%);position:relative}.aspect-w-2>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.aspect-h-1{--tw-aspect-h:1}.aspect-w-3{--tw-aspect-w:3;padding-bottom:calc(var(--tw-aspect-h)/var(--tw-aspect-w)*100%);position:relative}.aspect-w-3>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.form-input,.form-multiselect,.form-select,.form-textarea{--tw-shadow:0 0 transparent;-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}.form-input:focus,.form-multiselect:focus,.form-select:focus,.form-textarea:focus{--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);outline:2px solid transparent;outline-offset:2px}.form-input::-moz-placeholder,.form-textarea::-moz-placeholder{color:#6b7280;opacity:1}.form-input:-ms-input-placeholder,.form-textarea:-ms-input-placeholder{color:#6b7280;opacity:1}.form-input::placeholder,.form-textarea::placeholder{color:#6b7280;opacity:1}.form-input::-webkit-datetime-edit-fields-wrapper{padding:0}.form-input::-webkit-date-and-time-value{min-height:1.5em}.form-input::-webkit-datetime-edit,.form-input::-webkit-datetime-edit-day-field,.form-input::-webkit-datetime-edit-hour-field,.form-input::-webkit-datetime-edit-meridiem-field,.form-input::-webkit-datetime-edit-millisecond-field,.form-input::-webkit-datetime-edit-minute-field,.form-input::-webkit-datetime-edit-month-field,.form-input::-webkit-datetime-edit-second-field,.form-input::-webkit-datetime-edit-year-field{padding-bottom:0;padding-top:0}.form-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}.form-checkbox,.form-radio,.form-select{color-adjust:exact;-webkit-print-color-adjust:exact;print-color-adjust:exact}.form-checkbox,.form-radio{--tw-shadow:0 0 transparent;-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-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:1rem}.form-checkbox{border-radius:0}.form-radio{border-radius:100%}.form-checkbox:focus,.form-radio:focus{--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);outline:2px solid transparent;outline-offset:2px}.form-checkbox:checked,.form-radio:checked{background-color:currentColor;background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}.form-checkbox:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%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 0z'/%3E%3C/svg%3E")}.form-radio:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}.form-checkbox:checked:focus,.form-checkbox:checked:hover,.form-radio:checked:focus,.form-radio:checked:hover{background-color:currentColor;border-color:transparent}.form-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}.form-checkbox:indeterminate:focus,.form-checkbox:indeterminate:hover{background-color:currentColor;border-color:transparent}.prose{color:#6b7280;color:rgb(var(--color-text-base));max-width:65ch}.prose :where([class~=lead]):not(:where([class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.prose :where(a):not(:where([class~=not-prose] *)){color:#059669;color:rgb(var(--color-text-primary));font-weight:500;text-decoration:none}.prose :where(a):not(:where([class~=not-prose] *)):hover{color:#10b981;color:rgb(var(--color-text-primary-hover))}.prose :where(strong):not(:where([class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(ol):not(:where([class~=not-prose] *)){list-style-type:decimal;padding-left:1.625em}.prose :where(ol[type=A]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose] *)){list-style-type:disc;padding-left:1.625em}.prose :where(ol>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-counters);font-weight:400}.prose :where(ul>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(hr):not(:where([class~=not-prose] *)){border-color:#e5e7eb;border-color:rgb(var(--color-border));border-top-width:1px;margin-bottom:3em;margin-top:3em}.prose :where(blockquote):not(:where([class~=not-prose] *)){border-left-color:var(--tw-prose-quote-borders);border-left-width:.25rem;color:#111827;color:rgb(var(--color-text-inverted));font-style:normal;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-left:1em;quotes:"\201C""\201D""\2018""\2019"}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose] *)):before{content:none}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.prose :where(h1 strong):not(:where([class~=not-prose] *)){font-weight:900}.prose :where(h2):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.prose :where(h2 strong):not(:where([class~=not-prose] *)){font-weight:800}.prose :where(h3):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.prose :where(h3 strong):not(:where([class~=not-prose] *)){font-weight:700}.prose :where(h4):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.prose :where(h4 strong):not(:where([class~=not-prose] *)){font-weight:700}.prose :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose :where(figcaption):not(:where([class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose :where(code):not(:where([class~=not-prose] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.prose :where(code):not(:where([class~=not-prose] *)):before{content:"`"}.prose :where(code):not(:where([class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose] *)){color:var(--tw-prose-links)}.prose :where(pre):not(:where([class~=not-prose] *)){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:.8571429em 1.1428571em}.prose :where(pre code):not(:where([class~=not-prose] *)){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}.prose :where(pre code):not(:where([class~=not-prose] *)):before{content:none}.prose :where(pre code):not(:where([class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;text-align:left;width:100%}.prose :where(thead):not(:where([class~=not-prose] *)){border-bottom-color:var(--tw-prose-th-borders);border-bottom-width:1px}.prose :where(thead th):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;padding-bottom:.5714286em;padding-left:.5714286em;padding-right:.5714286em;vertical-align:bottom}.prose :where(tbody tr):not(:where([class~=not-prose] *)){border-bottom-color:var(--tw-prose-td-borders);border-bottom-width:1px}.prose :where(tbody tr:last-child):not(:where([class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose] *)){padding:.5714286em;vertical-align:baseline}.prose{--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-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-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}.prose :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}.prose :where(img):not(:where([class~=not-prose] *)){border-radius:.5rem;margin-bottom:2em;margin-top:2em}.prose :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(h2 code):not(:where([class~=not-prose] *)){font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose] *)){font-size:.9em}.prose :where(li):not(:where([class~=not-prose] *)){margin-bottom:.5em;margin-top:.5em}.prose :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose :where(h1,h2,h3,h4):not(:where([class~=not-prose] *)){color:#111827;color:rgb(var(--color-text-inverted));font-family:Lexend,sans-serif}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose] *)):after{content:none}.prose :where(pre,code,p>code):not(:where([class~=not-prose] *)){color:#f59e0b;font-family:JetBrains Mono,monospace;font-weight:500}.prose :where(li strong,strong):not(:where([class~=not-prose] *)){color:#1f2937;color:rgb(var(--color-text-inverted-muted));font-weight:400}.prose-sm{font-size:.875rem;line-height:1.7142857}.prose-sm :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em}.prose-sm :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.8888889em;margin-top:.8888889em}.prose-sm :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em;padding-left:1.1111111em}.prose-sm :where(h1):not(:where([class~=not-prose] *)){font-size:2.1428571em;line-height:1.2;margin-bottom:.8em;margin-top:0}.prose-sm :where(h2):not(:where([class~=not-prose] *)){font-size:1.4285714em;line-height:1.4;margin-bottom:.8em;margin-top:1.6em}.prose-sm :where(h3):not(:where([class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.5555556em}.prose-sm :where(h4):not(:where([class~=not-prose] *)){line-height:1.4285714;margin-bottom:.5714286em;margin-top:1.4285714em}.prose-sm :where(img):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.prose-sm :where(video):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.prose-sm :where(figure):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.prose-sm :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose-sm :where(figcaption):not(:where([class~=not-prose] *)){font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}.prose-sm :where(code):not(:where([class~=not-prose] *)){font-size:.8571429em}.prose-sm :where(h2 code):not(:where([class~=not-prose] *)){font-size:.9em}.prose-sm :where(h3 code):not(:where([class~=not-prose] *)){font-size:.8888889em}.prose-sm :where(pre):not(:where([class~=not-prose] *)){border-radius:.25rem;font-size:.8571429em;line-height:1.6666667;margin-bottom:1.6666667em;margin-top:1.6666667em;padding:.6666667em 1em}.prose-sm :where(ol):not(:where([class~=not-prose] *)){padding-left:1.5714286em}.prose-sm :where(ul):not(:where([class~=not-prose] *)){padding-left:1.5714286em}.prose-sm :where(li):not(:where([class~=not-prose] *)){margin-bottom:.2857143em;margin-top:.2857143em}.prose-sm :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4285714em}.prose-sm :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4285714em}.prose-sm>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.prose-sm>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.prose-sm :where(hr):not(:where([class~=not-prose] *)){margin-bottom:2.8571429em;margin-top:2.8571429em}.prose-sm :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(table):not(:where([class~=not-prose] *)){font-size:.8571429em;line-height:1.5}.prose-sm :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.6666667em;padding-left:1em;padding-right:1em}.prose-sm :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-sm :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-sm :where(tbody td):not(:where([class~=not-prose] *)){padding:.6666667em 1em}.prose-sm :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-sm :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-sm>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-base{font-size:1rem;line-height:1.75}.prose-base :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}.prose-base :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.prose-base :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6em;margin-top:1.6em;padding-left:1em}.prose-base :where(h1):not(:where([class~=not-prose] *)){font-size:2.25em;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.prose-base :where(h2):not(:where([class~=not-prose] *)){font-size:1.5em;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.prose-base :where(h3):not(:where([class~=not-prose] *)){font-size:1.25em;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.prose-base :where(h4):not(:where([class~=not-prose] *)){line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.prose-base :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose-base :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose-base :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose-base :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose-base :where(figcaption):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose-base :where(code):not(:where([class~=not-prose] *)){font-size:.875em}.prose-base :where(h2 code):not(:where([class~=not-prose] *)){font-size:.875em}.prose-base :where(h3 code):not(:where([class~=not-prose] *)){font-size:.9em}.prose-base :where(pre):not(:where([class~=not-prose] *)){border-radius:.375rem;font-size:.875em;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;padding:.8571429em 1.1428571em}.prose-base :where(ol):not(:where([class~=not-prose] *)){padding-left:1.625em}.prose-base :where(ul):not(:where([class~=not-prose] *)){padding-left:1.625em}.prose-base :where(li):not(:where([class~=not-prose] *)){margin-bottom:.5em;margin-top:.5em}.prose-base :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose-base :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose-base>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose-base>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose-base :where(hr):not(:where([class~=not-prose] *)){margin-bottom:3em;margin-top:3em}.prose-base :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(table):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.7142857}.prose-base :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.5714286em;padding-left:.5714286em;padding-right:.5714286em}.prose-base :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-base :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-base :where(tbody td):not(:where([class~=not-prose] *)){padding:.5714286em}.prose-base :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-base :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-base>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-base>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-lg{font-size:1.125rem;line-height:1.7777778}.prose-lg :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em}.prose-lg :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2222222em;line-height:1.4545455;margin-bottom:1.0909091em;margin-top:1.0909091em}.prose-lg :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6666667em;margin-top:1.6666667em;padding-left:1em}.prose-lg :where(h1):not(:where([class~=not-prose] *)){font-size:2.6666667em;line-height:1;margin-bottom:.8333333em;margin-top:0}.prose-lg :where(h2):not(:where([class~=not-prose] *)){font-size:1.6666667em;line-height:1.3333333;margin-bottom:1.0666667em;margin-top:1.8666667em}.prose-lg :where(h3):not(:where([class~=not-prose] *)){font-size:1.3333333em;line-height:1.5;margin-bottom:.6666667em;margin-top:1.6666667em}.prose-lg :where(h4):not(:where([class~=not-prose] *)){line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.7777778em}.prose-lg :where(img):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.prose-lg :where(video):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.prose-lg :where(figure):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.prose-lg :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose-lg :where(figcaption):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5;margin-top:1em}.prose-lg :where(code):not(:where([class~=not-prose] *)){font-size:.8888889em}.prose-lg :where(h2 code):not(:where([class~=not-prose] *)){font-size:.8666667em}.prose-lg :where(h3 code):not(:where([class~=not-prose] *)){font-size:.875em}.prose-lg :where(pre):not(:where([class~=not-prose] *)){border-radius:.375rem;font-size:.8888889em;line-height:1.75;margin-bottom:2em;margin-top:2em;padding:1em 1.5em}.prose-lg :where(ol):not(:where([class~=not-prose] *)){padding-left:1.5555556em}.prose-lg :where(ul):not(:where([class~=not-prose] *)){padding-left:1.5555556em}.prose-lg :where(li):not(:where([class~=not-prose] *)){margin-bottom:.6666667em;margin-top:.6666667em}.prose-lg :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}.prose-lg :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}.prose-lg>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.prose-lg>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.prose-lg :where(hr):not(:where([class~=not-prose] *)){margin-bottom:3.1111111em;margin-top:3.1111111em}.prose-lg :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(table):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5}.prose-lg :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.75em;padding-left:.75em;padding-right:.75em}.prose-lg :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-lg :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-lg :where(tbody td):not(:where([class~=not-prose] *)){padding:.75em}.prose-lg :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-lg :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-lg>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-green{--tw-prose-links:#16a34a;--tw-prose-invert-links:#22c55e}.sr-only{clip:rect(0,0,0,0);border-width:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.visible{visibility:visible}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:-webkit-sticky;position:sticky}.inset-0{bottom:0;left:0;right:0;top:0}.-inset-px{bottom:-1px;left:-1px;right:-1px;top:-1px}.inset-x-0{left:0;right:0}.inset-y-0{bottom:0;top:0}.bottom-0{bottom:0}.top-0{top:0}.top-5{top:1.25rem}.left-5{left:1.25rem}.-bottom-0\.5{bottom:-.125rem}.-right-1{right:-.25rem}.-bottom-0{bottom:0}.right-0{right:0}.top-40{top:10rem}.left-0{left:0}.-top-8{top:-2rem}.top-\[-75px\]{top:-75px}.top-\[-50px\]{top:-50px}.top-16{top:4rem}.top-4{top:1rem}.left-1{left:.25rem}.-top-3{top:-.75rem}.right-3{right:.75rem}.right-5{right:1.25rem}.right-2{right:.5rem}.-top-2{top:-.5rem}.top-2{top:.5rem}.left-0\.5{left:.125rem}.z-0{z-index:0}.z-30{z-index:30}.z-50{z-index:50}.z-40{z-index:40}.z-20{z-index:20}.z-10{z-index:10}.order-2{order:2}.order-1{order:1}.col-span-1{grid-column:span 1/span 1}.-m-2{margin:-.5rem}.-m-3{margin:-.75rem}.my-10{margin-bottom:2.5rem;margin-top:2.5rem}.-mx-2{margin-left:-.5rem;margin-right:-.5rem}.mx-auto{margin-left:auto;margin-right:auto}.mx-1\.5{margin-left:.375rem;margin-right:.375rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.-my-5{margin-bottom:-1.25rem;margin-top:-1.25rem}.my-8{margin-bottom:2rem;margin-top:2rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.-my-2{margin-bottom:-.5rem;margin-top:-.5rem}.-mx-4{margin-left:-1rem;margin-right:-1rem}.mx-0{margin-left:0;margin-right:0}.my-auto{margin-bottom:auto;margin-top:auto}.my-2{margin-bottom:.5rem;margin-top:.5rem}.my-1{margin-bottom:.25rem;margin-top:.25rem}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.mr-2{margin-right:.5rem}.mb-6{margin-bottom:1.5rem}.mt-1{margin-top:.25rem}.mt-8{margin-top:2rem}.mt-2{margin-top:.5rem}.mt-5{margin-top:1.25rem}.mt-12{margin-top:3rem}.mb-14{margin-bottom:3.5rem}.-mt-4{margin-top:-1rem}.mt-4{margin-top:1rem}.mb-2{margin-bottom:.5rem}.ml-4{margin-left:1rem}.ml-2{margin-left:.5rem}.mt-3{margin-top:.75rem}.mt-6{margin-top:1.5rem}.mt-10{margin-top:2.5rem}.ml-1\.5{margin-left:.375rem}.ml-1{margin-left:.25rem}.mr-1\.5{margin-right:.375rem}.mr-1{margin-right:.25rem}.ml-12{margin-left:3rem}.-ml-1{margin-left:-.25rem}.-ml-px{margin-left:-1px}.mr-3{margin-right:.75rem}.ml-3{margin-left:.75rem}.-mr-1{margin-right:-.25rem}.mt-16{margin-top:4rem}.mb-5{margin-bottom:1.25rem}.ml-9{margin-left:2.25rem}.mb-4{margin-bottom:1rem}.mb-1\.5{margin-bottom:.375rem}.mb-1{margin-bottom:.25rem}.-mt-1{margin-top:-.25rem}.mt-0\.5{margin-top:.125rem}.mt-0{margin-top:0}.ml-2\.5{margin-left:.625rem}.ml-8{margin-left:2rem}.-mt-2{margin-top:-.5rem}.ml-3\.5{margin-left:.875rem}.-ml-9{margin-left:-2.25rem}.mb-3{margin-bottom:.75rem}.-mb-2{margin-bottom:-.5rem}.mb-8{margin-bottom:2rem}.-mt-12{margin-top:-3rem}.-mb-px{margin-bottom:-1px}.ml-6{margin-left:1.5rem}.mt-1\.5{margin-top:.375rem}.mt-24{margin-top:6rem}.-ml-4{margin-left:-1rem}.ml-auto{margin-left:auto}.-mt-3{margin-top:-.75rem}.-mb-8{margin-bottom:-2rem}.-mt-6{margin-top:-1.5rem}.-ml-0\.5{margin-left:-.125rem}.-ml-0{margin-left:0}.mr-0{margin-right:0}.ml-5{margin-left:1.25rem}.mr-4{margin-right:1rem}.mt-11{margin-top:2.75rem}.mb-11{margin-bottom:2.75rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.flow-root{display:flow-root}.grid{display:grid}.contents{display:contents}.hidden{display:none}.h-auto{height:auto}.h-16{height:4rem}.h-5{height:1.25rem}.h-14{height:3.5rem}.h-12{height:3rem}.h-8{height:2rem}.h-6{height:1.5rem}.h-80{height:20rem}.h-full{height:100%}.h-32{height:8rem}.h-10{height:2.5rem}.h-9{height:2.25rem}.h-3\.5{height:.875rem}.h-3{height:.75rem}.h-\[450px\]{height:450px}.h-7{height:1.75rem}.h-4{height:1rem}.h-\[120px\]{height:120px}.h-2{height:.5rem}.h-64{height:16rem}.h-24{height:6rem}.h-1\/3{height:33.333333%}.h-96{height:24rem}.h-0\.5{height:.125rem}.h-0{height:0}.h-56{height:14rem}.h-\[350px\]{height:350px}.h-\[250px\]{height:250px}.h-screen{height:100vh}.max-h-64{max-height:16rem}.max-h-56{max-height:14rem}.max-h-96{max-height:24rem}.max-h-52{max-height:13rem}.max-h-60{max-height:15rem}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.min-h-\[250px\]{min-height:250px}.w-full{width:100%}.w-5{width:1.25rem}.w-1\/2{width:50%}.w-1\/3{width:33.333333%}.w-auto{width:auto}.w-6{width:1.5rem}.w-14{width:3.5rem}.w-8{width:2rem}.w-0\.5{width:.125rem}.w-0{width:0}.w-10{width:2.5rem}.w-9{width:2.25rem}.w-3\.5{width:.875rem}.w-3{width:.75rem}.w-screen{width:100vw}.w-4{width:1rem}.w-3\/4{width:75%}.w-5\/6{width:83.333333%}.w-2{width:.5rem}.w-12{width:3rem}.w-40{width:10rem}.w-7{width:1.75rem}.w-56{width:14rem}.w-24{width:6rem}.w-px{width:1px}.w-60{width:15rem}.w-11{width:2.75rem}.w-\[calc\(100\%-3\.5rem\)\]{width:calc(100% - 3.5rem)}.w-48{width:12rem}.min-w-0{min-width:0}.min-w-full{min-width:100%}.max-w-7xl{max-width:80rem}.max-w-xl{max-width:36rem}.max-w-4xl{max-width:56rem}.max-w-3xl{max-width:48rem}.max-w-none{max-width:none}.max-w-full{max-width:100%}.max-w-xs{max-width:20rem}.max-w-md{max-width:28rem}.max-w-sm{max-width:24rem}.max-w-2xl{max-width:42rem}.max-w-lg{max-width:32rem}.max-w-\[18rem\]{max-width:18rem}.flex-none{flex:none}.flex-1{flex:1 1 0%}.flex-shrink-0,.shrink-0{flex-shrink:0}.flex-grow,.grow{flex-grow:1}.origin-top{transform-origin:top}.origin-top-right{transform-origin:top right}.origin-top-left{transform-origin:top left}.translate-x-full{--tw-translate-x:100%}.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-0{--tw-translate-x:0px}.translate-y-2{--tw-translate-y:0.5rem}.translate-y-0,.translate-y-2{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-0{--tw-translate-y:0px}.translate-y-7{--tw-translate-y:1.75rem}.translate-y-7,.translate-y-9{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-9{--tw-translate-y:2.25rem}.translate-y-1{--tw-translate-y:0.25rem}.translate-x-5,.translate-y-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))}.translate-x-5{--tw-translate-x:1.25rem}.translate-y-4{--tw-translate-y:1rem}.-translate-y-12,.translate-y-4{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-12{--tw-translate-y:-3rem}.rotate-45{--tw-rotate:45deg}.rotate-45,.rotate-90{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-90{--tw-rotate:90deg}.rotate-0{--tw-rotate:0deg}.rotate-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-95{--tw-scale-x:.95;--tw-scale-y:.95}.scale-95,.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))}@-webkit-keyframes spin{to{transform:rotate(1turn)}}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes pulse{50%{opacity:.5}}@keyframes pulse{50%{opacity:.5}}.animate-pulse{-webkit-animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite;animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@-webkit-keyframes linear-progress{0%{left:-30%}to{left:100%}}@keyframes linear-progress{0%{left:-30%}to{left:100%}}.animate-linear-progress{-webkit-animation:linear-progress 2s linear infinite;animation:linear-progress 2s linear infinite}.cursor-pointer{cursor:pointer}.cursor-text{cursor:text}.cursor-default{cursor:default}.\!cursor-wait{cursor:wait!important}.cursor-not-allowed{cursor:not-allowed}.select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.resize-none{resize:none}.list-disc{list-style-type:disc}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,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-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.flex-nowrap{flex-wrap:nowrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-baseline{align-items:baseline}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-10{gap:2.5rem}.gap-8{gap:2rem}.gap-5{gap:1.25rem}.gap-2{gap:.5rem}.gap-1{gap:.25rem}.gap-6{gap:1.5rem}.gap-4{gap:1rem}.gap-3{gap:.75rem}.gap-y-8{row-gap:2rem}.gap-y-12{row-gap:3rem}.gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.gap-y-10{row-gap:2.5rem}.gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.gap-x-12{-moz-column-gap:3rem;column-gap:3rem}.gap-y-4{row-gap:1rem}.gap-x-5{-moz-column-gap:1.25rem;column-gap:1.25rem}.gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.gap-y-6{row-gap:1.5rem}.gap-y-2{row-gap:.5rem}.gap-y-0{row-gap:0}.gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.gap-x-0\.5{-moz-column-gap:.125rem;column-gap:.125rem}.gap-x-0{-moz-column-gap:0;column-gap:0}.space-y-12>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(3rem*var(--tw-space-y-reverse));margin-top:calc(3rem*(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-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-x-5>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.25rem*var(--tw-space-x-reverse))}.space-x-1\.5>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.375rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.375rem*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-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)))}.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-8>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(2rem*var(--tw-space-y-reverse));margin-top:calc(2rem*(1 - var(--tw-space-y-reverse)))}.space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.25rem*var(--tw-space-y-reverse));margin-top:calc(1.25rem*(1 - var(--tw-space-y-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-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-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-y-10>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(2.5rem*var(--tw-space-y-reverse));margin-top:calc(2.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-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-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-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.5rem*var(--tw-space-x-reverse))}.space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(2rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(2rem*var(--tw-space-x-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-x>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-left-width:calc(1px*(1 - var(--tw-divide-x-reverse)));border-right-width:calc(1px*var(--tw-divide-x-reverse))}.divide-skin-base>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgba(var(--color-divide),var(--tw-divide-opacity))}.divide-skin-input>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgba(var(--color-input-border),var(--tw-divide-opacity))}.divide-skin-light>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgba(var(--color-divide-light),var(--tw-divide-opacity))}.divide-gray-200>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgba(229,231,235,var(--tw-divide-opacity))}.divide-secondary-200>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgba(226,232,240,var(--tw-divide-opacity))}.self-start{align-self:flex-start}.self-center{align-self:center}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.\!overflow-hidden{overflow:hidden!important}.overflow-scroll{overflow:scroll}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-x-hidden{overflow-x:hidden}.overflow-y-scroll{overflow-y:scroll}.overscroll-contain{-ms-scroll-chaining:none;overscroll-behavior:contain}.scroll-smooth{scroll-behavior:smooth}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-normal{white-space:normal}.whitespace-nowrap{white-space:nowrap}.whitespace-pre-wrap{white-space:pre-wrap}.break-words{word-wrap:break-word}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-full{border-radius:9999px}.rounded{border-radius:.25rem}.rounded-sm{border-radius:.125rem}.rounded-xl{border-radius:.75rem}.rounded-none{border-radius:0}.rounded-3xl{border-radius:1.5rem}.rounded-t-lg{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.rounded-l-md{border-bottom-left-radius:.375rem;border-top-left-radius:.375rem}.rounded-r-md{border-bottom-right-radius:.375rem;border-top-right-radius:.375rem}.rounded-l-lg{border-bottom-left-radius:.5rem;border-top-left-radius:.5rem}.rounded-r-lg{border-top-right-radius:.5rem}.rounded-b-lg,.rounded-r-lg{border-bottom-right-radius:.5rem}.rounded-b-lg{border-bottom-left-radius:.5rem}.rounded-t-none{border-top-left-radius:0;border-top-right-radius:0}.rounded-t-md{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.rounded-tl{border-top-left-radius:.25rem}.rounded-tl-sm{border-top-left-radius:.125rem}.rounded-tr-lg{border-top-right-radius:.5rem}.rounded-br-lg{border-bottom-right-radius:.5rem}.border{border-width:1px}.border-0{border-width:0}.border-2{border-width:2px}.border-t{border-top-width:1px}.border-b{border-bottom-width:1px}.border-l{border-left-width:1px}.border-r-0{border-right-width:0}.border-b-2{border-bottom-width:2px}.border-l-4{border-left-width:4px}.border-r{border-right-width:1px}.border-dashed{border-style:dashed}.border-none{border-style:none}.border-skin-input{--tw-border-opacity:1;border-color:rgba(var(--color-input-border),var(--tw-border-opacity))}.border-negative-300{--tw-border-opacity:1;border-color:rgba(252,165,165,var(--tw-border-opacity))}.border-transparent{border-color:transparent}.border-skin-base{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.border-red-300{--tw-border-opacity:1;border-color:rgba(252,165,165,var(--tw-border-opacity))}.border-green-500{--tw-border-opacity:1;border-color:rgba(16,185,129,var(--tw-border-opacity))}.border-white{--tw-border-opacity:1;border-color:rgba(255,255,255,var(--tw-border-opacity))}.border-gray-300{--tw-border-opacity:1;border-color:rgba(209,213,219,var(--tw-border-opacity))}.border-gray-800{--tw-border-opacity:1;border-color:rgba(31,41,55,var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity:1;border-color:rgba(229,231,235,var(--tw-border-opacity))}.border-secondary-200{--tw-border-opacity:1;border-color:rgba(226,232,240,var(--tw-border-opacity))}.border-primary-600{--tw-border-opacity:1;border-color:rgba(5,150,105,var(--tw-border-opacity))}.border-gray-400{--tw-border-opacity:1;border-color:rgba(156,163,175,var(--tw-border-opacity))}.border-primary-400{--tw-border-opacity:1;border-color:rgba(52,211,153,var(--tw-border-opacity))}.border-negative-200{--tw-border-opacity:1;border-color:rgba(254,202,202,var(--tw-border-opacity))}.border-secondary-400{--tw-border-opacity:1;border-color:rgba(148,163,184,var(--tw-border-opacity))}.border-secondary-300{--tw-border-opacity:1;border-color:rgba(203,213,225,var(--tw-border-opacity))}.border-secondary-700{--tw-border-opacity:1;border-color:rgba(51,65,85,var(--tw-border-opacity))}.border-primary-500{--tw-border-opacity:1;border-color:rgba(16,185,129,var(--tw-border-opacity))}.border-secondary-600{--tw-border-opacity:1;border-color:rgba(71,85,105,var(--tw-border-opacity))}.border-positive-500{--tw-border-opacity:1;border-color:rgba(16,185,129,var(--tw-border-opacity))}.border-negative-500{--tw-border-opacity:1;border-color:rgba(239,68,68,var(--tw-border-opacity))}.border-warning-600{--tw-border-opacity:1;border-color:rgba(217,119,6,var(--tw-border-opacity))}.border-info-600{--tw-border-opacity:1;border-color:rgba(37,99,235,var(--tw-border-opacity))}.border-slate-600{--tw-border-opacity:1;border-color:rgba(71,85,105,var(--tw-border-opacity))}.border-black{--tw-border-opacity:1;border-color:rgba(22,27,34,var(--tw-border-opacity))}.border-gray-500{--tw-border-opacity:1;border-color:rgba(107,114,128,var(--tw-border-opacity))}.border-zinc-500{--tw-border-opacity:1;border-color:rgba(113,113,122,var(--tw-border-opacity))}.border-neutral-500{--tw-border-opacity:1;border-color:rgba(115,115,115,var(--tw-border-opacity))}.border-stone-500{--tw-border-opacity:1;border-color:rgba(120,113,108,var(--tw-border-opacity))}.border-red-500{--tw-border-opacity:1;border-color:rgba(239,68,68,var(--tw-border-opacity))}.border-orange-500{--tw-border-opacity:1;border-color:rgba(249,115,22,var(--tw-border-opacity))}.border-amber-600{--tw-border-opacity:1;border-color:rgba(217,119,6,var(--tw-border-opacity))}.border-lime-500{--tw-border-opacity:1;border-color:rgba(132,204,22,var(--tw-border-opacity))}.border-emerald-500{--tw-border-opacity:1;border-color:rgba(16,185,129,var(--tw-border-opacity))}.border-teal-500{--tw-border-opacity:1;border-color:rgba(20,184,166,var(--tw-border-opacity))}.border-cyan-500{--tw-border-opacity:1;border-color:rgba(6,182,212,var(--tw-border-opacity))}.border-sky-500{--tw-border-opacity:1;border-color:rgba(14,165,233,var(--tw-border-opacity))}.border-blue-500{--tw-border-opacity:1;border-color:rgba(59,130,246,var(--tw-border-opacity))}.border-indigo-500{--tw-border-opacity:1;border-color:rgba(16,185,129,var(--tw-border-opacity))}.border-violet-500{--tw-border-opacity:1;border-color:rgba(139,92,246,var(--tw-border-opacity))}.border-purple-500{--tw-border-opacity:1;border-color:rgba(168,85,247,var(--tw-border-opacity))}.border-fuchsia-500{--tw-border-opacity:1;border-color:rgba(217,70,239,var(--tw-border-opacity))}.border-pink-500{--tw-border-opacity:1;border-color:rgba(236,72,153,var(--tw-border-opacity))}.border-rose-500{--tw-border-opacity:1;border-color:rgba(244,63,94,var(--tw-border-opacity))}.border-negative-400{--tw-border-opacity:1;border-color:rgba(248,113,113,var(--tw-border-opacity))}.bg-skin-button{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity));background-color:rgba(var(--color-button-default),var(--tw-bg-opacity))}.bg-primary-500{--tw-bg-opacity:1;background-color:rgba(16,185,129,var(--tw-bg-opacity))}.bg-secondary-500{--tw-bg-opacity:1;background-color:rgba(100,116,139,var(--tw-bg-opacity))}.bg-positive-500{--tw-bg-opacity:1;background-color:rgba(16,185,129,var(--tw-bg-opacity))}.bg-negative-500{--tw-bg-opacity:1;background-color:rgba(239,68,68,var(--tw-bg-opacity))}.bg-warning-500{--tw-bg-opacity:1;background-color:rgba(245,158,11,var(--tw-bg-opacity))}.bg-info-500{--tw-bg-opacity:1;background-color:rgba(59,130,246,var(--tw-bg-opacity))}.bg-gray-700{--tw-bg-opacity:1;background-color:rgba(55,65,81,var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.bg-black{--tw-bg-opacity:1;background-color:rgba(22,27,34,var(--tw-bg-opacity))}.bg-slate-500{--tw-bg-opacity:1;background-color:rgba(100,116,139,var(--tw-bg-opacity))}.bg-gray-500{--tw-bg-opacity:1;background-color:rgba(107,114,128,var(--tw-bg-opacity))}.bg-zinc-500{--tw-bg-opacity:1;background-color:rgba(113,113,122,var(--tw-bg-opacity))}.bg-neutral-500{--tw-bg-opacity:1;background-color:rgba(115,115,115,var(--tw-bg-opacity))}.bg-stone-500{--tw-bg-opacity:1;background-color:rgba(120,113,108,var(--tw-bg-opacity))}.bg-red-500{--tw-bg-opacity:1;background-color:rgba(239,68,68,var(--tw-bg-opacity))}.bg-orange-500{--tw-bg-opacity:1;background-color:rgba(249,115,22,var(--tw-bg-opacity))}.bg-amber-500{--tw-bg-opacity:1;background-color:rgba(245,158,11,var(--tw-bg-opacity))}.bg-lime-500{--tw-bg-opacity:1;background-color:rgba(132,204,22,var(--tw-bg-opacity))}.bg-emerald-500,.bg-green-500{--tw-bg-opacity:1;background-color:rgba(16,185,129,var(--tw-bg-opacity))}.bg-teal-500{--tw-bg-opacity:1;background-color:rgba(20,184,166,var(--tw-bg-opacity))}.bg-cyan-500{--tw-bg-opacity:1;background-color:rgba(6,182,212,var(--tw-bg-opacity))}.bg-sky-500{--tw-bg-opacity:1;background-color:rgba(14,165,233,var(--tw-bg-opacity))}.bg-blue-500{--tw-bg-opacity:1;background-color:rgba(59,130,246,var(--tw-bg-opacity))}.bg-indigo-500{--tw-bg-opacity:1;background-color:rgba(16,185,129,var(--tw-bg-opacity))}.bg-violet-500{--tw-bg-opacity:1;background-color:rgba(139,92,246,var(--tw-bg-opacity))}.bg-purple-500{--tw-bg-opacity:1;background-color:rgba(168,85,247,var(--tw-bg-opacity))}.bg-fuchsia-500{--tw-bg-opacity:1;background-color:rgba(217,70,239,var(--tw-bg-opacity))}.bg-pink-500{--tw-bg-opacity:1;background-color:rgba(236,72,153,var(--tw-bg-opacity))}.bg-rose-500{--tw-bg-opacity:1;background-color:rgba(244,63,94,var(--tw-bg-opacity))}.bg-skin-input{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity));background-color:rgba(var(--color-input-fill),var(--tw-bg-opacity))}.bg-green-50{--tw-bg-opacity:1;background-color:rgba(236,253,245,var(--tw-bg-opacity))}.bg-skin-card{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity));background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity))}.bg-green-700{--tw-bg-opacity:1;background-color:rgba(4,120,87,var(--tw-bg-opacity))}.bg-flag-green{--tw-bg-opacity:1;background-color:rgba(9,145,112,var(--tw-bg-opacity))}.bg-green-600{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.bg-skin-card-gray{--tw-bg-opacity:1;background-color:rgba(243,244,246,var(--tw-bg-opacity));background-color:rgba(var(--color-card-gray),var(--tw-bg-opacity))}.bg-skin-body{--tw-bg-opacity:1;background-color:rgba(249,250,251,var(--tw-bg-opacity));background-color:rgba(var(--color-body-fill),var(--tw-bg-opacity))}.bg-negative-600{--tw-bg-opacity:1;background-color:rgba(220,38,38,var(--tw-bg-opacity))}.bg-red-50{--tw-bg-opacity:1;background-color:rgba(254,242,242,var(--tw-bg-opacity))}.bg-green-100{--tw-bg-opacity:1;background-color:rgba(209,250,229,var(--tw-bg-opacity))}.bg-blue-50{--tw-bg-opacity:1;background-color:rgba(239,246,255,var(--tw-bg-opacity))}.bg-skin-button-hover,.bg-skin-card-muted{--tw-bg-opacity:1;background-color:rgba(249,250,251,var(--tw-bg-opacity));background-color:rgba(var(--color-card-muted-fill),var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.bg-blue-100{--tw-bg-opacity:1;background-color:rgba(219,234,254,var(--tw-bg-opacity))}.bg-skin-footer{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity));background-color:rgba(var(--color-footer-fill),var(--tw-bg-opacity))}.bg-red-100{--tw-bg-opacity:1;background-color:rgba(254,226,226,var(--tw-bg-opacity))}.bg-skin-menu{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity));background-color:rgba(var(--color-menu-fill),var(--tw-bg-opacity))}.bg-red-400{--tw-bg-opacity:1;background-color:rgba(248,113,113,var(--tw-bg-opacity))}.bg-skin-primary{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity));background-color:rgba(var(--color-text-primary),var(--tw-bg-opacity))}.bg-flag-red{--tw-bg-opacity:1;background-color:rgba(226,27,48,var(--tw-bg-opacity))}.bg-yellow-500{--tw-bg-opacity:1;background-color:rgba(234,179,8,var(--tw-bg-opacity))}.bg-yellow-100{--tw-bg-opacity:1;background-color:rgba(254,249,195,var(--tw-bg-opacity))}.bg-skin-link{--tw-bg-opacity:1;background-color:rgba(243,244,246,var(--tw-bg-opacity));background-color:rgba(var(--color-link-fill),var(--tw-bg-opacity))}.bg-yellow-50{--tw-bg-opacity:1;background-color:rgba(254,252,232,var(--tw-bg-opacity))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgba(243,244,246,var(--tw-bg-opacity))}.bg-gray-900{--tw-bg-opacity:1;background-color:rgba(17,24,39,var(--tw-bg-opacity))}.bg-gray-800{--tw-bg-opacity:1;background-color:rgba(31,41,55,var(--tw-bg-opacity))}.bg-gray-50{--tw-bg-opacity:1;background-color:rgba(249,250,251,var(--tw-bg-opacity))}.bg-secondary-50{--tw-bg-opacity:1;background-color:rgba(248,250,252,var(--tw-bg-opacity))}.bg-primary-600{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.bg-negative-50{--tw-bg-opacity:1;background-color:rgba(254,242,242,var(--tw-bg-opacity))}.bg-secondary-400{--tw-bg-opacity:1;background-color:rgba(148,163,184,var(--tw-bg-opacity))}.bg-secondary-300{--tw-bg-opacity:1;background-color:rgba(203,213,225,var(--tw-bg-opacity))}.bg-secondary-100,.bg-slate-100{--tw-bg-opacity:1;background-color:rgba(241,245,249,var(--tw-bg-opacity))}.bg-secondary-700{--tw-bg-opacity:1;background-color:rgba(51,65,85,var(--tw-bg-opacity))}.bg-gray-200{--tw-bg-opacity:1;background-color:rgba(229,231,235,var(--tw-bg-opacity))}.bg-slate-200{--tw-bg-opacity:1;background-color:rgba(226,232,240,var(--tw-bg-opacity))}.bg-positive-50{--tw-bg-opacity:1;background-color:rgba(236,253,245,var(--tw-bg-opacity))}.bg-info-50{--tw-bg-opacity:1;background-color:rgba(239,246,255,var(--tw-bg-opacity))}.bg-warning-50{--tw-bg-opacity:1;background-color:rgba(255,251,235,var(--tw-bg-opacity))}.bg-secondary-200{--tw-bg-opacity:1;background-color:rgba(226,232,240,var(--tw-bg-opacity))}.bg-opacity-10{--tw-bg-opacity:0.1}.bg-opacity-50{--tw-bg-opacity:0.5}.bg-opacity-20{--tw-bg-opacity:0.2}.bg-opacity-60{--tw-bg-opacity:0.6}.bg-opacity-75{--tw-bg-opacity:0.75}.bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}.bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--tw-gradient-stops))}.from-green-500{--tw-gradient-from:#10b981;--tw-gradient-to:rgba(16,185,129,0);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black{--tw-gradient-from:#161b22;--tw-gradient-to:rgba(22,27,34,0);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-\[\#413626\]{--tw-gradient-from:#413626;--tw-gradient-to:rgba(65,54,38,0);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-flag-yellow{--tw-gradient-from:#ffdc44;--tw-gradient-to:rgba(255,220,68,0);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.via-indigo-600{--tw-gradient-to:rgba(5,150,105,0);--tw-gradient-stops:var(--tw-gradient-from),#059669,var(--tw-gradient-to)}.to-blue-500{--tw-gradient-to:#3b82f6}.to-\[\#7E5D36\]{--tw-gradient-to:#7e5d36}.to-flag-red{--tw-gradient-to:#e21b30}.fill-current{fill:currentColor}.stroke-current{stroke:currentColor}.object-cover{-o-object-fit:cover;object-fit:cover}.object-center{-o-object-position:center;object-position:center}.p-6{padding:1.5rem}.p-1{padding:.25rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-2{padding:.5rem}.p-1\.5{padding:.375rem}.p-2\.5{padding:.625rem}.p-3{padding:.75rem}.p-0\.5{padding:.125rem}.p-0{padding:0}.px-3{padding-left:.75rem;padding-right:.75rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-8{padding-bottom:2rem;padding-top:2rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-4{padding-left:1rem;padding-right:1rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-0\.5{padding-bottom:.125rem;padding-top:.125rem}.py-0{padding-bottom:0;padding-top:0}.py-12{padding-bottom:3rem;padding-top:3rem}.py-14{padding-bottom:3.5rem;padding-top:3.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-0\.5{padding-left:.125rem;padding-right:.125rem}.py-px{padding-bottom:1px;padding-top:1px}.px-0{padding-left:0;padding-right:0}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.px-1{padding-left:.25rem;padding-right:.25rem}.py-16{padding-bottom:4rem;padding-top:4rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-4{padding-bottom:1rem;padding-top:1rem}.py-1\.5{padding-bottom:.375rem;padding-top:.375rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.py-2\.5{padding-bottom:.625rem;padding-top:.625rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.px-3\.5{padding-left:.875rem;padding-right:.875rem}.py-3\.5{padding-bottom:.875rem;padding-top:.875rem}.px-7{padding-left:1.75rem;padding-right:1.75rem}.pt-12{padding-top:3rem}.pr-2{padding-right:.5rem}.pr-1{padding-right:.25rem}.pb-64{padding-bottom:16rem}.pb-2{padding-bottom:.5rem}.pl-2{padding-left:.5rem}.pt-6{padding-top:1.5rem}.pt-5{padding-top:1.25rem}.pl-10{padding-left:2.5rem}.pl-3{padding-left:.75rem}.pb-5{padding-bottom:1.25rem}.pt-0\.5{padding-top:.125rem}.pt-0{padding-top:0}.pl-5{padding-left:1.25rem}.pb-10{padding-bottom:2.5rem}.pb-8{padding-bottom:2rem}.pt-16{padding-top:4rem}.pb-4{padding-bottom:1rem}.pt-2{padding-top:.5rem}.pr-10{padding-right:2.5rem}.pt-10{padding-top:2.5rem}.pt-4{padding-top:1rem}.pr-12{padding-right:3rem}.pl-4{padding-left:1rem}.pb-3{padding-bottom:.75rem}.pr-4{padding-right:1rem}.pr-3{padding-right:.75rem}.pb-6{padding-bottom:1.5rem}.pt-8{padding-top:2rem}.pb-20{padding-bottom:5rem}.pr-5{padding-right:1.25rem}.pl-8{padding-left:2rem}.pb-1{padding-bottom:.25rem}.pr-9{padding-right:2.25rem}.pt-7{padding-top:1.75rem}.pl-1{padding-left:.25rem}.pl-2\.5{padding-left:.625rem}.pr-2\.5{padding-right:.625rem}.pl-3\.5{padding-left:.875rem}.pr-14{padding-right:3.5rem}.pr-0\.5{padding-right:.125rem}.pr-0{padding-right:0}.pl-16{padding-left:4rem}.pr-8{padding-right:2rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.align-middle{vertical-align:middle}.align-bottom{vertical-align:bottom}.font-sans{font-family:DM Sans,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,Helvetica Neue,Arial,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-heading{font-family:Lexend,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,Helvetica Neue,Arial,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-mono{font-family:JetBrains Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-xs{font-size:.75rem;line-height:1rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-5xl{font-size:3rem;line-height:1}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-\[12px\]{font-size:12px}.text-3xs{font-size:.5rem}.text-2xs{font-size:.65rem}.font-bold{font-weight:700}.font-semibold{font-weight:600}.font-extrabold{font-weight:800}.font-normal{font-weight:400}.font-medium{font-weight:500}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.capitalize{text-transform:capitalize}.italic{font-style:italic}.leading-6{line-height:1.5rem}.leading-5{line-height:1.25rem}.leading-7{line-height:1.75rem}.leading-4{line-height:1rem}.leading-tight{line-height:1.25}.leading-none{line-height:1}.leading-8{line-height:2rem}.leading-loose{line-height:2}.leading-3{line-height:.75rem}.leading-normal{line-height:1.5}.tracking-tight{letter-spacing:-.025em}.tracking-wide{letter-spacing:.025em}.tracking-wider{letter-spacing:.05em}.tracking-widest{letter-spacing:.1em}.tracking-tighter{letter-spacing:-.05em}.\!text-skin-primary{--tw-text-opacity:1!important;color:rgba(5,150,105,var(--tw-text-opacity))!important;color:rgba(var(--color-text-primary),var(--tw-text-opacity))!important}.text-skin-base{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity));color:rgba(var(--color-text-base),var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.text-slate-500{--tw-text-opacity:1;color:rgba(100,116,139,var(--tw-text-opacity))}.text-slate-100{--tw-text-opacity:1;color:rgba(241,245,249,var(--tw-text-opacity))}.text-negative-900{--tw-text-opacity:1;color:rgba(127,29,29,var(--tw-text-opacity))}.text-skin-inverted{--tw-text-opacity:1;color:rgba(17,24,39,var(--tw-text-opacity));color:rgba(var(--color-text-inverted),var(--tw-text-opacity))}.text-skin-primary{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity));color:rgba(var(--color-text-primary),var(--tw-text-opacity))}.text-green-900{--tw-text-opacity:1;color:rgba(6,78,59,var(--tw-text-opacity))}.text-green-600{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.text-skin-muted{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity));color:rgba(var(--color-text-muted),var(--tw-text-opacity))}.text-flag-green{--tw-text-opacity:1;color:rgba(9,145,112,var(--tw-text-opacity))}.text-green-300{--tw-text-opacity:1;color:rgba(110,231,183,var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.text-rose-500{--tw-text-opacity:1;color:rgba(244,63,94,var(--tw-text-opacity))}.text-skin-inverted-muted{--tw-text-opacity:1;color:rgba(31,41,55,var(--tw-text-opacity));color:rgba(var(--color-text-inverted-muted),var(--tw-text-opacity))}.text-red-500{--tw-text-opacity:1;color:rgba(239,68,68,var(--tw-text-opacity))}.text-green-500{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.text-green-400{--tw-text-opacity:1;color:rgba(52,211,153,var(--tw-text-opacity))}.text-green-800{--tw-text-opacity:1;color:rgba(6,95,70,var(--tw-text-opacity))}.text-red-600{--tw-text-opacity:1;color:rgba(220,38,38,var(--tw-text-opacity))}.text-\[\#5865F2\]{--tw-text-opacity:1;color:rgba(88,101,242,var(--tw-text-opacity))}.text-red-400{--tw-text-opacity:1;color:rgba(248,113,113,var(--tw-text-opacity))}.text-red-800{--tw-text-opacity:1;color:rgba(153,27,27,var(--tw-text-opacity))}.text-blue-400{--tw-text-opacity:1;color:rgba(96,165,250,var(--tw-text-opacity))}.text-blue-700{--tw-text-opacity:1;color:rgba(29,78,216,var(--tw-text-opacity))}.text-red-700{--tw-text-opacity:1;color:rgba(185,28,28,var(--tw-text-opacity))}.text-green-700{--tw-text-opacity:1;color:rgba(4,120,87,var(--tw-text-opacity))}.text-skin-menu{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity));color:rgba(var(--color-text-link-menu),var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity:1;color:rgba(31,41,55,var(--tw-text-opacity))}.text-\[\#1E9DEA\]{--tw-text-opacity:1;color:rgba(30,157,234,var(--tw-text-opacity))}.text-blue-800{--tw-text-opacity:1;color:rgba(30,64,175,var(--tw-text-opacity))}.text-yellow-800{--tw-text-opacity:1;color:rgba(133,77,14,var(--tw-text-opacity))}.text-skin-inverted-muted\/70{color:rgba(31,41,55,.7);color:rgba(var(--color-text-inverted-muted),.7)}.text-skin-base\/60{color:hsla(220,9%,46%,.6);color:rgba(var(--color-text-base),.6)}.text-skin-menu-hover{--tw-text-opacity:1;color:rgba(17,24,39,var(--tw-text-opacity));color:rgba(var(--color-text-link-menu-hover),var(--tw-text-opacity))}.text-yellow-500{--tw-text-opacity:1;color:rgba(234,179,8,var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgba(209,213,219,var(--tw-text-opacity))}.text-yellow-400{--tw-text-opacity:1;color:rgba(250,204,21,var(--tw-text-opacity))}.text-yellow-700{--tw-text-opacity:1;color:rgba(161,98,7,var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgba(55,65,81,var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity:1;color:rgba(229,231,235,var(--tw-text-opacity))}.text-gray-100{--tw-text-opacity:1;color:rgba(243,244,246,var(--tw-text-opacity))}.text-blue-500{--tw-text-opacity:1;color:rgba(59,130,246,var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgba(17,24,39,var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity:1;color:rgba(75,85,99,var(--tw-text-opacity))}.text-secondary-700{--tw-text-opacity:1;color:rgba(51,65,85,var(--tw-text-opacity))}.text-negative-600{--tw-text-opacity:1;color:rgba(220,38,38,var(--tw-text-opacity))}.text-negative-400{--tw-text-opacity:1;color:rgba(248,113,113,var(--tw-text-opacity))}.text-secondary-400{--tw-text-opacity:1;color:rgba(148,163,184,var(--tw-text-opacity))}.text-primary-600{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.\!text-white{--tw-text-opacity:1!important;color:rgba(255,255,255,var(--tw-text-opacity))!important}.text-secondary-500{--tw-text-opacity:1;color:rgba(100,116,139,var(--tw-text-opacity))}.text-negative-800{--tw-text-opacity:1;color:rgba(153,27,27,var(--tw-text-opacity))}.text-negative-700{--tw-text-opacity:1;color:rgba(185,28,28,var(--tw-text-opacity))}.text-negative-500{--tw-text-opacity:1;color:rgba(239,68,68,var(--tw-text-opacity))}.text-secondary-300{--tw-text-opacity:1;color:rgba(203,213,225,var(--tw-text-opacity))}.text-primary-500{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.\!text-transparent{color:transparent!important}.text-red-900{--tw-text-opacity:1;color:rgba(127,29,29,var(--tw-text-opacity))}.text-secondary-600{--tw-text-opacity:1;color:rgba(71,85,105,var(--tw-text-opacity))}.text-secondary-900{--tw-text-opacity:1;color:rgba(15,23,42,var(--tw-text-opacity))}.text-positive-400{--tw-text-opacity:1;color:rgba(52,211,153,var(--tw-text-opacity))}.text-info-400{--tw-text-opacity:1;color:rgba(96,165,250,var(--tw-text-opacity))}.text-warning-400{--tw-text-opacity:1;color:rgba(251,191,36,var(--tw-text-opacity))}.text-secondary-100{--tw-text-opacity:1;color:rgba(241,245,249,var(--tw-text-opacity))}.text-positive-500{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.text-warning-600{--tw-text-opacity:1;color:rgba(217,119,6,var(--tw-text-opacity))}.text-info-600{--tw-text-opacity:1;color:rgba(37,99,235,var(--tw-text-opacity))}.text-slate-600{--tw-text-opacity:1;color:rgba(71,85,105,var(--tw-text-opacity))}.text-black{--tw-text-opacity:1;color:rgba(22,27,34,var(--tw-text-opacity))}.text-zinc-500{--tw-text-opacity:1;color:rgba(113,113,122,var(--tw-text-opacity))}.text-neutral-500{--tw-text-opacity:1;color:rgba(115,115,115,var(--tw-text-opacity))}.text-stone-500{--tw-text-opacity:1;color:rgba(120,113,108,var(--tw-text-opacity))}.text-orange-500{--tw-text-opacity:1;color:rgba(249,115,22,var(--tw-text-opacity))}.text-amber-600{--tw-text-opacity:1;color:rgba(217,119,6,var(--tw-text-opacity))}.text-lime-500{--tw-text-opacity:1;color:rgba(132,204,22,var(--tw-text-opacity))}.text-emerald-500{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.text-teal-500{--tw-text-opacity:1;color:rgba(20,184,166,var(--tw-text-opacity))}.text-cyan-500{--tw-text-opacity:1;color:rgba(6,182,212,var(--tw-text-opacity))}.text-sky-500{--tw-text-opacity:1;color:rgba(14,165,233,var(--tw-text-opacity))}.text-indigo-500{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.text-violet-500{--tw-text-opacity:1;color:rgba(139,92,246,var(--tw-text-opacity))}.text-purple-500{--tw-text-opacity:1;color:rgba(168,85,247,var(--tw-text-opacity))}.text-fuchsia-500{--tw-text-opacity:1;color:rgba(217,70,239,var(--tw-text-opacity))}.text-pink-500{--tw-text-opacity:1;color:rgba(236,72,153,var(--tw-text-opacity))}.text-positive-600{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.text-slate-900{--tw-text-opacity:1;color:rgba(15,23,42,var(--tw-text-opacity))}.text-zinc-600{--tw-text-opacity:1;color:rgba(82,82,91,var(--tw-text-opacity))}.text-neutral-600{--tw-text-opacity:1;color:rgba(82,82,82,var(--tw-text-opacity))}.text-stone-600{--tw-text-opacity:1;color:rgba(87,83,78,var(--tw-text-opacity))}.text-orange-600{--tw-text-opacity:1;color:rgba(234,88,12,var(--tw-text-opacity))}.text-lime-600{--tw-text-opacity:1;color:rgba(101,163,13,var(--tw-text-opacity))}.text-emerald-600{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.text-teal-600{--tw-text-opacity:1;color:rgba(13,148,136,var(--tw-text-opacity))}.text-cyan-600{--tw-text-opacity:1;color:rgba(8,145,178,var(--tw-text-opacity))}.text-sky-600{--tw-text-opacity:1;color:rgba(2,132,199,var(--tw-text-opacity))}.text-blue-600{--tw-text-opacity:1;color:rgba(37,99,235,var(--tw-text-opacity))}.text-indigo-600{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.text-violet-600{--tw-text-opacity:1;color:rgba(124,58,237,var(--tw-text-opacity))}.text-purple-600{--tw-text-opacity:1;color:rgba(147,51,234,var(--tw-text-opacity))}.text-fuchsia-600{--tw-text-opacity:1;color:rgba(192,38,211,var(--tw-text-opacity))}.text-pink-600{--tw-text-opacity:1;color:rgba(219,39,119,var(--tw-text-opacity))}.text-rose-600{--tw-text-opacity:1;color:rgba(225,29,72,var(--tw-text-opacity))}.underline{-webkit-text-decoration-line:underline;text-decoration-line:underline}.\!no-underline{-webkit-text-decoration-line:none!important;text-decoration-line:none!important}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.placeholder-skin-input::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(156,163,175,var(--tw-placeholder-opacity));color:rgba(var(--color-text-muted),var(--tw-placeholder-opacity))}.placeholder-skin-input:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(156,163,175,var(--tw-placeholder-opacity));color:rgba(var(--color-text-muted),var(--tw-placeholder-opacity))}.placeholder-skin-input::placeholder{--tw-placeholder-opacity:1;color:rgba(156,163,175,var(--tw-placeholder-opacity));color:rgba(var(--color-text-muted),var(--tw-placeholder-opacity))}.placeholder-negative-500::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(239,68,68,var(--tw-placeholder-opacity))}.placeholder-negative-500:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(239,68,68,var(--tw-placeholder-opacity))}.placeholder-negative-500::placeholder{--tw-placeholder-opacity:1;color:rgba(239,68,68,var(--tw-placeholder-opacity))}.placeholder-red-300::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(252,165,165,var(--tw-placeholder-opacity))}.placeholder-red-300:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(252,165,165,var(--tw-placeholder-opacity))}.placeholder-red-300::placeholder{--tw-placeholder-opacity:1;color:rgba(252,165,165,var(--tw-placeholder-opacity))}.placeholder-gray-500::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(107,114,128,var(--tw-placeholder-opacity))}.placeholder-gray-500:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(107,114,128,var(--tw-placeholder-opacity))}.placeholder-gray-500::placeholder{--tw-placeholder-opacity:1;color:rgba(107,114,128,var(--tw-placeholder-opacity))}.placeholder-negative-300::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(252,165,165,var(--tw-placeholder-opacity))}.placeholder-negative-300:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(252,165,165,var(--tw-placeholder-opacity))}.placeholder-negative-300::placeholder{--tw-placeholder-opacity:1;color:rgba(252,165,165,var(--tw-placeholder-opacity))}.placeholder-secondary-400::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(148,163,184,var(--tw-placeholder-opacity))}.placeholder-secondary-400:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(148,163,184,var(--tw-placeholder-opacity))}.placeholder-secondary-400::placeholder{--tw-placeholder-opacity:1;color:rgba(148,163,184,var(--tw-placeholder-opacity))}.opacity-25{opacity:.25}.opacity-75{opacity:.75}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-70{opacity:.7}.opacity-50{opacity:.5}.opacity-20{opacity:.2}.opacity-60{opacity:.6}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.shadow-lg,.shadow-sm{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.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{--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-xl{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.shadow-xl{--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color)}.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-md,.shadow-none{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.shadow-none{--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent}.outline-none{outline:2px solid transparent;outline-offset:2px}.outline{outline-style:solid}.ring-8{--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(8px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-2,.ring-8{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.ring-2{--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)}.ring-4{--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)}.ring-1,.ring-4{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.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)}.ring-0{--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(var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.ring-primary-500{--tw-ring-opacity:1;--tw-ring-color:rgba(16,185,129,var(--tw-ring-opacity))}.ring-secondary-500{--tw-ring-opacity:1;--tw-ring-color:rgba(100,116,139,var(--tw-ring-opacity))}.ring-positive-500{--tw-ring-opacity:1;--tw-ring-color:rgba(16,185,129,var(--tw-ring-opacity))}.ring-negative-500{--tw-ring-opacity:1;--tw-ring-color:rgba(239,68,68,var(--tw-ring-opacity))}.ring-warning-500{--tw-ring-opacity:1;--tw-ring-color:rgba(245,158,11,var(--tw-ring-opacity))}.ring-info-500{--tw-ring-opacity:1;--tw-ring-color:rgba(59,130,246,var(--tw-ring-opacity))}.ring-gray-700{--tw-ring-opacity:1;--tw-ring-color:rgba(55,65,81,var(--tw-ring-opacity))}.ring-slate-200{--tw-ring-opacity:1;--tw-ring-color:rgba(226,232,240,var(--tw-ring-opacity))}.ring-black{--tw-ring-opacity:1;--tw-ring-color:rgba(22,27,34,var(--tw-ring-opacity))}.ring-slate-500{--tw-ring-opacity:1;--tw-ring-color:rgba(100,116,139,var(--tw-ring-opacity))}.ring-gray-500{--tw-ring-opacity:1;--tw-ring-color:rgba(107,114,128,var(--tw-ring-opacity))}.ring-zinc-500{--tw-ring-opacity:1;--tw-ring-color:rgba(113,113,122,var(--tw-ring-opacity))}.ring-neutral-500{--tw-ring-opacity:1;--tw-ring-color:rgba(115,115,115,var(--tw-ring-opacity))}.ring-stone-500{--tw-ring-opacity:1;--tw-ring-color:rgba(120,113,108,var(--tw-ring-opacity))}.ring-red-500{--tw-ring-opacity:1;--tw-ring-color:rgba(239,68,68,var(--tw-ring-opacity))}.ring-orange-500{--tw-ring-opacity:1;--tw-ring-color:rgba(249,115,22,var(--tw-ring-opacity))}.ring-amber-500{--tw-ring-opacity:1;--tw-ring-color:rgba(245,158,11,var(--tw-ring-opacity))}.ring-lime-500{--tw-ring-opacity:1;--tw-ring-color:rgba(132,204,22,var(--tw-ring-opacity))}.ring-emerald-500,.ring-green-500{--tw-ring-opacity:1;--tw-ring-color:rgba(16,185,129,var(--tw-ring-opacity))}.ring-teal-500{--tw-ring-opacity:1;--tw-ring-color:rgba(20,184,166,var(--tw-ring-opacity))}.ring-cyan-500{--tw-ring-opacity:1;--tw-ring-color:rgba(6,182,212,var(--tw-ring-opacity))}.ring-sky-500{--tw-ring-opacity:1;--tw-ring-color:rgba(14,165,233,var(--tw-ring-opacity))}.ring-blue-500{--tw-ring-opacity:1;--tw-ring-color:rgba(59,130,246,var(--tw-ring-opacity))}.ring-indigo-500{--tw-ring-opacity:1;--tw-ring-color:rgba(16,185,129,var(--tw-ring-opacity))}.ring-violet-500{--tw-ring-opacity:1;--tw-ring-color:rgba(139,92,246,var(--tw-ring-opacity))}.ring-purple-500{--tw-ring-opacity:1;--tw-ring-color:rgba(168,85,247,var(--tw-ring-opacity))}.ring-fuchsia-500{--tw-ring-opacity:1;--tw-ring-color:rgba(217,70,239,var(--tw-ring-opacity))}.ring-pink-500{--tw-ring-opacity:1;--tw-ring-color:rgba(236,72,153,var(--tw-ring-opacity))}.ring-rose-500{--tw-ring-opacity:1;--tw-ring-color:rgba(244,63,94,var(--tw-ring-opacity))}.ring-body{--tw-ring-color:rgb(var(--color-body-fill))}.ring-white{--tw-ring-opacity:1;--tw-ring-color:rgba(255,255,255,var(--tw-ring-opacity))}.ring-card{--tw-ring-color:rgb(var(--color-card-fill))}.ring-gray-300{--tw-ring-opacity:1;--tw-ring-color:rgba(209,213,219,var(--tw-ring-opacity))}.ring-secondary-600{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.ring-warning-600{--tw-ring-opacity:1;--tw-ring-color:rgba(217,119,6,var(--tw-ring-opacity))}.ring-info-600{--tw-ring-opacity:1;--tw-ring-color:rgba(37,99,235,var(--tw-ring-opacity))}.ring-slate-600{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.ring-amber-600{--tw-ring-opacity:1;--tw-ring-color:rgba(217,119,6,var(--tw-ring-opacity))}.ring-primary-600{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.ring-negative-600,.ring-red-600{--tw-ring-opacity:1;--tw-ring-color:rgba(220,38,38,var(--tw-ring-opacity))}.ring-orange-600{--tw-ring-opacity:1;--tw-ring-color:rgba(234,88,12,var(--tw-ring-opacity))}.ring-lime-600{--tw-ring-opacity:1;--tw-ring-color:rgba(101,163,13,var(--tw-ring-opacity))}.ring-emerald-600,.ring-green-600{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.ring-teal-600{--tw-ring-opacity:1;--tw-ring-color:rgba(13,148,136,var(--tw-ring-opacity))}.ring-cyan-600{--tw-ring-opacity:1;--tw-ring-color:rgba(8,145,178,var(--tw-ring-opacity))}.ring-sky-600{--tw-ring-opacity:1;--tw-ring-color:rgba(2,132,199,var(--tw-ring-opacity))}.ring-blue-600{--tw-ring-opacity:1;--tw-ring-color:rgba(37,99,235,var(--tw-ring-opacity))}.ring-indigo-600{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.ring-violet-600{--tw-ring-opacity:1;--tw-ring-color:rgba(124,58,237,var(--tw-ring-opacity))}.ring-purple-600{--tw-ring-opacity:1;--tw-ring-color:rgba(147,51,234,var(--tw-ring-opacity))}.ring-fuchsia-600{--tw-ring-opacity:1;--tw-ring-color:rgba(192,38,211,var(--tw-ring-opacity))}.ring-pink-600{--tw-ring-opacity:1;--tw-ring-color:rgba(219,39,119,var(--tw-ring-opacity))}.ring-rose-600{--tw-ring-opacity:1;--tw-ring-color:rgba(225,29,72,var(--tw-ring-opacity))}.ring-opacity-5{--tw-ring-opacity:0.05}.blur-sm{--tw-blur:blur(4px)}.blur,.blur-sm{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)}.blur{--tw-blur:blur(8px)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.backdrop-blur-md{--tw-backdrop-blur:blur(12px)}.backdrop-blur-md,.backdrop-blur-sm{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.backdrop-blur-sm{--tw-backdrop-blur:blur(4px)}.backdrop-blur-lg{--tw-backdrop-blur:blur(16px)}.backdrop-blur-lg,.backdrop-blur-xl{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.backdrop-blur-xl{--tw-backdrop-blur:blur(24px)}.backdrop-blur-2xl{--tw-backdrop-blur:blur(40px)}.backdrop-blur-2xl,.backdrop-blur-3xl{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.backdrop-blur-3xl{--tw-backdrop-blur:blur(64px)}.backdrop-blur{--tw-backdrop-blur:blur(8px)}.backdrop-blur,.backdrop-filter{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.transition{transition-duration:.15s;transition-property:color,background-color,border-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-text-decoration-color,-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-text-decoration-color,-webkit-backdrop-filter;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)}.transition-all{transition-duration:.15s;transition-property:all;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-colors{transition-duration:.15s;transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1)}.delay-200{transition-delay:.2s}.duration-100{transition-duration:.1s}.duration-500{transition-duration:.5s}.duration-150{transition-duration:.15s}.duration-300{transition-duration:.3s}.duration-200{transition-duration:.2s}.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)}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-linear{transition-timing-function:linear}.hide-scrollbar::-webkit-scrollbar{display:none}.hide-scrollbar{-ms-overflow-style:none;scrollbar-width:none}.soft-scrollbar::-webkit-scrollbar{cursor:pointer;height:4px;width:4px}.soft-scrollbar::-webkit-scrollbar-track{background-color:#e2e8f0;cursor:pointer}.soft-scrollbar::-webkit-scrollbar-thumb{background-color:#94a3b8;cursor:pointer}.dark .soft-scrollbar::-webkit-scrollbar-track{background-color:#475569;cursor:pointer}.dark .soft-scrollbar::-webkit-scrollbar-thumb{background-color:#334155;cursor:pointer}.line-clamp-2{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;overflow:hidden}:root{--brand-laravel:#ff2d20;--brand-livewire:#fb70a9;--brand-inertia:#8b5cf6;--brand-javascript:#f7df1e;--brand-typesript:#007acc;--brand-react:#53c1de;--brand-vue-js:#41b883;--brand-php:#777bb3;--brand-digital-ocean:#0080ff;--brand-forge:#19b69b;--brand-packages:#4f46e5;--brand-outils:#22d3ee;--brand-tailwindcss:#06b6d4;--brand-design:#78350f;--brand-alpinejs:#2d3441;--brand-open-source:#f97316;--brand-freelance:#f43f5e;--brand-salaire:#c7d2fe;--brand-projets:#14b8a6;--brand-entrepreneuriat:#0ea5e9;--brand-paiement-en-ligne:#10b981;--brand-branding:#ec4899;--brand-applications:#0284c7;--brand-developpement:#4d7c0f;--brand-event:#36bffa;--brand-tutoriel:#164e63;--brand-communaute:#dd2590;--brand-astuces:#d6bbfb}[x-cloak]{display:none!important}.prose iframe{width:100%}.logo-dark,.theme-dark .logo-white{display:none}.theme-dark .logo-dark{display:block}.checked\:translate-x-3:checked{--tw-translate-x:0.75rem}.checked\:translate-x-3:checked,.checked\:translate-x-3\.5:checked{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))}.checked\:translate-x-3\.5:checked{--tw-translate-x:0.875rem}.checked\:translate-x-4:checked{--tw-translate-x:1rem;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))}.checked\:bg-none:checked{background-image:none}.checked\:text-white:checked{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.focus-within\:ring-2[focus-within]{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.focus-within\:ring-2:focus-within{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.focus-within\:ring-green-500[focus-within]{--tw-ring-opacity:1;--tw-ring-color:rgba(16,185,129,var(--tw-ring-opacity))}.focus-within\:ring-green-500:focus-within{--tw-ring-opacity:1;--tw-ring-color:rgba(16,185,129,var(--tw-ring-opacity))}.focus-within\:ring-offset-2[focus-within]{--tw-ring-offset-width:2px}.focus-within\:ring-offset-2:focus-within{--tw-ring-offset-width:2px}.hover\:scale-125:hover{--tw-scale-x:1.25;--tw-scale-y:1.25;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))}.hover\:border-green-300:hover{--tw-border-opacity:1;border-color:rgba(110,231,183,var(--tw-border-opacity))}.hover\:border-green-600:hover{--tw-border-opacity:1;border-color:rgba(5,150,105,var(--tw-border-opacity))}.hover\:border-green-500:hover{--tw-border-opacity:1;border-color:rgba(16,185,129,var(--tw-border-opacity))}.hover\:border-skin-base:hover{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.hover\:border-gray-400:hover{--tw-border-opacity:1;border-color:rgba(156,163,175,var(--tw-border-opacity))}.hover\:bg-skin-button-hover:hover{--tw-bg-opacity:1;background-color:rgba(249,250,251,var(--tw-bg-opacity));background-color:rgba(var(--color-card-muted-fill),var(--tw-bg-opacity))}.hover\:bg-primary-600:hover{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.hover\:bg-secondary-600:hover{--tw-bg-opacity:1;background-color:rgba(71,85,105,var(--tw-bg-opacity))}.hover\:bg-positive-600:hover{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.hover\:bg-negative-600:hover{--tw-bg-opacity:1;background-color:rgba(220,38,38,var(--tw-bg-opacity))}.hover\:bg-warning-600:hover{--tw-bg-opacity:1;background-color:rgba(217,119,6,var(--tw-bg-opacity))}.hover\:bg-info-600:hover{--tw-bg-opacity:1;background-color:rgba(37,99,235,var(--tw-bg-opacity))}.hover\:bg-gray-900:hover{--tw-bg-opacity:1;background-color:rgba(17,24,39,var(--tw-bg-opacity))}.hover\:bg-slate-50:hover{--tw-bg-opacity:1;background-color:rgba(248,250,252,var(--tw-bg-opacity))}.hover\:bg-slate-900:hover{--tw-bg-opacity:1;background-color:rgba(15,23,42,var(--tw-bg-opacity))}.hover\:bg-slate-600:hover{--tw-bg-opacity:1;background-color:rgba(71,85,105,var(--tw-bg-opacity))}.hover\:bg-gray-600:hover{--tw-bg-opacity:1;background-color:rgba(75,85,99,var(--tw-bg-opacity))}.hover\:bg-zinc-600:hover{--tw-bg-opacity:1;background-color:rgba(82,82,91,var(--tw-bg-opacity))}.hover\:bg-neutral-600:hover{--tw-bg-opacity:1;background-color:rgba(82,82,82,var(--tw-bg-opacity))}.hover\:bg-stone-600:hover{--tw-bg-opacity:1;background-color:rgba(87,83,78,var(--tw-bg-opacity))}.hover\:bg-red-600:hover{--tw-bg-opacity:1;background-color:rgba(220,38,38,var(--tw-bg-opacity))}.hover\:bg-orange-600:hover{--tw-bg-opacity:1;background-color:rgba(234,88,12,var(--tw-bg-opacity))}.hover\:bg-amber-600:hover{--tw-bg-opacity:1;background-color:rgba(217,119,6,var(--tw-bg-opacity))}.hover\:bg-lime-600:hover{--tw-bg-opacity:1;background-color:rgba(101,163,13,var(--tw-bg-opacity))}.hover\:bg-emerald-600:hover,.hover\:bg-green-600:hover{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.hover\:bg-teal-600:hover{--tw-bg-opacity:1;background-color:rgba(13,148,136,var(--tw-bg-opacity))}.hover\:bg-cyan-600:hover{--tw-bg-opacity:1;background-color:rgba(8,145,178,var(--tw-bg-opacity))}.hover\:bg-sky-600:hover{--tw-bg-opacity:1;background-color:rgba(2,132,199,var(--tw-bg-opacity))}.hover\:bg-blue-600:hover{--tw-bg-opacity:1;background-color:rgba(37,99,235,var(--tw-bg-opacity))}.hover\:bg-indigo-600:hover{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.hover\:bg-violet-600:hover{--tw-bg-opacity:1;background-color:rgba(124,58,237,var(--tw-bg-opacity))}.hover\:bg-purple-600:hover{--tw-bg-opacity:1;background-color:rgba(147,51,234,var(--tw-bg-opacity))}.hover\:bg-fuchsia-600:hover{--tw-bg-opacity:1;background-color:rgba(192,38,211,var(--tw-bg-opacity))}.hover\:bg-pink-600:hover{--tw-bg-opacity:1;background-color:rgba(219,39,119,var(--tw-bg-opacity))}.hover\:bg-rose-600:hover{--tw-bg-opacity:1;background-color:rgba(225,29,72,var(--tw-bg-opacity))}.hover\:bg-green-700:hover{--tw-bg-opacity:1;background-color:rgba(4,120,87,var(--tw-bg-opacity))}.hover\:bg-skin-card-muted:hover{--tw-bg-opacity:1;background-color:rgba(249,250,251,var(--tw-bg-opacity));background-color:rgba(var(--color-card-muted-fill),var(--tw-bg-opacity))}.hover\:bg-negative-500:hover{--tw-bg-opacity:1;background-color:rgba(239,68,68,var(--tw-bg-opacity))}.hover\:bg-skin-card:hover{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity));background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity))}.hover\:bg-skin-footer:hover{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity));background-color:rgba(var(--color-footer-fill),var(--tw-bg-opacity))}.hover\:bg-skin-body:hover{--tw-bg-opacity:1;background-color:rgba(249,250,251,var(--tw-bg-opacity));background-color:rgba(var(--color-body-fill),var(--tw-bg-opacity))}.hover\:bg-skin-primary:hover{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity));background-color:rgba(var(--color-text-primary),var(--tw-bg-opacity))}.hover\:bg-gray-800:hover{--tw-bg-opacity:1;background-color:rgba(31,41,55,var(--tw-bg-opacity))}.hover\:bg-red-50:hover{--tw-bg-opacity:1;background-color:rgba(254,242,242,var(--tw-bg-opacity))}.hover\:bg-gray-50:hover{--tw-bg-opacity:1;background-color:rgba(249,250,251,var(--tw-bg-opacity))}.hover\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgba(243,244,246,var(--tw-bg-opacity))}.hover\:bg-green-100:hover,.hover\:bg-primary-100:hover{--tw-bg-opacity:1;background-color:rgba(209,250,229,var(--tw-bg-opacity))}.hover\:bg-secondary-50:hover{--tw-bg-opacity:1;background-color:rgba(248,250,252,var(--tw-bg-opacity))}.hover\:bg-primary-500:hover{--tw-bg-opacity:1;background-color:rgba(16,185,129,var(--tw-bg-opacity))}.hover\:bg-slate-100:hover{--tw-bg-opacity:1;background-color:rgba(241,245,249,var(--tw-bg-opacity))}.hover\:bg-primary-50:hover{--tw-bg-opacity:1;background-color:rgba(236,253,245,var(--tw-bg-opacity))}.hover\:bg-secondary-100:hover{--tw-bg-opacity:1;background-color:rgba(241,245,249,var(--tw-bg-opacity))}.hover\:bg-positive-50:hover{--tw-bg-opacity:1;background-color:rgba(236,253,245,var(--tw-bg-opacity))}.hover\:bg-negative-50:hover{--tw-bg-opacity:1;background-color:rgba(254,242,242,var(--tw-bg-opacity))}.hover\:bg-warning-50:hover{--tw-bg-opacity:1;background-color:rgba(255,251,235,var(--tw-bg-opacity))}.hover\:bg-info-50:hover{--tw-bg-opacity:1;background-color:rgba(239,246,255,var(--tw-bg-opacity))}.hover\:bg-slate-200:hover{--tw-bg-opacity:1;background-color:rgba(226,232,240,var(--tw-bg-opacity))}.hover\:bg-zinc-100:hover{--tw-bg-opacity:1;background-color:rgba(244,244,245,var(--tw-bg-opacity))}.hover\:bg-neutral-100:hover{--tw-bg-opacity:1;background-color:rgba(245,245,245,var(--tw-bg-opacity))}.hover\:bg-stone-100:hover{--tw-bg-opacity:1;background-color:rgba(245,245,244,var(--tw-bg-opacity))}.hover\:bg-orange-50:hover{--tw-bg-opacity:1;background-color:rgba(255,247,237,var(--tw-bg-opacity))}.hover\:bg-amber-50:hover{--tw-bg-opacity:1;background-color:rgba(255,251,235,var(--tw-bg-opacity))}.hover\:bg-lime-50:hover{--tw-bg-opacity:1;background-color:rgba(247,254,231,var(--tw-bg-opacity))}.hover\:bg-emerald-50:hover,.hover\:bg-green-50:hover{--tw-bg-opacity:1;background-color:rgba(236,253,245,var(--tw-bg-opacity))}.hover\:bg-teal-50:hover{--tw-bg-opacity:1;background-color:rgba(240,253,250,var(--tw-bg-opacity))}.hover\:bg-cyan-50:hover{--tw-bg-opacity:1;background-color:rgba(236,254,255,var(--tw-bg-opacity))}.hover\:bg-sky-50:hover{--tw-bg-opacity:1;background-color:rgba(240,249,255,var(--tw-bg-opacity))}.hover\:bg-blue-50:hover{--tw-bg-opacity:1;background-color:rgba(239,246,255,var(--tw-bg-opacity))}.hover\:bg-indigo-50:hover{--tw-bg-opacity:1;background-color:rgba(236,253,245,var(--tw-bg-opacity))}.hover\:bg-violet-50:hover{--tw-bg-opacity:1;background-color:rgba(245,243,255,var(--tw-bg-opacity))}.hover\:bg-purple-50:hover{--tw-bg-opacity:1;background-color:rgba(250,245,255,var(--tw-bg-opacity))}.hover\:bg-fuchsia-50:hover{--tw-bg-opacity:1;background-color:rgba(253,244,255,var(--tw-bg-opacity))}.hover\:bg-pink-50:hover{--tw-bg-opacity:1;background-color:rgba(253,242,248,var(--tw-bg-opacity))}.hover\:bg-rose-50:hover{--tw-bg-opacity:1;background-color:rgba(255,241,242,var(--tw-bg-opacity))}.hover\:bg-positive-100:hover{--tw-bg-opacity:1;background-color:rgba(209,250,229,var(--tw-bg-opacity))}.hover\:bg-negative-100:hover{--tw-bg-opacity:1;background-color:rgba(254,226,226,var(--tw-bg-opacity))}.hover\:bg-warning-100:hover{--tw-bg-opacity:1;background-color:rgba(254,243,199,var(--tw-bg-opacity))}.hover\:bg-info-100:hover{--tw-bg-opacity:1;background-color:rgba(219,234,254,var(--tw-bg-opacity))}.hover\:bg-red-100:hover{--tw-bg-opacity:1;background-color:rgba(254,226,226,var(--tw-bg-opacity))}.hover\:bg-orange-100:hover{--tw-bg-opacity:1;background-color:rgba(255,237,213,var(--tw-bg-opacity))}.hover\:bg-amber-100:hover{--tw-bg-opacity:1;background-color:rgba(254,243,199,var(--tw-bg-opacity))}.hover\:bg-lime-100:hover{--tw-bg-opacity:1;background-color:rgba(236,252,203,var(--tw-bg-opacity))}.hover\:bg-emerald-100:hover{--tw-bg-opacity:1;background-color:rgba(209,250,229,var(--tw-bg-opacity))}.hover\:bg-teal-100:hover{--tw-bg-opacity:1;background-color:rgba(204,251,241,var(--tw-bg-opacity))}.hover\:bg-cyan-100:hover{--tw-bg-opacity:1;background-color:rgba(207,250,254,var(--tw-bg-opacity))}.hover\:bg-sky-100:hover{--tw-bg-opacity:1;background-color:rgba(224,242,254,var(--tw-bg-opacity))}.hover\:bg-blue-100:hover{--tw-bg-opacity:1;background-color:rgba(219,234,254,var(--tw-bg-opacity))}.hover\:bg-indigo-100:hover{--tw-bg-opacity:1;background-color:rgba(209,250,229,var(--tw-bg-opacity))}.hover\:bg-violet-100:hover{--tw-bg-opacity:1;background-color:rgba(237,233,254,var(--tw-bg-opacity))}.hover\:bg-purple-100:hover{--tw-bg-opacity:1;background-color:rgba(243,232,255,var(--tw-bg-opacity))}.hover\:bg-fuchsia-100:hover{--tw-bg-opacity:1;background-color:rgba(250,232,255,var(--tw-bg-opacity))}.hover\:bg-pink-100:hover{--tw-bg-opacity:1;background-color:rgba(252,231,243,var(--tw-bg-opacity))}.hover\:bg-rose-100:hover{--tw-bg-opacity:1;background-color:rgba(255,228,230,var(--tw-bg-opacity))}.hover\:\!text-skin-primary-hover:hover{--tw-text-opacity:1!important;color:rgba(16,185,129,var(--tw-text-opacity))!important;color:rgba(var(--color-text-primary-hover),var(--tw-text-opacity))!important}.hover\:text-skin-primary-hover:hover{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity));color:rgba(var(--color-text-primary-hover),var(--tw-text-opacity))}.hover\:text-skin-base:hover{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity));color:rgba(var(--color-text-base),var(--tw-text-opacity))}.hover\:text-green-600:hover{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.hover\:text-green-500:hover{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.hover\:text-rose-500:hover{--tw-text-opacity:1;color:rgba(244,63,94,var(--tw-text-opacity))}.hover\:text-skin-inverted-muted:hover{--tw-text-opacity:1;color:rgba(31,41,55,var(--tw-text-opacity));color:rgba(var(--color-text-inverted-muted),var(--tw-text-opacity))}.hover\:text-skin-inverted:hover{--tw-text-opacity:1;color:rgba(17,24,39,var(--tw-text-opacity));color:rgba(var(--color-text-inverted),var(--tw-text-opacity))}.hover\:text-skin-menu-hover:hover{--tw-text-opacity:1;color:rgba(17,24,39,var(--tw-text-opacity));color:rgba(var(--color-text-link-menu-hover),var(--tw-text-opacity))}.hover\:text-blue-600:hover{--tw-text-opacity:1;color:rgba(37,99,235,var(--tw-text-opacity))}.hover\:text-skin-primary:hover{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity));color:rgba(var(--color-text-primary),var(--tw-text-opacity))}.hover\:text-red-500:hover{--tw-text-opacity:1;color:rgba(239,68,68,var(--tw-text-opacity))}.hover\:text-\[\#29aaec\]:hover{--tw-text-opacity:1;color:rgba(41,170,236,var(--tw-text-opacity))}.hover\:text-\[\#004182\]:hover{--tw-text-opacity:1;color:rgba(0,65,130,var(--tw-text-opacity))}.hover\:text-flag-green:hover{--tw-text-opacity:1;color:rgba(9,145,112,var(--tw-text-opacity))}.hover\:text-green-800:hover{--tw-text-opacity:1;color:rgba(6,95,70,var(--tw-text-opacity))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.hover\:text-yellow-600:hover{--tw-text-opacity:1;color:rgba(202,138,4,var(--tw-text-opacity))}.hover\:text-green-900:hover{--tw-text-opacity:1;color:rgba(6,78,59,var(--tw-text-opacity))}.hover\:text-skin-muted:hover{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity));color:rgba(var(--color-text-muted),var(--tw-text-opacity))}.hover\:text-gray-500:hover{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.hover\:text-gray-900:hover{--tw-text-opacity:1;color:rgba(17,24,39,var(--tw-text-opacity))}.hover\:text-negative-500:hover{--tw-text-opacity:1;color:rgba(239,68,68,var(--tw-text-opacity))}.hover\:text-secondary-700:hover{--tw-text-opacity:1;color:rgba(51,65,85,var(--tw-text-opacity))}.hover\:text-primary-500:hover{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.hover\:text-negative-400:hover{--tw-text-opacity:1;color:rgba(248,113,113,var(--tw-text-opacity))}.hover\:text-secondary-500:hover{--tw-text-opacity:1;color:rgba(100,116,139,var(--tw-text-opacity))}.hover\:text-secondary-900:hover{--tw-text-opacity:1;color:rgba(15,23,42,var(--tw-text-opacity))}.hover\:underline:hover{-webkit-text-decoration-line:underline;text-decoration-line:underline}.hover\:opacity-50:hover{opacity:.5}.hover\:shadow-sm:hover{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.hover\:ring-primary-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.hover\:ring-secondary-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.hover\:ring-positive-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.hover\:ring-negative-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(220,38,38,var(--tw-ring-opacity))}.hover\:ring-warning-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(217,119,6,var(--tw-ring-opacity))}.hover\:ring-info-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(37,99,235,var(--tw-ring-opacity))}.hover\:ring-gray-900:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(17,24,39,var(--tw-ring-opacity))}.hover\:ring-slate-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.hover\:ring-gray-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(75,85,99,var(--tw-ring-opacity))}.hover\:ring-zinc-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(82,82,91,var(--tw-ring-opacity))}.hover\:ring-neutral-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(82,82,82,var(--tw-ring-opacity))}.hover\:ring-stone-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(87,83,78,var(--tw-ring-opacity))}.hover\:ring-red-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(220,38,38,var(--tw-ring-opacity))}.hover\:ring-orange-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(234,88,12,var(--tw-ring-opacity))}.hover\:ring-amber-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(217,119,6,var(--tw-ring-opacity))}.hover\:ring-lime-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(101,163,13,var(--tw-ring-opacity))}.hover\:ring-emerald-600:hover,.hover\:ring-green-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.hover\:ring-teal-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(13,148,136,var(--tw-ring-opacity))}.hover\:ring-cyan-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(8,145,178,var(--tw-ring-opacity))}.hover\:ring-sky-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(2,132,199,var(--tw-ring-opacity))}.hover\:ring-blue-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(37,99,235,var(--tw-ring-opacity))}.hover\:ring-indigo-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.hover\:ring-violet-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(124,58,237,var(--tw-ring-opacity))}.hover\:ring-purple-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(147,51,234,var(--tw-ring-opacity))}.hover\:ring-fuchsia-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(192,38,211,var(--tw-ring-opacity))}.hover\:ring-pink-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(219,39,119,var(--tw-ring-opacity))}.hover\:ring-rose-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(225,29,72,var(--tw-ring-opacity))}.focus\:z-10:focus{z-index:10}.focus\:border:focus{border-width:1px}.focus\:border-0:focus{border-width:0}.focus\:border-flag-green:focus{--tw-border-opacity:1;border-color:rgba(9,145,112,var(--tw-border-opacity))}.focus\:border-negative-500:focus{--tw-border-opacity:1;border-color:rgba(239,68,68,var(--tw-border-opacity))}.focus\:border-transparent:focus{border-color:transparent}.focus\:border-red-500:focus{--tw-border-opacity:1;border-color:rgba(239,68,68,var(--tw-border-opacity))}.focus\:border-green-500:focus{--tw-border-opacity:1;border-color:rgba(16,185,129,var(--tw-border-opacity))}.focus\:border-negative-700:focus{--tw-border-opacity:1;border-color:rgba(185,28,28,var(--tw-border-opacity))}.focus\:border-skin-input:focus{--tw-border-opacity:1;border-color:rgba(var(--color-input-border),var(--tw-border-opacity))}.focus\:border-green-300:focus{--tw-border-opacity:1;border-color:rgba(110,231,183,var(--tw-border-opacity))}.focus\:border-skin-base:focus{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.focus\:border-blue-300:focus{--tw-border-opacity:1;border-color:rgba(147,197,253,var(--tw-border-opacity))}.focus\:border-primary-400:focus{--tw-border-opacity:1;border-color:rgba(52,211,153,var(--tw-border-opacity))}.focus\:border-negative-400:focus{--tw-border-opacity:1;border-color:rgba(248,113,113,var(--tw-border-opacity))}.focus\:border-primary-500:focus{--tw-border-opacity:1;border-color:rgba(16,185,129,var(--tw-border-opacity))}.focus\:bg-green-100:focus,.focus\:bg-primary-100:focus{--tw-bg-opacity:1;background-color:rgba(209,250,229,var(--tw-bg-opacity))}.focus\:\!text-skin-primary-hover:focus{--tw-text-opacity:1!important;color:rgba(16,185,129,var(--tw-text-opacity))!important;color:rgba(var(--color-text-primary-hover),var(--tw-text-opacity))!important}.focus\:text-skin-base:focus{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity));color:rgba(var(--color-text-base),var(--tw-text-opacity))}.focus\:text-green-600:focus{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.focus\:text-green-800:focus,.focus\:text-primary-800:focus{--tw-text-opacity:1;color:rgba(6,95,70,var(--tw-text-opacity))}.focus\:underline:focus{-webkit-text-decoration-line:underline;text-decoration-line:underline}.focus\:placeholder-skin-input-focus:focus::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(107,114,128,var(--tw-placeholder-opacity));color:rgba(var(--color-text-base),var(--tw-placeholder-opacity))}.focus\:placeholder-skin-input-focus:focus:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(107,114,128,var(--tw-placeholder-opacity));color:rgba(var(--color-text-base),var(--tw-placeholder-opacity))}.focus\:placeholder-skin-input-focus:focus::placeholder{--tw-placeholder-opacity:1;color:rgba(107,114,128,var(--tw-placeholder-opacity));color:rgba(var(--color-text-base),var(--tw-placeholder-opacity))}.focus\:shadow-none:focus{--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent;box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.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-1:focus,.focus\:ring-2:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.focus\:ring-1: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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-0: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(var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-0:focus,.focus\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.focus\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-inset:focus{--tw-ring-inset:inset}.focus\:ring-green-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(16,185,129,var(--tw-ring-opacity))}.focus\:ring-flag-green:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(9,145,112,var(--tw-ring-opacity))}.focus\:ring-negative-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(239,68,68,var(--tw-ring-opacity))}.focus\:ring-transparent:focus{--tw-ring-color:transparent}.focus\:ring-red-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(239,68,68,var(--tw-ring-opacity))}.focus\:ring-blue-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(37,99,235,var(--tw-ring-opacity))}.focus\:ring-gray-200:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(229,231,235,var(--tw-ring-opacity))}.focus\:ring-primary-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.focus\:ring-secondary-200:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(226,232,240,var(--tw-ring-opacity))}.focus\:ring-primary-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(16,185,129,var(--tw-ring-opacity))}.focus\:ring-opacity-50:focus{--tw-ring-opacity:0.5}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus\:ring-offset-0:focus{--tw-ring-offset-width:0px}.focus\:ring-offset-body:focus{--tw-ring-offset-color:rgb(var(--color-body-fill))}.focus\:ring-offset-blue-50:focus{--tw-ring-offset-color:#eff6ff}.active\:bg-skin-footer:active{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity));background-color:rgba(var(--color-footer-fill),var(--tw-bg-opacity))}.active\:bg-gray-100:active{--tw-bg-opacity:1;background-color:rgba(243,244,246,var(--tw-bg-opacity))}.active\:text-skin-base:active{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity));color:rgba(var(--color-text-base),var(--tw-text-opacity))}.active\:text-gray-700:active{--tw-text-opacity:1;color:rgba(55,65,81,var(--tw-text-opacity))}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:border-primary-400:disabled{--tw-border-opacity:1;border-color:rgba(52,211,153,var(--tw-border-opacity))}.disabled\:bg-primary-400:disabled{--tw-bg-opacity:1;background-color:rgba(52,211,153,var(--tw-bg-opacity))}.disabled\:text-primary-400:disabled{--tw-text-opacity:1;color:rgba(52,211,153,var(--tw-text-opacity))}.disabled\:opacity-80:disabled{opacity:.8}.group:hover .group-hover\:block{display:block}.group:hover .group-hover\:hidden{display:none}.group:hover .group-hover\:rotate-90{--tw-rotate:90deg;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))}.group:hover .group-hover\:bg-skin-card-gray{--tw-bg-opacity:1;background-color:rgba(243,244,246,var(--tw-bg-opacity));background-color:rgba(var(--color-card-gray),var(--tw-bg-opacity))}.group:hover .group-hover\:text-green-400{--tw-text-opacity:1;color:rgba(52,211,153,var(--tw-text-opacity))}.group:hover .group-hover\:text-skin-base{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity));color:rgba(var(--color-text-base),var(--tw-text-opacity))}.group:hover .group-hover\:text-green-600{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.group:hover .group-hover\:text-white{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.group:hover .group-hover\:text-green-200{--tw-text-opacity:1;color:rgba(167,243,208,var(--tw-text-opacity))}.group:hover .group-hover\:text-skin-primary{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity));color:rgba(var(--color-text-primary),var(--tw-text-opacity))}.group:hover .group-hover\:underline{-webkit-text-decoration-line:underline;text-decoration-line:underline}.group:hover .group-hover\:opacity-75{opacity:.75}.group:focus .group-focus\:text-primary-700{--tw-text-opacity:1;color:rgba(4,120,87,var(--tw-text-opacity))}.group:focus .group-focus\:ring-2{--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),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.group:focus .group-focus\:ring-primary-600{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.group:focus .group-focus\:ring-negative-600{--tw-ring-opacity:1;--tw-ring-color:rgba(220,38,38,var(--tw-ring-opacity))}.group:focus .group-focus\:ring-offset-2{--tw-ring-offset-width:2px}.peer:checked~.peer-checked\:bg-primary-600{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.peer:focus~.peer-focus\:ring-2{--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),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.peer:focus~.peer-focus\:ring-primary-600{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.peer:focus~.peer-focus\:ring-negative-600{--tw-ring-opacity:1;--tw-ring-color:rgba(220,38,38,var(--tw-ring-opacity))}.peer:focus~.peer-focus\:ring-offset-2{--tw-ring-offset-width:2px}.dark .dark\:border-0{border-width:0}.dark .dark\:border{border-width:1px}.dark .dark\:border-none{border-style:none}.dark .dark\:border-slate-700{--tw-border-opacity:1;border-color:rgba(51,65,85,var(--tw-border-opacity))}.dark .dark\:border-gray-700{--tw-border-opacity:1;border-color:rgba(55,65,81,var(--tw-border-opacity))}.dark .dark\:border-secondary-600{--tw-border-opacity:1;border-color:rgba(71,85,105,var(--tw-border-opacity))}.dark .dark\:border-gray-400{--tw-border-opacity:1;border-color:rgba(156,163,175,var(--tw-border-opacity))}.dark .dark\:border-negative-700{--tw-border-opacity:1;border-color:rgba(185,28,28,var(--tw-border-opacity))}.dark .dark\:border-secondary-400{--tw-border-opacity:1;border-color:rgba(148,163,184,var(--tw-border-opacity))}.dark .dark\:border-negative-600{--tw-border-opacity:1;border-color:rgba(220,38,38,var(--tw-border-opacity))}.dark .dark\:border-secondary-700{--tw-border-opacity:1;border-color:rgba(51,65,85,var(--tw-border-opacity))}.dark .dark\:border-secondary-500,.dark .dark\:border-slate-500{--tw-border-opacity:1;border-color:rgba(100,116,139,var(--tw-border-opacity))}.dark .dark\:border-slate-400{--tw-border-opacity:1;border-color:rgba(148,163,184,var(--tw-border-opacity))}.dark .dark\:border-zinc-400{--tw-border-opacity:1;border-color:rgba(161,161,170,var(--tw-border-opacity))}.dark .dark\:border-neutral-400{--tw-border-opacity:1;border-color:rgba(163,163,163,var(--tw-border-opacity))}.dark .dark\:border-stone-400{--tw-border-opacity:1;border-color:rgba(168,162,158,var(--tw-border-opacity))}.dark .dark\:bg-primary-700{--tw-bg-opacity:1;background-color:rgba(4,120,87,var(--tw-bg-opacity))}.dark .dark\:bg-secondary-700{--tw-bg-opacity:1;background-color:rgba(51,65,85,var(--tw-bg-opacity))}.dark .dark\:bg-positive-700{--tw-bg-opacity:1;background-color:rgba(4,120,87,var(--tw-bg-opacity))}.dark .dark\:bg-negative-700{--tw-bg-opacity:1;background-color:rgba(185,28,28,var(--tw-bg-opacity))}.dark .dark\:bg-warning-700{--tw-bg-opacity:1;background-color:rgba(180,83,9,var(--tw-bg-opacity))}.dark .dark\:bg-info-700{--tw-bg-opacity:1;background-color:rgba(29,78,216,var(--tw-bg-opacity))}.dark .dark\:bg-gray-700{--tw-bg-opacity:1;background-color:rgba(55,65,81,var(--tw-bg-opacity))}.dark .dark\:bg-slate-700{--tw-bg-opacity:1;background-color:rgba(51,65,85,var(--tw-bg-opacity))}.dark .dark\:bg-zinc-700{--tw-bg-opacity:1;background-color:rgba(63,63,70,var(--tw-bg-opacity))}.dark .dark\:bg-neutral-700{--tw-bg-opacity:1;background-color:rgba(64,64,64,var(--tw-bg-opacity))}.dark .dark\:bg-stone-700{--tw-bg-opacity:1;background-color:rgba(68,64,60,var(--tw-bg-opacity))}.dark .dark\:bg-red-700{--tw-bg-opacity:1;background-color:rgba(185,28,28,var(--tw-bg-opacity))}.dark .dark\:bg-orange-700{--tw-bg-opacity:1;background-color:rgba(194,65,12,var(--tw-bg-opacity))}.dark .dark\:bg-amber-700{--tw-bg-opacity:1;background-color:rgba(180,83,9,var(--tw-bg-opacity))}.dark .dark\:bg-lime-700{--tw-bg-opacity:1;background-color:rgba(77,124,15,var(--tw-bg-opacity))}.dark .dark\:bg-emerald-700,.dark .dark\:bg-green-700{--tw-bg-opacity:1;background-color:rgba(4,120,87,var(--tw-bg-opacity))}.dark .dark\:bg-teal-700{--tw-bg-opacity:1;background-color:rgba(15,118,110,var(--tw-bg-opacity))}.dark .dark\:bg-cyan-700{--tw-bg-opacity:1;background-color:rgba(14,116,144,var(--tw-bg-opacity))}.dark .dark\:bg-sky-700{--tw-bg-opacity:1;background-color:rgba(3,105,161,var(--tw-bg-opacity))}.dark .dark\:bg-blue-700{--tw-bg-opacity:1;background-color:rgba(29,78,216,var(--tw-bg-opacity))}.dark .dark\:bg-indigo-700{--tw-bg-opacity:1;background-color:rgba(4,120,87,var(--tw-bg-opacity))}.dark .dark\:bg-violet-700{--tw-bg-opacity:1;background-color:rgba(109,40,217,var(--tw-bg-opacity))}.dark .dark\:bg-purple-700{--tw-bg-opacity:1;background-color:rgba(126,34,206,var(--tw-bg-opacity))}.dark .dark\:bg-fuchsia-700{--tw-bg-opacity:1;background-color:rgba(162,28,175,var(--tw-bg-opacity))}.dark .dark\:bg-pink-700{--tw-bg-opacity:1;background-color:rgba(190,24,93,var(--tw-bg-opacity))}.dark .dark\:bg-rose-700{--tw-bg-opacity:1;background-color:rgba(190,18,60,var(--tw-bg-opacity))}.dark .dark\:bg-gray-600{--tw-bg-opacity:1;background-color:rgba(75,85,99,var(--tw-bg-opacity))}.dark .dark\:bg-secondary-800{--tw-bg-opacity:1;background-color:rgba(30,41,59,var(--tw-bg-opacity))}.dark .dark\:bg-secondary-600{--tw-bg-opacity:1;background-color:rgba(71,85,105,var(--tw-bg-opacity))}.dark .dark\:bg-transparent{background-color:transparent}.dark .dark\:bg-slate-600{--tw-bg-opacity:1;background-color:rgba(71,85,105,var(--tw-bg-opacity))}.dark .dark\:bg-secondary-200{--tw-bg-opacity:1;background-color:rgba(226,232,240,var(--tw-bg-opacity))}.dark .dark\:bg-opacity-60{--tw-bg-opacity:0.6}.dark .dark\:text-slate-200{--tw-text-opacity:1;color:rgba(226,232,240,var(--tw-text-opacity))}.dark .dark\:text-gray-200{--tw-text-opacity:1;color:rgba(229,231,235,var(--tw-text-opacity))}.dark .dark\:text-secondary-400{--tw-text-opacity:1;color:rgba(148,163,184,var(--tw-text-opacity))}.dark .dark\:text-gray-600{--tw-text-opacity:1;color:rgba(75,85,99,var(--tw-text-opacity))}.dark .dark\:text-negative-600{--tw-text-opacity:1;color:rgba(220,38,38,var(--tw-text-opacity))}.dark .dark\:text-secondary-500{--tw-text-opacity:1;color:rgba(100,116,139,var(--tw-text-opacity))}.dark .dark\:text-slate-400{--tw-text-opacity:1;color:rgba(148,163,184,var(--tw-text-opacity))}.dark .dark\:text-secondary-600{--tw-text-opacity:1;color:rgba(71,85,105,var(--tw-text-opacity))}.dark .dark\:text-gray-400{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}.dark .dark\:text-slate-500{--tw-text-opacity:1;color:rgba(100,116,139,var(--tw-text-opacity))}.dark .dark\:text-zinc-400{--tw-text-opacity:1;color:rgba(161,161,170,var(--tw-text-opacity))}.dark .dark\:text-neutral-400{--tw-text-opacity:1;color:rgba(163,163,163,var(--tw-text-opacity))}.dark .dark\:text-stone-400{--tw-text-opacity:1;color:rgba(168,162,158,var(--tw-text-opacity))}.dark .dark\:text-slate-300{--tw-text-opacity:1;color:rgba(203,213,225,var(--tw-text-opacity))}.dark .dark\:text-negative-500{--tw-text-opacity:1;color:rgba(239,68,68,var(--tw-text-opacity))}.dark .dark\:placeholder-negative-500::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(239,68,68,var(--tw-placeholder-opacity))}.dark .dark\:placeholder-negative-500:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(239,68,68,var(--tw-placeholder-opacity))}.dark .dark\:placeholder-negative-500::placeholder{--tw-placeholder-opacity:1;color:rgba(239,68,68,var(--tw-placeholder-opacity))}.dark .dark\:placeholder-secondary-500::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(100,116,139,var(--tw-placeholder-opacity))}.dark .dark\:placeholder-secondary-500:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(100,116,139,var(--tw-placeholder-opacity))}.dark .dark\:placeholder-secondary-500::placeholder{--tw-placeholder-opacity:1;color:rgba(100,116,139,var(--tw-placeholder-opacity))}.dark .dark\:ring-primary-700{--tw-ring-opacity:1;--tw-ring-color:rgba(4,120,87,var(--tw-ring-opacity))}.dark .dark\:ring-secondary-700{--tw-ring-opacity:1;--tw-ring-color:rgba(51,65,85,var(--tw-ring-opacity))}.dark .dark\:ring-positive-700{--tw-ring-opacity:1;--tw-ring-color:rgba(4,120,87,var(--tw-ring-opacity))}.dark .dark\:ring-negative-700{--tw-ring-opacity:1;--tw-ring-color:rgba(185,28,28,var(--tw-ring-opacity))}.dark .dark\:ring-warning-700{--tw-ring-opacity:1;--tw-ring-color:rgba(180,83,9,var(--tw-ring-opacity))}.dark .dark\:ring-info-700{--tw-ring-opacity:1;--tw-ring-color:rgba(29,78,216,var(--tw-ring-opacity))}.dark .dark\:ring-gray-700{--tw-ring-opacity:1;--tw-ring-color:rgba(55,65,81,var(--tw-ring-opacity))}.dark .dark\:ring-slate-700{--tw-ring-opacity:1;--tw-ring-color:rgba(51,65,85,var(--tw-ring-opacity))}.dark .dark\:ring-zinc-700{--tw-ring-opacity:1;--tw-ring-color:rgba(63,63,70,var(--tw-ring-opacity))}.dark .dark\:ring-neutral-700{--tw-ring-opacity:1;--tw-ring-color:rgba(64,64,64,var(--tw-ring-opacity))}.dark .dark\:ring-stone-700{--tw-ring-opacity:1;--tw-ring-color:rgba(68,64,60,var(--tw-ring-opacity))}.dark .dark\:ring-red-700{--tw-ring-opacity:1;--tw-ring-color:rgba(185,28,28,var(--tw-ring-opacity))}.dark .dark\:ring-orange-700{--tw-ring-opacity:1;--tw-ring-color:rgba(194,65,12,var(--tw-ring-opacity))}.dark .dark\:ring-amber-700{--tw-ring-opacity:1;--tw-ring-color:rgba(180,83,9,var(--tw-ring-opacity))}.dark .dark\:ring-lime-700{--tw-ring-opacity:1;--tw-ring-color:rgba(77,124,15,var(--tw-ring-opacity))}.dark .dark\:ring-emerald-700,.dark .dark\:ring-green-700{--tw-ring-opacity:1;--tw-ring-color:rgba(4,120,87,var(--tw-ring-opacity))}.dark .dark\:ring-teal-700{--tw-ring-opacity:1;--tw-ring-color:rgba(15,118,110,var(--tw-ring-opacity))}.dark .dark\:ring-cyan-700{--tw-ring-opacity:1;--tw-ring-color:rgba(14,116,144,var(--tw-ring-opacity))}.dark .dark\:ring-sky-700{--tw-ring-opacity:1;--tw-ring-color:rgba(3,105,161,var(--tw-ring-opacity))}.dark .dark\:ring-blue-700{--tw-ring-opacity:1;--tw-ring-color:rgba(29,78,216,var(--tw-ring-opacity))}.dark .dark\:ring-indigo-700{--tw-ring-opacity:1;--tw-ring-color:rgba(4,120,87,var(--tw-ring-opacity))}.dark .dark\:ring-violet-700{--tw-ring-opacity:1;--tw-ring-color:rgba(109,40,217,var(--tw-ring-opacity))}.dark .dark\:ring-purple-700{--tw-ring-opacity:1;--tw-ring-color:rgba(126,34,206,var(--tw-ring-opacity))}.dark .dark\:ring-fuchsia-700{--tw-ring-opacity:1;--tw-ring-color:rgba(162,28,175,var(--tw-ring-opacity))}.dark .dark\:ring-pink-700{--tw-ring-opacity:1;--tw-ring-color:rgba(190,24,93,var(--tw-ring-opacity))}.dark .dark\:ring-rose-700{--tw-ring-opacity:1;--tw-ring-color:rgba(190,18,60,var(--tw-ring-opacity))}.dark .dark\:ring-slate-600{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.dark .dark\:ring-gray-600{--tw-ring-opacity:1;--tw-ring-color:rgba(75,85,99,var(--tw-ring-opacity))}.dark .dark\:ring-zinc-600{--tw-ring-opacity:1;--tw-ring-color:rgba(82,82,91,var(--tw-ring-opacity))}.dark .dark\:ring-neutral-600{--tw-ring-opacity:1;--tw-ring-color:rgba(82,82,82,var(--tw-ring-opacity))}.dark .dark\:ring-stone-600{--tw-ring-opacity:1;--tw-ring-color:rgba(87,83,78,var(--tw-ring-opacity))}.dark .dark\:ring-negative-600{--tw-ring-opacity:1;--tw-ring-color:rgba(220,38,38,var(--tw-ring-opacity))}.dark .dark\:ring-offset-slate-800{--tw-ring-offset-color:#1e293b}.dark .dark\:ring-offset-gray-800{--tw-ring-offset-color:#1f2937}.dark .dark\:ring-offset-slate-700{--tw-ring-offset-color:#334155}.dark .dark\:checked\:border-secondary-600:checked{--tw-border-opacity:1;border-color:rgba(71,85,105,var(--tw-border-opacity))}.dark .dark\:checked\:border-negative-700:checked{--tw-border-opacity:1;border-color:rgba(185,28,28,var(--tw-border-opacity))}.dark .dark\:checked\:bg-negative-700:checked{--tw-bg-opacity:1;background-color:rgba(185,28,28,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-primary-600:hover{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-secondary-600:hover{--tw-bg-opacity:1;background-color:rgba(71,85,105,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-positive-600:hover{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-negative-600:hover{--tw-bg-opacity:1;background-color:rgba(220,38,38,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-warning-600:hover{--tw-bg-opacity:1;background-color:rgba(217,119,6,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-info-600:hover{--tw-bg-opacity:1;background-color:rgba(37,99,235,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-gray-600:hover{--tw-bg-opacity:1;background-color:rgba(75,85,99,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-slate-600:hover{--tw-bg-opacity:1;background-color:rgba(71,85,105,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-zinc-600:hover{--tw-bg-opacity:1;background-color:rgba(82,82,91,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-neutral-600:hover{--tw-bg-opacity:1;background-color:rgba(82,82,82,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-stone-600:hover{--tw-bg-opacity:1;background-color:rgba(87,83,78,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-red-600:hover{--tw-bg-opacity:1;background-color:rgba(220,38,38,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-orange-600:hover{--tw-bg-opacity:1;background-color:rgba(234,88,12,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-amber-600:hover{--tw-bg-opacity:1;background-color:rgba(217,119,6,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-lime-600:hover{--tw-bg-opacity:1;background-color:rgba(101,163,13,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-emerald-600:hover,.dark .dark\:hover\:bg-green-600:hover{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-teal-600:hover{--tw-bg-opacity:1;background-color:rgba(13,148,136,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-cyan-600:hover{--tw-bg-opacity:1;background-color:rgba(8,145,178,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-sky-600:hover{--tw-bg-opacity:1;background-color:rgba(2,132,199,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-blue-600:hover{--tw-bg-opacity:1;background-color:rgba(37,99,235,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-indigo-600:hover{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-violet-600:hover{--tw-bg-opacity:1;background-color:rgba(124,58,237,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-purple-600:hover{--tw-bg-opacity:1;background-color:rgba(147,51,234,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-fuchsia-600:hover{--tw-bg-opacity:1;background-color:rgba(192,38,211,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-pink-600:hover{--tw-bg-opacity:1;background-color:rgba(219,39,119,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-rose-600:hover{--tw-bg-opacity:1;background-color:rgba(225,29,72,var(--tw-bg-opacity))}.dark .dark\:hover\:bg-secondary-700:hover,.dark .dark\:hover\:bg-slate-700:hover{--tw-bg-opacity:1;background-color:rgba(51,65,85,var(--tw-bg-opacity))}.dark .dark\:hover\:text-secondary-600:hover{--tw-text-opacity:1;color:rgba(71,85,105,var(--tw-text-opacity))}.dark .dark\:hover\:text-secondary-100:hover{--tw-text-opacity:1;color:rgba(241,245,249,var(--tw-text-opacity))}.dark .dark\:hover\:ring-2:hover{--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),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.dark .dark\:hover\:ring-primary-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-secondary-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-positive-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-negative-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(220,38,38,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-warning-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(217,119,6,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-info-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(37,99,235,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-gray-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(75,85,99,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-slate-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-zinc-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(82,82,91,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-neutral-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(82,82,82,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-stone-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(87,83,78,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-red-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(220,38,38,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-orange-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(234,88,12,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-amber-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(217,119,6,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-lime-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(101,163,13,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-emerald-600:hover,.dark .dark\:hover\:ring-green-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-teal-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(13,148,136,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-cyan-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(8,145,178,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-sky-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(2,132,199,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-blue-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(37,99,235,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-indigo-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(5,150,105,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-violet-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(124,58,237,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-purple-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(147,51,234,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-fuchsia-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(192,38,211,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-pink-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(219,39,119,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-rose-600:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(225,29,72,var(--tw-ring-opacity))}.dark .dark\:hover\:ring-gray-400:hover{--tw-ring-opacity:1;--tw-ring-color:rgba(156,163,175,var(--tw-ring-opacity))}.dark .dark\:focus\:border-secondary-500:focus{--tw-border-opacity:1;border-color:rgba(100,116,139,var(--tw-border-opacity))}.dark .dark\:focus\:border-negative-600:focus{--tw-border-opacity:1;border-color:rgba(220,38,38,var(--tw-border-opacity))}.dark .dark\:focus\:bg-secondary-700:focus{--tw-bg-opacity:1;background-color:rgba(51,65,85,var(--tw-bg-opacity))}.dark .dark\:focus\:ring-secondary-400:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(148,163,184,var(--tw-ring-opacity))}.dark .dark\:focus\:ring-secondary-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.dark .dark\:focus\:ring-offset-secondary-800:focus{--tw-ring-offset-color:#1e293b}.dark .group:hover .dark\:group-hover\:text-gray-500{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.dark .group:focus .dark\:group-focus\:text-primary-500{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.dark .group:focus .dark\:group-focus\:ring-secondary-600{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.dark .group:focus .dark\:group-focus\:ring-negative-700{--tw-ring-opacity:1;--tw-ring-color:rgba(185,28,28,var(--tw-ring-opacity))}.dark .peer:checked~.dark\:peer-checked\:bg-secondary-700{--tw-bg-opacity:1;background-color:rgba(51,65,85,var(--tw-bg-opacity))}.dark .peer:focus~.dark\:peer-focus\:ring-secondary-600{--tw-ring-opacity:1;--tw-ring-color:rgba(71,85,105,var(--tw-ring-opacity))}.dark .peer:focus~.dark\:peer-focus\:ring-negative-700{--tw-ring-opacity:1;--tw-ring-color:rgba(185,28,28,var(--tw-ring-opacity))}.dark .peer:focus~.dark\:peer-focus\:ring-offset-secondary-800{--tw-ring-offset-color:#1e293b}@media (min-width:640px){.sm\:prose-base{font-size:1rem;line-height:1.75}.sm\:prose-base :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}.sm\:prose-base :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.sm\:prose-base :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6em;margin-top:1.6em;padding-left:1em}.sm\:prose-base :where(h1):not(:where([class~=not-prose] *)){font-size:2.25em;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.sm\:prose-base :where(h2):not(:where([class~=not-prose] *)){font-size:1.5em;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.sm\:prose-base :where(h3):not(:where([class~=not-prose] *)){font-size:1.25em;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.sm\:prose-base :where(h4):not(:where([class~=not-prose] *)){line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.sm\:prose-base :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.sm\:prose-base :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.sm\:prose-base :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.sm\:prose-base :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.sm\:prose-base :where(figcaption):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.sm\:prose-base :where(code):not(:where([class~=not-prose] *)){font-size:.875em}.sm\:prose-base :where(h2 code):not(:where([class~=not-prose] *)){font-size:.875em}.sm\:prose-base :where(h3 code):not(:where([class~=not-prose] *)){font-size:.9em}.sm\:prose-base :where(pre):not(:where([class~=not-prose] *)){border-radius:.375rem;font-size:.875em;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;padding:.8571429em 1.1428571em}.sm\:prose-base :where(ol):not(:where([class~=not-prose] *)){padding-left:1.625em}.sm\:prose-base :where(ul):not(:where([class~=not-prose] *)){padding-left:1.625em}.sm\:prose-base :where(li):not(:where([class~=not-prose] *)){margin-bottom:.5em;margin-top:.5em}.sm\:prose-base :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.375em}.sm\:prose-base :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.375em}.sm\:prose-base>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.sm\:prose-base>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.sm\:prose-base>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.sm\:prose-base>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.sm\:prose-base>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.sm\:prose-base :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.sm\:prose-base :where(hr):not(:where([class~=not-prose] *)){margin-bottom:3em;margin-top:3em}.sm\:prose-base :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.sm\:prose-base :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.sm\:prose-base :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.sm\:prose-base :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.sm\:prose-base :where(table):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.7142857}.sm\:prose-base :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.5714286em;padding-left:.5714286em;padding-right:.5714286em}.sm\:prose-base :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.sm\:prose-base :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.sm\:prose-base :where(tbody td):not(:where([class~=not-prose] *)){padding:.5714286em}.sm\:prose-base :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.sm\:prose-base :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.sm\:prose-base>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.sm\:prose-base>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.sm\:absolute{position:absolute}.sm\:inset-auto{bottom:auto;left:auto;right:auto;top:auto}.sm\:top-0{top:0}.sm\:right-0{right:0}.sm\:left-0{left:0}.sm\:bottom-0{bottom:0}.sm\:z-10{z-index:10}.sm\:order-last{order:9999}.sm\:col-span-1{grid-column:span 1/span 1}.sm\:col-span-2{grid-column:span 2/span 2}.sm\:col-span-3{grid-column:span 3/span 3}.sm\:mx-auto{margin-left:auto;margin-right:auto}.sm\:-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.sm\:-mx-4{margin-left:-1rem;margin-right:-1rem}.sm\:mx-0{margin-left:0;margin-right:0}.sm\:my-8{margin-bottom:2rem;margin-top:2rem}.sm\:mt-0{margin-top:0}.sm\:mt-14{margin-top:3.5rem}.sm\:mt-5{margin-top:1.25rem}.sm\:ml-3{margin-left:.75rem}.sm\:mt-12{margin-top:3rem}.sm\:ml-0{margin-left:0}.sm\:mt-8{margin-top:2rem}.sm\:ml-2{margin-left:.5rem}.sm\:mt-px{margin-top:1px}.sm\:-mt-16{margin-top:-4rem}.sm\:ml-16{margin-left:4rem}.sm\:ml-4{margin-left:1rem}.sm\:mt-6{margin-top:1.5rem}.sm\:mt-16{margin-top:4rem}.sm\:mt-11{margin-top:2.75rem}.sm\:mb-16{margin-bottom:4rem}.sm\:mb-11{margin-bottom:2.75rem}.sm\:block{display:block}.sm\:inline-block{display:inline-block}.sm\:flex{display:flex}.sm\:inline-flex{display:inline-flex}.sm\:grid{display:grid}.sm\:hidden{display:none}.sm\:h-12{height:3rem}.sm\:h-20{height:5rem}.sm\:h-16{height:4rem}.sm\:h-10{height:2.5rem}.sm\:h-32{height:8rem}.sm\:h-9{height:2.25rem}.sm\:h-screen{height:100vh}.sm\:h-48{height:12rem}.sm\:h-6{height:1.5rem}.sm\:max-h-60{max-height:15rem}.sm\:min-h-max{min-height:-webkit-max-content;min-height:-moz-max-content;min-height:max-content}.sm\:w-auto{width:auto}.sm\:w-32{width:8rem}.sm\:w-12{width:3rem}.sm\:w-10{width:2.5rem}.sm\:w-full{width:100%}.sm\:w-72{width:18rem}.sm\:w-48{width:12rem}.sm\:w-6{width:1.5rem}.sm\:min-w-0{min-width:0}.sm\:max-w-xl{max-width:36rem}.sm\:max-w-2xl{max-width:42rem}.sm\:max-w-3xl{max-width:48rem}.sm\:max-w-4xl{max-width:56rem}.sm\:max-w-lg{max-width:32rem}.sm\:max-w-md{max-width:28rem}.sm\:max-w-none{max-width:none}.sm\:max-w-5xl{max-width:64rem}.sm\:max-w-sm{max-width:24rem}.sm\:max-w-6xl{max-width:72rem}.sm\:max-w-7xl{max-width:80rem}.sm\:flex-1{flex:1 1 0%}.sm\:flex-auto{flex:1 1 auto}.sm\:flex-none{flex:none}.sm\:shrink-0{flex-shrink:0}.sm\:translate-y-0{--tw-translate-y:0px}.sm\:translate-x-2,.sm\:translate-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))}.sm\:translate-x-2{--tw-translate-x:0.5rem}.sm\:translate-x-0{--tw-translate-x:0px}.sm\:scale-95,.sm\:translate-x-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))}.sm\:scale-95{--tw-scale-x:.95;--tw-scale-y:.95}.sm\:scale-100{--tw-scale-x:1;--tw-scale-y: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))}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.sm\:grid-cols-none{grid-template-columns:none}.sm\:flex-row{flex-direction:row}.sm\:flex-row-reverse{flex-direction:row-reverse}.sm\:items-start{align-items:flex-start}.sm\:items-end{align-items:flex-end}.sm\:items-center{align-items:center}.sm\:justify-start{justify-content:flex-start}.sm\:justify-end{justify-content:flex-end}.sm\:justify-center{justify-content:center}.sm\:justify-between{justify-content:space-between}.sm\:gap-6{gap:1.5rem}.sm\:gap-8{gap:2rem}.sm\:gap-12{gap:3rem}.sm\:gap-4{gap:1rem}.sm\:gap-10{gap:2.5rem}.sm\:gap-0\.5{gap:.125rem}.sm\:gap-0{gap:0}.sm\:gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.sm\:gap-y-12{row-gap:3rem}.sm\:gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.sm\:gap-y-0{row-gap:0}.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\: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-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.25rem*var(--tw-space-y-reverse));margin-top:calc(1.25rem*(1 - var(--tw-space-y-reverse)))}.sm\: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))}.sm\: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)))}.sm\:space-x-5>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.25rem*var(--tw-space-x-reverse))}.sm\:space-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.5rem*var(--tw-space-x-reverse))}.sm\:space-y-10>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(2.5rem*var(--tw-space-y-reverse));margin-top:calc(2.5rem*(1 - var(--tw-space-y-reverse)))}.sm\:truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sm\:rounded-lg{border-radius:.5rem}.sm\:rounded-xl{border-radius:.75rem}.sm\:rounded-md{border-radius:.375rem}.sm\:border-0{border-width:0}.sm\:border-t{border-top-width:1px}.sm\:border-skin-base{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.sm\:bg-secondary-100{--tw-bg-opacity:1;background-color:rgba(241,245,249,var(--tw-bg-opacity))}.sm\:p-10{padding:2.5rem}.sm\:p-6{padding:1.5rem}.sm\:p-4{padding:1rem}.sm\:p-8{padding:2rem}.sm\:p-0{padding:0}.sm\:p-5{padding:1.25rem}.sm\:py-10{padding-bottom:2.5rem;padding-top:2.5rem}.sm\:py-24{padding-bottom:6rem;padding-top:6rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:py-9{padding-bottom:2.25rem;padding-top:2.25rem}.sm\:px-4{padding-left:1rem;padding-right:1rem}.sm\:py-6{padding-bottom:1.5rem;padding-top:1.5rem}.sm\:py-16{padding-bottom:4rem;padding-top:4rem}.sm\:px-0{padding-left:0;padding-right:0}.sm\:py-2{padding-bottom:.5rem;padding-top:.5rem}.sm\:px-1{padding-left:.25rem;padding-right:.25rem}.sm\:px-5{padding-left:1.25rem;padding-right:1.25rem}.sm\:px-3{padding-left:.75rem;padding-right:.75rem}.sm\:pt-14{padding-top:3.5rem}.sm\:pt-24{padding-top:6rem}.sm\:pb-64{padding-bottom:16rem}.sm\:pt-0{padding-top:0}.sm\:pt-2{padding-top:.5rem}.sm\:pb-1{padding-bottom:.25rem}.sm\:pl-6{padding-left:1.5rem}.sm\:pr-6{padding-right:1.5rem}.sm\:pt-5{padding-top:1.25rem}.sm\:pt-10{padding-top:2.5rem}.sm\:pt-16{padding-top:4rem}.sm\:pt-7{padding-top:1.75rem}.sm\:pt-4{padding-top:1rem}.sm\:pl-14{padding-left:3.5rem}.sm\:text-left{text-align:left}.sm\:text-center{text-align:center}.sm\:text-right{text-align:right}.sm\:align-middle{vertical-align:middle}.sm\:text-sm{font-size:.875rem;line-height:1.25rem}.sm\:text-base{font-size:1rem;line-height:1.5rem}.sm\:text-3xl{font-size:1.875rem;line-height:2.25rem}.sm\:text-lg{font-size:1.125rem;line-height:1.75rem}.sm\:text-2xl{font-size:1.5rem;line-height:2rem}.sm\:text-xl{font-size:1.25rem;line-height:1.75rem}.sm\:text-5xl{font-size:3rem;line-height:1}.sm\:text-4xl{font-size:2.25rem;line-height:2.5rem}.sm\:leading-none{line-height:1}.sm\:leading-10{line-height:2.5rem}.sm\:leading-5{line-height:1.25rem}.sm\:leading-8{line-height:2rem}.sm\: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);box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.sm\:duration-700{transition-duration:.7s}.dark .sm\:dark\:bg-secondary-800{--tw-bg-opacity:1;background-color:rgba(30,41,59,var(--tw-bg-opacity))}}@media (min-width:768px){.md\:prose-sm{font-size:.875rem;line-height:1.7142857}.md\:prose-sm :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em}.md\:prose-sm :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.8888889em;margin-top:.8888889em}.md\:prose-sm :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em;padding-left:1.1111111em}.md\:prose-sm :where(h1):not(:where([class~=not-prose] *)){font-size:2.1428571em;line-height:1.2;margin-bottom:.8em;margin-top:0}.md\:prose-sm :where(h2):not(:where([class~=not-prose] *)){font-size:1.4285714em;line-height:1.4;margin-bottom:.8em;margin-top:1.6em}.md\:prose-sm :where(h3):not(:where([class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.5555556em}.md\:prose-sm :where(h4):not(:where([class~=not-prose] *)){line-height:1.4285714;margin-bottom:.5714286em;margin-top:1.4285714em}.md\:prose-sm :where(img):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.md\:prose-sm :where(video):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.md\:prose-sm :where(figure):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.md\:prose-sm :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.md\:prose-sm :where(figcaption):not(:where([class~=not-prose] *)){font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}.md\:prose-sm :where(code):not(:where([class~=not-prose] *)){font-size:.8571429em}.md\:prose-sm :where(h2 code):not(:where([class~=not-prose] *)){font-size:.9em}.md\:prose-sm :where(h3 code):not(:where([class~=not-prose] *)){font-size:.8888889em}.md\:prose-sm :where(pre):not(:where([class~=not-prose] *)){border-radius:.25rem;font-size:.8571429em;line-height:1.6666667;margin-bottom:1.6666667em;margin-top:1.6666667em;padding:.6666667em 1em}.md\:prose-sm :where(ol):not(:where([class~=not-prose] *)){padding-left:1.5714286em}.md\:prose-sm :where(ul):not(:where([class~=not-prose] *)){padding-left:1.5714286em}.md\:prose-sm :where(li):not(:where([class~=not-prose] *)){margin-bottom:.2857143em;margin-top:.2857143em}.md\:prose-sm :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4285714em}.md\:prose-sm :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4285714em}.md\:prose-sm>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.md\:prose-sm>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.md\:prose-sm>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.md\:prose-sm>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.md\:prose-sm>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.md\:prose-sm :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.md\:prose-sm :where(hr):not(:where([class~=not-prose] *)){margin-bottom:2.8571429em;margin-top:2.8571429em}.md\:prose-sm :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-sm :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-sm :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-sm :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-sm :where(table):not(:where([class~=not-prose] *)){font-size:.8571429em;line-height:1.5}.md\:prose-sm :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.6666667em;padding-left:1em;padding-right:1em}.md\:prose-sm :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-sm :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-sm :where(tbody td):not(:where([class~=not-prose] *)){padding:.6666667em 1em}.md\:prose-sm :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-sm :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-sm>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-sm>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.md\:prose-lg{font-size:1.125rem;line-height:1.7777778}.md\:prose-lg :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em}.md\:prose-lg :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2222222em;line-height:1.4545455;margin-bottom:1.0909091em;margin-top:1.0909091em}.md\:prose-lg :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6666667em;margin-top:1.6666667em;padding-left:1em}.md\:prose-lg :where(h1):not(:where([class~=not-prose] *)){font-size:2.6666667em;line-height:1;margin-bottom:.8333333em;margin-top:0}.md\:prose-lg :where(h2):not(:where([class~=not-prose] *)){font-size:1.6666667em;line-height:1.3333333;margin-bottom:1.0666667em;margin-top:1.8666667em}.md\:prose-lg :where(h3):not(:where([class~=not-prose] *)){font-size:1.3333333em;line-height:1.5;margin-bottom:.6666667em;margin-top:1.6666667em}.md\:prose-lg :where(h4):not(:where([class~=not-prose] *)){line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.7777778em}.md\:prose-lg :where(img):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.md\:prose-lg :where(video):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.md\:prose-lg :where(figure):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.md\:prose-lg :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.md\:prose-lg :where(figcaption):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5;margin-top:1em}.md\:prose-lg :where(code):not(:where([class~=not-prose] *)){font-size:.8888889em}.md\:prose-lg :where(h2 code):not(:where([class~=not-prose] *)){font-size:.8666667em}.md\:prose-lg :where(h3 code):not(:where([class~=not-prose] *)){font-size:.875em}.md\:prose-lg :where(pre):not(:where([class~=not-prose] *)){border-radius:.375rem;font-size:.8888889em;line-height:1.75;margin-bottom:2em;margin-top:2em;padding:1em 1.5em}.md\:prose-lg :where(ol):not(:where([class~=not-prose] *)){padding-left:1.5555556em}.md\:prose-lg :where(ul):not(:where([class~=not-prose] *)){padding-left:1.5555556em}.md\:prose-lg :where(li):not(:where([class~=not-prose] *)){margin-bottom:.6666667em;margin-top:.6666667em}.md\:prose-lg :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}.md\:prose-lg :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}.md\:prose-lg>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.md\:prose-lg>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.md\:prose-lg>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.md\:prose-lg>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.md\:prose-lg>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.md\:prose-lg :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.md\:prose-lg :where(hr):not(:where([class~=not-prose] *)){margin-bottom:3.1111111em;margin-top:3.1111111em}.md\:prose-lg :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-lg :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-lg :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-lg :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-lg :where(table):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5}.md\:prose-lg :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.75em;padding-left:.75em;padding-right:.75em}.md\:prose-lg :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-lg :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-lg :where(tbody td):not(:where([class~=not-prose] *)){padding:.75em}.md\:prose-lg :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-lg :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-lg>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-lg>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.md\:prose-xl{font-size:1.25rem;line-height:1.8}.md\:prose-xl :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.2em;margin-top:1.2em}.md\:prose-xl :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2em;line-height:1.5;margin-bottom:1em;margin-top:1em}.md\:prose-xl :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6em;margin-top:1.6em;padding-left:1.0666667em}.md\:prose-xl :where(h1):not(:where([class~=not-prose] *)){font-size:2.8em;line-height:1;margin-bottom:.8571429em;margin-top:0}.md\:prose-xl :where(h2):not(:where([class~=not-prose] *)){font-size:1.8em;line-height:1.1111111;margin-bottom:.8888889em;margin-top:1.5555556em}.md\:prose-xl :where(h3):not(:where([class~=not-prose] *)){font-size:1.5em;line-height:1.3333333;margin-bottom:.6666667em;margin-top:1.6em}.md\:prose-xl :where(h4):not(:where([class~=not-prose] *)){line-height:1.6;margin-bottom:.6em;margin-top:1.8em}.md\:prose-xl :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.md\:prose-xl :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.md\:prose-xl :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.md\:prose-xl :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.md\:prose-xl :where(figcaption):not(:where([class~=not-prose] *)){font-size:.9em;line-height:1.5555556;margin-top:1em}.md\:prose-xl :where(code):not(:where([class~=not-prose] *)){font-size:.9em}.md\:prose-xl :where(h2 code):not(:where([class~=not-prose] *)){font-size:.8611111em}.md\:prose-xl :where(h3 code):not(:where([class~=not-prose] *)){font-size:.9em}.md\:prose-xl :where(pre):not(:where([class~=not-prose] *)){border-radius:.5rem;font-size:.9em;line-height:1.7777778;margin-bottom:2em;margin-top:2em;padding:1.1111111em 1.3333333em}.md\:prose-xl :where(ol):not(:where([class~=not-prose] *)){padding-left:1.6em}.md\:prose-xl :where(ul):not(:where([class~=not-prose] *)){padding-left:1.6em}.md\:prose-xl :where(li):not(:where([class~=not-prose] *)){margin-bottom:.6em;margin-top:.6em}.md\:prose-xl :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4em}.md\:prose-xl :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4em}.md\:prose-xl>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.md\:prose-xl>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.md\:prose-xl>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.md\:prose-xl>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.md\:prose-xl>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.md\:prose-xl :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.md\:prose-xl :where(hr):not(:where([class~=not-prose] *)){margin-bottom:2.8em;margin-top:2.8em}.md\:prose-xl :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-xl :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-xl :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-xl :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-xl :where(table):not(:where([class~=not-prose] *)){font-size:.9em;line-height:1.5555556}.md\:prose-xl :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.8888889em;padding-left:.6666667em;padding-right:.6666667em}.md\:prose-xl :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-xl :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-xl :where(tbody td):not(:where([class~=not-prose] *)){padding:.8888889em .6666667em}.md\:prose-xl :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-xl :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-xl>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-xl>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.md\:mx-auto{margin-left:auto;margin-right:auto}.md\:mt-0{margin-top:0}.md\:ml-6{margin-left:1.5rem}.md\:ml-4{margin-left:1rem}.md\:block{display:block}.md\:flex{display:flex}.md\:hidden{display:none}.md\:w-auto{width:auto}.md\:max-w-xl{max-width:36rem}.md\:max-w-2xl{max-width:42rem}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:items-center{align-items:center}.md\:justify-between{justify-content:space-between}.md\:gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.md\:rounded-lg{border-radius:.5rem}.md\:border-t-0{border-top-width:0}.md\:border-l{border-left-width:1px}.md\:px-1{padding-left:.25rem;padding-right:.25rem}.md\:px-6{padding-left:1.5rem;padding-right:1.5rem}.md\:px-4{padding-left:1rem;padding-right:1rem}.md\:text-4xl{font-size:2.25rem;line-height:2.5rem}}@media (min-width:1024px){.lg\:prose-lg{font-size:1.125rem;line-height:1.7777778}.lg\:prose-lg :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em}.lg\:prose-lg :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2222222em;line-height:1.4545455;margin-bottom:1.0909091em;margin-top:1.0909091em}.lg\:prose-lg :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6666667em;margin-top:1.6666667em;padding-left:1em}.lg\:prose-lg :where(h1):not(:where([class~=not-prose] *)){font-size:2.6666667em;line-height:1;margin-bottom:.8333333em;margin-top:0}.lg\:prose-lg :where(h2):not(:where([class~=not-prose] *)){font-size:1.6666667em;line-height:1.3333333;margin-bottom:1.0666667em;margin-top:1.8666667em}.lg\:prose-lg :where(h3):not(:where([class~=not-prose] *)){font-size:1.3333333em;line-height:1.5;margin-bottom:.6666667em;margin-top:1.6666667em}.lg\:prose-lg :where(h4):not(:where([class~=not-prose] *)){line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.7777778em}.lg\:prose-lg :where(img):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.lg\:prose-lg :where(video):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.lg\:prose-lg :where(figure):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.lg\:prose-lg :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.lg\:prose-lg :where(figcaption):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5;margin-top:1em}.lg\:prose-lg :where(code):not(:where([class~=not-prose] *)){font-size:.8888889em}.lg\:prose-lg :where(h2 code):not(:where([class~=not-prose] *)){font-size:.8666667em}.lg\:prose-lg :where(h3 code):not(:where([class~=not-prose] *)){font-size:.875em}.lg\:prose-lg :where(pre):not(:where([class~=not-prose] *)){border-radius:.375rem;font-size:.8888889em;line-height:1.75;margin-bottom:2em;margin-top:2em;padding:1em 1.5em}.lg\:prose-lg :where(ol):not(:where([class~=not-prose] *)){padding-left:1.5555556em}.lg\:prose-lg :where(ul):not(:where([class~=not-prose] *)){padding-left:1.5555556em}.lg\:prose-lg :where(li):not(:where([class~=not-prose] *)){margin-bottom:.6666667em;margin-top:.6666667em}.lg\:prose-lg :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}.lg\:prose-lg :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}.lg\:prose-lg>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.lg\:prose-lg>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.lg\:prose-lg>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.lg\:prose-lg>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.lg\:prose-lg>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.lg\:prose-lg :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.lg\:prose-lg :where(hr):not(:where([class~=not-prose] *)){margin-bottom:3.1111111em;margin-top:3.1111111em}.lg\:prose-lg :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-lg :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-lg :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-lg :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-lg :where(table):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5}.lg\:prose-lg :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.75em;padding-left:.75em;padding-right:.75em}.lg\:prose-lg :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.lg\:prose-lg :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.lg\:prose-lg :where(tbody td):not(:where([class~=not-prose] *)){padding:.75em}.lg\:prose-lg :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.lg\:prose-lg :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.lg\:prose-lg>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-lg>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.lg\:prose-xl{font-size:1.25rem;line-height:1.8}.lg\:prose-xl :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.2em;margin-top:1.2em}.lg\:prose-xl :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2em;line-height:1.5;margin-bottom:1em;margin-top:1em}.lg\:prose-xl :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6em;margin-top:1.6em;padding-left:1.0666667em}.lg\:prose-xl :where(h1):not(:where([class~=not-prose] *)){font-size:2.8em;line-height:1;margin-bottom:.8571429em;margin-top:0}.lg\:prose-xl :where(h2):not(:where([class~=not-prose] *)){font-size:1.8em;line-height:1.1111111;margin-bottom:.8888889em;margin-top:1.5555556em}.lg\:prose-xl :where(h3):not(:where([class~=not-prose] *)){font-size:1.5em;line-height:1.3333333;margin-bottom:.6666667em;margin-top:1.6em}.lg\:prose-xl :where(h4):not(:where([class~=not-prose] *)){line-height:1.6;margin-bottom:.6em;margin-top:1.8em}.lg\:prose-xl :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.lg\:prose-xl :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.lg\:prose-xl :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.lg\:prose-xl :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.lg\:prose-xl :where(figcaption):not(:where([class~=not-prose] *)){font-size:.9em;line-height:1.5555556;margin-top:1em}.lg\:prose-xl :where(code):not(:where([class~=not-prose] *)){font-size:.9em}.lg\:prose-xl :where(h2 code):not(:where([class~=not-prose] *)){font-size:.8611111em}.lg\:prose-xl :where(h3 code):not(:where([class~=not-prose] *)){font-size:.9em}.lg\:prose-xl :where(pre):not(:where([class~=not-prose] *)){border-radius:.5rem;font-size:.9em;line-height:1.7777778;margin-bottom:2em;margin-top:2em;padding:1.1111111em 1.3333333em}.lg\:prose-xl :where(ol):not(:where([class~=not-prose] *)){padding-left:1.6em}.lg\:prose-xl :where(ul):not(:where([class~=not-prose] *)){padding-left:1.6em}.lg\:prose-xl :where(li):not(:where([class~=not-prose] *)){margin-bottom:.6em;margin-top:.6em}.lg\:prose-xl :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4em}.lg\:prose-xl :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4em}.lg\:prose-xl>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.lg\:prose-xl>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.lg\:prose-xl>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.lg\:prose-xl>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.lg\:prose-xl>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.lg\:prose-xl :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.lg\:prose-xl :where(hr):not(:where([class~=not-prose] *)){margin-bottom:2.8em;margin-top:2.8em}.lg\:prose-xl :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-xl :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-xl :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-xl :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-xl :where(table):not(:where([class~=not-prose] *)){font-size:.9em;line-height:1.5555556}.lg\:prose-xl :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.8888889em;padding-left:.6666667em;padding-right:.6666667em}.lg\:prose-xl :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.lg\:prose-xl :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.lg\:prose-xl :where(tbody td):not(:where([class~=not-prose] *)){padding:.8888889em .6666667em}.lg\:prose-xl :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.lg\:prose-xl :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.lg\:prose-xl>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-xl>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.lg\:left-1\/2{left:50%}.lg\:col-span-3{grid-column:span 3/span 3}.lg\:col-span-2{grid-column:span 2/span 2}.lg\:col-span-6{grid-column:span 6/span 6}.lg\:col-span-5{grid-column:span 5/span 5}.lg\:col-span-4{grid-column:span 4/span 4}.lg\:col-span-1{grid-column:span 1/span 1}.lg\:col-span-8{grid-column:span 8/span 8}.lg\:col-span-7{grid-column:span 7/span 7}.lg\:col-span-10{grid-column:span 10/span 10}.lg\:col-span-9{grid-column:span 9/span 9}.lg\:col-start-10{grid-column-start:10}.lg\:row-span-3{grid-row:span 3/span 3}.lg\:mx-0{margin-left:0;margin-right:0}.lg\:-mx-8{margin-left:-2rem;margin-right:-2rem}.lg\:mt-8{margin-top:2rem}.lg\:mt-0{margin-top:0}.lg\:mt-12{margin-top:3rem}.lg\:mt-10{margin-top:2.5rem}.lg\:mb-32{margin-bottom:8rem}.lg\:ml-10{margin-left:2.5rem}.lg\:ml-0{margin-left:0}.lg\:ml-6{margin-left:1.5rem}.lg\:block{display:block}.lg\:flex{display:flex}.lg\:grid{display:grid}.lg\:hidden{display:none}.lg\:h-20{height:5rem}.lg\:h-48{height:12rem}.lg\:w-20{width:5rem}.lg\:w-90{width:22.5rem}.lg\:max-w-2xl{max-width:42rem}.lg\:max-w-3xl{max-width:48rem}.lg\:max-w-4xl{max-width:56rem}.lg\:max-w-none{max-width:none}.lg\:max-w-7xl{max-width:80rem}.lg\:max-w-xl{max-width:36rem}.lg\:max-w-xs{max-width:20rem}.lg\:-translate-x-1\/2{--tw-translate-x:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.lg\:grid-flow-col{grid-auto-flow:column}.lg\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}.lg\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.lg\:grid-rows-3{grid-template-rows:repeat(3,minmax(0,1fr))}.lg\:items-start{align-items:flex-start}.lg\:items-center{align-items:center}.lg\:justify-start{justify-content:flex-start}.lg\:justify-end{justify-content:flex-end}.lg\:justify-between{justify-content:space-between}.lg\:gap-16{gap:4rem}.lg\:gap-6{gap:1.5rem}.lg\:gap-24{gap:6rem}.lg\:gap-8{gap:2rem}.lg\:gap-10{gap:2.5rem}.lg\:gap-12{gap:3rem}.lg\:gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.lg\:gap-x-5{-moz-column-gap:1.25rem;column-gap:1.25rem}.lg\:gap-y-12{row-gap:3rem}.lg\:gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.lg\:gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.lg\:gap-y-6{row-gap:1.5rem}.lg\: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)))}.lg\: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))}.lg\:space-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.5rem*var(--tw-space-x-reverse))}.lg\:self-center{align-self:center}.lg\:border-l{border-left-width:1px}.lg\:border-skin-base{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.lg\:py-12{padding-bottom:3rem;padding-top:3rem}.lg\:py-20{padding-bottom:5rem;padding-top:5rem}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:py-16{padding-bottom:4rem;padding-top:4rem}.lg\:py-8{padding-bottom:2rem;padding-top:2rem}.lg\:px-0{padding-left:0;padding-right:0}.lg\:pl-8{padding-left:2rem}.lg\:pb-20{padding-bottom:5rem}.lg\:pb-12{padding-bottom:3rem}.lg\:pb-16{padding-bottom:4rem}.lg\:text-left{text-align:left}.lg\:text-sm{font-size:.875rem;line-height:1.25rem}.lg\:text-4xl{font-size:2.25rem;line-height:2.5rem}.lg\:text-base{font-size:1rem;line-height:1.5rem}.lg\:text-5xl{font-size:3rem;line-height:1}.lg\:text-lg{font-size:1.125rem;line-height:1.75rem}.lg\:leading-\[3\.5rem\]{line-height:3.5rem}}@media (min-width:1280px){.xl\:absolute{position:absolute}.xl\:relative{position:relative}.xl\:inset-0{left:0;right:0}.xl\:inset-0,.xl\:inset-y-0{bottom:0;top:0}.xl\:left-0{left:0}.xl\:col-span-7{grid-column:span 7/span 7}.xl\:col-span-3{grid-column:span 3/span 3}.xl\:col-start-2{grid-column-start:2}.xl\:col-start-1{grid-column-start:1}.xl\:mt-16{margin-top:4rem}.xl\:grid{display:grid}.xl\:h-full{height:100%}.xl\:w-32{width:8rem}.xl\:grid-flow-col-dense{grid-auto-flow:column dense}.xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.xl\:gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.xl\:bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.xl\:pb-14{padding-bottom:3.5rem}.xl\:pb-24{padding-bottom:6rem}.xl\:text-base{font-size:1rem;line-height:1.5rem}.xl\:text-4xl{font-size:2.25rem;line-height:2.5rem}.xl\:text-3xl{font-size:1.875rem;line-height:2.25rem}.xl\:text-xl{font-size:1.25rem;line-height:1.75rem}} diff --git a/public/mix-manifest.json b/public/mix-manifest.json index 2dbe569a..c6edd963 100755 --- a/public/mix-manifest.json +++ b/public/mix-manifest.json @@ -1,4 +1,4 @@ { "/js/app.js": "/js/app.js?id=b1a7a2e198e9cbc10d82d5dacb642f89", - "/css/app.css": "/css/app.css?id=1201b99aba73bd7486fdf155ffae0de3" + "/css/app.css": "/css/app.css?id=335776d4413d0901ae664bb2f4044b0d" } diff --git a/resources/css/base.css b/resources/css/base.css index a9acbf04..ebf1c45d 100644 --- a/resources/css/base.css +++ b/resources/css/base.css @@ -12,6 +12,7 @@ input { .affiliate img { margin-bottom: 0 !important; + margin-top: 0 !important; border-bottom-left-radius: 0; border-bottom-right-radius: 0; } diff --git a/resources/views/components/admin/new-member.blade.php b/resources/views/components/admin/new-member.blade.php index c3e06537..8229e73f 100644 --- a/resources/views/components/admin/new-member.blade.php +++ b/resources/views/components/admin/new-member.blade.php @@ -7,6 +7,6 @@

{{ $user->name }}

- {{ __('Membre depuis :date', ['date' => ucfirst($user->created_at->formatLocalized('%B %Y'))]) }} + {{ __('Membre depuis :date', ['date' => ucfirst($user->created_at->isoFormat('MMMM YYYY'))]) }}
diff --git a/resources/views/components/layouts/admin-menu.blade.php b/resources/views/components/layouts/admin-menu.blade.php index 44699d05..f55901dc 100644 --- a/resources/views/components/layouts/admin-menu.blade.php +++ b/resources/views/components/layouts/admin-menu.blade.php @@ -1,22 +1,22 @@ -
+
- diff --git a/resources/views/components/layouts/cp.blade.php b/resources/views/components/layouts/cp.blade.php index a0d91181..b24509c3 100644 --- a/resources/views/components/layouts/cp.blade.php +++ b/resources/views/components/layouts/cp.blade.php @@ -19,8 +19,7 @@ - - + @googlefonts @livewireStyles diff --git a/resources/views/components/scripts.blade.php b/resources/views/components/scripts.blade.php new file mode 100644 index 00000000..f7e0139e --- /dev/null +++ b/resources/views/components/scripts.blade.php @@ -0,0 +1,4 @@ +@push('scripts') + {{ $slot }} +@endpush + diff --git a/resources/views/cpanel/analytics.blade.php b/resources/views/cpanel/analytics.blade.php new file mode 100644 index 00000000..04fe78cd --- /dev/null +++ b/resources/views/cpanel/analytics.blade.php @@ -0,0 +1,22 @@ + + +
+
+
+

Rapport Hebdomadaires

+

+ Toutes les informations pour le rapport hebdomadaire pour la semaine + ({{ __(':start - :end', ['start' => now()->startOfWeek()->isoFormat('DD MMMM'), 'end' => now()->endOfWeek()->isoFormat('DD MMMM')]) }}) +

+
+
+ @widget('recentPostsPerWeek') + @widget('mostViewedPostsPerWeek') + @widget('mostLikedPostsPerWeek') + @widget('mostActiveUsersPerWeek') +
+
+
+
+
+
diff --git a/resources/views/cpanel/dashboard.blade.php b/resources/views/cpanel/dashboard.blade.php index d29db350..d1ed459b 100644 --- a/resources/views/cpanel/dashboard.blade.php +++ b/resources/views/cpanel/dashboard.blade.php @@ -1,7 +1,7 @@
-

{{ __('Shalom, :name', ['name' => auth()->user()->name]) }}

+

{{ __('Shalom, :name', ['name' => auth()->user()->name]) }}

@widget('recentNumbers') diff --git a/resources/views/home.blade.php b/resources/views/home.blade.php index cef6c8b9..bb44125c 100644 --- a/resources/views/home.blade.php +++ b/resources/views/home.blade.php @@ -169,7 +169,7 @@

{!! $discussion->excerpt() !!}

@endforeach diff --git a/resources/views/vendor/analytics/dashboard.blade.php b/resources/views/vendor/analytics/dashboard.blade.php new file mode 100644 index 00000000..1cf792c7 --- /dev/null +++ b/resources/views/vendor/analytics/dashboard.blade.php @@ -0,0 +1,45 @@ + + + + + + + Laravel Analytics + + + +
+
+
+ @include('analytics::data.filter') +
+
+ @each('analytics::stats.card', $stats, 'stat') +
+
+ @include('analytics::data.pages-card') + @include('analytics::data.sources-card') + @include('analytics::data.users-card') + @include('analytics::data.devices-card') +
+
+
+ + + + diff --git a/resources/views/vendor/analytics/data/devices-card.blade.php b/resources/views/vendor/analytics/data/devices-card.blade.php new file mode 100644 index 00000000..fc4be2fe --- /dev/null +++ b/resources/views/vendor/analytics/data/devices-card.blade.php @@ -0,0 +1,17 @@ +
+
+

Devices

+
+
+
Type
+
Users
+
+
+ @foreach ($devices as $device) +
+
{{ $device->type }}
+
{{ $device->users }}
+
+ @endforeach +
+
diff --git a/resources/views/vendor/analytics/data/filter.blade.php b/resources/views/vendor/analytics/data/filter.blade.php new file mode 100644 index 00000000..a99713d7 --- /dev/null +++ b/resources/views/vendor/analytics/data/filter.blade.php @@ -0,0 +1,18 @@ +
+
+ +
+ + +
diff --git a/resources/views/vendor/analytics/data/pages-card.blade.php b/resources/views/vendor/analytics/data/pages-card.blade.php new file mode 100644 index 00000000..60bf9586 --- /dev/null +++ b/resources/views/vendor/analytics/data/pages-card.blade.php @@ -0,0 +1,21 @@ +
+
+

Pages

+
+
+
Page
+
Users
+
+
+ @foreach ($pages as $page) +
+ +
{{ $page->users }}
+
+ @endforeach +
+
diff --git a/resources/views/vendor/analytics/data/sources-card.blade.php b/resources/views/vendor/analytics/data/sources-card.blade.php new file mode 100644 index 00000000..47ca102f --- /dev/null +++ b/resources/views/vendor/analytics/data/sources-card.blade.php @@ -0,0 +1,25 @@ +
+
+

Sources

+
+
+
Page
+
Users
+
+
+ @foreach ($sources as $source) +
+ +
{{ $source->users }}
+
+ @endforeach +
+
diff --git a/resources/views/vendor/analytics/data/users-card.blade.php b/resources/views/vendor/analytics/data/users-card.blade.php new file mode 100644 index 00000000..aee59b5f --- /dev/null +++ b/resources/views/vendor/analytics/data/users-card.blade.php @@ -0,0 +1,17 @@ +
+
+

Users

+
+
+
Country
+
Users
+
+
+ @foreach ($users as $user) +
+
{{ $user->country }}
+
{{ $user->users }}
+
+ @endforeach +
+
diff --git a/resources/views/vendor/analytics/stats/card.blade.php b/resources/views/vendor/analytics/stats/card.blade.php new file mode 100644 index 00000000..40126f7d --- /dev/null +++ b/resources/views/vendor/analytics/stats/card.blade.php @@ -0,0 +1,13 @@ +
+
+

{{ $stat['key'] }}

+
+
{{ $stat['value'] }}
+ @if (isset($stat['percentage']) && $stat['percentage'] > 0) +
+ @include(sprintf('analytics::stats.%s-icon', $stat['increase'] ? 'increase' : 'decrease')) +
+ @endif +
+
+
diff --git a/resources/views/vendor/analytics/stats/decrease-icon.blade.php b/resources/views/vendor/analytics/stats/decrease-icon.blade.php new file mode 100644 index 00000000..03476abb --- /dev/null +++ b/resources/views/vendor/analytics/stats/decrease-icon.blade.php @@ -0,0 +1,7 @@ +
+ + Decreased by + {{ $stat['percentage'] }}% +
diff --git a/resources/views/vendor/analytics/stats/increase-icon.blade.php b/resources/views/vendor/analytics/stats/increase-icon.blade.php new file mode 100644 index 00000000..c4e6fd9b --- /dev/null +++ b/resources/views/vendor/analytics/stats/increase-icon.blade.php @@ -0,0 +1,7 @@ +
+ + Increased by + {{ $stat['percentage'] }}% +
diff --git a/resources/views/widgets/most_active_users_per_week.blade.php b/resources/views/widgets/most_active_users_per_week.blade.php new file mode 100644 index 00000000..cdf0f52a --- /dev/null +++ b/resources/views/widgets/most_active_users_per_week.blade.php @@ -0,0 +1,25 @@ +
+
+

Utilisateurs actifs

+ {{ $users->count() }} +
+
+ Utilisateur + Profil +
+
    + @forelse($users as $user) +
  • + + {{ $user->name }} ({{ '@'.$user->username }}) + + Afficher +
  • + @empty +
  • + + Aucune activité disponible pour cette semaine. +
  • + @endforelse +
+
diff --git a/resources/views/widgets/most_liked_posts_per_week.blade.php b/resources/views/widgets/most_liked_posts_per_week.blade.php new file mode 100644 index 00000000..b1511aea --- /dev/null +++ b/resources/views/widgets/most_liked_posts_per_week.blade.php @@ -0,0 +1,17 @@ +
+
+

Articles les plus likés

+
+
+ Article + Likes +
+
    + @foreach($articles as $article) +
  • + {{ $article->title }} + {{ $article->reactions_count }} +
  • + @endforeach +
+
diff --git a/resources/views/widgets/most_viewed_posts_per_week.blade.php b/resources/views/widgets/most_viewed_posts_per_week.blade.php new file mode 100644 index 00000000..c27e0371 --- /dev/null +++ b/resources/views/widgets/most_viewed_posts_per_week.blade.php @@ -0,0 +1,17 @@ +
+
+

Articles les plus visités

+
+
+ Article + Vues +
+
    + @foreach($articles as $article) +
  • + {{ $article->title }} + {{ $article->views_count }} +
  • + @endforeach +
+
diff --git a/resources/views/widgets/recent_posts_per_week.blade.php b/resources/views/widgets/recent_posts_per_week.blade.php new file mode 100644 index 00000000..7d5ea757 --- /dev/null +++ b/resources/views/widgets/recent_posts_per_week.blade.php @@ -0,0 +1,23 @@ +
+
+

Articles de la semaine

+ {{ $articles->count() }} +
+
+ Article + Auteur +
+ +
diff --git a/routes/cpanel.php b/routes/cpanel.php index 540a6436..4d48672d 100644 --- a/routes/cpanel.php +++ b/routes/cpanel.php @@ -1,13 +1,13 @@ name('home'); +Route::get('/home', Cpanel\DashboardController::class)->name('home'); +Route::get('/analytics', Cpanel\AnalyticsController::class)->name('analytics'); Route::prefix('users')->as('users.')->group(function () { - Route::get('/', UserController::class)->name('browse'); + Route::get('/', Cpanel\UserController::class)->name('browse'); }); Route::get('health', HealthCheckResultsController::class);