diff --git a/README.md b/README.md
index e824d237..163b9342 100644
--- a/README.md
+++ b/README.md
@@ -23,8 +23,6 @@ Groupe Slack: https://laravelcm.slack.com
Nous tenons à remercier ces **entreprises extraordinaires** pour leur parrainage. Si vous souhaitez devenir sponsor, veuillez visiter la page Laravel.cm Github de Sponsoring.
- **[Laravel Shopper](https://laravelshopper.io)**
-- [Localhost Academy](https://localhostkmer.xyz)
-- [Lotin Corp](https://lotincorp.biz)
## Caractéristiques Serveur
diff --git a/app/Enums/PlanType.php b/app/Enums/PlanType.php
new file mode 100644
index 00000000..4acacd3d
--- /dev/null
+++ b/app/Enums/PlanType.php
@@ -0,0 +1,14 @@
+addMonth(), function () {
+ return User::select('name', 'username')->limit(48)->get();
+ });
+
+ $premium = collect();
+
+ foreach ($users->chunk(16) as $key => $usersRow) {
+ $usersArray[$key] = [];
+ foreach ($usersRow as $user) {
+ array_push($usersArray[$key], new PremiumUserResource($user));
+ }
+ $premium->push($usersArray[$key]);
+ }
+
+ return response()->json($premium);
+ }
+}
diff --git a/app/Http/Controllers/HomeController.php b/app/Http/Controllers/HomeController.php
index 04d61115..484ca1a3 100644
--- a/app/Http/Controllers/HomeController.php
+++ b/app/Http/Controllers/HomeController.php
@@ -4,9 +4,11 @@
use App\Models\Article;
use App\Models\Discussion;
+use App\Models\Premium\Plan;
use App\Models\Thread;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\GuzzleException;
+use Illuminate\Database\Eloquent\Builder;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Cache;
@@ -14,6 +16,12 @@ class HomeController extends Controller
{
public function index()
{
+ $plans = Cache::remember('plans', now()->addYear(), function () {
+ return Plan::with('features')
+ ->developer()
+ ->get();
+ });
+
$latestArticles = Cache::remember('latestArticles', now()->addHour(), function () {
return Article::with('tags')
->published()
@@ -48,7 +56,12 @@ public function index()
->twitterSite('laravelcm')
->withUrl();
- return view('home', compact('latestArticles', 'latestThreads', 'latestDiscussions'));
+ return view('home', compact(
+ 'latestArticles',
+ 'latestThreads',
+ 'latestDiscussions',
+ 'plans'
+ ));
}
public function slack(Request $request)
diff --git a/app/Http/Livewire/Articles/Create.php b/app/Http/Livewire/Articles/Create.php
index e5125e22..8b74552a 100644
--- a/app/Http/Livewire/Articles/Create.php
+++ b/app/Http/Livewire/Articles/Create.php
@@ -11,7 +11,6 @@
use App\Traits\WithTagsAssociation;
use Illuminate\Contracts\View\View;
use Illuminate\Support\Facades\Auth;
-use Illuminate\Support\Str;
use Livewire\Component;
use Livewire\WithFileUploads;
diff --git a/app/Http/Resources/PremiumUserResource.php b/app/Http/Resources/PremiumUserResource.php
new file mode 100644
index 00000000..a4c3269b
--- /dev/null
+++ b/app/Http/Resources/PremiumUserResource.php
@@ -0,0 +1,23 @@
+ $this->name,
+ 'username' => $this->username,
+ 'image' => $this->profile_photo_url,
+ ];
+ }
+}
diff --git a/app/Markdown/MarkdownHelper.php b/app/Markdown/MarkdownHelper.php
index ba10fef8..e440a6ce 100644
--- a/app/Markdown/MarkdownHelper.php
+++ b/app/Markdown/MarkdownHelper.php
@@ -10,10 +10,8 @@ public static function parseLiquidTags($html): string
// If we find at least one liquid tag
if (preg_match_all('/{% .* %}/', $html, $matches) && $matches[0]) {
-
// loop through each of the liquid tags
foreach ($matches[0] as $index => $match) {
-
// replace multiple spaces with single space
$matchArray = explode(' ', preg_replace('!\s+!', ' ', $match));
diff --git a/app/Models/Premium/Feature.php b/app/Models/Premium/Feature.php
new file mode 100644
index 00000000..d531bfb1
--- /dev/null
+++ b/app/Models/Premium/Feature.php
@@ -0,0 +1,11 @@
+where('type', \App\Enums\PlanType::DEVELOPER);
+ }
+
+ public function scopeEnterprise(Builder $query): Builder
+ {
+ return $query->where('type', \App\Enums\PlanType::ENTERPRISE);
+ }
+}
diff --git a/app/Models/Premium/Subscription.php b/app/Models/Premium/Subscription.php
new file mode 100644
index 00000000..0e6035c6
--- /dev/null
+++ b/app/Models/Premium/Subscription.php
@@ -0,0 +1,11 @@
+registerBladeDirective();
+
+ if ($this->app->environment('local')) {
+ $this->app->register(\Laravel\Telescope\TelescopeServiceProvider::class);
+ $this->app->register(TelescopeServiceProvider::class);
+ }
}
public function boot(): void
diff --git a/app/Providers/TelescopeServiceProvider.php b/app/Providers/TelescopeServiceProvider.php
new file mode 100644
index 00000000..ce184eba
--- /dev/null
+++ b/app/Providers/TelescopeServiceProvider.php
@@ -0,0 +1,73 @@
+hideSensitiveRequestDetails();
+
+ Telescope::filter(function (IncomingEntry $entry) {
+ if ($this->app->environment('local')) {
+ return true;
+ }
+
+ return $entry->isReportableException() ||
+ $entry->isFailedRequest() ||
+ $entry->isFailedJob() ||
+ $entry->isScheduledTask() ||
+ $entry->hasMonitoredTag();
+ });
+ }
+
+ /**
+ * Prevent sensitive request details from being logged by Telescope.
+ *
+ * @return void
+ */
+ protected function hideSensitiveRequestDetails()
+ {
+ if ($this->app->environment('local')) {
+ return;
+ }
+
+ Telescope::hideRequestParameters(['_token']);
+
+ Telescope::hideRequestHeaders([
+ 'cookie',
+ 'x-csrf-token',
+ 'x-xsrf-token',
+ ]);
+ }
+
+ /**
+ * Register the Telescope gate.
+ *
+ * This gate determines who can access Telescope in non-local environments.
+ *
+ * @return void
+ */
+ protected function gate()
+ {
+ Gate::define('viewTelescope', function ($user) {
+ return in_array($user->email, [
+ 'monneylobe@gmail.com',
+ 'support@laravel.cm',
+ 'arthur@laravel.cm',
+ ]);
+ });
+ }
+}
diff --git a/app/View/Components/WireUI/Button.php b/app/View/Components/WireUI/Button.php
new file mode 100644
index 00000000..620a8a9b
--- /dev/null
+++ b/app/View/Components/WireUI/Button.php
@@ -0,0 +1,199 @@
+ <<<'EOT'
+ border text-skin-base bg-skin-button hover:bg-skin-button-hover border-skin-input
+ focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-body focus:ring-green-500
+ EOT,
+
+ 'primary' => <<<'EOT'
+ ring-primary-500 text-white bg-primary-500 hover:bg-primary-600 hover:ring-primary-600
+ dark:ring-offset-slate-800 dark:bg-primary-700 dark:ring-primary-700
+ dark:hover:bg-primary-600 dark:hover:ring-primary-600
+ EOT,
+
+ 'secondary' => <<<'EOT'
+ ring-secondary-500 text-white bg-secondary-500 hover:bg-secondary-600 hover:ring-secondary-600
+ dark:ring-offset-slate-800 dark:bg-secondary-700 dark:ring-secondary-700
+ dark:hover:bg-secondary-600 dark:hover:ring-secondary-600
+ EOT,
+
+ 'positive' => <<<'EOT'
+ ring-positive-500 text-white bg-positive-500 hover:bg-positive-600 hover:ring-positive-600
+ dark:ring-offset-slate-800 dark:bg-positive-700 dark:ring-positive-700
+ dark:hover:bg-positive-600 dark:hover:ring-positive-600
+ EOT,
+
+ 'negative' => <<<'EOT'
+ ring-negative-500 text-white bg-negative-500 hover:bg-negative-600 hover:ring-negative-600
+ dark:ring-offset-slate-800 dark:bg-negative-700 dark:ring-negative-700
+ dark:hover:bg-negative-600 dark:hover:ring-negative-600
+ EOT,
+
+ 'warning' => <<<'EOT'
+ ring-warning-500 text-white bg-warning-500 hover:bg-warning-600 hover:ring-warning-600
+ dark:ring-offset-slate-800 dark:bg-warning-700 dark:ring-warning-700
+ dark:hover:bg-warning-600 dark:hover:ring-warning-600
+ EOT,
+
+ 'info' => <<<'EOT'
+ ring-info-500 text-white bg-info-500 hover:bg-info-600 hover:ring-info-600
+ dark:ring-offset-slate-800 dark:bg-info-700 dark:ring-info-700
+ dark:hover:bg-info-600 dark:hover:ring-info-600
+ EOT,
+
+ 'dark' => <<<'EOT'
+ ring-gray-700 text-white bg-gray-700 hover:bg-gray-900 hover:ring-gray-900
+ dark:ring-offset-gray-800 dark:bg-gray-700 dark:ring-gray-700
+ dark:hover:bg-gray-600 dark:hover:ring-gray-600
+ EOT,
+
+ 'white' => <<<'EOT'
+ bg-white border text-slate-500 hover:bg-slate-50 ring-slate-200
+ dark:text-slate-200 dark:ring-slate-700 dark:border-slate-700
+ dark:bg-slate-700 dark:hover:bg-slate-600 dark:hover:ring-slate-600
+ dark:ring-offset-slate-800
+ EOT,
+
+ 'black' => <<<'EOT'
+ bg-black text-slate-100 hover:bg-slate-900 ring-black
+ dark:ring-slate-700 dark:border-slate-700 dark:bg-slate-700 dark:hover:bg-slate-600
+ dark:ring-offset-slate-800 dark:hover:ring-slate-600
+ EOT,
+
+ 'slate' => <<<'EOT'
+ ring-slate-500 text-white bg-slate-500 hover:bg-slate-600 hover:ring-slate-600
+ dark:ring-offset-slate-800 dark:bg-slate-700 dark:ring-slate-700
+ dark:hover:bg-slate-600 dark:hover:ring-slate-600
+ EOT,
+
+ 'gray' => <<<'EOT'
+ ring-gray-500 text-white bg-gray-500 hover:bg-gray-600 hover:ring-gray-600
+ dark:ring-offset-slate-800 dark:bg-gray-700 dark:ring-gray-700
+ dark:hover:bg-gray-600 dark:hover:ring-gray-600
+ EOT,
+
+ 'zinc' => <<<'EOT'
+ ring-zinc-500 text-white bg-zinc-500 hover:bg-zinc-600 hover:ring-zinc-600
+ dark:ring-offset-slate-800 dark:bg-zinc-700 dark:ring-zinc-700
+ dark:hover:bg-zinc-600 dark:hover:ring-zinc-600
+ EOT,
+
+ 'neutral' => <<<'EOT'
+ ring-neutral-500 text-white bg-neutral-500 hover:bg-neutral-600 hover:ring-neutral-600
+ dark:ring-offset-slate-800 dark:bg-neutral-700 dark:ring-neutral-700
+ dark:hover:bg-neutral-600 dark:hover:ring-neutral-600
+ EOT,
+
+ 'stone' => <<<'EOT'
+ ring-stone-500 text-white bg-stone-500 hover:bg-stone-600 hover:ring-stone-600
+ dark:ring-offset-slate-800 dark:bg-stone-700 dark:ring-stone-700
+ dark:hover:bg-stone-600 dark:hover:ring-stone-600
+ EOT,
+
+ 'red' => <<<'EOT'
+ ring-red-500 text-white bg-red-500 hover:bg-red-600 hover:ring-red-600
+ dark:ring-offset-slate-800 dark:bg-red-700 dark:ring-red-700
+ dark:hover:bg-red-600 dark:hover:ring-red-600
+ EOT,
+
+ 'orange' => <<<'EOT'
+ ring-orange-500 text-white bg-orange-500 hover:bg-orange-600 hover:ring-orange-600
+ dark:ring-offset-slate-800 dark:bg-orange-700 dark:ring-orange-700
+ dark:hover:bg-orange-600 dark:hover:ring-orange-600
+ EOT,
+
+ 'amber' => <<<'EOT'
+ ring-amber-500 text-white bg-amber-500 hover:bg-amber-600 hover:ring-amber-600
+ dark:ring-offset-slate-800 dark:bg-amber-700 dark:ring-amber-700
+ dark:hover:bg-amber-600 dark:hover:ring-amber-600
+ EOT,
+
+ 'lime' => <<<'EOT'
+ ring-lime-500 text-white bg-lime-500 hover:bg-lime-600 hover:ring-lime-600
+ dark:ring-offset-slate-800 dark:bg-lime-700 dark:ring-lime-700
+ dark:hover:bg-lime-600 dark:hover:ring-lime-600
+ EOT,
+
+ 'green' => <<<'EOT'
+ ring-green-500 text-white bg-green-500 hover:bg-green-600 hover:ring-green-600
+ dark:ring-offset-slate-800 dark:bg-green-700 dark:ring-green-700
+ dark:hover:bg-green-600 dark:hover:ring-green-600
+ EOT,
+
+ 'emerald' => <<<'EOT'
+ ring-emerald-500 text-white bg-emerald-500 hover:bg-emerald-600 hover:ring-emerald-600
+ dark:ring-offset-slate-800 dark:bg-emerald-700 dark:ring-emerald-700
+ dark:hover:bg-emerald-600 dark:hover:ring-emerald-600
+ EOT,
+
+ 'teal' => <<<'EOT'
+ ring-teal-500 text-white bg-teal-500 hover:bg-teal-600 hover:ring-teal-600
+ dark:ring-offset-slate-800 dark:bg-teal-700 dark:ring-teal-700
+ dark:hover:bg-teal-600 dark:hover:ring-teal-600
+ EOT,
+
+ 'cyan' => <<<'EOT'
+ ring-cyan-500 text-white bg-cyan-500 hover:bg-cyan-600 hover:ring-cyan-600
+ dark:ring-offset-slate-800 dark:bg-cyan-700 dark:ring-cyan-700
+ dark:hover:bg-cyan-600 dark:hover:ring-cyan-600
+ EOT,
+
+ 'sky' => <<<'EOT'
+ ring-sky-500 text-white bg-sky-500 hover:bg-sky-600 hover:ring-sky-600
+ dark:ring-offset-slate-800 dark:bg-sky-700 dark:ring-sky-700
+ dark:hover:bg-sky-600 dark:hover:ring-sky-600
+ EOT,
+
+ 'blue' => <<<'EOT'
+ ring-blue-500 text-white bg-blue-500 hover:bg-blue-600 hover:ring-blue-600
+ dark:ring-offset-slate-800 dark:bg-blue-700 dark:ring-blue-700
+ dark:hover:bg-blue-600 dark:hover:ring-blue-600
+ EOT,
+
+ 'indigo' => <<<'EOT'
+ ring-indigo-500 text-white bg-indigo-500 hover:bg-indigo-600 hover:ring-indigo-600
+ dark:ring-offset-slate-800 dark:bg-indigo-700 dark:ring-indigo-700
+ dark:hover:bg-indigo-600 dark:hover:ring-indigo-600
+ EOT,
+
+ 'violet' => <<<'EOT'
+ ring-violet-500 text-white bg-violet-500 hover:bg-violet-600 hover:ring-violet-600
+ dark:ring-offset-slate-800 dark:bg-violet-700 dark:ring-violet-700
+ dark:hover:bg-violet-600 dark:hover:ring-violet-600
+ EOT,
+
+ 'purple' => <<<'EOT'
+ ring-purple-500 text-white bg-purple-500 hover:bg-purple-600 hover:ring-purple-600
+ dark:ring-offset-slate-800 dark:bg-purple-700 dark:ring-purple-700
+ dark:hover:bg-purple-600 dark:hover:ring-purple-600
+ EOT,
+
+ 'fuchsia' => <<<'EOT'
+ ring-fuchsia-500 text-white bg-fuchsia-500 hover:bg-fuchsia-600 hover:ring-fuchsia-600
+ dark:ring-offset-slate-800 dark:bg-fuchsia-700 dark:ring-fuchsia-700
+ dark:hover:bg-fuchsia-600 dark:hover:ring-fuchsia-600
+ EOT,
+
+ 'pink' => <<<'EOT'
+ ring-pink-500 text-white bg-pink-500 hover:bg-pink-600 hover:ring-pink-600
+ dark:ring-offset-slate-800 dark:bg-pink-700 dark:ring-pink-700
+ dark:hover:bg-pink-600 dark:hover:ring-pink-600
+ EOT,
+
+ 'rose' => <<<'EOT'
+ ring-rose-500 text-white bg-rose-500 hover:bg-rose-600 hover:ring-rose-600
+ dark:ring-offset-slate-800 dark:bg-rose-700 dark:ring-rose-700
+ dark:hover:bg-rose-600 dark:hover:ring-rose-600
+ EOT,
+ ];
+ }
+}
diff --git a/app/View/Components/WireUI/Input.php b/app/View/Components/WireUI/Input.php
new file mode 100644
index 00000000..329586ef
--- /dev/null
+++ b/app/View/Components/WireUI/Input.php
@@ -0,0 +1,37 @@
+unless($this->borderless, function (Stringable $stringable) {
+ return $stringable
+ ->append(' border border-skin-input focus:ring-flag-green focus:border-flag-green');
+ });
+ }
+
+ protected function getErrorClasses(): string
+ {
+ return Str::of('text-negative-900 placeholder-negative-500')
+ ->unless($this->borderless, function (Stringable $stringable) {
+ return $stringable
+ ->append(' border border-negative-300 focus:ring-negative-500 focus:border-negative-500');
+ });
+ }
+
+ protected function getDefaultClasses(): string
+ {
+ return Str::of('block w-full sm:text-sm rounded-md transition ease-in-out duration-100 focus:outline-none')
+ ->unless($this->shadowless, fn (Stringable $stringable) => $stringable->append(' shadow-sm'))
+ ->when($this->borderless, function (Stringable $stringable) {
+ return $stringable->append(' border-transparent focus:border-transparent focus:ring-transparent');
+ });
+ }
+}
diff --git a/app/Widgets/MostActiveUsersPerWeek.php b/app/Widgets/MostActiveUsersPerWeek.php
index 019d7270..b58a51ee 100644
--- a/app/Widgets/MostActiveUsersPerWeek.php
+++ b/app/Widgets/MostActiveUsersPerWeek.php
@@ -43,7 +43,7 @@ public function run(): View
->whereHas('activities', function (Builder $query) {
return $query->whereBetween('created_at', [
now()->startOfWeek(),
- now()->endOfWeek()
+ now()->endOfWeek(),
]);
})
->orderByDesc('activities_count')
diff --git a/auth.json b/auth.json
index cf3c53a5..7e139632 100644
--- a/auth.json
+++ b/auth.json
@@ -6,6 +6,6 @@
}
},
"github-oauth": {
- "github.com": "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"
+ "github.com": "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"
}
}
diff --git a/composer.json b/composer.json
index 6115f50a..8b7e019e 100644
--- a/composer.json
+++ b/composer.json
@@ -10,6 +10,7 @@
"ext-json": "*",
"archtechx/laravel-seo": "^0.4.0",
"arrilot/laravel-widgets": "^3.13",
+ "bensampo/laravel-enum": "^6.0",
"blade-ui-kit/blade-heroicons": "^1.3",
"blade-ui-kit/blade-ui-kit": "^0.3",
"cyrildewit/eloquent-viewable": "^6.1",
@@ -28,6 +29,7 @@
"livewire/livewire": "^2.10",
"qcod/laravel-gamify": "^1.0.6",
"ramsey/uuid": "^4.2",
+ "rinvex/laravel-subscriptions": "^6.1",
"sentry/sentry-laravel": "^2.10",
"socialiteproviders/twitter": "^4.1",
"spatie/laravel-feed": "^4.1",
@@ -51,6 +53,7 @@
"fakerphp/faker": "^1.9.1",
"laravel/pint": "^1.1",
"laravel/sail": "^1.0.1",
+ "laravel/telescope": "^4.9",
"mockery/mockery": "^1.4.2",
"nunomaduro/collision": "^6.0",
"nunomaduro/larastan": "^2.0",
@@ -79,12 +82,13 @@
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
- "@php artisan vendor:publish --force --tag=livewire:assets --ansi"
+ "@php artisan vendor:publish --force --tag=livewire-assets --ansi"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"@php artisan ide-helper:generate",
- "@php artisan ide-helper:meta"
+ "@php artisan ide-helper:meta",
+ "@php artisan telescope:publish --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
@@ -107,7 +111,9 @@
},
"extra": {
"laravel": {
- "dont-discover": []
+ "dont-discover": [
+ "laravel/telescope"
+ ]
}
},
"config": {
@@ -124,6 +130,10 @@
{
"type": "composer",
"url": "https://satis.spatie.be"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/laravel-shift/uniquewith-validator.git"
}
]
}
diff --git a/composer.lock b/composer.lock
index 10d66e4f..ddf6052e 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": "988422435ad9d761cac219eb23a22de2",
+ "content-hash": "41f4c5f47761a9b554495bb7fe929af5",
"packages": [
{
"name": "abraham/twitteroauth",
@@ -302,6 +302,93 @@
},
"time": "2022-03-14T02:02:36+00:00"
},
+ {
+ "name": "bensampo/laravel-enum",
+ "version": "v6.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/BenSampo/laravel-enum.git",
+ "reference": "5a6d643a20a123b899893af779d0431f8f9e8dd9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/BenSampo/laravel-enum/zipball/5a6d643a20a123b899893af779d0431f8f9e8dd9",
+ "reference": "5a6d643a20a123b899893af779d0431f8f9e8dd9",
+ "shasum": ""
+ },
+ "require": {
+ "composer/class-map-generator": "^1",
+ "illuminate/contracts": "^9",
+ "illuminate/support": "^9",
+ "laminas/laminas-code": "^3.4 || ^4",
+ "nikic/php-parser": "^4.13",
+ "php": "^8"
+ },
+ "require-dev": {
+ "doctrine/dbal": "^3.4",
+ "ergebnis/composer-normalize": "^2.28.3",
+ "mockery/mockery": "^1.5",
+ "nunomaduro/larastan": "^2.1.12",
+ "orchestra/testbench": "^7.6.1",
+ "phpstan/phpstan": "^1.8.2",
+ "phpstan/phpstan-mockery": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.1.1",
+ "phpunit/phpunit": "^9.5.21",
+ "squizlabs/php_codesniffer": "^3.7.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0-dev"
+ },
+ "laravel": {
+ "providers": [
+ "BenSampo\\Enum\\EnumServiceProvider"
+ ]
+ },
+ "phpstan": {
+ "includes": [
+ "extension.neon"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "BenSampo\\Enum\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ben Sampson",
+ "homepage": "https://sampo.co.uk",
+ "role": "Developer"
+ }
+ ],
+ "description": "Simple, extensible and powerful enumeration implementation for Laravel.",
+ "homepage": "https://github.com/bensampo/laravel-enum",
+ "keywords": [
+ "bensampo",
+ "enum",
+ "laravel",
+ "package",
+ "validation"
+ ],
+ "support": {
+ "issues": "https://github.com/BenSampo/laravel-enum/issues",
+ "source": "https://github.com/BenSampo/laravel-enum/tree/v6.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/bensampo",
+ "type": "github"
+ }
+ ],
+ "time": "2022-08-12T13:55:55+00:00"
+ },
{
"name": "blade-ui-kit/blade-heroicons",
"version": "1.3.1",
@@ -373,16 +460,16 @@
},
{
"name": "blade-ui-kit/blade-icons",
- "version": "1.4.0",
+ "version": "1.4.1",
"source": {
"type": "git",
"url": "https://github.com/blade-ui-kit/blade-icons.git",
- "reference": "acbe0b4f1f9c71c3e40432ab007a6072222842d1"
+ "reference": "977559507feebba431019abf1b319d71dfdacd95"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/acbe0b4f1f9c71c3e40432ab007a6072222842d1",
- "reference": "acbe0b4f1f9c71c3e40432ab007a6072222842d1",
+ "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/977559507feebba431019abf1b319d71dfdacd95",
+ "reference": "977559507feebba431019abf1b319d71dfdacd95",
"shasum": ""
},
"require": {
@@ -450,7 +537,7 @@
"type": "github"
}
],
- "time": "2022-09-28T10:07:24+00:00"
+ "time": "2022-09-30T11:26:24+00:00"
},
{
"name": "blade-ui-kit/blade-ui-kit",
@@ -656,16 +743,16 @@
},
{
"name": "composer/ca-bundle",
- "version": "1.3.3",
+ "version": "1.3.4",
"source": {
"type": "git",
"url": "https://github.com/composer/ca-bundle.git",
- "reference": "30897edbfb15e784fe55587b4f73ceefd3c4d98c"
+ "reference": "69098eca243998b53eed7a48d82dedd28b447cd5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/ca-bundle/zipball/30897edbfb15e784fe55587b4f73ceefd3c4d98c",
- "reference": "30897edbfb15e784fe55587b4f73ceefd3c4d98c",
+ "url": "https://api.github.com/repos/composer/ca-bundle/zipball/69098eca243998b53eed7a48d82dedd28b447cd5",
+ "reference": "69098eca243998b53eed7a48d82dedd28b447cd5",
"shasum": ""
},
"require": {
@@ -712,7 +799,151 @@
"support": {
"irc": "irc://irc.freenode.org/composer",
"issues": "https://github.com/composer/ca-bundle/issues",
- "source": "https://github.com/composer/ca-bundle/tree/1.3.3"
+ "source": "https://github.com/composer/ca-bundle/tree/1.3.4"
+ },
+ "funding": [
+ {
+ "url": "https://packagist.com",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/composer",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-10-12T12:08:29+00:00"
+ },
+ {
+ "name": "composer/class-map-generator",
+ "version": "1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer/class-map-generator.git",
+ "reference": "1e1cb2b791facb2dfe32932a7718cf2571187513"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer/class-map-generator/zipball/1e1cb2b791facb2dfe32932a7718cf2571187513",
+ "reference": "1e1cb2b791facb2dfe32932a7718cf2571187513",
+ "shasum": ""
+ },
+ "require": {
+ "composer/pcre": "^2 || ^3",
+ "php": "^7.2 || ^8.0",
+ "symfony/finder": "^4.4 || ^5.3 || ^6"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^1.6",
+ "phpstan/phpstan-deprecation-rules": "^1",
+ "phpstan/phpstan-phpunit": "^1",
+ "phpstan/phpstan-strict-rules": "^1.1",
+ "symfony/filesystem": "^5.4 || ^6",
+ "symfony/phpunit-bridge": "^5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Composer\\ClassMapGenerator\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "https://seld.be"
+ }
+ ],
+ "description": "Utilities to scan PHP code and generate class maps.",
+ "keywords": [
+ "classmap"
+ ],
+ "support": {
+ "issues": "https://github.com/composer/class-map-generator/issues",
+ "source": "https://github.com/composer/class-map-generator/tree/1.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://packagist.com",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/composer",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-06-19T11:31:27+00:00"
+ },
+ {
+ "name": "composer/pcre",
+ "version": "3.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer/pcre.git",
+ "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer/pcre/zipball/e300eb6c535192decd27a85bc72a9290f0d6b3bd",
+ "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.4 || ^8.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^1.3",
+ "phpstan/phpstan-strict-rules": "^1.1",
+ "symfony/phpunit-bridge": "^5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Composer\\Pcre\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
+ }
+ ],
+ "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
+ "keywords": [
+ "PCRE",
+ "preg",
+ "regex",
+ "regular expression"
+ ],
+ "support": {
+ "issues": "https://github.com/composer/pcre/issues",
+ "source": "https://github.com/composer/pcre/tree/3.0.0"
},
"funding": [
{
@@ -728,7 +959,7 @@
"type": "tidelift"
}
],
- "time": "2022-07-20T07:14:26+00:00"
+ "time": "2022-02-25T20:21:48+00:00"
},
{
"name": "cyrildewit/eloquent-viewable",
@@ -1025,23 +1256,23 @@
},
{
"name": "doctrine/dbal",
- "version": "3.4.5",
+ "version": "3.5.1",
"source": {
"type": "git",
"url": "https://github.com/doctrine/dbal.git",
- "reference": "a5a58773109c0abb13e658c8ccd92aeec8d07f9e"
+ "reference": "f38ee8aaca2d58ee88653cb34a6a3880c23f38a5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/dbal/zipball/a5a58773109c0abb13e658c8ccd92aeec8d07f9e",
- "reference": "a5a58773109c0abb13e658c8ccd92aeec8d07f9e",
+ "url": "https://api.github.com/repos/doctrine/dbal/zipball/f38ee8aaca2d58ee88653cb34a6a3880c23f38a5",
+ "reference": "f38ee8aaca2d58ee88653cb34a6a3880c23f38a5",
"shasum": ""
},
"require": {
"composer-runtime-api": "^2",
"doctrine/cache": "^1.11|^2.0",
"doctrine/deprecations": "^0.5.3|^1",
- "doctrine/event-manager": "^1.0",
+ "doctrine/event-manager": "^1|^2",
"php": "^7.4 || ^8.0",
"psr/cache": "^1|^2|^3",
"psr/log": "^1|^2|^3"
@@ -1049,14 +1280,14 @@
"require-dev": {
"doctrine/coding-standard": "10.0.0",
"jetbrains/phpstorm-stubs": "2022.2",
- "phpstan/phpstan": "1.8.3",
- "phpstan/phpstan-strict-rules": "^1.3",
- "phpunit/phpunit": "9.5.24",
+ "phpstan/phpstan": "1.8.10",
+ "phpstan/phpstan-strict-rules": "^1.4",
+ "phpunit/phpunit": "9.5.25",
"psalm/plugin-phpunit": "0.17.0",
"squizlabs/php_codesniffer": "3.7.1",
"symfony/cache": "^5.4|^6.0",
"symfony/console": "^4.4|^5.4|^6.0",
- "vimeo/psalm": "4.27.0"
+ "vimeo/psalm": "4.29.0"
},
"suggest": {
"symfony/console": "For helpful console commands such as SQL execution and import of files."
@@ -1116,7 +1347,7 @@
],
"support": {
"issues": "https://github.com/doctrine/dbal/issues",
- "source": "https://github.com/doctrine/dbal/tree/3.4.5"
+ "source": "https://github.com/doctrine/dbal/tree/3.5.1"
},
"funding": [
{
@@ -1132,7 +1363,7 @@
"type": "tidelift"
}
],
- "time": "2022-09-23T17:48:57+00:00"
+ "time": "2022-10-24T07:26:18+00:00"
},
{
"name": "doctrine/deprecations",
@@ -1179,34 +1410,35 @@
},
{
"name": "doctrine/event-manager",
- "version": "1.1.2",
+ "version": "1.2.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/event-manager.git",
- "reference": "eb2ecf80e3093e8f3c2769ac838e27d8ede8e683"
+ "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/event-manager/zipball/eb2ecf80e3093e8f3c2769ac838e27d8ede8e683",
- "reference": "eb2ecf80e3093e8f3c2769ac838e27d8ede8e683",
+ "url": "https://api.github.com/repos/doctrine/event-manager/zipball/95aa4cb529f1e96576f3fda9f5705ada4056a520",
+ "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520",
"shasum": ""
},
"require": {
+ "doctrine/deprecations": "^0.5.3 || ^1",
"php": "^7.1 || ^8.0"
},
"conflict": {
"doctrine/common": "<2.9"
},
"require-dev": {
- "doctrine/coding-standard": "^9",
- "phpstan/phpstan": "~1.4.10 || ^1.5.4",
+ "doctrine/coding-standard": "^9 || ^10",
+ "phpstan/phpstan": "~1.4.10 || ^1.8.8",
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
- "vimeo/psalm": "^4.22"
+ "vimeo/psalm": "^4.24"
},
"type": "library",
"autoload": {
"psr-4": {
- "Doctrine\\Common\\": "lib/Doctrine/Common"
+ "Doctrine\\Common\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1250,7 +1482,7 @@
],
"support": {
"issues": "https://github.com/doctrine/event-manager/issues",
- "source": "https://github.com/doctrine/event-manager/tree/1.1.2"
+ "source": "https://github.com/doctrine/event-manager/tree/1.2.0"
},
"funding": [
{
@@ -1266,27 +1498,27 @@
"type": "tidelift"
}
],
- "time": "2022-07-27T22:18:11+00:00"
+ "time": "2022-10-12T20:51:15+00:00"
},
{
"name": "doctrine/inflector",
- "version": "2.0.5",
+ "version": "2.0.6",
"source": {
"type": "git",
"url": "https://github.com/doctrine/inflector.git",
- "reference": "ade2b3bbfb776f27f0558e26eed43b5d9fe1b392"
+ "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/inflector/zipball/ade2b3bbfb776f27f0558e26eed43b5d9fe1b392",
- "reference": "ade2b3bbfb776f27f0558e26eed43b5d9fe1b392",
+ "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
+ "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0"
},
"require-dev": {
- "doctrine/coding-standard": "^9",
+ "doctrine/coding-standard": "^10",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.3",
@@ -1341,7 +1573,7 @@
],
"support": {
"issues": "https://github.com/doctrine/inflector/issues",
- "source": "https://github.com/doctrine/inflector/tree/2.0.5"
+ "source": "https://github.com/doctrine/inflector/tree/2.0.6"
},
"funding": [
{
@@ -1357,7 +1589,7 @@
"type": "tidelift"
}
],
- "time": "2022-09-07T09:01:28+00:00"
+ "time": "2022-10-20T09:10:12+00:00"
},
{
"name": "doctrine/lexer",
@@ -1564,6 +1796,61 @@
],
"time": "2022-06-18T20:57:19+00:00"
},
+ {
+ "name": "felixkiss/uniquewith-validator",
+ "version": "dev-l9-compatibility",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel-shift/uniquewith-validator.git",
+ "reference": "ba133e734ca8e71f4218f0e1db88a1bbc5a583e7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel-shift/uniquewith-validator/zipball/ba133e734ca8e71f4218f0e1db88a1bbc5a583e7",
+ "reference": "ba133e734ca8e71f4218f0e1db88a1bbc5a583e7",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/support": "^5.5|^6.0|^7.0|^8.0|^9.0",
+ "illuminate/validation": "^5.5|^6.0|^7.0|^8.0|^9.0",
+ "php": "^7.1.3|^8.0"
+ },
+ "require-dev": {
+ "friends-of-phpspec/phpspec-expect": "^3.0|^4.0",
+ "phpspec/phpspec": "^5.0|^6.0|^7.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Felixkiss\\UniqueWithValidator\\ServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-0": {
+ "Felixkiss\\UniqueWithValidator\\": "src/"
+ }
+ },
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Felix Kiss",
+ "email": "felix@felixkiss.com"
+ }
+ ],
+ "description": "Custom Laravel Validator for combined unique indexes",
+ "homepage": "https://github.com/felixkiss/uniquewith-validator",
+ "keywords": [
+ "laravel"
+ ],
+ "support": {
+ "source": "https://github.com/laravel-shift/uniquewith-validator/tree/l9-compatibility"
+ },
+ "time": "2022-02-06T13:05:01+00:00"
+ },
{
"name": "fruitcake/laravel-cors",
"version": "v2.2.0",
@@ -2124,16 +2411,16 @@
},
{
"name": "guzzlehttp/psr7",
- "version": "2.4.1",
+ "version": "2.4.2",
"source": {
"type": "git",
"url": "https://github.com/guzzle/psr7.git",
- "reference": "69568e4293f4fa993f3b0e51c9723e1e17c41379"
+ "reference": "3148458748274be1546f8f2809a6c09fe66f44aa"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/69568e4293f4fa993f3b0e51c9723e1e17c41379",
- "reference": "69568e4293f4fa993f3b0e51c9723e1e17c41379",
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/3148458748274be1546f8f2809a6c09fe66f44aa",
+ "reference": "3148458748274be1546f8f2809a6c09fe66f44aa",
"shasum": ""
},
"require": {
@@ -2223,7 +2510,7 @@
],
"support": {
"issues": "https://github.com/guzzle/psr7/issues",
- "source": "https://github.com/guzzle/psr7/tree/2.4.1"
+ "source": "https://github.com/guzzle/psr7/tree/2.4.2"
},
"funding": [
{
@@ -2239,7 +2526,7 @@
"type": "tidelift"
}
],
- "time": "2022-08-28T14:45:39+00:00"
+ "time": "2022-10-25T13:49:28+00:00"
},
{
"name": "http-interop/http-factory-guzzle",
@@ -2457,16 +2744,16 @@
},
{
"name": "jaybizzle/crawler-detect",
- "version": "v1.2.111",
+ "version": "v1.2.112",
"source": {
"type": "git",
"url": "https://github.com/JayBizzle/Crawler-Detect.git",
- "reference": "d572ed4a65a70a2d2871dc5137c9c5b7e69745ab"
+ "reference": "2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/d572ed4a65a70a2d2871dc5137c9c5b7e69745ab",
- "reference": "d572ed4a65a70a2d2871dc5137c9c5b7e69745ab",
+ "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f",
+ "reference": "2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f",
"shasum": ""
},
"require": {
@@ -2503,9 +2790,9 @@
],
"support": {
"issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
- "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.111"
+ "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.112"
},
- "time": "2022-03-15T22:19:01+00:00"
+ "time": "2022-10-05T21:52:44+00:00"
},
{
"name": "jean85/pretty-package-versions",
@@ -2690,17 +2977,83 @@
"time": "2017-11-25T19:51:26+00:00"
},
{
- "name": "laravel-notification-channels/telegram",
- "version": "2.1.0",
+ "name": "laminas/laminas-code",
+ "version": "4.7.0",
"source": {
"type": "git",
- "url": "https://github.com/laravel-notification-channels/telegram.git",
- "reference": "76299fa06f48cb175e17ea951ccf3b185329a1ac"
+ "url": "https://github.com/laminas/laminas-code.git",
+ "reference": "0337d9265bc2e6376babad8c511500821620cb30"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel-notification-channels/telegram/zipball/76299fa06f48cb175e17ea951ccf3b185329a1ac",
- "reference": "76299fa06f48cb175e17ea951ccf3b185329a1ac",
+ "url": "https://api.github.com/repos/laminas/laminas-code/zipball/0337d9265bc2e6376babad8c511500821620cb30",
+ "reference": "0337d9265bc2e6376babad8c511500821620cb30",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.4, <8.2"
+ },
+ "require-dev": {
+ "doctrine/annotations": "^1.13.2",
+ "ext-phar": "*",
+ "laminas/laminas-coding-standard": "^2.3.0",
+ "laminas/laminas-stdlib": "^3.6.1",
+ "phpunit/phpunit": "^9.5.10",
+ "psalm/plugin-phpunit": "^0.17.0",
+ "vimeo/psalm": "^4.13.1"
+ },
+ "suggest": {
+ "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
+ "laminas/laminas-stdlib": "Laminas\\Stdlib component"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "polyfill/ReflectionEnumPolyfill.php"
+ ],
+ "psr-4": {
+ "Laminas\\Code\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
+ "homepage": "https://laminas.dev",
+ "keywords": [
+ "code",
+ "laminas",
+ "laminasframework"
+ ],
+ "support": {
+ "chat": "https://laminas.dev/chat",
+ "docs": "https://docs.laminas.dev/laminas-code/",
+ "forum": "https://discourse.laminas.dev",
+ "issues": "https://github.com/laminas/laminas-code/issues",
+ "rss": "https://github.com/laminas/laminas-code/releases.atom",
+ "source": "https://github.com/laminas/laminas-code"
+ },
+ "funding": [
+ {
+ "url": "https://funding.communitybridge.org/projects/laminas-project",
+ "type": "community_bridge"
+ }
+ ],
+ "time": "2022-09-13T10:33:30+00:00"
+ },
+ {
+ "name": "laravel-notification-channels/telegram",
+ "version": "2.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel-notification-channels/telegram.git",
+ "reference": "76299fa06f48cb175e17ea951ccf3b185329a1ac"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel-notification-channels/telegram/zipball/76299fa06f48cb175e17ea951ccf3b185329a1ac",
+ "reference": "76299fa06f48cb175e17ea951ccf3b185329a1ac",
"shasum": ""
},
"require": {
@@ -2816,16 +3169,16 @@
},
{
"name": "laravel/fortify",
- "version": "v1.13.3",
+ "version": "v1.13.5",
"source": {
"type": "git",
"url": "https://github.com/laravel/fortify.git",
- "reference": "cde06120605b8bb038142b03425c67fc97d047d1"
+ "reference": "c3c42f1263c657c2a385c85007944b450d437cf6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/fortify/zipball/cde06120605b8bb038142b03425c67fc97d047d1",
- "reference": "cde06120605b8bb038142b03425c67fc97d047d1",
+ "url": "https://api.github.com/repos/laravel/fortify/zipball/c3c42f1263c657c2a385c85007944b450d437cf6",
+ "reference": "c3c42f1263c657c2a385c85007944b450d437cf6",
"shasum": ""
},
"require": {
@@ -2875,41 +3228,41 @@
"issues": "https://github.com/laravel/fortify/issues",
"source": "https://github.com/laravel/fortify"
},
- "time": "2022-08-15T15:08:17+00:00"
+ "time": "2022-10-21T10:14:28+00:00"
},
{
"name": "laravel/framework",
- "version": "v9.32.0",
+ "version": "v9.37.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
- "reference": "aae3b59f82434176546c9dd10804adda16da5278"
+ "reference": "0c9675abf6d966e834b2ebeca3319f524e07a330"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/framework/zipball/aae3b59f82434176546c9dd10804adda16da5278",
- "reference": "aae3b59f82434176546c9dd10804adda16da5278",
+ "url": "https://api.github.com/repos/laravel/framework/zipball/0c9675abf6d966e834b2ebeca3319f524e07a330",
+ "reference": "0c9675abf6d966e834b2ebeca3319f524e07a330",
"shasum": ""
},
"require": {
"doctrine/inflector": "^2.0",
- "dragonmantank/cron-expression": "^3.1",
- "egulias/email-validator": "^3.1",
+ "dragonmantank/cron-expression": "^3.3.2",
+ "egulias/email-validator": "^3.2.1",
"ext-mbstring": "*",
"ext-openssl": "*",
"fruitcake/php-cors": "^1.2",
- "laravel/serializable-closure": "^1.0",
+ "laravel/serializable-closure": "^1.2.2",
"league/commonmark": "^2.2",
- "league/flysystem": "^3.0.16",
+ "league/flysystem": "^3.8.0",
"monolog/monolog": "^2.0",
- "nesbot/carbon": "^2.53.1",
+ "nesbot/carbon": "^2.62.1",
"nunomaduro/termwind": "^1.13",
"php": "^8.0.2",
"psr/container": "^1.1.1|^2.0.1",
"psr/log": "^1.0|^2.0|^3.0",
"psr/simple-cache": "^1.0|^2.0|^3.0",
"ramsey/uuid": "^4.2.2",
- "symfony/console": "^6.0.3",
+ "symfony/console": "^6.0.9",
"symfony/error-handler": "^6.0",
"symfony/finder": "^6.0",
"symfony/http-foundation": "^6.0",
@@ -2920,7 +3273,7 @@
"symfony/routing": "^6.0",
"symfony/uid": "^6.0",
"symfony/var-dumper": "^6.0",
- "tijsverkoyen/css-to-inline-styles": "^2.2.2",
+ "tijsverkoyen/css-to-inline-styles": "^2.2.5",
"vlucas/phpdotenv": "^5.4.1",
"voku/portable-ascii": "^2.0"
},
@@ -2967,26 +3320,26 @@
},
"require-dev": {
"ably/ably-php": "^1.0",
- "aws/aws-sdk-php": "^3.198.1",
+ "aws/aws-sdk-php": "^3.235.5",
"doctrine/dbal": "^2.13.3|^3.1.4",
"fakerphp/faker": "^1.9.2",
- "guzzlehttp/guzzle": "^7.2",
+ "guzzlehttp/guzzle": "^7.5",
"league/flysystem-aws-s3-v3": "^3.0",
"league/flysystem-ftp": "^3.0",
"league/flysystem-path-prefixing": "^3.3",
"league/flysystem-read-only": "^3.3",
"league/flysystem-sftp-v3": "^3.0",
- "mockery/mockery": "^1.4.4",
- "orchestra/testbench-core": "^7.1",
+ "mockery/mockery": "^1.5.1",
+ "orchestra/testbench-core": "^7.11",
"pda/pheanstalk": "^4.0",
"phpstan/phpstan": "^1.4.7",
"phpunit/phpunit": "^9.5.8",
- "predis/predis": "^1.1.9|^2.0",
+ "predis/predis": "^1.1.9|^2.0.2",
"symfony/cache": "^6.0"
},
"suggest": {
"ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
- "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.198.1).",
+ "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
"brianium/paratest": "Required to run tests in parallel (^6.0).",
"doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
"ext-bcmath": "Required to use the multiple_of validation rule.",
@@ -2998,18 +3351,18 @@
"ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
"fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
"filp/whoops": "Required for friendly error pages in development (^2.14.3).",
- "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.2).",
+ "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
"laravel/tinker": "Required to use the tinker console command (^2.0).",
"league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
"league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
"league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
"league/flysystem-read-only": "Required to use read-only disks (^3.3)",
"league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
- "mockery/mockery": "Required to use mocking (^1.4.4).",
+ "mockery/mockery": "Required to use mocking (^1.5.1).",
"nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
"pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
"phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).",
- "predis/predis": "Required to use the predis connector (^1.1.9|^2.0).",
+ "predis/predis": "Required to use the predis connector (^1.1.9|^2.0.2).",
"psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
"pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
"symfony/cache": "Required to PSR-6 cache bridge (^6.0).",
@@ -3061,7 +3414,7 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2022-09-27T13:32:56+00:00"
+ "time": "2022-10-25T15:43:46+00:00"
},
{
"name": "laravel/serializable-closure",
@@ -3511,16 +3864,16 @@
},
{
"name": "league/flysystem",
- "version": "3.5.2",
+ "version": "3.10.2",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
- "reference": "c73c4eb31f2e883b3897ab5591aa2dbc48112433"
+ "reference": "b9bd194b016114d6ff6765c09d40c7d427e4e3f6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/c73c4eb31f2e883b3897ab5591aa2dbc48112433",
- "reference": "c73c4eb31f2e883b3897ab5591aa2dbc48112433",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/b9bd194b016114d6ff6765c09d40c7d427e4e3f6",
+ "reference": "b9bd194b016114d6ff6765c09d40c7d427e4e3f6",
"shasum": ""
},
"require": {
@@ -3536,7 +3889,7 @@
},
"require-dev": {
"async-aws/s3": "^1.5",
- "async-aws/simple-s3": "^1.0",
+ "async-aws/simple-s3": "^1.1",
"aws/aws-sdk-php": "^3.198.1",
"composer/semver": "^3.0",
"ext-fileinfo": "*",
@@ -3582,7 +3935,7 @@
],
"support": {
"issues": "https://github.com/thephpleague/flysystem/issues",
- "source": "https://github.com/thephpleague/flysystem/tree/3.5.2"
+ "source": "https://github.com/thephpleague/flysystem/tree/3.10.2"
},
"funding": [
{
@@ -3598,7 +3951,7 @@
"type": "tidelift"
}
],
- "time": "2022-09-23T18:59:16+00:00"
+ "time": "2022-10-25T07:01:47+00:00"
},
{
"name": "league/glide",
@@ -4633,16 +4986,16 @@
},
{
"name": "nunomaduro/termwind",
- "version": "v1.14.0",
+ "version": "v1.14.1",
"source": {
"type": "git",
"url": "https://github.com/nunomaduro/termwind.git",
- "reference": "10065367baccf13b6e30f5e9246fa4f63a79eb1d"
+ "reference": "86fc30eace93b9b6d4c844ba6de76db84184e01b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/10065367baccf13b6e30f5e9246fa4f63a79eb1d",
- "reference": "10065367baccf13b6e30f5e9246fa4f63a79eb1d",
+ "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/86fc30eace93b9b6d4c844ba6de76db84184e01b",
+ "reference": "86fc30eace93b9b6d4c844ba6de76db84184e01b",
"shasum": ""
},
"require": {
@@ -4699,7 +5052,7 @@
],
"support": {
"issues": "https://github.com/nunomaduro/termwind/issues",
- "source": "https://github.com/nunomaduro/termwind/tree/v1.14.0"
+ "source": "https://github.com/nunomaduro/termwind/tree/v1.14.1"
},
"funding": [
{
@@ -4715,7 +5068,7 @@
"type": "github"
}
],
- "time": "2022-08-01T11:03:24+00:00"
+ "time": "2022-10-17T15:20:29+00:00"
},
{
"name": "nyholm/psr7",
@@ -4863,16 +5216,16 @@
},
{
"name": "php-http/client-common",
- "version": "2.5.0",
+ "version": "2.6.0",
"source": {
"type": "git",
"url": "https://github.com/php-http/client-common.git",
- "reference": "d135751167d57e27c74de674d6a30cef2dc8e054"
+ "reference": "45db684cd4e186dcdc2b9c06b22970fe123796c0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-http/client-common/zipball/d135751167d57e27c74de674d6a30cef2dc8e054",
- "reference": "d135751167d57e27c74de674d6a30cef2dc8e054",
+ "url": "https://api.github.com/repos/php-http/client-common/zipball/45db684cd4e186dcdc2b9c06b22970fe123796c0",
+ "reference": "45db684cd4e186dcdc2b9c06b22970fe123796c0",
"shasum": ""
},
"require": {
@@ -4932,9 +5285,9 @@
],
"support": {
"issues": "https://github.com/php-http/client-common/issues",
- "source": "https://github.com/php-http/client-common/tree/2.5.0"
+ "source": "https://github.com/php-http/client-common/tree/2.6.0"
},
- "time": "2021-11-26T15:01:24+00:00"
+ "time": "2022-09-29T09:59:43+00:00"
},
{
"name": "php-http/discovery",
@@ -6151,23 +6504,195 @@
],
"time": "2022-09-16T03:22:46+00:00"
},
+ {
+ "name": "rinvex/laravel-subscriptions",
+ "version": "v6.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/rinvex/laravel-subscriptions.git",
+ "reference": "e0cb8ba6eb450f3af565fe7c7017f2cc46284dc3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/rinvex/laravel-subscriptions/zipball/e0cb8ba6eb450f3af565fe7c7017f2cc46284dc3",
+ "reference": "e0cb8ba6eb450f3af565fe7c7017f2cc46284dc3",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/console": "^9.0.0 || ^10.0.0",
+ "illuminate/database": "^9.0.0 || ^10.0.0",
+ "illuminate/support": "^9.0.0 || ^10.0.0",
+ "php": "^8.0.0",
+ "rinvex/laravel-support": "^6.0.0",
+ "spatie/eloquent-sortable": "^4.0.0",
+ "spatie/laravel-sluggable": "^3.3.0",
+ "spatie/laravel-translatable": "^5.2.0"
+ },
+ "require-dev": {
+ "codedungeon/phpunit-result-printer": "^0.31.0",
+ "illuminate/container": "^9.0.0 || ^10.0.0",
+ "phpunit/phpunit": "^9.5.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Rinvex\\Subscriptions\\Providers\\SubscriptionsServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Rinvex\\Subscriptions\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Rinvex LLC",
+ "email": "help@rinvex.com",
+ "homepage": "https://rinvex.com"
+ },
+ {
+ "name": "Abdelrahman Omran",
+ "email": "me@omranic.com",
+ "homepage": "https://omranic.com",
+ "role": "Project Lead"
+ },
+ {
+ "name": "The Generous Laravel Community",
+ "homepage": "https://github.com/rinvex/laravel-subscriptions/contributors"
+ }
+ ],
+ "description": "Rinvex Subscriptions is a flexible plans and subscription management system for Laravel, with the required tools to run your SAAS like services efficiently. It's simple architecture, accompanied by powerful underlying to afford solid platform for your business.",
+ "homepage": "https://rinvex.com",
+ "keywords": [
+ "database",
+ "feature",
+ "laravel",
+ "plan",
+ "recurring",
+ "subscription",
+ "value"
+ ],
+ "support": {
+ "docs": "https://github.com/rinvex/laravel-subscriptions/blob/master/README.md",
+ "email": "help@rinvex.com",
+ "issues": "https://github.com/rinvex/laravel-subscriptions/issues",
+ "source": "https://github.com/rinvex/laravel-subscriptions"
+ },
+ "abandoned": true,
+ "time": "2022-02-14T08:24:43+00:00"
+ },
+ {
+ "name": "rinvex/laravel-support",
+ "version": "v6.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/rinvex/laravel-support.git",
+ "reference": "564596013902749364ef6c4fc7bd366e799f0705"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/rinvex/laravel-support/zipball/564596013902749364ef6c4fc7bd366e799f0705",
+ "reference": "564596013902749364ef6c4fc7bd366e799f0705",
+ "shasum": ""
+ },
+ "require": {
+ "felixkiss/uniquewith-validator": "dev-l9-compatibility",
+ "illuminate/auth": "^9.0.0 || ^10.0.0",
+ "illuminate/bus": "^9.0.0 || ^10.0.0",
+ "illuminate/contracts": "^9.0.0 || ^10.0.0",
+ "illuminate/http": "^9.0.0 || ^10.0.0",
+ "illuminate/routing": "^9.0.0 || ^10.0.0",
+ "illuminate/support": "^9.0.0 || ^10.0.0",
+ "illuminate/validation": "^9.0.0 || ^10.0.0",
+ "php": "^8.0.0",
+ "spatie/laravel-schemaless-attributes": "^2.3.0",
+ "watson/validating": "^7.0.0"
+ },
+ "require-dev": {
+ "codedungeon/phpunit-result-printer": "^0.31.0",
+ "phpunit/phpunit": "^9.5.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Rinvex\\Support\\Providers\\SupportServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/Support/helpers.php"
+ ],
+ "psr-4": {
+ "Rinvex\\Support\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Rinvex LLC",
+ "email": "help@rinvex.com",
+ "homepage": "https://rinvex.com"
+ },
+ {
+ "name": "Abdelrahman Omran",
+ "email": "me@omranic.com",
+ "homepage": "https://omranic.com",
+ "role": "Project Lead"
+ },
+ {
+ "name": "The Generous Laravel Community",
+ "homepage": "https://github.com/rinvex/laravel-support/contributors"
+ }
+ ],
+ "description": "Rinvex common support helpers, contracts, and traits required by various Rinvex packages. Validator functionality, and basic controller included out-of-the-box.",
+ "homepage": "https://rinvex.com/marketplace/rinvex-support/",
+ "keywords": [
+ "contract",
+ "helper",
+ "laravel",
+ "mimetype",
+ "rinvex",
+ "support",
+ "timezones",
+ "trait",
+ "validator"
+ ],
+ "support": {
+ "docs": "https://github.com/rinvex/laravel-support/blob/master/README.md",
+ "email": "help@rinvex.com",
+ "issues": "https://github.com/rinvex/laravel-support/issues",
+ "source": "https://github.com/rinvex/laravel-support"
+ },
+ "time": "2022-08-29T21:22:50+00:00"
+ },
{
"name": "sentry/sdk",
- "version": "3.2.0",
+ "version": "3.3.0",
"source": {
"type": "git",
"url": "https://github.com/getsentry/sentry-php-sdk.git",
- "reference": "6d78bd83b43efbb52f81d6824f4af344fa9ba292"
+ "reference": "d0678fc7274dbb03046ed05cb24eb92945bedf8e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/getsentry/sentry-php-sdk/zipball/6d78bd83b43efbb52f81d6824f4af344fa9ba292",
- "reference": "6d78bd83b43efbb52f81d6824f4af344fa9ba292",
+ "url": "https://api.github.com/repos/getsentry/sentry-php-sdk/zipball/d0678fc7274dbb03046ed05cb24eb92945bedf8e",
+ "reference": "d0678fc7274dbb03046ed05cb24eb92945bedf8e",
"shasum": ""
},
"require": {
"http-interop/http-factory-guzzle": "^1.0",
- "sentry/sentry": "^3.5",
+ "sentry/sentry": "^3.9",
"symfony/http-client": "^4.3|^5.0|^6.0"
},
"type": "metapackage",
@@ -6194,7 +6719,7 @@
],
"support": {
"issues": "https://github.com/getsentry/sentry-php-sdk/issues",
- "source": "https://github.com/getsentry/sentry-php-sdk/tree/3.2.0"
+ "source": "https://github.com/getsentry/sentry-php-sdk/tree/3.3.0"
},
"funding": [
{
@@ -6206,20 +6731,20 @@
"type": "custom"
}
],
- "time": "2022-05-21T11:10:11+00:00"
+ "time": "2022-10-11T09:05:00+00:00"
},
{
"name": "sentry/sentry",
- "version": "3.8.1",
+ "version": "3.11.0",
"source": {
"type": "git",
"url": "https://github.com/getsentry/sentry-php.git",
- "reference": "5150776a0a9835c4ea56ff0ecd94e0a109b6c163"
+ "reference": "91bd6e54d9352754bbdd1d800d2b88618f8130d4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/5150776a0a9835c4ea56ff0ecd94e0a109b6c163",
- "reference": "5150776a0a9835c4ea56ff0ecd94e0a109b6c163",
+ "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/91bd6e54d9352754bbdd1d800d2b88618f8130d4",
+ "reference": "91bd6e54d9352754bbdd1d800d2b88618f8130d4",
"shasum": ""
},
"require": {
@@ -6264,7 +6789,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.8.x-dev"
+ "dev-master": "3.11.x-dev"
}
},
"autoload": {
@@ -6298,7 +6823,7 @@
],
"support": {
"issues": "https://github.com/getsentry/sentry-php/issues",
- "source": "https://github.com/getsentry/sentry-php/tree/3.8.1"
+ "source": "https://github.com/getsentry/sentry-php/tree/3.11.0"
},
"funding": [
{
@@ -6310,20 +6835,20 @@
"type": "custom"
}
],
- "time": "2022-09-21T11:01:17+00:00"
+ "time": "2022-10-25T14:36:50+00:00"
},
{
"name": "sentry/sentry-laravel",
- "version": "2.13.0",
+ "version": "2.14.2",
"source": {
"type": "git",
"url": "https://github.com/getsentry/sentry-laravel.git",
- "reference": "c5e74e5fff18014780361fb33a883af9a9fbd900"
+ "reference": "4538ed31d77868dd3b6d72ad6e5e68b572beeb9f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/c5e74e5fff18014780361fb33a883af9a9fbd900",
- "reference": "c5e74e5fff18014780361fb33a883af9a9fbd900",
+ "url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/4538ed31d77868dd3b6d72ad6e5e68b572beeb9f",
+ "reference": "4538ed31d77868dd3b6d72ad6e5e68b572beeb9f",
"shasum": ""
},
"require": {
@@ -6335,15 +6860,12 @@
"symfony/psr-http-message-bridge": "^1.0 | ^2.0"
},
"require-dev": {
- "friendsofphp/php-cs-fixer": "2.18.*",
+ "friendsofphp/php-cs-fixer": "^3.11",
"laravel/framework": "5.0 - 5.8 | ^6.0 | ^7.0 | ^8.0 | ^9.0",
"mockery/mockery": "^1.3",
"orchestra/testbench": "3.1 - 3.8 | ^4.7 | ^5.1 | ^6.0 | ^7.0",
"phpunit/phpunit": "^5.7 | ^6.5 | ^7.5 | ^8.4 | ^9.3"
},
- "suggest": {
- "zendframework/zend-diactoros": "When using Laravel >=5.1 - <=6.9 this package can help get more accurate request info, not used on Laravel >=6.10 anymore (https://laravel.com/docs/5.8/requests#psr7-requests)"
- },
"type": "library",
"extra": {
"branch-alias": {
@@ -6389,7 +6911,7 @@
],
"support": {
"issues": "https://github.com/getsentry/sentry-laravel/issues",
- "source": "https://github.com/getsentry/sentry-laravel/tree/2.13.0"
+ "source": "https://github.com/getsentry/sentry-laravel/tree/2.14.2"
},
"funding": [
{
@@ -6401,7 +6923,7 @@
"type": "custom"
}
],
- "time": "2022-07-15T11:36:23+00:00"
+ "time": "2022-10-13T09:21:29+00:00"
},
{
"name": "socialiteproviders/manager",
@@ -6520,16 +7042,16 @@
},
{
"name": "spatie/browsershot",
- "version": "3.57.2",
+ "version": "3.57.3",
"source": {
"type": "git",
"url": "https://github.com/spatie/browsershot.git",
- "reference": "7125719979b7de1257bbf699ff1d3bff3125b228"
+ "reference": "6dbd43cc3e8f35879e1add2fba6801aa97443e12"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/browsershot/zipball/7125719979b7de1257bbf699ff1d3bff3125b228",
- "reference": "7125719979b7de1257bbf699ff1d3bff3125b228",
+ "url": "https://api.github.com/repos/spatie/browsershot/zipball/6dbd43cc3e8f35879e1add2fba6801aa97443e12",
+ "reference": "6dbd43cc3e8f35879e1add2fba6801aa97443e12",
"shasum": ""
},
"require": {
@@ -6574,7 +7096,7 @@
"webpage"
],
"support": {
- "source": "https://github.com/spatie/browsershot/tree/3.57.2"
+ "source": "https://github.com/spatie/browsershot/tree/3.57.3"
},
"funding": [
{
@@ -6582,7 +7104,7 @@
"type": "github"
}
],
- "time": "2022-08-19T16:43:07+00:00"
+ "time": "2022-10-25T08:30:53+00:00"
},
{
"name": "spatie/crawler",
@@ -6652,6 +7174,79 @@
],
"time": "2022-05-30T08:30:32+00:00"
},
+ {
+ "name": "spatie/eloquent-sortable",
+ "version": "4.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spatie/eloquent-sortable.git",
+ "reference": "64a3365c0d5a7b4a1837b2f29d01ee4c578c416a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/64a3365c0d5a7b4a1837b2f29d01ee4c578c416a",
+ "reference": "64a3365c0d5a7b4a1837b2f29d01ee4c578c416a",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/database": "^8.0|^9.0",
+ "illuminate/support": "^8.0|^9.0",
+ "php": "^8.0",
+ "spatie/laravel-package-tools": "^1.9"
+ },
+ "require-dev": {
+ "orchestra/testbench": "^6.0|^7.0",
+ "phpunit/phpunit": "^9.5"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Spatie\\EloquentSortable\\EloquentSortableServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Spatie\\EloquentSortable\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Freek Van der Herten",
+ "email": "freek@spatie.be"
+ }
+ ],
+ "description": "Sortable behaviour for eloquent models",
+ "homepage": "https://github.com/spatie/eloquent-sortable",
+ "keywords": [
+ "behaviour",
+ "eloquent",
+ "laravel",
+ "model",
+ "sort",
+ "sortable"
+ ],
+ "support": {
+ "issues": "https://github.com/spatie/eloquent-sortable/issues",
+ "source": "https://github.com/spatie/eloquent-sortable/tree/4.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://spatie.be/open-source/support-us",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/spatie",
+ "type": "github"
+ }
+ ],
+ "time": "2022-01-21T08:32:41+00:00"
+ },
{
"name": "spatie/enum",
"version": "3.13.0",
@@ -7024,16 +7619,16 @@
},
{
"name": "spatie/laravel-health",
- "version": "1.14.6",
+ "version": "1.15.2",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-health.git",
- "reference": "46d1953ed72b20075bb0a3a9e6806f7417e4e1cf"
+ "reference": "896efcbe67b55b85a77730a456deb00770e9967f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-health/zipball/46d1953ed72b20075bb0a3a9e6806f7417e4e1cf",
- "reference": "46d1953ed72b20075bb0a3a9e6806f7417e4e1cf",
+ "url": "https://api.github.com/repos/spatie/laravel-health/zipball/896efcbe67b55b85a77730a456deb00770e9967f",
+ "reference": "896efcbe67b55b85a77730a456deb00770e9967f",
"shasum": ""
},
"require": {
@@ -7105,7 +7700,7 @@
"spatie"
],
"support": {
- "source": "https://github.com/spatie/laravel-health/tree/1.14.6"
+ "source": "https://github.com/spatie/laravel-health/tree/1.15.2"
},
"funding": [
{
@@ -7113,20 +7708,20 @@
"type": "github"
}
],
- "time": "2022-09-22T13:37:15+00:00"
+ "time": "2022-10-21T06:54:57+00:00"
},
{
"name": "spatie/laravel-medialibrary",
- "version": "10.5.1",
+ "version": "10.6.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-medialibrary.git",
- "reference": "0f146ad3b89f5d39d9f621812d794d577206486e"
+ "reference": "2f7db874ecdb9c6a2b06db794f00fb2e487c91ee"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-medialibrary/zipball/0f146ad3b89f5d39d9f621812d794d577206486e",
- "reference": "0f146ad3b89f5d39d9f621812d794d577206486e",
+ "url": "https://api.github.com/repos/spatie/laravel-medialibrary/zipball/2f7db874ecdb9c6a2b06db794f00fb2e487c91ee",
+ "reference": "2f7db874ecdb9c6a2b06db794f00fb2e487c91ee",
"shasum": ""
},
"require": {
@@ -7209,7 +7804,7 @@
],
"support": {
"issues": "https://github.com/spatie/laravel-medialibrary/issues",
- "source": "https://github.com/spatie/laravel-medialibrary/tree/10.5.1"
+ "source": "https://github.com/spatie/laravel-medialibrary/tree/10.6.0"
},
"funding": [
{
@@ -7221,7 +7816,7 @@
"type": "github"
}
],
- "time": "2022-09-21T16:03:25+00:00"
+ "time": "2022-10-21T14:20:02+00:00"
},
{
"name": "spatie/laravel-medialibrary-pro",
@@ -7306,16 +7901,16 @@
},
{
"name": "spatie/laravel-package-tools",
- "version": "1.13.5",
+ "version": "1.13.6",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-package-tools.git",
- "reference": "163ee3bc6c0a987535d8a99722a7dbcc5471a140"
+ "reference": "c377cc7223655c2278c148c1685b8b5a78af5c65"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/163ee3bc6c0a987535d8a99722a7dbcc5471a140",
- "reference": "163ee3bc6c0a987535d8a99722a7dbcc5471a140",
+ "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/c377cc7223655c2278c148c1685b8b5a78af5c65",
+ "reference": "c377cc7223655c2278c148c1685b8b5a78af5c65",
"shasum": ""
},
"require": {
@@ -7353,7 +7948,7 @@
],
"support": {
"issues": "https://github.com/spatie/laravel-package-tools/issues",
- "source": "https://github.com/spatie/laravel-package-tools/tree/1.13.5"
+ "source": "https://github.com/spatie/laravel-package-tools/tree/1.13.6"
},
"funding": [
{
@@ -7361,20 +7956,20 @@
"type": "github"
}
],
- "time": "2022-09-07T14:31:31+00:00"
+ "time": "2022-10-11T06:37:42+00:00"
},
{
"name": "spatie/laravel-permission",
- "version": "5.5.5",
+ "version": "5.5.16",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-permission.git",
- "reference": "f2303a70be60919811ca8afc313e8244fda00974"
+ "reference": "e57a67b51a02cbfcd074ed68786897db1dbbf2fa"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/f2303a70be60919811ca8afc313e8244fda00974",
- "reference": "f2303a70be60919811ca8afc313e8244fda00974",
+ "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/e57a67b51a02cbfcd074ed68786897db1dbbf2fa",
+ "reference": "e57a67b51a02cbfcd074ed68786897db1dbbf2fa",
"shasum": ""
},
"require": {
@@ -7435,7 +8030,7 @@
],
"support": {
"issues": "https://github.com/spatie/laravel-permission/issues",
- "source": "https://github.com/spatie/laravel-permission/tree/5.5.5"
+ "source": "https://github.com/spatie/laravel-permission/tree/5.5.16"
},
"funding": [
{
@@ -7443,20 +8038,95 @@
"type": "github"
}
],
- "time": "2022-06-29T23:11:42+00:00"
+ "time": "2022-10-23T02:49:28+00:00"
+ },
+ {
+ "name": "spatie/laravel-schemaless-attributes",
+ "version": "2.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spatie/laravel-schemaless-attributes.git",
+ "reference": "3ac6d63f36c631edfafa5f34d7a3885f47b96e48"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spatie/laravel-schemaless-attributes/zipball/3ac6d63f36c631edfafa5f34d7a3885f47b96e48",
+ "reference": "3ac6d63f36c631edfafa5f34d7a3885f47b96e48",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/contracts": "^7.0|^8.0|^9.0",
+ "illuminate/database": "^7.0|^8.0|^9.0",
+ "illuminate/support": "^7.0|^8.0|^9.0",
+ "php": "^8.0",
+ "spatie/laravel-package-tools": "^1.4.3"
+ },
+ "require-dev": {
+ "brianium/paratest": "^6.2",
+ "mockery/mockery": "^1.4",
+ "nunomaduro/collision": "^5.3|^6.0",
+ "orchestra/testbench": "^6.15|^7.0",
+ "phpunit/phpunit": "^9.5.4"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Spatie\\SchemalessAttributes\\SchemalessAttributesServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Spatie\\SchemalessAttributes\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Freek Van der Herten",
+ "email": "freek@spatie.be",
+ "homepage": "https://spatie.be",
+ "role": "Developer"
+ }
+ ],
+ "description": "Add schemaless attributes to Eloquent models",
+ "homepage": "https://github.com/spatie/laravel-schemaless-attributes",
+ "keywords": [
+ "laravel-schemaless-attributes",
+ "spatie"
+ ],
+ "support": {
+ "issues": "https://github.com/spatie/laravel-schemaless-attributes/issues",
+ "source": "https://github.com/spatie/laravel-schemaless-attributes/tree/2.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://spatie.be/open-source/support-us",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/spatie",
+ "type": "github"
+ }
+ ],
+ "time": "2022-01-12T08:21:28+00:00"
},
{
"name": "spatie/laravel-sitemap",
- "version": "6.2.2",
+ "version": "6.2.3",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-sitemap.git",
- "reference": "6527aa95746b35fbaf6254b773bd99f147fe4f77"
+ "reference": "fcda88100cfcd14766a2b31d4710b9acf4f7e95e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-sitemap/zipball/6527aa95746b35fbaf6254b773bd99f147fe4f77",
- "reference": "6527aa95746b35fbaf6254b773bd99f147fe4f77",
+ "url": "https://api.github.com/repos/spatie/laravel-sitemap/zipball/fcda88100cfcd14766a2b31d4710b9acf4f7e95e",
+ "reference": "fcda88100cfcd14766a2b31d4710b9acf4f7e95e",
"shasum": ""
},
"require": {
@@ -7507,7 +8177,150 @@
"spatie"
],
"support": {
- "source": "https://github.com/spatie/laravel-sitemap/tree/6.2.2"
+ "source": "https://github.com/spatie/laravel-sitemap/tree/6.2.3"
+ },
+ "funding": [
+ {
+ "url": "https://spatie.be/open-source/support-us",
+ "type": "custom"
+ }
+ ],
+ "time": "2022-10-24T15:41:02+00:00"
+ },
+ {
+ "name": "spatie/laravel-sluggable",
+ "version": "3.4.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spatie/laravel-sluggable.git",
+ "reference": "e3b102ef0f0a0bfbba1eca5961a8e33207c76028"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spatie/laravel-sluggable/zipball/e3b102ef0f0a0bfbba1eca5961a8e33207c76028",
+ "reference": "e3b102ef0f0a0bfbba1eca5961a8e33207c76028",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/database": "^8.0|^9.0",
+ "illuminate/support": "^8.0|^9.0",
+ "php": "^8.0"
+ },
+ "require-dev": {
+ "orchestra/testbench": "^6.23|^7.0",
+ "pestphp/pest": "^1.20",
+ "spatie/laravel-translatable": "^5.0|^6.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Spatie\\Sluggable\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Freek Van der Herten",
+ "email": "freek@spatie.be",
+ "homepage": "https://spatie.be",
+ "role": "Developer"
+ }
+ ],
+ "description": "Generate slugs when saving Eloquent models",
+ "homepage": "https://github.com/spatie/laravel-sluggable",
+ "keywords": [
+ "laravel-sluggable",
+ "spatie"
+ ],
+ "support": {
+ "issues": "https://github.com/spatie/laravel-sluggable/issues",
+ "source": "https://github.com/spatie/laravel-sluggable/tree/3.4.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/spatie",
+ "type": "github"
+ }
+ ],
+ "time": "2022-03-28T11:21:33+00:00"
+ },
+ {
+ "name": "spatie/laravel-translatable",
+ "version": "5.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spatie/laravel-translatable.git",
+ "reference": "4567de39c483f7e43dddab9b8cb657796b139fd2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spatie/laravel-translatable/zipball/4567de39c483f7e43dddab9b8cb657796b139fd2",
+ "reference": "4567de39c483f7e43dddab9b8cb657796b139fd2",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/database": "^8.0|^9.0",
+ "illuminate/support": "^8.0|^9.0",
+ "php": "^8.0",
+ "spatie/laravel-package-tools": "^1.9"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.4",
+ "orchestra/testbench": "^6.23|^7.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Spatie\\Translatable\\TranslatableServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Spatie\\Translatable\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Freek Van der Herten",
+ "email": "freek@spatie.be",
+ "homepage": "https://spatie.be",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian De Deyne",
+ "email": "sebastian@spatie.be",
+ "homepage": "https://spatie.be",
+ "role": "Developer"
+ },
+ {
+ "name": "Mohamed Said",
+ "email": "theMohamedSaid@gmail.com",
+ "role": "Original idea"
+ }
+ ],
+ "description": "A trait to make an Eloquent model hold translations",
+ "homepage": "https://github.com/spatie/laravel-translatable",
+ "keywords": [
+ "eloquent",
+ "i8n",
+ "laravel-translatable",
+ "model",
+ "multilingual",
+ "spatie",
+ "translate"
+ ],
+ "support": {
+ "issues": "https://github.com/spatie/laravel-translatable/issues",
+ "source": "https://github.com/spatie/laravel-translatable/tree/5.2.0"
},
"funding": [
{
@@ -7515,7 +8328,7 @@
"type": "custom"
}
],
- "time": "2022-09-22T07:47:38+00:00"
+ "time": "2022-01-13T11:15:07+00:00"
},
{
"name": "spatie/regex",
@@ -7772,16 +8585,16 @@
},
{
"name": "symfony/console",
- "version": "v6.0.12",
+ "version": "v6.0.14",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
- "reference": "c5c2e313aa682530167c25077d6bdff36346251e"
+ "reference": "1f89cab8d52c84424f798495b3f10342a7b1a070"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/c5c2e313aa682530167c25077d6bdff36346251e",
- "reference": "c5c2e313aa682530167c25077d6bdff36346251e",
+ "url": "https://api.github.com/repos/symfony/console/zipball/1f89cab8d52c84424f798495b3f10342a7b1a070",
+ "reference": "1f89cab8d52c84424f798495b3f10342a7b1a070",
"shasum": ""
},
"require": {
@@ -7847,7 +8660,7 @@
"terminal"
],
"support": {
- "source": "https://github.com/symfony/console/tree/v6.0.12"
+ "source": "https://github.com/symfony/console/tree/v6.0.14"
},
"funding": [
{
@@ -7863,7 +8676,7 @@
"type": "tidelift"
}
],
- "time": "2022-08-23T20:52:30+00:00"
+ "time": "2022-10-07T08:02:12+00:00"
},
{
"name": "symfony/css-selector",
@@ -8072,16 +8885,16 @@
},
{
"name": "symfony/error-handler",
- "version": "v6.0.11",
+ "version": "v6.0.14",
"source": {
"type": "git",
"url": "https://github.com/symfony/error-handler.git",
- "reference": "cb302377e1b862540436f22be9ff07079a5836ae"
+ "reference": "81e57c793d9a573f29f8b5296d5d8ee4602badcb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/error-handler/zipball/cb302377e1b862540436f22be9ff07079a5836ae",
- "reference": "cb302377e1b862540436f22be9ff07079a5836ae",
+ "url": "https://api.github.com/repos/symfony/error-handler/zipball/81e57c793d9a573f29f8b5296d5d8ee4602badcb",
+ "reference": "81e57c793d9a573f29f8b5296d5d8ee4602badcb",
"shasum": ""
},
"require": {
@@ -8123,7 +8936,7 @@
"description": "Provides tools to manage errors and ease debugging PHP code",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/error-handler/tree/v6.0.11"
+ "source": "https://github.com/symfony/error-handler/tree/v6.0.14"
},
"funding": [
{
@@ -8139,7 +8952,7 @@
"type": "tidelift"
}
],
- "time": "2022-07-29T07:39:48+00:00"
+ "time": "2022-10-07T08:02:12+00:00"
},
{
"name": "symfony/event-dispatcher",
@@ -8366,16 +9179,16 @@
},
{
"name": "symfony/http-client",
- "version": "v6.0.12",
+ "version": "v6.0.14",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-client.git",
- "reference": "411f73ad1a797f327d100d27fa5d715b947a8272"
+ "reference": "ec183a587e3ad47f03cf1572d4b8437e0fc3e923"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-client/zipball/411f73ad1a797f327d100d27fa5d715b947a8272",
- "reference": "411f73ad1a797f327d100d27fa5d715b947a8272",
+ "url": "https://api.github.com/repos/symfony/http-client/zipball/ec183a587e3ad47f03cf1572d4b8437e0fc3e923",
+ "reference": "ec183a587e3ad47f03cf1572d4b8437e0fc3e923",
"shasum": ""
},
"require": {
@@ -8430,7 +9243,7 @@
"description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/http-client/tree/v6.0.12"
+ "source": "https://github.com/symfony/http-client/tree/v6.0.14"
},
"funding": [
{
@@ -8446,7 +9259,7 @@
"type": "tidelift"
}
],
- "time": "2022-08-02T16:01:06+00:00"
+ "time": "2022-10-11T15:20:43+00:00"
},
{
"name": "symfony/http-client-contracts",
@@ -8528,16 +9341,16 @@
},
{
"name": "symfony/http-foundation",
- "version": "v6.0.12",
+ "version": "v6.0.14",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
- "reference": "d50ee4795c981638369dfa0b281107365fab2429"
+ "reference": "e8aa505d35660877e6695d68be53df2ceac7cf57"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d50ee4795c981638369dfa0b281107365fab2429",
- "reference": "d50ee4795c981638369dfa0b281107365fab2429",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e8aa505d35660877e6695d68be53df2ceac7cf57",
+ "reference": "e8aa505d35660877e6695d68be53df2ceac7cf57",
"shasum": ""
},
"require": {
@@ -8583,7 +9396,7 @@
"description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/http-foundation/tree/v6.0.12"
+ "source": "https://github.com/symfony/http-foundation/tree/v6.0.14"
},
"funding": [
{
@@ -8599,20 +9412,20 @@
"type": "tidelift"
}
],
- "time": "2022-08-19T14:25:15+00:00"
+ "time": "2022-10-02T08:16:40+00:00"
},
{
"name": "symfony/http-kernel",
- "version": "v6.0.12",
+ "version": "v6.0.14",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
- "reference": "8f3563e4518cfee24a5cc724434cc60e0818abec"
+ "reference": "f9fc93c4f12e2fd7dea37f7b5840deb34e9037fc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/8f3563e4518cfee24a5cc724434cc60e0818abec",
- "reference": "8f3563e4518cfee24a5cc724434cc60e0818abec",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f9fc93c4f12e2fd7dea37f7b5840deb34e9037fc",
+ "reference": "f9fc93c4f12e2fd7dea37f7b5840deb34e9037fc",
"shasum": ""
},
"require": {
@@ -8692,7 +9505,7 @@
"description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/http-kernel/tree/v6.0.12"
+ "source": "https://github.com/symfony/http-kernel/tree/v6.0.14"
},
"funding": [
{
@@ -8708,20 +9521,20 @@
"type": "tidelift"
}
],
- "time": "2022-08-26T14:45:39+00:00"
+ "time": "2022-10-12T07:43:45+00:00"
},
{
"name": "symfony/mailer",
- "version": "v6.0.12",
+ "version": "v6.0.13",
"source": {
"type": "git",
"url": "https://github.com/symfony/mailer.git",
- "reference": "45aad5f8cfb481130e83dc4cb867c0f576182ea9"
+ "reference": "6269c872ab4792e8facbf8af27a2fbee8429f217"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mailer/zipball/45aad5f8cfb481130e83dc4cb867c0f576182ea9",
- "reference": "45aad5f8cfb481130e83dc4cb867c0f576182ea9",
+ "url": "https://api.github.com/repos/symfony/mailer/zipball/6269c872ab4792e8facbf8af27a2fbee8429f217",
+ "reference": "6269c872ab4792e8facbf8af27a2fbee8429f217",
"shasum": ""
},
"require": {
@@ -8766,7 +9579,7 @@
"description": "Helps sending emails",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/mailer/tree/v6.0.12"
+ "source": "https://github.com/symfony/mailer/tree/v6.0.13"
},
"funding": [
{
@@ -8782,7 +9595,7 @@
"type": "tidelift"
}
],
- "time": "2022-08-03T05:17:36+00:00"
+ "time": "2022-08-29T06:49:22+00:00"
},
{
"name": "symfony/mailgun-mailer",
@@ -8851,16 +9664,16 @@
},
{
"name": "symfony/mime",
- "version": "v6.0.12",
+ "version": "v6.0.14",
"source": {
"type": "git",
"url": "https://github.com/symfony/mime.git",
- "reference": "02a11577f2f9522c783179712bdf6d2d3cb9fc1d"
+ "reference": "c01b88b63418131daf2edd0bdc17fc8a6d1c939a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mime/zipball/02a11577f2f9522c783179712bdf6d2d3cb9fc1d",
- "reference": "02a11577f2f9522c783179712bdf6d2d3cb9fc1d",
+ "url": "https://api.github.com/repos/symfony/mime/zipball/c01b88b63418131daf2edd0bdc17fc8a6d1c939a",
+ "reference": "c01b88b63418131daf2edd0bdc17fc8a6d1c939a",
"shasum": ""
},
"require": {
@@ -8872,7 +9685,8 @@
"egulias/email-validator": "~3.0.0",
"phpdocumentor/reflection-docblock": "<3.2.2",
"phpdocumentor/type-resolver": "<1.4.0",
- "symfony/mailer": "<5.4"
+ "symfony/mailer": "<5.4",
+ "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
},
"require-dev": {
"egulias/email-validator": "^2.1.10|^3.1",
@@ -8880,7 +9694,7 @@
"symfony/dependency-injection": "^5.4|^6.0",
"symfony/property-access": "^5.4|^6.0",
"symfony/property-info": "^5.4|^6.0",
- "symfony/serializer": "^5.4|^6.0"
+ "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6"
},
"type": "library",
"autoload": {
@@ -8912,7 +9726,7 @@
"mime-type"
],
"support": {
- "source": "https://github.com/symfony/mime/tree/v6.0.12"
+ "source": "https://github.com/symfony/mime/tree/v6.0.14"
},
"funding": [
{
@@ -8928,7 +9742,7 @@
"type": "tidelift"
}
],
- "time": "2022-08-19T14:25:15+00:00"
+ "time": "2022-10-07T08:02:12+00:00"
},
{
"name": "symfony/options-resolver",
@@ -10055,16 +10869,16 @@
},
{
"name": "symfony/string",
- "version": "v6.0.12",
+ "version": "v6.0.14",
"source": {
"type": "git",
"url": "https://github.com/symfony/string.git",
- "reference": "3a975ba1a1508ad97df45f4590f55b7cc4c1a0a0"
+ "reference": "3db7da820a6e4a584b714b3933c34c6a7db4d86c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/string/zipball/3a975ba1a1508ad97df45f4590f55b7cc4c1a0a0",
- "reference": "3a975ba1a1508ad97df45f4590f55b7cc4c1a0a0",
+ "url": "https://api.github.com/repos/symfony/string/zipball/3db7da820a6e4a584b714b3933c34c6a7db4d86c",
+ "reference": "3db7da820a6e4a584b714b3933c34c6a7db4d86c",
"shasum": ""
},
"require": {
@@ -10120,7 +10934,7 @@
"utf8"
],
"support": {
- "source": "https://github.com/symfony/string/tree/v6.0.12"
+ "source": "https://github.com/symfony/string/tree/v6.0.14"
},
"funding": [
{
@@ -10136,20 +10950,20 @@
"type": "tidelift"
}
],
- "time": "2022-08-12T18:05:20+00:00"
+ "time": "2022-10-10T09:34:08+00:00"
},
{
"name": "symfony/translation",
- "version": "v6.0.12",
+ "version": "v6.0.14",
"source": {
"type": "git",
"url": "https://github.com/symfony/translation.git",
- "reference": "5e71973b4991e141271465dacf4bf9e719941424"
+ "reference": "6f99eb179aee4652c0a7cd7c11f2a870d904330c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/5e71973b4991e141271465dacf4bf9e719941424",
- "reference": "5e71973b4991e141271465dacf4bf9e719941424",
+ "url": "https://api.github.com/repos/symfony/translation/zipball/6f99eb179aee4652c0a7cd7c11f2a870d904330c",
+ "reference": "6f99eb179aee4652c0a7cd7c11f2a870d904330c",
"shasum": ""
},
"require": {
@@ -10215,7 +11029,7 @@
"description": "Provides tools to internationalize your application",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/translation/tree/v6.0.12"
+ "source": "https://github.com/symfony/translation/tree/v6.0.14"
},
"funding": [
{
@@ -10231,7 +11045,7 @@
"type": "tidelift"
}
],
- "time": "2022-08-02T16:01:06+00:00"
+ "time": "2022-10-07T08:02:12+00:00"
},
{
"name": "symfony/translation-contracts",
@@ -10313,16 +11127,16 @@
},
{
"name": "symfony/uid",
- "version": "v6.0.11",
+ "version": "v6.0.13",
"source": {
"type": "git",
"url": "https://github.com/symfony/uid.git",
- "reference": "7ae9cb6ad0728f9a425499112929575c0b2cc09f"
+ "reference": "db426b27173f5e2d8b960dd10fa8ce19ea9ca5f3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/uid/zipball/7ae9cb6ad0728f9a425499112929575c0b2cc09f",
- "reference": "7ae9cb6ad0728f9a425499112929575c0b2cc09f",
+ "url": "https://api.github.com/repos/symfony/uid/zipball/db426b27173f5e2d8b960dd10fa8ce19ea9ca5f3",
+ "reference": "db426b27173f5e2d8b960dd10fa8ce19ea9ca5f3",
"shasum": ""
},
"require": {
@@ -10367,7 +11181,7 @@
"uuid"
],
"support": {
- "source": "https://github.com/symfony/uid/tree/v6.0.11"
+ "source": "https://github.com/symfony/uid/tree/v6.0.13"
},
"funding": [
{
@@ -10383,20 +11197,20 @@
"type": "tidelift"
}
],
- "time": "2022-07-20T13:45:53+00:00"
+ "time": "2022-09-09T09:33:56+00:00"
},
{
"name": "symfony/var-dumper",
- "version": "v6.0.11",
+ "version": "v6.0.14",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
- "reference": "2672bdc01c1971e3d8879ce153ec4c3621be5f07"
+ "reference": "72af925ddd41ca0372d166d004bc38a00c4608cc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2672bdc01c1971e3d8879ce153ec4c3621be5f07",
- "reference": "2672bdc01c1971e3d8879ce153ec4c3621be5f07",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/72af925ddd41ca0372d166d004bc38a00c4608cc",
+ "reference": "72af925ddd41ca0372d166d004bc38a00c4608cc",
"shasum": ""
},
"require": {
@@ -10455,7 +11269,7 @@
"dump"
],
"support": {
- "source": "https://github.com/symfony/var-dumper/tree/v6.0.11"
+ "source": "https://github.com/symfony/var-dumper/tree/v6.0.14"
},
"funding": [
{
@@ -10471,7 +11285,7 @@
"type": "tidelift"
}
],
- "time": "2022-07-20T13:45:53+00:00"
+ "time": "2022-10-07T08:02:12+00:00"
},
{
"name": "tijsverkoyen/css-to-inline-styles",
@@ -10648,16 +11462,16 @@
},
{
"name": "vlucas/phpdotenv",
- "version": "v5.4.1",
+ "version": "v5.5.0",
"source": {
"type": "git",
"url": "https://github.com/vlucas/phpdotenv.git",
- "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
+ "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
- "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
+ "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
+ "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
"shasum": ""
},
"require": {
@@ -10672,15 +11486,19 @@
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4.1",
"ext-filter": "*",
- "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
+ "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
},
"suggest": {
"ext-filter": "Required to use the boolean validator."
},
"type": "library",
"extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": true
+ },
"branch-alias": {
- "dev-master": "5.4-dev"
+ "dev-master": "5.5-dev"
}
},
"autoload": {
@@ -10712,7 +11530,7 @@
],
"support": {
"issues": "https://github.com/vlucas/phpdotenv/issues",
- "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
+ "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
},
"funding": [
{
@@ -10724,7 +11542,7 @@
"type": "tidelift"
}
],
- "time": "2021-12-12T23:22:04+00:00"
+ "time": "2022-10-16T01:01:54+00:00"
},
{
"name": "voku/portable-ascii",
@@ -10800,6 +11618,60 @@
],
"time": "2022-03-08T17:03:00+00:00"
},
+ {
+ "name": "watson/validating",
+ "version": "7.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/dwightwatson/validating.git",
+ "reference": "d93ec043fb2dc4cc569b63fbe95cb7231b4f788f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/dwightwatson/validating/zipball/d93ec043fb2dc4cc569b63fbe95cb7231b4f788f",
+ "reference": "d93ec043fb2dc4cc569b63fbe95cb7231b4f788f",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/contracts": "~8.0|~9.0",
+ "illuminate/database": "~8.0|~9.0",
+ "illuminate/events": "~8.0|~9.0",
+ "illuminate/support": "~8.0|~9.0",
+ "illuminate/validation": "~8.0|~9.0",
+ "php": "^8.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.4.4",
+ "phpunit/phpunit": "~9.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Watson\\Validating\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Dwight Watson",
+ "email": "dwight@studiousapp.com"
+ }
+ ],
+ "description": "Eloquent model validating trait.",
+ "keywords": [
+ "eloquent",
+ "laravel",
+ "validation"
+ ],
+ "support": {
+ "issues": "https://github.com/dwightwatson/validating/issues",
+ "source": "https://github.com/dwightwatson/validating/tree/7.0.0"
+ },
+ "time": "2022-02-08T23:28:17+00:00"
+ },
{
"name": "webmozart/assert",
"version": "1.11.0",
@@ -11279,150 +12151,6 @@
],
"time": "2022-03-28T07:55:11+00:00"
},
- {
- "name": "composer/class-map-generator",
- "version": "1.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/composer/class-map-generator.git",
- "reference": "1e1cb2b791facb2dfe32932a7718cf2571187513"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/composer/class-map-generator/zipball/1e1cb2b791facb2dfe32932a7718cf2571187513",
- "reference": "1e1cb2b791facb2dfe32932a7718cf2571187513",
- "shasum": ""
- },
- "require": {
- "composer/pcre": "^2 || ^3",
- "php": "^7.2 || ^8.0",
- "symfony/finder": "^4.4 || ^5.3 || ^6"
- },
- "require-dev": {
- "phpstan/phpstan": "^1.6",
- "phpstan/phpstan-deprecation-rules": "^1",
- "phpstan/phpstan-phpunit": "^1",
- "phpstan/phpstan-strict-rules": "^1.1",
- "symfony/filesystem": "^5.4 || ^6",
- "symfony/phpunit-bridge": "^5"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Composer\\ClassMapGenerator\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Jordi Boggiano",
- "email": "j.boggiano@seld.be",
- "homepage": "https://seld.be"
- }
- ],
- "description": "Utilities to scan PHP code and generate class maps.",
- "keywords": [
- "classmap"
- ],
- "support": {
- "issues": "https://github.com/composer/class-map-generator/issues",
- "source": "https://github.com/composer/class-map-generator/tree/1.0.0"
- },
- "funding": [
- {
- "url": "https://packagist.com",
- "type": "custom"
- },
- {
- "url": "https://github.com/composer",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
- "type": "tidelift"
- }
- ],
- "time": "2022-06-19T11:31:27+00:00"
- },
- {
- "name": "composer/pcre",
- "version": "3.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/composer/pcre.git",
- "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/composer/pcre/zipball/e300eb6c535192decd27a85bc72a9290f0d6b3bd",
- "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd",
- "shasum": ""
- },
- "require": {
- "php": "^7.4 || ^8.0"
- },
- "require-dev": {
- "phpstan/phpstan": "^1.3",
- "phpstan/phpstan-strict-rules": "^1.1",
- "symfony/phpunit-bridge": "^5"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Composer\\Pcre\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Jordi Boggiano",
- "email": "j.boggiano@seld.be",
- "homepage": "http://seld.be"
- }
- ],
- "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
- "keywords": [
- "PCRE",
- "preg",
- "regex",
- "regular expression"
- ],
- "support": {
- "issues": "https://github.com/composer/pcre/issues",
- "source": "https://github.com/composer/pcre/tree/3.0.0"
- },
- "funding": [
- {
- "url": "https://packagist.com",
- "type": "custom"
- },
- {
- "url": "https://github.com/composer",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
- "type": "tidelift"
- }
- ],
- "time": "2022-02-25T20:21:48+00:00"
- },
{
"name": "doctrine/instantiator",
"version": "1.4.1",
@@ -11750,16 +12478,16 @@
},
{
"name": "laravel/sail",
- "version": "v1.16.1",
+ "version": "v1.16.2",
"source": {
"type": "git",
"url": "https://github.com/laravel/sail.git",
- "reference": "cd7b9b6817c871e8b85d4f42e714303ee22676da"
+ "reference": "7d1ed5f856ec8b9708712e3fc0708fcabe114659"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/sail/zipball/cd7b9b6817c871e8b85d4f42e714303ee22676da",
- "reference": "cd7b9b6817c871e8b85d4f42e714303ee22676da",
+ "url": "https://api.github.com/repos/laravel/sail/zipball/7d1ed5f856ec8b9708712e3fc0708fcabe114659",
+ "reference": "7d1ed5f856ec8b9708712e3fc0708fcabe114659",
"shasum": ""
},
"require": {
@@ -11806,7 +12534,75 @@
"issues": "https://github.com/laravel/sail/issues",
"source": "https://github.com/laravel/sail"
},
- "time": "2022-09-26T13:53:59+00:00"
+ "time": "2022-09-28T13:13:22+00:00"
+ },
+ {
+ "name": "laravel/telescope",
+ "version": "v4.9.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/telescope.git",
+ "reference": "a316d6d15793b559c51ccb4b5dc59b223da500e5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/telescope/zipball/a316d6d15793b559c51ccb4b5dc59b223da500e5",
+ "reference": "a316d6d15793b559c51ccb4b5dc59b223da500e5",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "laravel/framework": "^8.37|^9.0",
+ "php": "^7.3|^8.0",
+ "symfony/var-dumper": "^5.0|^6.0"
+ },
+ "require-dev": {
+ "ext-gd": "*",
+ "guzzlehttp/guzzle": "^6.0|^7.0",
+ "orchestra/testbench": "^6.0|^7.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.x-dev"
+ },
+ "laravel": {
+ "providers": [
+ "Laravel\\Telescope\\TelescopeServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Laravel\\Telescope\\": "src/",
+ "Laravel\\Telescope\\Database\\Factories\\": "database/factories/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Taylor Otwell",
+ "email": "taylor@laravel.com"
+ },
+ {
+ "name": "Mohamed Said",
+ "email": "mohamed@laravel.com"
+ }
+ ],
+ "description": "An elegant debug assistant for the Laravel framework.",
+ "keywords": [
+ "debugging",
+ "laravel",
+ "monitoring"
+ ],
+ "support": {
+ "issues": "https://github.com/laravel/telescope/issues",
+ "source": "https://github.com/laravel/telescope/tree/v4.9.5"
+ },
+ "time": "2022-10-06T14:01:10+00:00"
},
{
"name": "mockery/mockery",
@@ -11941,16 +12737,16 @@
},
{
"name": "nunomaduro/collision",
- "version": "v6.3.0",
+ "version": "v6.3.1",
"source": {
"type": "git",
"url": "https://github.com/nunomaduro/collision.git",
- "reference": "17f600e2e8872856ff2846243efb74ad4b6da531"
+ "reference": "0f6349c3ed5dd28467087b08fb59384bb458a22b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nunomaduro/collision/zipball/17f600e2e8872856ff2846243efb74ad4b6da531",
- "reference": "17f600e2e8872856ff2846243efb74ad4b6da531",
+ "url": "https://api.github.com/repos/nunomaduro/collision/zipball/0f6349c3ed5dd28467087b08fb59384bb458a22b",
+ "reference": "0f6349c3ed5dd28467087b08fb59384bb458a22b",
"shasum": ""
},
"require": {
@@ -12025,25 +12821,23 @@
"type": "patreon"
}
],
- "time": "2022-08-29T09:11:20+00:00"
+ "time": "2022-09-29T12:29:49+00:00"
},
{
"name": "nunomaduro/larastan",
- "version": "v2.2.0",
+ "version": "2.2.6",
"source": {
"type": "git",
"url": "https://github.com/nunomaduro/larastan.git",
- "reference": "980199077a49d71ef7c03b65b9d6bcce1f6d7bad"
+ "reference": "af9398796e252262ddac3e55f41d2433fcbb4641"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nunomaduro/larastan/zipball/980199077a49d71ef7c03b65b9d6bcce1f6d7bad",
- "reference": "980199077a49d71ef7c03b65b9d6bcce1f6d7bad",
+ "url": "https://api.github.com/repos/nunomaduro/larastan/zipball/af9398796e252262ddac3e55f41d2433fcbb4641",
+ "reference": "af9398796e252262ddac3e55f41d2433fcbb4641",
"shasum": ""
},
"require": {
- "composer/class-map-generator": "^1.0",
- "composer/pcre": "^3.0",
"ext-json": "*",
"illuminate/console": "^9",
"illuminate/container": "^9",
@@ -12055,7 +12849,7 @@
"mockery/mockery": "^1.4.4",
"php": "^8.0.2",
"phpmyadmin/sql-parser": "^5.5",
- "phpstan/phpstan": "^1.8.1"
+ "phpstan/phpstan": "^1.8.7"
},
"require-dev": {
"nikic/php-parser": "^4.13.2",
@@ -12104,7 +12898,7 @@
],
"support": {
"issues": "https://github.com/nunomaduro/larastan/issues",
- "source": "https://github.com/nunomaduro/larastan/tree/v2.2.0"
+ "source": "https://github.com/nunomaduro/larastan/tree/2.2.6"
},
"funding": [
{
@@ -12124,7 +12918,7 @@
"type": "patreon"
}
],
- "time": "2022-08-30T19:02:01+00:00"
+ "time": "2022-10-24T10:31:11+00:00"
},
{
"name": "pestphp/pest",
@@ -12618,25 +13412,30 @@
},
{
"name": "phpdocumentor/type-resolver",
- "version": "1.6.1",
+ "version": "1.6.2",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/TypeResolver.git",
- "reference": "77a32518733312af16a44300404e945338981de3"
+ "reference": "48f445a408c131e38cab1c235aa6d2bb7a0bb20d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
- "reference": "77a32518733312af16a44300404e945338981de3",
+ "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/48f445a408c131e38cab1c235aa6d2bb7a0bb20d",
+ "reference": "48f445a408c131e38cab1c235aa6d2bb7a0bb20d",
"shasum": ""
},
"require": {
- "php": "^7.2 || ^8.0",
+ "php": "^7.4 || ^8.0",
"phpdocumentor/reflection-common": "^2.0"
},
"require-dev": {
"ext-tokenizer": "*",
- "psalm/phar": "^4.8"
+ "phpstan/extension-installer": "^1.1",
+ "phpstan/phpstan": "^1.8",
+ "phpstan/phpstan-phpunit": "^1.1",
+ "phpunit/phpunit": "^9.5",
+ "rector/rector": "^0.13.9",
+ "vimeo/psalm": "^4.25"
},
"type": "library",
"extra": {
@@ -12662,9 +13461,9 @@
"description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
"support": {
"issues": "https://github.com/phpDocumentor/TypeResolver/issues",
- "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
+ "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.2"
},
- "time": "2022-03-15T21:29:03+00:00"
+ "time": "2022-10-14T12:47:21+00:00"
},
{
"name": "phpmyadmin/sql-parser",
@@ -12741,16 +13540,16 @@
},
{
"name": "phpstan/phpstan",
- "version": "1.8.6",
+ "version": "1.8.11",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpstan.git",
- "reference": "c386ab2741e64cc9e21729f891b28b2b10fe6618"
+ "reference": "46e223dd68a620da18855c23046ddb00940b4014"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan/zipball/c386ab2741e64cc9e21729f891b28b2b10fe6618",
- "reference": "c386ab2741e64cc9e21729f891b28b2b10fe6618",
+ "url": "https://api.github.com/repos/phpstan/phpstan/zipball/46e223dd68a620da18855c23046ddb00940b4014",
+ "reference": "46e223dd68a620da18855c23046ddb00940b4014",
"shasum": ""
},
"require": {
@@ -12780,7 +13579,7 @@
],
"support": {
"issues": "https://github.com/phpstan/phpstan/issues",
- "source": "https://github.com/phpstan/phpstan/tree/1.8.6"
+ "source": "https://github.com/phpstan/phpstan/tree/1.8.11"
},
"funding": [
{
@@ -12796,7 +13595,7 @@
"type": "tidelift"
}
],
- "time": "2022-09-23T09:54:39+00:00"
+ "time": "2022-10-24T15:45:13+00:00"
},
{
"name": "phpunit/php-code-coverage",
@@ -14390,16 +15189,16 @@
},
{
"name": "spatie/laravel-ignition",
- "version": "1.5.0",
+ "version": "1.6.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-ignition.git",
- "reference": "192962f4d84526f6868c512530c00633e3165749"
+ "reference": "c21309ebf6657e0c38083afac8af9baa12885676"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/192962f4d84526f6868c512530c00633e3165749",
- "reference": "192962f4d84526f6868c512530c00633e3165749",
+ "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/c21309ebf6657e0c38083afac8af9baa12885676",
+ "reference": "c21309ebf6657e0c38083afac8af9baa12885676",
"shasum": ""
},
"require": {
@@ -14476,7 +15275,7 @@
"type": "github"
}
],
- "time": "2022-09-16T13:45:54+00:00"
+ "time": "2022-10-25T08:38:04+00:00"
},
{
"name": "spatie/test-time",
@@ -14607,5 +15406,5 @@
"ext-json": "*"
},
"platform-dev": [],
- "plugin-api-version": "2.3.0"
+ "plugin-api-version": "2.1.0"
}
diff --git a/config/analytics.php b/config/analytics.php
index 45d59a04..aa7e4c4c 100644
--- a/config/analytics.php
+++ b/config/analytics.php
@@ -7,7 +7,6 @@
*
* The prefix and middleware for the analytics dashboard.
*/
-
'prefix' => 'analytics',
'middleware' => [
@@ -21,7 +20,6 @@
*
* The routes excluded from page view tracking.
*/
-
'exclude' => [
'/cpanel/*',
'/livewire/message/*',
diff --git a/config/livewire.php b/config/livewire.php
new file mode 100644
index 00000000..59f8d5c4
--- /dev/null
+++ b/config/livewire.php
@@ -0,0 +1,158 @@
+ 'App\\Http\\Livewire',
+
+ /*
+ |--------------------------------------------------------------------------
+ | View Path
+ |--------------------------------------------------------------------------
+ |
+ | This value sets the path for Livewire component views. This affects
+ | file manipulation helper commands like `artisan make:livewire`.
+ |
+ */
+
+ 'view_path' => resource_path('views/livewire'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Layout
+ |--------------------------------------------------------------------------
+ | The default layout view that will be used when rendering a component via
+ | Route::get('/some-endpoint', SomeComponent::class);. In this case the
+ | the view returned by SomeComponent will be wrapped in "layouts.app"
+ |
+ */
+
+ 'layout' => 'layouts.app',
+
+ /*
+ |--------------------------------------------------------------------------
+ | Livewire Assets URL
+ |--------------------------------------------------------------------------
+ |
+ | This value sets the path to Livewire JavaScript assets, for cases where
+ | your app's domain root is not the correct path. By default, Livewire
+ | will load its JavaScript assets from the app's "relative root".
+ |
+ | Examples: "/assets", "myurl.com/app".
+ |
+ */
+
+ 'asset_url' => null,
+
+ /*
+ |--------------------------------------------------------------------------
+ | Livewire App URL
+ |--------------------------------------------------------------------------
+ |
+ | This value should be used if livewire assets are served from CDN.
+ | Livewire will communicate with an app through this url.
+ |
+ | Examples: "https://my-app.com", "myurl.com/app".
+ |
+ */
+
+ 'app_url' => null,
+
+ /*
+ |--------------------------------------------------------------------------
+ | Livewire Endpoint Middleware Group
+ |--------------------------------------------------------------------------
+ |
+ | This value sets the middleware group that will be applied to the main
+ | Livewire "message" endpoint (the endpoint that gets hit everytime
+ | a Livewire component updates). It is set to "web" by default.
+ |
+ */
+
+ 'middleware_group' => 'web',
+
+ /*
+ |--------------------------------------------------------------------------
+ | Livewire Temporary File Uploads Endpoint Configuration
+ |--------------------------------------------------------------------------
+ |
+ | Livewire handles file uploads by storing uploads in a temporary directory
+ | before the file is validated and stored permanently. All file uploads
+ | are directed to a global endpoint for temporary storage. The config
+ | items below are used for customizing the way the endpoint works.
+ |
+ */
+
+ 'temporary_file_upload' => [
+ 'disk' => null, // Example: 'local', 's3' Default: 'default'
+ 'rules' => null, // Example: ['file', 'mimes:png,jpg'] Default: ['required', 'file', 'max:12288'] (12MB)
+ 'directory' => null, // Example: 'tmp' Default 'livewire-tmp'
+ 'middleware' => null, // Example: 'throttle:5,1' Default: 'throttle:60,1'
+ 'preview_mimes' => [ // Supported file types for temporary pre-signed file URLs.
+ 'png', 'gif', 'bmp', 'svg', 'wav', 'mp4',
+ 'mov', 'avi', 'wmv', 'mp3', 'm4a',
+ 'jpg', 'jpeg', 'mpga', 'webp', 'wma',
+ ],
+ 'max_upload_time' => 5, // Max duration (in minutes) before an upload gets invalidated.
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Manifest File Path
+ |--------------------------------------------------------------------------
+ |
+ | This value sets the path to the Livewire manifest file.
+ | The default should work for most cases (which is
+ | "/bootstrap/cache/livewire-components.php"), but for specific
+ | cases like when hosting on Laravel Vapor, it could be set to a different value.
+ |
+ | Example: for Laravel Vapor, it would be "/tmp/storage/bootstrap/cache/livewire-components.php".
+ |
+ */
+
+ 'manifest_path' => null,
+
+ /*
+ |--------------------------------------------------------------------------
+ | Back Button Cache
+ |--------------------------------------------------------------------------
+ |
+ | This value determines whether the back button cache will be used on pages
+ | that contain Livewire. By disabling back button cache, it ensures that
+ | the back button shows the correct state of components, instead of
+ | potentially stale, cached data.
+ |
+ | Setting it to "false" (default) will disable back button cache.
+ |
+ */
+
+ 'back_button_cache' => false,
+
+ /*
+ |--------------------------------------------------------------------------
+ | Render On Redirect
+ |--------------------------------------------------------------------------
+ |
+ | This value determines whether Livewire will render before it's redirected
+ | or not. Setting it to "false" (default) will mean the render method is
+ | skipped when redirecting. And "true" will mean the render method is
+ | run before redirecting. Browsers bfcache can store a potentially
+ | stale view if render is skipped on redirect.
+ |
+ */
+
+ 'render_on_redirect' => false,
+
+];
diff --git a/config/rinvex.subscriptions.php b/config/rinvex.subscriptions.php
new file mode 100644
index 00000000..ab72bf00
--- /dev/null
+++ b/config/rinvex.subscriptions.php
@@ -0,0 +1,30 @@
+ false,
+
+ // Subscriptions Database Tables
+ 'tables' => [
+
+ 'plans' => 'plans',
+ 'plan_features' => 'plan_features',
+ 'plan_subscriptions' => 'plan_subscriptions',
+ 'plan_subscription_usage' => 'plan_subscription_usage',
+
+ ],
+
+ // Subscriptions Models
+ 'models' => [
+
+ 'plan' => \App\Models\Premium\Plan::class,
+ 'plan_feature' => \App\Models\Premium\Feature::class,
+ 'plan_subscription' => \App\Models\Premium\Subscription::class,
+ 'plan_subscription_usage' => \App\Models\Premium\SubscriptionUsage::class,
+
+ ],
+
+];
diff --git a/config/telescope.php b/config/telescope.php
new file mode 100644
index 00000000..0062549c
--- /dev/null
+++ b/config/telescope.php
@@ -0,0 +1,180 @@
+ env('TELESCOPE_DOMAIN', null),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Telescope Path
+ |--------------------------------------------------------------------------
+ |
+ | This is the URI path where Telescope will be accessible from. Feel free
+ | to change this path to anything you like. Note that the URI will not
+ | affect the paths of its internal API that aren't exposed to users.
+ |
+ */
+
+ 'path' => env('TELESCOPE_PATH', 'telescope'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Telescope Storage Driver
+ |--------------------------------------------------------------------------
+ |
+ | This configuration options determines the storage driver that will
+ | be used to store Telescope's data. In addition, you may set any
+ | custom options as needed by the particular driver you choose.
+ |
+ */
+
+ 'driver' => env('TELESCOPE_DRIVER', 'database'),
+
+ 'storage' => [
+ 'database' => [
+ 'connection' => env('DB_CONNECTION', 'mysql'),
+ 'chunk' => 1000,
+ ],
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Telescope Master Switch
+ |--------------------------------------------------------------------------
+ |
+ | This option may be used to disable all Telescope watchers regardless
+ | of their individual configuration, which simply provides a single
+ | and convenient way to enable or disable Telescope data storage.
+ |
+ */
+
+ 'enabled' => env('TELESCOPE_ENABLED', true),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Telescope Route Middleware
+ |--------------------------------------------------------------------------
+ |
+ | These middleware will be assigned to every Telescope route, giving you
+ | the chance to add your own middleware to this list or change any of
+ | the existing middleware. Or, you can simply stick with this list.
+ |
+ */
+
+ 'middleware' => [
+ 'web',
+ Authorize::class,
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Allowed / Ignored Paths & Commands
+ |--------------------------------------------------------------------------
+ |
+ | The following array lists the URI paths and Artisan commands that will
+ | not be watched by Telescope. In addition to this list, some Laravel
+ | commands, like migrations and queue commands, are always ignored.
+ |
+ */
+
+ 'only_paths' => [
+ // 'api/*'
+ ],
+
+ 'ignore_paths' => [
+ 'nova-api*',
+ ],
+
+ 'ignore_commands' => [
+ //
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Telescope Watchers
+ |--------------------------------------------------------------------------
+ |
+ | The following array lists the "watchers" that will be registered with
+ | Telescope. The watchers gather the application's profile data when
+ | a request or task is executed. Feel free to customize this list.
+ |
+ */
+
+ 'watchers' => [
+ Watchers\BatchWatcher::class => env('TELESCOPE_BATCH_WATCHER', true),
+
+ Watchers\CacheWatcher::class => [
+ 'enabled' => env('TELESCOPE_CACHE_WATCHER', true),
+ 'hidden' => [],
+ ],
+
+ Watchers\ClientRequestWatcher::class => env('TELESCOPE_CLIENT_REQUEST_WATCHER', true),
+
+ Watchers\CommandWatcher::class => [
+ 'enabled' => env('TELESCOPE_COMMAND_WATCHER', true),
+ 'ignore' => [],
+ ],
+
+ Watchers\DumpWatcher::class => [
+ 'enabled' => env('TELESCOPE_DUMP_WATCHER', true),
+ 'always' => env('TELESCOPE_DUMP_WATCHER_ALWAYS', false),
+ ],
+
+ Watchers\EventWatcher::class => [
+ 'enabled' => env('TELESCOPE_EVENT_WATCHER', true),
+ 'ignore' => [],
+ ],
+
+ Watchers\ExceptionWatcher::class => env('TELESCOPE_EXCEPTION_WATCHER', true),
+
+ Watchers\GateWatcher::class => [
+ 'enabled' => env('TELESCOPE_GATE_WATCHER', true),
+ 'ignore_abilities' => [],
+ 'ignore_packages' => true,
+ ],
+
+ Watchers\JobWatcher::class => env('TELESCOPE_JOB_WATCHER', true),
+ Watchers\LogWatcher::class => env('TELESCOPE_LOG_WATCHER', true),
+ Watchers\MailWatcher::class => env('TELESCOPE_MAIL_WATCHER', true),
+
+ Watchers\ModelWatcher::class => [
+ 'enabled' => env('TELESCOPE_MODEL_WATCHER', true),
+ 'events' => ['eloquent.*'],
+ 'hydrations' => true,
+ ],
+
+ Watchers\NotificationWatcher::class => env('TELESCOPE_NOTIFICATION_WATCHER', true),
+
+ Watchers\QueryWatcher::class => [
+ 'enabled' => env('TELESCOPE_QUERY_WATCHER', true),
+ 'ignore_packages' => true,
+ 'slow' => 100,
+ ],
+
+ Watchers\RedisWatcher::class => env('TELESCOPE_REDIS_WATCHER', true),
+
+ Watchers\RequestWatcher::class => [
+ 'enabled' => env('TELESCOPE_REQUEST_WATCHER', true),
+ 'size_limit' => env('TELESCOPE_RESPONSE_SIZE_LIMIT', 64),
+ 'ignore_http_methods' => [],
+ 'ignore_status_codes' => [],
+ ],
+
+ Watchers\ScheduleWatcher::class => env('TELESCOPE_SCHEDULE_WATCHER', true),
+ Watchers\ViewWatcher::class => env('TELESCOPE_VIEW_WATCHER', true),
+ ],
+];
diff --git a/database/migrations/rinvex/laravel-subscriptions/2022_10_15_183646_create_plans_table.php b/database/migrations/rinvex/laravel-subscriptions/2022_10_15_183646_create_plans_table.php
new file mode 100644
index 00000000..a1077daa
--- /dev/null
+++ b/database/migrations/rinvex/laravel-subscriptions/2022_10_15_183646_create_plans_table.php
@@ -0,0 +1,56 @@
+increments('id');
+ $table->string('slug');
+ $table->json('name');
+ $table->string('type')->default(\App\Enums\PlanType::DEVELOPER);
+ $table->json('description')->nullable();
+ $table->boolean('is_active')->default(true);
+ $table->decimal('price')->default('0.00');
+ $table->decimal('signup_fee')->default('0.00');
+ $table->string('currency', 3);
+ $table->smallInteger('trial_period')->unsigned()->default(0);
+ $table->string('trial_interval')->default('day');
+ $table->smallInteger('invoice_period')->unsigned()->default(0);
+ $table->string('invoice_interval')->default('month');
+ $table->smallInteger('grace_period')->unsigned()->default(0);
+ $table->string('grace_interval')->default('day');
+ $table->tinyInteger('prorate_day')->unsigned()->nullable();
+ $table->tinyInteger('prorate_period')->unsigned()->nullable();
+ $table->tinyInteger('prorate_extend_due')->unsigned()->nullable();
+ $table->smallInteger('active_subscribers_limit')->unsigned()->nullable();
+ $table->mediumInteger('sort_order')->unsigned()->default(0);
+ $table->timestamps();
+ $table->softDeletes();
+
+ // Indexes
+ $table->unique('slug');
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down(): void
+ {
+ Schema::dropIfExists(config('rinvex.subscriptions.tables.plans'));
+ }
+}
diff --git a/database/migrations/rinvex/laravel-subscriptions/2022_10_15_183647_create_plan_features_table.php b/database/migrations/rinvex/laravel-subscriptions/2022_10_15_183647_create_plan_features_table.php
new file mode 100644
index 00000000..29e4cdca
--- /dev/null
+++ b/database/migrations/rinvex/laravel-subscriptions/2022_10_15_183647_create_plan_features_table.php
@@ -0,0 +1,47 @@
+increments('id');
+ $table->integer('plan_id')->unsigned();
+ $table->string('slug');
+ $table->json('name');
+ $table->json('description')->nullable();
+ $table->string('value');
+ $table->smallInteger('resettable_period')->unsigned()->default(0);
+ $table->string('resettable_interval')->default('month');
+ $table->mediumInteger('sort_order')->unsigned()->default(0);
+ $table->timestamps();
+ $table->softDeletes();
+
+ // Indexes
+ $table->unique(['plan_id', 'slug']);
+ $table->foreign('plan_id')->references('id')->on(config('rinvex.subscriptions.tables.plans'))
+ ->onDelete('cascade')->onUpdate('cascade');
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down(): void
+ {
+ Schema::dropIfExists(config('rinvex.subscriptions.tables.plan_features'));
+ }
+}
diff --git a/database/migrations/rinvex/laravel-subscriptions/2022_10_15_183648_create_plan_subscriptions_table.php b/database/migrations/rinvex/laravel-subscriptions/2022_10_15_183648_create_plan_subscriptions_table.php
new file mode 100644
index 00000000..fe97d61b
--- /dev/null
+++ b/database/migrations/rinvex/laravel-subscriptions/2022_10_15_183648_create_plan_subscriptions_table.php
@@ -0,0 +1,49 @@
+increments('id');
+ $table->morphs('subscriber');
+ $table->integer('plan_id')->unsigned();
+ $table->string('slug');
+ $table->json('name');
+ $table->json('description')->nullable();
+ $table->dateTime('trial_ends_at')->nullable();
+ $table->dateTime('starts_at')->nullable();
+ $table->dateTime('ends_at')->nullable();
+ $table->dateTime('cancels_at')->nullable();
+ $table->dateTime('canceled_at')->nullable();
+ $table->string('timezone')->nullable();
+ $table->timestamps();
+ $table->softDeletes();
+
+ // Indexes
+ $table->unique('slug');
+ $table->foreign('plan_id')->references('id')->on(config('rinvex.subscriptions.tables.plans'))
+ ->onDelete('cascade')->onUpdate('cascade');
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down(): void
+ {
+ Schema::dropIfExists(config('rinvex.subscriptions.tables.plan_subscriptions'));
+ }
+}
diff --git a/database/migrations/rinvex/laravel-subscriptions/2022_10_15_183649_create_plan_subscription_usage_table.php b/database/migrations/rinvex/laravel-subscriptions/2022_10_15_183649_create_plan_subscription_usage_table.php
new file mode 100644
index 00000000..833eacdc
--- /dev/null
+++ b/database/migrations/rinvex/laravel-subscriptions/2022_10_15_183649_create_plan_subscription_usage_table.php
@@ -0,0 +1,44 @@
+increments('id');
+ $table->integer('subscription_id')->unsigned();
+ $table->integer('feature_id')->unsigned();
+ $table->smallInteger('used')->unsigned();
+ $table->dateTime('valid_until')->nullable();
+ $table->string('timezone')->nullable();
+ $table->timestamps();
+ $table->softDeletes();
+
+ $table->unique(['subscription_id', 'feature_id']);
+ $table->foreign('subscription_id')->references('id')->on(config('rinvex.subscriptions.tables.plan_subscriptions'))
+ ->onDelete('cascade')->onUpdate('cascade');
+ $table->foreign('feature_id')->references('id')->on(config('rinvex.subscriptions.tables.plan_features'))
+ ->onDelete('cascade')->onUpdate('cascade');
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down(): void
+ {
+ Schema::dropIfExists(config('rinvex.subscriptions.tables.plan_subscription_usage'));
+ }
+}
diff --git a/database/seeders/DeveloperPremiumPlanSeeder.php b/database/seeders/DeveloperPremiumPlanSeeder.php
new file mode 100644
index 00000000..62b7a2c7
--- /dev/null
+++ b/database/seeders/DeveloperPremiumPlanSeeder.php
@@ -0,0 +1,65 @@
+ 'Le Rookie',
+ 'description' => 'Le Rookie plan',
+ 'type' => \App\Enums\PlanType::DEVELOPER,
+ 'price' => 2000,
+ 'signup_fee' => 0,
+ 'invoice_period' => 1,
+ 'invoice_interval' => 'month',
+ 'trial_period' => 0,
+ 'trial_interval' => 'day',
+ 'sort_order' => 1,
+ 'currency' => 'XAF',
+ ]);
+ $rookiePlan->features()->saveMany([
+ new Feature(['name' => 'Voir les vidéos premium', 'value' => 1, 'sort_order' => 1]),
+ new Feature(['name' => 'Écouter les Podcasts premium', 'value' => 1, 'sort_order' => 2]),
+ new Feature(['name' => 'Poster des tutoriels vidéo', 'value' => 1, 'sort_order' => 3]),
+ new Feature(['name' => 'Badge Premium sur le profil', 'value' => 1, 'sort_order' => 4]),
+ new Feature(['name' => 'Accès au code source des tutoriels', 'value' => 1, 'sort_order' => 5]),
+ new Feature(['name' => 'Invitation sur le Github du projet', 'value' => 1, 'sort_order' => 6]),
+ ]);
+
+ $proPlan = Plan::create([
+ 'name' => 'Le Pro',
+ 'description' => 'Le Pro plan',
+ 'type' => \App\Enums\PlanType::DEVELOPER,
+ 'price' => 5000,
+ 'signup_fee' => 0,
+ 'invoice_period' => 1,
+ 'invoice_interval' => 'month',
+ 'trial_period' => 0,
+ 'trial_interval' => 'day',
+ 'sort_order' => 1,
+ 'currency' => 'XAF',
+ ]);
+ $proPlan->features()->saveMany([
+ new Feature(['name' => 'Voir les vidéos premium', 'value' => 1, 'sort_order' => 1]),
+ new Feature(['name' => 'Écouter les Podcasts premium', 'value' => 1, 'sort_order' => 2]),
+ new Feature(['name' => 'Poster des tutoriels vidéo', 'value' => 1, 'sort_order' => 3]),
+ new Feature(['name' => 'Badge Premium sur le profil', 'value' => 1, 'sort_order' => 4]),
+ new Feature(['name' => 'Accès au code source des tutoriels', 'value' => 1, 'sort_order' => 5]),
+ new Feature(['name' => 'Invitation sur le Github du projet', 'value' => 1, 'sort_order' => 6]),
+ new Feature(['name' => 'Invitation channel privé sur Discord', 'value' => 1, 'sort_order' => 7]),
+ new Feature(['name' => 'E-Books Laravel, Design UI/UX, etc', 'value' => 1, 'sort_order' => 8]),
+ new Feature(['name' => '2 heures (2 séances) de consultation mensuelle gratuite', 'value' => 1, 'sort_order' => 9]),
+ ]);
+ }
+}
diff --git a/public/css/app.css b/public/css/app.css
index 1266125c..174b4f69 100755
--- a/public/css/app.css
+++ b/public/css/app.css
@@ -1,11 +1,10537 @@
-.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;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;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;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:-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;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,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.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;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,text-decoration-color,fill,stroke;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,text-decoration-color,fill,stroke;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;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]){text-decoration:underline;-webkit-text-decoration:underline dotted currentColor;text-decoration:underline dotted currentColor}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::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::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{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]{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]{--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;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: }::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%}.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(a strong):not(:where([class~=not-prose] *)){color:inherit}.prose :where(blockquote strong):not(:where([class~=not-prose] *)){color:inherit}.prose :where(thead th strong):not(:where([class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose] *)){list-style-type:decimal;margin-bottom:1.25em;margin-top:1.25em;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;margin-bottom:1.25em;margin-top:1.25em;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] *)){color:inherit;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] *)){color:inherit;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] *)){color:inherit;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] *)){color:inherit;font-weight:700}.prose :where(img):not(:where([class~=not-prose] *)){border-radius:.5rem;margin-bottom:2em;margin-top:2em}.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:inherit}.prose :where(h1 code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(blockquote code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(thead th code):not(:where([class~=not-prose] *)){color:inherit}.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] *)){vertical-align:baseline}.prose :where(tfoot):not(:where([class~=not-prose] *)){border-top-color:var(--tw-prose-th-borders);border-top-width:1px}.prose :where(tfoot td):not(:where([class~=not-prose] *)){vertical-align:top}.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(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(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(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>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,tfoot td):not(:where([class~=not-prose] *)){padding:.5714286em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(.prose>: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] *)){margin-bottom:1.1428571em;margin-top:1.1428571em;padding-left:1.5714286em}.prose-sm :where(ul):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em;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(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.prose-sm :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose>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,tfoot td):not(:where([class~=not-prose] *)){padding:.6666667em 1em}.prose-sm :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-sm :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-sm :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(.prose>: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] *)){margin-bottom:1.25em;margin-top:1.25em;padding-left:1.625em}.prose-base :where(ul):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em;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(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose-base :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base :where(.prose>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,tfoot td):not(:where([class~=not-prose] *)){padding:.5714286em}.prose-base :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-base :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-base :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(.prose>: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] *)){margin-bottom:1.3333333em;margin-top:1.3333333em;padding-left:1.5555556em}.prose-lg :where(ul):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em;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(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.prose-lg :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg :where(.prose>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,tfoot td):not(:where([class~=not-prose] *)){padding:.75em}.prose-lg :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-lg :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-lg :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-xl :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.prose-xl :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.prose-xl :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.prose-xl :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.prose-xl :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.prose-xl :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-xl :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-2xl :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8333333em;margin-top:.8333333em}.prose-2xl :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-2xl :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-2xl :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-2xl :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-2xl :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-2xl :where(.prose>: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: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}.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}.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}.mr-4{margin-right:1rem}.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}.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-60{width:15rem}.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-11{width:2.75rem}.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}.flex-none{flex:none}.flex-1{flex:1 1 0%}.flex-shrink-0,.shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.origin-top-right{transform-origin:top right}.origin-top{transform-origin:top}.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-95{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-95{--tw-scale-x:.95;--tw-scale-y:.95}.scale-100{--tw-scale-x:1;--tw-scale-y:1}.scale-100,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.cursor-pointer{cursor:pointer}.cursor-text{cursor:text}.cursor-default{cursor:default}.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))}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-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-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}.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-gray-200>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgba(229,231,235,var(--tw-divide-opacity))}.self-start{align-self:flex-start}.self-center{align-self:center}.overflow-hidden{overflow:hidden}.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}.scroll-smooth{scroll-behavior:smooth}.truncate{overflow:hidden;text-overflow:ellipsis}.truncate,.whitespace-nowrap{white-space:nowrap}.whitespace-pre-wrap{white-space:pre-wrap}.break-words{word-wrap:break-word}.rounded-lg{border-radius:.5rem}.rounded-full{border-radius:9999px}.rounded-md{border-radius:.375rem}.rounded{border-radius:.25rem}.rounded-sm{border-radius:.125rem}.rounded-none{border-radius:0}.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-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-base{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.border-transparent{border-color:transparent}.border-skin-input{--tw-border-opacity:1;border-color:rgba(var(--color-input-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))}.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-black{--tw-bg-opacity:1;background-color:rgba(22,27,34,var(--tw-bg-opacity))}.bg-green-600{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-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-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-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-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-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-red-500{--tw-bg-opacity:1;background-color:rgba(239,68,68,var(--tw-bg-opacity))}.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-green-500{--tw-bg-opacity:1;background-color:rgba(16,185,129,var(--tw-bg-opacity))}.bg-red-100{--tw-bg-opacity:1;background-color:rgba(254,226,226,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-blue-500{--tw-bg-opacity:1;background-color:rgba(59,130,246,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-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-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-500{--tw-bg-opacity:1;background-color:rgba(107,114,128,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-opacity-10{--tw-bg-opacity:0.1}.bg-opacity-50{--tw-bg-opacity:0.5}.bg-opacity-20{--tw-bg-opacity:0.2}.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(79,70,229,0);--tw-gradient-stops:var(--tw-gradient-from),#4f46e5,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}.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}.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}.px-3\.5{padding-left:.875rem;padding-right:.875rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-1\.5{padding-bottom:.375rem;padding-top:.375rem}.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}.py-3\.5{padding-bottom:.875rem;padding-top:.875rem}.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-16{padding-left:4rem}.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}.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-white{--tw-text-opacity:1;color:rgba(255,255,255,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-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-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-red-900{--tw-text-opacity:1;color:rgba(127,29,29,var(--tw-text-opacity))}.text-primary-600{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.text-primary-500{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.underline{text-decoration-line:underline}.\!no-underline{text-decoration-line:none!important}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.placeholder-red-300::-moz-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-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::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-gray-500::-moz-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))}.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}.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,.shadow-lg{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{--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-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.shadow-sm,.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-1,.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-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-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-2,.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-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-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-body{--tw-ring-color:rgb(var(--color-body-fill))}.ring-black{--tw-ring-opacity:1;--tw-ring-color:rgba(22,27,34,var(--tw-ring-opacity))}.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-green-500{--tw-ring-opacity:1;--tw-ring-color:rgba(16,185,129,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-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,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-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,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.delay-200{transition-delay:.2s}.duration-500{transition-duration:.5s}.duration-100{transition-duration:.1s}.duration-75{transition-duration:75ms}.duration-150{transition-duration:.15s}.duration-300{transition-duration:.3s}.duration-200{transition-duration:.2s}.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}.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}.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\:bg-green-700:hover{--tw-bg-opacity:1;background-color:rgba(4,120,87,var(--tw-bg-opacity))}.hover\:bg-skin-button-hover:hover,.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-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-green-600:hover{--tw-bg-opacity:1;background-color:rgba(5,150,105,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\:\!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-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-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-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-primary-500:hover{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.hover\:underline:hover{text-decoration-line:underline}.hover\:opacity-50:hover{opacity:.5}.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-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-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-transparent:focus{border-color:transparent}.focus\:border-blue-300:focus{--tw-border-opacity:1;border-color:rgba(147,197,253,var(--tw-border-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\:underline:focus{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::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-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-opacity-50:focus{--tw-ring-opacity:0.5}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.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))}.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-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\: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\:underline{text-decoration-line:underline}.group:hover .group-hover\:opacity-75{opacity:.75}.dark .dark\:border-gray-700{--tw-border-opacity:1;border-color:rgba(55,65,81,var(--tw-border-opacity))}@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] *)){margin-bottom:1.25em;margin-top:1.25em;padding-left:1.625em}.sm\:prose-base :where(ul):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em;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(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.sm\:prose-base :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.sm\:prose-base :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.sm\:prose-base :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.sm\:prose-base :where(.prose>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,tfoot td):not(:where([class~=not-prose] *)){padding:.5714286em}.sm\:prose-base :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.sm\:prose-base :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.sm\:prose-base :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.sm\:prose-base :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.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\: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\: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\: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\: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\: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-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.sm\:gap-y-12{row-gap:3rem}.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\: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\: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\: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\:pl-14{padding-left:3.5rem}.sm\:pt-4{padding-top:1rem}.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-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-sm{font-size:.875rem;line-height:1.25rem}.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\:duration-700{transition-duration:.7s}}@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] *)){margin-bottom:1.1428571em;margin-top:1.1428571em;padding-left:1.5714286em}.md\:prose-sm :where(ul):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em;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(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.md\:prose-sm :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.md\:prose-sm :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.md\:prose-sm :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.md\:prose-sm :where(.prose>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,tfoot td):not(:where([class~=not-prose] *)){padding:.6666667em 1em}.md\:prose-sm :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-sm :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-sm :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-sm :where(.prose>: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] *)){margin-bottom:1.3333333em;margin-top:1.3333333em;padding-left:1.5555556em}.md\:prose-lg :where(ul):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em;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(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.md\:prose-lg :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.md\:prose-lg :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.md\:prose-lg :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.md\:prose-lg :where(.prose>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,tfoot td):not(:where([class~=not-prose] *)){padding:.75em}.md\:prose-lg :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-lg :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-lg :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-lg :where(.prose>: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] *)){margin-bottom:1.2em;margin-top:1.2em;padding-left:1.6em}.md\:prose-xl :where(ul):not(:where([class~=not-prose] *)){margin-bottom:1.2em;margin-top:1.2em;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(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.md\:prose-xl :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.md\:prose-xl :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.md\:prose-xl :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.md\:prose-xl :where(.prose>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,tfoot td):not(:where([class~=not-prose] *)){padding:.8888889em .6666667em}.md\:prose-xl :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-xl :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-xl :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-xl :where(.prose>: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\: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] *)){margin-bottom:1.3333333em;margin-top:1.3333333em;padding-left:1.5555556em}.lg\:prose-lg :where(ul):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em;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(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.lg\:prose-lg :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.lg\:prose-lg :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.lg\:prose-lg :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.lg\:prose-lg :where(.prose>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,tfoot td):not(:where([class~=not-prose] *)){padding:.75em}.lg\:prose-lg :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.lg\:prose-lg :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.lg\:prose-lg :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-lg :where(.prose>: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] *)){margin-bottom:1.2em;margin-top:1.2em;padding-left:1.6em}.lg\:prose-xl :where(ul):not(:where([class~=not-prose] *)){margin-bottom:1.2em;margin-top:1.2em;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(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.lg\:prose-xl :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.lg\:prose-xl :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.lg\:prose-xl :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.lg\:prose-xl :where(.prose>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,tfoot td):not(:where([class~=not-prose] *)){padding:.8888889em .6666667em}.lg\:prose-xl :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.lg\:prose-xl :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.lg\:prose-xl :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-xl :where(.prose>: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}}
+/*
+
+Atom One Dark by Daniel Gamage
+Original One Dark Syntax theme from https://github.com/atom/one-dark-syntax
+
+base: #282c34
+mono-1: #abb2bf
+mono-2: #818896
+mono-3: #5c6370
+hue-1: #56b6c2
+hue-2: #61aeee
+hue-3: #c678dd
+hue-4: #98c379
+hue-5: #e06c75
+hue-5-2: #be5046
+hue-6: #d19a66
+hue-6-2: #e6c07b
+
+*/
+
+.hljs {
+ display: block;
+ overflow-x: auto;
+ padding: 0.5em;
+ color: #abb2bf;
+ background: #282c34;
+}
+
+.hljs-comment,
+.hljs-quote {
+ color: #5c6370;
+ font-style: italic;
+}
+
+.hljs-doctag,
+.hljs-keyword,
+.hljs-formula {
+ color: #c678dd;
+}
+
+.hljs-section,
+.hljs-name,
+.hljs-selector-tag,
+.hljs-deletion,
+.hljs-subst {
+ color: #e06c75;
+}
+
+.hljs-literal {
+ color: #56b6c2;
+}
+
+.hljs-string,
+.hljs-regexp,
+.hljs-addition,
+.hljs-attribute,
+.hljs-meta-string {
+ color: #98c379;
+}
+
+.hljs-built_in,
+.hljs-class .hljs-title {
+ color: #e6c07b;
+}
+
+.hljs-attr,
+.hljs-variable,
+.hljs-template-variable,
+.hljs-type,
+.hljs-selector-class,
+.hljs-selector-attr,
+.hljs-selector-pseudo,
+.hljs-number {
+ color: #d19a66;
+}
+
+.hljs-symbol,
+.hljs-bullet,
+.hljs-link,
+.hljs-meta,
+.hljs-selector-id,
+.hljs-title {
+ color: #61aeee;
+}
+
+.hljs-emphasis {
+ font-style: italic;
+}
+
+.hljs-strong {
+ font-weight: bold;
+}
+
+.hljs-link {
+ text-decoration: underline;
+}
+
+/*===============================
+= Choices =
+===============================*/
+.choices {
+ position: relative;
+ margin-bottom: 24px;
+ font-size: 16px;
+}
+
+.choices:focus {
+ outline: none;
+}
+
+.choices:last-child {
+ margin-bottom: 0;
+}
+
+.choices.is-disabled .choices__inner,
+.choices.is-disabled .choices__input {
+ background-color: #eaeaea;
+ cursor: not-allowed;
+ -webkit-user-select: none;
+ -ms-user-select: none;
+ -moz-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 {
+ display: block;
+ width: 100%;
+ padding: 10px;
+ border-bottom: 1px solid #dddddd;
+ background-color: #ffffff;
+ margin: 0;
+}
+
+.choices[data-type*='select-one'] .choices__button {
+ background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
+ padding: 0;
+ background-size: 8px;
+ position: absolute;
+ top: 50%;
+ right: 0;
+ margin-top: -10px;
+ margin-right: 25px;
+ height: 20px;
+ width: 20px;
+ border-radius: 10em;
+ opacity: 0.5;
+}
+
+.choices[data-type*='select-one'] .choices__button:hover, .choices[data-type*='select-one'] .choices__button:focus {
+ opacity: 1;
+}
+
+.choices[data-type*='select-one'] .choices__button:focus {
+ box-shadow: 0px 0px 0px 2px #00bcd4;
+}
+
+.choices[data-type*='select-one'] .choices__item[data-value=''] .choices__button {
+ display: none;
+}
+
+.choices[data-type*='select-one']:after {
+ content: '';
+ height: 0;
+ width: 0;
+ border-style: solid;
+ border-color: #333333 transparent transparent transparent;
+ border-width: 5px;
+ position: absolute;
+ right: 11.5px;
+ top: 50%;
+ margin-top: -2.5px;
+ pointer-events: none;
+}
+
+.choices[data-type*='select-one'].is-open:after {
+ border-color: transparent transparent #333333 transparent;
+ 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 {
+ right: auto;
+ left: 0;
+ margin-left: 25px;
+ margin-right: 0;
+}
+
+.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 {
+ position: relative;
+ display: inline-block;
+ margin-top: 0;
+ margin-right: -4px;
+ margin-bottom: 0;
+ margin-left: 8px;
+ padding-left: 16px;
+ border-left: 1px solid #008fa1;
+ background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
+ background-size: 8px;
+ width: 8px;
+ line-height: 1;
+ opacity: 0.75;
+ border-radius: 0;
+}
+
+.choices[data-type*='select-multiple'] .choices__button:hover, .choices[data-type*='select-multiple'] .choices__button:focus,
+.choices[data-type*='text'] .choices__button:hover,
+.choices[data-type*='text'] .choices__button:focus {
+ opacity: 1;
+}
+
+.choices__inner {
+ display: inline-block;
+ vertical-align: top;
+ width: 100%;
+ background-color: #f9f9f9;
+ padding: 7.5px 7.5px 3.75px;
+ border: 1px solid #dddddd;
+ border-radius: 2.5px;
+ font-size: 14px;
+ min-height: 44px;
+ overflow: hidden;
+}
+
+.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 {
+ margin: 0;
+ padding-left: 0;
+ list-style: none;
+}
+
+.choices__list--single {
+ display: inline-block;
+ padding: 4px 16px 4px 4px;
+ width: 100%;
+}
+
+[dir='rtl'] .choices__list--single {
+ padding-right: 4px;
+ padding-left: 16px;
+}
+
+.choices__list--single .choices__item {
+ width: 100%;
+}
+
+.choices__list--multiple {
+ display: inline;
+}
+
+.choices__list--multiple .choices__item {
+ display: inline-block;
+ vertical-align: middle;
+ border-radius: 20px;
+ padding: 4px 10px;
+ font-size: 12px;
+ font-weight: 500;
+ margin-right: 3.75px;
+ margin-bottom: 3.75px;
+ background-color: #00bcd4;
+ border: 1px solid #00a5bb;
+ color: #ffffff;
+ word-break: break-all;
+ box-sizing: border-box;
+}
+
+.choices__list--multiple .choices__item[data-deletable] {
+ padding-right: 5px;
+}
+
+[dir='rtl'] .choices__list--multiple .choices__item {
+ margin-right: 0;
+ margin-left: 3.75px;
+}
+
+.choices__list--multiple .choices__item.is-highlighted {
+ background-color: #00a5bb;
+ border: 1px solid #008fa1;
+}
+
+.is-disabled .choices__list--multiple .choices__item {
+ background-color: #aaaaaa;
+ border: 1px solid #919191;
+}
+
+.choices__list--dropdown {
+ visibility: hidden;
+ z-index: 1;
+ position: absolute;
+ width: 100%;
+ background-color: #ffffff;
+ border: 1px solid #dddddd;
+ top: 100%;
+ margin-top: -1px;
+ border-bottom-left-radius: 2.5px;
+ border-bottom-right-radius: 2.5px;
+ overflow: hidden;
+ word-break: break-all;
+ will-change: visibility;
+}
+
+.choices__list--dropdown.is-active {
+ visibility: visible;
+}
+
+.is-open .choices__list--dropdown {
+ border-color: #b7b7b7;
+}
+
+.is-flipped .choices__list--dropdown {
+ top: auto;
+ bottom: 100%;
+ margin-top: 0;
+ margin-bottom: -1px;
+ border-radius: 0.25rem 0.25rem 0 0;
+}
+
+.choices__list--dropdown .choices__list {
+ position: relative;
+ max-height: 300px;
+ overflow: auto;
+ -webkit-overflow-scrolling: touch;
+ will-change: scroll-position;
+}
+
+.choices__list--dropdown .choices__item {
+ position: relative;
+ padding: 10px;
+ font-size: 14px;
+}
+
+[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 {
+ text-align: right;
+ padding-left: 100px;
+ padding-right: 10px;
+ }
+ [dir='rtl'] .choices__list--dropdown .choices__item--selectable:after {
+ right: auto;
+ left: 10px;
+ }
+}
+
+.choices__list--dropdown .choices__item--selectable.is-highlighted {
+ background-color: #f2f2f2;
+}
+
+.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
+ opacity: 0.5;
+}
+
+.choices__item {
+ cursor: default;
+}
+
+.choices__item--selectable {
+ cursor: pointer;
+}
+
+.choices__item--disabled {
+ cursor: not-allowed;
+ -webkit-user-select: none;
+ -ms-user-select: none;
+ -moz-user-select: none;
+ user-select: none;
+ opacity: 0.5;
+}
+
+.choices__heading {
+ font-weight: 600;
+ font-size: 12px;
+ padding: 10px;
+ border-bottom: 1px solid #f7f7f7;
+ color: gray;
+}
+
+.choices__button {
+ text-indent: -9999px;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ border: 0;
+ background-color: transparent;
+ background-repeat: no-repeat;
+ background-position: center;
+ cursor: pointer;
+}
+
+.choices__button:focus {
+ outline: none;
+}
+
+.choices__input {
+ display: inline-block;
+ vertical-align: baseline;
+ background-color: #f9f9f9;
+ font-size: 14px;
+ margin-bottom: 5px;
+ border: 0;
+ border-radius: 0;
+ max-width: 100%;
+ padding: 4px 0 4px 2px;
+}
+
+.choices__input:focus {
+ outline: 0;
+}
+
+[dir='rtl'] .choices__input {
+ padding-right: 2px;
+ padding-left: 0;
+}
+
+.choices__placeholder {
+ opacity: 0.5;
+}
+
+/*===== End of Choices ======*/
+
+.iti {
+ position: relative;
+ display: inline-block; }
+ .iti * {
+ box-sizing: border-box;
+ -moz-box-sizing: border-box; }
+ .iti__hide {
+ display: none; }
+ .iti__v-hide {
+ visibility: hidden; }
+ .iti input, .iti input[type=text], .iti input[type=tel] {
+ position: relative;
+ z-index: 0;
+ margin-top: 0 !important;
+ margin-bottom: 0 !important;
+ padding-right: 36px;
+ margin-right: 0; }
+ .iti__flag-container {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ right: 0;
+ padding: 1px; }
+ .iti__selected-flag {
+ z-index: 1;
+ position: relative;
+ display: flex;
+ align-items: center;
+ height: 100%;
+ padding: 0 6px 0 8px; }
+ .iti__arrow {
+ margin-left: 6px;
+ width: 0;
+ height: 0;
+ border-left: 3px solid transparent;
+ border-right: 3px solid transparent;
+ border-top: 4px solid #555; }
+ .iti__arrow--up {
+ border-top: none;
+ border-bottom: 4px solid #555; }
+ .iti__country-list {
+ position: absolute;
+ z-index: 2;
+ list-style: none;
+ text-align: left;
+ padding: 0;
+ margin: 0 0 0 -1px;
+ box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
+ background-color: white;
+ border: 1px solid #CCC;
+ white-space: nowrap;
+ max-height: 200px;
+ overflow-y: scroll;
+ -webkit-overflow-scrolling: touch; }
+ .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 {
+ padding-bottom: 5px;
+ margin-bottom: 5px;
+ border-bottom: 1px solid #CCC; }
+ .iti__country {
+ padding: 5px 10px;
+ outline: none; }
+ .iti__dial-code {
+ color: #999; }
+ .iti__country.iti__highlight {
+ background-color: rgba(0, 0, 0, 0.05); }
+ .iti__flag-box, .iti__country-name, .iti__dial-code {
+ vertical-align: middle; }
+ .iti__flag-box, .iti__country-name {
+ margin-right: 6px; }
+ .iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
+ padding-right: 6px;
+ padding-left: 52px;
+ margin-left: 0; }
+ .iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
+ right: auto;
+ left: 0; }
+ .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, 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, 0.05); }
+ .iti--separate-dial-code .iti__selected-dial-code {
+ margin-left: 6px; }
+ .iti--container {
+ position: absolute;
+ top: -1000px;
+ left: -1000px;
+ z-index: 1060;
+ padding: 1px; }
+ .iti--container:hover {
+ cursor: pointer; }
+
+.iti-mobile .iti--container {
+ top: 30px;
+ bottom: 30px;
+ left: 30px;
+ right: 30px;
+ position: fixed; }
+
+.iti-mobile .iti__country-list {
+ max-height: 100%;
+ width: 100%; }
+
+.iti-mobile .iti__country {
+ padding: 10px 10px;
+ line-height: 1.5em; }
+
+.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 {
+ height: 10px;
+ background-position: 0px 0px; }
+ .iti__flag.iti__ad {
+ height: 14px;
+ background-position: -22px 0px; }
+ .iti__flag.iti__ae {
+ height: 10px;
+ background-position: -44px 0px; }
+ .iti__flag.iti__af {
+ height: 14px;
+ background-position: -66px 0px; }
+ .iti__flag.iti__ag {
+ height: 14px;
+ background-position: -88px 0px; }
+ .iti__flag.iti__ai {
+ height: 10px;
+ background-position: -110px 0px; }
+ .iti__flag.iti__al {
+ height: 15px;
+ background-position: -132px 0px; }
+ .iti__flag.iti__am {
+ height: 10px;
+ background-position: -154px 0px; }
+ .iti__flag.iti__ao {
+ height: 14px;
+ background-position: -176px 0px; }
+ .iti__flag.iti__aq {
+ height: 14px;
+ background-position: -198px 0px; }
+ .iti__flag.iti__ar {
+ height: 13px;
+ background-position: -220px 0px; }
+ .iti__flag.iti__as {
+ height: 10px;
+ background-position: -242px 0px; }
+ .iti__flag.iti__at {
+ height: 14px;
+ background-position: -264px 0px; }
+ .iti__flag.iti__au {
+ height: 10px;
+ background-position: -286px 0px; }
+ .iti__flag.iti__aw {
+ height: 14px;
+ background-position: -308px 0px; }
+ .iti__flag.iti__ax {
+ height: 13px;
+ background-position: -330px 0px; }
+ .iti__flag.iti__az {
+ height: 10px;
+ background-position: -352px 0px; }
+ .iti__flag.iti__ba {
+ height: 10px;
+ background-position: -374px 0px; }
+ .iti__flag.iti__bb {
+ height: 14px;
+ background-position: -396px 0px; }
+ .iti__flag.iti__bd {
+ height: 12px;
+ background-position: -418px 0px; }
+ .iti__flag.iti__be {
+ height: 15px;
+ background-position: -440px 0px; }
+ .iti__flag.iti__bf {
+ height: 14px;
+ background-position: -460px 0px; }
+ .iti__flag.iti__bg {
+ height: 12px;
+ background-position: -482px 0px; }
+ .iti__flag.iti__bh {
+ height: 12px;
+ background-position: -504px 0px; }
+ .iti__flag.iti__bi {
+ height: 12px;
+ background-position: -526px 0px; }
+ .iti__flag.iti__bj {
+ height: 14px;
+ background-position: -548px 0px; }
+ .iti__flag.iti__bl {
+ height: 14px;
+ background-position: -570px 0px; }
+ .iti__flag.iti__bm {
+ height: 10px;
+ background-position: -592px 0px; }
+ .iti__flag.iti__bn {
+ height: 10px;
+ background-position: -614px 0px; }
+ .iti__flag.iti__bo {
+ height: 14px;
+ background-position: -636px 0px; }
+ .iti__flag.iti__bq {
+ height: 14px;
+ background-position: -658px 0px; }
+ .iti__flag.iti__br {
+ height: 14px;
+ background-position: -680px 0px; }
+ .iti__flag.iti__bs {
+ height: 10px;
+ background-position: -702px 0px; }
+ .iti__flag.iti__bt {
+ height: 14px;
+ background-position: -724px 0px; }
+ .iti__flag.iti__bv {
+ height: 15px;
+ background-position: -746px 0px; }
+ .iti__flag.iti__bw {
+ height: 14px;
+ background-position: -768px 0px; }
+ .iti__flag.iti__by {
+ height: 10px;
+ background-position: -790px 0px; }
+ .iti__flag.iti__bz {
+ height: 14px;
+ background-position: -812px 0px; }
+ .iti__flag.iti__ca {
+ height: 10px;
+ background-position: -834px 0px; }
+ .iti__flag.iti__cc {
+ height: 10px;
+ background-position: -856px 0px; }
+ .iti__flag.iti__cd {
+ height: 15px;
+ background-position: -878px 0px; }
+ .iti__flag.iti__cf {
+ height: 14px;
+ background-position: -900px 0px; }
+ .iti__flag.iti__cg {
+ height: 14px;
+ background-position: -922px 0px; }
+ .iti__flag.iti__ch {
+ height: 15px;
+ background-position: -944px 0px; }
+ .iti__flag.iti__ci {
+ height: 14px;
+ background-position: -961px 0px; }
+ .iti__flag.iti__ck {
+ height: 10px;
+ background-position: -983px 0px; }
+ .iti__flag.iti__cl {
+ height: 14px;
+ background-position: -1005px 0px; }
+ .iti__flag.iti__cm {
+ height: 14px;
+ background-position: -1027px 0px; }
+ .iti__flag.iti__cn {
+ height: 14px;
+ background-position: -1049px 0px; }
+ .iti__flag.iti__co {
+ height: 14px;
+ background-position: -1071px 0px; }
+ .iti__flag.iti__cp {
+ height: 14px;
+ background-position: -1093px 0px; }
+ .iti__flag.iti__cr {
+ height: 12px;
+ background-position: -1115px 0px; }
+ .iti__flag.iti__cu {
+ height: 10px;
+ background-position: -1137px 0px; }
+ .iti__flag.iti__cv {
+ height: 12px;
+ background-position: -1159px 0px; }
+ .iti__flag.iti__cw {
+ height: 14px;
+ background-position: -1181px 0px; }
+ .iti__flag.iti__cx {
+ height: 10px;
+ background-position: -1203px 0px; }
+ .iti__flag.iti__cy {
+ height: 14px;
+ background-position: -1225px 0px; }
+ .iti__flag.iti__cz {
+ height: 14px;
+ background-position: -1247px 0px; }
+ .iti__flag.iti__de {
+ height: 12px;
+ background-position: -1269px 0px; }
+ .iti__flag.iti__dg {
+ height: 10px;
+ background-position: -1291px 0px; }
+ .iti__flag.iti__dj {
+ height: 14px;
+ background-position: -1313px 0px; }
+ .iti__flag.iti__dk {
+ height: 15px;
+ background-position: -1335px 0px; }
+ .iti__flag.iti__dm {
+ height: 10px;
+ background-position: -1357px 0px; }
+ .iti__flag.iti__do {
+ height: 14px;
+ background-position: -1379px 0px; }
+ .iti__flag.iti__dz {
+ height: 14px;
+ background-position: -1401px 0px; }
+ .iti__flag.iti__ea {
+ height: 14px;
+ background-position: -1423px 0px; }
+ .iti__flag.iti__ec {
+ height: 14px;
+ background-position: -1445px 0px; }
+ .iti__flag.iti__ee {
+ height: 13px;
+ background-position: -1467px 0px; }
+ .iti__flag.iti__eg {
+ height: 14px;
+ background-position: -1489px 0px; }
+ .iti__flag.iti__eh {
+ height: 10px;
+ background-position: -1511px 0px; }
+ .iti__flag.iti__er {
+ height: 10px;
+ background-position: -1533px 0px; }
+ .iti__flag.iti__es {
+ height: 14px;
+ background-position: -1555px 0px; }
+ .iti__flag.iti__et {
+ height: 10px;
+ background-position: -1577px 0px; }
+ .iti__flag.iti__eu {
+ height: 14px;
+ background-position: -1599px 0px; }
+ .iti__flag.iti__fi {
+ height: 12px;
+ background-position: -1621px 0px; }
+ .iti__flag.iti__fj {
+ height: 10px;
+ background-position: -1643px 0px; }
+ .iti__flag.iti__fk {
+ height: 10px;
+ background-position: -1665px 0px; }
+ .iti__flag.iti__fm {
+ height: 11px;
+ background-position: -1687px 0px; }
+ .iti__flag.iti__fo {
+ height: 15px;
+ background-position: -1709px 0px; }
+ .iti__flag.iti__fr {
+ height: 14px;
+ background-position: -1731px 0px; }
+ .iti__flag.iti__ga {
+ height: 15px;
+ background-position: -1753px 0px; }
+ .iti__flag.iti__gb {
+ height: 10px;
+ background-position: -1775px 0px; }
+ .iti__flag.iti__gd {
+ height: 12px;
+ background-position: -1797px 0px; }
+ .iti__flag.iti__ge {
+ height: 14px;
+ background-position: -1819px 0px; }
+ .iti__flag.iti__gf {
+ height: 14px;
+ background-position: -1841px 0px; }
+ .iti__flag.iti__gg {
+ height: 14px;
+ background-position: -1863px 0px; }
+ .iti__flag.iti__gh {
+ height: 14px;
+ background-position: -1885px 0px; }
+ .iti__flag.iti__gi {
+ height: 10px;
+ background-position: -1907px 0px; }
+ .iti__flag.iti__gl {
+ height: 14px;
+ background-position: -1929px 0px; }
+ .iti__flag.iti__gm {
+ height: 14px;
+ background-position: -1951px 0px; }
+ .iti__flag.iti__gn {
+ height: 14px;
+ background-position: -1973px 0px; }
+ .iti__flag.iti__gp {
+ height: 14px;
+ background-position: -1995px 0px; }
+ .iti__flag.iti__gq {
+ height: 14px;
+ background-position: -2017px 0px; }
+ .iti__flag.iti__gr {
+ height: 14px;
+ background-position: -2039px 0px; }
+ .iti__flag.iti__gs {
+ height: 10px;
+ background-position: -2061px 0px; }
+ .iti__flag.iti__gt {
+ height: 13px;
+ background-position: -2083px 0px; }
+ .iti__flag.iti__gu {
+ height: 11px;
+ background-position: -2105px 0px; }
+ .iti__flag.iti__gw {
+ height: 10px;
+ background-position: -2127px 0px; }
+ .iti__flag.iti__gy {
+ height: 12px;
+ background-position: -2149px 0px; }
+ .iti__flag.iti__hk {
+ height: 14px;
+ background-position: -2171px 0px; }
+ .iti__flag.iti__hm {
+ height: 10px;
+ background-position: -2193px 0px; }
+ .iti__flag.iti__hn {
+ height: 10px;
+ background-position: -2215px 0px; }
+ .iti__flag.iti__hr {
+ height: 10px;
+ background-position: -2237px 0px; }
+ .iti__flag.iti__ht {
+ height: 12px;
+ background-position: -2259px 0px; }
+ .iti__flag.iti__hu {
+ height: 10px;
+ background-position: -2281px 0px; }
+ .iti__flag.iti__ic {
+ height: 14px;
+ background-position: -2303px 0px; }
+ .iti__flag.iti__id {
+ height: 14px;
+ background-position: -2325px 0px; }
+ .iti__flag.iti__ie {
+ height: 10px;
+ background-position: -2347px 0px; }
+ .iti__flag.iti__il {
+ height: 15px;
+ background-position: -2369px 0px; }
+ .iti__flag.iti__im {
+ height: 10px;
+ background-position: -2391px 0px; }
+ .iti__flag.iti__in {
+ height: 14px;
+ background-position: -2413px 0px; }
+ .iti__flag.iti__io {
+ height: 10px;
+ background-position: -2435px 0px; }
+ .iti__flag.iti__iq {
+ height: 14px;
+ background-position: -2457px 0px; }
+ .iti__flag.iti__ir {
+ height: 12px;
+ background-position: -2479px 0px; }
+ .iti__flag.iti__is {
+ height: 15px;
+ background-position: -2501px 0px; }
+ .iti__flag.iti__it {
+ height: 14px;
+ background-position: -2523px 0px; }
+ .iti__flag.iti__je {
+ height: 12px;
+ background-position: -2545px 0px; }
+ .iti__flag.iti__jm {
+ height: 10px;
+ background-position: -2567px 0px; }
+ .iti__flag.iti__jo {
+ height: 10px;
+ background-position: -2589px 0px; }
+ .iti__flag.iti__jp {
+ height: 14px;
+ background-position: -2611px 0px; }
+ .iti__flag.iti__ke {
+ height: 14px;
+ background-position: -2633px 0px; }
+ .iti__flag.iti__kg {
+ height: 12px;
+ background-position: -2655px 0px; }
+ .iti__flag.iti__kh {
+ height: 13px;
+ background-position: -2677px 0px; }
+ .iti__flag.iti__ki {
+ height: 10px;
+ background-position: -2699px 0px; }
+ .iti__flag.iti__km {
+ height: 12px;
+ background-position: -2721px 0px; }
+ .iti__flag.iti__kn {
+ height: 14px;
+ background-position: -2743px 0px; }
+ .iti__flag.iti__kp {
+ height: 10px;
+ background-position: -2765px 0px; }
+ .iti__flag.iti__kr {
+ height: 14px;
+ background-position: -2787px 0px; }
+ .iti__flag.iti__kw {
+ height: 10px;
+ background-position: -2809px 0px; }
+ .iti__flag.iti__ky {
+ height: 10px;
+ background-position: -2831px 0px; }
+ .iti__flag.iti__kz {
+ height: 10px;
+ background-position: -2853px 0px; }
+ .iti__flag.iti__la {
+ height: 14px;
+ background-position: -2875px 0px; }
+ .iti__flag.iti__lb {
+ height: 14px;
+ background-position: -2897px 0px; }
+ .iti__flag.iti__lc {
+ height: 10px;
+ background-position: -2919px 0px; }
+ .iti__flag.iti__li {
+ height: 12px;
+ background-position: -2941px 0px; }
+ .iti__flag.iti__lk {
+ height: 10px;
+ background-position: -2963px 0px; }
+ .iti__flag.iti__lr {
+ height: 11px;
+ background-position: -2985px 0px; }
+ .iti__flag.iti__ls {
+ height: 14px;
+ background-position: -3007px 0px; }
+ .iti__flag.iti__lt {
+ height: 12px;
+ background-position: -3029px 0px; }
+ .iti__flag.iti__lu {
+ height: 12px;
+ background-position: -3051px 0px; }
+ .iti__flag.iti__lv {
+ height: 10px;
+ background-position: -3073px 0px; }
+ .iti__flag.iti__ly {
+ height: 10px;
+ background-position: -3095px 0px; }
+ .iti__flag.iti__ma {
+ height: 14px;
+ background-position: -3117px 0px; }
+ .iti__flag.iti__mc {
+ height: 15px;
+ background-position: -3139px 0px; }
+ .iti__flag.iti__md {
+ height: 10px;
+ background-position: -3160px 0px; }
+ .iti__flag.iti__me {
+ height: 10px;
+ background-position: -3182px 0px; }
+ .iti__flag.iti__mf {
+ height: 14px;
+ background-position: -3204px 0px; }
+ .iti__flag.iti__mg {
+ height: 14px;
+ background-position: -3226px 0px; }
+ .iti__flag.iti__mh {
+ height: 11px;
+ background-position: -3248px 0px; }
+ .iti__flag.iti__mk {
+ height: 10px;
+ background-position: -3270px 0px; }
+ .iti__flag.iti__ml {
+ height: 14px;
+ background-position: -3292px 0px; }
+ .iti__flag.iti__mm {
+ height: 14px;
+ background-position: -3314px 0px; }
+ .iti__flag.iti__mn {
+ height: 10px;
+ background-position: -3336px 0px; }
+ .iti__flag.iti__mo {
+ height: 14px;
+ background-position: -3358px 0px; }
+ .iti__flag.iti__mp {
+ height: 10px;
+ background-position: -3380px 0px; }
+ .iti__flag.iti__mq {
+ height: 14px;
+ background-position: -3402px 0px; }
+ .iti__flag.iti__mr {
+ height: 14px;
+ background-position: -3424px 0px; }
+ .iti__flag.iti__ms {
+ height: 10px;
+ background-position: -3446px 0px; }
+ .iti__flag.iti__mt {
+ height: 14px;
+ background-position: -3468px 0px; }
+ .iti__flag.iti__mu {
+ height: 14px;
+ background-position: -3490px 0px; }
+ .iti__flag.iti__mv {
+ height: 14px;
+ background-position: -3512px 0px; }
+ .iti__flag.iti__mw {
+ height: 14px;
+ background-position: -3534px 0px; }
+ .iti__flag.iti__mx {
+ height: 12px;
+ background-position: -3556px 0px; }
+ .iti__flag.iti__my {
+ height: 10px;
+ background-position: -3578px 0px; }
+ .iti__flag.iti__mz {
+ height: 14px;
+ background-position: -3600px 0px; }
+ .iti__flag.iti__na {
+ height: 14px;
+ background-position: -3622px 0px; }
+ .iti__flag.iti__nc {
+ height: 10px;
+ background-position: -3644px 0px; }
+ .iti__flag.iti__ne {
+ height: 15px;
+ background-position: -3666px 0px; }
+ .iti__flag.iti__nf {
+ height: 10px;
+ background-position: -3686px 0px; }
+ .iti__flag.iti__ng {
+ height: 10px;
+ background-position: -3708px 0px; }
+ .iti__flag.iti__ni {
+ height: 12px;
+ background-position: -3730px 0px; }
+ .iti__flag.iti__nl {
+ height: 14px;
+ background-position: -3752px 0px; }
+ .iti__flag.iti__no {
+ height: 15px;
+ background-position: -3774px 0px; }
+ .iti__flag.iti__np {
+ height: 15px;
+ background-position: -3796px 0px; }
+ .iti__flag.iti__nr {
+ height: 10px;
+ background-position: -3811px 0px; }
+ .iti__flag.iti__nu {
+ height: 10px;
+ background-position: -3833px 0px; }
+ .iti__flag.iti__nz {
+ height: 10px;
+ background-position: -3855px 0px; }
+ .iti__flag.iti__om {
+ height: 10px;
+ background-position: -3877px 0px; }
+ .iti__flag.iti__pa {
+ height: 14px;
+ background-position: -3899px 0px; }
+ .iti__flag.iti__pe {
+ height: 14px;
+ background-position: -3921px 0px; }
+ .iti__flag.iti__pf {
+ height: 14px;
+ background-position: -3943px 0px; }
+ .iti__flag.iti__pg {
+ height: 15px;
+ background-position: -3965px 0px; }
+ .iti__flag.iti__ph {
+ height: 10px;
+ background-position: -3987px 0px; }
+ .iti__flag.iti__pk {
+ height: 14px;
+ background-position: -4009px 0px; }
+ .iti__flag.iti__pl {
+ height: 13px;
+ background-position: -4031px 0px; }
+ .iti__flag.iti__pm {
+ height: 14px;
+ background-position: -4053px 0px; }
+ .iti__flag.iti__pn {
+ height: 10px;
+ background-position: -4075px 0px; }
+ .iti__flag.iti__pr {
+ height: 14px;
+ background-position: -4097px 0px; }
+ .iti__flag.iti__ps {
+ height: 10px;
+ background-position: -4119px 0px; }
+ .iti__flag.iti__pt {
+ height: 14px;
+ background-position: -4141px 0px; }
+ .iti__flag.iti__pw {
+ height: 13px;
+ background-position: -4163px 0px; }
+ .iti__flag.iti__py {
+ height: 11px;
+ background-position: -4185px 0px; }
+ .iti__flag.iti__qa {
+ height: 8px;
+ background-position: -4207px 0px; }
+ .iti__flag.iti__re {
+ height: 14px;
+ background-position: -4229px 0px; }
+ .iti__flag.iti__ro {
+ height: 14px;
+ background-position: -4251px 0px; }
+ .iti__flag.iti__rs {
+ height: 14px;
+ background-position: -4273px 0px; }
+ .iti__flag.iti__ru {
+ height: 14px;
+ background-position: -4295px 0px; }
+ .iti__flag.iti__rw {
+ height: 14px;
+ background-position: -4317px 0px; }
+ .iti__flag.iti__sa {
+ height: 14px;
+ background-position: -4339px 0px; }
+ .iti__flag.iti__sb {
+ height: 10px;
+ background-position: -4361px 0px; }
+ .iti__flag.iti__sc {
+ height: 10px;
+ background-position: -4383px 0px; }
+ .iti__flag.iti__sd {
+ height: 10px;
+ background-position: -4405px 0px; }
+ .iti__flag.iti__se {
+ height: 13px;
+ background-position: -4427px 0px; }
+ .iti__flag.iti__sg {
+ height: 14px;
+ background-position: -4449px 0px; }
+ .iti__flag.iti__sh {
+ height: 10px;
+ background-position: -4471px 0px; }
+ .iti__flag.iti__si {
+ height: 10px;
+ background-position: -4493px 0px; }
+ .iti__flag.iti__sj {
+ height: 15px;
+ background-position: -4515px 0px; }
+ .iti__flag.iti__sk {
+ height: 14px;
+ background-position: -4537px 0px; }
+ .iti__flag.iti__sl {
+ height: 14px;
+ background-position: -4559px 0px; }
+ .iti__flag.iti__sm {
+ height: 15px;
+ background-position: -4581px 0px; }
+ .iti__flag.iti__sn {
+ height: 14px;
+ background-position: -4603px 0px; }
+ .iti__flag.iti__so {
+ height: 14px;
+ background-position: -4625px 0px; }
+ .iti__flag.iti__sr {
+ height: 14px;
+ background-position: -4647px 0px; }
+ .iti__flag.iti__ss {
+ height: 10px;
+ background-position: -4669px 0px; }
+ .iti__flag.iti__st {
+ height: 10px;
+ background-position: -4691px 0px; }
+ .iti__flag.iti__sv {
+ height: 12px;
+ background-position: -4713px 0px; }
+ .iti__flag.iti__sx {
+ height: 14px;
+ background-position: -4735px 0px; }
+ .iti__flag.iti__sy {
+ height: 14px;
+ background-position: -4757px 0px; }
+ .iti__flag.iti__sz {
+ height: 14px;
+ background-position: -4779px 0px; }
+ .iti__flag.iti__ta {
+ height: 10px;
+ background-position: -4801px 0px; }
+ .iti__flag.iti__tc {
+ height: 10px;
+ background-position: -4823px 0px; }
+ .iti__flag.iti__td {
+ height: 14px;
+ background-position: -4845px 0px; }
+ .iti__flag.iti__tf {
+ height: 14px;
+ background-position: -4867px 0px; }
+ .iti__flag.iti__tg {
+ height: 13px;
+ background-position: -4889px 0px; }
+ .iti__flag.iti__th {
+ height: 14px;
+ background-position: -4911px 0px; }
+ .iti__flag.iti__tj {
+ height: 10px;
+ background-position: -4933px 0px; }
+ .iti__flag.iti__tk {
+ height: 10px;
+ background-position: -4955px 0px; }
+ .iti__flag.iti__tl {
+ height: 10px;
+ background-position: -4977px 0px; }
+ .iti__flag.iti__tm {
+ height: 14px;
+ background-position: -4999px 0px; }
+ .iti__flag.iti__tn {
+ height: 14px;
+ background-position: -5021px 0px; }
+ .iti__flag.iti__to {
+ height: 10px;
+ background-position: -5043px 0px; }
+ .iti__flag.iti__tr {
+ height: 14px;
+ background-position: -5065px 0px; }
+ .iti__flag.iti__tt {
+ height: 12px;
+ background-position: -5087px 0px; }
+ .iti__flag.iti__tv {
+ height: 10px;
+ background-position: -5109px 0px; }
+ .iti__flag.iti__tw {
+ height: 14px;
+ background-position: -5131px 0px; }
+ .iti__flag.iti__tz {
+ height: 14px;
+ background-position: -5153px 0px; }
+ .iti__flag.iti__ua {
+ height: 14px;
+ background-position: -5175px 0px; }
+ .iti__flag.iti__ug {
+ height: 14px;
+ background-position: -5197px 0px; }
+ .iti__flag.iti__um {
+ height: 11px;
+ background-position: -5219px 0px; }
+ .iti__flag.iti__un {
+ height: 14px;
+ background-position: -5241px 0px; }
+ .iti__flag.iti__us {
+ height: 11px;
+ background-position: -5263px 0px; }
+ .iti__flag.iti__uy {
+ height: 14px;
+ background-position: -5285px 0px; }
+ .iti__flag.iti__uz {
+ height: 10px;
+ background-position: -5307px 0px; }
+ .iti__flag.iti__va {
+ height: 15px;
+ background-position: -5329px 0px; }
+ .iti__flag.iti__vc {
+ height: 14px;
+ background-position: -5346px 0px; }
+ .iti__flag.iti__ve {
+ height: 14px;
+ background-position: -5368px 0px; }
+ .iti__flag.iti__vg {
+ height: 10px;
+ background-position: -5390px 0px; }
+ .iti__flag.iti__vi {
+ height: 14px;
+ background-position: -5412px 0px; }
+ .iti__flag.iti__vn {
+ height: 14px;
+ background-position: -5434px 0px; }
+ .iti__flag.iti__vu {
+ height: 12px;
+ background-position: -5456px 0px; }
+ .iti__flag.iti__wf {
+ height: 14px;
+ background-position: -5478px 0px; }
+ .iti__flag.iti__ws {
+ height: 10px;
+ background-position: -5500px 0px; }
+ .iti__flag.iti__xk {
+ height: 15px;
+ background-position: -5522px 0px; }
+ .iti__flag.iti__ye {
+ height: 14px;
+ background-position: -5544px 0px; }
+ .iti__flag.iti__yt {
+ height: 14px;
+ background-position: -5566px 0px; }
+ .iti__flag.iti__za {
+ height: 14px;
+ background-position: -5588px 0px; }
+ .iti__flag.iti__zm {
+ height: 14px;
+ background-position: -5610px 0px; }
+ .iti__flag.iti__zw {
+ height: 10px;
+ background-position: -5632px 0px; }
+
+.iti__flag {
+ height: 15px;
+ box-shadow: 0px 0px 1px 0px #888;
+ background-image: url(/images/vendor/intl-tel-input/build/flags.png?007b2705c0a8f69dfdf6ea1bfa0341c9);
+ background-repeat: no-repeat;
+ background-color: #DBDBDB;
+ background-position: 20px 0; }
+ @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; }
+
+html, body {
+ height: 100%;
+}
+
+input {
+ width: 100%;
+}
+
+.hide-scroll::-webkit-scrollbar { display: none; }
+
+[x-cloak] {display: none; }
+
+.affiliate img {
+ margin-bottom: 0 !important;
+ margin-top: 0 !important;
+ border-bottom-left-radius: 0;
+ border-bottom-right-radius: 0;
+}
+
+.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.js **/
+.choices {
+ margin-top: 8px;
+}
+
+.standard .choices__input.choices__input--cloned {
+ display: none;
+}
+
+.standard .choices__inner {
+ display: flex !important;
+ height: 3rem !important;
+ width: 100% !important;
+ align-items: center !important;
+ border-radius: 0.25rem !important;
+ border-width: 1px !important;
+ --tw-border-opacity: 1 !important;
+ border-color: rgba(var(--color-input-border), var(--tw-border-opacity)) !important;
+ --tw-bg-opacity: 1 !important;
+ background-color: rgba(var(--color-input-fill), var(--tw-bg-opacity)) !important;
+ padding: 0.5rem !important;
+}
+
+.standard .choices__list--dropdown {
+ border-width: 2px !important;
+ --tw-border-opacity: 1 !important;
+ border-color: rgba(var(--color-input-border), var(--tw-border-opacity)) !important;
+}
+
+.standard .choices__list--dropdown .choices__list {
+ border-width: 1px !important;
+ --tw-border-opacity: 1 !important;
+ border-color: rgba(var(--color-border), var(--tw-border-opacity)) !important;
+ --tw-bg-opacity: 1 !important;
+ background-color: rgba(var(--color-input-fill), var(--tw-bg-opacity)) !important;
+}
+
+.standard .choices__list--single {
+ padding: 0px !important;
+}
+
+.standard .choices__item {
+ margin-top: 0px !important;
+ margin-bottom: 0px !important;
+ cursor: pointer !important;
+ border-radius: 0.25rem !important;
+ border-width: 0px !important;
+ --tw-bg-opacity: 1 !important;
+ background-color: rgba(var(--color-footer-fill), var(--tw-bg-opacity)) !important;
+ padding-left: 0.5rem !important;
+ padding-right: 0.5rem !important;
+ padding-top: 0.25rem !important;
+ padding-bottom: 0.25rem !important;
+ font-size: 0.875rem !important;
+ line-height: 1.25rem !important;
+ --tw-text-opacity: 1 !important;
+ color: rgba(var(--color-text-base), var(--tw-text-opacity)) !important;
+}
+
+.standard .choices__item.choices__item--choice {
+ border-radius: 0px !important;
+ padding-top: 0.5rem !important;
+ padding-bottom: 0.5rem !important;
+}
+
+.standard .choices__item.choices__item--choice.choices__item--selectable {
+ border-radius: 0px !important;
+ --tw-bg-opacity: 1 !important;
+ background-color: rgba(var(--color-input-fill), var(--tw-bg-opacity)) !important;
+ padding: 0.5rem !important;
+ --tw-text-opacity: 1 !important;
+ color: rgba(var(--color-text-base), var(--tw-text-opacity)) !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 {
+ --tw-border-opacity: 1 !important;
+ border-color: rgb(16 185 129 / var(--tw-border-opacity)) !important;
+ --tw-bg-opacity: 1 !important;
+ background-color: rgb(16 185 129 / var(--tw-bg-opacity)) !important;
+ --tw-text-opacity: 1 !important;
+ color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
+}
+
+.standard .choices__item.is-highlighted {
+ --tw-border-opacity: 1 !important;
+ border-color: rgb(5 150 105 / var(--tw-border-opacity)) !important;
+ --tw-bg-opacity: 1 !important;
+ background-color: rgb(5 150 105 / var(--tw-bg-opacity)) !important;
+ --tw-text-opacity: 1 !important;
+ color: rgb(255 255 255 / var(--tw-text-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 {
+ border-radius: 0px !important;
+ border-bottom-width: 2px !important;
+ --tw-border-opacity: 1 !important;
+ border-color: rgba(var(--color-input-border), var(--tw-border-opacity)) !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;
+ border-color: rgb(16 185 129 / var(--tw-border-opacity)) !important;
+ --tw-bg-opacity: 1 !important;
+ background-color: rgb(16 185 129 / var(--tw-bg-opacity)) !important;
+ --tw-text-opacity: 1 !important;
+ color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
+}
+
+/*
+ Margin and rounding are personal preferences,
+ overflow-x-auto is recommended.
+*/
+pre {
+ margin-top: 1rem;
+ margin-bottom: 1rem;
+ overflow-x: auto;
+ border-radius: 0.25rem;
+ padding: 0 !important;
+}
+
+/*
+ Add some vertical padding and expand the width
+ to fill its container. The horizontal padding
+ comes at the line level so that background
+ colors extend edge to edge.
+*/
+pre code.torchlight {
+ display: block;
+ min-width: -webkit-max-content;
+ min-width: -moz-max-content;
+ min-width: max-content;
+ padding-top: 1rem;
+ padding-bottom: 1rem;
+}
+
+/*
+ Horizontal line padding.
+*/
+pre code.torchlight .line {
+ padding-left: 1rem;
+ padding-right: 1rem;
+}
+
+/*
+ Push the code away from the line numbers and
+ summary caret indicators.
+*/
+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) {
+ transition: filter 0.35s, opacity 0.35s;
+ filter: blur(.095rem);
+ opacity: .65;
+}
+
+.torchlight.has-focus-lines:hover .line:not(.line-focus) {
+ filter: blur(0px);
+ opacity: 1;
+}
+
+.torchlight summary:focus {
+ outline: none;
+}
+
+/* Hide the default markers, as we provide our own */
+.torchlight details > summary::marker,
+.torchlight details > summary::-webkit-details-marker {
+ display: none;
+}
+
+.torchlight details .summary-caret::after {
+ pointer-events: none;
+}
+
+/* Add spaces to keep everything aligned */
+.torchlight .summary-caret-empty::after,
+.torchlight details .summary-caret-middle::after,
+.torchlight details .summary-caret-end::after {
+ content: " ";
+}
+
+/* Show a minus sign when the block is open. */
+.torchlight details[open] .summary-caret-start::after {
+ content: "-";
+}
+
+/* And a plus sign when the block is closed. */
+.torchlight details:not([open]) .summary-caret-start::after {
+ content: "+";
+}
+
+/* Hide the [...] indicator when open. */
+.torchlight details[open] .summary-hide-when-open {
+ display: none;
+}
+
+/* Show the [...] indicator when closed. */
+.torchlight details:not([open]) .summary-hide-when-open {
+ display: inline;
+ display: initial;
+}
+
+.toc li a {
+ position: relative;
+ display: flex;
+ align-items: center;
+ border-radius: 0.375rem;
+ padding-top: 0.375rem;
+ padding-bottom: 0.375rem;
+ font-size: 0.875rem;
+ font-weight: 500;
+ line-height: 1.25rem;
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-base), var(--tw-text-opacity));
+ 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-duration: 150ms;
+ transition-timing-function: cubic-bezier(0.4, 0, 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 {
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-primary), var(--tw-text-opacity))
+}
+.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 {
+ position: fixed;
+ left: 0px;
+ right: 0px;
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
+ background-color: rgba(var(--color-menu-fill), 0.8);
+ --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);
+ transition-duration: 300ms;
+}
+
+.header.is-hidden {
+ transform: translateY(-100%);
+}
+
+/* Dragula */
+.gu-mirror {
+ position: fixed !important;
+ margin: 0 !important;
+ z-index: 9999 !important;
+ opacity: 0.8;
+ -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=80)';
+ filter: alpha(opacity=80);
+}
+
+.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 {
+ opacity: 0.2;
+ -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=20)';
+ filter: alpha(opacity=20);
+}
+
+/* Component level reset. Explicitly for item during cloning */
+.media-library,
+.media-library *,
+.media-library-item * {
+ all: unset;
+ position: relative;
+ box-sizing: border-box;
+ border-style: solid;
+ border-width: 0px;
+}
+
+/* `all:unset` for sortable rows in Vue 3 does too much */
+.media-library-sortable .media-library-item {
+ -webkit-user-drag: element;
+}
+
+.media-library script,
+.media-library-item script {
+ display: none;
+}
+
+/* Base */
+.media-library {
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-inverted-muted), var(--tw-text-opacity));
+}
+
+/* Order */
+.media-library {
+ 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;
+}
+
+/* When cloning */
+.media-library-item.gu-mirror {
+ border-width: 2px;
+ --tw-border-opacity: 1;
+ border-color: rgba(var(--color-input-border), var(--tw-border-opacity));
+ --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
+ --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
+}
+
+/* Uploader */
+.media-library-add {
+ display: flex;
+}
+
+.media-library-replace,
+.media-library-replace .media-library-dropzone,
+.media-library-replace .media-library-placeholder {
+ position: absolute;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ left: 0px;
+ width: 100%;
+ height: 100%;
+ margin: 0px;
+}
+
+/* Items */
+.media-library-multiple .media-library-items {
+ display: block;
+ border-width: 2px;
+ --tw-border-opacity: 1;
+ border-color: rgba(var(--color-input-border), var(--tw-border-opacity));
+}
+
+.media-library-item {
+ display: flex;
+ align-items: center;
+ min-width: 0px;
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity));
+}
+
+.media-library-item-row:not(:last-child) {
+ border-bottom-width: 1px;
+ --tw-border-opacity: 1;
+ 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-row-drag,
+.media-library-filled.media-library-sortable .media-library-add .media-library-dropzone:before {
+ align-self: stretch;
+ flex: none;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ width: 2rem;
+ background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity));
+ --tw-bg-opacity: 0.5;
+ border-right-width: 1px;
+ --tw-border-opacity: 1;
+ border-color: rgba(var(--color-input-border), var(--tw-border-opacity));
+ cursor: move;
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-base), var(--tw-text-opacity));
+}
+
+.media-library-row-drag:hover {
+ --tw-text-opacity: 1;
+ color: rgb(16 185 129 / var(--tw-text-opacity));
+}
+
+.media-library-row-remove {
+ position: absolute;
+ right: 0px;
+ top: 0px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ height: 3rem;
+ width: 3rem;
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-base), var(--tw-text-opacity));
+ opacity: 0.5;
+ cursor: pointer;
+}
+
+.media-library-row-remove:hover {
+ opacity: 1;
+ transition-property: opacity;
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
+ transition-duration: 300ms;
+}
+
+/* Invalid media, aka failed uploads */
+.media-library-listerrors {
+ display: block;
+ border-width: 2px;
+ border-color: rgb(252 165 165 / var(--tw-border-opacity));
+ --tw-border-opacity: 0.5;
+ background-color: rgb(254 202 202 / var(--tw-bg-opacity));
+ --tw-bg-opacity: 0.5;
+ font-size: 0.75rem;
+ line-height: 1rem;
+}
+
+.media-library-listerror {
+ display: flex;
+ align-items: flex-start;
+}
+
+.media-library-listerror:not(:last-child) {
+ border-bottom-width: 2px;
+ border-color: rgb(252 165 165 / var(--tw-border-opacity));
+ --tw-border-opacity: 0.25;
+}
+
+.media-library-listerror-icon {
+ align-self: stretch;
+ padding-top: 0.75rem;
+ padding-bottom: 0.75rem;
+ margin-left: 1rem;
+ margin-right: 1rem;
+ width: 2rem;
+ display: flex;
+ justify-content: center;
+}
+
+.media-library-filled.media-library-sortable .media-library-listerror-icon {
+ margin-left: 0px;
+ margin-right: 1rem;
+ background-color: rgb(254 202 202 / var(--tw-bg-opacity));
+ --tw-bg-opacity: 0.5;
+ border-right-width: 1px;
+ --tw-border-opacity: 1;
+ border-color: rgb(254 202 202 / var(--tw-border-opacity));
+}
+
+.media-library-listerror-content {
+ flex-grow: 1;
+ padding-right: 3rem;
+}
+
+.media-library-listerror-title {
+ --tw-text-opacity: 1;
+ color: rgb(220 38 38 / var(--tw-text-opacity));
+ height: 3rem;
+ display: flex;
+ align-items: center;
+}
+
+.media-library-listerror-items {
+ margin-top: -0.5rem;
+ border-top-width: 1px;
+ border-color: rgb(252 165 165 / var(--tw-border-opacity));
+ --tw-border-opacity: 0.25;
+}
+
+.media-library-listerror-item {
+ display: flex;
+ align-items: center;
+ padding-top: 0.75rem;
+ padding-bottom: 0.75rem;
+}
+
+.media-library-listerror-thumb {
+ flex: none;
+ width: 1.5rem;
+ height: 1.5rem;
+ margin-right: 0.75rem;
+}
+
+.media-library-listerror-thumb:after {
+ content: '';
+ position: absolute;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ left: 0px;
+ border-width: 1px;
+ border-color: rgb(220 38 38 / var(--tw-border-opacity));
+ --tw-border-opacity: 0.5;
+}
+
+.media-library-listerror-text {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+
+/* Thumb */
+.media-library-thumb {
+ position: relative;
+ flex: none;
+ width: 4rem;
+ height: 4rem;
+ margin: 1rem;
+}
+
+.media-library-single .media-library-thumb {
+ margin: 0px;
+ margin-right: 1rem;
+}
+
+.media-library-thumb-img {
+ width: 100%;
+ height: 100%;
+ -o-object-fit: cover;
+ object-fit: cover;
+ overflow: hidden;
+}
+
+.media-library-thumb-extension {
+ width: 100%;
+ height: 100%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity));
+}
+
+.media-library-thumb-extension-truncate {
+ max-width: 100%;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ font-weight: 600;
+ text-transform: uppercase;
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-base), var(--tw-text-opacity));
+ font-size: 0.75rem;
+ line-height: 1rem;
+}
+
+/* Placeholder */
+.media-library-placeholder {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 4rem;
+ height: calc(4rem - 4px);
+}
+
+.media-library-filled.media-library-sortable .media-library-add .media-library-placeholder {
+ width: 2rem;
+ height: 2rem;
+ margin-left: -2rem;
+ margin-right: 1rem;
+}
+
+.media-library-multiple.media-library-empty .media-library-add .media-library-placeholder:before {
+ content: '';
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ width: 2.5rem;
+ height: 2.5rem;
+ background-color: rgba(var(--color-footer-fill), var(--tw-bg-opacity));
+ --tw-bg-opacity: 0.25;
+ transform: translate(calc(-50% + 3px), calc(-50% + 3px));
+}
+
+.media-library-multiple.media-library-empty .media-library-add .media-library-placeholder:after {
+ content: '';
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ width: 2.5rem;
+ height: 2.5rem;
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-input-fill), var(--tw-bg-opacity));
+ border-width: 1px;
+ border-color: rgba(var(--color-input-border), var(--tw-border-opacity));
+ --tw-border-opacity: 0.25;
+ transform: translate(-50%, -50%);
+}
+
+.media-library-dropzone:not(.disabled):active .media-library-placeholder,
+.media-library-dropzone-drop .media-library-placeholder {
+ transform: translateY(1px);
+}
+
+/* Help */
+.media-library-help {
+ text-align: left;
+ padding-right: 1rem;
+ font-size: 0.75rem;
+ line-height: 1rem;
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-base), var(--tw-text-opacity));
+}
+
+.media-library-help-clear {
+ padding-left: 0.5rem;
+ padding-right: 0.5rem;
+ opacity: 0.75;
+ cursor: pointer;
+}
+
+.media-library-help-clear:hover {
+ opacity: 1;
+ transition-property: opacity;
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
+ transition-duration: 300ms;
+}
+
+/* Dropzone */
+.media-library-dropzone {
+ -webkit-appearance: none !important;
+ -moz-appearance: none !important;
+ appearance: none !important;
+ display: flex;
+ align-items: center;
+ border-width: 2px;
+ border-color: rgba(var(--color-input-border), var(--tw-border-opacity));
+ --tw-border-opacity: 0.5;
+ 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(0.4, 0, 0.2, 1);
+ transition-duration: 300ms;
+ flex-grow: 1;
+ background-color: transparent;
+}
+
+.media-library-dropzone-add {
+ border-style: dashed;
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-card-muted-fill), var(--tw-bg-opacity));
+}
+
+.media-library-dropzone-replace {
+ border-style: solid;
+}
+
+.media-library-dropzone:not(.disabled):hover,
+.media-library-dropzone-drag {
+ background-color: rgb(110 231 183 / var(--tw-bg-opacity));
+ --tw-bg-opacity: 0.25;
+ border-color: rgb(5 150 105 / var(--tw-border-opacity));
+ --tw-border-opacity: 0.25;
+}
+
+.media-library-dropzone:not(.disabled):active,
+.media-library-dropzone:not(.disabled):focus,
+.media-library-dropzone-drop {
+ outline: 2px solid transparent;
+ outline-offset: 2px;
+ background-color: rgb(110 231 183 / var(--tw-bg-opacity));
+ --tw-bg-opacity: 0.5;
+ border-color: rgb(5 150 105 / var(--tw-border-opacity));
+ --tw-border-opacity: 0.25;
+}
+
+.media-library-dropzone.disabled {
+ background-color: rgb(252 165 165 / var(--tw-bg-opacity));
+ --tw-bg-opacity: 0.25;
+ border-color: rgb(220 38 38 / var(--tw-border-opacity));
+ --tw-border-opacity: 0.25;
+ cursor: not-allowed;
+}
+
+/* Properties */
+.media-library-properties {
+ font-size: 0.75rem;
+ line-height: 1rem;
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-base), var(--tw-text-opacity));
+ flex-grow: 1;
+ min-width: 0px;
+ margin-right: 1rem;
+ margin-top: 1rem;
+ margin-bottom: 1rem;
+}
+
+.media-library-single .media-library-properties {
+ margin-top: 0px;
+ margin-bottom: 0px;
+}
+
+.media-library-properties-fixed {
+ width: 8rem;
+ flex-grow: 0;
+}
+
+.media-library-property {
+ display: block;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-base), var(--tw-text-opacity));
+}
+
+/* Field */
+.media-library-field {
+ display: block;
+ overflow: hidden;
+ margin-top: 0.5rem;
+ margin-bottom: 0.5rem;
+}
+
+.media-library-field-error {
+ display: block;
+ margin-top: 0.25rem;
+ --tw-text-opacity: 1;
+ color: rgb(220 38 38 / var(--tw-text-opacity));
+}
+
+.media-library-label {
+ display: block;
+ font-size: 0.75rem;
+ line-height: 1rem;
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-base), var(--tw-text-opacity));
+ padding-right: 0.5rem;
+}
+
+.media-library-input {
+ flex: 1 1 0%;
+ width: 100%;
+ font-size: 0.75rem;
+ line-height: 1rem;
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-inverted), var(--tw-text-opacity));
+ border-radius: 0.375rem;
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity));
+ padding-left: 0.5rem;
+ padding-right: 0.5rem;
+ padding-top: 0.25rem;
+ padding-bottom: 0.25rem;
+ 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(0.4, 0, 0.2, 1);
+ transition-duration: 300ms;
+}
+
+.media-library-input:focus {
+ outline: 2px solid transparent;
+ outline-offset: 2px;
+ --tw-bg-opacity: 1;
+ background-color: rgb(209 250 229 / var(--tw-bg-opacity));
+}
+
+/* Rounded buttons */
+.media-library-button {
+ width: 1.5rem;
+ height: 1.5rem;
+ --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
+ --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 9999px;
+ line-height: 1;
+ transition-property: all;
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
+ transition-duration: 150ms;
+ border-width: 1px;
+ border-color: rgba(var(--color-input-border), var(--tw-border-opacity));
+ --tw-border-opacity: 0.75;
+ z-index: 10;
+}
+
+.media-library-sortable .media-library-button {
+ width: 1.25rem;
+ height: 1.25rem;
+}
+
+.media-library-button-info {
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity));
+ --tw-text-opacity: 1;
+ color: rgb(16 185 129 / var(--tw-text-opacity));
+}
+
+.media-library-button-warning {
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity));
+ --tw-text-opacity: 1;
+ color: rgb(239 68 68 / var(--tw-text-opacity));
+}
+
+.media-library-button-error {
+ --tw-bg-opacity: 1;
+ background-color: rgb(239 68 68 / var(--tw-bg-opacity));
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-inverted), var(--tw-text-opacity));
+ --tw-border-opacity: 1;
+ border-color: rgb(248 113 113 / var(--tw-border-opacity));
+}
+
+.media-library-button-success {
+ --tw-bg-opacity: 1;
+ background-color: rgb(16 185 129 / var(--tw-bg-opacity));
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-inverted), var(--tw-text-opacity));
+}
+
+.media-library-replace .media-library-button {
+ opacity: 0;
+}
+
+.media-library-dropzone:not(.disabled):hover .media-library-placeholder .media-library-button,
+.media-library-dropzone:not(.disabled):focus .media-library-placeholder .media-library-button,
+.media-library-dropzone-drag + .media-library-placeholder .media-library-button {
+ opacity: 1;
+ --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 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 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
+}
+
+.media-library-dropzone:not(.disabled):active .media-library-placeholder .media-library-button,
+.media-library-dropzone-drop .media-library-placeholder .media-library-button {
+ opacity: 1;
+ --tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
+ --tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
+}
+
+/* Icon */
+.media-library-icon {
+ width: 1.25rem;
+ height: 1.25rem;
+}
+
+.media-library-icon-fill {
+ fill: currentColor;
+}
+
+/* Progress */
+.media-library-progress-wrap {
+ position: absolute;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ left: 0px;
+ width: 100%;
+ height: 100%;
+ padding-left: 0.75rem;
+ padding-right: 0.75rem;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity));
+ --tw-bg-opacity: 0.5;
+ z-index: 10;
+ opacity: 0;
+ transition-property: opacity;
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
+ transition-duration: 300ms;
+ pointer-events: none;
+}
+
+.media-library-progress-wrap-loading {
+ opacity: 1;
+}
+
+.media-library-progress {
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ height: 0.25rem;
+ width: 100%;
+ max-width: 28rem;
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity));
+ border-radius: 9999px;
+ --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
+ --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
+}
+
+.media-library progress::-webkit-progress-bar {
+ -webkit-appearance: none;
+ appearance: none;
+ border-radius: 9999px;
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity));
+}
+
+.media-library progress::-moz-progress-bar {
+ height: 100%;
+ --tw-bg-opacity: 1;
+ background-color: rgb(16 185 129 / var(--tw-bg-opacity));
+}
+
+.media-library progress::-webkit-progress-value {
+ height: 100%;
+ --tw-bg-opacity: 1;
+ background-color: rgb(16 185 129 / var(--tw-bg-opacity));
+}
+
+/* Text styles */
+.media-library-text-separator {
+ opacity: 0.5;
+ padding-left: 0.25rem;
+ padding-right: 0.25rem;
+}
+
+.media-library-text-success {
+ --tw-text-opacity: 1;
+ color: rgb(5 150 105 / var(--tw-text-opacity));
+}
+
+.media-library-text-error {
+ --tw-text-opacity: 1;
+ color: rgb(220 38 38 / var(--tw-text-opacity));
+}
+
+.media-library-text-link {
+ -webkit-text-decoration-line: underline;
+ text-decoration-line: underline;
+ cursor: pointer;
+}
+
+/* Ported utilities */
+.media-library-hidden {
+ display: none;
+}
+
+.media-library-block {
+ display: block;
+}
+
+/* RTL Support */
+[dir='rtl'] .media-library-row-remove {
+ right: auto;
+ left: 0px;
+}
+
+[dir='rtl'] .media-library-properties {
+ margin-right: 0px;
+ margin-left: 1rem;
+}
+
+[dir='rtl'] .media-library-filled.media-library-sortable .media-library-add .media-library-placeholder {
+ margin-right: -2rem;
+ margin-left: 1rem;
+}
+
+[dir='rtl'] .media-library-row-drag,
+[dir='rtl'] .media-library-filled.media-library-sortable .media-library-add .media-library-dropzone:before {
+ border-right-width: 0px;
+ border-left-width: 1px;
+}
+
+[dir='rtl'] .media-library-help {
+ text-align: right;
+ padding-right: 0px;
+ padding-left: 1rem;
+}
+
+[dir='rtl'] .media-library-listerror-content {
+ padding-right: 0px;
+ padding-left: 3rem;
+}
+
+[dir='rtl'] .media-library-filled.media-library-sortable .media-library-listerror-icon {
+ margin-right: 0px;
+ margin-left: 1rem;
+ border-right-width: 0px;
+ border-left-width: 1px;
+}
+
+/*
+! tailwindcss v3.2.1 | MIT License | https://tailwindcss.com
+*//*
+1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
+2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
+*/
+
+*,
+::before,
+::after {
+ box-sizing: border-box; /* 1 */
+ border-width: 0; /* 2 */
+ border-style: solid; /* 2 */
+ border-color: #e5e7eb; /* 2 */
+}
+
+::before,
+::after {
+ --tw-content: '';
+}
+
+/*
+1. Use a consistent sensible line-height in all browsers.
+2. Prevent adjustments of font size after orientation changes in iOS.
+3. Use a more readable tab size.
+4. Use the user's configured `sans` font-family by default.
+*/
+
+html {
+ line-height: 1.5; /* 1 */
+ -webkit-text-size-adjust: 100%; /* 2 */
+ -moz-tab-size: 4; /* 3 */
+ -o-tab-size: 4;
+ tab-size: 4; /* 3 */
+ font-family: DM Sans, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
+}
+
+/*
+1. Remove the margin in all browsers.
+2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
+*/
+
+body {
+ margin: 0; /* 1 */
+ line-height: inherit; /* 2 */
+}
+
+/*
+1. Add the correct height in Firefox.
+2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
+3. Ensure horizontal rules are visible by default.
+*/
+
+hr {
+ height: 0; /* 1 */
+ color: inherit; /* 2 */
+ border-top-width: 1px; /* 3 */
+}
+
+/*
+Add the correct text decoration in Chrome, Edge, and Safari.
+*/
+
+abbr:where([title]) {
+ -webkit-text-decoration: underline dotted;
+ text-decoration: underline dotted;
+}
+
+/*
+Remove the default font size and weight for headings.
+*/
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ font-size: inherit;
+ font-weight: inherit;
+}
+
+/*
+Reset links to optimize for opt-in styling instead of opt-out.
+*/
+
+a {
+ color: inherit;
+ text-decoration: inherit;
+}
+
+/*
+Add the correct font weight in Edge and Safari.
+*/
+
+b,
+strong {
+ font-weight: bolder;
+}
+
+/*
+1. Use the user's configured `mono` font family by default.
+2. Correct the odd `em` font sizing in all browsers.
+*/
+
+code,
+kbd,
+samp,
+pre {
+ font-family: JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
+ font-size: 1em; /* 2 */
+}
+
+/*
+Add the correct font size in all browsers.
+*/
+
+small {
+ font-size: 80%;
+}
+
+/*
+Prevent `sub` and `sup` elements from affecting the line height in all browsers.
+*/
+
+sub,
+sup {
+ font-size: 75%;
+ line-height: 0;
+ position: relative;
+ vertical-align: baseline;
+}
+
+sub {
+ bottom: -0.25em;
+}
+
+sup {
+ top: -0.5em;
+}
+
+/*
+1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
+2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
+3. Remove gaps between table borders by default.
+*/
+
+table {
+ text-indent: 0; /* 1 */
+ border-color: inherit; /* 2 */
+ border-collapse: collapse; /* 3 */
+}
+
+/*
+1. Change the font styles in all browsers.
+2. Remove the margin in Firefox and Safari.
+3. Remove default padding in all browsers.
+*/
+
+button,
+input,
+optgroup,
+select,
+textarea {
+ font-family: inherit; /* 1 */
+ font-size: 100%; /* 1 */
+ font-weight: inherit; /* 1 */
+ line-height: inherit; /* 1 */
+ color: inherit; /* 1 */
+ margin: 0; /* 2 */
+ padding: 0; /* 3 */
+}
+
+/*
+Remove the inheritance of text transform in Edge and Firefox.
+*/
+
+button,
+select {
+ text-transform: none;
+}
+
+/*
+1. Correct the inability to style clickable types in iOS and Safari.
+2. Remove default button styles.
+*/
+
+button,
+[type='button'],
+[type='reset'],
+[type='submit'] {
+ -webkit-appearance: button; /* 1 */
+ background-color: transparent; /* 2 */
+ background-image: none; /* 2 */
+}
+
+/*
+Use the modern Firefox focus style for all focusable elements.
+*/
+
+:-moz-focusring {
+ outline: auto;
+}
+
+/*
+Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
+*/
+
+:-moz-ui-invalid {
+ box-shadow: none;
+}
+
+/*
+Add the correct vertical alignment in Chrome and Firefox.
+*/
+
+progress {
+ vertical-align: baseline;
+}
+
+/*
+Correct the cursor style of increment and decrement buttons in Safari.
+*/
+
+::-webkit-inner-spin-button,
+::-webkit-outer-spin-button {
+ height: auto;
+}
+
+/*
+1. Correct the odd appearance in Chrome and Safari.
+2. Correct the outline style in Safari.
+*/
+
+[type='search'] {
+ -webkit-appearance: textfield; /* 1 */
+ outline-offset: -2px; /* 2 */
+}
+
+/*
+Remove the inner padding in Chrome and Safari on macOS.
+*/
+
+::-webkit-search-decoration {
+ -webkit-appearance: none;
+}
+
+/*
+1. Correct the inability to style clickable types in iOS and Safari.
+2. Change font properties to `inherit` in Safari.
+*/
+
+::-webkit-file-upload-button {
+ -webkit-appearance: button; /* 1 */
+ font: inherit; /* 2 */
+}
+
+/*
+Add the correct display in Chrome and Safari.
+*/
+
+summary {
+ display: list-item;
+}
+
+/*
+Removes the default spacing and border for appropriate elements.
+*/
+
+blockquote,
+dl,
+dd,
+h1,
+h2,
+h3,
+h4,
+h5,
+h6,
+hr,
+figure,
+p,
+pre {
+ margin: 0;
+}
+
+fieldset {
+ margin: 0;
+ padding: 0;
+}
+
+legend {
+ padding: 0;
+}
+
+ol,
+ul,
+menu {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+
+/*
+Prevent resizing textareas horizontally by default.
+*/
+
+textarea {
+ resize: vertical;
+}
+
+/*
+1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
+2. Set the default placeholder color to the user's configured gray 400 color.
+*/
+
+input::-moz-placeholder, textarea::-moz-placeholder {
+ opacity: 1; /* 1 */
+ color: #9ca3af; /* 2 */
+}
+
+input:-ms-input-placeholder, textarea:-ms-input-placeholder {
+ opacity: 1; /* 1 */
+ color: #9ca3af; /* 2 */
+}
+
+input::placeholder,
+textarea::placeholder {
+ opacity: 1; /* 1 */
+ color: #9ca3af; /* 2 */
+}
+
+/*
+Set the default cursor for buttons.
+*/
+
+button,
+[role="button"] {
+ cursor: pointer;
+}
+
+/*
+Make sure disabled buttons don't get the pointer cursor.
+*/
+:disabled {
+ cursor: default;
+}
+
+/*
+1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
+2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
+ This can trigger a poorly considered lint error in some tools but is included by design.
+*/
+
+img,
+svg,
+video,
+canvas,
+audio,
+iframe,
+embed,
+object {
+ display: block; /* 1 */
+ vertical-align: middle; /* 2 */
+}
+
+/*
+Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
+*/
+
+img,
+video {
+ max-width: 100%;
+ height: auto;
+}
+
+/* Make elements with the HTML hidden attribute stay hidden by default */
+[hidden] {
+ display: none;
+}
+
+[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ background-color: #fff;
+ border-color: #6b7280;
+ border-width: 1px;
+ border-radius: 0px;
+ padding-top: 0.5rem;
+ padding-right: 0.75rem;
+ padding-bottom: 0.5rem;
+ padding-left: 0.75rem;
+ font-size: 1rem;
+ line-height: 1.5rem;
+ --tw-shadow: 0 0 rgba(0,0,0,0);
+}
+
+[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
+ outline: 2px solid transparent;
+ outline-offset: 2px;
+ --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
+ --tw-ring-offset-width: 0px;
+ --tw-ring-offset-color: #fff;
+ --tw-ring-color: #2563eb;
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
+ border-color: #2563eb;
+}
+
+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-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field {
+ padding-top: 0;
+ padding-bottom: 0;
+}
+
+select {
+ background-image: url("data:image/svg+xml,%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 8l4 4 4-4'/%3e%3c/svg%3e");
+ background-position: right 0.5rem center;
+ background-repeat: no-repeat;
+ background-size: 1.5em 1.5em;
+ padding-right: 2.5rem;
+ print-color-adjust: exact;
+}
+
+[multiple] {
+ background-image: none;
+ background-image: initial;
+ background-position: 0 0;
+ background-position: initial;
+ background-repeat: unset;
+ background-size: auto auto;
+ background-size: initial;
+ padding-right: 0.75rem;
+ print-color-adjust: unset;
+}
+
+[type='checkbox'],[type='radio'] {
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ padding: 0;
+ print-color-adjust: exact;
+ display: inline-block;
+ vertical-align: middle;
+ background-origin: border-box;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ flex-shrink: 0;
+ height: 1rem;
+ width: 1rem;
+ color: #2563eb;
+ background-color: #fff;
+ border-color: #6b7280;
+ border-width: 1px;
+ --tw-shadow: 0 0 rgba(0,0,0,0);
+}
+
+[type='checkbox'] {
+ border-radius: 0px;
+}
+
+[type='radio'] {
+ border-radius: 100%;
+}
+
+[type='checkbox']:focus,[type='radio']:focus {
+ outline: 2px solid transparent;
+ outline-offset: 2px;
+ --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
+ --tw-ring-offset-width: 2px;
+ --tw-ring-offset-color: #fff;
+ --tw-ring-color: #2563eb;
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
+}
+
+[type='checkbox']:checked,[type='radio']:checked {
+ border-color: transparent;
+ background-color: currentColor;
+ background-size: 100% 100%;
+ background-position: center;
+ background-repeat: no-repeat;
+}
+
+[type='checkbox']:checked {
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
+}
+
+[type='radio']:checked {
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
+}
+
+[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
+ border-color: transparent;
+ background-color: currentColor;
+}
+
+[type='checkbox']:indeterminate {
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
+ border-color: transparent;
+ background-color: currentColor;
+ background-size: 100% 100%;
+ background-position: center;
+ background-repeat: no-repeat;
+}
+
+[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
+ border-color: transparent;
+ background-color: currentColor;
+}
+
+[type='file'] {
+ background: unset;
+ border-color: inherit;
+ border-width: 0;
+ border-radius: 0;
+ padding: 0;
+ font-size: unset;
+ line-height: inherit;
+}
+
+[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;
+ }
+
+*, ::before, ::after {
+ --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: rgb(59 130 246 / 0.5);
+ --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
+ --tw-ring-shadow: 0 0 rgba(0,0,0,0);
+ --tw-shadow: 0 0 rgba(0,0,0,0);
+ --tw-shadow-colored: 0 0 rgba(0,0,0,0);
+ --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: rgb(59 130 246 / 0.5);
+ --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
+ --tw-ring-shadow: 0 0 rgba(0,0,0,0);
+ --tw-shadow: 0 0 rgba(0,0,0,0);
+ --tw-shadow-colored: 0 0 rgba(0,0,0,0);
+ --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: rgb(59 130 246 / 0.5);
+ --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
+ --tw-ring-shadow: 0 0 rgba(0,0,0,0);
+ --tw-shadow: 0 0 rgba(0,0,0,0);
+ --tw-shadow-colored: 0 0 rgba(0,0,0,0);
+ --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 {
+ position: relative;
+ padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
+ --tw-aspect-w: 4;
+}
+.aspect-w-4 > * {
+ position: absolute;
+ height: 100%;
+ width: 100%;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+}
+.aspect-h-2 {
+ --tw-aspect-h: 2;
+}
+.aspect-w-2 {
+ position: relative;
+ padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
+ --tw-aspect-w: 2;
+}
+.aspect-w-2 > * {
+ position: absolute;
+ height: 100%;
+ width: 100%;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+}
+.aspect-h-1 {
+ --tw-aspect-h: 1;
+}
+.aspect-w-3 {
+ position: relative;
+ padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
+ --tw-aspect-w: 3;
+}
+.aspect-w-3 > * {
+ position: absolute;
+ height: 100%;
+ width: 100%;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+}
+.prose {
+ 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-top: 1.2em;
+ margin-bottom: 1.2em;
+}
+.prose a {
+ color: rgb(var(--color-text-primary));
+ text-decoration: none;
+ font-weight: 500;
+}
+:where(.prose a:hover):not(:where([class~="not-prose"] *)) {
+ 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 {
+ font-weight: 400;
+ color: var(--tw-prose-counters);
+}
+.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: rgb(var(--color-border));
+ border-top-width: 1px;
+ margin-top: 3em;
+ margin-bottom: 3em;
+}
+.prose :where(blockquote):not(:where([class~="not-prose"] *)) {
+ font-weight: 500;
+ font-style: normal;
+ color: rgb(var(--color-text-inverted));
+ border-left-width: 0.25rem;
+ border-left-color: var(--tw-prose-quote-borders);
+ quotes: "\201C""\201D""\2018""\2019";
+ margin-top: 1.6em;
+ margin-bottom: 1.6em;
+ padding-left: 1em;
+}
+.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-weight: 800;
+ font-size: 2.25em;
+ margin-top: 0;
+ margin-bottom: 0.8888889em;
+ line-height: 1.1111111;
+}
+.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-weight: 700;
+ font-size: 1.5em;
+ margin-top: 2em;
+ margin-bottom: 1em;
+ line-height: 1.3333333;
+}
+.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-weight: 600;
+ font-size: 1.25em;
+ margin-top: 1.6em;
+ margin-bottom: 0.6em;
+ line-height: 1.6;
+}
+.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;
+ margin-top: 1.5em;
+ margin-bottom: 0.5em;
+ line-height: 1.5;
+}
+.prose :where(h4 strong):not(:where([class~="not-prose"] *)) {
+ font-weight: 700;
+}
+.prose :where(figure > *):not(:where([class~="not-prose"] *)) {
+ margin-top: 0;
+ margin-bottom: 0;
+}
+.prose :where(figcaption):not(:where([class~="not-prose"] *)) {
+ color: var(--tw-prose-captions);
+ font-size: 0.875em;
+ line-height: 1.4285714;
+ margin-top: 0.8571429em;
+}
+.prose :where(code):not(:where([class~="not-prose"] *)) {
+ color: var(--tw-prose-code);
+ font-weight: 600;
+ font-size: 0.875em;
+}
+.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"] *)) {
+ color: var(--tw-prose-pre-code);
+ background-color: var(--tw-prose-pre-bg);
+ overflow-x: auto;
+ font-weight: 400;
+ font-size: 0.875em;
+ line-height: 1.7142857;
+ margin-top: 1.7142857em;
+ margin-bottom: 1.7142857em;
+ border-radius: 0.375rem;
+ padding-top: 0.8571429em;
+ padding-right: 1.1428571em;
+ padding-bottom: 0.8571429em;
+ padding-left: 1.1428571em;
+}
+.prose :where(pre code):not(:where([class~="not-prose"] *)) {
+ background-color: transparent;
+ border-width: 0;
+ border-radius: 0;
+ padding: 0;
+ font-weight: inherit;
+ color: inherit;
+ font-size: inherit;
+ font-family: inherit;
+ line-height: inherit;
+}
+.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"] *)) {
+ width: 100%;
+ table-layout: auto;
+ text-align: left;
+ margin-top: 2em;
+ margin-bottom: 2em;
+ font-size: 0.875em;
+ line-height: 1.7142857;
+}
+.prose :where(thead):not(:where([class~="not-prose"] *)) {
+ border-bottom-width: 1px;
+ border-bottom-color: var(--tw-prose-th-borders);
+}
+.prose :where(thead th):not(:where([class~="not-prose"] *)) {
+ color: var(--tw-prose-headings);
+ font-weight: 600;
+ vertical-align: bottom;
+ padding-right: 0.5714286em;
+ padding-bottom: 0.5714286em;
+ padding-left: 0.5714286em;
+}
+.prose :where(tbody tr):not(:where([class~="not-prose"] *)) {
+ border-bottom-width: 1px;
+ border-bottom-color: var(--tw-prose-td-borders);
+}
+.prose :where(tbody tr:last-child):not(:where([class~="not-prose"] *)) {
+ border-bottom-width: 0;
+}
+.prose :where(tbody td):not(:where([class~="not-prose"] *)) {
+ vertical-align: baseline;
+ padding-top: 0.5714286em;
+ padding-right: 0.5714286em;
+ padding-bottom: 0.5714286em;
+ padding-left: 0.5714286em;
+}
+.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: rgb(0 0 0 / 50%);
+ --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-top: 1.25em;
+ margin-bottom: 1.25em;
+}
+.prose :where(img):not(:where([class~="not-prose"] *)) {
+ margin-top: 2em;
+ margin-bottom: 2em;
+ border-radius: 0.5rem;
+}
+.prose :where(video):not(:where([class~="not-prose"] *)) {
+ margin-top: 2em;
+ margin-bottom: 2em;
+}
+.prose :where(figure):not(:where([class~="not-prose"] *)) {
+ margin-top: 2em;
+ margin-bottom: 2em;
+}
+.prose :where(h2 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.875em;
+}
+.prose :where(h3 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.9em;
+}
+.prose :where(li):not(:where([class~="not-prose"] *)) {
+ margin-top: 0.5em;
+ margin-bottom: 0.5em;
+}
+.prose :where(ol > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.375em;
+}
+.prose :where(ul > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.375em;
+}
+.prose > :where(ul > li p):not(:where([class~="not-prose"] *)) {
+ margin-top: 0.75em;
+ margin-bottom: 0.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-top: 0.75em;
+ margin-bottom: 0.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: 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"] *)) {
+ font-weight: 500;
+ font-family: JetBrains Mono, monospace;
+ color: #f59e0b;
+}
+.prose :where(li strong, strong):not(:where([class~="not-prose"] *)) {
+ color: rgb(var(--color-text-inverted-muted));
+ font-weight: 400;
+}
+.prose-sm {
+ font-size: 0.875rem;
+ line-height: 1.7142857;
+}
+.prose-sm :where(p):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.1428571em;
+ margin-bottom: 1.1428571em;
+}
+.prose-sm :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
+ font-size: 1.2857143em;
+ line-height: 1.5555556;
+ margin-top: 0.8888889em;
+ margin-bottom: 0.8888889em;
+}
+.prose-sm :where(blockquote):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.3333333em;
+ margin-bottom: 1.3333333em;
+ padding-left: 1.1111111em;
+}
+.prose-sm :where(h1):not(:where([class~="not-prose"] *)) {
+ font-size: 2.1428571em;
+ margin-top: 0;
+ margin-bottom: 0.8em;
+ line-height: 1.2;
+}
+.prose-sm :where(h2):not(:where([class~="not-prose"] *)) {
+ font-size: 1.4285714em;
+ margin-top: 1.6em;
+ margin-bottom: 0.8em;
+ line-height: 1.4;
+}
+.prose-sm :where(h3):not(:where([class~="not-prose"] *)) {
+ font-size: 1.2857143em;
+ margin-top: 1.5555556em;
+ margin-bottom: 0.4444444em;
+ line-height: 1.5555556;
+}
+.prose-sm :where(h4):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.4285714em;
+ margin-bottom: 0.5714286em;
+ line-height: 1.4285714;
+}
+.prose-sm :where(img):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.7142857em;
+ margin-bottom: 1.7142857em;
+}
+.prose-sm :where(video):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.7142857em;
+ margin-bottom: 1.7142857em;
+}
+.prose-sm :where(figure):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.7142857em;
+ margin-bottom: 1.7142857em;
+}
+.prose-sm :where(figure > *):not(:where([class~="not-prose"] *)) {
+ margin-top: 0;
+ margin-bottom: 0;
+}
+.prose-sm :where(figcaption):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8571429em;
+ line-height: 1.3333333;
+ margin-top: 0.6666667em;
+}
+.prose-sm :where(code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8571429em;
+}
+.prose-sm :where(h2 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.9em;
+}
+.prose-sm :where(h3 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8888889em;
+}
+.prose-sm :where(pre):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8571429em;
+ line-height: 1.6666667;
+ margin-top: 1.6666667em;
+ margin-bottom: 1.6666667em;
+ border-radius: 0.25rem;
+ padding-top: 0.6666667em;
+ padding-right: 1em;
+ padding-bottom: 0.6666667em;
+ padding-left: 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-top: 0.2857143em;
+ margin-bottom: 0.2857143em;
+}
+.prose-sm :where(ol > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.4285714em;
+}
+.prose-sm :where(ul > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.4285714em;
+}
+.prose-sm > :where(ul > li p):not(:where([class~="not-prose"] *)) {
+ margin-top: 0.5714286em;
+ margin-bottom: 0.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-top: 0.5714286em;
+ margin-bottom: 0.5714286em;
+}
+.prose-sm :where(hr):not(:where([class~="not-prose"] *)) {
+ margin-top: 2.8571429em;
+ margin-bottom: 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: 0.8571429em;
+ line-height: 1.5;
+}
+.prose-sm :where(thead th):not(:where([class~="not-prose"] *)) {
+ padding-right: 1em;
+ padding-bottom: 0.6666667em;
+ padding-left: 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-top: 0.6666667em;
+ padding-right: 1em;
+ padding-bottom: 0.6666667em;
+ padding-left: 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-top: 1.25em;
+ margin-bottom: 1.25em;
+}
+.prose-base :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
+ font-size: 1.25em;
+ line-height: 1.6;
+ margin-top: 1.2em;
+ margin-bottom: 1.2em;
+}
+.prose-base :where(blockquote):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.6em;
+ margin-bottom: 1.6em;
+ padding-left: 1em;
+}
+.prose-base :where(h1):not(:where([class~="not-prose"] *)) {
+ font-size: 2.25em;
+ margin-top: 0;
+ margin-bottom: 0.8888889em;
+ line-height: 1.1111111;
+}
+.prose-base :where(h2):not(:where([class~="not-prose"] *)) {
+ font-size: 1.5em;
+ margin-top: 2em;
+ margin-bottom: 1em;
+ line-height: 1.3333333;
+}
+.prose-base :where(h3):not(:where([class~="not-prose"] *)) {
+ font-size: 1.25em;
+ margin-top: 1.6em;
+ margin-bottom: 0.6em;
+ line-height: 1.6;
+}
+.prose-base :where(h4):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.5em;
+ margin-bottom: 0.5em;
+ line-height: 1.5;
+}
+.prose-base :where(img):not(:where([class~="not-prose"] *)) {
+ margin-top: 2em;
+ margin-bottom: 2em;
+}
+.prose-base :where(video):not(:where([class~="not-prose"] *)) {
+ margin-top: 2em;
+ margin-bottom: 2em;
+}
+.prose-base :where(figure):not(:where([class~="not-prose"] *)) {
+ margin-top: 2em;
+ margin-bottom: 2em;
+}
+.prose-base :where(figure > *):not(:where([class~="not-prose"] *)) {
+ margin-top: 0;
+ margin-bottom: 0;
+}
+.prose-base :where(figcaption):not(:where([class~="not-prose"] *)) {
+ font-size: 0.875em;
+ line-height: 1.4285714;
+ margin-top: 0.8571429em;
+}
+.prose-base :where(code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.875em;
+}
+.prose-base :where(h2 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.875em;
+}
+.prose-base :where(h3 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.9em;
+}
+.prose-base :where(pre):not(:where([class~="not-prose"] *)) {
+ font-size: 0.875em;
+ line-height: 1.7142857;
+ margin-top: 1.7142857em;
+ margin-bottom: 1.7142857em;
+ border-radius: 0.375rem;
+ padding-top: 0.8571429em;
+ padding-right: 1.1428571em;
+ padding-bottom: 0.8571429em;
+ padding-left: 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-top: 0.5em;
+ margin-bottom: 0.5em;
+}
+.prose-base :where(ol > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.375em;
+}
+.prose-base :where(ul > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.375em;
+}
+.prose-base > :where(ul > li p):not(:where([class~="not-prose"] *)) {
+ margin-top: 0.75em;
+ margin-bottom: 0.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-top: 0.75em;
+ margin-bottom: 0.75em;
+}
+.prose-base :where(hr):not(:where([class~="not-prose"] *)) {
+ margin-top: 3em;
+ margin-bottom: 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: 0.875em;
+ line-height: 1.7142857;
+}
+.prose-base :where(thead th):not(:where([class~="not-prose"] *)) {
+ padding-right: 0.5714286em;
+ padding-bottom: 0.5714286em;
+ padding-left: 0.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-top: 0.5714286em;
+ padding-right: 0.5714286em;
+ padding-bottom: 0.5714286em;
+ padding-left: 0.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-top: 1.3333333em;
+ margin-bottom: 1.3333333em;
+}
+.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
+ font-size: 1.2222222em;
+ line-height: 1.4545455;
+ margin-top: 1.0909091em;
+ margin-bottom: 1.0909091em;
+}
+.prose-lg :where(blockquote):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.6666667em;
+ margin-bottom: 1.6666667em;
+ padding-left: 1em;
+}
+.prose-lg :where(h1):not(:where([class~="not-prose"] *)) {
+ font-size: 2.6666667em;
+ margin-top: 0;
+ margin-bottom: 0.8333333em;
+ line-height: 1;
+}
+.prose-lg :where(h2):not(:where([class~="not-prose"] *)) {
+ font-size: 1.6666667em;
+ margin-top: 1.8666667em;
+ margin-bottom: 1.0666667em;
+ line-height: 1.3333333;
+}
+.prose-lg :where(h3):not(:where([class~="not-prose"] *)) {
+ font-size: 1.3333333em;
+ margin-top: 1.6666667em;
+ margin-bottom: 0.6666667em;
+ line-height: 1.5;
+}
+.prose-lg :where(h4):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.7777778em;
+ margin-bottom: 0.4444444em;
+ line-height: 1.5555556;
+}
+.prose-lg :where(img):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.7777778em;
+ margin-bottom: 1.7777778em;
+}
+.prose-lg :where(video):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.7777778em;
+ margin-bottom: 1.7777778em;
+}
+.prose-lg :where(figure):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.7777778em;
+ margin-bottom: 1.7777778em;
+}
+.prose-lg :where(figure > *):not(:where([class~="not-prose"] *)) {
+ margin-top: 0;
+ margin-bottom: 0;
+}
+.prose-lg :where(figcaption):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8888889em;
+ line-height: 1.5;
+ margin-top: 1em;
+}
+.prose-lg :where(code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8888889em;
+}
+.prose-lg :where(h2 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8666667em;
+}
+.prose-lg :where(h3 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.875em;
+}
+.prose-lg :where(pre):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8888889em;
+ line-height: 1.75;
+ margin-top: 2em;
+ margin-bottom: 2em;
+ border-radius: 0.375rem;
+ padding-top: 1em;
+ padding-right: 1.5em;
+ padding-bottom: 1em;
+ padding-left: 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-top: 0.6666667em;
+ margin-bottom: 0.6666667em;
+}
+.prose-lg :where(ol > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.4444444em;
+}
+.prose-lg :where(ul > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.4444444em;
+}
+.prose-lg > :where(ul > li p):not(:where([class~="not-prose"] *)) {
+ margin-top: 0.8888889em;
+ margin-bottom: 0.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-top: 0.8888889em;
+ margin-bottom: 0.8888889em;
+}
+.prose-lg :where(hr):not(:where([class~="not-prose"] *)) {
+ margin-top: 3.1111111em;
+ margin-bottom: 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: 0.8888889em;
+ line-height: 1.5;
+}
+.prose-lg :where(thead th):not(:where([class~="not-prose"] *)) {
+ padding-right: 0.75em;
+ padding-bottom: 0.75em;
+ padding-left: 0.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-top: 0.75em;
+ padding-right: 0.75em;
+ padding-bottom: 0.75em;
+ padding-left: 0.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 {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ padding: 0;
+ margin: -1px;
+ overflow: hidden;
+ clip: rect(0, 0, 0, 0);
+ white-space: nowrap;
+ border-width: 0;
+}
+.pointer-events-none {
+ pointer-events: none;
+}
+.pointer-events-auto {
+ pointer-events: auto;
+}
+.visible {
+ visibility: visible;
+}
+.collapse {
+ visibility: collapse;
+}
+.static {
+ position: static;
+}
+.fixed {
+ position: fixed;
+}
+.absolute {
+ position: absolute;
+}
+.relative {
+ position: relative;
+}
+.sticky {
+ position: -webkit-sticky;
+ position: sticky;
+}
+.inset-0 {
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ left: 0px;
+}
+.-inset-px {
+ top: -1px;
+ right: -1px;
+ bottom: -1px;
+ left: -1px;
+}
+.inset-x-0 {
+ left: 0px;
+ right: 0px;
+}
+.inset-y-0 {
+ top: 0px;
+ bottom: 0px;
+}
+.bottom-0 {
+ bottom: 0px;
+}
+.top-0 {
+ top: 0px;
+}
+.top-5 {
+ top: 1.25rem;
+}
+.left-5 {
+ left: 1.25rem;
+}
+.-bottom-0\.5 {
+ bottom: -0.125rem;
+}
+.-right-1 {
+ right: -0.25rem;
+}
+.-bottom-0 {
+ bottom: -0px;
+}
+.left-1\/2 {
+ left: 50%;
+}
+.top-4 {
+ top: 1rem;
+}
+.right-0 {
+ right: 0px;
+}
+.top-40 {
+ top: 10rem;
+}
+.left-0 {
+ left: 0px;
+}
+.-top-8 {
+ top: -2rem;
+}
+.top-\[-75px\] {
+ top: -75px;
+}
+.top-\[-50px\] {
+ top: -50px;
+}
+.top-16 {
+ top: 4rem;
+}
+.left-1 {
+ left: 0.25rem;
+}
+.-top-3 {
+ top: -0.75rem;
+}
+.right-3 {
+ right: 0.75rem;
+}
+.right-5 {
+ right: 1.25rem;
+}
+.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;
+}
+.col-span-2 {
+ grid-column: span 2 / span 2;
+}
+.-m-2 {
+ margin: -0.5rem;
+}
+.-m-3 {
+ margin: -0.75rem;
+}
+.my-10 {
+ margin-top: 2.5rem;
+ margin-bottom: 2.5rem;
+}
+.-mx-2 {
+ margin-left: -0.5rem;
+ margin-right: -0.5rem;
+}
+.mx-auto {
+ margin-left: auto;
+ margin-right: auto;
+}
+.mx-1\.5 {
+ margin-left: 0.375rem;
+ margin-right: 0.375rem;
+}
+.mx-1 {
+ margin-left: 0.25rem;
+ margin-right: 0.25rem;
+}
+.mx-2 {
+ margin-left: 0.5rem;
+ margin-right: 0.5rem;
+}
+.mx-4 {
+ margin-left: 1rem;
+ margin-right: 1rem;
+}
+.-my-5 {
+ margin-top: -1.25rem;
+ margin-bottom: -1.25rem;
+}
+.my-8 {
+ margin-top: 2rem;
+ margin-bottom: 2rem;
+}
+.mx-3 {
+ margin-left: 0.75rem;
+ margin-right: 0.75rem;
+}
+.-my-2 {
+ margin-top: -0.5rem;
+ margin-bottom: -0.5rem;
+}
+.-mx-4 {
+ margin-left: -1rem;
+ margin-right: -1rem;
+}
+.mx-0 {
+ margin-left: 0px;
+ margin-right: 0px;
+}
+.mr-2 {
+ margin-right: 0.5rem;
+}
+.mb-6 {
+ margin-bottom: 1.5rem;
+}
+.mt-1 {
+ margin-top: 0.25rem;
+}
+.mt-8 {
+ margin-top: 2rem;
+}
+.mt-2 {
+ margin-top: 0.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: 0.5rem;
+}
+.ml-4 {
+ margin-left: 1rem;
+}
+.ml-2 {
+ margin-left: 0.5rem;
+}
+.mt-3 {
+ margin-top: 0.75rem;
+}
+.mt-6 {
+ margin-top: 1.5rem;
+}
+.mt-10 {
+ margin-top: 2.5rem;
+}
+.ml-1\.5 {
+ margin-left: 0.375rem;
+}
+.ml-1 {
+ margin-left: 0.25rem;
+}
+.mr-1\.5 {
+ margin-right: 0.375rem;
+}
+.mr-1 {
+ margin-right: 0.25rem;
+}
+.ml-12 {
+ margin-left: 3rem;
+}
+.-ml-1 {
+ margin-left: -0.25rem;
+}
+.-ml-px {
+ margin-left: -1px;
+}
+.mr-3 {
+ margin-right: 0.75rem;
+}
+.ml-3 {
+ margin-left: 0.75rem;
+}
+.-mr-1 {
+ margin-right: -0.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: 0.375rem;
+}
+.mb-1 {
+ margin-bottom: 0.25rem;
+}
+.-mt-1 {
+ margin-top: -0.25rem;
+}
+.mt-0\.5 {
+ margin-top: 0.125rem;
+}
+.mt-0 {
+ margin-top: 0px;
+}
+.ml-2\.5 {
+ margin-left: 0.625rem;
+}
+.ml-8 {
+ margin-left: 2rem;
+}
+.-mt-2 {
+ margin-top: -0.5rem;
+}
+.ml-3\.5 {
+ margin-left: 0.875rem;
+}
+.-ml-9 {
+ margin-left: -2.25rem;
+}
+.mb-3 {
+ margin-bottom: 0.75rem;
+}
+.-mb-2 {
+ margin-bottom: -0.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: 0.375rem;
+}
+.mt-24 {
+ margin-top: 6rem;
+}
+.-ml-4 {
+ margin-left: -1rem;
+}
+.ml-auto {
+ margin-left: auto;
+}
+.-mt-3 {
+ margin-top: -0.75rem;
+}
+.-mb-8 {
+ margin-bottom: -2rem;
+}
+.-mt-6 {
+ margin-top: -1.5rem;
+}
+.-ml-0\.5 {
+ margin-left: -0.125rem;
+}
+.-ml-0 {
+ margin-left: -0px;
+}
+.mr-0 {
+ margin-right: 0px;
+}
+.mr-4 {
+ margin-right: 1rem;
+}
+.-mt-8 {
+ margin-top: -2rem;
+}
+.-mt-10 {
+ margin-top: -2.5rem;
+}
+.-mt-16 {
+ margin-top: -4rem;
+}
+.mr-2\.5 {
+ margin-right: 0.625rem;
+}
+.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;
+}
+.inline-grid {
+ display: inline-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-\[1026px\] {
+ height: 1026px;
+}
+.h-9 {
+ height: 2.25rem;
+}
+.h-3\.5 {
+ height: 0.875rem;
+}
+.h-3 {
+ height: 0.75rem;
+}
+.h-\[450px\] {
+ height: 450px;
+}
+.h-7 {
+ height: 1.75rem;
+}
+.h-4 {
+ height: 1rem;
+}
+.h-\[120px\] {
+ height: 120px;
+}
+.h-2 {
+ height: 0.5rem;
+}
+.h-64 {
+ height: 16rem;
+}
+.h-24 {
+ height: 6rem;
+}
+.h-1\/3 {
+ height: 33.333333%;
+}
+.h-96 {
+ height: 24rem;
+}
+.h-0\.5 {
+ height: 0.125rem;
+}
+.h-0 {
+ height: 0px;
+}
+.h-56 {
+ height: 14rem;
+}
+.h-\[350px\] {
+ height: 350px;
+}
+.h-\[250px\] {
+ height: 250px;
+}
+.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: 0.125rem;
+}
+.w-0 {
+ width: 0px;
+}
+.w-10 {
+ width: 2.5rem;
+}
+.w-\[1026px\] {
+ width: 1026px;
+}
+.w-9 {
+ width: 2.25rem;
+}
+.w-3\.5 {
+ width: 0.875rem;
+}
+.w-3 {
+ width: 0.75rem;
+}
+.w-screen {
+ width: 100vw;
+}
+.w-4 {
+ width: 1rem;
+}
+.w-60 {
+ width: 15rem;
+}
+.w-3\/4 {
+ width: 75%;
+}
+.w-5\/6 {
+ width: 83.333333%;
+}
+.w-2 {
+ width: 0.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-11 {
+ width: 2.75rem;
+}
+.min-w-0 {
+ min-width: 0px;
+}
+.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;
+}
+.flex-none {
+ flex: none;
+}
+.flex-1 {
+ flex: 1 1 0%;
+}
+.flex-shrink-0 {
+ flex-shrink: 0;
+}
+.shrink-0 {
+ flex-shrink: 0;
+}
+.flex-grow {
+ flex-grow: 1;
+}
+.origin-top-right {
+ transform-origin: top right;
+}
+.origin-top {
+ transform-origin: top;
+}
+.-translate-x-1\/3 {
+ --tw-translate-x: -33.333333%;
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
+}
+.translate-x-full {
+ --tw-translate-x: 100%;
+ 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;
+ 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-2 {
+ --tw-translate-y: 0.5rem;
+ 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;
+ 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-7 {
+ --tw-translate-y: 1.75rem;
+ 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;
+ 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-1 {
+ --tw-translate-y: 0.25rem;
+ 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;
+ 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-4 {
+ --tw-translate-y: 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));
+}
+.-translate-y-12 {
+ --tw-translate-y: -3rem;
+ 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-1\/2 {
+ --tw-translate-y: -50%;
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
+}
+.rotate-45 {
+ --tw-rotate: 45deg;
+ 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;
+ 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-0 {
+ --tw-rotate: 0deg;
+ 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-95 {
+ --tw-scale-x: .95;
+ --tw-scale-y: .95;
+ 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;
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
+}
+.transform {
+ 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(360deg);
+ }
+}
+@keyframes spin {
+
+ to {
+ transform: rotate(360deg);
+ }
+}
+.animate-spin {
+ -webkit-animation: spin 1s linear infinite;
+ animation: spin 1s linear infinite;
+}
+@keyframes spin {
+
+ to {
+ transform: rotate(360deg);
+ }
+}
+.animate-spin-slow {
+ -webkit-animation: spin 4s linear infinite;
+ animation: spin 4s linear infinite;
+}
+@-webkit-keyframes spin-reverse {
+
+ to {
+ transform: rotate(-360deg);
+ }
+}
+@keyframes spin-reverse {
+
+ to {
+ transform: rotate(-360deg);
+ }
+}
+.animate-spin-reverse-slower {
+ -webkit-animation: spin-reverse 6s linear infinite;
+ animation: spin-reverse 6s linear infinite;
+}
+@-webkit-keyframes scroll {
+
+ from {
+ transform: translateX(0);
+ }
+
+ to {
+ transform: translateX(-100%);
+ }
+}
+@keyframes scroll {
+
+ from {
+ transform: translateX(0);
+ }
+
+ to {
+ transform: translateX(-100%);
+ }
+}
+.animate-scroll-slow {
+ -webkit-animation: scroll 30s linear infinite;
+ animation: scroll 30s linear infinite;
+}
+@-webkit-keyframes pulse {
+
+ 50% {
+ opacity: .5;
+ }
+}
+@keyframes pulse {
+
+ 50% {
+ opacity: .5;
+ }
+}
+.animate-pulse {
+ -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
+}
+.cursor-pointer {
+ cursor: pointer;
+}
+.cursor-text {
+ cursor: text;
+}
+.cursor-default {
+ cursor: default;
+}
+.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-9 {
+ grid-template-columns: repeat(9, minmax(0, 1fr));
+}
+.grid-cols-12 {
+ grid-template-columns: repeat(12, 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: 0.5rem;
+}
+.gap-1 {
+ gap: 0.25rem;
+}
+.gap-6 {
+ gap: 1.5rem;
+}
+.gap-4 {
+ gap: 1rem;
+}
+.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: 0.5rem;
+ column-gap: 0.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: 0.75rem;
+ column-gap: 0.75rem;
+}
+.gap-x-4 {
+ -moz-column-gap: 1rem;
+ column-gap: 1rem;
+}
+.gap-y-6 {
+ row-gap: 1.5rem;
+}
+.space-y-12 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-y-reverse: 0;
+ margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
+ margin-bottom: calc(3rem * var(--tw-space-y-reverse));
+}
+.space-y-4 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-y-reverse: 0;
+ margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
+ margin-bottom: calc(1rem * var(--tw-space-y-reverse));
+}
+.space-y-1 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-y-reverse: 0;
+ margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
+ margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
+}
+.space-x-5 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-right: calc(1.25rem * var(--tw-space-x-reverse));
+ margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
+}
+.space-x-1\.5 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-right: calc(0.375rem * var(--tw-space-x-reverse));
+ margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)));
+}
+.space-x-1 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-right: calc(0.25rem * var(--tw-space-x-reverse));
+ margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
+}
+.space-y-6 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-y-reverse: 0;
+ margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
+ margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
+}
+.space-x-4 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-right: calc(1rem * var(--tw-space-x-reverse));
+ margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
+}
+.space-y-8 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-y-reverse: 0;
+ margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
+ margin-bottom: calc(2rem * var(--tw-space-y-reverse));
+}
+.space-y-5 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-y-reverse: 0;
+ margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
+ margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
+}
+.space-x-3 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-right: calc(0.75rem * var(--tw-space-x-reverse));
+ margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
+}
+.space-x-20 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-right: calc(5rem * var(--tw-space-x-reverse));
+ margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse)));
+}
+.space-x-2 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-right: calc(0.5rem * var(--tw-space-x-reverse));
+ margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
+}
+.-space-x-px > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-right: calc(-1px * var(--tw-space-x-reverse));
+ margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse)));
+}
+.space-y-10 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-y-reverse: 0;
+ margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
+ margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
+}
+.space-y-3 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-y-reverse: 0;
+ margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
+ margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
+}
+.-space-x-2 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-right: calc(-0.5rem * var(--tw-space-x-reverse));
+ margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse)));
+}
+.space-y-2 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-y-reverse: 0;
+ margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
+ margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
+}
+.space-x-6 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-right: calc(1.5rem * var(--tw-space-x-reverse));
+ margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
+}
+.space-x-8 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-right: calc(2rem * var(--tw-space-x-reverse));
+ margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
+}
+.space-x-10 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-right: calc(2.5rem * var(--tw-space-x-reverse));
+ margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse)));
+}
+.divide-y > :not([hidden]) ~ :not([hidden]) {
+ --tw-divide-y-reverse: 0;
+ border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
+ border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
+}
+.divide-x > :not([hidden]) ~ :not([hidden]) {
+ --tw-divide-x-reverse: 0;
+ border-right-width: calc(1px * var(--tw-divide-x-reverse));
+ border-left-width: calc(1px * calc(1 - 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-gray-200 > :not([hidden]) ~ :not([hidden]) {
+ --tw-divide-opacity: 1;
+ border-color: rgb(229 231 235 / var(--tw-divide-opacity));
+}
+.self-start {
+ align-self: flex-start;
+}
+.self-center {
+ align-self: center;
+}
+.overflow-hidden {
+ overflow: hidden;
+}
+.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;
+}
+.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: 0.5rem;
+}
+.rounded-md {
+ border-radius: 0.375rem;
+}
+.rounded-full {
+ border-radius: 9999px;
+}
+.rounded {
+ border-radius: 0.25rem;
+}
+.rounded-sm {
+ border-radius: 0.125rem;
+}
+.rounded-none {
+ border-radius: 0px;
+}
+.rounded-2xl {
+ border-radius: 1rem;
+}
+.rounded-t-lg {
+ border-top-left-radius: 0.5rem;
+ border-top-right-radius: 0.5rem;
+}
+.rounded-l-md {
+ border-top-left-radius: 0.375rem;
+ border-bottom-left-radius: 0.375rem;
+}
+.rounded-r-md {
+ border-top-right-radius: 0.375rem;
+ border-bottom-right-radius: 0.375rem;
+}
+.rounded-l-lg {
+ border-top-left-radius: 0.5rem;
+ border-bottom-left-radius: 0.5rem;
+}
+.rounded-r-lg {
+ border-top-right-radius: 0.5rem;
+ border-bottom-right-radius: 0.5rem;
+}
+.rounded-b-lg {
+ border-bottom-right-radius: 0.5rem;
+ border-bottom-left-radius: 0.5rem;
+}
+.rounded-tl {
+ border-top-left-radius: 0.25rem;
+}
+.rounded-tl-sm {
+ border-top-left-radius: 0.125rem;
+}
+.rounded-tr-lg {
+ border-top-right-radius: 0.5rem;
+}
+.rounded-br-lg {
+ border-bottom-right-radius: 0.5rem;
+}
+.border {
+ border-width: 1px;
+}
+.border-0 {
+ border-width: 0px;
+}
+.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: 0px;
+}
+.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-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: rgb(252 165 165 / var(--tw-border-opacity));
+}
+.border-green-500 {
+ --tw-border-opacity: 1;
+ border-color: rgb(16 185 129 / var(--tw-border-opacity));
+}
+.border-white {
+ --tw-border-opacity: 1;
+ border-color: rgb(255 255 255 / var(--tw-border-opacity));
+}
+.border-gray-300 {
+ --tw-border-opacity: 1;
+ border-color: rgb(209 213 219 / var(--tw-border-opacity));
+}
+.border-gray-800 {
+ --tw-border-opacity: 1;
+ border-color: rgb(31 41 55 / var(--tw-border-opacity));
+}
+.border-gray-200 {
+ --tw-border-opacity: 1;
+ border-color: rgb(229 231 235 / var(--tw-border-opacity));
+}
+.bg-skin-button {
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-button-default), var(--tw-bg-opacity));
+}
+.bg-primary-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(16 185 129 / var(--tw-bg-opacity));
+}
+.bg-gray-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(55 65 81 / var(--tw-bg-opacity));
+}
+.bg-white {
+ --tw-bg-opacity: 1;
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity));
+}
+.bg-black {
+ --tw-bg-opacity: 1;
+ background-color: rgb(22 27 34 / var(--tw-bg-opacity));
+}
+.bg-slate-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(100 116 139 / var(--tw-bg-opacity));
+}
+.bg-gray-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(107 114 128 / var(--tw-bg-opacity));
+}
+.bg-zinc-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(113 113 122 / var(--tw-bg-opacity));
+}
+.bg-neutral-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(115 115 115 / var(--tw-bg-opacity));
+}
+.bg-stone-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(120 113 108 / var(--tw-bg-opacity));
+}
+.bg-red-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(239 68 68 / var(--tw-bg-opacity));
+}
+.bg-orange-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(249 115 22 / var(--tw-bg-opacity));
+}
+.bg-amber-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(245 158 11 / var(--tw-bg-opacity));
+}
+.bg-lime-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(132 204 22 / var(--tw-bg-opacity));
+}
+.bg-green-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(16 185 129 / var(--tw-bg-opacity));
+}
+.bg-emerald-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(16 185 129 / var(--tw-bg-opacity));
+}
+.bg-teal-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(20 184 166 / var(--tw-bg-opacity));
+}
+.bg-cyan-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(6 182 212 / var(--tw-bg-opacity));
+}
+.bg-sky-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(14 165 233 / var(--tw-bg-opacity));
+}
+.bg-blue-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(59 130 246 / var(--tw-bg-opacity));
+}
+.bg-indigo-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(99 102 241 / var(--tw-bg-opacity));
+}
+.bg-violet-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(139 92 246 / var(--tw-bg-opacity));
+}
+.bg-purple-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(168 85 247 / var(--tw-bg-opacity));
+}
+.bg-fuchsia-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(217 70 239 / var(--tw-bg-opacity));
+}
+.bg-pink-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(236 72 153 / var(--tw-bg-opacity));
+}
+.bg-rose-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(244 63 94 / var(--tw-bg-opacity));
+}
+.bg-skin-input {
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-input-fill), var(--tw-bg-opacity));
+}
+.bg-green-50 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(236 253 245 / var(--tw-bg-opacity));
+}
+.bg-skin-card {
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity));
+}
+.bg-green-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(4 120 87 / var(--tw-bg-opacity));
+}
+.bg-flag-green {
+ --tw-bg-opacity: 1;
+ background-color: rgb(9 145 112 / var(--tw-bg-opacity));
+}
+.bg-green-600 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(5 150 105 / var(--tw-bg-opacity));
+}
+.bg-skin-card-gray {
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-card-gray), var(--tw-bg-opacity));
+}
+.bg-skin-body {
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-body-fill), var(--tw-bg-opacity));
+}
+.bg-skin-menu {
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-menu-fill), var(--tw-bg-opacity));
+}
+.bg-red-50 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(254 242 242 / var(--tw-bg-opacity));
+}
+.bg-green-100 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(209 250 229 / var(--tw-bg-opacity));
+}
+.bg-blue-50 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(239 246 255 / var(--tw-bg-opacity));
+}
+.bg-skin-card-muted {
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-card-muted-fill), var(--tw-bg-opacity));
+}
+.bg-skin-button-hover {
+ --tw-bg-opacity: 1;
+ 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: rgb(219 234 254 / var(--tw-bg-opacity));
+}
+.bg-skin-footer {
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-footer-fill), var(--tw-bg-opacity));
+}
+.bg-red-100 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(254 226 226 / var(--tw-bg-opacity));
+}
+.bg-red-400 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(248 113 113 / var(--tw-bg-opacity));
+}
+.bg-skin-primary {
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-text-primary), var(--tw-bg-opacity));
+}
+.bg-flag-red {
+ --tw-bg-opacity: 1;
+ background-color: rgb(226 27 48 / var(--tw-bg-opacity));
+}
+.bg-yellow-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(234 179 8 / var(--tw-bg-opacity));
+}
+.bg-yellow-100 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(254 249 195 / var(--tw-bg-opacity));
+}
+.bg-skin-link {
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-link-fill), var(--tw-bg-opacity));
+}
+.bg-yellow-50 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(254 252 232 / var(--tw-bg-opacity));
+}
+.bg-gray-100 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(243 244 246 / var(--tw-bg-opacity));
+}
+.bg-gray-900 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(17 24 39 / var(--tw-bg-opacity));
+}
+.bg-gray-800 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(31 41 55 / var(--tw-bg-opacity));
+}
+.bg-gray-50 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(249 250 251 / var(--tw-bg-opacity));
+}
+.bg-primary-50 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(236 253 245 / var(--tw-bg-opacity));
+}
+.bg-flag-yellow {
+ --tw-bg-opacity: 1;
+ background-color: rgb(255 220 68 / var(--tw-bg-opacity));
+}
+.bg-skin-card\/50 {
+ background-color: rgba(var(--color-card-fill), 0.5);
+}
+.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-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));
+}
+.bg-gradient-to-t {
+ background-image: linear-gradient(to top, var(--tw-gradient-stops));
+}
+.from-green-500 {
+ --tw-gradient-from: #10b981;
+ --tw-gradient-to: rgb(16 185 129 / 0);
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
+}
+.from-black {
+ --tw-gradient-from: #161B22;
+ --tw-gradient-to: rgb(22 27 34 / 0);
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
+}
+.from-\[\#413626\] {
+ --tw-gradient-from: #413626;
+ --tw-gradient-to: rgb(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: rgb(255 220 68 / 0);
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
+}
+.from-card {
+ --tw-gradient-from: rgb(var(--color-card-fill));
+ --tw-gradient-to: rgb(var(--color-card-fill) / 0);
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
+}
+.from-transparent {
+ --tw-gradient-from: transparent;
+ --tw-gradient-to: rgb(0 0 0 / 0);
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
+}
+.via-indigo-600 {
+ --tw-gradient-to: rgb(79 70 229 / 0);
+ --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to);
+}
+.via-card {
+ --tw-gradient-to: rgb(var(--color-card-fill) / 0);
+ --tw-gradient-stops: var(--tw-gradient-from), rgb(var(--color-card-fill)), var(--tw-gradient-to);
+}
+.to-blue-500 {
+ --tw-gradient-to: #3b82f6;
+}
+.to-\[\#7E5D36\] {
+ --tw-gradient-to: #7E5D36;
+}
+.to-flag-red {
+ --tw-gradient-to: #e21b30;
+}
+.to-body {
+ --tw-gradient-to: rgb(var(--color-body-fill));
+}
+.fill-current {
+ fill: currentColor;
+}
+.stroke-gray-300\/70 {
+ stroke: rgb(209 213 219 / 0.7);
+}
+.stroke-current {
+ stroke: currentColor;
+}
+.object-cover {
+ -o-object-fit: cover;
+ object-fit: cover;
+}
+.p-6 {
+ padding: 1.5rem;
+}
+.p-1 {
+ padding: 0.25rem;
+}
+.p-4 {
+ padding: 1rem;
+}
+.p-5 {
+ padding: 1.25rem;
+}
+.p-2 {
+ padding: 0.5rem;
+}
+.p-1\.5 {
+ padding: 0.375rem;
+}
+.p-2\.5 {
+ padding: 0.625rem;
+}
+.p-3 {
+ padding: 0.75rem;
+}
+.p-8 {
+ padding: 2rem;
+}
+.px-3 {
+ padding-left: 0.75rem;
+ padding-right: 0.75rem;
+}
+.py-2 {
+ padding-top: 0.5rem;
+ padding-bottom: 0.5rem;
+}
+.py-8 {
+ padding-top: 2rem;
+ padding-bottom: 2rem;
+}
+.px-2 {
+ padding-left: 0.5rem;
+ padding-right: 0.5rem;
+}
+.px-4 {
+ padding-left: 1rem;
+ padding-right: 1rem;
+}
+.py-10 {
+ padding-top: 2.5rem;
+ padding-bottom: 2.5rem;
+}
+.py-0\.5 {
+ padding-top: 0.125rem;
+ padding-bottom: 0.125rem;
+}
+.py-0 {
+ padding-top: 0px;
+ padding-bottom: 0px;
+}
+.py-12 {
+ padding-top: 3rem;
+ padding-bottom: 3rem;
+}
+.py-14 {
+ padding-top: 3.5rem;
+ padding-bottom: 3.5rem;
+}
+.px-2\.5 {
+ padding-left: 0.625rem;
+ padding-right: 0.625rem;
+}
+.px-0\.5 {
+ padding-left: 0.125rem;
+ padding-right: 0.125rem;
+}
+.py-px {
+ padding-top: 1px;
+ padding-bottom: 1px;
+}
+.px-0 {
+ padding-left: 0px;
+ padding-right: 0px;
+}
+.py-1\.5 {
+ padding-top: 0.375rem;
+ padding-bottom: 0.375rem;
+}
+.py-1 {
+ padding-top: 0.25rem;
+ padding-bottom: 0.25rem;
+}
+.py-6 {
+ padding-top: 1.5rem;
+ padding-bottom: 1.5rem;
+}
+.px-1\.5 {
+ padding-left: 0.375rem;
+ padding-right: 0.375rem;
+}
+.px-1 {
+ padding-left: 0.25rem;
+ padding-right: 0.25rem;
+}
+.py-16 {
+ padding-top: 4rem;
+ padding-bottom: 4rem;
+}
+.px-6 {
+ padding-left: 1.5rem;
+ padding-right: 1.5rem;
+}
+.py-4 {
+ padding-top: 1rem;
+ padding-bottom: 1rem;
+}
+.px-3\.5 {
+ padding-left: 0.875rem;
+ padding-right: 0.875rem;
+}
+.py-3 {
+ padding-top: 0.75rem;
+ padding-bottom: 0.75rem;
+}
+.px-5 {
+ padding-left: 1.25rem;
+ padding-right: 1.25rem;
+}
+.py-2\.5 {
+ padding-top: 0.625rem;
+ padding-bottom: 0.625rem;
+}
+.py-5 {
+ padding-top: 1.25rem;
+ padding-bottom: 1.25rem;
+}
+.py-3\.5 {
+ padding-top: 0.875rem;
+ padding-bottom: 0.875rem;
+}
+.px-10 {
+ padding-left: 2.5rem;
+ padding-right: 2.5rem;
+}
+.pt-12 {
+ padding-top: 3rem;
+}
+.pr-2 {
+ padding-right: 0.5rem;
+}
+.pr-1 {
+ padding-right: 0.25rem;
+}
+.pb-64 {
+ padding-bottom: 16rem;
+}
+.pb-2 {
+ padding-bottom: 0.5rem;
+}
+.pl-2 {
+ padding-left: 0.5rem;
+}
+.pt-6 {
+ padding-top: 1.5rem;
+}
+.pt-5 {
+ padding-top: 1.25rem;
+}
+.pl-10 {
+ padding-left: 2.5rem;
+}
+.pl-3 {
+ padding-left: 0.75rem;
+}
+.pb-5 {
+ padding-bottom: 1.25rem;
+}
+.pt-0\.5 {
+ padding-top: 0.125rem;
+}
+.pt-0 {
+ padding-top: 0px;
+}
+.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: 0.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: 0.75rem;
+}
+.pr-4 {
+ padding-right: 1rem;
+}
+.pr-3 {
+ padding-right: 0.75rem;
+}
+.pb-6 {
+ padding-bottom: 1.5rem;
+}
+.pt-8 {
+ padding-top: 2rem;
+}
+.pb-20 {
+ padding-bottom: 5rem;
+}
+.pr-5 {
+ padding-right: 1.25rem;
+}
+.pl-16 {
+ padding-left: 4rem;
+}
+.pb-12 {
+ padding-bottom: 3rem;
+}
+.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, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "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, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "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: 0.75rem;
+ line-height: 1rem;
+}
+.text-sm {
+ font-size: 0.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;
+}
+.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: -0.025em;
+}
+.tracking-wide {
+ letter-spacing: 0.025em;
+}
+.tracking-wider {
+ letter-spacing: 0.05em;
+}
+.tracking-widest {
+ letter-spacing: 0.1em;
+}
+.tracking-tighter {
+ letter-spacing: -0.05em;
+}
+.\!text-skin-primary {
+ --tw-text-opacity: 1 !important;
+ color: rgba(var(--color-text-primary), var(--tw-text-opacity)) !important;
+}
+.text-skin-base {
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-base), var(--tw-text-opacity));
+}
+.text-white {
+ --tw-text-opacity: 1;
+ color: rgb(255 255 255 / var(--tw-text-opacity));
+}
+.text-slate-500 {
+ --tw-text-opacity: 1;
+ color: rgb(100 116 139 / var(--tw-text-opacity));
+}
+.text-slate-100 {
+ --tw-text-opacity: 1;
+ color: rgb(241 245 249 / var(--tw-text-opacity));
+}
+.text-skin-inverted {
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-inverted), var(--tw-text-opacity));
+}
+.text-skin-primary {
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-primary), var(--tw-text-opacity));
+}
+.text-green-900 {
+ --tw-text-opacity: 1;
+ color: rgb(6 78 59 / var(--tw-text-opacity));
+}
+.text-green-600 {
+ --tw-text-opacity: 1;
+ color: rgb(5 150 105 / var(--tw-text-opacity));
+}
+.text-skin-muted {
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-muted), var(--tw-text-opacity));
+}
+.text-flag-green {
+ --tw-text-opacity: 1;
+ color: rgb(9 145 112 / var(--tw-text-opacity));
+}
+.text-green-300 {
+ --tw-text-opacity: 1;
+ color: rgb(110 231 183 / var(--tw-text-opacity));
+}
+.text-gray-400 {
+ --tw-text-opacity: 1;
+ color: rgb(156 163 175 / var(--tw-text-opacity));
+}
+.text-gray-500 {
+ --tw-text-opacity: 1;
+ color: rgb(107 114 128 / var(--tw-text-opacity));
+}
+.text-rose-500 {
+ --tw-text-opacity: 1;
+ color: rgb(244 63 94 / var(--tw-text-opacity));
+}
+.text-skin-inverted-muted {
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-inverted-muted), var(--tw-text-opacity));
+}
+.text-red-500 {
+ --tw-text-opacity: 1;
+ color: rgb(239 68 68 / var(--tw-text-opacity));
+}
+.text-green-500 {
+ --tw-text-opacity: 1;
+ color: rgb(16 185 129 / var(--tw-text-opacity));
+}
+.text-green-400 {
+ --tw-text-opacity: 1;
+ color: rgb(52 211 153 / var(--tw-text-opacity));
+}
+.text-green-800 {
+ --tw-text-opacity: 1;
+ color: rgb(6 95 70 / var(--tw-text-opacity));
+}
+.text-red-600 {
+ --tw-text-opacity: 1;
+ color: rgb(220 38 38 / var(--tw-text-opacity));
+}
+.text-\[\#5865F2\] {
+ --tw-text-opacity: 1;
+ color: rgb(88 101 242 / var(--tw-text-opacity));
+}
+.text-red-400 {
+ --tw-text-opacity: 1;
+ color: rgb(248 113 113 / var(--tw-text-opacity));
+}
+.text-red-800 {
+ --tw-text-opacity: 1;
+ color: rgb(153 27 27 / var(--tw-text-opacity));
+}
+.text-blue-400 {
+ --tw-text-opacity: 1;
+ color: rgb(96 165 250 / var(--tw-text-opacity));
+}
+.text-blue-700 {
+ --tw-text-opacity: 1;
+ color: rgb(29 78 216 / var(--tw-text-opacity));
+}
+.text-red-700 {
+ --tw-text-opacity: 1;
+ color: rgb(185 28 28 / var(--tw-text-opacity));
+}
+.text-green-700 {
+ --tw-text-opacity: 1;
+ color: rgb(4 120 87 / var(--tw-text-opacity));
+}
+.text-skin-menu {
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-link-menu), var(--tw-text-opacity));
+}
+.text-gray-800 {
+ --tw-text-opacity: 1;
+ color: rgb(31 41 55 / var(--tw-text-opacity));
+}
+.text-\[\#1E9DEA\] {
+ --tw-text-opacity: 1;
+ color: rgb(30 157 234 / var(--tw-text-opacity));
+}
+.text-blue-800 {
+ --tw-text-opacity: 1;
+ color: rgb(30 64 175 / var(--tw-text-opacity));
+}
+.text-yellow-800 {
+ --tw-text-opacity: 1;
+ color: rgb(133 77 14 / var(--tw-text-opacity));
+}
+.text-skin-inverted-muted\/70 {
+ color: rgba(var(--color-text-inverted-muted), 0.7);
+}
+.text-skin-base\/60 {
+ color: rgba(var(--color-text-base), 0.6);
+}
+.text-skin-menu-hover {
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-link-menu-hover), var(--tw-text-opacity));
+}
+.text-yellow-500 {
+ --tw-text-opacity: 1;
+ color: rgb(234 179 8 / var(--tw-text-opacity));
+}
+.text-gray-300 {
+ --tw-text-opacity: 1;
+ color: rgb(209 213 219 / var(--tw-text-opacity));
+}
+.text-yellow-400 {
+ --tw-text-opacity: 1;
+ color: rgb(250 204 21 / var(--tw-text-opacity));
+}
+.text-yellow-700 {
+ --tw-text-opacity: 1;
+ color: rgb(161 98 7 / var(--tw-text-opacity));
+}
+.text-gray-700 {
+ --tw-text-opacity: 1;
+ color: rgb(55 65 81 / var(--tw-text-opacity));
+}
+.text-gray-200 {
+ --tw-text-opacity: 1;
+ color: rgb(229 231 235 / var(--tw-text-opacity));
+}
+.text-gray-100 {
+ --tw-text-opacity: 1;
+ color: rgb(243 244 246 / var(--tw-text-opacity));
+}
+.text-blue-500 {
+ --tw-text-opacity: 1;
+ color: rgb(59 130 246 / var(--tw-text-opacity));
+}
+.text-gray-900 {
+ --tw-text-opacity: 1;
+ color: rgb(17 24 39 / var(--tw-text-opacity));
+}
+.text-gray-600 {
+ --tw-text-opacity: 1;
+ color: rgb(75 85 99 / var(--tw-text-opacity));
+}
+.text-red-900 {
+ --tw-text-opacity: 1;
+ color: rgb(127 29 29 / var(--tw-text-opacity));
+}
+.text-primary-600 {
+ --tw-text-opacity: 1;
+ color: rgb(5 150 105 / var(--tw-text-opacity));
+}
+.text-primary-500 {
+ --tw-text-opacity: 1;
+ color: rgb(16 185 129 / var(--tw-text-opacity));
+}
+.text-flag-yellow {
+ --tw-text-opacity: 1;
+ color: rgb(255 220 68 / var(--tw-text-opacity));
+}
+.text-yellow-600 {
+ --tw-text-opacity: 1;
+ color: rgb(202 138 4 / var(--tw-text-opacity));
+}
+.text-primary-700 {
+ --tw-text-opacity: 1;
+ color: rgb(4 120 87 / var(--tw-text-opacity));
+}
+.text-yellow-900 {
+ --tw-text-opacity: 1;
+ color: rgb(113 63 18 / 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(var(--color-text-muted), var(--tw-placeholder-opacity));
+}
+.placeholder-skin-input:-ms-input-placeholder {
+ --tw-placeholder-opacity: 1;
+ color: rgba(var(--color-text-muted), var(--tw-placeholder-opacity));
+}
+.placeholder-skin-input::placeholder {
+ --tw-placeholder-opacity: 1;
+ color: rgba(var(--color-text-muted), var(--tw-placeholder-opacity));
+}
+.placeholder-red-300::-moz-placeholder {
+ --tw-placeholder-opacity: 1;
+ color: rgb(252 165 165 / var(--tw-placeholder-opacity));
+}
+.placeholder-red-300:-ms-input-placeholder {
+ --tw-placeholder-opacity: 1;
+ color: rgb(252 165 165 / var(--tw-placeholder-opacity));
+}
+.placeholder-red-300::placeholder {
+ --tw-placeholder-opacity: 1;
+ color: rgb(252 165 165 / var(--tw-placeholder-opacity));
+}
+.placeholder-gray-500::-moz-placeholder {
+ --tw-placeholder-opacity: 1;
+ color: rgb(107 114 128 / var(--tw-placeholder-opacity));
+}
+.placeholder-gray-500:-ms-input-placeholder {
+ --tw-placeholder-opacity: 1;
+ color: rgb(107 114 128 / var(--tw-placeholder-opacity));
+}
+.placeholder-gray-500::placeholder {
+ --tw-placeholder-opacity: 1;
+ color: rgb(107 114 128 / var(--tw-placeholder-opacity));
+}
+.opacity-25 {
+ opacity: 0.25;
+}
+.opacity-75 {
+ opacity: 0.75;
+}
+.opacity-0 {
+ opacity: 0;
+}
+.opacity-100 {
+ opacity: 1;
+}
+.opacity-70 {
+ opacity: 0.7;
+}
+.opacity-50 {
+ opacity: 0.5;
+}
+.opacity-20 {
+ opacity: 0.2;
+}
+.shadow-sm {
+ --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
+ --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
+}
+.shadow-lg {
+ --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
+ --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
+}
+.shadow {
+ --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
+ --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
+}
+.shadow-xl {
+ --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
+ --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
+}
+.shadow-md {
+ --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 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 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
+}
+.shadow-none {
+ --tw-shadow: 0 0 rgba(0,0,0,0);
+ --tw-shadow-colored: 0 0 rgba(0,0,0,0);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
+}
+.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);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
+}
+.ring-1 {
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
+}
+.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 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
+}
+.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);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
+}
+.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(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
+}
+.ring-primary-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity));
+}
+.ring-gray-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(55 65 81 / var(--tw-ring-opacity));
+}
+.ring-slate-200 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(226 232 240 / var(--tw-ring-opacity));
+}
+.ring-black {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(22 27 34 / var(--tw-ring-opacity));
+}
+.ring-slate-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(100 116 139 / var(--tw-ring-opacity));
+}
+.ring-gray-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity));
+}
+.ring-zinc-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(113 113 122 / var(--tw-ring-opacity));
+}
+.ring-neutral-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(115 115 115 / var(--tw-ring-opacity));
+}
+.ring-stone-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(120 113 108 / var(--tw-ring-opacity));
+}
+.ring-red-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity));
+}
+.ring-orange-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(249 115 22 / var(--tw-ring-opacity));
+}
+.ring-amber-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(245 158 11 / var(--tw-ring-opacity));
+}
+.ring-lime-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(132 204 22 / var(--tw-ring-opacity));
+}
+.ring-green-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity));
+}
+.ring-emerald-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity));
+}
+.ring-teal-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(20 184 166 / var(--tw-ring-opacity));
+}
+.ring-cyan-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(6 182 212 / var(--tw-ring-opacity));
+}
+.ring-sky-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(14 165 233 / var(--tw-ring-opacity));
+}
+.ring-blue-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
+}
+.ring-indigo-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity));
+}
+.ring-violet-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(139 92 246 / var(--tw-ring-opacity));
+}
+.ring-purple-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(168 85 247 / var(--tw-ring-opacity));
+}
+.ring-fuchsia-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(217 70 239 / var(--tw-ring-opacity));
+}
+.ring-pink-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(236 72 153 / var(--tw-ring-opacity));
+}
+.ring-rose-500 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(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: rgb(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: rgb(209 213 219 / var(--tw-ring-opacity));
+}
+.ring-opacity-5 {
+ --tw-ring-opacity: 0.05;
+}
+.blur-sm {
+ --tw-blur: blur(4px);
+ 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: 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);
+}
+.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);
+ -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);
+ -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-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-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(0.4, 0, 0.2, 1);
+ transition-duration: 150ms;
+}
+.transition-transform {
+ transition-property: transform;
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
+ transition-duration: 150ms;
+}
+.transition-all {
+ transition-property: all;
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
+ transition-duration: 150ms;
+}
+.transition-opacity {
+ transition-property: opacity;
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
+ transition-duration: 150ms;
+}
+.transition-colors {
+ 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(0.4, 0, 0.2, 1);
+ transition-duration: 150ms;
+}
+.delay-200 {
+ transition-delay: 200ms;
+}
+.duration-100 {
+ transition-duration: 100ms;
+}
+.duration-500 {
+ transition-duration: 500ms;
+}
+.duration-75 {
+ transition-duration: 75ms;
+}
+.duration-150 {
+ transition-duration: 150ms;
+}
+.duration-300 {
+ transition-duration: 300ms;
+}
+.duration-200 {
+ transition-duration: 200ms;
+}
+.ease-in-out {
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
+}
+.ease-out {
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
+}
+.ease-in {
+ transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
+}
+.ease-linear {
+ transition-timing-function: linear;
+}
+.line-clamp-2 {
+ overflow: hidden;
+ display: -webkit-box;
+ -webkit-box-orient: vertical;
+ -webkit-line-clamp: 2;
+}
+.\[mask-image\:linear-gradient\(to_bottom\2c white_20\%\2c transparent_75\%\)\] {
+ -webkit-mask-image: linear-gradient(to bottom,white 20%,transparent 75%);
+ mask-image: linear-gradient(to bottom,white 20%,transparent 75%);
+}
+/*@import "christmas.css";*/
+
+: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 {
+ display: none;
+}
+
+.theme-dark .logo-white {
+ display: none;
+}
+
+.theme-dark .logo-dark {
+ display: block;
+}
+
+.animate-scroll-slow:nth-child(2) {
+ -webkit-animation-duration: 40s;
+ animation-duration: 40s;
+ -webkit-animation-delay: 500ms;
+ animation-delay: 500ms;
+}
+
+.animate-scroll-slow:nth-child(3) {
+ -webkit-animation-duration: 50s;
+ animation-duration: 50s;
+ -webkit-animation-delay: 750ms;
+ animation-delay: 750ms;
+}
+
+.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 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
+}
+
+.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 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
+}
+
+.focus-within\:ring-green-500[focus-within] {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity));
+}
+
+.focus-within\:ring-green-500:focus-within {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(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: rgb(110 231 183 / var(--tw-border-opacity));
+}
+
+.hover\:border-green-600:hover {
+ --tw-border-opacity: 1;
+ border-color: rgb(5 150 105 / var(--tw-border-opacity));
+}
+
+.hover\:border-green-500:hover {
+ --tw-border-opacity: 1;
+ border-color: rgb(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\:bg-skin-button-hover:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-card-muted-fill), var(--tw-bg-opacity));
+}
+
+.hover\:bg-primary-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(5 150 105 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-gray-900:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(17 24 39 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-slate-50:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(248 250 252 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-slate-900:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(15 23 42 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-slate-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(71 85 105 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-gray-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(75 85 99 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-zinc-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(82 82 91 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-neutral-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(82 82 82 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-stone-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(87 83 78 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-red-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(220 38 38 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-orange-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(234 88 12 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-amber-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(217 119 6 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-lime-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(101 163 13 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-green-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(5 150 105 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-emerald-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(5 150 105 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-teal-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(13 148 136 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-cyan-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(8 145 178 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-sky-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(2 132 199 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-blue-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(37 99 235 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-indigo-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(79 70 229 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-violet-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(124 58 237 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-purple-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(147 51 234 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-fuchsia-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(192 38 211 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-pink-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(219 39 119 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-rose-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(225 29 72 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-green-700:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(4 120 87 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-skin-card-muted:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-card-muted-fill), var(--tw-bg-opacity));
+}
+
+.hover\:bg-skin-card:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity));
+}
+
+.hover\:bg-skin-footer:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-footer-fill), var(--tw-bg-opacity));
+}
+
+.hover\:bg-skin-body:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-body-fill), var(--tw-bg-opacity));
+}
+
+.hover\:bg-skin-primary:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgba(var(--color-text-primary), var(--tw-bg-opacity));
+}
+
+.hover\:bg-gray-800:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(31 41 55 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-red-50:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(254 242 242 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-gray-50:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(249 250 251 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-gray-100:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(243 244 246 / var(--tw-bg-opacity));
+}
+
+.hover\:bg-primary-100:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(209 250 229 / var(--tw-bg-opacity));
+}
+
+.hover\:\!text-skin-primary-hover:hover {
+ --tw-text-opacity: 1 !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(var(--color-text-primary-hover), var(--tw-text-opacity));
+}
+
+.hover\:text-skin-base:hover {
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-base), var(--tw-text-opacity));
+}
+
+.hover\:text-green-600:hover {
+ --tw-text-opacity: 1;
+ color: rgb(5 150 105 / var(--tw-text-opacity));
+}
+
+.hover\:text-green-500:hover {
+ --tw-text-opacity: 1;
+ color: rgb(16 185 129 / var(--tw-text-opacity));
+}
+
+.hover\:text-rose-500:hover {
+ --tw-text-opacity: 1;
+ color: rgb(244 63 94 / var(--tw-text-opacity));
+}
+
+.hover\:text-skin-inverted-muted:hover {
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-inverted-muted), var(--tw-text-opacity));
+}
+
+.hover\:text-skin-inverted:hover {
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-inverted), var(--tw-text-opacity));
+}
+
+.hover\:text-skin-primary:hover {
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-primary), var(--tw-text-opacity));
+}
+
+.hover\:text-skin-menu-hover:hover {
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-link-menu-hover), var(--tw-text-opacity));
+}
+
+.hover\:text-blue-600:hover {
+ --tw-text-opacity: 1;
+ color: rgb(37 99 235 / var(--tw-text-opacity));
+}
+
+.hover\:text-red-500:hover {
+ --tw-text-opacity: 1;
+ color: rgb(239 68 68 / var(--tw-text-opacity));
+}
+
+.hover\:text-\[\#29aaec\]:hover {
+ --tw-text-opacity: 1;
+ color: rgb(41 170 236 / var(--tw-text-opacity));
+}
+
+.hover\:text-\[\#004182\]:hover {
+ --tw-text-opacity: 1;
+ color: rgb(0 65 130 / var(--tw-text-opacity));
+}
+
+.hover\:text-flag-green:hover {
+ --tw-text-opacity: 1;
+ color: rgb(9 145 112 / var(--tw-text-opacity));
+}
+
+.hover\:text-green-800:hover {
+ --tw-text-opacity: 1;
+ color: rgb(6 95 70 / var(--tw-text-opacity));
+}
+
+.hover\:text-white:hover {
+ --tw-text-opacity: 1;
+ color: rgb(255 255 255 / var(--tw-text-opacity));
+}
+
+.hover\:text-yellow-600:hover {
+ --tw-text-opacity: 1;
+ color: rgb(202 138 4 / var(--tw-text-opacity));
+}
+
+.hover\:text-green-900:hover {
+ --tw-text-opacity: 1;
+ color: rgb(6 78 59 / var(--tw-text-opacity));
+}
+
+.hover\:text-skin-muted:hover {
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-muted), var(--tw-text-opacity));
+}
+
+.hover\:text-gray-500:hover {
+ --tw-text-opacity: 1;
+ color: rgb(107 114 128 / var(--tw-text-opacity));
+}
+
+.hover\:text-gray-900:hover {
+ --tw-text-opacity: 1;
+ color: rgb(17 24 39 / var(--tw-text-opacity));
+}
+
+.hover\:text-primary-500:hover {
+ --tw-text-opacity: 1;
+ color: rgb(16 185 129 / var(--tw-text-opacity));
+}
+
+.hover\:underline:hover {
+ -webkit-text-decoration-line: underline;
+ text-decoration-line: underline;
+}
+
+.hover\:opacity-50:hover {
+ opacity: 0.5;
+}
+
+.hover\:ring-primary-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(5 150 105 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-gray-900:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(17 24 39 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-slate-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(71 85 105 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-gray-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(75 85 99 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-zinc-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(82 82 91 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-neutral-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(82 82 82 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-stone-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(87 83 78 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-red-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-orange-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(234 88 12 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-amber-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(217 119 6 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-lime-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(101 163 13 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-green-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(5 150 105 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-emerald-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(5 150 105 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-teal-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(13 148 136 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-cyan-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(8 145 178 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-sky-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(2 132 199 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-blue-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-indigo-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-violet-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(124 58 237 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-purple-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(147 51 234 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-fuchsia-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(192 38 211 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-pink-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(219 39 119 / var(--tw-ring-opacity));
+}
+
+.hover\:ring-rose-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(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: 0px;
+}
+
+.focus\:border-flag-green:focus {
+ --tw-border-opacity: 1;
+ border-color: rgb(9 145 112 / var(--tw-border-opacity));
+}
+
+.focus\:border-transparent:focus {
+ border-color: transparent;
+}
+
+.focus\:border-red-500:focus {
+ --tw-border-opacity: 1;
+ border-color: rgb(239 68 68 / var(--tw-border-opacity));
+}
+
+.focus\:border-green-500:focus {
+ --tw-border-opacity: 1;
+ border-color: rgb(16 185 129 / 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: rgb(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: rgb(147 197 253 / var(--tw-border-opacity));
+}
+
+.focus\:\!text-skin-primary-hover:focus {
+ --tw-text-opacity: 1 !important;
+ color: rgba(var(--color-text-primary-hover), var(--tw-text-opacity)) !important;
+}
+
+.focus\:text-skin-base:focus {
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-base), var(--tw-text-opacity));
+}
+
+.focus\:text-green-600:focus {
+ --tw-text-opacity: 1;
+ color: rgb(5 150 105 / 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(var(--color-text-base), var(--tw-placeholder-opacity));
+}
+
+.focus\:placeholder-skin-input-focus:focus:-ms-input-placeholder {
+ --tw-placeholder-opacity: 1;
+ color: rgba(var(--color-text-base), var(--tw-placeholder-opacity));
+}
+
+.focus\:placeholder-skin-input-focus:focus::placeholder {
+ --tw-placeholder-opacity: 1;
+ color: rgba(var(--color-text-base), var(--tw-placeholder-opacity));
+}
+
+.focus\:shadow-none:focus {
+ --tw-shadow: 0 0 rgba(0,0,0,0);
+ --tw-shadow-colored: 0 0 rgba(0,0,0,0);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
+}
+
+.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);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
+}
+
+.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);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
+}
+
+.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(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
+}
+
+.focus\:ring:focus {
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
+}
+
+.focus\:ring-inset:focus {
+ --tw-ring-inset: inset;
+}
+
+.focus\:ring-green-500:focus {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity));
+}
+
+.focus\:ring-flag-green:focus {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(9 145 112 / var(--tw-ring-opacity));
+}
+
+.focus\:ring-transparent:focus {
+ --tw-ring-color: transparent;
+}
+
+.focus\:ring-red-500:focus {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity));
+}
+
+.focus\:ring-blue-600:focus {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity));
+}
+
+.focus\:ring-gray-200:focus {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity));
+}
+
+.focus\:ring-opacity-50:focus {
+ --tw-ring-opacity: 0.5;
+}
+
+.focus\:ring-offset-2:focus {
+ --tw-ring-offset-width: 2px;
+}
+
+.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(var(--color-footer-fill), var(--tw-bg-opacity));
+}
+
+.active\:bg-gray-100:active {
+ --tw-bg-opacity: 1;
+ background-color: rgb(243 244 246 / var(--tw-bg-opacity));
+}
+
+.active\:text-skin-base:active {
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-base), var(--tw-text-opacity));
+}
+
+.active\:text-gray-700:active {
+ --tw-text-opacity: 1;
+ color: rgb(55 65 81 / var(--tw-text-opacity));
+}
+
+.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(var(--color-card-gray), var(--tw-bg-opacity));
+}
+
+.group:hover .group-hover\:text-green-400 {
+ --tw-text-opacity: 1;
+ color: rgb(52 211 153 / var(--tw-text-opacity));
+}
+
+.group:hover .group-hover\:text-skin-primary {
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-primary), var(--tw-text-opacity));
+}
+
+.group:hover .group-hover\:text-skin-base {
+ --tw-text-opacity: 1;
+ color: rgba(var(--color-text-base), var(--tw-text-opacity));
+}
+
+.group:hover .group-hover\:text-green-600 {
+ --tw-text-opacity: 1;
+ color: rgb(5 150 105 / var(--tw-text-opacity));
+}
+
+.group:hover .group-hover\:text-white {
+ --tw-text-opacity: 1;
+ color: rgb(255 255 255 / var(--tw-text-opacity));
+}
+
+.group:hover .group-hover\:text-green-200 {
+ --tw-text-opacity: 1;
+ color: rgb(167 243 208 / 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: 0.75;
+}
+
+.dark .dark\:border-slate-700 {
+ --tw-border-opacity: 1;
+ border-color: rgb(51 65 85 / var(--tw-border-opacity));
+}
+
+.dark .dark\:border-gray-700 {
+ --tw-border-opacity: 1;
+ border-color: rgb(55 65 81 / var(--tw-border-opacity));
+}
+
+.dark .dark\:bg-primary-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(4 120 87 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-gray-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(55 65 81 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-slate-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(51 65 85 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-zinc-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(63 63 70 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-neutral-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(64 64 64 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-stone-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(68 64 60 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-red-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(185 28 28 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-orange-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(194 65 12 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-amber-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(180 83 9 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-lime-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(77 124 15 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-green-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(4 120 87 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-emerald-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(4 120 87 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-teal-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(15 118 110 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-cyan-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(14 116 144 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-sky-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(3 105 161 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-blue-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(29 78 216 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-indigo-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(67 56 202 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-violet-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(109 40 217 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-purple-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(126 34 206 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-fuchsia-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(162 28 175 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-pink-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(190 24 93 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:bg-rose-700 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(190 18 60 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:text-slate-200 {
+ --tw-text-opacity: 1;
+ color: rgb(226 232 240 / var(--tw-text-opacity));
+}
+
+.dark .dark\:ring-primary-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(4 120 87 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-gray-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(55 65 81 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-slate-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(51 65 85 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-zinc-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(63 63 70 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-neutral-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(64 64 64 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-stone-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(68 64 60 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-red-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(185 28 28 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-orange-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(194 65 12 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-amber-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(180 83 9 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-lime-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(77 124 15 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-green-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(4 120 87 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-emerald-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(4 120 87 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-teal-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(15 118 110 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-cyan-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(14 116 144 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-sky-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(3 105 161 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-blue-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(29 78 216 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-indigo-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(67 56 202 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-violet-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(109 40 217 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-purple-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(126 34 206 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-fuchsia-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(162 28 175 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-pink-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(190 24 93 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:ring-rose-700 {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(190 18 60 / 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\:hover\:bg-primary-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(5 150 105 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-gray-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(75 85 99 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-slate-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(71 85 105 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-zinc-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(82 82 91 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-neutral-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(82 82 82 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-stone-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(87 83 78 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-red-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(220 38 38 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-orange-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(234 88 12 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-amber-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(217 119 6 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-lime-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(101 163 13 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-green-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(5 150 105 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-emerald-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(5 150 105 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-teal-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(13 148 136 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-cyan-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(8 145 178 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-sky-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(2 132 199 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-blue-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(37 99 235 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-indigo-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(79 70 229 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-violet-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(124 58 237 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-purple-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(147 51 234 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-fuchsia-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(192 38 211 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-pink-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(219 39 119 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:bg-rose-600:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(225 29 72 / var(--tw-bg-opacity));
+}
+
+.dark .dark\:hover\:ring-primary-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(5 150 105 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-gray-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(75 85 99 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-slate-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(71 85 105 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-zinc-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(82 82 91 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-neutral-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(82 82 82 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-stone-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(87 83 78 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-red-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-orange-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(234 88 12 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-amber-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(217 119 6 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-lime-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(101 163 13 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-green-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(5 150 105 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-emerald-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(5 150 105 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-teal-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(13 148 136 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-cyan-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(8 145 178 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-sky-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(2 132 199 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-blue-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-indigo-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-violet-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(124 58 237 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-purple-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(147 51 234 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-fuchsia-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(192 38 211 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-pink-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(219 39 119 / var(--tw-ring-opacity));
+}
+
+.dark .dark\:hover\:ring-rose-600:hover {
+ --tw-ring-opacity: 1;
+ --tw-ring-color: rgb(225 29 72 / var(--tw-ring-opacity));
+}
+
+@media (min-width: 640px) {
+
+ .sm\:top-16 {
+ top: 4rem;
+ }
+
+ .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: 0px;
+ margin-right: 0px;
+ }
+
+ .sm\:my-8 {
+ margin-top: 2rem;
+ margin-bottom: 2rem;
+ }
+
+ .sm\:mt-0 {
+ margin-top: 0px;
+ }
+
+ .sm\:mt-14 {
+ margin-top: 3.5rem;
+ }
+
+ .sm\:mt-5 {
+ margin-top: 1.25rem;
+ }
+
+ .sm\:ml-3 {
+ margin-left: 0.75rem;
+ }
+
+ .sm\:mt-12 {
+ margin-top: 3rem;
+ }
+
+ .sm\:ml-0 {
+ margin-left: 0px;
+ }
+
+ .sm\:mt-8 {
+ margin-top: 2rem;
+ }
+
+ .sm\:ml-2 {
+ margin-left: 0.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\: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\: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\:min-w-0 {
+ min-width: 0px;
+ }
+
+ .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\: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-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));
+ }
+
+ .sm\:translate-y-0 {
+ --tw-translate-y: 0px;
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
+ }
+
+ .sm\:translate-x-2 {
+ --tw-translate-x: 0.5rem;
+ 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-0 {
+ --tw-translate-x: 0px;
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
+ }
+
+ .sm\:scale-95 {
+ --tw-scale-x: .95;
+ --tw-scale-y: .95;
+ 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-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\:flex-row {
+ flex-direction: row;
+ }
+
+ .sm\:flex-row-reverse {
+ flex-direction: row-reverse;
+ }
+
+ .sm\:prose-base {
+ font-size: 1rem;
+ line-height: 1.75;
+ }
+
+ .sm\:prose-base :where(p):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.25em;
+ margin-bottom: 1.25em;
+ }
+
+ .sm\:prose-base :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
+ font-size: 1.25em;
+ line-height: 1.6;
+ margin-top: 1.2em;
+ margin-bottom: 1.2em;
+ }
+
+ .sm\:prose-base :where(blockquote):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.6em;
+ margin-bottom: 1.6em;
+ padding-left: 1em;
+ }
+
+ .sm\:prose-base :where(h1):not(:where([class~="not-prose"] *)) {
+ font-size: 2.25em;
+ margin-top: 0;
+ margin-bottom: 0.8888889em;
+ line-height: 1.1111111;
+ }
+
+ .sm\:prose-base :where(h2):not(:where([class~="not-prose"] *)) {
+ font-size: 1.5em;
+ margin-top: 2em;
+ margin-bottom: 1em;
+ line-height: 1.3333333;
+ }
+
+ .sm\:prose-base :where(h3):not(:where([class~="not-prose"] *)) {
+ font-size: 1.25em;
+ margin-top: 1.6em;
+ margin-bottom: 0.6em;
+ line-height: 1.6;
+ }
+
+ .sm\:prose-base :where(h4):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.5em;
+ margin-bottom: 0.5em;
+ line-height: 1.5;
+ }
+
+ .sm\:prose-base :where(img):not(:where([class~="not-prose"] *)) {
+ margin-top: 2em;
+ margin-bottom: 2em;
+ }
+
+ .sm\:prose-base :where(video):not(:where([class~="not-prose"] *)) {
+ margin-top: 2em;
+ margin-bottom: 2em;
+ }
+
+ .sm\:prose-base :where(figure):not(:where([class~="not-prose"] *)) {
+ margin-top: 2em;
+ margin-bottom: 2em;
+ }
+
+ .sm\:prose-base :where(figure > *):not(:where([class~="not-prose"] *)) {
+ margin-top: 0;
+ margin-bottom: 0;
+ }
+
+ .sm\:prose-base :where(figcaption):not(:where([class~="not-prose"] *)) {
+ font-size: 0.875em;
+ line-height: 1.4285714;
+ margin-top: 0.8571429em;
+ }
+
+ .sm\:prose-base :where(code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.875em;
+ }
+
+ .sm\:prose-base :where(h2 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.875em;
+ }
+
+ .sm\:prose-base :where(h3 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.9em;
+ }
+
+ .sm\:prose-base :where(pre):not(:where([class~="not-prose"] *)) {
+ font-size: 0.875em;
+ line-height: 1.7142857;
+ margin-top: 1.7142857em;
+ margin-bottom: 1.7142857em;
+ border-radius: 0.375rem;
+ padding-top: 0.8571429em;
+ padding-right: 1.1428571em;
+ padding-bottom: 0.8571429em;
+ padding-left: 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\:items-start {
+ align-items: flex-start;
+ }
+
+ .sm\:prose-base :where(li):not(:where([class~="not-prose"] *)) {
+ margin-top: 0.5em;
+ margin-bottom: 0.5em;
+ }
+
+ .sm\:items-end {
+ align-items: flex-end;
+ }
+
+ .sm\:prose-base :where(ol > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.375em;
+ }
+
+ .sm\:items-center {
+ align-items: center;
+ }
+
+ .sm\:prose-base :where(ul > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.375em;
+ }
+
+ .sm\:prose-base > :where(ul > li p):not(:where([class~="not-prose"] *)) {
+ margin-top: 0.75em;
+ margin-bottom: 0.75em;
+ }
+
+ .sm\:prose-base > :where(ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.25em;
+ }
+
+ .sm\:justify-start {
+ justify-content: flex-start;
+ }
+
+ .sm\:prose-base > :where(ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
+ margin-bottom: 1.25em;
+ }
+
+ .sm\:justify-end {
+ justify-content: flex-end;
+ }
+
+ .sm\:prose-base > :where(ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.25em;
+ }
+
+ .sm\:justify-center {
+ justify-content: center;
+ }
+
+ .sm\:prose-base > :where(ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
+ margin-bottom: 1.25em;
+ }
+
+ .sm\:justify-between {
+ justify-content: space-between;
+ }
+
+ .sm\:prose-base :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
+ margin-top: 0.75em;
+ margin-bottom: 0.75em;
+ }
+
+ .sm\:prose-base :where(hr):not(:where([class~="not-prose"] *)) {
+ margin-top: 3em;
+ margin-bottom: 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: 0.875em;
+ line-height: 1.7142857;
+ }
+
+ .sm\:gap-6 {
+ gap: 1.5rem;
+ }
+
+ .sm\:gap-8 {
+ gap: 2rem;
+ }
+
+ .sm\:prose-base :where(thead th):not(:where([class~="not-prose"] *)) {
+ padding-right: 0.5714286em;
+ padding-bottom: 0.5714286em;
+ padding-left: 0.5714286em;
+ }
+
+ .sm\:gap-12 {
+ gap: 3rem;
+ }
+
+ .sm\:gap-4 {
+ gap: 1rem;
+ }
+
+ .sm\:gap-10 {
+ gap: 2.5rem;
+ }
+
+ .sm\:gap-x-6 {
+ -moz-column-gap: 1.5rem;
+ column-gap: 1.5rem;
+ }
+
+ .sm\:gap-y-12 {
+ row-gap: 3rem;
+ }
+
+ .sm\:prose-base :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
+ padding-left: 0;
+ }
+
+ .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-y-reverse: 0;
+ margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
+ margin-bottom: calc(0px * var(--tw-space-y-reverse));
+ }
+
+ .sm\:space-x-4 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-right: calc(1rem * var(--tw-space-x-reverse));
+ margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
+ }
+
+ .sm\:space-y-5 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-y-reverse: 0;
+ margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
+ margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
+ }
+
+ .sm\:space-x-3 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-right: calc(0.75rem * var(--tw-space-x-reverse));
+ margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
+ }
+
+ .sm\:space-y-3 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-y-reverse: 0;
+ margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
+ margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
+ }
+
+ .sm\:space-x-5 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-right: calc(1.25rem * var(--tw-space-x-reverse));
+ margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
+ }
+
+ .sm\:space-x-6 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-right: calc(1.5rem * var(--tw-space-x-reverse));
+ margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
+ }
+
+ .sm\:space-y-10 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-y-reverse: 0;
+ margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
+ margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
+ }
+
+ .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-top: 0.5714286em;
+ padding-right: 0.5714286em;
+ padding-bottom: 0.5714286em;
+ padding-left: 0.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\:truncate {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ }
+
+ .sm\:rounded-lg {
+ border-radius: 0.5rem;
+ }
+
+ .sm\:border-0 {
+ border-width: 0px;
+ }
+
+ .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\: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: 0px;
+ }
+
+ .sm\:p-5 {
+ padding: 1.25rem;
+ }
+
+ .sm\:py-10 {
+ padding-top: 2.5rem;
+ padding-bottom: 2.5rem;
+ }
+
+ .sm\:py-16 {
+ padding-top: 4rem;
+ padding-bottom: 4rem;
+ }
+
+ .sm\:py-24 {
+ padding-top: 6rem;
+ padding-bottom: 6rem;
+ }
+
+ .sm\:px-6 {
+ padding-left: 1.5rem;
+ padding-right: 1.5rem;
+ }
+
+ .sm\:py-9 {
+ padding-top: 2.25rem;
+ padding-bottom: 2.25rem;
+ }
+
+ .sm\:px-4 {
+ padding-left: 1rem;
+ padding-right: 1rem;
+ }
+
+ .sm\:py-6 {
+ padding-top: 1.5rem;
+ padding-bottom: 1.5rem;
+ }
+
+ .sm\:px-0 {
+ padding-left: 0px;
+ padding-right: 0px;
+ }
+
+ .sm\:pt-14 {
+ padding-top: 3.5rem;
+ }
+
+ .sm\:pt-24 {
+ padding-top: 6rem;
+ }
+
+ .sm\:pb-64 {
+ padding-bottom: 16rem;
+ }
+
+ .sm\:pt-0 {
+ padding-top: 0px;
+ }
+
+ .sm\:pt-2 {
+ padding-top: 0.5rem;
+ }
+
+ .sm\:pb-1 {
+ padding-bottom: 0.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\:pl-14 {
+ padding-left: 3.5rem;
+ }
+
+ .sm\:pt-4 {
+ padding-top: 1rem;
+ }
+
+ .sm\:pt-16 {
+ padding-top: 4rem;
+ }
+
+ .sm\:pb-16 {
+ padding-bottom: 4rem;
+ }
+
+ .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: 0.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\:duration-700 {
+ transition-duration: 700ms;
+ }
+}
+
+@media (min-width: 768px) {
+
+ .md\:mx-auto {
+ margin-left: auto;
+ margin-right: auto;
+ }
+
+ .md\:mt-0 {
+ margin-top: 0px;
+ }
+
+ .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\:prose-sm {
+ font-size: 0.875rem;
+ line-height: 1.7142857;
+ }
+
+ .md\:prose-sm :where(p):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.1428571em;
+ margin-bottom: 1.1428571em;
+ }
+
+ .md\:prose-sm :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
+ font-size: 1.2857143em;
+ line-height: 1.5555556;
+ margin-top: 0.8888889em;
+ margin-bottom: 0.8888889em;
+ }
+
+ .md\:prose-sm :where(blockquote):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.3333333em;
+ margin-bottom: 1.3333333em;
+ padding-left: 1.1111111em;
+ }
+
+ .md\:prose-sm :where(h1):not(:where([class~="not-prose"] *)) {
+ font-size: 2.1428571em;
+ margin-top: 0;
+ margin-bottom: 0.8em;
+ line-height: 1.2;
+ }
+
+ .md\:prose-sm :where(h2):not(:where([class~="not-prose"] *)) {
+ font-size: 1.4285714em;
+ margin-top: 1.6em;
+ margin-bottom: 0.8em;
+ line-height: 1.4;
+ }
+
+ .md\:prose-sm :where(h3):not(:where([class~="not-prose"] *)) {
+ font-size: 1.2857143em;
+ margin-top: 1.5555556em;
+ margin-bottom: 0.4444444em;
+ line-height: 1.5555556;
+ }
+
+ .md\:prose-sm :where(h4):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.4285714em;
+ margin-bottom: 0.5714286em;
+ line-height: 1.4285714;
+ }
+
+ .md\:prose-sm :where(img):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.7142857em;
+ margin-bottom: 1.7142857em;
+ }
+
+ .md\:prose-sm :where(video):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.7142857em;
+ margin-bottom: 1.7142857em;
+ }
+
+ .md\:prose-sm :where(figure):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.7142857em;
+ margin-bottom: 1.7142857em;
+ }
+
+ .md\:prose-sm :where(figure > *):not(:where([class~="not-prose"] *)) {
+ margin-top: 0;
+ margin-bottom: 0;
+ }
+
+ .md\:prose-sm :where(figcaption):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8571429em;
+ line-height: 1.3333333;
+ margin-top: 0.6666667em;
+ }
+
+ .md\:prose-sm :where(code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8571429em;
+ }
+
+ .md\:prose-sm :where(h2 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.9em;
+ }
+
+ .md\:prose-sm :where(h3 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8888889em;
+ }
+
+ .md\:prose-sm :where(pre):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8571429em;
+ line-height: 1.6666667;
+ margin-top: 1.6666667em;
+ margin-bottom: 1.6666667em;
+ border-radius: 0.25rem;
+ padding-top: 0.6666667em;
+ padding-right: 1em;
+ padding-bottom: 0.6666667em;
+ padding-left: 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-top: 0.2857143em;
+ margin-bottom: 0.2857143em;
+ }
+
+ .md\:prose-sm :where(ol > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.4285714em;
+ }
+
+ .md\:prose-sm :where(ul > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.4285714em;
+ }
+
+ .md\:prose-sm > :where(ul > li p):not(:where([class~="not-prose"] *)) {
+ margin-top: 0.5714286em;
+ margin-bottom: 0.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-top: 0.5714286em;
+ margin-bottom: 0.5714286em;
+ }
+
+ .md\:prose-sm :where(hr):not(:where([class~="not-prose"] *)) {
+ margin-top: 2.8571429em;
+ margin-bottom: 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\:grid-cols-3 {
+ grid-template-columns: repeat(3, minmax(0, 1fr));
+ }
+
+ .md\:grid-cols-2 {
+ grid-template-columns: repeat(2, minmax(0, 1fr));
+ }
+
+ .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: 0.8571429em;
+ line-height: 1.5;
+ }
+
+ .md\:prose-sm :where(thead th):not(:where([class~="not-prose"] *)) {
+ padding-right: 1em;
+ padding-bottom: 0.6666667em;
+ padding-left: 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-top: 0.6666667em;
+ padding-right: 1em;
+ padding-bottom: 0.6666667em;
+ padding-left: 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\: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\:prose-lg {
+ font-size: 1.125rem;
+ line-height: 1.7777778;
+ }
+
+ .md\:prose-lg :where(p):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.3333333em;
+ margin-bottom: 1.3333333em;
+ }
+
+ .md\:prose-lg :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
+ font-size: 1.2222222em;
+ line-height: 1.4545455;
+ margin-top: 1.0909091em;
+ margin-bottom: 1.0909091em;
+ }
+
+ .md\:prose-lg :where(blockquote):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.6666667em;
+ margin-bottom: 1.6666667em;
+ padding-left: 1em;
+ }
+
+ .md\:prose-lg :where(h1):not(:where([class~="not-prose"] *)) {
+ font-size: 2.6666667em;
+ margin-top: 0;
+ margin-bottom: 0.8333333em;
+ line-height: 1;
+ }
+
+ .md\:prose-lg :where(h2):not(:where([class~="not-prose"] *)) {
+ font-size: 1.6666667em;
+ margin-top: 1.8666667em;
+ margin-bottom: 1.0666667em;
+ line-height: 1.3333333;
+ }
+
+ .md\:prose-lg :where(h3):not(:where([class~="not-prose"] *)) {
+ font-size: 1.3333333em;
+ margin-top: 1.6666667em;
+ margin-bottom: 0.6666667em;
+ line-height: 1.5;
+ }
+
+ .md\:prose-lg :where(h4):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.7777778em;
+ margin-bottom: 0.4444444em;
+ line-height: 1.5555556;
+ }
+
+ .md\:prose-lg :where(img):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.7777778em;
+ margin-bottom: 1.7777778em;
+ }
+
+ .md\:prose-lg :where(video):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.7777778em;
+ margin-bottom: 1.7777778em;
+ }
+
+ .md\:prose-lg :where(figure):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.7777778em;
+ margin-bottom: 1.7777778em;
+ }
+
+ .md\:prose-lg :where(figure > *):not(:where([class~="not-prose"] *)) {
+ margin-top: 0;
+ margin-bottom: 0;
+ }
+
+ .md\:prose-lg :where(figcaption):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8888889em;
+ line-height: 1.5;
+ margin-top: 1em;
+ }
+
+ .md\:prose-lg :where(code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8888889em;
+ }
+
+ .md\:prose-lg :where(h2 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8666667em;
+ }
+
+ .md\:prose-lg :where(h3 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.875em;
+ }
+
+ .md\:prose-lg :where(pre):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8888889em;
+ line-height: 1.75;
+ margin-top: 2em;
+ margin-bottom: 2em;
+ border-radius: 0.375rem;
+ padding-top: 1em;
+ padding-right: 1.5em;
+ padding-bottom: 1em;
+ padding-left: 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-top: 0.6666667em;
+ margin-bottom: 0.6666667em;
+ }
+
+ .md\:prose-lg :where(ol > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.4444444em;
+ }
+
+ .md\:prose-lg :where(ul > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.4444444em;
+ }
+
+ .md\:prose-lg > :where(ul > li p):not(:where([class~="not-prose"] *)) {
+ margin-top: 0.8888889em;
+ margin-bottom: 0.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-top: 0.8888889em;
+ margin-bottom: 0.8888889em;
+ }
+
+ .md\:prose-lg :where(hr):not(:where([class~="not-prose"] *)) {
+ margin-top: 3.1111111em;
+ margin-bottom: 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: 0.8888889em;
+ line-height: 1.5;
+ }
+
+ .md\:prose-lg :where(thead th):not(:where([class~="not-prose"] *)) {
+ padding-right: 0.75em;
+ padding-bottom: 0.75em;
+ padding-left: 0.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-top: 0.75em;
+ padding-right: 0.75em;
+ padding-bottom: 0.75em;
+ padding-left: 0.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-top: 1.2em;
+ margin-bottom: 1.2em;
+ }
+
+ .md\:prose-xl :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
+ font-size: 1.2em;
+ line-height: 1.5;
+ margin-top: 1em;
+ margin-bottom: 1em;
+ }
+
+ .md\:prose-xl :where(blockquote):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.6em;
+ margin-bottom: 1.6em;
+ padding-left: 1.0666667em;
+ }
+
+ .md\:prose-xl :where(h1):not(:where([class~="not-prose"] *)) {
+ font-size: 2.8em;
+ margin-top: 0;
+ margin-bottom: 0.8571429em;
+ line-height: 1;
+ }
+
+ .md\:prose-xl :where(h2):not(:where([class~="not-prose"] *)) {
+ font-size: 1.8em;
+ margin-top: 1.5555556em;
+ margin-bottom: 0.8888889em;
+ line-height: 1.1111111;
+ }
+
+ .md\:prose-xl :where(h3):not(:where([class~="not-prose"] *)) {
+ font-size: 1.5em;
+ margin-top: 1.6em;
+ margin-bottom: 0.6666667em;
+ line-height: 1.3333333;
+ }
+
+ .md\:prose-xl :where(h4):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.8em;
+ margin-bottom: 0.6em;
+ line-height: 1.6;
+ }
+
+ .md\:prose-xl :where(img):not(:where([class~="not-prose"] *)) {
+ margin-top: 2em;
+ margin-bottom: 2em;
+ }
+
+ .md\:prose-xl :where(video):not(:where([class~="not-prose"] *)) {
+ margin-top: 2em;
+ margin-bottom: 2em;
+ }
+
+ .md\:prose-xl :where(figure):not(:where([class~="not-prose"] *)) {
+ margin-top: 2em;
+ margin-bottom: 2em;
+ }
+
+ .md\:prose-xl :where(figure > *):not(:where([class~="not-prose"] *)) {
+ margin-top: 0;
+ margin-bottom: 0;
+ }
+
+ .md\:prose-xl :where(figcaption):not(:where([class~="not-prose"] *)) {
+ font-size: 0.9em;
+ line-height: 1.5555556;
+ margin-top: 1em;
+ }
+
+ .md\:prose-xl :where(code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.9em;
+ }
+
+ .md\:prose-xl :where(h2 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8611111em;
+ }
+
+ .md\:prose-xl :where(h3 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.9em;
+ }
+
+ .md\:prose-xl :where(pre):not(:where([class~="not-prose"] *)) {
+ font-size: 0.9em;
+ line-height: 1.7777778;
+ margin-top: 2em;
+ margin-bottom: 2em;
+ border-radius: 0.5rem;
+ padding-top: 1.1111111em;
+ padding-right: 1.3333333em;
+ padding-bottom: 1.1111111em;
+ padding-left: 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-top: 0.6em;
+ margin-bottom: 0.6em;
+ }
+
+ .md\:prose-xl :where(ol > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.4em;
+ }
+
+ .md\:rounded-lg {
+ border-radius: 0.5rem;
+ }
+
+ .md\:prose-xl :where(ul > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.4em;
+ }
+
+ .md\:prose-xl > :where(ul > li p):not(:where([class~="not-prose"] *)) {
+ margin-top: 0.8em;
+ margin-bottom: 0.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\:border-t-0 {
+ border-top-width: 0px;
+ }
+
+ .md\:border-l {
+ border-left-width: 1px;
+ }
+
+ .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-top: 0.8em;
+ margin-bottom: 0.8em;
+ }
+
+ .md\:prose-xl :where(hr):not(:where([class~="not-prose"] *)) {
+ margin-top: 2.8em;
+ margin-bottom: 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: 0.9em;
+ line-height: 1.5555556;
+ }
+
+ .md\:prose-xl :where(thead th):not(:where([class~="not-prose"] *)) {
+ padding-right: 0.6666667em;
+ padding-bottom: 0.8888889em;
+ padding-left: 0.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-top: 0.8888889em;
+ padding-right: 0.6666667em;
+ padding-bottom: 0.8888889em;
+ padding-left: 0.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\:px-1 {
+ padding-left: 0.25rem;
+ padding-right: 0.25rem;
+ }
+
+ .md\:px-6 {
+ padding-left: 1.5rem;
+ padding-right: 1.5rem;
+ }
+
+ .md\:text-4xl {
+ font-size: 2.25rem;
+ line-height: 2.5rem;
+ }
+}
+
+@media (min-width: 1024px) {
+
+ .lg\:-top-16 {
+ top: -4rem;
+ }
+
+ .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: 0px;
+ margin-right: 0px;
+ }
+
+ .lg\:-mx-8 {
+ margin-left: -2rem;
+ margin-right: -2rem;
+ }
+
+ .lg\:mx-auto {
+ margin-left: auto;
+ margin-right: auto;
+ }
+
+ .lg\:mt-8 {
+ margin-top: 2rem;
+ }
+
+ .lg\:mt-0 {
+ margin-top: 0px;
+ }
+
+ .lg\:mt-12 {
+ margin-top: 3rem;
+ }
+
+ .lg\:mt-10 {
+ margin-top: 2.5rem;
+ }
+
+ .lg\:ml-12 {
+ margin-left: 3rem;
+ }
+
+ .lg\:mb-32 {
+ margin-bottom: 8rem;
+ }
+
+ .lg\:ml-10 {
+ margin-left: 2.5rem;
+ }
+
+ .lg\:ml-0 {
+ margin-left: 0px;
+ }
+
+ .lg\:ml-6 {
+ margin-left: 1.5rem;
+ }
+
+ .lg\:-mt-16 {
+ margin-top: -4rem;
+ }
+
+ .lg\:mt-24 {
+ margin-top: 6rem;
+ }
+
+ .lg\:mt-20 {
+ margin-top: 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: 0.5rem;
+ column-gap: 0.5rem;
+ }
+
+ .lg\:gap-x-3 {
+ -moz-column-gap: 0.75rem;
+ column-gap: 0.75rem;
+ }
+
+ .lg\:gap-y-6 {
+ row-gap: 1.5rem;
+ }
+
+ .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-y-reverse: 0;
+ margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
+ margin-bottom: calc(0px * var(--tw-space-y-reverse));
+ }
+
+ .lg\:space-x-3 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-right: calc(0.75rem * var(--tw-space-x-reverse));
+ margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
+ }
+
+ .lg\:space-x-6 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-right: calc(1.5rem * var(--tw-space-x-reverse));
+ margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
+ }
+
+ .lg\:prose-lg {
+ font-size: 1.125rem;
+ line-height: 1.7777778;
+ }
+
+ .lg\:prose-lg :where(p):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.3333333em;
+ margin-bottom: 1.3333333em;
+ }
+
+ .lg\:prose-lg :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
+ font-size: 1.2222222em;
+ line-height: 1.4545455;
+ margin-top: 1.0909091em;
+ margin-bottom: 1.0909091em;
+ }
+
+ .lg\:prose-lg :where(blockquote):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.6666667em;
+ margin-bottom: 1.6666667em;
+ padding-left: 1em;
+ }
+
+ .lg\:prose-lg :where(h1):not(:where([class~="not-prose"] *)) {
+ font-size: 2.6666667em;
+ margin-top: 0;
+ margin-bottom: 0.8333333em;
+ line-height: 1;
+ }
+
+ .lg\:prose-lg :where(h2):not(:where([class~="not-prose"] *)) {
+ font-size: 1.6666667em;
+ margin-top: 1.8666667em;
+ margin-bottom: 1.0666667em;
+ line-height: 1.3333333;
+ }
+
+ .lg\:prose-lg :where(h3):not(:where([class~="not-prose"] *)) {
+ font-size: 1.3333333em;
+ margin-top: 1.6666667em;
+ margin-bottom: 0.6666667em;
+ line-height: 1.5;
+ }
+
+ .lg\:prose-lg :where(h4):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.7777778em;
+ margin-bottom: 0.4444444em;
+ line-height: 1.5555556;
+ }
+
+ .lg\:prose-lg :where(img):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.7777778em;
+ margin-bottom: 1.7777778em;
+ }
+
+ .lg\:prose-lg :where(video):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.7777778em;
+ margin-bottom: 1.7777778em;
+ }
+
+ .lg\:prose-lg :where(figure):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.7777778em;
+ margin-bottom: 1.7777778em;
+ }
+
+ .lg\:prose-lg :where(figure > *):not(:where([class~="not-prose"] *)) {
+ margin-top: 0;
+ margin-bottom: 0;
+ }
+
+ .lg\:prose-lg :where(figcaption):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8888889em;
+ line-height: 1.5;
+ margin-top: 1em;
+ }
+
+ .lg\:prose-lg :where(code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8888889em;
+ }
+
+ .lg\:prose-lg :where(h2 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8666667em;
+ }
+
+ .lg\:self-center {
+ align-self: center;
+ }
+
+ .lg\:prose-lg :where(h3 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.875em;
+ }
+
+ .lg\:prose-lg :where(pre):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8888889em;
+ line-height: 1.75;
+ margin-top: 2em;
+ margin-bottom: 2em;
+ border-radius: 0.375rem;
+ padding-top: 1em;
+ padding-right: 1.5em;
+ padding-bottom: 1em;
+ padding-left: 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-top: 0.6666667em;
+ margin-bottom: 0.6666667em;
+ }
+
+ .lg\:prose-lg :where(ol > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.4444444em;
+ }
+
+ .lg\:prose-lg :where(ul > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.4444444em;
+ }
+
+ .lg\:prose-lg > :where(ul > li p):not(:where([class~="not-prose"] *)) {
+ margin-top: 0.8888889em;
+ margin-bottom: 0.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-top: 0.8888889em;
+ margin-bottom: 0.8888889em;
+ }
+
+ .lg\:prose-lg :where(hr):not(:where([class~="not-prose"] *)) {
+ margin-top: 3.1111111em;
+ margin-bottom: 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: 0.8888889em;
+ line-height: 1.5;
+ }
+
+ .lg\:prose-lg :where(thead th):not(:where([class~="not-prose"] *)) {
+ padding-right: 0.75em;
+ padding-bottom: 0.75em;
+ padding-left: 0.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-top: 0.75em;
+ padding-right: 0.75em;
+ padding-bottom: 0.75em;
+ padding-left: 0.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-top: 1.2em;
+ margin-bottom: 1.2em;
+ }
+
+ .lg\:prose-xl :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
+ font-size: 1.2em;
+ line-height: 1.5;
+ margin-top: 1em;
+ margin-bottom: 1em;
+ }
+
+ .lg\:prose-xl :where(blockquote):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.6em;
+ margin-bottom: 1.6em;
+ padding-left: 1.0666667em;
+ }
+
+ .lg\:prose-xl :where(h1):not(:where([class~="not-prose"] *)) {
+ font-size: 2.8em;
+ margin-top: 0;
+ margin-bottom: 0.8571429em;
+ line-height: 1;
+ }
+
+ .lg\:prose-xl :where(h2):not(:where([class~="not-prose"] *)) {
+ font-size: 1.8em;
+ margin-top: 1.5555556em;
+ margin-bottom: 0.8888889em;
+ line-height: 1.1111111;
+ }
+
+ .lg\:prose-xl :where(h3):not(:where([class~="not-prose"] *)) {
+ font-size: 1.5em;
+ margin-top: 1.6em;
+ margin-bottom: 0.6666667em;
+ line-height: 1.3333333;
+ }
+
+ .lg\:prose-xl :where(h4):not(:where([class~="not-prose"] *)) {
+ margin-top: 1.8em;
+ margin-bottom: 0.6em;
+ line-height: 1.6;
+ }
+
+ .lg\:prose-xl :where(img):not(:where([class~="not-prose"] *)) {
+ margin-top: 2em;
+ margin-bottom: 2em;
+ }
+
+ .lg\:prose-xl :where(video):not(:where([class~="not-prose"] *)) {
+ margin-top: 2em;
+ margin-bottom: 2em;
+ }
+
+ .lg\:prose-xl :where(figure):not(:where([class~="not-prose"] *)) {
+ margin-top: 2em;
+ margin-bottom: 2em;
+ }
+
+ .lg\:prose-xl :where(figure > *):not(:where([class~="not-prose"] *)) {
+ margin-top: 0;
+ margin-bottom: 0;
+ }
+
+ .lg\:prose-xl :where(figcaption):not(:where([class~="not-prose"] *)) {
+ font-size: 0.9em;
+ line-height: 1.5555556;
+ margin-top: 1em;
+ }
+
+ .lg\:prose-xl :where(code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.9em;
+ }
+
+ .lg\:prose-xl :where(h2 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.8611111em;
+ }
+
+ .lg\:prose-xl :where(h3 code):not(:where([class~="not-prose"] *)) {
+ font-size: 0.9em;
+ }
+
+ .lg\:prose-xl :where(pre):not(:where([class~="not-prose"] *)) {
+ font-size: 0.9em;
+ line-height: 1.7777778;
+ margin-top: 2em;
+ margin-bottom: 2em;
+ border-radius: 0.5rem;
+ padding-top: 1.1111111em;
+ padding-right: 1.3333333em;
+ padding-bottom: 1.1111111em;
+ padding-left: 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-top: 0.6em;
+ margin-bottom: 0.6em;
+ }
+
+ .lg\:prose-xl :where(ol > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.4em;
+ }
+
+ .lg\:prose-xl :where(ul > li):not(:where([class~="not-prose"] *)) {
+ padding-left: 0.4em;
+ }
+
+ .lg\:prose-xl > :where(ul > li p):not(:where([class~="not-prose"] *)) {
+ margin-top: 0.8em;
+ margin-bottom: 0.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\:border-l {
+ border-left-width: 1px;
+ }
+
+ .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-top: 0.8em;
+ margin-bottom: 0.8em;
+ }
+
+ .lg\:prose-xl :where(hr):not(:where([class~="not-prose"] *)) {
+ margin-top: 2.8em;
+ margin-bottom: 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\:border-skin-base {
+ --tw-border-opacity: 1;
+ border-color: rgba(var(--color-border), var(--tw-border-opacity));
+ }
+
+ .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: 0.9em;
+ line-height: 1.5555556;
+ }
+
+ .lg\:prose-xl :where(thead th):not(:where([class~="not-prose"] *)) {
+ padding-right: 0.6666667em;
+ padding-bottom: 0.8888889em;
+ padding-left: 0.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-top: 0.8888889em;
+ padding-right: 0.6666667em;
+ padding-bottom: 0.8888889em;
+ padding-left: 0.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\:py-12 {
+ padding-top: 3rem;
+ padding-bottom: 3rem;
+ }
+
+ .lg\:py-20 {
+ padding-top: 5rem;
+ padding-bottom: 5rem;
+ }
+
+ .lg\:px-8 {
+ padding-left: 2rem;
+ padding-right: 2rem;
+ }
+
+ .lg\:py-16 {
+ padding-top: 4rem;
+ padding-bottom: 4rem;
+ }
+
+ .lg\:py-8 {
+ padding-top: 2rem;
+ padding-bottom: 2rem;
+ }
+
+ .lg\:px-0 {
+ padding-left: 0px;
+ padding-right: 0px;
+ }
+
+ .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\:pb-32 {
+ padding-bottom: 8rem;
+ }
+
+ .lg\:pt-20 {
+ padding-top: 5rem;
+ }
+
+ .lg\:text-left {
+ text-align: left;
+ }
+
+ .lg\:text-center {
+ text-align: center;
+ }
+
+ .lg\:text-sm {
+ font-size: 0.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 {
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ left: 0px;
+ }
+
+ .xl\:inset-y-0 {
+ top: 0px;
+ bottom: 0px;
+ }
+
+ .xl\:left-0 {
+ left: 0px;
+ }
+
+ .xl\:-top-14 {
+ top: -3.5rem;
+ }
+
+ .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\:ml-0 {
+ margin-left: 0px;
+ }
+
+ .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/js/app.js b/public/js/app.js
index a5fa9fe4..5b5902ce 100755
--- a/public/js/app.js
+++ b/public/js/app.js
@@ -1,2 +1,62746 @@
-/*! For license information please see app.js.LICENSE.txt */
-(()=>{var e,t={8127:(e,t,n)=>{"use strict";var i,a,r,o,s=!1,l=!1,c=[];function _(e){!function(e){c.includes(e)||c.push(e);l||s||(s=!0,queueMicrotask(u))}(e)}function d(e){let t=c.indexOf(e);-1!==t&&c.splice(t,1)}function u(){s=!1,l=!0;for(let e=0;e{(void 0===t||t.includes(n))&&(i.forEach((e=>e())),delete e._x_attributeCleanups[n])}))}var h=new MutationObserver(A),T=!1;function v(){h.observe(document,{subtree:!0,childList:!0,attributes:!0,attributeOldValue:!0}),T=!0}function C(){(y=y.concat(h.takeRecords())).length&&!O&&(O=!0,queueMicrotask((()=>{A(y),y.length=0,O=!1}))),h.disconnect(),T=!1}var y=[],O=!1;function N(e){if(!T)return e();C();let t=e();return v(),t}var R=!1,I=[];function A(e){if(R)return void(I=I.concat(e));let t=[],n=[],i=new Map,a=new Map;for(let r=0;r1===e.nodeType&&t.push(e))),e[r].removedNodes.forEach((e=>1===e.nodeType&&n.push(e)))),"attributes"===e[r].type)){let t=e[r].target,n=e[r].attributeName,o=e[r].oldValue,s=()=>{i.has(t)||i.set(t,[]),i.get(t).push({name:n,value:t.getAttribute(n)})},l=()=>{a.has(t)||a.set(t,[]),a.get(t).push(n)};t.hasAttribute(n)&&null===o?s():t.hasAttribute(n)?(l(),s()):l()}a.forEach(((e,t)=>{b(t,e)})),i.forEach(((e,t)=>{g.forEach((n=>n(t,e)))}));for(let e of n)if(!t.includes(e)&&(E.forEach((t=>t(e))),e._x_cleanups))for(;e._x_cleanups.length;)e._x_cleanups.pop()();t.forEach((e=>{e._x_ignoreSelf=!0,e._x_ignore=!0}));for(let e of t)n.includes(e)||e.isConnected&&(delete e._x_ignoreSelf,delete e._x_ignore,S.forEach((t=>t(e))),e._x_ignore=!0,e._x_ignoreSelf=!0);t.forEach((e=>{delete e._x_ignoreSelf,delete e._x_ignore})),t=null,n=null,i=null,a=null}function D(e){return L(M(e))}function x(e,t,n){return e._x_dataStack=[t,...M(n||e)],()=>{e._x_dataStack=e._x_dataStack.filter((e=>e!==t))}}function w(e,t){let n=e._x_dataStack[0];Object.entries(t).forEach((([e,t])=>{n[e]=t}))}function M(e){return e._x_dataStack?e._x_dataStack:"function"==typeof ShadowRoot&&e instanceof ShadowRoot?M(e.host):e.parentNode?M(e.parentNode):[]}function L(e){let t=new Proxy({},{ownKeys:()=>Array.from(new Set(e.flatMap((e=>Object.keys(e))))),has:(t,n)=>e.some((e=>e.hasOwnProperty(n))),get:(n,i)=>(e.find((e=>{if(e.hasOwnProperty(i)){let n=Object.getOwnPropertyDescriptor(e,i);if(n.get&&n.get._x_alreadyBound||n.set&&n.set._x_alreadyBound)return!0;if((n.get||n.set)&&n.enumerable){let a=n.get,r=n.set,o=n;a=a&&a.bind(t),r=r&&r.bind(t),a&&(a._x_alreadyBound=!0),r&&(r._x_alreadyBound=!0),Object.defineProperty(e,i,{...o,get:a,set:r})}return!0}return!1}))||{})[i],set:(t,n,i)=>{let a=e.find((e=>e.hasOwnProperty(n)));return a?a[n]=i:e[e.length-1][n]=i,!0}});return t}function P(e){let t=(n,i="")=>{Object.entries(Object.getOwnPropertyDescriptors(n)).forEach((([a,{value:r,enumerable:o}])=>{if(!1===o||void 0===r)return;let s=""===i?a:`${i}.${a}`;var l;"object"==typeof r&&null!==r&&r._x_interceptor?n[a]=r.initialize(e,s,a):"object"!=typeof(l=r)||Array.isArray(l)||null===l||r===n||r instanceof Element||t(r,s)}))};return t(e)}function k(e,t=(()=>{})){let n={initialValue:void 0,_x_interceptor:!0,initialize(t,n,i){return e(this.initialValue,(()=>function(e,t){return t.split(".").reduce(((e,t)=>e[t]),e)}(t,n)),(e=>U(t,n,e)),n,i)}};return t(n),e=>{if("object"==typeof e&&null!==e&&e._x_interceptor){let t=n.initialize.bind(n);n.initialize=(i,a,r)=>{let o=e.initialize(i,a,r);return n.initialValue=o,t(i,a,r)}}else n.initialValue=e;return n}}function U(e,t,n){if("string"==typeof t&&(t=t.split(".")),1!==t.length){if(0===t.length)throw error;return e[t[0]]||(e[t[0]]={}),U(e[t[0]],t.slice(1),n)}e[t[0]]=n}var F={};function B(e,t){F[e]=t}function G(e,t){return Object.entries(F).forEach((([n,i])=>{Object.defineProperty(e,`$${n}`,{get(){let[e,n]=re(t);return e={interceptor:k,...e},f(t,n),i(t,e)},enumerable:!1})})),e}function Y(e,t,n,...i){try{return n(...i)}catch(n){H(n,e,t)}}function H(e,t,n){Object.assign(e,{el:t,expression:n}),console.warn(`Alpine Expression Error: ${e.message}\n\n${n?'Expression: "'+n+'"\n\n':""}`,t),setTimeout((()=>{throw e}),0)}var V=!0;function q(e,t,n={}){let i;return z(e,t)((e=>i=e),n),i}function z(...e){return $(...e)}var $=j;function j(e,t){let n={};G(n,e);let i=[n,...M(e)];if("function"==typeof t)return function(e,t){return(n=(()=>{}),{scope:i={},params:a=[]}={})=>{K(n,t.apply(L([i,...e]),a))}}(i,t);let a=function(e,t,n){let i=function(e,t){if(W[e])return W[e];let n=Object.getPrototypeOf((async function(){})).constructor,i=/^[\n\s]*if.*\(.*\)/.test(e)||/^(let|const)\s/.test(e)?`(() => { ${e} })()`:e;let a=(()=>{try{return new n(["__self","scope"],`with (scope) { __self.result = ${i} }; __self.finished = true; return __self.result;`)}catch(n){return H(n,t,e),Promise.resolve()}})();return W[e]=a,a}(t,n);return(a=(()=>{}),{scope:r={},params:o=[]}={})=>{i.result=void 0,i.finished=!1;let s=L([r,...e]);if("function"==typeof i){let e=i(i,s).catch((e=>H(e,n,t)));i.finished?(K(a,i.result,s,o,n),i.result=void 0):e.then((e=>{K(a,e,s,o,n)})).catch((e=>H(e,n,t))).finally((()=>i.result=void 0))}}}(i,t,e);return Y.bind(null,e,t,a)}var W={};function K(e,t,n,i,a){if(V&&"function"==typeof t){let r=t.apply(n,i);r instanceof Promise?r.then((t=>K(e,t,n,i))).catch((e=>H(e,a,t))):e(r)}else e(t)}var Q="x-";function X(e=""){return Q+e}var Z={};function J(e,t){Z[e]=t}function ee(e,t,n){if(t=Array.from(t),e._x_virtualDirectives){let n=Object.entries(e._x_virtualDirectives).map((([e,t])=>({name:e,value:t}))),i=te(n);n=n.map((e=>i.find((t=>t.name===e.name))?{name:`x-bind:${e.name}`,value:`"${e.value}"`}:e)),t=t.concat(n)}let i={},a=t.map(se(((e,t)=>i[e]=t))).filter(_e).map(function(e,t){return({name:n,value:i})=>{let a=n.match(de()),r=n.match(/:([a-zA-Z0-9\-:]+)/),o=n.match(/\.[^.\]]+(?=[^\]]*$)/g)||[],s=t||e[n]||n;return{type:a?a[1]:null,value:r?r[1]:null,modifiers:o.map((e=>e.replace(".",""))),expression:i,original:s}}}(i,n)).sort(me);return a.map((t=>function(e,t){let n=()=>{},i=Z[t.type]||n,[a,r]=re(e);!function(e,t,n){e._x_attributeCleanups||(e._x_attributeCleanups={}),e._x_attributeCleanups[t]||(e._x_attributeCleanups[t]=[]),e._x_attributeCleanups[t].push(n)}(e,t.original,r);let o=()=>{e._x_ignore||e._x_ignoreSelf||(i.inline&&i.inline(e,t,a),i=i.bind(i,e,t,a),ne?ie.get(ae).push(i):i())};return o.runCleanups=r,o}(e,t)))}function te(e){return Array.from(e).map(se()).filter((e=>!_e(e)))}var ne=!1,ie=new Map,ae=Symbol();function re(e){let t=[],[n,i]=function(e){let t=()=>{};return[n=>{let i=a(n);return e._x_effects||(e._x_effects=new Set,e._x_runEffects=()=>{e._x_effects.forEach((e=>e()))}),e._x_effects.add(i),t=()=>{void 0!==i&&(e._x_effects.delete(i),r(i))},i},()=>{t()}]}(e);t.push(i);return[{Alpine:Xe,effect:n,cleanup:e=>t.push(e),evaluateLater:z.bind(z,e),evaluate:q.bind(q,e)},()=>t.forEach((e=>e()))]}var oe=(e,t)=>({name:n,value:i})=>(n.startsWith(e)&&(n=n.replace(e,t)),{name:n,value:i});function se(e=(()=>{})){return({name:t,value:n})=>{let{name:i,value:a}=le.reduce(((e,t)=>t(e)),{name:t,value:n});return i!==t&&e(i,t),{name:i,value:a}}}var le=[];function ce(e){le.push(e)}function _e({name:e}){return de().test(e)}var de=()=>new RegExp(`^${Q}([^:^.]+)\\b`);var ue="DEFAULT",pe=["ignore","ref","data","id","bind","init","for","mask","model","modelable","transition","show","if",ue,"teleport"];function me(e,t){let n=-1===pe.indexOf(e.type)?ue:e.type,i=-1===pe.indexOf(t.type)?ue:t.type;return pe.indexOf(n)-pe.indexOf(i)}function ge(e,t,n={}){e.dispatchEvent(new CustomEvent(t,{detail:n,bubbles:!0,composed:!0,cancelable:!0}))}var Ee=[],Se=!1;function fe(e=(()=>{})){return queueMicrotask((()=>{Se||setTimeout((()=>{be()}))})),new Promise((t=>{Ee.push((()=>{e(),t()}))}))}function be(){for(Se=!1;Ee.length;)Ee.shift()()}function he(e,t){if("function"==typeof ShadowRoot&&e instanceof ShadowRoot)return void Array.from(e.children).forEach((e=>he(e,t)));let n=!1;if(t(e,(()=>n=!0)),n)return;let i=e.firstElementChild;for(;i;)he(i,t),i=i.nextElementSibling}function Te(e,...t){console.warn(`Alpine Warning: ${e}`,...t)}var ve=[],Ce=[];function ye(){return ve.map((e=>e()))}function Oe(){return ve.concat(Ce).map((e=>e()))}function Ne(e){ve.push(e)}function Re(e){Ce.push(e)}function Ie(e,t=!1){return Ae(e,(e=>{if((t?Oe():ye()).some((t=>e.matches(t))))return!0}))}function Ae(e,t){if(e){if(t(e))return e;if(e._x_teleportBack&&(e=e._x_teleportBack),e.parentElement)return Ae(e.parentElement,t)}}function De(e,t=he){!function(e){ne=!0;let t=Symbol();ae=t,ie.set(t,[]);let n=()=>{for(;ie.get(t).length;)ie.get(t).shift()();ie.delete(t)};e(n),ne=!1,n()}((()=>{t(e,((e,t)=>{ee(e,e.attributes).forEach((e=>e())),e._x_ignore&&t()}))}))}function xe(e,t){return Array.isArray(t)?we(e,t.join(" ")):"object"==typeof t&&null!==t?function(e,t){let n=e=>e.split(" ").filter(Boolean),i=Object.entries(t).flatMap((([e,t])=>!!t&&n(e))).filter(Boolean),a=Object.entries(t).flatMap((([e,t])=>!t&&n(e))).filter(Boolean),r=[],o=[];return a.forEach((t=>{e.classList.contains(t)&&(e.classList.remove(t),o.push(t))})),i.forEach((t=>{e.classList.contains(t)||(e.classList.add(t),r.push(t))})),()=>{o.forEach((t=>e.classList.add(t))),r.forEach((t=>e.classList.remove(t)))}}(e,t):"function"==typeof t?xe(e,t()):we(e,t)}function we(e,t){return t=!0===t?t="":t||"",n=t.split(" ").filter((t=>!e.classList.contains(t))).filter(Boolean),e.classList.add(...n),()=>{e.classList.remove(...n)};var n}function Me(e,t){return"object"==typeof t&&null!==t?function(e,t){let n={};return Object.entries(t).forEach((([t,i])=>{n[t]=e.style[t],t.startsWith("--")||(t=t.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase()),e.style.setProperty(t,i)})),setTimeout((()=>{0===e.style.length&&e.removeAttribute("style")})),()=>{Me(e,n)}}(e,t):function(e,t){let n=e.getAttribute("style",t);return e.setAttribute("style",t),()=>{e.setAttribute("style",n||"")}}(e,t)}function Le(e,t=(()=>{})){let n=!1;return function(){n?t.apply(this,arguments):(n=!0,e.apply(this,arguments))}}function Pe(e,t,n={}){e._x_transition||(e._x_transition={enter:{during:n,start:n,end:n},leave:{during:n,start:n,end:n},in(n=(()=>{}),i=(()=>{})){Ue(e,t,{during:this.enter.during,start:this.enter.start,end:this.enter.end},n,i)},out(n=(()=>{}),i=(()=>{})){Ue(e,t,{during:this.leave.during,start:this.leave.start,end:this.leave.end},n,i)}})}function ke(e){let t=e.parentNode;if(t)return t._x_hidePromise?t:ke(t)}function Ue(e,t,{during:n,start:i,end:a}={},r=(()=>{}),o=(()=>{})){if(e._x_transitioning&&e._x_transitioning.cancel(),0===Object.keys(n).length&&0===Object.keys(i).length&&0===Object.keys(a).length)return r(),void o();let s,l,c;!function(e,t){let n,i,a,r=Le((()=>{N((()=>{n=!0,i||t.before(),a||(t.end(),be()),t.after(),e.isConnected&&t.cleanup(),delete e._x_transitioning}))}));e._x_transitioning={beforeCancels:[],beforeCancel(e){this.beforeCancels.push(e)},cancel:Le((function(){for(;this.beforeCancels.length;)this.beforeCancels.shift()();r()})),finish:r},N((()=>{t.start(),t.during()})),Se=!0,requestAnimationFrame((()=>{if(n)return;let r=1e3*Number(getComputedStyle(e).transitionDuration.replace(/,.*/,"").replace("s","")),o=1e3*Number(getComputedStyle(e).transitionDelay.replace(/,.*/,"").replace("s",""));0===r&&(r=1e3*Number(getComputedStyle(e).animationDuration.replace("s",""))),N((()=>{t.before()})),i=!0,requestAnimationFrame((()=>{n||(N((()=>{t.end()})),be(),setTimeout(e._x_transitioning.finish,r+o),a=!0)}))}))}(e,{start(){s=t(e,i)},during(){l=t(e,n)},before:r,end(){s(),c=t(e,a)},after:o,cleanup(){l(),c()}})}function Fe(e,t,n){if(-1===e.indexOf(t))return n;const i=e[e.indexOf(t)+1];if(!i)return n;if("scale"===t&&isNaN(i))return n;if("duration"===t){let e=i.match(/([0-9]+)ms/);if(e)return e[1]}return"origin"===t&&["top","right","left","center","bottom"].includes(e[e.indexOf(t)+2])?[i,e[e.indexOf(t)+2]].join(" "):i}J("transition",((e,{value:t,modifiers:n,expression:i},{evaluate:a})=>{"function"==typeof i&&(i=a(i)),i?function(e,t,n){Pe(e,xe,""),{enter:t=>{e._x_transition.enter.during=t},"enter-start":t=>{e._x_transition.enter.start=t},"enter-end":t=>{e._x_transition.enter.end=t},leave:t=>{e._x_transition.leave.during=t},"leave-start":t=>{e._x_transition.leave.start=t},"leave-end":t=>{e._x_transition.leave.end=t}}[n](t)}(e,i,t):function(e,t,n){Pe(e,Me);let i=!t.includes("in")&&!t.includes("out")&&!n,a=i||t.includes("in")||["enter"].includes(n),r=i||t.includes("out")||["leave"].includes(n);t.includes("in")&&!i&&(t=t.filter(((e,n)=>nn>t.indexOf("out"))));let o=!t.includes("opacity")&&!t.includes("scale"),s=o||t.includes("opacity"),l=o||t.includes("scale"),c=s?0:1,_=l?Fe(t,"scale",95)/100:1,d=Fe(t,"delay",0),u=Fe(t,"origin","center"),p="opacity, transform",m=Fe(t,"duration",150)/1e3,g=Fe(t,"duration",75)/1e3,E="cubic-bezier(0.4, 0.0, 0.2, 1)";a&&(e._x_transition.enter.during={transformOrigin:u,transitionDelay:d,transitionProperty:p,transitionDuration:`${m}s`,transitionTimingFunction:E},e._x_transition.enter.start={opacity:c,transform:`scale(${_})`},e._x_transition.enter.end={opacity:1,transform:"scale(1)"});r&&(e._x_transition.leave.during={transformOrigin:u,transitionDelay:d,transitionProperty:p,transitionDuration:`${g}s`,transitionTimingFunction:E},e._x_transition.leave.start={opacity:1,transform:"scale(1)"},e._x_transition.leave.end={opacity:c,transform:`scale(${_})`})}(e,n,t)})),window.Element.prototype._x_toggleAndCascadeWithTransitions=function(e,t,n,i){const a="visible"===document.visibilityState?requestAnimationFrame:setTimeout;let r=()=>a(n);t?e._x_transition&&(e._x_transition.enter||e._x_transition.leave)?e._x_transition.enter&&(Object.entries(e._x_transition.enter.during).length||Object.entries(e._x_transition.enter.start).length||Object.entries(e._x_transition.enter.end).length)?e._x_transition.in(n):r():e._x_transition?e._x_transition.in(n):r():(e._x_hidePromise=e._x_transition?new Promise(((t,n)=>{e._x_transition.out((()=>{}),(()=>t(i))),e._x_transitioning.beforeCancel((()=>n({isFromCancelledTransition:!0})))})):Promise.resolve(i),queueMicrotask((()=>{let t=ke(e);t?(t._x_hideChildren||(t._x_hideChildren=[]),t._x_hideChildren.push(e)):a((()=>{let t=e=>{let n=Promise.all([e._x_hidePromise,...(e._x_hideChildren||[]).map(t)]).then((([e])=>e()));return delete e._x_hidePromise,delete e._x_hideChildren,n};t(e).catch((e=>{if(!e.isFromCancelledTransition)throw e}))}))})))};var Be=!1;function Ge(e,t=(()=>{})){return(...n)=>Be?t(...n):e(...n)}function Ye(e,t,n,a=[]){switch(e._x_bindings||(e._x_bindings=i({})),e._x_bindings[t]=n,t=a.includes("camel")?t.toLowerCase().replace(/-(\w)/g,((e,t)=>t.toUpperCase())):t){case"value":!function(e,t){if("radio"===e.type)void 0===e.attributes.value&&(e.value=t),window.fromModel&&(e.checked=He(e.value,t));else if("checkbox"===e.type)Number.isInteger(t)?e.value=t:Number.isInteger(t)||Array.isArray(t)||"boolean"==typeof t||[null,void 0].includes(t)?Array.isArray(t)?e.checked=t.some((t=>He(t,e.value))):e.checked=!!t:e.value=String(t);else if("SELECT"===e.tagName)!function(e,t){const n=[].concat(t).map((e=>e+""));Array.from(e.options).forEach((e=>{e.selected=n.includes(e.value)}))}(e,t);else{if(e.value===t)return;e.value=t}}(e,n);break;case"style":!function(e,t){e._x_undoAddedStyles&&e._x_undoAddedStyles();e._x_undoAddedStyles=Me(e,t)}(e,n);break;case"class":!function(e,t){e._x_undoAddedClasses&&e._x_undoAddedClasses();e._x_undoAddedClasses=xe(e,t)}(e,n);break;default:!function(e,t,n){[null,void 0,!1].includes(n)&&function(e){return!["aria-pressed","aria-checked","aria-expanded","aria-selected"].includes(e)}(t)?e.removeAttribute(t):(Ve(t)&&(n=t),function(e,t,n){e.getAttribute(t)!=n&&e.setAttribute(t,n)}(e,t,n))}(e,t,n)}}function He(e,t){return e==t}function Ve(e){return["disabled","checked","required","readonly","hidden","open","selected","autofocus","itemscope","multiple","novalidate","allowfullscreen","allowpaymentrequest","formnovalidate","autoplay","controls","loop","muted","playsinline","default","ismap","reversed","async","defer","nomodule"].includes(e)}function qe(e,t){var n;return function(){var i=this,a=arguments,r=function(){n=null,e.apply(i,a)};clearTimeout(n),n=setTimeout(r,t)}}function ze(e,t){let n;return function(){let i=this,a=arguments;n||(e.apply(i,a),n=!0,setTimeout((()=>n=!1),t))}}var $e={},je=!1;var We={};function Ke(e,t,n){let i=[];for(;i.length;)i.pop()();let a=Object.entries(t).map((([e,t])=>({name:e,value:t}))),r=te(a);a=a.map((e=>r.find((t=>t.name===e.name))?{name:`x-bind:${e.name}`,value:`"${e.value}"`}:e)),ee(e,a,n).map((e=>{i.push(e.runCleanups),e()}))}var Qe={};var Xe={get reactive(){return i},get release(){return r},get effect(){return a},get raw(){return o},version:"3.10.3",flushAndStopDeferringMutations:function(){R=!1,A(I),I=[]},dontAutoEvaluateFunctions:function(e){let t=V;V=!1,e(),V=t},disableEffectScheduling:function(e){p=!1,e(),p=!0},setReactivityEngine:function(e){i=e.reactive,r=e.release,a=t=>e.effect(t,{scheduler:e=>{p?_(e):e()}}),o=e.raw},closestDataStack:M,skipDuringClone:Ge,addRootSelector:Ne,addInitSelector:Re,addScopeToNode:x,deferMutations:function(){R=!0},mapAttributes:ce,evaluateLater:z,setEvaluator:function(e){$=e},mergeProxies:L,findClosest:Ae,closestRoot:Ie,interceptor:k,transition:Ue,setStyles:Me,mutateDom:N,directive:J,throttle:ze,debounce:qe,evaluate:q,initTree:De,nextTick:fe,prefixed:X,prefix:function(e){Q=e},plugin:function(e){e(Xe)},magic:B,store:function(e,t){if(je||($e=i($e),je=!0),void 0===t)return $e[e];$e[e]=t,"object"==typeof t&&null!==t&&t.hasOwnProperty("init")&&"function"==typeof t.init&&$e[e].init(),P($e[e])},start:function(){var e;document.body||Te("Unable to initialize. Trying to load Alpine before `` is available. Did you forget to add `defer` in Alpine's `
- @livewireScripts
+
@include('layouts._fathom')
diff --git a/routes/api.php b/routes/api.php
index 8279606a..2ddaecbf 100644
--- a/routes/api.php
+++ b/routes/api.php
@@ -1,6 +1,7 @@
group(function() {
+Route::middleware('auth')->group(function () {
Route::mediaLibrary();
});
diff --git a/tailwind.config.js b/tailwind.config.js
index 7caeb879..f8006f8a 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -10,6 +10,7 @@ function withOpacity(variableName) {
}
}
+/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
@@ -35,6 +36,44 @@ module.exports = {
],
theme: {
extend: {
+ animation: {
+ 'fade-in': 'fade-in 0.5s linear forwards',
+ marquee: 'marquee var(--marquee-duration) linear infinite',
+ 'spin-slow': 'spin 4s linear infinite',
+ 'spin-slower': 'spin 6s linear infinite',
+ 'spin-reverse': 'spin-reverse 1s linear infinite',
+ 'spin-reverse-slow': 'spin-reverse 4s linear infinite',
+ 'spin-reverse-slower': 'spin-reverse 6s linear infinite',
+ 'scroll-slow': 'scroll 30s linear infinite',
+ },
+ keyframes: {
+ 'fade-in': {
+ from: {
+ opacity: 0,
+ },
+ to: {
+ opacity: 1,
+ },
+ },
+ marquee: {
+ '100%': {
+ transform: 'translateY(-50%)',
+ },
+ },
+ 'spin-reverse': {
+ to: {
+ transform: 'rotate(-360deg)',
+ },
+ },
+ scroll: {
+ from: {
+ transform: 'translateX(0)',
+ },
+ to: {
+ transform: 'translateX(-100%)',
+ }
+ }
+ },
colors: {
flag: {
green: '#099170',
@@ -98,6 +137,9 @@ module.exports = {
'input-focus': withOpacity('--color-text-base'),
}
},
+ width: {
+ 90: '22.5rem'
+ },
typography: (theme) => ({
DEFAULT: {
css: {
@@ -140,10 +182,7 @@ module.exports = {
},
},
},
- }),
- width: {
- 90: '22.5rem'
- }
+ })
},
},
plugins: [