From 8dfdce39ff0dfcee83a3c39376d0bb6fb37c3448 Mon Sep 17 00:00:00 2001 From: Arthur Monney Date: Mon, 8 May 2023 14:13:41 +0200 Subject: [PATCH 1/2] :sparkles: Add Notification payment and apply refactoring --- app/Events/ApiRegistered.php | 5 - app/Events/ArticleWasSubmittedForApproval.php | 5 +- app/Events/EmailAddressWasChanged.php | 8 +- app/Events/SponsoringPaymentInitialize.php | 15 + .../NotchPayCallBackController.php | 5 +- app/Http/Livewire/SponsorSubscription.php | 11 +- app/Listeners/SendPaymentNotification.php | 19 + app/Models/Transaction.php | 25 +- .../NewSponsorPaymentNotification.php | 54 + app/Providers/EventServiceProvider.php | 6 + app/Traits/HasSettings.php | 7 - helpers/ModelHelper.php | 1565 +++++++++-------- public/css/app.css | 4 +- public/mix-manifest.json | 2 +- resources/css/forms.css | 12 + .../livewire/sponsor-subscription.blade.php | 26 +- 16 files changed, 951 insertions(+), 818 deletions(-) create mode 100644 app/Events/SponsoringPaymentInitialize.php create mode 100644 app/Listeners/SendPaymentNotification.php create mode 100644 app/Notifications/NewSponsorPaymentNotification.php diff --git a/app/Events/ApiRegistered.php b/app/Events/ApiRegistered.php index 32174de3..d1d1467d 100644 --- a/app/Events/ApiRegistered.php +++ b/app/Events/ApiRegistered.php @@ -11,11 +11,6 @@ class ApiRegistered { use SerializesModels; - /** - * Create a new event instance. - * - * @return void - */ public function __construct(public User $user) { } diff --git a/app/Events/ArticleWasSubmittedForApproval.php b/app/Events/ArticleWasSubmittedForApproval.php index ea4ee057..fa6a3e18 100644 --- a/app/Events/ArticleWasSubmittedForApproval.php +++ b/app/Events/ArticleWasSubmittedForApproval.php @@ -11,8 +11,7 @@ class ArticleWasSubmittedForApproval { use SerializesModels; - public function __construct( - public Article $article - ) { + public function __construct(public Article $article) + { } } diff --git a/app/Events/EmailAddressWasChanged.php b/app/Events/EmailAddressWasChanged.php index 3f87fa6e..cd1f4e5f 100644 --- a/app/Events/EmailAddressWasChanged.php +++ b/app/Events/EmailAddressWasChanged.php @@ -13,13 +13,7 @@ class EmailAddressWasChanged use Dispatchable; use SerializesModels; - /** - * @var \App\Models\User - */ - public $user; - - public function __construct(User $user) + public function __construct(public User $user) { - $this->user = $user; } } diff --git a/app/Events/SponsoringPaymentInitialize.php b/app/Events/SponsoringPaymentInitialize.php new file mode 100644 index 00000000..211b030d --- /dev/null +++ b/app/Events/SponsoringPaymentInitialize.php @@ -0,0 +1,15 @@ +where('transaction_reference', $request->get('reference')) ->firstOrFail(); @@ -22,7 +24,8 @@ public function __invoke(Request $request): RedirectResponse session()->flash('error', __('Votre paiement a été annulé veuillez relancer si vous souhaitez soutenir Laravel Cameroun, Merci.')); } else { // @ToDO Envoie de mail de notification de remerciement pour le sponsoring si l'utilisateur est dans la base de données - // @ToDo Envoie de la notification dans le channel de soumission pour un nouveau paiement + event(new SponsoringPaymentInitialize($transaction)); + session()->flash('status', __('Votre paiement a été pris en compte merci de soutenir Laravel Cameroun.')); } diff --git a/app/Http/Livewire/SponsorSubscription.php b/app/Http/Livewire/SponsorSubscription.php index e6dff419..88187aeb 100644 --- a/app/Http/Livewire/SponsorSubscription.php +++ b/app/Http/Livewire/SponsorSubscription.php @@ -16,6 +16,7 @@ class SponsorSubscription extends Component { public string $option = 'one-time'; public string $amount = ''; + public string $currency = 'XAF'; public function chooseOption(string $option): void { @@ -24,16 +25,14 @@ public function chooseOption(string $option): void public function subscribe(): void { - $this->validate( - ['amount' => 'required'], - ['amount.required' => __('Votre montant est requis')], - ); + $this->validate(['amount' => 'required']); if (!Auth::check()) { $this->emit('openModal', 'modals.anonymous-sponsors', [ 'amount' => $this->amount, 'option' => $this->option, ]); + return; } @@ -45,7 +44,7 @@ public function subscribe(): void 'amount' => $this->amount, 'email' => Auth::user()?->email, 'name' => Auth::user()?->name, - 'currency' => 'XAF', + 'currency' => $this->currency, 'reference' => Auth::id() . '-' . Auth::user()?->username() . '-' . uniqid(), 'callback' => route('notchpay-callback'), ]); @@ -72,7 +71,7 @@ public function subscribe(): void 'initiated_at' => $payload->transaction->initiated_at, 'description' => $payload->transaction->description, 'for' => PaymentType::SPONSORING->value, - ] + ], ]); $this->redirect($payload->authorization_url); diff --git a/app/Listeners/SendPaymentNotification.php b/app/Listeners/SendPaymentNotification.php new file mode 100644 index 00000000..e28ed226 --- /dev/null +++ b/app/Listeners/SendPaymentNotification.php @@ -0,0 +1,19 @@ +notifiable->notify(new NewSponsorPaymentNotification($event->transaction)); + } +} diff --git a/app/Models/Transaction.php b/app/Models/Transaction.php index ffdf7ecc..eb1588e9 100644 --- a/app/Models/Transaction.php +++ b/app/Models/Transaction.php @@ -9,6 +9,9 @@ use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; +/** + * @mixin IdeHelperTransaction + */ class Transaction extends Model { use HasFactory; @@ -17,11 +20,31 @@ class Transaction extends Model public $guarded = []; public $casts = [ - 'metadata' => 'json', + 'metadata' => 'array', ]; public function user(): BelongsTo { return $this->belongsTo(User::class); } + + public function getMetadata(string $name, string $default = ''): string | array + { + if ($this->metadata && array_key_exists($name, $this->metadata)) { + return $this->metadata[$name]; + } + + return $default; + } + + public function setMetadata(array $revisions, bool $save = true): self + { + $this->metadata = array_merge($this->metadata ?? [], $revisions); + + if ($save) { + $this->save(); + } + + return $this; + } } diff --git a/app/Notifications/NewSponsorPaymentNotification.php b/app/Notifications/NewSponsorPaymentNotification.php new file mode 100644 index 00000000..78d91f09 --- /dev/null +++ b/app/Notifications/NewSponsorPaymentNotification.php @@ -0,0 +1,54 @@ +to(config('services.telegram-bot-api.channel')) + ->content($this->content()) + ->button('Voir les sponsors', route('sponsors')); + } + + private function content(): string + { + $content = "*Nouveau paiement de Sponsoring enregistré!*\n\n"; + $content .= 'Auteur: '.$this->transaction->getMetadata('merchant')['name']."\n"; + $content .= 'Montant: '. $this->transaction->amount; + + if ($this->transaction->getMetadata('merchant')['laravel_cm_id']) { + $content .= 'Profil Laravel Cameroun: [@'.$this->transaction->user?->username.']('.route('profile', $this->transaction->user?->username).')'; + } + + return $content; + } +} diff --git a/app/Providers/EventServiceProvider.php b/app/Providers/EventServiceProvider.php index 78da514c..0818a193 100644 --- a/app/Providers/EventServiceProvider.php +++ b/app/Providers/EventServiceProvider.php @@ -8,6 +8,7 @@ use App\Events\ArticleWasSubmittedForApproval; use App\Events\CommentWasAdded; use App\Events\ReplyWasCreated; +use App\Events\SponsoringPaymentInitialize; use App\Events\ThreadWasCreated; use App\Listeners\NotifyMentionedUsers; use App\Listeners\PostNewThreadNotification; @@ -16,6 +17,7 @@ use App\Listeners\SendNewCommentNotification; use App\Listeners\SendNewReplyNotification; use App\Listeners\SendNewThreadNotification; +use App\Listeners\SendPaymentNotification; use App\Listeners\SendWelcomeCompanyNotification; use App\Listeners\SendWelcomeMailNotification; use Illuminate\Auth\Events\Registered; @@ -54,5 +56,9 @@ final class EventServiceProvider extends ServiceProvider SendCompanyEmailVerificationNotification::class, SendWelcomeCompanyNotification::class, ], + + SponsoringPaymentInitialize::class => [ + SendPaymentNotification::class, + ], ]; } diff --git a/app/Traits/HasSettings.php b/app/Traits/HasSettings.php index 0d681e12..17a5cea1 100644 --- a/app/Traits/HasSettings.php +++ b/app/Traits/HasSettings.php @@ -6,9 +6,6 @@ trait HasSettings { - /** - * Retrieve a setting with a given name or fall back to the default. - */ public function setting(string $name, string $default): string { if ($this->settings && array_key_exists($name, $this->settings)) { @@ -18,10 +15,6 @@ public function setting(string $name, string $default): string return $default; } - /** - * @param array $revisions - * @param bool $save - */ public function settings(array $revisions, bool $save = true): self { $this->settings = array_merge($this->settings ?? [], $revisions); diff --git a/helpers/ModelHelper.php b/helpers/ModelHelper.php index 76ad8173..08196793 100644 --- a/helpers/ModelHelper.php +++ b/helpers/ModelHelper.php @@ -1,7 +1,5 @@ */ + namespace App\Models{ - /** - * App\Models\Activity - * - * @property int $id - * @property string $subject_type - * @property int $subject_id - * @property string $type - * @property array|null $data - * @property int $user_id - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $subject - * @property-read \App\Models\User $user - * @method static \Database\Factories\ActivityFactory factory($count = null, $state = []) - * @method static \Illuminate\Database\Eloquent\Builder|Activity newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Activity newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Activity query() - * @method static \Illuminate\Database\Eloquent\Builder|Activity whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Activity whereData($value) - * @method static \Illuminate\Database\Eloquent\Builder|Activity whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Activity whereSubjectId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Activity whereSubjectType($value) - * @method static \Illuminate\Database\Eloquent\Builder|Activity whereType($value) - * @method static \Illuminate\Database\Eloquent\Builder|Activity whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Activity whereUserId($value) - * @mixin \Eloquent - */ - class IdeHelperActivity - { - } +/** + * App\Models\Activity + * + * @property int $id + * @property string $subject_type + * @property int $subject_id + * @property string $type + * @property array|null $data + * @property int $user_id + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $subject + * @property-read \App\Models\User $user + * @method static \Database\Factories\ActivityFactory factory($count = null, $state = []) + * @method static \Illuminate\Database\Eloquent\Builder|Activity newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Activity newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Activity query() + * @method static \Illuminate\Database\Eloquent\Builder|Activity whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Activity whereData($value) + * @method static \Illuminate\Database\Eloquent\Builder|Activity whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Activity whereSubjectId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Activity whereSubjectType($value) + * @method static \Illuminate\Database\Eloquent\Builder|Activity whereType($value) + * @method static \Illuminate\Database\Eloquent\Builder|Activity whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Activity whereUserId($value) + * @mixin \Eloquent + */ + class IdeHelperActivity {} } namespace App\Models{ - /** - * App\Models\Article - * - * @property int $id - * @property string $title - * @property string $body - * @property string $slug - * @property string|null $canonical_url - * @property bool $show_toc - * @property bool $is_pinned - * @property int $is_sponsored - * @property int|null $tweet_id - * @property int $user_id - * @property \Illuminate\Support\Carbon|null $published_at - * @property \Illuminate\Support\Carbon|null $submitted_at - * @property \Illuminate\Support\Carbon|null $approved_at - * @property \Illuminate\Support\Carbon|null $shared_at - * @property \Illuminate\Support\Carbon|null $declined_at - * @property \Illuminate\Support\Carbon|null $sponsored_at - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read \Illuminate\Database\Eloquent\Collection $activity - * @property-read int|null $activity_count - * @property-read \Spatie\MediaLibrary\MediaCollections\Models\Collections\MediaCollection $media - * @property-read int|null $media_count - * @property-read \Illuminate\Database\Eloquent\Collection $reactions - * @property-read int|null $reactions_count - * @property-read \Illuminate\Database\Eloquent\Collection $tags - * @property-read int|null $tags_count - * @property-read \App\Models\User $user - * @property-read \Illuminate\Database\Eloquent\Collection $views - * @property-read int|null $views_count - * @method static \Illuminate\Database\Eloquent\Builder|Article approved() - * @method static \Illuminate\Database\Eloquent\Builder|Article awaitingApproval() - * @method static \Illuminate\Database\Eloquent\Builder|Article declined() - * @method static \Database\Factories\ArticleFactory factory($count = null, $state = []) - * @method static \Illuminate\Database\Eloquent\Builder|Article forTag(string $tag) - * @method static \Illuminate\Database\Eloquent\Builder|Article newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Article newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Article notApproved() - * @method static \Illuminate\Database\Eloquent\Builder|Article notDeclined() - * @method static \Illuminate\Database\Eloquent\Builder|Article notPinned() - * @method static \Illuminate\Database\Eloquent\Builder|Article notPublished() - * @method static \Illuminate\Database\Eloquent\Builder|Article notShared() - * @method static \Illuminate\Database\Eloquent\Builder|Article orderByUniqueViews(string $direction = 'desc', $period = null, ?string $collection = null, string $as = 'unique_views_count') - * @method static \Illuminate\Database\Eloquent\Builder|Article orderByViews(string $direction = 'desc', ?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') - * @method static \Illuminate\Database\Eloquent\Builder|Article pinned() - * @method static \Illuminate\Database\Eloquent\Builder|Article popular() - * @method static \Illuminate\Database\Eloquent\Builder|Article published() - * @method static \Illuminate\Database\Eloquent\Builder|Article query() - * @method static \Illuminate\Database\Eloquent\Builder|Article recent() - * @method static \Illuminate\Database\Eloquent\Builder|Article shared() - * @method static \Illuminate\Database\Eloquent\Builder|Article sponsored() - * @method static \Illuminate\Database\Eloquent\Builder|Article submitted() - * @method static \Illuminate\Database\Eloquent\Builder|Article trending() - * @method static \Illuminate\Database\Eloquent\Builder|Article whereApprovedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereBody($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereCanonicalUrl($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereDeclinedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereIsPinned($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereIsSponsored($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article wherePublishedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereSharedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereShowToc($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereSlug($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereSponsoredAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereSubmittedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereTitle($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereTweetId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereUserId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article withViewsCount(?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') - * @mixin \Eloquent - */ - class IdeHelperArticle - { - } +/** + * App\Models\Article + * + * @property int $id + * @property string $title + * @property string $body + * @property string $slug + * @property string|null $canonical_url + * @property bool $show_toc + * @property bool $is_pinned + * @property int $is_sponsored + * @property int|null $tweet_id + * @property int $user_id + * @property \Illuminate\Support\Carbon|null $published_at + * @property \Illuminate\Support\Carbon|null $submitted_at + * @property \Illuminate\Support\Carbon|null $approved_at + * @property \Illuminate\Support\Carbon|null $shared_at + * @property \Illuminate\Support\Carbon|null $declined_at + * @property \Illuminate\Support\Carbon|null $sponsored_at + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \Illuminate\Database\Eloquent\Collection $activity + * @property-read int|null $activity_count + * @property-read \Spatie\MediaLibrary\MediaCollections\Models\Collections\MediaCollection $media + * @property-read int|null $media_count + * @property-read \Illuminate\Database\Eloquent\Collection $reactions + * @property-read int|null $reactions_count + * @property-read \Illuminate\Database\Eloquent\Collection $tags + * @property-read int|null $tags_count + * @property-read \App\Models\User $user + * @property-read \Illuminate\Database\Eloquent\Collection $views + * @property-read int|null $views_count + * @method static \Illuminate\Database\Eloquent\Builder|Article approved() + * @method static \Illuminate\Database\Eloquent\Builder|Article awaitingApproval() + * @method static \Illuminate\Database\Eloquent\Builder|Article declined() + * @method static \Database\Factories\ArticleFactory factory($count = null, $state = []) + * @method static \Illuminate\Database\Eloquent\Builder|Article forTag(string $tag) + * @method static \Illuminate\Database\Eloquent\Builder|Article newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Article newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Article notApproved() + * @method static \Illuminate\Database\Eloquent\Builder|Article notDeclined() + * @method static \Illuminate\Database\Eloquent\Builder|Article notPinned() + * @method static \Illuminate\Database\Eloquent\Builder|Article notPublished() + * @method static \Illuminate\Database\Eloquent\Builder|Article notShared() + * @method static \Illuminate\Database\Eloquent\Builder|Article orderByUniqueViews(string $direction = 'desc', $period = null, ?string $collection = null, string $as = 'unique_views_count') + * @method static \Illuminate\Database\Eloquent\Builder|Article orderByViews(string $direction = 'desc', ?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') + * @method static \Illuminate\Database\Eloquent\Builder|Article pinned() + * @method static \Illuminate\Database\Eloquent\Builder|Article popular() + * @method static \Illuminate\Database\Eloquent\Builder|Article published() + * @method static \Illuminate\Database\Eloquent\Builder|Article query() + * @method static \Illuminate\Database\Eloquent\Builder|Article recent() + * @method static \Illuminate\Database\Eloquent\Builder|Article shared() + * @method static \Illuminate\Database\Eloquent\Builder|Article sponsored() + * @method static \Illuminate\Database\Eloquent\Builder|Article submitted() + * @method static \Illuminate\Database\Eloquent\Builder|Article trending() + * @method static \Illuminate\Database\Eloquent\Builder|Article whereApprovedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereBody($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereCanonicalUrl($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereDeclinedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereIsPinned($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereIsSponsored($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article wherePublishedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereSharedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereShowToc($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereSlug($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereSponsoredAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereSubmittedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereTitle($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereTweetId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereUserId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article withViewsCount(?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') + * @mixin \Eloquent + */ + class IdeHelperArticle {} } namespace App\Models{ - /** - * App\Models\Channel - * - * @property int $id - * @property string $name - * @property string $slug - * @property int|null $parent_id - * @property string|null $color - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read \Illuminate\Database\Eloquent\Collection $items - * @property-read int|null $items_count - * @property-read Channel|null $parent - * @property-read \Illuminate\Database\Eloquent\Collection $threads - * @property-read int|null $threads_count - * @method static \Database\Factories\ChannelFactory factory($count = null, $state = []) - * @method static \Illuminate\Database\Eloquent\Builder|Channel newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Channel newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Channel query() - * @method static \Illuminate\Database\Eloquent\Builder|Channel whereColor($value) - * @method static \Illuminate\Database\Eloquent\Builder|Channel whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Channel whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Channel whereName($value) - * @method static \Illuminate\Database\Eloquent\Builder|Channel whereParentId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Channel whereSlug($value) - * @method static \Illuminate\Database\Eloquent\Builder|Channel whereUpdatedAt($value) - * @mixin \Eloquent - */ - class IdeHelperChannel - { - } +/** + * App\Models\Channel + * + * @property int $id + * @property string $name + * @property string $slug + * @property int|null $parent_id + * @property string|null $color + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \Illuminate\Database\Eloquent\Collection $items + * @property-read int|null $items_count + * @property-read Channel|null $parent + * @property-read \Illuminate\Database\Eloquent\Collection $threads + * @property-read int|null $threads_count + * @method static \Database\Factories\ChannelFactory factory($count = null, $state = []) + * @method static \Illuminate\Database\Eloquent\Builder|Channel newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Channel newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Channel query() + * @method static \Illuminate\Database\Eloquent\Builder|Channel whereColor($value) + * @method static \Illuminate\Database\Eloquent\Builder|Channel whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Channel whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Channel whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Channel whereParentId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Channel whereSlug($value) + * @method static \Illuminate\Database\Eloquent\Builder|Channel whereUpdatedAt($value) + * @mixin \Eloquent + */ + class IdeHelperChannel {} } namespace App\Models{ - /** - * App\Models\Discussion - * - * @property int $id - * @property int $user_id - * @property string $title - * @property string $slug - * @property string $body - * @property bool $is_pinned - * @property bool $locked - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read \Illuminate\Database\Eloquent\Collection $activity - * @property-read int|null $activity_count - * @property-read int $count_all_replies_with_child - * @property-read \App\Models\Reply|null $latestReply - * @property-read \Illuminate\Database\Eloquent\Collection $reactions - * @property-read int|null $reactions_count - * @property-read \Illuminate\Database\Eloquent\Collection $replies - * @property-read int|null $replies_count - * @property-read \Illuminate\Database\Eloquent\Collection $subscribes - * @property-read int|null $subscribes_count - * @property-read \Illuminate\Database\Eloquent\Collection $tags - * @property-read int|null $tags_count - * @property-read \App\Models\User $user - * @property-read \Illuminate\Database\Eloquent\Collection $views - * @property-read int|null $views_count - * @method static \Illuminate\Database\Eloquent\Builder|Discussion active() - * @method static \Database\Factories\DiscussionFactory factory($count = null, $state = []) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion forTag(string $tag) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Discussion newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Discussion noComments() - * @method static \Illuminate\Database\Eloquent\Builder|Discussion notPinned() - * @method static \Illuminate\Database\Eloquent\Builder|Discussion orderByUniqueViews(string $direction = 'desc', $period = null, ?string $collection = null, string $as = 'unique_views_count') - * @method static \Illuminate\Database\Eloquent\Builder|Discussion orderByViews(string $direction = 'desc', ?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') - * @method static \Illuminate\Database\Eloquent\Builder|Discussion pinned() - * @method static \Illuminate\Database\Eloquent\Builder|Discussion popular() - * @method static \Illuminate\Database\Eloquent\Builder|Discussion query() - * @method static \Illuminate\Database\Eloquent\Builder|Discussion recent() - * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereBody($value) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereIsPinned($value) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereLocked($value) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereSlug($value) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereTitle($value) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereUserId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion withViewsCount(?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') - * @mixin \Eloquent - */ - class IdeHelperDiscussion - { - } +/** + * App\Models\Discussion + * + * @property int $id + * @property int $user_id + * @property string $title + * @property string $slug + * @property string $body + * @property bool $is_pinned + * @property bool $locked + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \Illuminate\Database\Eloquent\Collection $activity + * @property-read int|null $activity_count + * @property-read int $count_all_replies_with_child + * @property-read \App\Models\Reply|null $latestReply + * @property-read \Illuminate\Database\Eloquent\Collection $reactions + * @property-read int|null $reactions_count + * @property-read \Illuminate\Database\Eloquent\Collection $replies + * @property-read int|null $replies_count + * @property-read \Illuminate\Database\Eloquent\Collection $subscribes + * @property-read int|null $subscribes_count + * @property-read \Illuminate\Database\Eloquent\Collection $tags + * @property-read int|null $tags_count + * @property-read \App\Models\User $user + * @property-read \Illuminate\Database\Eloquent\Collection $views + * @property-read int|null $views_count + * @method static \Illuminate\Database\Eloquent\Builder|Discussion active() + * @method static \Database\Factories\DiscussionFactory factory($count = null, $state = []) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion forTag(string $tag) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Discussion newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Discussion noComments() + * @method static \Illuminate\Database\Eloquent\Builder|Discussion notPinned() + * @method static \Illuminate\Database\Eloquent\Builder|Discussion orderByUniqueViews(string $direction = 'desc', $period = null, ?string $collection = null, string $as = 'unique_views_count') + * @method static \Illuminate\Database\Eloquent\Builder|Discussion orderByViews(string $direction = 'desc', ?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') + * @method static \Illuminate\Database\Eloquent\Builder|Discussion pinned() + * @method static \Illuminate\Database\Eloquent\Builder|Discussion popular() + * @method static \Illuminate\Database\Eloquent\Builder|Discussion query() + * @method static \Illuminate\Database\Eloquent\Builder|Discussion recent() + * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereBody($value) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereIsPinned($value) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereLocked($value) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereSlug($value) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereTitle($value) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereUserId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion withViewsCount(?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') + * @mixin \Eloquent + */ + class IdeHelperDiscussion {} } namespace App\Models{ - /** - * App\Models\Enterprise - * - * @property int $id - * @property string $name - * @property string $slug - * @property string $website - * @property string|null $address - * @property string|null $description - * @property string|null $about - * @property string|null $founded_in - * @property string|null $ceo - * @property int $user_id - * @property bool $is_certified - * @property bool $is_featured - * @property bool $is_public - * @property string $size - * @property array|null $settings - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read \Spatie\MediaLibrary\MediaCollections\Models\Collections\MediaCollection $media - * @property-read int|null $media_count - * @property-read \App\Models\User $owner - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise certified() - * @method static \Database\Factories\EnterpriseFactory factory($count = null, $state = []) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise featured() - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise filters(\Illuminate\Http\Request $request, array $filters = []) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise public() - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise query() - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereAbout($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereAddress($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereCeo($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereDescription($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereFoundedIn($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereIsCertified($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereIsFeatured($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereIsPublic($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereName($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereSettings($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereSize($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereSlug($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereUserId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereWebsite($value) - * @mixin \Eloquent - */ - class IdeHelperEnterprise - { - } +/** + * App\Models\Enterprise + * + * @property int $id + * @property string $name + * @property string $slug + * @property string $website + * @property string|null $address + * @property string|null $description + * @property string|null $about + * @property string|null $founded_in + * @property string|null $ceo + * @property int $user_id + * @property bool $is_certified + * @property bool $is_featured + * @property bool $is_public + * @property string $size + * @property array|null $settings + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \Spatie\MediaLibrary\MediaCollections\Models\Collections\MediaCollection $media + * @property-read int|null $media_count + * @property-read \App\Models\User $owner + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise certified() + * @method static \Database\Factories\EnterpriseFactory factory($count = null, $state = []) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise featured() + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise filters(\Illuminate\Http\Request $request, array $filters = []) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise public() + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise query() + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereAbout($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereAddress($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereCeo($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereDescription($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereFoundedIn($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereIsCertified($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereIsFeatured($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereIsPublic($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereSettings($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereSize($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereSlug($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereUserId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereWebsite($value) + * @mixin \Eloquent + */ + class IdeHelperEnterprise {} } namespace App\Models{ - /** - * App\Models\Feature - * - * @property int $id - * @property string $name - * @property int $is_enabled - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @method static \Illuminate\Database\Eloquent\Builder|Feature newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Feature newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Feature query() - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereIsEnabled($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereName($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereUpdatedAt($value) - * @mixin \Eloquent - */ - class IdeHelperFeature - { - } +/** + * App\Models\Feature + * + * @property int $id + * @property string $name + * @property int $is_enabled + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @method static \Illuminate\Database\Eloquent\Builder|Feature newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Feature newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Feature query() + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereIsEnabled($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereUpdatedAt($value) + * @mixin \Eloquent + */ + class IdeHelperFeature {} } namespace App\Models\Premium{ - /** - * App\Models\Premium\Feature - * - * @property int $id - * @property int $plan_id - * @property string $slug - * @property array $name - * @property array|null $description - * @property string $value - * @property int $resettable_period - * @property string $resettable_interval - * @property int $sort_order - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property \Illuminate\Support\Carbon|null $deleted_at - * @property-read array $translations - * @property-read \App\Models\Premium\Plan $plan - * @property-read \Illuminate\Database\Eloquent\Collection $usage - * @property-read int|null $usage_count - * @method static \Illuminate\Database\Eloquent\Builder|PlanFeature byPlanId(int $planId) - * @method static \Illuminate\Database\Eloquent\Builder|Feature newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Feature newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Feature onlyTrashed() - * @method static \Illuminate\Database\Eloquent\Builder|PlanFeature ordered(string $direction = 'asc') - * @method static \Illuminate\Database\Eloquent\Builder|Feature query() - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereDeletedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereDescription($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereName($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature wherePlanId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereResettableInterval($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereResettablePeriod($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereSlug($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereSortOrder($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereValue($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature withTrashed() - * @method static \Illuminate\Database\Eloquent\Builder|Feature withoutTrashed() - * @mixin \Eloquent - */ - class IdeHelperFeature - { - } +/** + * App\Models\Premium\Feature + * + * @property int $id + * @property int $plan_id + * @property string $slug + * @property array $name + * @property array|null $description + * @property string $value + * @property int $resettable_period + * @property string $resettable_interval + * @property int $sort_order + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property \Illuminate\Support\Carbon|null $deleted_at + * @property-read array $translations + * @property-read \App\Models\Premium\Plan $plan + * @property-read \Illuminate\Database\Eloquent\Collection $usage + * @property-read int|null $usage_count + * @method static \Illuminate\Database\Eloquent\Builder|PlanFeature byPlanId(int $planId) + * @method static \Illuminate\Database\Eloquent\Builder|Feature newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Feature newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Feature onlyTrashed() + * @method static \Illuminate\Database\Eloquent\Builder|PlanFeature ordered(string $direction = 'asc') + * @method static \Illuminate\Database\Eloquent\Builder|Feature query() + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereDeletedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereDescription($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature wherePlanId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereResettableInterval($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereResettablePeriod($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereSlug($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereSortOrder($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereValue($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature withTrashed() + * @method static \Illuminate\Database\Eloquent\Builder|Feature withoutTrashed() + * @mixin \Eloquent + */ + class IdeHelperFeature {} } namespace App\Models\Premium{ - /** - * App\Models\Premium\Plan - * - * @property int $id - * @property string $slug - * @property array $name - * @property string $type - * @property array|null $description - * @property bool $is_active - * @property float $price - * @property float $signup_fee - * @property string $currency - * @property int $trial_period - * @property string $trial_interval - * @property int $invoice_period - * @property string $invoice_interval - * @property int $grace_period - * @property string $grace_interval - * @property int|null $prorate_day - * @property int|null $prorate_period - * @property int|null $prorate_extend_due - * @property int|null $active_subscribers_limit - * @property int $sort_order - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property \Illuminate\Support\Carbon|null $deleted_at - * @property-read \Illuminate\Database\Eloquent\Collection $features - * @property-read int|null $features_count - * @property-read array $translations - * @property-read \Illuminate\Database\Eloquent\Collection $subscriptions - * @property-read int|null $subscriptions_count - * @method static \Illuminate\Database\Eloquent\Builder|Plan developer() - * @method static \Illuminate\Database\Eloquent\Builder|Plan enterprise() - * @method static \Illuminate\Database\Eloquent\Builder|Plan newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Plan newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Plan onlyTrashed() - * @method static \Illuminate\Database\Eloquent\Builder|Plan ordered(string $direction = 'asc') - * @method static \Illuminate\Database\Eloquent\Builder|Plan query() - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereActiveSubscribersLimit($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereCurrency($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereDeletedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereDescription($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereGraceInterval($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereGracePeriod($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereInvoiceInterval($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereInvoicePeriod($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereIsActive($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereName($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan wherePrice($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereProrateDay($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereProrateExtendDue($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereProratePeriod($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereSignupFee($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereSlug($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereSortOrder($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereTrialInterval($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereTrialPeriod($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereType($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan withTrashed() - * @method static \Illuminate\Database\Eloquent\Builder|Plan withoutTrashed() - * @mixin \Eloquent - */ - class IdeHelperPlan - { - } +/** + * App\Models\Premium\Plan + * + * @property int $id + * @property string $slug + * @property array $name + * @property string $type + * @property array|null $description + * @property bool $is_active + * @property float $price + * @property float $signup_fee + * @property string $currency + * @property int $trial_period + * @property string $trial_interval + * @property int $invoice_period + * @property string $invoice_interval + * @property int $grace_period + * @property string $grace_interval + * @property int|null $prorate_day + * @property int|null $prorate_period + * @property int|null $prorate_extend_due + * @property int|null $active_subscribers_limit + * @property int $sort_order + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property \Illuminate\Support\Carbon|null $deleted_at + * @property-read \Illuminate\Database\Eloquent\Collection $features + * @property-read int|null $features_count + * @property-read array $translations + * @property-read \Illuminate\Database\Eloquent\Collection $subscriptions + * @property-read int|null $subscriptions_count + * @method static \Illuminate\Database\Eloquent\Builder|Plan developer() + * @method static \Illuminate\Database\Eloquent\Builder|Plan enterprise() + * @method static \Illuminate\Database\Eloquent\Builder|Plan newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Plan newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Plan onlyTrashed() + * @method static \Illuminate\Database\Eloquent\Builder|Plan ordered(string $direction = 'asc') + * @method static \Illuminate\Database\Eloquent\Builder|Plan query() + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereActiveSubscribersLimit($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereCurrency($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereDeletedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereDescription($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereGraceInterval($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereGracePeriod($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereInvoiceInterval($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereInvoicePeriod($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereIsActive($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan wherePrice($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereProrateDay($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereProrateExtendDue($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereProratePeriod($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereSignupFee($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereSlug($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereSortOrder($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereTrialInterval($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereTrialPeriod($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereType($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan withTrashed() + * @method static \Illuminate\Database\Eloquent\Builder|Plan withoutTrashed() + * @mixin \Eloquent + */ + class IdeHelperPlan {} } namespace App\Models\Premium{ - /** - * App\Models\Premium\Subscription - * - * @property int $id - * @property string $subscriber_type - * @property int $subscriber_id - * @property int $plan_id - * @property string $slug - * @property array $name - * @property array|null $description - * @property \Illuminate\Support\Carbon|null $trial_ends_at - * @property \Illuminate\Support\Carbon|null $starts_at - * @property \Illuminate\Support\Carbon|null $ends_at - * @property \Illuminate\Support\Carbon|null $cancels_at - * @property \Illuminate\Support\Carbon|null $canceled_at - * @property string|null $timezone - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property \Illuminate\Support\Carbon|null $deleted_at - * @property-read array $translations - * @property-read \App\Models\Premium\Plan $plan - * @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $subscriber - * @property-read \Illuminate\Database\Eloquent\Collection $usage - * @property-read int|null $usage_count - * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription byPlanId(int $planId) - * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findActive() - * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findEndedPeriod() - * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findEndedTrial() - * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findEndingPeriod(int $dayRange = 3) - * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findEndingTrial(int $dayRange = 3) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Subscription newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription ofSubscriber(\Illuminate\Database\Eloquent\Model $subscriber) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription onlyTrashed() - * @method static \Illuminate\Database\Eloquent\Builder|Subscription query() - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereCanceledAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereCancelsAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereDeletedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereDescription($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereEndsAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereName($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription wherePlanId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereSlug($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereStartsAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereSubscriberId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereSubscriberType($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereTimezone($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereTrialEndsAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription withTrashed() - * @method static \Illuminate\Database\Eloquent\Builder|Subscription withoutTrashed() - * @mixin \Eloquent - */ - class IdeHelperSubscription - { - } +/** + * App\Models\Premium\Subscription + * + * @property int $id + * @property string $subscriber_type + * @property int $subscriber_id + * @property int $plan_id + * @property string $slug + * @property array $name + * @property array|null $description + * @property \Illuminate\Support\Carbon|null $trial_ends_at + * @property \Illuminate\Support\Carbon|null $starts_at + * @property \Illuminate\Support\Carbon|null $ends_at + * @property \Illuminate\Support\Carbon|null $cancels_at + * @property \Illuminate\Support\Carbon|null $canceled_at + * @property string|null $timezone + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property \Illuminate\Support\Carbon|null $deleted_at + * @property-read array $translations + * @property-read \App\Models\Premium\Plan $plan + * @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $subscriber + * @property-read \Illuminate\Database\Eloquent\Collection $usage + * @property-read int|null $usage_count + * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription byPlanId(int $planId) + * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findActive() + * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findEndedPeriod() + * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findEndedTrial() + * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findEndingPeriod(int $dayRange = 3) + * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findEndingTrial(int $dayRange = 3) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Subscription newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription ofSubscriber(\Illuminate\Database\Eloquent\Model $subscriber) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription onlyTrashed() + * @method static \Illuminate\Database\Eloquent\Builder|Subscription query() + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereCanceledAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereCancelsAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereDeletedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereDescription($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereEndsAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription wherePlanId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereSlug($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereStartsAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereSubscriberId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereSubscriberType($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereTimezone($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereTrialEndsAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription withTrashed() + * @method static \Illuminate\Database\Eloquent\Builder|Subscription withoutTrashed() + * @mixin \Eloquent + */ + class IdeHelperSubscription {} } namespace App\Models\Premium{ - /** - * App\Models\Premium\SubscriptionUsage - * - * @property int $id - * @property int $subscription_id - * @property int $feature_id - * @property int $used - * @property \Illuminate\Support\Carbon|null $valid_until - * @property string|null $timezone - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property \Illuminate\Support\Carbon|null $deleted_at - * @property-read \App\Models\Premium\Feature $feature - * @property-read \App\Models\Premium\Subscription $subscription - * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscriptionUsage byFeatureSlug(string $featureSlug) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage onlyTrashed() - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage query() - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereDeletedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereFeatureId($value) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereSubscriptionId($value) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereTimezone($value) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereUsed($value) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereValidUntil($value) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage withTrashed() - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage withoutTrashed() - * @mixin \Eloquent - */ - class IdeHelperSubscriptionUsage - { - } +/** + * App\Models\Premium\SubscriptionUsage + * + * @property int $id + * @property int $subscription_id + * @property int $feature_id + * @property int $used + * @property \Illuminate\Support\Carbon|null $valid_until + * @property string|null $timezone + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property \Illuminate\Support\Carbon|null $deleted_at + * @property-read \App\Models\Premium\Feature $feature + * @property-read \App\Models\Premium\Subscription $subscription + * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscriptionUsage byFeatureSlug(string $featureSlug) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage onlyTrashed() + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage query() + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereDeletedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereFeatureId($value) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereSubscriptionId($value) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereTimezone($value) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereUsed($value) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereValidUntil($value) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage withTrashed() + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage withoutTrashed() + * @mixin \Eloquent + */ + class IdeHelperSubscriptionUsage {} } namespace App\Models{ - /** - * App\Models\Reaction - * - * @property int $id - * @property string $name - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @method static \Illuminate\Database\Eloquent\Builder|Reaction newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Reaction newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Reaction query() - * @method static \Illuminate\Database\Eloquent\Builder|Reaction whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Reaction whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Reaction whereName($value) - * @method static \Illuminate\Database\Eloquent\Builder|Reaction whereUpdatedAt($value) - * @mixin \Eloquent - */ - class IdeHelperReaction - { - } +/** + * App\Models\Reaction + * + * @property int $id + * @property string $name + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @method static \Illuminate\Database\Eloquent\Builder|Reaction newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Reaction newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Reaction query() + * @method static \Illuminate\Database\Eloquent\Builder|Reaction whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Reaction whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Reaction whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Reaction whereUpdatedAt($value) + * @mixin \Eloquent + */ + class IdeHelperReaction {} } namespace App\Models{ - /** - * App\Models\Reply - * - * @property int $id - * @property int $user_id - * @property string $replyable_type - * @property int $replyable_id - * @property string $body - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read \Illuminate\Database\Eloquent\Collection $activity - * @property-read int|null $activity_count - * @property-read \Illuminate\Database\Eloquent\Collection $allChildReplies - * @property-read int|null $all_child_replies_count - * @property-read Reply|null $latestReply - * @property-read \Illuminate\Database\Eloquent\Collection $reactions - * @property-read int|null $reactions_count - * @property-read \Illuminate\Database\Eloquent\Collection $replies - * @property-read int|null $replies_count - * @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $replyAble - * @property-read \App\Models\Thread|null $solutionTo - * @property-read \App\Models\User $user - * @method static \Database\Factories\ReplyFactory factory($count = null, $state = []) - * @method static \Illuminate\Database\Eloquent\Builder|Reply isSolution() - * @method static \Illuminate\Database\Eloquent\Builder|Reply newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Reply newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Reply query() - * @method static \Illuminate\Database\Eloquent\Builder|Reply whereBody($value) - * @method static \Illuminate\Database\Eloquent\Builder|Reply whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Reply whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Reply whereReplyableId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Reply whereReplyableType($value) - * @method static \Illuminate\Database\Eloquent\Builder|Reply whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Reply whereUserId($value) - * @mixin \Eloquent - */ - class IdeHelperReply - { - } +/** + * App\Models\Reply + * + * @property int $id + * @property int $user_id + * @property string $replyable_type + * @property int $replyable_id + * @property string $body + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \Illuminate\Database\Eloquent\Collection $activity + * @property-read int|null $activity_count + * @property-read \Illuminate\Database\Eloquent\Collection $allChildReplies + * @property-read int|null $all_child_replies_count + * @property-read Reply|null $latestReply + * @property-read \Illuminate\Database\Eloquent\Collection $reactions + * @property-read int|null $reactions_count + * @property-read \Illuminate\Database\Eloquent\Collection $replies + * @property-read int|null $replies_count + * @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $replyAble + * @property-read \App\Models\Thread|null $solutionTo + * @property-read \App\Models\User $user + * @method static \Database\Factories\ReplyFactory factory($count = null, $state = []) + * @method static \Illuminate\Database\Eloquent\Builder|Reply isSolution() + * @method static \Illuminate\Database\Eloquent\Builder|Reply newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Reply newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Reply query() + * @method static \Illuminate\Database\Eloquent\Builder|Reply whereBody($value) + * @method static \Illuminate\Database\Eloquent\Builder|Reply whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Reply whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Reply whereReplyableId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Reply whereReplyableType($value) + * @method static \Illuminate\Database\Eloquent\Builder|Reply whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Reply whereUserId($value) + * @mixin \Eloquent + */ + class IdeHelperReply {} } namespace App\Models{ - /** - * App\Models\SocialAccount - * - * @property int $id - * @property int $user_id - * @property string $provider - * @property string $provider_id - * @property string|null $token - * @property string|null $avatar - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount query() - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereAvatar($value) - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereProvider($value) - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereProviderId($value) - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereToken($value) - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereUserId($value) - * @mixin \Eloquent - */ - class IdeHelperSocialAccount - { - } +/** + * App\Models\SocialAccount + * + * @property int $id + * @property int $user_id + * @property string $provider + * @property string $provider_id + * @property string|null $token + * @property string|null $avatar + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount query() + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereAvatar($value) + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereProvider($value) + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereProviderId($value) + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereToken($value) + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereUserId($value) + * @mixin \Eloquent + */ + class IdeHelperSocialAccount {} +} + +namespace App\Models{ +/** + * App\Models\Subscribe + * + * @property string $uuid + * @property int $user_id + * @property string $subscribeable_type + * @property int $subscribeable_id + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $subscribeAble + * @property-read \App\Models\User $user + * @method static \Illuminate\Database\Eloquent\Builder|Subscribe newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Subscribe newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Subscribe query() + * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereSubscribeableId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereSubscribeableType($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereUserId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereUuid($value) + * @mixin \Eloquent + */ + class IdeHelperSubscribe {} } namespace App\Models{ - /** - * App\Models\Subscribe - * - * @property string $uuid - * @property int $user_id - * @property string $subscribeable_type - * @property int $subscribeable_id - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $subscribeAble - * @property-read \App\Models\User $user - * @method static \Illuminate\Database\Eloquent\Builder|Subscribe newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Subscribe newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Subscribe query() - * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereSubscribeableId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereSubscribeableType($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereUserId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereUuid($value) - * @mixin \Eloquent - */ - class IdeHelperSubscribe - { - } +/** + * App\Models\Tag + * + * @property int $id + * @property string $name + * @property string $slug + * @property string|null $description + * @property array $concerns + * @property-read \Illuminate\Database\Eloquent\Collection $articles + * @property-read int|null $articles_count + * @method static \Database\Factories\TagFactory factory($count = null, $state = []) + * @method static \Illuminate\Database\Eloquent\Builder|Tag newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Tag newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Tag query() + * @method static \Illuminate\Database\Eloquent\Builder|Tag whereConcerns($value) + * @method static \Illuminate\Database\Eloquent\Builder|Tag whereDescription($value) + * @method static \Illuminate\Database\Eloquent\Builder|Tag whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Tag whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Tag whereSlug($value) + * @mixin \Eloquent + */ + class IdeHelperTag {} } namespace App\Models{ - /** - * App\Models\Tag - * - * @property int $id - * @property string $name - * @property string $slug - * @property string|null $description - * @property array $concerns - * @property-read \Illuminate\Database\Eloquent\Collection $articles - * @property-read int|null $articles_count - * @method static \Database\Factories\TagFactory factory($count = null, $state = []) - * @method static \Illuminate\Database\Eloquent\Builder|Tag newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Tag newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Tag query() - * @method static \Illuminate\Database\Eloquent\Builder|Tag whereConcerns($value) - * @method static \Illuminate\Database\Eloquent\Builder|Tag whereDescription($value) - * @method static \Illuminate\Database\Eloquent\Builder|Tag whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Tag whereName($value) - * @method static \Illuminate\Database\Eloquent\Builder|Tag whereSlug($value) - * @mixin \Eloquent - */ - class IdeHelperTag - { - } +/** + * App\Models\Thread + * + * @property int $id + * @property int $user_id + * @property string $title + * @property string $slug + * @property string $body + * @property int|null $solution_reply_id + * @property int|null $resolved_by + * @property bool $locked + * @property \Illuminate\Support\Carbon $last_posted_at + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \Illuminate\Database\Eloquent\Collection $activity + * @property-read int|null $activity_count + * @property-read \Illuminate\Database\Eloquent\Collection $channels + * @property-read int|null $channels_count + * @property-read \App\Models\Reply|null $latestReply + * @property-read \Illuminate\Notifications\DatabaseNotificationCollection $notifications + * @property-read int|null $notifications_count + * @property-read \Illuminate\Database\Eloquent\Collection $reactions + * @property-read int|null $reactions_count + * @property-read \Illuminate\Database\Eloquent\Collection $replies + * @property-read int|null $replies_count + * @property-read \App\Models\User|null $resolvedBy + * @property-read \App\Models\Reply|null $solutionReply + * @property-read \Illuminate\Database\Eloquent\Collection $subscribes + * @property-read int|null $subscribes_count + * @property-read \App\Models\User $user + * @property-read \Illuminate\Database\Eloquent\Collection $views + * @property-read int|null $views_count + * @method static \Illuminate\Database\Eloquent\Builder|Thread active() + * @method static \Database\Factories\ThreadFactory factory($count = null, $state = []) + * @method static \Illuminate\Database\Eloquent\Builder|Thread feedQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Thread filter(\Illuminate\Http\Request $request, array $filters = []) + * @method static \Illuminate\Database\Eloquent\Builder|Thread forChannel(\App\Models\Channel $channel) + * @method static \Illuminate\Database\Eloquent\Builder|Thread newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Thread newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Thread orderByUniqueViews(string $direction = 'desc', $period = null, ?string $collection = null, string $as = 'unique_views_count') + * @method static \Illuminate\Database\Eloquent\Builder|Thread orderByViews(string $direction = 'desc', ?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') + * @method static \Illuminate\Database\Eloquent\Builder|Thread query() + * @method static \Illuminate\Database\Eloquent\Builder|Thread recent() + * @method static \Illuminate\Database\Eloquent\Builder|Thread resolved() + * @method static \Illuminate\Database\Eloquent\Builder|Thread unresolved() + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereBody($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereLastPostedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereLocked($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereResolvedBy($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereSlug($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereSolutionReplyId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereTitle($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereUserId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread withViewsCount(?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') + * @mixin \Eloquent + */ + class IdeHelperThread {} } namespace App\Models{ - /** - * App\Models\Thread - * - * @property int $id - * @property int $user_id - * @property string $title - * @property string $slug - * @property string $body - * @property int|null $solution_reply_id - * @property int|null $resolved_by - * @property bool $locked - * @property \Illuminate\Support\Carbon $last_posted_at - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read \Illuminate\Database\Eloquent\Collection $activity - * @property-read int|null $activity_count - * @property-read \Illuminate\Database\Eloquent\Collection $channels - * @property-read int|null $channels_count - * @property-read \App\Models\Reply|null $latestReply - * @property-read \Illuminate\Notifications\DatabaseNotificationCollection $notifications - * @property-read int|null $notifications_count - * @property-read \Illuminate\Database\Eloquent\Collection $reactions - * @property-read int|null $reactions_count - * @property-read \Illuminate\Database\Eloquent\Collection $replies - * @property-read int|null $replies_count - * @property-read \App\Models\User|null $resolvedBy - * @property-read \App\Models\Reply|null $solutionReply - * @property-read \Illuminate\Database\Eloquent\Collection $subscribes - * @property-read int|null $subscribes_count - * @property-read \App\Models\User $user - * @property-read \Illuminate\Database\Eloquent\Collection $views - * @property-read int|null $views_count - * @method static \Illuminate\Database\Eloquent\Builder|Thread active() - * @method static \Database\Factories\ThreadFactory factory($count = null, $state = []) - * @method static \Illuminate\Database\Eloquent\Builder|Thread feedQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Thread filter(\Illuminate\Http\Request $request, array $filters = []) - * @method static \Illuminate\Database\Eloquent\Builder|Thread forChannel(\App\Models\Channel $channel) - * @method static \Illuminate\Database\Eloquent\Builder|Thread newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Thread newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Thread orderByUniqueViews(string $direction = 'desc', $period = null, ?string $collection = null, string $as = 'unique_views_count') - * @method static \Illuminate\Database\Eloquent\Builder|Thread orderByViews(string $direction = 'desc', ?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') - * @method static \Illuminate\Database\Eloquent\Builder|Thread query() - * @method static \Illuminate\Database\Eloquent\Builder|Thread recent() - * @method static \Illuminate\Database\Eloquent\Builder|Thread resolved() - * @method static \Illuminate\Database\Eloquent\Builder|Thread unresolved() - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereBody($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereLastPostedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereLocked($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereResolvedBy($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereSlug($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereSolutionReplyId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereTitle($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereUserId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread withViewsCount(?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') - * @mixin \Eloquent - */ - class IdeHelperThread - { - } +/** + * App\Models\Transaction + * + * @property string $id + * @property string $type + * @property int $user_id + * @property int $amount + * @property int|null $fees + * @property string $transaction_reference + * @property string $status + * @property array|null $metadata + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \App\Models\User $user + * @method static \Illuminate\Database\Eloquent\Builder|Transaction newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Transaction newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Transaction query() + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereAmount($value) + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereFees($value) + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereMetadata($value) + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereStatus($value) + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereTransactionReference($value) + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereType($value) + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereUserId($value) + * @mixin \Eloquent + */ + class IdeHelperTransaction {} } namespace App\Models{ - /** - * App\Models\User - * - * @property int $id - * @property string $name - * @property string $email - * @property string $username - * @property \Illuminate\Support\Carbon|null $email_verified_at - * @property string|null $password - * @property string|null $two_factor_secret - * @property string|null $two_factor_recovery_codes - * @property string|null $bio - * @property string|null $location - * @property string|null $avatar - * @property string $avatar_type - * @property string|null $phone_number - * @property \Illuminate\Support\Carbon|null $last_login_at - * @property string|null $last_login_ip - * @property string|null $github_profile - * @property string|null $twitter_profile - * @property string|null $linkedin_profile - * @property string|null $website - * @property int $opt_in - * @property array|null $settings - * @property string|null $remember_token - * @property int $reputation - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read \Illuminate\Database\Eloquent\Collection $activities - * @property-read int|null $activities_count - * @property-read \Illuminate\Database\Eloquent\Collection $articles - * @property-read int|null $articles_count - * @property-read \Illuminate\Database\Eloquent\Collection $badges - * @property-read int|null $badges_count - * @property-read \Illuminate\Database\Eloquent\Collection $discussions - * @property-read int|null $discussions_count - * @property-read \App\Models\Enterprise|null $enterprise - * @property-read \Illuminate\Database\Eloquent\Collection $features - * @property-read int|null $features_count - * @property-read string|null $profile_photo_url - * @property-read string $roles_label - * @property-read \Spatie\MediaLibrary\MediaCollections\Models\Collections\MediaCollection $media - * @property-read int|null $media_count - * @property-read \Illuminate\Notifications\DatabaseNotificationCollection $notifications - * @property-read int|null $notifications_count - * @property-read \Illuminate\Database\Eloquent\Collection $permissions - * @property-read int|null $permissions_count - * @property-read \Illuminate\Database\Eloquent\Collection $planSubscriptions - * @property-read int|null $plan_subscriptions_count - * @property-read \Illuminate\Database\Eloquent\Collection $providers - * @property-read int|null $providers_count - * @property-read \Illuminate\Database\Eloquent\Collection $replyAble - * @property-read int|null $reply_able_count - * @property-read \Illuminate\Database\Eloquent\Collection $reputations - * @property-read int|null $reputations_count - * @property-read \Illuminate\Database\Eloquent\Collection $roles - * @property-read int|null $roles_count - * @property-read \Illuminate\Database\Eloquent\Collection $subscriptions - * @property-read int|null $subscriptions_count - * @property-read \Illuminate\Database\Eloquent\Collection $threads - * @property-read int|null $threads_count - * @property-read \Illuminate\Database\Eloquent\Collection $tokens - * @property-read int|null $tokens_count - * @method static \Database\Factories\UserFactory factory($count = null, $state = []) - * @method static \Illuminate\Database\Eloquent\Builder|User hasActivity() - * @method static \Illuminate\Database\Eloquent\Builder|User moderators() - * @method static \Illuminate\Database\Eloquent\Builder|User mostSolutions(?int $inLastDays = null) - * @method static \Illuminate\Database\Eloquent\Builder|User mostSolutionsInLastDays(int $days) - * @method static \Illuminate\Database\Eloquent\Builder|User mostSubmissions(?int $inLastDays = null) - * @method static \Illuminate\Database\Eloquent\Builder|User mostSubmissionsInLastDays(int $days) - * @method static \Illuminate\Database\Eloquent\Builder|User newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|User newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|User permission($permissions) - * @method static \Illuminate\Database\Eloquent\Builder|User query() - * @method static \Illuminate\Database\Eloquent\Builder|User role($roles, $guard = null) - * @method static \Illuminate\Database\Eloquent\Builder|User topContributors() - * @method static \Illuminate\Database\Eloquent\Builder|User unVerifiedUsers() - * @method static \Illuminate\Database\Eloquent\Builder|User verifiedUsers() - * @method static \Illuminate\Database\Eloquent\Builder|User whereAvatar($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereAvatarType($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereBio($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereEmail($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereEmailVerifiedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereGithubProfile($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereLastLoginAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereLastLoginIp($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereLinkedinProfile($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereLocation($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereName($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereOptIn($value) - * @method static \Illuminate\Database\Eloquent\Builder|User wherePassword($value) - * @method static \Illuminate\Database\Eloquent\Builder|User wherePhoneNumber($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereRememberToken($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereReputation($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereSettings($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereTwitterProfile($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereTwoFactorRecoveryCodes($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereTwoFactorSecret($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereUsername($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereWebsite($value) - * @method static \Illuminate\Database\Eloquent\Builder|User withCounts() - * @method static \Illuminate\Database\Eloquent\Builder|User withoutRole() - * @mixin \Eloquent - */ - class IdeHelperUser - { - } +/** + * App\Models\User + * + * @property int $id + * @property string $name + * @property string $email + * @property string $username + * @property \Illuminate\Support\Carbon|null $email_verified_at + * @property string|null $password + * @property string|null $two_factor_secret + * @property string|null $two_factor_recovery_codes + * @property string|null $bio + * @property string|null $location + * @property string|null $avatar + * @property string $avatar_type + * @property string|null $phone_number + * @property \Illuminate\Support\Carbon|null $last_login_at + * @property string|null $last_login_ip + * @property string|null $github_profile + * @property string|null $twitter_profile + * @property string|null $linkedin_profile + * @property string|null $website + * @property int $opt_in + * @property array|null $settings + * @property string|null $remember_token + * @property int $reputation + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \Illuminate\Database\Eloquent\Collection $activities + * @property-read int|null $activities_count + * @property-read \Illuminate\Database\Eloquent\Collection $articles + * @property-read int|null $articles_count + * @property-read \Illuminate\Database\Eloquent\Collection $badges + * @property-read int|null $badges_count + * @property-read \Illuminate\Database\Eloquent\Collection $discussions + * @property-read int|null $discussions_count + * @property-read \App\Models\Enterprise|null $enterprise + * @property-read \Illuminate\Database\Eloquent\Collection $features + * @property-read int|null $features_count + * @property-read string|null $profile_photo_url + * @property-read string $roles_label + * @property-read \Spatie\MediaLibrary\MediaCollections\Models\Collections\MediaCollection $media + * @property-read int|null $media_count + * @property-read \Illuminate\Notifications\DatabaseNotificationCollection $notifications + * @property-read int|null $notifications_count + * @property-read \Illuminate\Database\Eloquent\Collection $permissions + * @property-read int|null $permissions_count + * @property-read \Illuminate\Database\Eloquent\Collection $planSubscriptions + * @property-read int|null $plan_subscriptions_count + * @property-read \Illuminate\Database\Eloquent\Collection $providers + * @property-read int|null $providers_count + * @property-read \Illuminate\Database\Eloquent\Collection $replyAble + * @property-read int|null $reply_able_count + * @property-read \Illuminate\Database\Eloquent\Collection $reputations + * @property-read int|null $reputations_count + * @property-read \Illuminate\Database\Eloquent\Collection $roles + * @property-read int|null $roles_count + * @property-read \Illuminate\Database\Eloquent\Collection $subscriptions + * @property-read int|null $subscriptions_count + * @property-read \Illuminate\Database\Eloquent\Collection $threads + * @property-read int|null $threads_count + * @property-read \Illuminate\Database\Eloquent\Collection $tokens + * @property-read int|null $tokens_count + * @property-read \Illuminate\Database\Eloquent\Collection $transactions + * @property-read int|null $transactions_count + * @method static \Database\Factories\UserFactory factory($count = null, $state = []) + * @method static \Illuminate\Database\Eloquent\Builder|User hasActivity() + * @method static \Illuminate\Database\Eloquent\Builder|User moderators() + * @method static \Illuminate\Database\Eloquent\Builder|User mostSolutions(?int $inLastDays = null) + * @method static \Illuminate\Database\Eloquent\Builder|User mostSolutionsInLastDays(int $days) + * @method static \Illuminate\Database\Eloquent\Builder|User mostSubmissions(?int $inLastDays = null) + * @method static \Illuminate\Database\Eloquent\Builder|User mostSubmissionsInLastDays(int $days) + * @method static \Illuminate\Database\Eloquent\Builder|User newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|User newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|User permission($permissions) + * @method static \Illuminate\Database\Eloquent\Builder|User query() + * @method static \Illuminate\Database\Eloquent\Builder|User role($roles, $guard = null) + * @method static \Illuminate\Database\Eloquent\Builder|User topContributors() + * @method static \Illuminate\Database\Eloquent\Builder|User unVerifiedUsers() + * @method static \Illuminate\Database\Eloquent\Builder|User verifiedUsers() + * @method static \Illuminate\Database\Eloquent\Builder|User whereAvatar($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereAvatarType($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereBio($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereEmail($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereEmailVerifiedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereGithubProfile($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereLastLoginAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereLastLoginIp($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereLinkedinProfile($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereLocation($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereOptIn($value) + * @method static \Illuminate\Database\Eloquent\Builder|User wherePassword($value) + * @method static \Illuminate\Database\Eloquent\Builder|User wherePhoneNumber($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereRememberToken($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereReputation($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereSettings($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereTwitterProfile($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereTwoFactorRecoveryCodes($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereTwoFactorSecret($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereUsername($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereWebsite($value) + * @method static \Illuminate\Database\Eloquent\Builder|User withCounts() + * @method static \Illuminate\Database\Eloquent\Builder|User withoutRole() + * @mixin \Eloquent + */ + class IdeHelperUser {} } + diff --git a/public/css/app.css b/public/css/app.css index 78c2e9a1..a63ee51e 100755 --- a/public/css/app.css +++ b/public/css/app.css @@ -3,9 +3,9 @@ pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5p .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!important}.affiliate img{border-bottom-left-radius:0;border-bottom-right-radius:0;margin-bottom:0!important;margin-top:0!important}.prose iframe{width:100%}.logo-dark,.theme-dark .logo-white{display:none}.theme-dark .logo-dark{display:block}.animate-scroll-slow:nth-child(2){animation-delay:.5s;animation-duration:40s}.animate-scroll-slow:nth-child(3){animation-delay:.75s;animation-duration:50s} .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:rgb(16 185 129/var(--tw-bg-opacity))!important;border-color:rgb(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:rgb(255 255 255/var(--tw-text-opacity))!important}.standard .choices__item.is-highlighted{background-color:rgb(5 150 105/var(--tw-bg-opacity))!important;border-color:rgb(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:rgb(16 185 129/var(--tw-bg-opacity))!important;border-color:rgb(16 185 129/var(--tw-border-opacity))!important;color:rgb(255 255 255/var(--tw-text-opacity))!important} +.iti{display:block}.iti__selected-flag{padding:0 10px}input[type=number]{-moz-appearance:textfield}input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.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:rgb(16 185 129/var(--tw-bg-opacity))!important;border-color:rgb(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:rgb(255 255 255/var(--tw-text-opacity))!important}.standard .choices__item.is-highlighted{background-color:rgb(5 150 105/var(--tw-bg-opacity))!important;border-color:rgb(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:rgb(16 185 129/var(--tw-bg-opacity))!important;border-color:rgb(16 185 129/var(--tw-border-opacity))!important;color:rgb(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: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:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.media-library-add{display:flex}.media-library-replace,.media-library-replace .media-library-dropzone,.media-library-replace .media-library-placeholder{height:100%;inset:0;margin:0;position:absolute;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:rgb(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:rgb(254 202 202/var(--tw-bg-opacity));border-color:rgb(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:rgb(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:rgb(254 202 202/var(--tw-bg-opacity));border-color:rgb(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:rgb(220 38 38/var(--tw-text-opacity));display:flex;height:3rem}.media-library-listerror-items{--tw-border-opacity:0.25;border-color:rgb(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:rgb(220 38 38/var(--tw-border-opacity));border-width:1px;content:"";inset:0;position:absolute}.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:rgb(110 231 183/var(--tw-bg-opacity));border-color:rgb(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:rgb(110 231 183/var(--tw-bg-opacity));border-color:rgb(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:rgb(252 165 165/var(--tw-bg-opacity));border-color:rgb(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:rgb(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:rgb(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:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),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:rgb(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:rgb(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:rgb(239 68 68/var(--tw-bg-opacity));border-color:rgb(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:rgb(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:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),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:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),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));display:flex;height:100%;inset:0;justify-content:center;opacity:0;padding-left:.75rem;padding-right:.75rem;pointer-events:none;position:absolute;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:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),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:rgb(16 185 129/var(--tw-bg-opacity));height:100%}.media-library progress::-webkit-progress-value{--tw-bg-opacity:1;background-color:rgb(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: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{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.3.2 | 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-feature-settings:normal;font-family:DM Sans,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-variation-settings:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:JetBrains Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}[multiple],[type=date],[type=datetime-local],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],select,textarea{--tw-shadow:0 0 #0000;-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:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{--tw-shadow:0 0 #0000;-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:unset;border-color:inherit;border-radius:0;border-width:0;font-size:unset;line-height:inherit;padding:0}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}: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-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width: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-h-1{--tw-aspect-h:1}.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-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%}.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%}.prose{color:rgb(var(--color-text-base));max-width:65ch}.prose :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}.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:rgb(var(--color-text-primary));font-weight:500;text-decoration:none}.prose :where(a):not(:where([class~=not-prose] *)):hover{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: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: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(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: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: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-sm>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.prose-sm :where(.prose-sm>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose-sm>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(.prose-sm>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose-sm>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-sm>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(.prose-sm>: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-base>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose-base :where(.prose-base>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base :where(.prose-base>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base :where(.prose-base>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base :where(.prose-base>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-base>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(.prose-base>: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-lg>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.prose-lg :where(.prose-lg>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg :where(.prose-lg>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg :where(.prose-lg>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg :where(.prose-lg>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-lg>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(.prose-lg>: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}.invisible{visibility:hidden}.collapse{visibility:collapse}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.-inset-px{inset:-1px}.inset-0{inset:0}.inset-4{inset:1rem}.inset-x-0{left:0;right:0}.inset-y-0{bottom:0;top:0}.-bottom-0{bottom:0}.-bottom-0\.5{bottom:-.125rem}.-right-0{right:0}.-right-0\.5{right:-.125rem}.-right-1{right:-.25rem}.-top-0{top:0}.-top-0\.5{top:-.125rem}.-top-3{top:-.75rem}.-top-8{top:-2rem}.bottom-0{bottom:0}.left-0{left:0}.left-1{left:.25rem}.left-1\/2{left:50%}.left-5{left:1.25rem}.right-0{right:0}.right-2{right:.5rem}.right-3{right:.75rem}.right-5{right:1.25rem}.top-0{top:0}.top-16{top:4rem}.top-2{top:.5rem}.top-4{top:1rem}.top-40{top:10rem}.top-5{top:1.25rem}.top-\[-50px\]{top:-50px}.top-\[-75px\]{top:-75px}.isolate{isolation:isolate}.-z-10{z-index:-10}.z-0{z-index:0}.z-10{z-index:10}.z-20{z-index:20}.z-30{z-index:30}.z-40{z-index:40}.z-50{z-index:50}.order-1{order:1}.order-2{order:2}.col-span-1{grid-column:span 1/span 1}.col-span-10{grid-column:span 10/span 10}.col-span-11{grid-column:span 11/span 11}.col-span-12{grid-column:span 12/span 12}.col-span-2{grid-column:span 2/span 2}.col-span-3{grid-column:span 3/span 3}.col-span-4{grid-column:span 4/span 4}.col-span-5{grid-column:span 5/span 5}.col-span-6{grid-column:span 6/span 6}.col-span-7{grid-column:span 7/span 7}.col-span-8{grid-column:span 8/span 8}.col-span-9{grid-column:span 9/span 9}.col-span-full{grid-column:1/-1}.-m-2{margin:-.5rem}.-m-3{margin:-.75rem}.-mx-2{margin-left:-.5rem;margin-right:-.5rem}.-mx-4{margin-left:-1rem;margin-right:-1rem}.-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.-my-2{margin-bottom:-.5rem;margin-top:-.5rem}.-my-5{margin-bottom:-1.25rem;margin-top:-1.25rem}.mx-0{margin-left:0;margin-right:0}.mx-1{margin-left:.25rem;margin-right:.25rem}.mx-1\.5{margin-left:.375rem;margin-right:.375rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.mx-4{margin-left:1rem;margin-right:1rem}.mx-auto{margin-left:auto;margin-right:auto}.my-10{margin-bottom:2.5rem;margin-top:2.5rem}.my-2{margin-bottom:.5rem;margin-top:.5rem}.my-6{margin-bottom:1.5rem;margin-top:1.5rem}.my-8{margin-bottom:2rem;margin-top:2rem}.my-auto{margin-bottom:auto;margin-top:auto}.-mb-2{margin-bottom:-.5rem}.-mb-8{margin-bottom:-2rem}.-mb-px{margin-bottom:-1px}.-ml-0{margin-left:0}.-ml-0\.5{margin-left:-.125rem}.-ml-1{margin-left:-.25rem}.-ml-1\.5{margin-left:-.375rem}.-ml-2{margin-left:-.5rem}.-ml-3{margin-left:-.75rem}.-ml-4{margin-left:-1rem}.-ml-9{margin-left:-2.25rem}.-ml-px{margin-left:-1px}.-mr-1{margin-right:-.25rem}.-mr-1\.5{margin-right:-.375rem}.-mr-2{margin-right:-.5rem}.-mr-3{margin-right:-.75rem}.-mt-1{margin-top:-.25rem}.-mt-12{margin-top:-3rem}.-mt-2{margin-top:-.5rem}.-mt-3{margin-top:-.75rem}.-mt-4{margin-top:-1rem}.-mt-6{margin-top:-1.5rem}.mb-1{margin-bottom:.25rem}.mb-1\.5{margin-bottom:.375rem}.mb-14{margin-bottom:3.5rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.ml-1{margin-left:.25rem}.ml-1\.5{margin-left:.375rem}.ml-12{margin-left:3rem}.ml-2{margin-left:.5rem}.ml-2\.5{margin-left:.625rem}.ml-3{margin-left:.75rem}.ml-3\.5{margin-left:.875rem}.ml-4{margin-left:1rem}.ml-8{margin-left:2rem}.ml-9{margin-left:2.25rem}.ml-auto{margin-left:auto}.mr-0{margin-right:0}.mr-1{margin-right:.25rem}.mr-1\.5{margin-right:.375rem}.mr-2{margin-right:.5rem}.mr-2\.5{margin-right:.625rem}.mr-3{margin-right:.75rem}.mt-0{margin-top:0}.mt-0\.5{margin-top:.125rem}.mt-1{margin-top:.25rem}.mt-1\.5{margin-top:.375rem}.mt-10{margin-top:2.5rem}.mt-12{margin-top:3rem}.mt-16{margin-top:4rem}.mt-2{margin-top:.5rem}.mt-24{margin-top:6rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.mt-\[calc\(-1rem-1px\)\]{margin-top:calc(-1rem - 1px)}.line-clamp-2{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;overflow:hidden}.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}.aspect-\[2\/1\]{aspect-ratio:2/1}.h-0{height:0}.h-0\.5{height:.125rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-14{height:3.5rem}.h-16{height:4rem}.h-2{height:.5rem}.h-24{height:6rem}.h-3{height:.75rem}.h-3\.5{height:.875rem}.h-32{height:8rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-56{height:14rem}.h-6{height:1.5rem}.h-64{height:16rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-80{height:20rem}.h-9{height:2.25rem}.h-96{height:24rem}.h-\[1026px\]{height:1026px}.h-\[120px\]{height:120px}.h-\[250px\]{height:250px}.h-\[350px\]{height:350px}.h-\[450px\]{height:450px}.h-auto{height:auto}.h-full{height:100%}.h-screen{height:100vh}.min-h-\[2\.25rem\]{min-height:2.25rem}.min-h-\[2\.75rem\]{min-height:2.75rem}.min-h-\[250px\]{min-height:250px}.min-h-\[2rem\]{min-height:2rem}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.w-0{width:0}.w-0\.5{width:.125rem}.w-1\/2{width:50%}.w-1\/3{width:33.333333%}.w-10{width:2.5rem}.w-11{width:2.75rem}.w-12{width:3rem}.w-14{width:3.5rem}.w-2{width:.5rem}.w-24{width:6rem}.w-3{width:.75rem}.w-3\.5{width:.875rem}.w-3\/4{width:75%}.w-4{width:1rem}.w-40{width:10rem}.w-5{width:1.25rem}.w-5\/6{width:83.333333%}.w-56{width:14rem}.w-6{width:1.5rem}.w-60{width:15rem}.w-7{width:1.75rem}.w-8{width:2rem}.w-9{width:2.25rem}.w-\[1026px\]{width:1026px}.w-auto{width:auto}.w-full{width:100%}.w-px{width:1px}.w-screen{width:100vw}.min-w-0{min-width:0}.min-w-\[1rem\]{min-width:1rem}.min-w-full{min-width:100%}.max-w-2xl{max-width:42rem}.max-w-3xl{max-width:48rem}.max-w-4xl{max-width:56rem}.max-w-5xl{max-width:64rem}.max-w-6xl{max-width:72rem}.max-w-7xl{max-width:80rem}.max-w-\[14rem\]{max-width:14rem}.max-w-full{max-width:100%}.max-w-lg{max-width:32rem}.max-w-md{max-width:28rem}.max-w-none{max-width:none}.max-w-sm{max-width:24rem}.max-w-xl{max-width:36rem}.max-w-xs{max-width:20rem}.flex-1{flex:1 1 0%}.flex-none{flex:none}.flex-shrink-0,.shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.origin-top{transform-origin:top}.origin-top-right{transform-origin:top right}.-translate-x-1\/3{--tw-translate-x:-33.333333%}.-translate-x-12,.-translate-x-1\/3{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-12{--tw-translate-x:-3rem}.-translate-y-1\/2{--tw-translate-y:-50%}.-translate-y-12,.-translate-y-1\/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-12{--tw-translate-y:-3rem}.translate-x-0{--tw-translate-x:0px}.translate-x-0,.translate-x-12{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-12{--tw-translate-x:3rem}.translate-x-5{--tw-translate-x:1.25rem}.translate-x-5,.translate-x-full{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-full{--tw-translate-x:100%}.translate-y-0{--tw-translate-y:0px}.translate-y-0,.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-y-1{--tw-translate-y:0.25rem}.translate-y-12{--tw-translate-y:3rem}.translate-y-12,.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-2{--tw-translate-y:0.5rem}.translate-y-4{--tw-translate-y:1rem}.translate-y-4,.translate-y-7{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}.translate-y-8{--tw-translate-y:2rem}.translate-y-8,.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}.rotate-0{--tw-rotate:0deg}.rotate-0,.rotate-45{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}.rotate-90{--tw-rotate:90deg}.rotate-90,.scale-100{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-100{--tw-scale-x:1;--tw-scale-y:1}.scale-95{--tw-scale-x:.95;--tw-scale-y:.95}.scale-95,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes scroll{0%{transform:translateX(0)}to{transform:translateX(-100%)}}.animate-scroll-slow{animation:scroll 30s linear infinite}.animate-spin{animation:spin 1s linear infinite}@keyframes spin-reverse{to{transform:rotate(-1turn)}}.animate-spin-reverse-slower{animation:spin-reverse 6s linear infinite}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin-slow{animation:spin 4s linear infinite}.cursor-default{cursor:default}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.cursor-text{cursor:text}.cursor-wait{cursor:wait}.select-none{-webkit-user-select:none;-moz-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}.columns-1{-moz-columns:1;column-count:1}.columns-10{-moz-columns:10;column-count:10}.columns-11{-moz-columns:11;column-count:11}.columns-12{-moz-columns:12;column-count:12}.columns-2{-moz-columns:2;column-count:2}.columns-3{-moz-columns:3;column-count:3}.columns-4{-moz-columns:4;column-count:4}.columns-5{-moz-columns:5;column-count:5}.columns-6{-moz-columns:6;column-count:6}.columns-7{-moz-columns:7;column-count:7}.columns-8{-moz-columns:8;column-count:8}.columns-9{-moz-columns:9;column-count:9}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}.grid-cols-\[repeat\(auto-fit\2c minmax\(0\2c 1fr\)\)\]{grid-template-columns:repeat(auto-fit,minmax(0,1fr))}.flex-row-reverse{flex-direction:row-reverse}.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}.justify-stretch{justify-content:stretch}.gap-0{gap:0}.gap-0\.5{gap:.125rem}.gap-1{gap:.25rem}.gap-10{gap:2.5rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-5{gap:1.25rem}.gap-6{gap:1.5rem}.gap-8{gap:2rem}.gap-x-12{-moz-column-gap:3rem;column-gap:3rem}.gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.gap-x-5{-moz-column-gap:1.25rem;column-gap:1.25rem}.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-y-12{row-gap:3rem}.gap-y-4{row-gap:1rem}.gap-y-6{row-gap:1.5rem}.-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-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.25rem*var(--tw-space-x-reverse))}.space-x-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-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-20>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(5rem*var(--tw-space-x-reverse))}.space-x-3>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.75rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.75rem*var(--tw-space-x-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-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-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))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.25rem*var(--tw-space-y-reverse));margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)))}.space-y-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-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-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.space-y-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-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-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-x-reverse>:not([hidden])~:not([hidden]){--tw-space-x-reverse:1}.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-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.divide-gray-100>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(243 244 246/var(--tw-divide-opacity))}.divide-skin-base>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgba(var(--color-divide),var(--tw-divide-opacity))}.divide-skin-input>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgba(var(--color-input-border),var(--tw-divide-opacity))}.divide-skin-light>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgba(var(--color-divide-light),var(--tw-divide-opacity))}.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{overflow-wrap:break-word}.break-all{word-break:break-all}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-none{border-radius:0}.rounded-sm{border-radius:.125rem}.rounded-xl{border-radius:.75rem}.rounded-b-lg{border-bottom-right-radius:.5rem}.rounded-b-lg,.rounded-l-lg{border-bottom-left-radius:.5rem}.rounded-l-lg{border-top-left-radius:.5rem}.rounded-l-md{border-bottom-left-radius:.375rem;border-top-left-radius:.375rem}.rounded-l-none{border-bottom-left-radius:0;border-top-left-radius:0}.rounded-r-lg{border-bottom-right-radius:.5rem;border-top-right-radius:.5rem}.rounded-r-md{border-bottom-right-radius:.375rem;border-top-right-radius:.375rem}.rounded-r-none{border-bottom-right-radius:0;border-top-right-radius:0}.rounded-t-lg{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.rounded-tl{border-top-left-radius:.25rem}.rounded-tl-sm{border-top-left-radius:.125rem}.border{border-width:1px}.border-0{border-width:0}.border-2{border-width:2px}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-l{border-left-width:1px}.border-l-4{border-left-width:4px}.border-r{border-right-width:1px}.border-r-0{border-right-width:0}.border-t{border-top-width:1px}.border-dashed{border-style:dashed}.border-none{border-style:none}.border-danger-600{--tw-border-opacity:1;border-color:rgb(225 29 72/var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.border-gray-600{--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.border-gray-800{--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}.border-green-500{--tw-border-opacity:1;border-color:rgb(16 185 129/var(--tw-border-opacity))}.border-primary-600{--tw-border-opacity:1;border-color:rgb(5 150 105/var(--tw-border-opacity))}.border-red-300{--tw-border-opacity:1;border-color:rgb(252 165 165/var(--tw-border-opacity))}.border-skin-base{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.border-skin-input{--tw-border-opacity:1;border-color:rgba(var(--color-input-border),var(--tw-border-opacity))}.border-success-600{--tw-border-opacity:1;border-color:rgb(22 163 74/var(--tw-border-opacity))}.border-transparent{border-color:transparent}.border-warning-600{--tw-border-opacity:1;border-color:rgb(202 138 4/var(--tw-border-opacity))}.border-white{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.\!bg-primary-500{--tw-bg-opacity:1!important;background-color:rgb(16 185 129/var(--tw-bg-opacity))!important}.\!bg-skin-body{--tw-bg-opacity:1!important;background-color:rgba(var(--color-body-fill),var(--tw-bg-opacity))!important}.bg-black{--tw-bg-opacity:1;background-color:rgb(22 27 34/var(--tw-bg-opacity))}.bg-black\/50{background-color:rgba(22,27,34,.5)}.bg-blue-100{--tw-bg-opacity:1;background-color:rgb(219 234 254/var(--tw-bg-opacity))}.bg-blue-50{--tw-bg-opacity:1;background-color:rgb(239 246 255/var(--tw-bg-opacity))}.bg-blue-500{--tw-bg-opacity:1;background-color:rgb(59 130 246/var(--tw-bg-opacity))}.bg-danger-500\/10{background-color:rgba(244,63,94,.1)}.bg-danger-600{--tw-bg-opacity:1;background-color:rgb(225 29 72/var(--tw-bg-opacity))}.bg-flag-green{--tw-bg-opacity:1;background-color:rgb(9 145 112/var(--tw-bg-opacity))}.bg-flag-red{--tw-bg-opacity:1;background-color:rgb(226 27 48/var(--tw-bg-opacity))}.bg-flag-yellow{--tw-bg-opacity:1;background-color:rgb(255 220 68/var(--tw-bg-opacity))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.bg-gray-500{--tw-bg-opacity:1;background-color:rgb(107 114 128/var(--tw-bg-opacity))}.bg-gray-500\/10{background-color:hsla(220,9%,46%,.1)}.bg-gray-600{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.bg-gray-700{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.bg-gray-800{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.bg-gray-900{--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.bg-green-100{--tw-bg-opacity:1;background-color:rgb(209 250 229/var(--tw-bg-opacity))}.bg-green-50{--tw-bg-opacity:1;background-color:rgb(236 253 245/var(--tw-bg-opacity))}.bg-green-500{--tw-bg-opacity:1;background-color:rgb(16 185 129/var(--tw-bg-opacity))}.bg-green-600{--tw-bg-opacity:1;background-color:rgb(5 150 105/var(--tw-bg-opacity))}.bg-green-700{--tw-bg-opacity:1;background-color:rgb(4 120 87/var(--tw-bg-opacity))}.bg-orange-100{--tw-bg-opacity:1;background-color:rgb(255 237 213/var(--tw-bg-opacity))}.bg-primary-50{--tw-bg-opacity:1;background-color:rgb(236 253 245/var(--tw-bg-opacity))}.bg-primary-500{--tw-bg-opacity:1;background-color:rgb(16 185 129/var(--tw-bg-opacity))}.bg-primary-500\/10{background-color:rgba(16,185,129,.1)}.bg-primary-600{--tw-bg-opacity:1;background-color:rgb(5 150 105/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-red-50{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity))}.bg-red-500{--tw-bg-opacity:1;background-color:rgb(239 68 68/var(--tw-bg-opacity))}.bg-skin-body{--tw-bg-opacity:1;background-color:rgba(var(--color-body-fill),var(--tw-bg-opacity))}.bg-skin-button{--tw-bg-opacity:1;background-color:rgba(var(--color-button-default),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-skin-card{--tw-bg-opacity:1;background-color:rgba(var(--color-card-fill),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-card-muted{--tw-bg-opacity:1;background-color:rgba(var(--color-card-muted-fill),var(--tw-bg-opacity))}.bg-skin-card\/50{background-color:rgba(var(--color-card-fill),.5)}.bg-skin-footer{--tw-bg-opacity:1;background-color:rgba(var(--color-footer-fill),var(--tw-bg-opacity))}.bg-skin-input{--tw-bg-opacity:1;background-color:rgba(var(--color-input-fill),var(--tw-bg-opacity))}.bg-skin-link{--tw-bg-opacity:1;background-color:rgba(var(--color-link-fill),var(--tw-bg-opacity))}.bg-skin-menu{--tw-bg-opacity:1;background-color:rgba(var(--color-menu-fill),var(--tw-bg-opacity))}.bg-skin-primary{--tw-bg-opacity:1;background-color:rgba(var(--color-text-primary),var(--tw-bg-opacity))}.bg-success-500\/10{background-color:rgba(34,197,94,.1)}.bg-success-600{--tw-bg-opacity:1;background-color:rgb(22 163 74/var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.bg-warning-500\/10{background-color:rgba(234,179,8,.1)}.bg-warning-600{--tw-bg-opacity:1;background-color:rgb(202 138 4/var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-yellow-100{--tw-bg-opacity:1;background-color:rgb(254 249 195/var(--tw-bg-opacity))}.bg-yellow-50{--tw-bg-opacity:1;background-color:rgb(254 252 232/var(--tw-bg-opacity))}.bg-yellow-500{--tw-bg-opacity:1;background-color:rgb(234 179 8/var(--tw-bg-opacity))}.bg-opacity-10{--tw-bg-opacity:0.1}.bg-opacity-20{--tw-bg-opacity:0.2}.bg-opacity-50{--tw-bg-opacity:0.5}.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-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.bg-gradient-to-t{background-image:linear-gradient(to top,var(--tw-gradient-stops))}.from-\[\#27A7E7\]{--tw-gradient-from:#27a7e7 var(--tw-gradient-from-position);--tw-gradient-to:rgba(39,167,231,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-\[\#28D146\]{--tw-gradient-from:#28d146 var(--tw-gradient-from-position);--tw-gradient-to:rgba(40,209,70,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-\[\#413626\]{--tw-gradient-from:#413626 var(--tw-gradient-from-position);--tw-gradient-to:rgba(65,54,38,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-\[\#5865F2\]{--tw-gradient-from:#5865f2 var(--tw-gradient-from-position);--tw-gradient-to:rgba(88,101,242,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black{--tw-gradient-from:#161b22 var(--tw-gradient-from-position);--tw-gradient-to:rgba(22,27,34,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-flag-yellow{--tw-gradient-from:#ffdc44 var(--tw-gradient-from-position);--tw-gradient-to:rgba(255,220,68,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-500{--tw-gradient-from:#10b981 var(--tw-gradient-from-position);--tw-gradient-to:rgba(16,185,129,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-transparent{--tw-gradient-from:transparent var(--tw-gradient-from-position);--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.via-indigo-600{--tw-gradient-to:rgba(79,70,229,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),#4f46e5 var(--tw-gradient-via-position),var(--tw-gradient-to)}.to-\[\#0088cc\]{--tw-gradient-to:#08c var(--tw-gradient-to-position)}.to-\[\#1928D5\]{--tw-gradient-to:#1928d5 var(--tw-gradient-to-position)}.to-\[\#5FFC7B\]{--tw-gradient-to:#5ffc7b var(--tw-gradient-to-position)}.to-\[\#7E5D36\]{--tw-gradient-to:#7e5d36 var(--tw-gradient-to-position)}.to-blue-500{--tw-gradient-to:#3b82f6 var(--tw-gradient-to-position)}.to-flag-red{--tw-gradient-to:#e21b30 var(--tw-gradient-to-position)}.fill-current{fill:currentColor}.stroke-current{stroke:currentColor}.stroke-gray-200\/30{stroke:rgba(229,231,235,.3)}.stroke-gray-300\/70{stroke:rgba(209,213,219,.7)}.object-cover{-o-object-fit:cover;object-fit:cover}.p-1{padding:.25rem}.p-1\.5{padding:.375rem}.p-2{padding:.5rem}.p-2\.5{padding:.625rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.px-0{padding-left:0;padding-right:0}.px-0\.5{padding-left:.125rem;padding-right:.125rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-3\.5{padding-left:.875rem;padding-right:.875rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-0{padding-bottom:0;padding-top:0}.py-0\.5{padding-bottom:.125rem;padding-top:.125rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-1\.5{padding-bottom:.375rem;padding-top:.375rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-12{padding-bottom:3rem;padding-top:3rem}.py-14{padding-bottom:3.5rem;padding-top:3.5rem}.py-16{padding-bottom:4rem;padding-top:4rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-2\.5{padding-bottom:.625rem;padding-top:.625rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-3\.5{padding-bottom:.875rem;padding-top:.875rem}.py-4{padding-bottom:1rem;padding-top:1rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.py-8{padding-bottom:2rem;padding-top:2rem}.py-px{padding-bottom:1px;padding-top:1px}.pb-10{padding-bottom:2.5rem}.pb-12{padding-bottom:3rem}.pb-2{padding-bottom:.5rem}.pb-20{padding-bottom:5rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pb-5{padding-bottom:1.25rem}.pb-6{padding-bottom:1.5rem}.pb-64{padding-bottom:16rem}.pb-8{padding-bottom:2rem}.pl-10{padding-left:2.5rem}.pl-16{padding-left:4rem}.pl-2{padding-left:.5rem}.pl-3{padding-left:.75rem}.pl-4{padding-left:1rem}.pl-5{padding-left:1.25rem}.pr-1{padding-right:.25rem}.pr-10{padding-right:2.5rem}.pr-12{padding-right:3rem}.pr-2{padding-right:.5rem}.pr-3{padding-right:.75rem}.pr-4{padding-right:1rem}.pt-0{padding-top:0}.pt-0\.5{padding-top:.125rem}.pt-10{padding-top:2.5rem}.pt-12{padding-top:3rem}.pt-16{padding-top:4rem}.pt-2{padding-top:.5rem}.pt-4{padding-top:1rem}.pt-5{padding-top:1.25rem}.pt-6{padding-top:1.5rem}.pt-8{padding-top:2rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-start{text-align:start}.align-middle{vertical-align:middle}.align-bottom{vertical-align:bottom}.font-heading{font-family:Lexend,ui-sans-serif,system-ui,-apple-system,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}.font-sans{font-family:DM Sans,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-5xl{font-size:3rem;line-height:1}.text-\[12px\]{font-size:12px}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-extrabold{font-weight:800}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.capitalize{text-transform:capitalize}.italic{font-style:italic}.leading-3{line-height:.75rem}.leading-4{line-height:1rem}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-7{line-height:1.75rem}.leading-8{line-height:2rem}.leading-loose{line-height:2}.leading-none{line-height:1}.leading-normal{line-height:1.5}.leading-tight{line-height:1.25}.tracking-tight{letter-spacing:-.025em}.tracking-tighter{letter-spacing:-.05em}.tracking-wide{letter-spacing:.025em}.tracking-wider{letter-spacing:.05em}.tracking-widest{letter-spacing:.1em}.\!text-skin-primary{--tw-text-opacity:1!important;color:rgba(var(--color-text-primary),var(--tw-text-opacity))!important}.text-\[\#1E9DEA\]{--tw-text-opacity:1;color:rgb(30 157 234/var(--tw-text-opacity))}.text-\[\#27A7E7\]{--tw-text-opacity:1;color:rgb(39 167 231/var(--tw-text-opacity))}.text-\[\#28D146\]{--tw-text-opacity:1;color:rgb(40 209 70/var(--tw-text-opacity))}.text-\[\#5865F2\]{--tw-text-opacity:1;color:rgb(88 101 242/var(--tw-text-opacity))}.text-blue-400{--tw-text-opacity:1;color:rgb(96 165 250/var(--tw-text-opacity))}.text-blue-500{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}.text-blue-700{--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity))}.text-blue-800{--tw-text-opacity:1;color:rgb(30 64 175/var(--tw-text-opacity))}.text-danger-400{--tw-text-opacity:1;color:rgb(251 113 133/var(--tw-text-opacity))}.text-danger-500{--tw-text-opacity:1;color:rgb(244 63 94/var(--tw-text-opacity))}.text-danger-600{--tw-text-opacity:1;color:rgb(225 29 72/var(--tw-text-opacity))}.text-flag-green{--tw-text-opacity:1;color:rgb(9 145 112/var(--tw-text-opacity))}.text-gray-100{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.text-green-300{--tw-text-opacity:1;color:rgb(110 231 183/var(--tw-text-opacity))}.text-green-400{--tw-text-opacity:1;color:rgb(52 211 153/var(--tw-text-opacity))}.text-green-500{--tw-text-opacity:1;color:rgb(16 185 129/var(--tw-text-opacity))}.text-green-600{--tw-text-opacity:1;color:rgb(5 150 105/var(--tw-text-opacity))}.text-green-700{--tw-text-opacity:1;color:rgb(4 120 87/var(--tw-text-opacity))}.text-green-800{--tw-text-opacity:1;color:rgb(6 95 70/var(--tw-text-opacity))}.text-green-900{--tw-text-opacity:1;color:rgb(6 78 59/var(--tw-text-opacity))}.text-orange-400{--tw-text-opacity:1;color:rgb(251 146 60/var(--tw-text-opacity))}.text-orange-800{--tw-text-opacity:1;color:rgb(154 52 18/var(--tw-text-opacity))}.text-primary-400{--tw-text-opacity:1;color:rgb(52 211 153/var(--tw-text-opacity))}.text-primary-500{--tw-text-opacity:1;color:rgb(16 185 129/var(--tw-text-opacity))}.text-primary-600{--tw-text-opacity:1;color:rgb(5 150 105/var(--tw-text-opacity))}.text-primary-700{--tw-text-opacity:1;color:rgb(4 120 87/var(--tw-text-opacity))}.text-red-400{--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}.text-red-500{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.text-red-600{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity))}.text-red-700{--tw-text-opacity:1;color:rgb(185 28 28/var(--tw-text-opacity))}.text-red-800{--tw-text-opacity:1;color:rgb(153 27 27/var(--tw-text-opacity))}.text-red-900{--tw-text-opacity:1;color:rgb(127 29 29/var(--tw-text-opacity))}.text-rose-500{--tw-text-opacity:1;color:rgb(244 63 94/var(--tw-text-opacity))}.text-skin-base{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity))}.text-skin-base\/60{color:rgba(var(--color-text-base),.6)}.text-skin-inverted{--tw-text-opacity:1;color:rgba(var(--color-text-inverted),var(--tw-text-opacity))}.text-skin-inverted-muted{--tw-text-opacity:1;color:rgba(var(--color-text-inverted-muted),var(--tw-text-opacity))}.text-skin-inverted-muted\/60{color:rgba(var(--color-text-inverted-muted),.6)}.text-skin-inverted-muted\/70{color:rgba(var(--color-text-inverted-muted),.7)}.text-skin-inverted-muted\/80{color:rgba(var(--color-text-inverted-muted),.8)}.text-skin-menu{--tw-text-opacity:1;color:rgba(var(--color-text-link-menu),var(--tw-text-opacity))}.text-skin-menu-hover{--tw-text-opacity:1;color:rgba(var(--color-text-link-menu-hover),var(--tw-text-opacity))}.text-skin-muted{--tw-text-opacity:1;color:rgba(var(--color-text-muted),var(--tw-text-opacity))}.text-skin-primary{--tw-text-opacity:1;color:rgba(var(--color-text-primary),var(--tw-text-opacity))}.text-sky-500{--tw-text-opacity:1;color:rgb(14 165 233/var(--tw-text-opacity))}.text-slate-300{--tw-text-opacity:1;color:rgb(203 213 225/var(--tw-text-opacity))}.text-slate-500{--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}.text-slate-700{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.text-slate-900{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.text-success-400{--tw-text-opacity:1;color:rgb(74 222 128/var(--tw-text-opacity))}.text-success-500{--tw-text-opacity:1;color:rgb(34 197 94/var(--tw-text-opacity))}.text-success-600{--tw-text-opacity:1;color:rgb(22 163 74/var(--tw-text-opacity))}.text-warning-400{--tw-text-opacity:1;color:rgb(250 204 21/var(--tw-text-opacity))}.text-warning-500{--tw-text-opacity:1;color:rgb(234 179 8/var(--tw-text-opacity))}.text-warning-600{--tw-text-opacity:1;color:rgb(202 138 4/var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-yellow-400{--tw-text-opacity:1;color:rgb(250 204 21/var(--tw-text-opacity))}.text-yellow-500{--tw-text-opacity:1;color:rgb(234 179 8/var(--tw-text-opacity))}.text-yellow-600{--tw-text-opacity:1;color:rgb(202 138 4/var(--tw-text-opacity))}.text-yellow-700{--tw-text-opacity:1;color:rgb(161 98 7/var(--tw-text-opacity))}.text-yellow-800{--tw-text-opacity:1;color:rgb(133 77 14/var(--tw-text-opacity))}.text-yellow-900{--tw-text-opacity:1;color:rgb(113 63 18/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-gray-500::-moz-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))}.placeholder-red-300::-moz-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-skin-input::-moz-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))}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-20{opacity:.2}.opacity-25{opacity:.25}.opacity-50{opacity:.5}.opacity-70{opacity:.7}.opacity-75{opacity:.75}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.shadow,.shadow-lg{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px 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-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:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-none{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000}.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:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),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)}.outline-none{outline:2px solid transparent;outline-offset:2px}.\!ring-0{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)!important;--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color)!important;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)!important}.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)}.ring-0,.ring-1{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.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),var(--tw-shadow,0 0 #0000)}.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-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),var(--tw-shadow,0 0 #0000)}.ring-black{--tw-ring-opacity:1;--tw-ring-color:rgb(22 27 34/var(--tw-ring-opacity))}.ring-black\/5{--tw-ring-color:rgba(22,27,34,.05)}.ring-body{--tw-ring-color:rgb(var(--color-body-fill))}.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-green-500{--tw-ring-opacity:1;--tw-ring-color:rgb(16 185 129/var(--tw-ring-opacity))}.ring-white{--tw-ring-opacity:1;--tw-ring-color:rgb(255 255 255/var(--tw-ring-opacity))}.ring-yellow-500{--tw-ring-opacity:1;--tw-ring-color:rgb(234 179 8/var(--tw-ring-opacity))}.ring-opacity-5{--tw-ring-opacity:0.05}.blur{--tw-blur:blur(8px)}.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-sm{--tw-blur:blur(4px)}.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-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.delay-200{transition-delay:.2s}.duration-100{transition-duration:.1s}.duration-150{transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.duration-500{transition-duration:.5s}.duration-75{transition-duration:75ms}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.\[mask-image\:linear-gradient\(to_bottom\2c white_20\%\2c transparent_75\%\)\]{-webkit-mask-image:linear-gradient(180deg,#fff 20%,transparent 75%);mask-image:linear-gradient(180deg,#fff 20%,transparent 75%)}.\[mask-image\:radial-gradient\(100\%_100\%_at_top_right\2c white\2c transparent\)\]{-webkit-mask-image:radial-gradient(100% 100% at top right,#fff,transparent);mask-image:radial-gradient(100% 100% at top right,#fff,transparent)}: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}@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(.sm\:prose-base>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.sm\:prose-base :where(.sm\:prose-base>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.sm\:prose-base :where(.sm\:prose-base>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.sm\:prose-base :where(.sm\:prose-base>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.sm\:prose-base :where(.sm\:prose-base>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(.sm\:prose-base>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.sm\:prose-base :where(.sm\:prose-base>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}}@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(.md\:prose-sm>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.md\:prose-sm :where(.md\:prose-sm>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.md\:prose-sm :where(.md\:prose-sm>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.md\:prose-sm :where(.md\:prose-sm>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.md\:prose-sm :where(.md\:prose-sm>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(.md\:prose-sm>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-sm :where(.md\:prose-sm>: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(.md\:prose-lg>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.md\:prose-lg :where(.md\:prose-lg>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.md\:prose-lg :where(.md\:prose-lg>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.md\:prose-lg :where(.md\:prose-lg>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.md\:prose-lg :where(.md\:prose-lg>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(.md\:prose-lg>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-lg :where(.md\:prose-lg>: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(.md\:prose-xl>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.md\:prose-xl :where(.md\:prose-xl>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.md\:prose-xl :where(.md\:prose-xl>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.md\:prose-xl :where(.md\:prose-xl>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.md\:prose-xl :where(.md\:prose-xl>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(.md\:prose-xl>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-xl :where(.md\:prose-xl>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}}@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(.lg\:prose-lg>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.lg\:prose-lg :where(.lg\:prose-lg>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.lg\:prose-lg :where(.lg\:prose-lg>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.lg\:prose-lg :where(.lg\:prose-lg>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.lg\:prose-lg :where(.lg\:prose-lg>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(.lg\:prose-lg>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-lg :where(.lg\:prose-lg>: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(.lg\:prose-xl>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.lg\:prose-xl :where(.lg\:prose-xl>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.lg\:prose-xl :where(.lg\:prose-xl>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.lg\:prose-xl :where(.lg\:prose-xl>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.lg\:prose-xl :where(.lg\:prose-xl>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(.lg\:prose-xl>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-xl :where(.lg\:prose-xl>:last-child):not(:where([class~=not-prose] *)){margin-bottom: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),var(--tw-shadow,0 0 #0000)}.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}.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-500:hover{--tw-border-opacity:1;border-color:rgb(16 185 129/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-skin-base:hover{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.hover\:\!bg-primary-500:hover{--tw-bg-opacity:1!important;background-color:rgb(16 185 129/var(--tw-bg-opacity))!important}.hover\:\!bg-skin-card:hover{--tw-bg-opacity:1!important;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity))!important}.hover\:bg-danger-500:hover{--tw-bg-opacity:1;background-color:rgb(244 63 94/var(--tw-bg-opacity))}.hover\:bg-danger-600\/20:hover{background-color:rgba(225,29,72,.2)}.hover\:bg-gray-50:hover{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.hover\:bg-gray-500:hover{--tw-bg-opacity:1;background-color:rgb(107 114 128/var(--tw-bg-opacity))}.hover\:bg-gray-500\/5:hover{background-color:hsla(220,9%,46%,.05)}.hover\:bg-gray-600\/20:hover{background-color:rgba(75,85,99,.2)}.hover\:bg-gray-800:hover{--tw-bg-opacity:1;background-color:rgb(31 41 55/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-green-700:hover{--tw-bg-opacity:1;background-color:rgb(4 120 87/var(--tw-bg-opacity))}.hover\:bg-primary-500:hover{--tw-bg-opacity:1;background-color:rgb(16 185 129/var(--tw-bg-opacity))}.hover\:bg-primary-600\/20:hover{background-color:rgba(5,150,105,.2)}.hover\:bg-red-50:hover{--tw-bg-opacity:1;background-color:rgb(254 242 242/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-button-hover: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-card-muted:hover{--tw-bg-opacity:1;background-color:rgba(var(--color-card-muted-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-primary:hover{--tw-bg-opacity:1;background-color:rgba(var(--color-text-primary),var(--tw-bg-opacity))}.hover\:bg-success-500:hover{--tw-bg-opacity:1;background-color:rgb(34 197 94/var(--tw-bg-opacity))}.hover\:bg-success-600\/20:hover{background-color:rgba(22,163,74,.2)}.hover\:bg-warning-500:hover{--tw-bg-opacity:1;background-color:rgb(234 179 8/var(--tw-bg-opacity))}.hover\:bg-warning-600\/20:hover{background-color:rgba(202,138,4,.2)}.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-\[\#004182\]:hover{--tw-text-opacity:1;color:rgb(0 65 130/var(--tw-text-opacity))}.hover\:text-\[\#29aaec\]:hover{--tw-text-opacity:1;color:rgb(41 170 236/var(--tw-text-opacity))}.hover\:text-blue-600:hover{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.hover\:text-danger-500:hover{--tw-text-opacity:1;color:rgb(244 63 94/var(--tw-text-opacity))}.hover\:text-flag-green:hover{--tw-text-opacity:1;color:rgb(9 145 112/var(--tw-text-opacity))}.hover\:text-gray-500:hover{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.hover\:text-green-500:hover{--tw-text-opacity:1;color:rgb(16 185 129/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-900:hover{--tw-text-opacity:1;color:rgb(6 78 59/var(--tw-text-opacity))}.hover\:text-primary-500:hover{--tw-text-opacity:1;color:rgb(16 185 129/var(--tw-text-opacity))}.hover\:text-primary-800:hover{--tw-text-opacity:1;color:rgb(6 95 70/var(--tw-text-opacity))}.hover\:text-red-500:hover{--tw-text-opacity:1;color:rgb(239 68 68/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-base:hover{--tw-text-opacity:1;color:rgba(var(--color-text-base),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-inverted-muted:hover{--tw-text-opacity:1;color:rgba(var(--color-text-inverted-muted),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-skin-muted:hover{--tw-text-opacity:1;color:rgba(var(--color-text-muted),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-primary-hover:hover{--tw-text-opacity:1;color:rgba(var(--color-text-primary-hover),var(--tw-text-opacity))}.hover\:text-success-500:hover{--tw-text-opacity:1;color:rgb(34 197 94/var(--tw-text-opacity))}.hover\:text-warning-500:hover{--tw-text-opacity:1;color:rgb(234 179 8/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\: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-blue-300:focus{--tw-border-opacity:1;border-color:rgb(147 197 253/var(--tw-border-opacity))}.focus\:border-flag-green:focus{--tw-border-opacity:1;border-color:rgb(9 145 112/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-green-500:focus{--tw-border-opacity:1;border-color:rgb(16 185 129/var(--tw-border-opacity))}.focus\:border-primary-600:focus{--tw-border-opacity:1;border-color:rgb(5 150 105/var(--tw-border-opacity))}.focus\:border-red-500:focus{--tw-border-opacity:1;border-color:rgb(239 68 68/var(--tw-border-opacity))}.focus\:border-skin-base:focus{--tw-border-opacity:1;border-color:rgba(var(--color-border),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-transparent:focus{border-color:transparent}.focus\:bg-danger-500:focus{--tw-bg-opacity:1;background-color:rgb(244 63 94/var(--tw-bg-opacity))}.focus\:bg-danger-500\/10:focus{background-color:rgba(244,63,94,.1)}.focus\:bg-danger-700:focus{--tw-bg-opacity:1;background-color:rgb(190 18 60/var(--tw-bg-opacity))}.focus\:bg-danger-700\/20:focus{background-color:rgba(190,18,60,.2)}.focus\:bg-gray-500\/10:focus{background-color:hsla(220,9%,46%,.1)}.focus\:bg-gray-700:focus{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.focus\:bg-gray-700\/20:focus{background-color:rgba(55,65,81,.2)}.focus\:bg-primary-50:focus{--tw-bg-opacity:1;background-color:rgb(236 253 245/var(--tw-bg-opacity))}.focus\:bg-primary-500:focus{--tw-bg-opacity:1;background-color:rgb(16 185 129/var(--tw-bg-opacity))}.focus\:bg-primary-500\/10:focus{background-color:rgba(16,185,129,.1)}.focus\:bg-primary-700:focus{--tw-bg-opacity:1;background-color:rgb(4 120 87/var(--tw-bg-opacity))}.focus\:bg-primary-700\/20:focus{background-color:rgba(4,120,87,.2)}.focus\:bg-success-500:focus{--tw-bg-opacity:1;background-color:rgb(34 197 94/var(--tw-bg-opacity))}.focus\:bg-success-500\/10:focus{background-color:rgba(34,197,94,.1)}.focus\:bg-success-700:focus{--tw-bg-opacity:1;background-color:rgb(21 128 61/var(--tw-bg-opacity))}.focus\:bg-success-700\/20:focus{background-color:rgba(21,128,61,.2)}.focus\:bg-warning-500:focus{--tw-bg-opacity:1;background-color:rgb(234 179 8/var(--tw-bg-opacity))}.focus\:bg-warning-500\/10:focus{background-color:rgba(234,179,8,.1)}.focus\:bg-warning-700:focus{--tw-bg-opacity:1;background-color:rgb(161 98 7/var(--tw-bg-opacity))}.focus\:bg-warning-700\/20:focus{background-color:rgba(161,98,7,.2)}.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-green-600:focus,.focus\:text-primary-600:focus{--tw-text-opacity:1;color:rgb(5 150 105/var(--tw-text-opacity))}.focus\:text-skin-base:focus{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity))}.focus\:text-white:focus{--tw-text-opacity:1;color:rgb(255 255 255/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(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 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.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-0:focus,.focus\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.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-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-1:focus,.focus\:ring-2:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.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-inset:focus{--tw-ring-inset:inset}.focus\:ring-blue-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(37 99 235/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-green-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(16 185 129/var(--tw-ring-opacity))}.focus\:ring-primary-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(5 150 105/var(--tw-ring-opacity))}.focus\:ring-red-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(239 68 68/var(--tw-ring-opacity))}.focus\:ring-white:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(255 255 255/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-blue-50:focus{--tw-ring-offset-color:#eff6ff}.focus\:ring-offset-body:focus{--tw-ring-offset-color:rgb(var(--color-body-fill))}.focus\:ring-offset-danger-700:focus{--tw-ring-offset-color:#be123c}.focus\:ring-offset-gray-700:focus{--tw-ring-offset-color:#374151}.focus\:ring-offset-primary-700:focus{--tw-ring-offset-color:#047857}.focus\:ring-offset-success-700:focus{--tw-ring-offset-color:#15803d}.focus\:ring-offset-warning-700:focus{--tw-ring-offset-color:#a16207}.active\:bg-gray-100:active{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.active\:bg-skin-footer:active{--tw-bg-opacity:1;background-color:rgba(var(--color-footer-fill),var(--tw-bg-opacity))}.active\:text-gray-700:active{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.active\:text-skin-base:active{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity))}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-70:disabled{opacity:.7}.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-danger-100{--tw-text-opacity:1;color:rgb(255 228 230/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\:text-green-400{--tw-text-opacity:1;color:rgb(52 211 153/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-primary-100{--tw-text-opacity:1;color:rgb(209 250 229/var(--tw-text-opacity))}.group:hover .group-hover\:text-primary-500{--tw-text-opacity:1;color:rgb(16 185 129/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-skin-primary{--tw-text-opacity:1;color:rgba(var(--color-text-primary),var(--tw-text-opacity))}.group:hover .group-hover\:text-success-100{--tw-text-opacity:1;color:rgb(220 252 231/var(--tw-text-opacity))}.group:hover .group-hover\:text-warning-100{--tw-text-opacity:1;color:rgb(254 249 195/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\:underline{text-decoration-line:underline}.group:hover .group-hover\:opacity-75{opacity:.75}.group:focus .group-focus\:text-danger-100{--tw-text-opacity:1;color:rgb(255 228 230/var(--tw-text-opacity))}.group:focus .group-focus\:text-primary-100{--tw-text-opacity:1;color:rgb(209 250 229/var(--tw-text-opacity))}.group:focus .group-focus\:text-success-100{--tw-text-opacity:1;color:rgb(220 252 231/var(--tw-text-opacity))}.group:focus .group-focus\:text-warning-100{--tw-text-opacity:1;color:rgb(254 249 195/var(--tw-text-opacity))}.group:focus .group-focus\:text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is([dir=rtl] .rtl\:left-2){left:.5rem}:is([dir=rtl] .rtl\:right-auto){right:auto}:is([dir=rtl] .rtl\:-ml-1){margin-left:-.25rem}:is([dir=rtl] .rtl\:-ml-1\.5){margin-left:-.375rem}:is([dir=rtl] .rtl\:-ml-2){margin-left:-.5rem}:is([dir=rtl] .rtl\:-ml-3){margin-left:-.75rem}:is([dir=rtl] .rtl\:-mr-1){margin-right:-.25rem}:is([dir=rtl] .rtl\:-mr-1\.5){margin-right:-.375rem}:is([dir=rtl] .rtl\:-mr-2){margin-right:-.5rem}:is([dir=rtl] .rtl\:-mr-3){margin-right:-.75rem}:is([dir=rtl] .rtl\:ml-0){margin-left:0}:is([dir=rtl] .rtl\:ml-1){margin-left:.25rem}:is([dir=rtl] .rtl\:ml-2){margin-left:.5rem}:is([dir=rtl] .rtl\:mr-0){margin-right:0}:is([dir=rtl] .rtl\:mr-1){margin-right:.25rem}:is([dir=rtl] .rtl\:mr-2){margin-right:.5rem}:is([dir=rtl] .rtl\:mr-auto){margin-right:auto}:is([dir=rtl] .rtl\:-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))}:is([dir=rtl] .rtl\:space-x-reverse)>:not([hidden])~:not([hidden]){--tw-space-x-reverse:1}:is(.dark .dark\:divide-gray-700)>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(55 65 81/var(--tw-divide-opacity))}:is(.dark .dark\:border-danger-500){--tw-border-opacity:1;border-color:rgb(244 63 94/var(--tw-border-opacity))}:is(.dark .dark\:border-gray-400){--tw-border-opacity:1;border-color:rgb(156 163 175/var(--tw-border-opacity))}:is(.dark .dark\:border-gray-600){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}:is(.dark .dark\:border-gray-700){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}:is(.dark .dark\:border-gray-800){--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}:is(.dark .dark\:border-primary-500){--tw-border-opacity:1;border-color:rgb(16 185 129/var(--tw-border-opacity))}:is(.dark .dark\:border-success-500){--tw-border-opacity:1;border-color:rgb(34 197 94/var(--tw-border-opacity))}:is(.dark .dark\:border-warning-500){--tw-border-opacity:1;border-color:rgb(234 179 8/var(--tw-border-opacity))}:is(.dark .dark\:bg-gray-700){--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}:is(.dark .dark\:bg-gray-800){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}:is(.dark .dark\:text-danger-500){--tw-text-opacity:1;color:rgb(244 63 94/var(--tw-text-opacity))}:is(.dark .dark\:text-gray-100){--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}:is(.dark .dark\:text-gray-200){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}:is(.dark .dark\:text-gray-300){--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}:is(.dark .dark\:text-gray-400){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}:is(.dark .dark\:text-primary-500){--tw-text-opacity:1;color:rgb(16 185 129/var(--tw-text-opacity))}:is(.dark .dark\:text-success-500){--tw-text-opacity:1;color:rgb(34 197 94/var(--tw-text-opacity))}:is(.dark .dark\:text-warning-500){--tw-text-opacity:1;color:rgb(234 179 8/var(--tw-text-opacity))}:is(.dark .dark\:text-white){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(.dark .dark\:ring-white\/10){--tw-ring-color:hsla(0,0%,100%,.1)}:is(.dark .dark\:hover\:border-gray-500:hover){--tw-border-opacity:1;border-color:rgb(107 114 128/var(--tw-border-opacity))}:is(.dark .dark\:hover\:bg-danger-500\/20:hover){background-color:rgba(244,63,94,.2)}:is(.dark .dark\:hover\:bg-gray-300\/5:hover){background-color:rgba(209,213,219,.05)}:is(.dark .dark\:hover\:bg-gray-400\/20:hover){background-color:rgba(156,163,175,.2)}:is(.dark .dark\:hover\:bg-gray-500\/20:hover){background-color:hsla(220,9%,46%,.2)}:is(.dark .dark\:hover\:bg-gray-700:hover){--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}:is(.dark .dark\:hover\:bg-primary-500\/20:hover){background-color:rgba(16,185,129,.2)}:is(.dark .dark\:hover\:bg-success-500\/20:hover){background-color:rgba(34,197,94,.2)}:is(.dark .dark\:hover\:bg-warning-500\/20:hover){background-color:rgba(234,179,8,.2)}:is(.dark .dark\:hover\:text-danger-400:hover){--tw-text-opacity:1;color:rgb(251 113 133/var(--tw-text-opacity))}:is(.dark .dark\:hover\:text-gray-200:hover){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}:is(.dark .dark\:hover\:text-primary-400:hover){--tw-text-opacity:1;color:rgb(52 211 153/var(--tw-text-opacity))}:is(.dark .dark\:hover\:text-success-400:hover){--tw-text-opacity:1;color:rgb(74 222 128/var(--tw-text-opacity))}:is(.dark .dark\:hover\:text-warning-400:hover){--tw-text-opacity:1;color:rgb(250 204 21/var(--tw-text-opacity))}:is(.dark .dark\:focus\:border-primary-400:focus){--tw-border-opacity:1;border-color:rgb(52 211 153/var(--tw-border-opacity))}:is(.dark .dark\:focus\:bg-danger-600\/20:focus){background-color:rgba(225,29,72,.2)}:is(.dark .dark\:focus\:bg-gray-600\/20:focus){background-color:rgba(75,85,99,.2)}:is(.dark .dark\:focus\:bg-gray-800:focus){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}:is(.dark .dark\:focus\:bg-gray-800\/20:focus){background-color:rgba(31,41,55,.2)}:is(.dark .dark\:focus\:bg-primary-600\/20:focus){background-color:rgba(5,150,105,.2)}:is(.dark .dark\:focus\:bg-success-600\/20:focus){background-color:rgba(22,163,74,.2)}:is(.dark .dark\:focus\:bg-warning-600\/20:focus){background-color:rgba(202,138,4,.2)}:is(.dark .dark\:focus\:text-primary-400:focus){--tw-text-opacity:1;color:rgb(52 211 153/var(--tw-text-opacity))}:is(.dark .dark\:focus\:ring-offset-0:focus){--tw-ring-offset-width:0px}:is(.dark .dark\:focus\:ring-offset-danger-600:focus){--tw-ring-offset-color:#e11d48}:is(.dark .dark\:focus\:ring-offset-gray-600:focus){--tw-ring-offset-color:#4b5563}:is(.dark .dark\:focus\:ring-offset-primary-600:focus){--tw-ring-offset-color:#059669}:is(.dark .dark\:focus\:ring-offset-success-600:focus){--tw-ring-offset-color:#16a34a}:is(.dark .dark\:focus\:ring-offset-warning-600:focus){--tw-ring-offset-color:#ca8a04}@media (min-width:640px){.sm\:top-16{top:4rem}.sm\:col-span-1{grid-column:span 1/span 1}.sm\:col-span-10{grid-column:span 10/span 10}.sm\:col-span-11{grid-column:span 11/span 11}.sm\:col-span-12{grid-column:span 12/span 12}.sm\:col-span-2{grid-column:span 2/span 2}.sm\:col-span-3{grid-column:span 3/span 3}.sm\:col-span-4{grid-column:span 4/span 4}.sm\:col-span-5{grid-column:span 5/span 5}.sm\:col-span-6{grid-column:span 6/span 6}.sm\:col-span-7{grid-column:span 7/span 7}.sm\:col-span-8{grid-column:span 8/span 8}.sm\:col-span-9{grid-column:span 9/span 9}.sm\:col-span-full{grid-column:1/-1}.sm\:-mx-4{margin-left:-1rem;margin-right:-1rem}.sm\:-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.sm\:mx-0{margin-left:0;margin-right:0}.sm\:mx-auto{margin-left:auto;margin-right:auto}.sm\:my-8{margin-bottom:2rem;margin-top:2rem}.sm\:-mt-16{margin-top:-4rem}.sm\:mb-0{margin-bottom:0}.sm\:ml-0{margin-left:0}.sm\:ml-16{margin-left:4rem}.sm\:ml-2{margin-left:.5rem}.sm\:ml-3{margin-left:.75rem}.sm\:ml-4{margin-left:1rem}.sm\:ml-6{margin-left:1.5rem}.sm\:mt-0{margin-top:0}.sm\:mt-12{margin-top:3rem}.sm\:mt-14{margin-top:3.5rem}.sm\:mt-5{margin-top:1.25rem}.sm\:mt-8{margin-top:2rem}.sm\:mt-px{margin-top:1px}.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-10{height:2.5rem}.sm\:h-12{height:3rem}.sm\:h-14{height:3.5rem}.sm\:h-16{height:4rem}.sm\:h-20{height:5rem}.sm\:h-32{height:8rem}.sm\:h-9{height:2.25rem}.sm\:h-screen{height:100vh}.sm\:w-10{width:2.5rem}.sm\:w-12{width:3rem}.sm\:w-32{width:8rem}.sm\:w-auto{width:auto}.sm\:w-full{width:100%}.sm\:min-w-0{min-width:0}.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-xl{max-width:36rem}.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%}.sm\:-translate-x-1\/2,.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\:translate-x-0{--tw-translate-x:0px}.sm\:translate-x-2{--tw-translate-x:0.5rem}.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-y-0{--tw-translate-y:0px}.sm\:scale-100{--tw-scale-x:1;--tw-scale-y:1}.sm\:scale-100,.sm\: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))}.sm\:scale-95{--tw-scale-x:.95;--tw-scale-y:.95}.sm\:columns-1{-moz-columns:1;column-count:1}.sm\:columns-10{-moz-columns:10;column-count:10}.sm\:columns-11{-moz-columns:11;column-count:11}.sm\:columns-12{-moz-columns:12;column-count:12}.sm\:columns-2{-moz-columns:2;column-count:2}.sm\:columns-3{-moz-columns:3;column-count:3}.sm\:columns-4{-moz-columns:4;column-count:4}.sm\:columns-5{-moz-columns:5;column-count:5}.sm\:columns-6{-moz-columns:6;column-count:6}.sm\:columns-7{-moz-columns:7;column-count:7}.sm\:columns-8{-moz-columns:8;column-count:8}.sm\:columns-9{-moz-columns:9;column-count:9}.sm\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.sm\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.sm\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.sm\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.sm\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.sm\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.sm\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.sm\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.sm\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.sm\:grid-cols-9{grid-template-columns:repeat(9,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-10{gap:2.5rem}.sm\:gap-12{gap:3rem}.sm\:gap-4{gap:1rem}.sm\:gap-6{gap:1.5rem}.sm\:gap-8{gap:2rem}.sm\:gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.sm\:gap-y-12{row-gap:3rem}.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-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-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-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-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\: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-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\: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-0{padding:0}.sm\:p-10{padding:2.5rem}.sm\:p-4{padding:1rem}.sm\:p-5{padding:1.25rem}.sm\:p-6{padding:1.5rem}.sm\:p-8{padding:2rem}.sm\:px-0{padding-left:0;padding-right:0}.sm\:px-4{padding-left:1rem;padding-right:1rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:py-10{padding-bottom:2.5rem;padding-top:2.5rem}.sm\:py-24{padding-bottom:6rem;padding-top:6rem}.sm\:py-6{padding-bottom:1.5rem;padding-top:1.5rem}.sm\:py-9{padding-bottom:2.25rem;padding-top:2.25rem}.sm\:pb-1{padding-bottom:.25rem}.sm\:pb-16{padding-bottom:4rem}.sm\:pb-64{padding-bottom:16rem}.sm\:pl-14{padding-left:3.5rem}.sm\:pl-6{padding-left:1.5rem}.sm\:pr-6{padding-right:1.5rem}.sm\:pt-0{padding-top:0}.sm\:pt-10{padding-top:2.5rem}.sm\:pt-14{padding-top:3.5rem}.sm\:pt-16{padding-top:4rem}.sm\:pt-2{padding-top:.5rem}.sm\:pt-24{padding-top:6rem}.sm\:pt-5{padding-top:1.25rem}.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-2xl{font-size:1.5rem;line-height:2rem}.sm\:text-3xl{font-size:1.875rem;line-height:2.25rem}.sm\:text-4xl{font-size:2.25rem;line-height:2.5rem}.sm\:text-5xl{font-size:3rem;line-height:1}.sm\:text-base{font-size:1rem;line-height:1.5rem}.sm\:text-lg{font-size:1.125rem;line-height:1.75rem}.sm\:text-sm{font-size:.875rem;line-height:1.25rem}.sm\:text-xl{font-size:1.25rem;line-height:1.75rem}.sm\:leading-10{line-height:2.5rem}.sm\:leading-5{line-height:1.25rem}.sm\:leading-8{line-height:2rem}.sm\:leading-none{line-height:1}.sm\:duration-700{transition-duration:.7s}}@media (min-width:768px){.md\:col-span-1{grid-column:span 1/span 1}.md\:col-span-10{grid-column:span 10/span 10}.md\:col-span-11{grid-column:span 11/span 11}.md\:col-span-12{grid-column:span 12/span 12}.md\:col-span-2{grid-column:span 2/span 2}.md\:col-span-3{grid-column:span 3/span 3}.md\:col-span-4{grid-column:span 4/span 4}.md\:col-span-5{grid-column:span 5/span 5}.md\:col-span-6{grid-column:span 6/span 6}.md\:col-span-7{grid-column:span 7/span 7}.md\:col-span-8{grid-column:span 8/span 8}.md\:col-span-9{grid-column:span 9/span 9}.md\:col-span-full{grid-column:1/-1}.md\:mx-auto{margin-left:auto;margin-right:auto}.md\:ml-4{margin-left:1rem}.md\:ml-6{margin-left:1.5rem}.md\:mt-0{margin-top:0}.md\:block{display:block}.md\:flex{display:flex}.md\:hidden{display:none}.md\:h-10{height:2.5rem}.md\:h-5{height:1.25rem}.md\:w-10{width:2.5rem}.md\:w-5{width:1.25rem}.md\:w-auto{width:auto}.md\:max-w-2xl{max-width:42rem}.md\:max-w-xl{max-width:36rem}.md\:columns-1{-moz-columns:1;column-count:1}.md\:columns-10{-moz-columns:10;column-count:10}.md\:columns-11{-moz-columns:11;column-count:11}.md\:columns-12{-moz-columns:12;column-count:12}.md\:columns-2{-moz-columns:2;column-count:2}.md\:columns-3{-moz-columns:3;column-count:3}.md\:columns-4{-moz-columns:4;column-count:4}.md\:columns-5{-moz-columns:5;column-count:5}.md\:columns-6{-moz-columns:6;column-count:6}.md\:columns-7{-moz-columns:7;column-count:7}.md\:columns-8{-moz-columns:8;column-count:8}.md\:columns-9{-moz-columns:9;column-count:9}.md\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.md\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.md\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.md\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.md\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.md\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.md\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.md\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.md\:grid-cols-9{grid-template-columns:repeat(9,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-l{border-left-width:1px}.md\:border-t-0{border-top-width:0}.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\:-top-16{top:-4rem}.lg\:left-1\/2{left:50%}.lg\:col-span-1{grid-column:span 1/span 1}.lg\:col-span-10{grid-column:span 10/span 10}.lg\:col-span-11{grid-column:span 11/span 11}.lg\:col-span-12{grid-column:span 12/span 12}.lg\:col-span-2{grid-column:span 2/span 2}.lg\:col-span-3{grid-column:span 3/span 3}.lg\:col-span-4{grid-column:span 4/span 4}.lg\:col-span-5{grid-column:span 5/span 5}.lg\:col-span-6{grid-column:span 6/span 6}.lg\:col-span-7{grid-column:span 7/span 7}.lg\:col-span-8{grid-column:span 8/span 8}.lg\:col-span-9{grid-column:span 9/span 9}.lg\:col-span-full{grid-column:1/-1}.lg\:col-start-10{grid-column-start:10}.lg\:row-span-3{grid-row:span 3/span 3}.lg\:-mx-8{margin-left:-2rem;margin-right:-2rem}.lg\:mx-0{margin-left:0;margin-right:0}.lg\:mx-auto{margin-left:auto;margin-right:auto}.lg\:-mt-16{margin-top:-4rem}.lg\:mb-32{margin-bottom:8rem}.lg\:ml-0{margin-left:0}.lg\:ml-10{margin-left:2.5rem}.lg\:ml-12{margin-left:3rem}.lg\:ml-6{margin-left:1.5rem}.lg\:mt-0{margin-top:0}.lg\:mt-10{margin-top:2.5rem}.lg\:mt-12{margin-top:3rem}.lg\:mt-20{margin-top:5rem}.lg\:mt-5{margin-top:1.25rem}.lg\:mt-8{margin-top:2rem}.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-7xl{max-width:80rem}.lg\:max-w-none{max-width:none}.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\:columns-1{-moz-columns:1;column-count:1}.lg\:columns-10{-moz-columns:10;column-count:10}.lg\:columns-11{-moz-columns:11;column-count:11}.lg\:columns-12{-moz-columns:12;column-count:12}.lg\:columns-2{-moz-columns:2;column-count:2}.lg\:columns-3{-moz-columns:3;column-count:3}.lg\:columns-4{-moz-columns:4;column-count:4}.lg\:columns-5{-moz-columns:5;column-count:5}.lg\:columns-6{-moz-columns:6;column-count:6}.lg\:columns-7{-moz-columns:7;column-count:7}.lg\:columns-8{-moz-columns:8;column-count:8}.lg\:columns-9{-moz-columns:9;column-count:9}.lg\:grid-flow-col{grid-auto-flow:column}.lg\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.lg\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.lg\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.lg\:grid-cols-12{grid-template-columns:repeat(12,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-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.lg\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.lg\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.lg\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.lg\:grid-cols-9{grid-template-columns:repeat(9,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-10{gap:2.5rem}.lg\:gap-12{gap:3rem}.lg\:gap-16{gap:4rem}.lg\:gap-24{gap:6rem}.lg\:gap-6{gap:1.5rem}.lg\:gap-8{gap:2rem}.lg\:gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.lg\:gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.lg\:gap-x-5{-moz-column-gap:1.25rem;column-gap:1.25rem}.lg\:gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.lg\:gap-y-12{row-gap:3rem}.lg\:gap-y-6{row-gap:1.5rem}.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\: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\: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\:px-0{padding-left:0;padding-right:0}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:py-12{padding-bottom:3rem;padding-top:3rem}.lg\:py-16{padding-bottom:4rem;padding-top:4rem}.lg\:py-20{padding-bottom:5rem;padding-top:5rem}.lg\:py-8{padding-bottom:2rem;padding-top:2rem}.lg\:pb-12{padding-bottom:3rem}.lg\:pb-16{padding-bottom:4rem}.lg\:pb-20{padding-bottom:5rem}.lg\:pl-8{padding-left:2rem}.lg\:pt-20{padding-top:5rem}.lg\:text-left{text-align:left}.lg\:text-center{text-align:center}.lg\:text-4xl{font-size:2.25rem;line-height:2.5rem}.lg\:text-5xl{font-size:3rem;line-height:1}.lg\:text-base{font-size:1rem;line-height:1.5rem}.lg\:text-lg{font-size:1.125rem;line-height:1.75rem}.lg\:text-sm{font-size:.875rem;line-height:1.25rem}.lg\:text-xl{font-size:1.25rem;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{inset:0}.xl\:inset-y-0{bottom:0;top:0}.xl\:-top-14{top:-3.5rem}.xl\:left-0{left:0}.xl\:col-span-1{grid-column:span 1/span 1}.xl\:col-span-10{grid-column:span 10/span 10}.xl\:col-span-11{grid-column:span 11/span 11}.xl\:col-span-12{grid-column:span 12/span 12}.xl\:col-span-2{grid-column:span 2/span 2}.xl\:col-span-3{grid-column:span 3/span 3}.xl\:col-span-4{grid-column:span 4/span 4}.xl\:col-span-5{grid-column:span 5/span 5}.xl\:col-span-6{grid-column:span 6/span 6}.xl\:col-span-7{grid-column:span 7/span 7}.xl\:col-span-8{grid-column:span 8/span 8}.xl\:col-span-9{grid-column:span 9/span 9}.xl\:col-span-full{grid-column:1/-1}.xl\:col-start-1{grid-column-start:1}.xl\:col-start-2{grid-column-start:2}.xl\:mb-6{margin-bottom:1.5rem}.xl\:ml-0{margin-left:0}.xl\:mt-16{margin-top:4rem}.xl\:grid{display:grid}.xl\:h-full{height:100%}.xl\:w-32{width:8rem}.xl\:columns-1{-moz-columns:1;column-count:1}.xl\:columns-10{-moz-columns:10;column-count:10}.xl\:columns-11{-moz-columns:11;column-count:11}.xl\:columns-12{-moz-columns:12;column-count:12}.xl\:columns-2{-moz-columns:2;column-count:2}.xl\:columns-3{-moz-columns:3;column-count:3}.xl\:columns-4{-moz-columns:4;column-count:4}.xl\:columns-5{-moz-columns:5;column-count:5}.xl\:columns-6{-moz-columns:6;column-count:6}.xl\:columns-7{-moz-columns:7;column-count:7}.xl\:columns-8{-moz-columns:8;column-count:8}.xl\:columns-9{-moz-columns:9;column-count:9}.xl\:grid-flow-col-dense{grid-auto-flow:column dense}.xl\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.xl\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.xl\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.xl\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.xl\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.xl\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.xl\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.xl\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.xl\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}.xl\:flex-col{flex-direction:column}.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-3xl{font-size:1.875rem;line-height:2.25rem}.xl\:text-4xl{font-size:2.25rem;line-height:2.5rem}.xl\:text-base{font-size:1rem;line-height:1.5rem}.xl\:text-xl{font-size:1.25rem;line-height:1.75rem}}@media (min-width:1536px){.\32xl\:col-span-1{grid-column:span 1/span 1}.\32xl\:col-span-10{grid-column:span 10/span 10}.\32xl\:col-span-11{grid-column:span 11/span 11}.\32xl\:col-span-12{grid-column:span 12/span 12}.\32xl\:col-span-2{grid-column:span 2/span 2}.\32xl\:col-span-3{grid-column:span 3/span 3}.\32xl\:col-span-4{grid-column:span 4/span 4}.\32xl\:col-span-5{grid-column:span 5/span 5}.\32xl\:col-span-6{grid-column:span 6/span 6}.\32xl\:col-span-7{grid-column:span 7/span 7}.\32xl\:col-span-8{grid-column:span 8/span 8}.\32xl\:col-span-9{grid-column:span 9/span 9}.\32xl\:col-span-full{grid-column:1/-1}.\32xl\:columns-1{-moz-columns:1;column-count:1}.\32xl\:columns-10{-moz-columns:10;column-count:10}.\32xl\:columns-11{-moz-columns:11;column-count:11}.\32xl\:columns-12{-moz-columns:12;column-count:12}.\32xl\:columns-2{-moz-columns:2;column-count:2}.\32xl\:columns-3{-moz-columns:3;column-count:3}.\32xl\:columns-4{-moz-columns:4;column-count:4}.\32xl\:columns-5{-moz-columns:5;column-count:5}.\32xl\:columns-6{-moz-columns:6;column-count:6}.\32xl\:columns-7{-moz-columns:7;column-count:7}.\32xl\:columns-8{-moz-columns:8;column-count:8}.\32xl\:columns-9{-moz-columns:9;column-count:9}.\32xl\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.\32xl\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.\32xl\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.\32xl\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.\32xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.\32xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.\32xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.\32xl\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.\32xl\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.\32xl\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.\32xl\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.\32xl\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}} +/*! tailwindcss v3.3.2 | 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-feature-settings:normal;font-family:DM Sans,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-variation-settings:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:JetBrains Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}[multiple],[type=date],[type=datetime-local],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],select,textarea{--tw-shadow:0 0 #0000;-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:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{--tw-shadow:0 0 #0000;-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:unset;border-color:inherit;border-radius:0;border-width:0;font-size:unset;line-height:inherit;padding:0}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}: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-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width: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-h-1{--tw-aspect-h:1}.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-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%}.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%}.prose{color:rgb(var(--color-text-base));max-width:65ch}.prose :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}.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:rgb(var(--color-text-primary));font-weight:500;text-decoration:none}.prose :where(a):not(:where([class~=not-prose] *)):hover{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: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: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(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: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: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-sm>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.prose-sm :where(.prose-sm>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose-sm>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(.prose-sm>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose-sm>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-sm>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(.prose-sm>: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-base>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose-base :where(.prose-base>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base :where(.prose-base>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base :where(.prose-base>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base :where(.prose-base>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-base>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(.prose-base>: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-lg>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.prose-lg :where(.prose-lg>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg :where(.prose-lg>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg :where(.prose-lg>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg :where(.prose-lg>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-lg>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(.prose-lg>: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}.invisible{visibility:hidden}.collapse{visibility:collapse}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.-inset-px{inset:-1px}.inset-0{inset:0}.inset-4{inset:1rem}.inset-x-0{left:0;right:0}.inset-y-0{bottom:0;top:0}.-bottom-0{bottom:0}.-bottom-0\.5{bottom:-.125rem}.-right-0{right:0}.-right-0\.5{right:-.125rem}.-right-1{right:-.25rem}.-top-0{top:0}.-top-0\.5{top:-.125rem}.-top-3{top:-.75rem}.-top-8{top:-2rem}.bottom-0{bottom:0}.left-0{left:0}.left-1{left:.25rem}.left-1\/2{left:50%}.left-5{left:1.25rem}.right-0{right:0}.right-2{right:.5rem}.right-3{right:.75rem}.right-5{right:1.25rem}.top-0{top:0}.top-16{top:4rem}.top-2{top:.5rem}.top-4{top:1rem}.top-40{top:10rem}.top-5{top:1.25rem}.top-\[-50px\]{top:-50px}.top-\[-75px\]{top:-75px}.isolate{isolation:isolate}.-z-10{z-index:-10}.z-0{z-index:0}.z-10{z-index:10}.z-20{z-index:20}.z-30{z-index:30}.z-40{z-index:40}.z-50{z-index:50}.order-1{order:1}.order-2{order:2}.col-span-1{grid-column:span 1/span 1}.col-span-10{grid-column:span 10/span 10}.col-span-11{grid-column:span 11/span 11}.col-span-12{grid-column:span 12/span 12}.col-span-2{grid-column:span 2/span 2}.col-span-3{grid-column:span 3/span 3}.col-span-4{grid-column:span 4/span 4}.col-span-5{grid-column:span 5/span 5}.col-span-6{grid-column:span 6/span 6}.col-span-7{grid-column:span 7/span 7}.col-span-8{grid-column:span 8/span 8}.col-span-9{grid-column:span 9/span 9}.col-span-full{grid-column:1/-1}.-m-2{margin:-.5rem}.-m-3{margin:-.75rem}.-mx-2{margin-left:-.5rem;margin-right:-.5rem}.-mx-4{margin-left:-1rem;margin-right:-1rem}.-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.-my-2{margin-bottom:-.5rem;margin-top:-.5rem}.-my-5{margin-bottom:-1.25rem;margin-top:-1.25rem}.mx-0{margin-left:0;margin-right:0}.mx-1{margin-left:.25rem;margin-right:.25rem}.mx-1\.5{margin-left:.375rem;margin-right:.375rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.mx-4{margin-left:1rem;margin-right:1rem}.mx-auto{margin-left:auto;margin-right:auto}.my-10{margin-bottom:2.5rem;margin-top:2.5rem}.my-2{margin-bottom:.5rem;margin-top:.5rem}.my-6{margin-bottom:1.5rem;margin-top:1.5rem}.my-8{margin-bottom:2rem;margin-top:2rem}.my-auto{margin-bottom:auto;margin-top:auto}.-mb-2{margin-bottom:-.5rem}.-mb-8{margin-bottom:-2rem}.-mb-px{margin-bottom:-1px}.-ml-0{margin-left:0}.-ml-0\.5{margin-left:-.125rem}.-ml-1{margin-left:-.25rem}.-ml-1\.5{margin-left:-.375rem}.-ml-2{margin-left:-.5rem}.-ml-3{margin-left:-.75rem}.-ml-4{margin-left:-1rem}.-ml-9{margin-left:-2.25rem}.-ml-px{margin-left:-1px}.-mr-1{margin-right:-.25rem}.-mr-1\.5{margin-right:-.375rem}.-mr-2{margin-right:-.5rem}.-mr-3{margin-right:-.75rem}.-mt-1{margin-top:-.25rem}.-mt-12{margin-top:-3rem}.-mt-2{margin-top:-.5rem}.-mt-3{margin-top:-.75rem}.-mt-4{margin-top:-1rem}.-mt-6{margin-top:-1.5rem}.mb-1{margin-bottom:.25rem}.mb-1\.5{margin-bottom:.375rem}.mb-14{margin-bottom:3.5rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.ml-1{margin-left:.25rem}.ml-1\.5{margin-left:.375rem}.ml-12{margin-left:3rem}.ml-2{margin-left:.5rem}.ml-2\.5{margin-left:.625rem}.ml-3{margin-left:.75rem}.ml-3\.5{margin-left:.875rem}.ml-4{margin-left:1rem}.ml-8{margin-left:2rem}.ml-9{margin-left:2.25rem}.ml-auto{margin-left:auto}.mr-0{margin-right:0}.mr-1{margin-right:.25rem}.mr-1\.5{margin-right:.375rem}.mr-2{margin-right:.5rem}.mr-2\.5{margin-right:.625rem}.mr-3{margin-right:.75rem}.mt-0{margin-top:0}.mt-0\.5{margin-top:.125rem}.mt-1{margin-top:.25rem}.mt-1\.5{margin-top:.375rem}.mt-10{margin-top:2.5rem}.mt-12{margin-top:3rem}.mt-16{margin-top:4rem}.mt-2{margin-top:.5rem}.mt-24{margin-top:6rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.mt-\[calc\(-1rem-1px\)\]{margin-top:calc(-1rem - 1px)}.line-clamp-2{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;overflow:hidden}.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}.aspect-\[2\/1\]{aspect-ratio:2/1}.h-0{height:0}.h-0\.5{height:.125rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-14{height:3.5rem}.h-16{height:4rem}.h-2{height:.5rem}.h-24{height:6rem}.h-3{height:.75rem}.h-3\.5{height:.875rem}.h-32{height:8rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-56{height:14rem}.h-6{height:1.5rem}.h-64{height:16rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-80{height:20rem}.h-9{height:2.25rem}.h-96{height:24rem}.h-\[1026px\]{height:1026px}.h-\[120px\]{height:120px}.h-\[250px\]{height:250px}.h-\[350px\]{height:350px}.h-\[450px\]{height:450px}.h-auto{height:auto}.h-full{height:100%}.h-screen{height:100vh}.min-h-\[2\.25rem\]{min-height:2.25rem}.min-h-\[2\.75rem\]{min-height:2.75rem}.min-h-\[250px\]{min-height:250px}.min-h-\[2rem\]{min-height:2rem}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.w-0{width:0}.w-0\.5{width:.125rem}.w-1\/2{width:50%}.w-1\/3{width:33.333333%}.w-10{width:2.5rem}.w-11{width:2.75rem}.w-12{width:3rem}.w-14{width:3.5rem}.w-2{width:.5rem}.w-24{width:6rem}.w-3{width:.75rem}.w-3\.5{width:.875rem}.w-3\/4{width:75%}.w-4{width:1rem}.w-40{width:10rem}.w-5{width:1.25rem}.w-5\/6{width:83.333333%}.w-56{width:14rem}.w-6{width:1.5rem}.w-60{width:15rem}.w-7{width:1.75rem}.w-8{width:2rem}.w-9{width:2.25rem}.w-\[1026px\]{width:1026px}.w-auto{width:auto}.w-full{width:100%}.w-px{width:1px}.w-screen{width:100vw}.min-w-0{min-width:0}.min-w-\[1rem\]{min-width:1rem}.min-w-full{min-width:100%}.max-w-2xl{max-width:42rem}.max-w-3xl{max-width:48rem}.max-w-4xl{max-width:56rem}.max-w-5xl{max-width:64rem}.max-w-6xl{max-width:72rem}.max-w-7xl{max-width:80rem}.max-w-\[14rem\]{max-width:14rem}.max-w-full{max-width:100%}.max-w-lg{max-width:32rem}.max-w-md{max-width:28rem}.max-w-none{max-width:none}.max-w-sm{max-width:24rem}.max-w-xl{max-width:36rem}.max-w-xs{max-width:20rem}.flex-1{flex:1 1 0%}.flex-none{flex:none}.flex-shrink-0,.shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.origin-top{transform-origin:top}.origin-top-right{transform-origin:top right}.-translate-x-1\/3{--tw-translate-x:-33.333333%}.-translate-x-12,.-translate-x-1\/3{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-12{--tw-translate-x:-3rem}.-translate-y-1\/2{--tw-translate-y:-50%}.-translate-y-12,.-translate-y-1\/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-12{--tw-translate-y:-3rem}.translate-x-0{--tw-translate-x:0px}.translate-x-0,.translate-x-12{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-12{--tw-translate-x:3rem}.translate-x-5{--tw-translate-x:1.25rem}.translate-x-5,.translate-x-full{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-full{--tw-translate-x:100%}.translate-y-0{--tw-translate-y:0px}.translate-y-0,.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-y-1{--tw-translate-y:0.25rem}.translate-y-12{--tw-translate-y:3rem}.translate-y-12,.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-2{--tw-translate-y:0.5rem}.translate-y-4{--tw-translate-y:1rem}.translate-y-4,.translate-y-7{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}.translate-y-8{--tw-translate-y:2rem}.translate-y-8,.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}.rotate-0{--tw-rotate:0deg}.rotate-0,.rotate-45{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}.rotate-90{--tw-rotate:90deg}.rotate-90,.scale-100{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-100{--tw-scale-x:1;--tw-scale-y:1}.scale-95{--tw-scale-x:.95;--tw-scale-y:.95}.scale-95,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes scroll{0%{transform:translateX(0)}to{transform:translateX(-100%)}}.animate-scroll-slow{animation:scroll 30s linear infinite}.animate-spin{animation:spin 1s linear infinite}@keyframes spin-reverse{to{transform:rotate(-1turn)}}.animate-spin-reverse-slower{animation:spin-reverse 6s linear infinite}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin-slow{animation:spin 4s linear infinite}.cursor-default{cursor:default}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.cursor-text{cursor:text}.cursor-wait{cursor:wait}.select-none{-webkit-user-select:none;-moz-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}.columns-1{-moz-columns:1;column-count:1}.columns-10{-moz-columns:10;column-count:10}.columns-11{-moz-columns:11;column-count:11}.columns-12{-moz-columns:12;column-count:12}.columns-2{-moz-columns:2;column-count:2}.columns-3{-moz-columns:3;column-count:3}.columns-4{-moz-columns:4;column-count:4}.columns-5{-moz-columns:5;column-count:5}.columns-6{-moz-columns:6;column-count:6}.columns-7{-moz-columns:7;column-count:7}.columns-8{-moz-columns:8;column-count:8}.columns-9{-moz-columns:9;column-count:9}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}.grid-cols-\[repeat\(auto-fit\2c minmax\(0\2c 1fr\)\)\]{grid-template-columns:repeat(auto-fit,minmax(0,1fr))}.flex-row-reverse{flex-direction:row-reverse}.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}.justify-stretch{justify-content:stretch}.gap-0{gap:0}.gap-0\.5{gap:.125rem}.gap-1{gap:.25rem}.gap-10{gap:2.5rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-5{gap:1.25rem}.gap-6{gap:1.5rem}.gap-8{gap:2rem}.gap-x-12{-moz-column-gap:3rem;column-gap:3rem}.gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.gap-x-5{-moz-column-gap:1.25rem;column-gap:1.25rem}.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-y-12{row-gap:3rem}.gap-y-4{row-gap:1rem}.gap-y-6{row-gap:1.5rem}.-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-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.25rem*var(--tw-space-x-reverse))}.space-x-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-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-20>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(5rem*var(--tw-space-x-reverse))}.space-x-3>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.75rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.75rem*var(--tw-space-x-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-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-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))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.25rem*var(--tw-space-y-reverse));margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)))}.space-y-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-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-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.space-y-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-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-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-x-reverse>:not([hidden])~:not([hidden]){--tw-space-x-reverse:1}.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-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.divide-gray-100>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(243 244 246/var(--tw-divide-opacity))}.divide-skin-base>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgba(var(--color-divide),var(--tw-divide-opacity))}.divide-skin-input>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgba(var(--color-input-border),var(--tw-divide-opacity))}.divide-skin-light>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgba(var(--color-divide-light),var(--tw-divide-opacity))}.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{overflow-wrap:break-word}.break-all{word-break:break-all}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-none{border-radius:0}.rounded-sm{border-radius:.125rem}.rounded-xl{border-radius:.75rem}.rounded-b-lg{border-bottom-right-radius:.5rem}.rounded-b-lg,.rounded-l-lg{border-bottom-left-radius:.5rem}.rounded-l-lg{border-top-left-radius:.5rem}.rounded-l-md{border-bottom-left-radius:.375rem;border-top-left-radius:.375rem}.rounded-l-none{border-bottom-left-radius:0;border-top-left-radius:0}.rounded-r-lg{border-bottom-right-radius:.5rem;border-top-right-radius:.5rem}.rounded-r-md{border-bottom-right-radius:.375rem;border-top-right-radius:.375rem}.rounded-r-none{border-bottom-right-radius:0;border-top-right-radius:0}.rounded-t-lg{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.rounded-tl{border-top-left-radius:.25rem}.rounded-tl-sm{border-top-left-radius:.125rem}.border{border-width:1px}.border-0{border-width:0}.border-2{border-width:2px}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-l{border-left-width:1px}.border-l-4{border-left-width:4px}.border-r{border-right-width:1px}.border-r-0{border-right-width:0}.border-t{border-top-width:1px}.border-dashed{border-style:dashed}.border-none{border-style:none}.border-danger-600{--tw-border-opacity:1;border-color:rgb(225 29 72/var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.border-gray-600{--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.border-gray-800{--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}.border-green-500{--tw-border-opacity:1;border-color:rgb(16 185 129/var(--tw-border-opacity))}.border-primary-600{--tw-border-opacity:1;border-color:rgb(5 150 105/var(--tw-border-opacity))}.border-red-300{--tw-border-opacity:1;border-color:rgb(252 165 165/var(--tw-border-opacity))}.border-skin-base{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.border-skin-input{--tw-border-opacity:1;border-color:rgba(var(--color-input-border),var(--tw-border-opacity))}.border-success-600{--tw-border-opacity:1;border-color:rgb(22 163 74/var(--tw-border-opacity))}.border-transparent{border-color:transparent}.border-warning-600{--tw-border-opacity:1;border-color:rgb(202 138 4/var(--tw-border-opacity))}.border-white{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.\!bg-primary-500{--tw-bg-opacity:1!important;background-color:rgb(16 185 129/var(--tw-bg-opacity))!important}.\!bg-skin-body{--tw-bg-opacity:1!important;background-color:rgba(var(--color-body-fill),var(--tw-bg-opacity))!important}.bg-black{--tw-bg-opacity:1;background-color:rgb(22 27 34/var(--tw-bg-opacity))}.bg-black\/50{background-color:rgba(22,27,34,.5)}.bg-blue-100{--tw-bg-opacity:1;background-color:rgb(219 234 254/var(--tw-bg-opacity))}.bg-blue-50{--tw-bg-opacity:1;background-color:rgb(239 246 255/var(--tw-bg-opacity))}.bg-blue-500{--tw-bg-opacity:1;background-color:rgb(59 130 246/var(--tw-bg-opacity))}.bg-danger-500\/10{background-color:rgba(244,63,94,.1)}.bg-danger-600{--tw-bg-opacity:1;background-color:rgb(225 29 72/var(--tw-bg-opacity))}.bg-flag-green{--tw-bg-opacity:1;background-color:rgb(9 145 112/var(--tw-bg-opacity))}.bg-flag-red{--tw-bg-opacity:1;background-color:rgb(226 27 48/var(--tw-bg-opacity))}.bg-flag-yellow{--tw-bg-opacity:1;background-color:rgb(255 220 68/var(--tw-bg-opacity))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.bg-gray-500{--tw-bg-opacity:1;background-color:rgb(107 114 128/var(--tw-bg-opacity))}.bg-gray-500\/10{background-color:hsla(220,9%,46%,.1)}.bg-gray-600{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.bg-gray-700{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.bg-gray-800{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.bg-gray-900{--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.bg-green-100{--tw-bg-opacity:1;background-color:rgb(209 250 229/var(--tw-bg-opacity))}.bg-green-50{--tw-bg-opacity:1;background-color:rgb(236 253 245/var(--tw-bg-opacity))}.bg-green-500{--tw-bg-opacity:1;background-color:rgb(16 185 129/var(--tw-bg-opacity))}.bg-green-600{--tw-bg-opacity:1;background-color:rgb(5 150 105/var(--tw-bg-opacity))}.bg-green-700{--tw-bg-opacity:1;background-color:rgb(4 120 87/var(--tw-bg-opacity))}.bg-orange-100{--tw-bg-opacity:1;background-color:rgb(255 237 213/var(--tw-bg-opacity))}.bg-primary-50{--tw-bg-opacity:1;background-color:rgb(236 253 245/var(--tw-bg-opacity))}.bg-primary-500\/10{background-color:rgba(16,185,129,.1)}.bg-primary-600{--tw-bg-opacity:1;background-color:rgb(5 150 105/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-red-50{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity))}.bg-red-500{--tw-bg-opacity:1;background-color:rgb(239 68 68/var(--tw-bg-opacity))}.bg-skin-body{--tw-bg-opacity:1;background-color:rgba(var(--color-body-fill),var(--tw-bg-opacity))}.bg-skin-button{--tw-bg-opacity:1;background-color:rgba(var(--color-button-default),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-skin-card{--tw-bg-opacity:1;background-color:rgba(var(--color-card-fill),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-card-muted{--tw-bg-opacity:1;background-color:rgba(var(--color-card-muted-fill),var(--tw-bg-opacity))}.bg-skin-card\/50{background-color:rgba(var(--color-card-fill),.5)}.bg-skin-footer{--tw-bg-opacity:1;background-color:rgba(var(--color-footer-fill),var(--tw-bg-opacity))}.bg-skin-input{--tw-bg-opacity:1;background-color:rgba(var(--color-input-fill),var(--tw-bg-opacity))}.bg-skin-link{--tw-bg-opacity:1;background-color:rgba(var(--color-link-fill),var(--tw-bg-opacity))}.bg-skin-menu{--tw-bg-opacity:1;background-color:rgba(var(--color-menu-fill),var(--tw-bg-opacity))}.bg-skin-primary{--tw-bg-opacity:1;background-color:rgba(var(--color-text-primary),var(--tw-bg-opacity))}.bg-success-500\/10{background-color:rgba(34,197,94,.1)}.bg-success-600{--tw-bg-opacity:1;background-color:rgb(22 163 74/var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.bg-warning-500\/10{background-color:rgba(234,179,8,.1)}.bg-warning-600{--tw-bg-opacity:1;background-color:rgb(202 138 4/var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-yellow-100{--tw-bg-opacity:1;background-color:rgb(254 249 195/var(--tw-bg-opacity))}.bg-yellow-50{--tw-bg-opacity:1;background-color:rgb(254 252 232/var(--tw-bg-opacity))}.bg-yellow-500{--tw-bg-opacity:1;background-color:rgb(234 179 8/var(--tw-bg-opacity))}.bg-opacity-10{--tw-bg-opacity:0.1}.bg-opacity-20{--tw-bg-opacity:0.2}.bg-opacity-50{--tw-bg-opacity:0.5}.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-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.bg-gradient-to-t{background-image:linear-gradient(to top,var(--tw-gradient-stops))}.from-\[\#27A7E7\]{--tw-gradient-from:#27a7e7 var(--tw-gradient-from-position);--tw-gradient-to:rgba(39,167,231,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-\[\#28D146\]{--tw-gradient-from:#28d146 var(--tw-gradient-from-position);--tw-gradient-to:rgba(40,209,70,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-\[\#413626\]{--tw-gradient-from:#413626 var(--tw-gradient-from-position);--tw-gradient-to:rgba(65,54,38,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-\[\#5865F2\]{--tw-gradient-from:#5865f2 var(--tw-gradient-from-position);--tw-gradient-to:rgba(88,101,242,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-black{--tw-gradient-from:#161b22 var(--tw-gradient-from-position);--tw-gradient-to:rgba(22,27,34,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-flag-yellow{--tw-gradient-from:#ffdc44 var(--tw-gradient-from-position);--tw-gradient-to:rgba(255,220,68,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-green-500{--tw-gradient-from:#10b981 var(--tw-gradient-from-position);--tw-gradient-to:rgba(16,185,129,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-transparent{--tw-gradient-from:transparent var(--tw-gradient-from-position);--tw-gradient-to:transparent var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.via-indigo-600{--tw-gradient-to:rgba(79,70,229,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),#4f46e5 var(--tw-gradient-via-position),var(--tw-gradient-to)}.to-\[\#0088cc\]{--tw-gradient-to:#08c var(--tw-gradient-to-position)}.to-\[\#1928D5\]{--tw-gradient-to:#1928d5 var(--tw-gradient-to-position)}.to-\[\#5FFC7B\]{--tw-gradient-to:#5ffc7b var(--tw-gradient-to-position)}.to-\[\#7E5D36\]{--tw-gradient-to:#7e5d36 var(--tw-gradient-to-position)}.to-blue-500{--tw-gradient-to:#3b82f6 var(--tw-gradient-to-position)}.to-flag-red{--tw-gradient-to:#e21b30 var(--tw-gradient-to-position)}.fill-current{fill:currentColor}.stroke-current{stroke:currentColor}.stroke-gray-200\/30{stroke:rgba(229,231,235,.3)}.stroke-gray-300\/70{stroke:rgba(209,213,219,.7)}.object-cover{-o-object-fit:cover;object-fit:cover}.p-1{padding:.25rem}.p-1\.5{padding:.375rem}.p-2{padding:.5rem}.p-2\.5{padding:.625rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.px-0{padding-left:0;padding-right:0}.px-0\.5{padding-left:.125rem;padding-right:.125rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-3\.5{padding-left:.875rem;padding-right:.875rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-0{padding-bottom:0;padding-top:0}.py-0\.5{padding-bottom:.125rem;padding-top:.125rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-1\.5{padding-bottom:.375rem;padding-top:.375rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-12{padding-bottom:3rem;padding-top:3rem}.py-14{padding-bottom:3.5rem;padding-top:3.5rem}.py-16{padding-bottom:4rem;padding-top:4rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-2\.5{padding-bottom:.625rem;padding-top:.625rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-3\.5{padding-bottom:.875rem;padding-top:.875rem}.py-4{padding-bottom:1rem;padding-top:1rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.py-8{padding-bottom:2rem;padding-top:2rem}.py-px{padding-bottom:1px;padding-top:1px}.pb-10{padding-bottom:2.5rem}.pb-12{padding-bottom:3rem}.pb-2{padding-bottom:.5rem}.pb-20{padding-bottom:5rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pb-5{padding-bottom:1.25rem}.pb-6{padding-bottom:1.5rem}.pb-64{padding-bottom:16rem}.pb-8{padding-bottom:2rem}.pl-10{padding-left:2.5rem}.pl-16{padding-left:4rem}.pl-2{padding-left:.5rem}.pl-3{padding-left:.75rem}.pl-4{padding-left:1rem}.pl-5{padding-left:1.25rem}.pr-1{padding-right:.25rem}.pr-10{padding-right:2.5rem}.pr-12{padding-right:3rem}.pr-16{padding-right:4rem}.pr-2{padding-right:.5rem}.pr-3{padding-right:.75rem}.pr-4{padding-right:1rem}.pr-7{padding-right:1.75rem}.pt-0{padding-top:0}.pt-0\.5{padding-top:.125rem}.pt-10{padding-top:2.5rem}.pt-12{padding-top:3rem}.pt-16{padding-top:4rem}.pt-2{padding-top:.5rem}.pt-4{padding-top:1rem}.pt-5{padding-top:1.25rem}.pt-6{padding-top:1.5rem}.pt-8{padding-top:2rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-start{text-align:start}.align-middle{vertical-align:middle}.align-bottom{vertical-align:bottom}.font-heading{font-family:Lexend,ui-sans-serif,system-ui,-apple-system,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}.font-sans{font-family:DM Sans,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-5xl{font-size:3rem;line-height:1}.text-\[12px\]{font-size:12px}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-extrabold{font-weight:800}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.capitalize{text-transform:capitalize}.italic{font-style:italic}.leading-3{line-height:.75rem}.leading-4{line-height:1rem}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-7{line-height:1.75rem}.leading-8{line-height:2rem}.leading-loose{line-height:2}.leading-none{line-height:1}.leading-normal{line-height:1.5}.leading-tight{line-height:1.25}.tracking-tight{letter-spacing:-.025em}.tracking-tighter{letter-spacing:-.05em}.tracking-wide{letter-spacing:.025em}.tracking-wider{letter-spacing:.05em}.tracking-widest{letter-spacing:.1em}.\!text-skin-primary{--tw-text-opacity:1!important;color:rgba(var(--color-text-primary),var(--tw-text-opacity))!important}.text-\[\#1E9DEA\]{--tw-text-opacity:1;color:rgb(30 157 234/var(--tw-text-opacity))}.text-\[\#27A7E7\]{--tw-text-opacity:1;color:rgb(39 167 231/var(--tw-text-opacity))}.text-\[\#28D146\]{--tw-text-opacity:1;color:rgb(40 209 70/var(--tw-text-opacity))}.text-\[\#5865F2\]{--tw-text-opacity:1;color:rgb(88 101 242/var(--tw-text-opacity))}.text-blue-400{--tw-text-opacity:1;color:rgb(96 165 250/var(--tw-text-opacity))}.text-blue-500{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}.text-blue-700{--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity))}.text-blue-800{--tw-text-opacity:1;color:rgb(30 64 175/var(--tw-text-opacity))}.text-danger-400{--tw-text-opacity:1;color:rgb(251 113 133/var(--tw-text-opacity))}.text-danger-500{--tw-text-opacity:1;color:rgb(244 63 94/var(--tw-text-opacity))}.text-danger-600{--tw-text-opacity:1;color:rgb(225 29 72/var(--tw-text-opacity))}.text-flag-green{--tw-text-opacity:1;color:rgb(9 145 112/var(--tw-text-opacity))}.text-gray-100{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.text-green-300{--tw-text-opacity:1;color:rgb(110 231 183/var(--tw-text-opacity))}.text-green-400{--tw-text-opacity:1;color:rgb(52 211 153/var(--tw-text-opacity))}.text-green-500{--tw-text-opacity:1;color:rgb(16 185 129/var(--tw-text-opacity))}.text-green-600{--tw-text-opacity:1;color:rgb(5 150 105/var(--tw-text-opacity))}.text-green-700{--tw-text-opacity:1;color:rgb(4 120 87/var(--tw-text-opacity))}.text-green-800{--tw-text-opacity:1;color:rgb(6 95 70/var(--tw-text-opacity))}.text-green-900{--tw-text-opacity:1;color:rgb(6 78 59/var(--tw-text-opacity))}.text-orange-400{--tw-text-opacity:1;color:rgb(251 146 60/var(--tw-text-opacity))}.text-orange-800{--tw-text-opacity:1;color:rgb(154 52 18/var(--tw-text-opacity))}.text-primary-400{--tw-text-opacity:1;color:rgb(52 211 153/var(--tw-text-opacity))}.text-primary-500{--tw-text-opacity:1;color:rgb(16 185 129/var(--tw-text-opacity))}.text-primary-600{--tw-text-opacity:1;color:rgb(5 150 105/var(--tw-text-opacity))}.text-primary-700{--tw-text-opacity:1;color:rgb(4 120 87/var(--tw-text-opacity))}.text-red-400{--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}.text-red-500{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.text-red-600{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity))}.text-red-700{--tw-text-opacity:1;color:rgb(185 28 28/var(--tw-text-opacity))}.text-red-800{--tw-text-opacity:1;color:rgb(153 27 27/var(--tw-text-opacity))}.text-red-900{--tw-text-opacity:1;color:rgb(127 29 29/var(--tw-text-opacity))}.text-rose-500{--tw-text-opacity:1;color:rgb(244 63 94/var(--tw-text-opacity))}.text-skin-base{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity))}.text-skin-base\/60{color:rgba(var(--color-text-base),.6)}.text-skin-inverted{--tw-text-opacity:1;color:rgba(var(--color-text-inverted),var(--tw-text-opacity))}.text-skin-inverted-muted{--tw-text-opacity:1;color:rgba(var(--color-text-inverted-muted),var(--tw-text-opacity))}.text-skin-inverted-muted\/60{color:rgba(var(--color-text-inverted-muted),.6)}.text-skin-inverted-muted\/70{color:rgba(var(--color-text-inverted-muted),.7)}.text-skin-inverted-muted\/80{color:rgba(var(--color-text-inverted-muted),.8)}.text-skin-menu{--tw-text-opacity:1;color:rgba(var(--color-text-link-menu),var(--tw-text-opacity))}.text-skin-menu-hover{--tw-text-opacity:1;color:rgba(var(--color-text-link-menu-hover),var(--tw-text-opacity))}.text-skin-muted{--tw-text-opacity:1;color:rgba(var(--color-text-muted),var(--tw-text-opacity))}.text-skin-primary{--tw-text-opacity:1;color:rgba(var(--color-text-primary),var(--tw-text-opacity))}.text-sky-500{--tw-text-opacity:1;color:rgb(14 165 233/var(--tw-text-opacity))}.text-slate-300{--tw-text-opacity:1;color:rgb(203 213 225/var(--tw-text-opacity))}.text-slate-500{--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}.text-slate-700{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.text-slate-900{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.text-success-400{--tw-text-opacity:1;color:rgb(74 222 128/var(--tw-text-opacity))}.text-success-500{--tw-text-opacity:1;color:rgb(34 197 94/var(--tw-text-opacity))}.text-success-600{--tw-text-opacity:1;color:rgb(22 163 74/var(--tw-text-opacity))}.text-warning-400{--tw-text-opacity:1;color:rgb(250 204 21/var(--tw-text-opacity))}.text-warning-500{--tw-text-opacity:1;color:rgb(234 179 8/var(--tw-text-opacity))}.text-warning-600{--tw-text-opacity:1;color:rgb(202 138 4/var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-yellow-400{--tw-text-opacity:1;color:rgb(250 204 21/var(--tw-text-opacity))}.text-yellow-500{--tw-text-opacity:1;color:rgb(234 179 8/var(--tw-text-opacity))}.text-yellow-600{--tw-text-opacity:1;color:rgb(202 138 4/var(--tw-text-opacity))}.text-yellow-700{--tw-text-opacity:1;color:rgb(161 98 7/var(--tw-text-opacity))}.text-yellow-800{--tw-text-opacity:1;color:rgb(133 77 14/var(--tw-text-opacity))}.text-yellow-900{--tw-text-opacity:1;color:rgb(113 63 18/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-gray-500::-moz-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))}.placeholder-red-300::-moz-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-skin-input::-moz-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))}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-20{opacity:.2}.opacity-25{opacity:.25}.opacity-50{opacity:.5}.opacity-70{opacity:.7}.opacity-75{opacity:.75}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.shadow,.shadow-lg{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px 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-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:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-none{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000}.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:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),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)}.outline-none{outline:2px solid transparent;outline-offset:2px}.\!ring-0{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)!important;--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color)!important;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)!important}.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)}.ring-0,.ring-1{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.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),var(--tw-shadow,0 0 #0000)}.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-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),var(--tw-shadow,0 0 #0000)}.ring-black{--tw-ring-opacity:1;--tw-ring-color:rgb(22 27 34/var(--tw-ring-opacity))}.ring-black\/5{--tw-ring-color:rgba(22,27,34,.05)}.ring-body{--tw-ring-color:rgb(var(--color-body-fill))}.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-green-500{--tw-ring-opacity:1;--tw-ring-color:rgb(16 185 129/var(--tw-ring-opacity))}.ring-white{--tw-ring-opacity:1;--tw-ring-color:rgb(255 255 255/var(--tw-ring-opacity))}.ring-yellow-500{--tw-ring-opacity:1;--tw-ring-color:rgb(234 179 8/var(--tw-ring-opacity))}.ring-opacity-5{--tw-ring-opacity:0.05}.blur{--tw-blur:blur(8px)}.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-sm{--tw-blur:blur(4px)}.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-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.delay-200{transition-delay:.2s}.duration-100{transition-duration:.1s}.duration-150{transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.duration-500{transition-duration:.5s}.duration-75{transition-duration:75ms}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.\[mask-image\:linear-gradient\(to_bottom\2c white_20\%\2c transparent_75\%\)\]{-webkit-mask-image:linear-gradient(180deg,#fff 20%,transparent 75%);mask-image:linear-gradient(180deg,#fff 20%,transparent 75%)}.\[mask-image\:radial-gradient\(100\%_100\%_at_top_right\2c white\2c transparent\)\]{-webkit-mask-image:radial-gradient(100% 100% at top right,#fff,transparent);mask-image:radial-gradient(100% 100% at top right,#fff,transparent)}: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}@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(.sm\:prose-base>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.sm\:prose-base :where(.sm\:prose-base>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.sm\:prose-base :where(.sm\:prose-base>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.sm\:prose-base :where(.sm\:prose-base>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.sm\:prose-base :where(.sm\:prose-base>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(.sm\:prose-base>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.sm\:prose-base :where(.sm\:prose-base>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}}@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(.md\:prose-sm>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.md\:prose-sm :where(.md\:prose-sm>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.md\:prose-sm :where(.md\:prose-sm>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.md\:prose-sm :where(.md\:prose-sm>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.md\:prose-sm :where(.md\:prose-sm>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(.md\:prose-sm>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-sm :where(.md\:prose-sm>: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(.md\:prose-lg>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.md\:prose-lg :where(.md\:prose-lg>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.md\:prose-lg :where(.md\:prose-lg>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.md\:prose-lg :where(.md\:prose-lg>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.md\:prose-lg :where(.md\:prose-lg>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(.md\:prose-lg>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-lg :where(.md\:prose-lg>: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(.md\:prose-xl>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.md\:prose-xl :where(.md\:prose-xl>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.md\:prose-xl :where(.md\:prose-xl>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.md\:prose-xl :where(.md\:prose-xl>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.md\:prose-xl :where(.md\:prose-xl>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(.md\:prose-xl>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-xl :where(.md\:prose-xl>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}}@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(.lg\:prose-lg>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.lg\:prose-lg :where(.lg\:prose-lg>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.lg\:prose-lg :where(.lg\:prose-lg>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.lg\:prose-lg :where(.lg\:prose-lg>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.lg\:prose-lg :where(.lg\:prose-lg>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(.lg\:prose-lg>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-lg :where(.lg\:prose-lg>: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(.lg\:prose-xl>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.lg\:prose-xl :where(.lg\:prose-xl>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.lg\:prose-xl :where(.lg\:prose-xl>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.lg\:prose-xl :where(.lg\:prose-xl>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.lg\:prose-xl :where(.lg\:prose-xl>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(.lg\:prose-xl>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-xl :where(.lg\:prose-xl>:last-child):not(:where([class~=not-prose] *)){margin-bottom: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),var(--tw-shadow,0 0 #0000)}.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}.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-500:hover{--tw-border-opacity:1;border-color:rgb(16 185 129/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-skin-base:hover{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.hover\:\!bg-primary-500:hover{--tw-bg-opacity:1!important;background-color:rgb(16 185 129/var(--tw-bg-opacity))!important}.hover\:\!bg-skin-card:hover{--tw-bg-opacity:1!important;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity))!important}.hover\:bg-danger-500:hover{--tw-bg-opacity:1;background-color:rgb(244 63 94/var(--tw-bg-opacity))}.hover\:bg-danger-600\/20:hover{background-color:rgba(225,29,72,.2)}.hover\:bg-gray-50:hover{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.hover\:bg-gray-500:hover{--tw-bg-opacity:1;background-color:rgb(107 114 128/var(--tw-bg-opacity))}.hover\:bg-gray-500\/5:hover{background-color:hsla(220,9%,46%,.05)}.hover\:bg-gray-600\/20:hover{background-color:rgba(75,85,99,.2)}.hover\:bg-gray-800:hover{--tw-bg-opacity:1;background-color:rgb(31 41 55/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-green-700:hover{--tw-bg-opacity:1;background-color:rgb(4 120 87/var(--tw-bg-opacity))}.hover\:bg-primary-500:hover{--tw-bg-opacity:1;background-color:rgb(16 185 129/var(--tw-bg-opacity))}.hover\:bg-primary-600\/20:hover{background-color:rgba(5,150,105,.2)}.hover\:bg-red-50:hover{--tw-bg-opacity:1;background-color:rgb(254 242 242/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-button-hover: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-card-muted:hover{--tw-bg-opacity:1;background-color:rgba(var(--color-card-muted-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-primary:hover{--tw-bg-opacity:1;background-color:rgba(var(--color-text-primary),var(--tw-bg-opacity))}.hover\:bg-success-500:hover{--tw-bg-opacity:1;background-color:rgb(34 197 94/var(--tw-bg-opacity))}.hover\:bg-success-600\/20:hover{background-color:rgba(22,163,74,.2)}.hover\:bg-warning-500:hover{--tw-bg-opacity:1;background-color:rgb(234 179 8/var(--tw-bg-opacity))}.hover\:bg-warning-600\/20:hover{background-color:rgba(202,138,4,.2)}.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-\[\#004182\]:hover{--tw-text-opacity:1;color:rgb(0 65 130/var(--tw-text-opacity))}.hover\:text-\[\#29aaec\]:hover{--tw-text-opacity:1;color:rgb(41 170 236/var(--tw-text-opacity))}.hover\:text-blue-600:hover{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.hover\:text-danger-500:hover{--tw-text-opacity:1;color:rgb(244 63 94/var(--tw-text-opacity))}.hover\:text-flag-green:hover{--tw-text-opacity:1;color:rgb(9 145 112/var(--tw-text-opacity))}.hover\:text-gray-500:hover{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.hover\:text-green-500:hover{--tw-text-opacity:1;color:rgb(16 185 129/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-900:hover{--tw-text-opacity:1;color:rgb(6 78 59/var(--tw-text-opacity))}.hover\:text-primary-500:hover{--tw-text-opacity:1;color:rgb(16 185 129/var(--tw-text-opacity))}.hover\:text-primary-800:hover{--tw-text-opacity:1;color:rgb(6 95 70/var(--tw-text-opacity))}.hover\:text-red-500:hover{--tw-text-opacity:1;color:rgb(239 68 68/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-base:hover{--tw-text-opacity:1;color:rgba(var(--color-text-base),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-inverted-muted:hover{--tw-text-opacity:1;color:rgba(var(--color-text-inverted-muted),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-skin-muted:hover{--tw-text-opacity:1;color:rgba(var(--color-text-muted),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-primary-hover:hover{--tw-text-opacity:1;color:rgba(var(--color-text-primary-hover),var(--tw-text-opacity))}.hover\:text-success-500:hover{--tw-text-opacity:1;color:rgb(34 197 94/var(--tw-text-opacity))}.hover\:text-warning-500:hover{--tw-text-opacity:1;color:rgb(234 179 8/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\: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-blue-300:focus{--tw-border-opacity:1;border-color:rgb(147 197 253/var(--tw-border-opacity))}.focus\:border-flag-green:focus{--tw-border-opacity:1;border-color:rgb(9 145 112/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-green-500:focus{--tw-border-opacity:1;border-color:rgb(16 185 129/var(--tw-border-opacity))}.focus\:border-primary-600:focus{--tw-border-opacity:1;border-color:rgb(5 150 105/var(--tw-border-opacity))}.focus\:border-red-500:focus{--tw-border-opacity:1;border-color:rgb(239 68 68/var(--tw-border-opacity))}.focus\:border-skin-base:focus{--tw-border-opacity:1;border-color:rgba(var(--color-border),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-transparent:focus{border-color:transparent}.focus\:bg-danger-500:focus{--tw-bg-opacity:1;background-color:rgb(244 63 94/var(--tw-bg-opacity))}.focus\:bg-danger-500\/10:focus{background-color:rgba(244,63,94,.1)}.focus\:bg-danger-700:focus{--tw-bg-opacity:1;background-color:rgb(190 18 60/var(--tw-bg-opacity))}.focus\:bg-danger-700\/20:focus{background-color:rgba(190,18,60,.2)}.focus\:bg-gray-500\/10:focus{background-color:hsla(220,9%,46%,.1)}.focus\:bg-gray-700:focus{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.focus\:bg-gray-700\/20:focus{background-color:rgba(55,65,81,.2)}.focus\:bg-primary-50:focus{--tw-bg-opacity:1;background-color:rgb(236 253 245/var(--tw-bg-opacity))}.focus\:bg-primary-500:focus{--tw-bg-opacity:1;background-color:rgb(16 185 129/var(--tw-bg-opacity))}.focus\:bg-primary-500\/10:focus{background-color:rgba(16,185,129,.1)}.focus\:bg-primary-700:focus{--tw-bg-opacity:1;background-color:rgb(4 120 87/var(--tw-bg-opacity))}.focus\:bg-primary-700\/20:focus{background-color:rgba(4,120,87,.2)}.focus\:bg-success-500:focus{--tw-bg-opacity:1;background-color:rgb(34 197 94/var(--tw-bg-opacity))}.focus\:bg-success-500\/10:focus{background-color:rgba(34,197,94,.1)}.focus\:bg-success-700:focus{--tw-bg-opacity:1;background-color:rgb(21 128 61/var(--tw-bg-opacity))}.focus\:bg-success-700\/20:focus{background-color:rgba(21,128,61,.2)}.focus\:bg-warning-500:focus{--tw-bg-opacity:1;background-color:rgb(234 179 8/var(--tw-bg-opacity))}.focus\:bg-warning-500\/10:focus{background-color:rgba(234,179,8,.1)}.focus\:bg-warning-700:focus{--tw-bg-opacity:1;background-color:rgb(161 98 7/var(--tw-bg-opacity))}.focus\:bg-warning-700\/20:focus{background-color:rgba(161,98,7,.2)}.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-green-600:focus,.focus\:text-primary-600:focus{--tw-text-opacity:1;color:rgb(5 150 105/var(--tw-text-opacity))}.focus\:text-skin-base:focus{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity))}.focus\:text-white:focus{--tw-text-opacity:1;color:rgb(255 255 255/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(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 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.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-0:focus,.focus\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.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-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-1:focus,.focus\:ring-2:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.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-inset:focus{--tw-ring-inset:inset}.focus\:ring-blue-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(37 99 235/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-green-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(16 185 129/var(--tw-ring-opacity))}.focus\:ring-primary-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(5 150 105/var(--tw-ring-opacity))}.focus\:ring-red-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(239 68 68/var(--tw-ring-opacity))}.focus\:ring-white:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(255 255 255/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-blue-50:focus{--tw-ring-offset-color:#eff6ff}.focus\:ring-offset-body:focus{--tw-ring-offset-color:rgb(var(--color-body-fill))}.focus\:ring-offset-danger-700:focus{--tw-ring-offset-color:#be123c}.focus\:ring-offset-gray-700:focus{--tw-ring-offset-color:#374151}.focus\:ring-offset-primary-700:focus{--tw-ring-offset-color:#047857}.focus\:ring-offset-success-700:focus{--tw-ring-offset-color:#15803d}.focus\:ring-offset-warning-700:focus{--tw-ring-offset-color:#a16207}.active\:bg-gray-100:active{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.active\:bg-skin-footer:active{--tw-bg-opacity:1;background-color:rgba(var(--color-footer-fill),var(--tw-bg-opacity))}.active\:text-gray-700:active{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.active\:text-skin-base:active{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity))}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-70:disabled{opacity:.7}.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-danger-100{--tw-text-opacity:1;color:rgb(255 228 230/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\:text-green-400{--tw-text-opacity:1;color:rgb(52 211 153/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-primary-100{--tw-text-opacity:1;color:rgb(209 250 229/var(--tw-text-opacity))}.group:hover .group-hover\:text-primary-500{--tw-text-opacity:1;color:rgb(16 185 129/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-skin-primary{--tw-text-opacity:1;color:rgba(var(--color-text-primary),var(--tw-text-opacity))}.group:hover .group-hover\:text-success-100{--tw-text-opacity:1;color:rgb(220 252 231/var(--tw-text-opacity))}.group:hover .group-hover\:text-warning-100{--tw-text-opacity:1;color:rgb(254 249 195/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\:underline{text-decoration-line:underline}.group:hover .group-hover\:opacity-75{opacity:.75}.group:focus .group-focus\:text-danger-100{--tw-text-opacity:1;color:rgb(255 228 230/var(--tw-text-opacity))}.group:focus .group-focus\:text-primary-100{--tw-text-opacity:1;color:rgb(209 250 229/var(--tw-text-opacity))}.group:focus .group-focus\:text-success-100{--tw-text-opacity:1;color:rgb(220 252 231/var(--tw-text-opacity))}.group:focus .group-focus\:text-warning-100{--tw-text-opacity:1;color:rgb(254 249 195/var(--tw-text-opacity))}.group:focus .group-focus\:text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is([dir=rtl] .rtl\:left-2){left:.5rem}:is([dir=rtl] .rtl\:right-auto){right:auto}:is([dir=rtl] .rtl\:-ml-1){margin-left:-.25rem}:is([dir=rtl] .rtl\:-ml-1\.5){margin-left:-.375rem}:is([dir=rtl] .rtl\:-ml-2){margin-left:-.5rem}:is([dir=rtl] .rtl\:-ml-3){margin-left:-.75rem}:is([dir=rtl] .rtl\:-mr-1){margin-right:-.25rem}:is([dir=rtl] .rtl\:-mr-1\.5){margin-right:-.375rem}:is([dir=rtl] .rtl\:-mr-2){margin-right:-.5rem}:is([dir=rtl] .rtl\:-mr-3){margin-right:-.75rem}:is([dir=rtl] .rtl\:ml-0){margin-left:0}:is([dir=rtl] .rtl\:ml-1){margin-left:.25rem}:is([dir=rtl] .rtl\:ml-2){margin-left:.5rem}:is([dir=rtl] .rtl\:mr-0){margin-right:0}:is([dir=rtl] .rtl\:mr-1){margin-right:.25rem}:is([dir=rtl] .rtl\:mr-2){margin-right:.5rem}:is([dir=rtl] .rtl\:mr-auto){margin-right:auto}:is([dir=rtl] .rtl\:-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))}:is([dir=rtl] .rtl\:space-x-reverse)>:not([hidden])~:not([hidden]){--tw-space-x-reverse:1}:is(.dark .dark\:divide-gray-700)>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(55 65 81/var(--tw-divide-opacity))}:is(.dark .dark\:border-danger-500){--tw-border-opacity:1;border-color:rgb(244 63 94/var(--tw-border-opacity))}:is(.dark .dark\:border-gray-400){--tw-border-opacity:1;border-color:rgb(156 163 175/var(--tw-border-opacity))}:is(.dark .dark\:border-gray-600){--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}:is(.dark .dark\:border-gray-700){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}:is(.dark .dark\:border-gray-800){--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}:is(.dark .dark\:border-primary-500){--tw-border-opacity:1;border-color:rgb(16 185 129/var(--tw-border-opacity))}:is(.dark .dark\:border-success-500){--tw-border-opacity:1;border-color:rgb(34 197 94/var(--tw-border-opacity))}:is(.dark .dark\:border-warning-500){--tw-border-opacity:1;border-color:rgb(234 179 8/var(--tw-border-opacity))}:is(.dark .dark\:bg-gray-700){--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}:is(.dark .dark\:bg-gray-800){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}:is(.dark .dark\:text-danger-500){--tw-text-opacity:1;color:rgb(244 63 94/var(--tw-text-opacity))}:is(.dark .dark\:text-gray-100){--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}:is(.dark .dark\:text-gray-200){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}:is(.dark .dark\:text-gray-300){--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}:is(.dark .dark\:text-gray-400){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}:is(.dark .dark\:text-primary-500){--tw-text-opacity:1;color:rgb(16 185 129/var(--tw-text-opacity))}:is(.dark .dark\:text-success-500){--tw-text-opacity:1;color:rgb(34 197 94/var(--tw-text-opacity))}:is(.dark .dark\:text-warning-500){--tw-text-opacity:1;color:rgb(234 179 8/var(--tw-text-opacity))}:is(.dark .dark\:text-white){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(.dark .dark\:ring-white\/10){--tw-ring-color:hsla(0,0%,100%,.1)}:is(.dark .dark\:hover\:border-gray-500:hover){--tw-border-opacity:1;border-color:rgb(107 114 128/var(--tw-border-opacity))}:is(.dark .dark\:hover\:bg-danger-500\/20:hover){background-color:rgba(244,63,94,.2)}:is(.dark .dark\:hover\:bg-gray-300\/5:hover){background-color:rgba(209,213,219,.05)}:is(.dark .dark\:hover\:bg-gray-400\/20:hover){background-color:rgba(156,163,175,.2)}:is(.dark .dark\:hover\:bg-gray-500\/20:hover){background-color:hsla(220,9%,46%,.2)}:is(.dark .dark\:hover\:bg-gray-700:hover){--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}:is(.dark .dark\:hover\:bg-primary-500\/20:hover){background-color:rgba(16,185,129,.2)}:is(.dark .dark\:hover\:bg-success-500\/20:hover){background-color:rgba(34,197,94,.2)}:is(.dark .dark\:hover\:bg-warning-500\/20:hover){background-color:rgba(234,179,8,.2)}:is(.dark .dark\:hover\:text-danger-400:hover){--tw-text-opacity:1;color:rgb(251 113 133/var(--tw-text-opacity))}:is(.dark .dark\:hover\:text-gray-200:hover){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}:is(.dark .dark\:hover\:text-primary-400:hover){--tw-text-opacity:1;color:rgb(52 211 153/var(--tw-text-opacity))}:is(.dark .dark\:hover\:text-success-400:hover){--tw-text-opacity:1;color:rgb(74 222 128/var(--tw-text-opacity))}:is(.dark .dark\:hover\:text-warning-400:hover){--tw-text-opacity:1;color:rgb(250 204 21/var(--tw-text-opacity))}:is(.dark .dark\:focus\:border-primary-400:focus){--tw-border-opacity:1;border-color:rgb(52 211 153/var(--tw-border-opacity))}:is(.dark .dark\:focus\:bg-danger-600\/20:focus){background-color:rgba(225,29,72,.2)}:is(.dark .dark\:focus\:bg-gray-600\/20:focus){background-color:rgba(75,85,99,.2)}:is(.dark .dark\:focus\:bg-gray-800:focus){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}:is(.dark .dark\:focus\:bg-gray-800\/20:focus){background-color:rgba(31,41,55,.2)}:is(.dark .dark\:focus\:bg-primary-600\/20:focus){background-color:rgba(5,150,105,.2)}:is(.dark .dark\:focus\:bg-success-600\/20:focus){background-color:rgba(22,163,74,.2)}:is(.dark .dark\:focus\:bg-warning-600\/20:focus){background-color:rgba(202,138,4,.2)}:is(.dark .dark\:focus\:text-primary-400:focus){--tw-text-opacity:1;color:rgb(52 211 153/var(--tw-text-opacity))}:is(.dark .dark\:focus\:ring-offset-0:focus){--tw-ring-offset-width:0px}:is(.dark .dark\:focus\:ring-offset-danger-600:focus){--tw-ring-offset-color:#e11d48}:is(.dark .dark\:focus\:ring-offset-gray-600:focus){--tw-ring-offset-color:#4b5563}:is(.dark .dark\:focus\:ring-offset-primary-600:focus){--tw-ring-offset-color:#059669}:is(.dark .dark\:focus\:ring-offset-success-600:focus){--tw-ring-offset-color:#16a34a}:is(.dark .dark\:focus\:ring-offset-warning-600:focus){--tw-ring-offset-color:#ca8a04}@media (min-width:640px){.sm\:top-16{top:4rem}.sm\:col-span-1{grid-column:span 1/span 1}.sm\:col-span-10{grid-column:span 10/span 10}.sm\:col-span-11{grid-column:span 11/span 11}.sm\:col-span-12{grid-column:span 12/span 12}.sm\:col-span-2{grid-column:span 2/span 2}.sm\:col-span-3{grid-column:span 3/span 3}.sm\:col-span-4{grid-column:span 4/span 4}.sm\:col-span-5{grid-column:span 5/span 5}.sm\:col-span-6{grid-column:span 6/span 6}.sm\:col-span-7{grid-column:span 7/span 7}.sm\:col-span-8{grid-column:span 8/span 8}.sm\:col-span-9{grid-column:span 9/span 9}.sm\:col-span-full{grid-column:1/-1}.sm\:-mx-4{margin-left:-1rem;margin-right:-1rem}.sm\:-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.sm\:mx-0{margin-left:0;margin-right:0}.sm\:mx-auto{margin-left:auto;margin-right:auto}.sm\:my-8{margin-bottom:2rem;margin-top:2rem}.sm\:-mt-16{margin-top:-4rem}.sm\:mb-0{margin-bottom:0}.sm\:ml-0{margin-left:0}.sm\:ml-16{margin-left:4rem}.sm\:ml-2{margin-left:.5rem}.sm\:ml-3{margin-left:.75rem}.sm\:ml-4{margin-left:1rem}.sm\:ml-6{margin-left:1.5rem}.sm\:mt-0{margin-top:0}.sm\:mt-12{margin-top:3rem}.sm\:mt-14{margin-top:3.5rem}.sm\:mt-5{margin-top:1.25rem}.sm\:mt-8{margin-top:2rem}.sm\:mt-px{margin-top:1px}.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-10{height:2.5rem}.sm\:h-12{height:3rem}.sm\:h-14{height:3.5rem}.sm\:h-16{height:4rem}.sm\:h-20{height:5rem}.sm\:h-32{height:8rem}.sm\:h-9{height:2.25rem}.sm\:h-screen{height:100vh}.sm\:w-10{width:2.5rem}.sm\:w-12{width:3rem}.sm\:w-32{width:8rem}.sm\:w-auto{width:auto}.sm\:w-full{width:100%}.sm\:min-w-0{min-width:0}.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-xl{max-width:36rem}.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%}.sm\:-translate-x-1\/2,.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\:translate-x-0{--tw-translate-x:0px}.sm\:translate-x-2{--tw-translate-x:0.5rem}.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-y-0{--tw-translate-y:0px}.sm\:scale-100{--tw-scale-x:1;--tw-scale-y:1}.sm\:scale-100,.sm\: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))}.sm\:scale-95{--tw-scale-x:.95;--tw-scale-y:.95}.sm\:columns-1{-moz-columns:1;column-count:1}.sm\:columns-10{-moz-columns:10;column-count:10}.sm\:columns-11{-moz-columns:11;column-count:11}.sm\:columns-12{-moz-columns:12;column-count:12}.sm\:columns-2{-moz-columns:2;column-count:2}.sm\:columns-3{-moz-columns:3;column-count:3}.sm\:columns-4{-moz-columns:4;column-count:4}.sm\:columns-5{-moz-columns:5;column-count:5}.sm\:columns-6{-moz-columns:6;column-count:6}.sm\:columns-7{-moz-columns:7;column-count:7}.sm\:columns-8{-moz-columns:8;column-count:8}.sm\:columns-9{-moz-columns:9;column-count:9}.sm\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.sm\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.sm\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.sm\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.sm\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.sm\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.sm\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.sm\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.sm\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.sm\:grid-cols-9{grid-template-columns:repeat(9,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-10{gap:2.5rem}.sm\:gap-12{gap:3rem}.sm\:gap-4{gap:1rem}.sm\:gap-6{gap:1.5rem}.sm\:gap-8{gap:2rem}.sm\:gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.sm\:gap-y-12{row-gap:3rem}.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-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-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-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-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\: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-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\: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-0{padding:0}.sm\:p-10{padding:2.5rem}.sm\:p-4{padding:1rem}.sm\:p-5{padding:1.25rem}.sm\:p-6{padding:1.5rem}.sm\:p-8{padding:2rem}.sm\:px-0{padding-left:0;padding-right:0}.sm\:px-4{padding-left:1rem;padding-right:1rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:py-10{padding-bottom:2.5rem;padding-top:2.5rem}.sm\:py-24{padding-bottom:6rem;padding-top:6rem}.sm\:py-6{padding-bottom:1.5rem;padding-top:1.5rem}.sm\:py-9{padding-bottom:2.25rem;padding-top:2.25rem}.sm\:pb-1{padding-bottom:.25rem}.sm\:pb-16{padding-bottom:4rem}.sm\:pb-64{padding-bottom:16rem}.sm\:pl-14{padding-left:3.5rem}.sm\:pl-6{padding-left:1.5rem}.sm\:pr-6{padding-right:1.5rem}.sm\:pt-0{padding-top:0}.sm\:pt-10{padding-top:2.5rem}.sm\:pt-14{padding-top:3.5rem}.sm\:pt-16{padding-top:4rem}.sm\:pt-2{padding-top:.5rem}.sm\:pt-24{padding-top:6rem}.sm\:pt-5{padding-top:1.25rem}.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-2xl{font-size:1.5rem;line-height:2rem}.sm\:text-3xl{font-size:1.875rem;line-height:2.25rem}.sm\:text-4xl{font-size:2.25rem;line-height:2.5rem}.sm\:text-5xl{font-size:3rem;line-height:1}.sm\:text-base{font-size:1rem;line-height:1.5rem}.sm\:text-lg{font-size:1.125rem;line-height:1.75rem}.sm\:text-sm{font-size:.875rem;line-height:1.25rem}.sm\:text-xl{font-size:1.25rem;line-height:1.75rem}.sm\:leading-10{line-height:2.5rem}.sm\:leading-5{line-height:1.25rem}.sm\:leading-8{line-height:2rem}.sm\:leading-none{line-height:1}.sm\:duration-700{transition-duration:.7s}}@media (min-width:768px){.md\:col-span-1{grid-column:span 1/span 1}.md\:col-span-10{grid-column:span 10/span 10}.md\:col-span-11{grid-column:span 11/span 11}.md\:col-span-12{grid-column:span 12/span 12}.md\:col-span-2{grid-column:span 2/span 2}.md\:col-span-3{grid-column:span 3/span 3}.md\:col-span-4{grid-column:span 4/span 4}.md\:col-span-5{grid-column:span 5/span 5}.md\:col-span-6{grid-column:span 6/span 6}.md\:col-span-7{grid-column:span 7/span 7}.md\:col-span-8{grid-column:span 8/span 8}.md\:col-span-9{grid-column:span 9/span 9}.md\:col-span-full{grid-column:1/-1}.md\:mx-auto{margin-left:auto;margin-right:auto}.md\:ml-4{margin-left:1rem}.md\:ml-6{margin-left:1.5rem}.md\:mt-0{margin-top:0}.md\:block{display:block}.md\:flex{display:flex}.md\:hidden{display:none}.md\:h-10{height:2.5rem}.md\:h-5{height:1.25rem}.md\:w-10{width:2.5rem}.md\:w-5{width:1.25rem}.md\:w-auto{width:auto}.md\:max-w-2xl{max-width:42rem}.md\:max-w-xl{max-width:36rem}.md\:columns-1{-moz-columns:1;column-count:1}.md\:columns-10{-moz-columns:10;column-count:10}.md\:columns-11{-moz-columns:11;column-count:11}.md\:columns-12{-moz-columns:12;column-count:12}.md\:columns-2{-moz-columns:2;column-count:2}.md\:columns-3{-moz-columns:3;column-count:3}.md\:columns-4{-moz-columns:4;column-count:4}.md\:columns-5{-moz-columns:5;column-count:5}.md\:columns-6{-moz-columns:6;column-count:6}.md\:columns-7{-moz-columns:7;column-count:7}.md\:columns-8{-moz-columns:8;column-count:8}.md\:columns-9{-moz-columns:9;column-count:9}.md\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.md\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.md\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.md\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.md\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.md\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.md\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.md\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.md\:grid-cols-9{grid-template-columns:repeat(9,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-l{border-left-width:1px}.md\:border-t-0{border-top-width:0}.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\:-top-16{top:-4rem}.lg\:left-1\/2{left:50%}.lg\:col-span-1{grid-column:span 1/span 1}.lg\:col-span-10{grid-column:span 10/span 10}.lg\:col-span-11{grid-column:span 11/span 11}.lg\:col-span-12{grid-column:span 12/span 12}.lg\:col-span-2{grid-column:span 2/span 2}.lg\:col-span-3{grid-column:span 3/span 3}.lg\:col-span-4{grid-column:span 4/span 4}.lg\:col-span-5{grid-column:span 5/span 5}.lg\:col-span-6{grid-column:span 6/span 6}.lg\:col-span-7{grid-column:span 7/span 7}.lg\:col-span-8{grid-column:span 8/span 8}.lg\:col-span-9{grid-column:span 9/span 9}.lg\:col-span-full{grid-column:1/-1}.lg\:col-start-10{grid-column-start:10}.lg\:row-span-3{grid-row:span 3/span 3}.lg\:-mx-8{margin-left:-2rem;margin-right:-2rem}.lg\:mx-0{margin-left:0;margin-right:0}.lg\:mx-auto{margin-left:auto;margin-right:auto}.lg\:-mt-16{margin-top:-4rem}.lg\:mb-32{margin-bottom:8rem}.lg\:ml-0{margin-left:0}.lg\:ml-10{margin-left:2.5rem}.lg\:ml-12{margin-left:3rem}.lg\:ml-6{margin-left:1.5rem}.lg\:mt-0{margin-top:0}.lg\:mt-10{margin-top:2.5rem}.lg\:mt-12{margin-top:3rem}.lg\:mt-20{margin-top:5rem}.lg\:mt-5{margin-top:1.25rem}.lg\:mt-8{margin-top:2rem}.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-7xl{max-width:80rem}.lg\:max-w-none{max-width:none}.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\:columns-1{-moz-columns:1;column-count:1}.lg\:columns-10{-moz-columns:10;column-count:10}.lg\:columns-11{-moz-columns:11;column-count:11}.lg\:columns-12{-moz-columns:12;column-count:12}.lg\:columns-2{-moz-columns:2;column-count:2}.lg\:columns-3{-moz-columns:3;column-count:3}.lg\:columns-4{-moz-columns:4;column-count:4}.lg\:columns-5{-moz-columns:5;column-count:5}.lg\:columns-6{-moz-columns:6;column-count:6}.lg\:columns-7{-moz-columns:7;column-count:7}.lg\:columns-8{-moz-columns:8;column-count:8}.lg\:columns-9{-moz-columns:9;column-count:9}.lg\:grid-flow-col{grid-auto-flow:column}.lg\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.lg\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.lg\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.lg\:grid-cols-12{grid-template-columns:repeat(12,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-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.lg\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.lg\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.lg\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.lg\:grid-cols-9{grid-template-columns:repeat(9,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-10{gap:2.5rem}.lg\:gap-12{gap:3rem}.lg\:gap-16{gap:4rem}.lg\:gap-24{gap:6rem}.lg\:gap-6{gap:1.5rem}.lg\:gap-8{gap:2rem}.lg\:gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.lg\:gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.lg\:gap-x-5{-moz-column-gap:1.25rem;column-gap:1.25rem}.lg\:gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.lg\:gap-y-12{row-gap:3rem}.lg\:gap-y-6{row-gap:1.5rem}.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\: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\: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\:px-0{padding-left:0;padding-right:0}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:py-12{padding-bottom:3rem;padding-top:3rem}.lg\:py-16{padding-bottom:4rem;padding-top:4rem}.lg\:py-20{padding-bottom:5rem;padding-top:5rem}.lg\:py-8{padding-bottom:2rem;padding-top:2rem}.lg\:pb-12{padding-bottom:3rem}.lg\:pb-16{padding-bottom:4rem}.lg\:pb-20{padding-bottom:5rem}.lg\:pl-8{padding-left:2rem}.lg\:pt-20{padding-top:5rem}.lg\:text-left{text-align:left}.lg\:text-center{text-align:center}.lg\:text-4xl{font-size:2.25rem;line-height:2.5rem}.lg\:text-5xl{font-size:3rem;line-height:1}.lg\:text-base{font-size:1rem;line-height:1.5rem}.lg\:text-lg{font-size:1.125rem;line-height:1.75rem}.lg\:text-sm{font-size:.875rem;line-height:1.25rem}.lg\:text-xl{font-size:1.25rem;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{inset:0}.xl\:inset-y-0{bottom:0;top:0}.xl\:-top-14{top:-3.5rem}.xl\:left-0{left:0}.xl\:col-span-1{grid-column:span 1/span 1}.xl\:col-span-10{grid-column:span 10/span 10}.xl\:col-span-11{grid-column:span 11/span 11}.xl\:col-span-12{grid-column:span 12/span 12}.xl\:col-span-2{grid-column:span 2/span 2}.xl\:col-span-3{grid-column:span 3/span 3}.xl\:col-span-4{grid-column:span 4/span 4}.xl\:col-span-5{grid-column:span 5/span 5}.xl\:col-span-6{grid-column:span 6/span 6}.xl\:col-span-7{grid-column:span 7/span 7}.xl\:col-span-8{grid-column:span 8/span 8}.xl\:col-span-9{grid-column:span 9/span 9}.xl\:col-span-full{grid-column:1/-1}.xl\:col-start-1{grid-column-start:1}.xl\:col-start-2{grid-column-start:2}.xl\:mb-6{margin-bottom:1.5rem}.xl\:ml-0{margin-left:0}.xl\:mt-16{margin-top:4rem}.xl\:grid{display:grid}.xl\:h-full{height:100%}.xl\:w-32{width:8rem}.xl\:columns-1{-moz-columns:1;column-count:1}.xl\:columns-10{-moz-columns:10;column-count:10}.xl\:columns-11{-moz-columns:11;column-count:11}.xl\:columns-12{-moz-columns:12;column-count:12}.xl\:columns-2{-moz-columns:2;column-count:2}.xl\:columns-3{-moz-columns:3;column-count:3}.xl\:columns-4{-moz-columns:4;column-count:4}.xl\:columns-5{-moz-columns:5;column-count:5}.xl\:columns-6{-moz-columns:6;column-count:6}.xl\:columns-7{-moz-columns:7;column-count:7}.xl\:columns-8{-moz-columns:8;column-count:8}.xl\:columns-9{-moz-columns:9;column-count:9}.xl\:grid-flow-col-dense{grid-auto-flow:column dense}.xl\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.xl\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.xl\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.xl\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.xl\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.xl\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.xl\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.xl\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.xl\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}.xl\:flex-col{flex-direction:column}.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-3xl{font-size:1.875rem;line-height:2.25rem}.xl\:text-4xl{font-size:2.25rem;line-height:2.5rem}.xl\:text-base{font-size:1rem;line-height:1.5rem}.xl\:text-xl{font-size:1.25rem;line-height:1.75rem}}@media (min-width:1536px){.\32xl\:col-span-1{grid-column:span 1/span 1}.\32xl\:col-span-10{grid-column:span 10/span 10}.\32xl\:col-span-11{grid-column:span 11/span 11}.\32xl\:col-span-12{grid-column:span 12/span 12}.\32xl\:col-span-2{grid-column:span 2/span 2}.\32xl\:col-span-3{grid-column:span 3/span 3}.\32xl\:col-span-4{grid-column:span 4/span 4}.\32xl\:col-span-5{grid-column:span 5/span 5}.\32xl\:col-span-6{grid-column:span 6/span 6}.\32xl\:col-span-7{grid-column:span 7/span 7}.\32xl\:col-span-8{grid-column:span 8/span 8}.\32xl\:col-span-9{grid-column:span 9/span 9}.\32xl\:col-span-full{grid-column:1/-1}.\32xl\:columns-1{-moz-columns:1;column-count:1}.\32xl\:columns-10{-moz-columns:10;column-count:10}.\32xl\:columns-11{-moz-columns:11;column-count:11}.\32xl\:columns-12{-moz-columns:12;column-count:12}.\32xl\:columns-2{-moz-columns:2;column-count:2}.\32xl\:columns-3{-moz-columns:3;column-count:3}.\32xl\:columns-4{-moz-columns:4;column-count:4}.\32xl\:columns-5{-moz-columns:5;column-count:5}.\32xl\:columns-6{-moz-columns:6;column-count:6}.\32xl\:columns-7{-moz-columns:7;column-count:7}.\32xl\:columns-8{-moz-columns:8;column-count:8}.\32xl\:columns-9{-moz-columns:9;column-count:9}.\32xl\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.\32xl\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.\32xl\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.\32xl\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.\32xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.\32xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.\32xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.\32xl\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.\32xl\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.\32xl\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.\32xl\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.\32xl\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}} diff --git a/public/mix-manifest.json b/public/mix-manifest.json index 074a5510..b21c70eb 100755 --- a/public/mix-manifest.json +++ b/public/mix-manifest.json @@ -1,4 +1,4 @@ { "/js/app.js": "/js/app.js?id=0953d0b23f555fd811dda52086298222", - "/css/app.css": "/css/app.css?id=8d5c4c1a62a59a2ffc28ea3c57562b38" + "/css/app.css": "/css/app.css?id=9209b1a63d8215ae6346440a2aa9477f" } diff --git a/resources/css/forms.css b/resources/css/forms.css index c6c9f91a..2040d490 100644 --- a/resources/css/forms.css +++ b/resources/css/forms.css @@ -6,6 +6,18 @@ padding: 0 10px; } + +input[type=number] { + -moz-appearance: textfield; /* Firefox */ +} + +input::-webkit-outer-spin-button, +input::-webkit-inner-spin-button { + /* display: none; <- Crashes Chrome on hover */ + -webkit-appearance: none; + margin: 0; /* <-- Apparently some margin are still there even though it's hidden */ +} + /** Choices.js **/ .choices { margin-top: 8px; diff --git a/resources/views/livewire/sponsor-subscription.blade.php b/resources/views/livewire/sponsor-subscription.blade.php index e9919fdd..672630b9 100644 --- a/resources/views/livewire/sponsor-subscription.blade.php +++ b/resources/views/livewire/sponsor-subscription.blade.php @@ -13,7 +13,7 @@ ]) wire:click="chooseOption('monthly')" > - {{ __('Mensuel') }} + {{ __('Mensuel') }} - {{ __('Une fois') }} + {{ __('Une fois') }} @@ -39,12 +39,32 @@ @else
- +
+ +
+ + +
+
{{ __('Choisir') }}
+ @error('amount') +

{{ __('Votre montant est requis') }}

+ @enderror
{{ __("Choisissez un montant personnalisé. Aucune récompense n'est associée à ce parrainage.") }}
From 3208ff1461866bac4229b00543d290b1b505ca11 Mon Sep 17 00:00:00 2001 From: mckenziearts Date: Mon, 8 May 2023 12:14:13 +0000 Subject: [PATCH 2/2] Fix code styling --- app/Events/SponsoringPaymentInitialize.php | 2 + app/Listeners/SendPaymentNotification.php | 2 + .../NewSponsorPaymentNotification.php | 5 +- helpers/ModelHelper.php | 1596 +++++++++-------- 4 files changed, 824 insertions(+), 781 deletions(-) diff --git a/app/Events/SponsoringPaymentInitialize.php b/app/Events/SponsoringPaymentInitialize.php index 211b030d..de99fede 100644 --- a/app/Events/SponsoringPaymentInitialize.php +++ b/app/Events/SponsoringPaymentInitialize.php @@ -1,5 +1,7 @@ */ - namespace App\Models{ -/** - * App\Models\Activity - * - * @property int $id - * @property string $subject_type - * @property int $subject_id - * @property string $type - * @property array|null $data - * @property int $user_id - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $subject - * @property-read \App\Models\User $user - * @method static \Database\Factories\ActivityFactory factory($count = null, $state = []) - * @method static \Illuminate\Database\Eloquent\Builder|Activity newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Activity newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Activity query() - * @method static \Illuminate\Database\Eloquent\Builder|Activity whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Activity whereData($value) - * @method static \Illuminate\Database\Eloquent\Builder|Activity whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Activity whereSubjectId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Activity whereSubjectType($value) - * @method static \Illuminate\Database\Eloquent\Builder|Activity whereType($value) - * @method static \Illuminate\Database\Eloquent\Builder|Activity whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Activity whereUserId($value) - * @mixin \Eloquent - */ - class IdeHelperActivity {} + /** + * App\Models\Activity + * + * @property int $id + * @property string $subject_type + * @property int $subject_id + * @property string $type + * @property array|null $data + * @property int $user_id + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $subject + * @property-read \App\Models\User $user + * @method static \Database\Factories\ActivityFactory factory($count = null, $state = []) + * @method static \Illuminate\Database\Eloquent\Builder|Activity newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Activity newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Activity query() + * @method static \Illuminate\Database\Eloquent\Builder|Activity whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Activity whereData($value) + * @method static \Illuminate\Database\Eloquent\Builder|Activity whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Activity whereSubjectId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Activity whereSubjectType($value) + * @method static \Illuminate\Database\Eloquent\Builder|Activity whereType($value) + * @method static \Illuminate\Database\Eloquent\Builder|Activity whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Activity whereUserId($value) + * @mixin \Eloquent + */ + class IdeHelperActivity + { + } } namespace App\Models{ -/** - * App\Models\Article - * - * @property int $id - * @property string $title - * @property string $body - * @property string $slug - * @property string|null $canonical_url - * @property bool $show_toc - * @property bool $is_pinned - * @property int $is_sponsored - * @property int|null $tweet_id - * @property int $user_id - * @property \Illuminate\Support\Carbon|null $published_at - * @property \Illuminate\Support\Carbon|null $submitted_at - * @property \Illuminate\Support\Carbon|null $approved_at - * @property \Illuminate\Support\Carbon|null $shared_at - * @property \Illuminate\Support\Carbon|null $declined_at - * @property \Illuminate\Support\Carbon|null $sponsored_at - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read \Illuminate\Database\Eloquent\Collection $activity - * @property-read int|null $activity_count - * @property-read \Spatie\MediaLibrary\MediaCollections\Models\Collections\MediaCollection $media - * @property-read int|null $media_count - * @property-read \Illuminate\Database\Eloquent\Collection $reactions - * @property-read int|null $reactions_count - * @property-read \Illuminate\Database\Eloquent\Collection $tags - * @property-read int|null $tags_count - * @property-read \App\Models\User $user - * @property-read \Illuminate\Database\Eloquent\Collection $views - * @property-read int|null $views_count - * @method static \Illuminate\Database\Eloquent\Builder|Article approved() - * @method static \Illuminate\Database\Eloquent\Builder|Article awaitingApproval() - * @method static \Illuminate\Database\Eloquent\Builder|Article declined() - * @method static \Database\Factories\ArticleFactory factory($count = null, $state = []) - * @method static \Illuminate\Database\Eloquent\Builder|Article forTag(string $tag) - * @method static \Illuminate\Database\Eloquent\Builder|Article newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Article newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Article notApproved() - * @method static \Illuminate\Database\Eloquent\Builder|Article notDeclined() - * @method static \Illuminate\Database\Eloquent\Builder|Article notPinned() - * @method static \Illuminate\Database\Eloquent\Builder|Article notPublished() - * @method static \Illuminate\Database\Eloquent\Builder|Article notShared() - * @method static \Illuminate\Database\Eloquent\Builder|Article orderByUniqueViews(string $direction = 'desc', $period = null, ?string $collection = null, string $as = 'unique_views_count') - * @method static \Illuminate\Database\Eloquent\Builder|Article orderByViews(string $direction = 'desc', ?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') - * @method static \Illuminate\Database\Eloquent\Builder|Article pinned() - * @method static \Illuminate\Database\Eloquent\Builder|Article popular() - * @method static \Illuminate\Database\Eloquent\Builder|Article published() - * @method static \Illuminate\Database\Eloquent\Builder|Article query() - * @method static \Illuminate\Database\Eloquent\Builder|Article recent() - * @method static \Illuminate\Database\Eloquent\Builder|Article shared() - * @method static \Illuminate\Database\Eloquent\Builder|Article sponsored() - * @method static \Illuminate\Database\Eloquent\Builder|Article submitted() - * @method static \Illuminate\Database\Eloquent\Builder|Article trending() - * @method static \Illuminate\Database\Eloquent\Builder|Article whereApprovedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereBody($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereCanonicalUrl($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereDeclinedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereIsPinned($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereIsSponsored($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article wherePublishedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereSharedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereShowToc($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereSlug($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereSponsoredAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereSubmittedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereTitle($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereTweetId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article whereUserId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Article withViewsCount(?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') - * @mixin \Eloquent - */ - class IdeHelperArticle {} + /** + * App\Models\Article + * + * @property int $id + * @property string $title + * @property string $body + * @property string $slug + * @property string|null $canonical_url + * @property bool $show_toc + * @property bool $is_pinned + * @property int $is_sponsored + * @property int|null $tweet_id + * @property int $user_id + * @property \Illuminate\Support\Carbon|null $published_at + * @property \Illuminate\Support\Carbon|null $submitted_at + * @property \Illuminate\Support\Carbon|null $approved_at + * @property \Illuminate\Support\Carbon|null $shared_at + * @property \Illuminate\Support\Carbon|null $declined_at + * @property \Illuminate\Support\Carbon|null $sponsored_at + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \Illuminate\Database\Eloquent\Collection $activity + * @property-read int|null $activity_count + * @property-read \Spatie\MediaLibrary\MediaCollections\Models\Collections\MediaCollection $media + * @property-read int|null $media_count + * @property-read \Illuminate\Database\Eloquent\Collection $reactions + * @property-read int|null $reactions_count + * @property-read \Illuminate\Database\Eloquent\Collection $tags + * @property-read int|null $tags_count + * @property-read \App\Models\User $user + * @property-read \Illuminate\Database\Eloquent\Collection $views + * @property-read int|null $views_count + * @method static \Illuminate\Database\Eloquent\Builder|Article approved() + * @method static \Illuminate\Database\Eloquent\Builder|Article awaitingApproval() + * @method static \Illuminate\Database\Eloquent\Builder|Article declined() + * @method static \Database\Factories\ArticleFactory factory($count = null, $state = []) + * @method static \Illuminate\Database\Eloquent\Builder|Article forTag(string $tag) + * @method static \Illuminate\Database\Eloquent\Builder|Article newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Article newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Article notApproved() + * @method static \Illuminate\Database\Eloquent\Builder|Article notDeclined() + * @method static \Illuminate\Database\Eloquent\Builder|Article notPinned() + * @method static \Illuminate\Database\Eloquent\Builder|Article notPublished() + * @method static \Illuminate\Database\Eloquent\Builder|Article notShared() + * @method static \Illuminate\Database\Eloquent\Builder|Article orderByUniqueViews(string $direction = 'desc', $period = null, ?string $collection = null, string $as = 'unique_views_count') + * @method static \Illuminate\Database\Eloquent\Builder|Article orderByViews(string $direction = 'desc', ?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') + * @method static \Illuminate\Database\Eloquent\Builder|Article pinned() + * @method static \Illuminate\Database\Eloquent\Builder|Article popular() + * @method static \Illuminate\Database\Eloquent\Builder|Article published() + * @method static \Illuminate\Database\Eloquent\Builder|Article query() + * @method static \Illuminate\Database\Eloquent\Builder|Article recent() + * @method static \Illuminate\Database\Eloquent\Builder|Article shared() + * @method static \Illuminate\Database\Eloquent\Builder|Article sponsored() + * @method static \Illuminate\Database\Eloquent\Builder|Article submitted() + * @method static \Illuminate\Database\Eloquent\Builder|Article trending() + * @method static \Illuminate\Database\Eloquent\Builder|Article whereApprovedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereBody($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereCanonicalUrl($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereDeclinedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereIsPinned($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereIsSponsored($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article wherePublishedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereSharedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereShowToc($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereSlug($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereSponsoredAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereSubmittedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereTitle($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereTweetId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article whereUserId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Article withViewsCount(?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') + * @mixin \Eloquent + */ + class IdeHelperArticle + { + } } namespace App\Models{ -/** - * App\Models\Channel - * - * @property int $id - * @property string $name - * @property string $slug - * @property int|null $parent_id - * @property string|null $color - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read \Illuminate\Database\Eloquent\Collection $items - * @property-read int|null $items_count - * @property-read Channel|null $parent - * @property-read \Illuminate\Database\Eloquent\Collection $threads - * @property-read int|null $threads_count - * @method static \Database\Factories\ChannelFactory factory($count = null, $state = []) - * @method static \Illuminate\Database\Eloquent\Builder|Channel newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Channel newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Channel query() - * @method static \Illuminate\Database\Eloquent\Builder|Channel whereColor($value) - * @method static \Illuminate\Database\Eloquent\Builder|Channel whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Channel whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Channel whereName($value) - * @method static \Illuminate\Database\Eloquent\Builder|Channel whereParentId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Channel whereSlug($value) - * @method static \Illuminate\Database\Eloquent\Builder|Channel whereUpdatedAt($value) - * @mixin \Eloquent - */ - class IdeHelperChannel {} + /** + * App\Models\Channel + * + * @property int $id + * @property string $name + * @property string $slug + * @property int|null $parent_id + * @property string|null $color + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \Illuminate\Database\Eloquent\Collection $items + * @property-read int|null $items_count + * @property-read Channel|null $parent + * @property-read \Illuminate\Database\Eloquent\Collection $threads + * @property-read int|null $threads_count + * @method static \Database\Factories\ChannelFactory factory($count = null, $state = []) + * @method static \Illuminate\Database\Eloquent\Builder|Channel newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Channel newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Channel query() + * @method static \Illuminate\Database\Eloquent\Builder|Channel whereColor($value) + * @method static \Illuminate\Database\Eloquent\Builder|Channel whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Channel whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Channel whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Channel whereParentId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Channel whereSlug($value) + * @method static \Illuminate\Database\Eloquent\Builder|Channel whereUpdatedAt($value) + * @mixin \Eloquent + */ + class IdeHelperChannel + { + } } namespace App\Models{ -/** - * App\Models\Discussion - * - * @property int $id - * @property int $user_id - * @property string $title - * @property string $slug - * @property string $body - * @property bool $is_pinned - * @property bool $locked - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read \Illuminate\Database\Eloquent\Collection $activity - * @property-read int|null $activity_count - * @property-read int $count_all_replies_with_child - * @property-read \App\Models\Reply|null $latestReply - * @property-read \Illuminate\Database\Eloquent\Collection $reactions - * @property-read int|null $reactions_count - * @property-read \Illuminate\Database\Eloquent\Collection $replies - * @property-read int|null $replies_count - * @property-read \Illuminate\Database\Eloquent\Collection $subscribes - * @property-read int|null $subscribes_count - * @property-read \Illuminate\Database\Eloquent\Collection $tags - * @property-read int|null $tags_count - * @property-read \App\Models\User $user - * @property-read \Illuminate\Database\Eloquent\Collection $views - * @property-read int|null $views_count - * @method static \Illuminate\Database\Eloquent\Builder|Discussion active() - * @method static \Database\Factories\DiscussionFactory factory($count = null, $state = []) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion forTag(string $tag) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Discussion newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Discussion noComments() - * @method static \Illuminate\Database\Eloquent\Builder|Discussion notPinned() - * @method static \Illuminate\Database\Eloquent\Builder|Discussion orderByUniqueViews(string $direction = 'desc', $period = null, ?string $collection = null, string $as = 'unique_views_count') - * @method static \Illuminate\Database\Eloquent\Builder|Discussion orderByViews(string $direction = 'desc', ?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') - * @method static \Illuminate\Database\Eloquent\Builder|Discussion pinned() - * @method static \Illuminate\Database\Eloquent\Builder|Discussion popular() - * @method static \Illuminate\Database\Eloquent\Builder|Discussion query() - * @method static \Illuminate\Database\Eloquent\Builder|Discussion recent() - * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereBody($value) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereIsPinned($value) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereLocked($value) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereSlug($value) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereTitle($value) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereUserId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Discussion withViewsCount(?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') - * @mixin \Eloquent - */ - class IdeHelperDiscussion {} + /** + * App\Models\Discussion + * + * @property int $id + * @property int $user_id + * @property string $title + * @property string $slug + * @property string $body + * @property bool $is_pinned + * @property bool $locked + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \Illuminate\Database\Eloquent\Collection $activity + * @property-read int|null $activity_count + * @property-read int $count_all_replies_with_child + * @property-read \App\Models\Reply|null $latestReply + * @property-read \Illuminate\Database\Eloquent\Collection $reactions + * @property-read int|null $reactions_count + * @property-read \Illuminate\Database\Eloquent\Collection $replies + * @property-read int|null $replies_count + * @property-read \Illuminate\Database\Eloquent\Collection $subscribes + * @property-read int|null $subscribes_count + * @property-read \Illuminate\Database\Eloquent\Collection $tags + * @property-read int|null $tags_count + * @property-read \App\Models\User $user + * @property-read \Illuminate\Database\Eloquent\Collection $views + * @property-read int|null $views_count + * @method static \Illuminate\Database\Eloquent\Builder|Discussion active() + * @method static \Database\Factories\DiscussionFactory factory($count = null, $state = []) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion forTag(string $tag) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Discussion newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Discussion noComments() + * @method static \Illuminate\Database\Eloquent\Builder|Discussion notPinned() + * @method static \Illuminate\Database\Eloquent\Builder|Discussion orderByUniqueViews(string $direction = 'desc', $period = null, ?string $collection = null, string $as = 'unique_views_count') + * @method static \Illuminate\Database\Eloquent\Builder|Discussion orderByViews(string $direction = 'desc', ?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') + * @method static \Illuminate\Database\Eloquent\Builder|Discussion pinned() + * @method static \Illuminate\Database\Eloquent\Builder|Discussion popular() + * @method static \Illuminate\Database\Eloquent\Builder|Discussion query() + * @method static \Illuminate\Database\Eloquent\Builder|Discussion recent() + * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereBody($value) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereIsPinned($value) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereLocked($value) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereSlug($value) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereTitle($value) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion whereUserId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Discussion withViewsCount(?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') + * @mixin \Eloquent + */ + class IdeHelperDiscussion + { + } } namespace App\Models{ -/** - * App\Models\Enterprise - * - * @property int $id - * @property string $name - * @property string $slug - * @property string $website - * @property string|null $address - * @property string|null $description - * @property string|null $about - * @property string|null $founded_in - * @property string|null $ceo - * @property int $user_id - * @property bool $is_certified - * @property bool $is_featured - * @property bool $is_public - * @property string $size - * @property array|null $settings - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read \Spatie\MediaLibrary\MediaCollections\Models\Collections\MediaCollection $media - * @property-read int|null $media_count - * @property-read \App\Models\User $owner - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise certified() - * @method static \Database\Factories\EnterpriseFactory factory($count = null, $state = []) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise featured() - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise filters(\Illuminate\Http\Request $request, array $filters = []) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise public() - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise query() - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereAbout($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereAddress($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereCeo($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereDescription($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereFoundedIn($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereIsCertified($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereIsFeatured($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereIsPublic($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereName($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereSettings($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereSize($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereSlug($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereUserId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereWebsite($value) - * @mixin \Eloquent - */ - class IdeHelperEnterprise {} + /** + * App\Models\Enterprise + * + * @property int $id + * @property string $name + * @property string $slug + * @property string $website + * @property string|null $address + * @property string|null $description + * @property string|null $about + * @property string|null $founded_in + * @property string|null $ceo + * @property int $user_id + * @property bool $is_certified + * @property bool $is_featured + * @property bool $is_public + * @property string $size + * @property array|null $settings + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \Spatie\MediaLibrary\MediaCollections\Models\Collections\MediaCollection $media + * @property-read int|null $media_count + * @property-read \App\Models\User $owner + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise certified() + * @method static \Database\Factories\EnterpriseFactory factory($count = null, $state = []) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise featured() + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise filters(\Illuminate\Http\Request $request, array $filters = []) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise public() + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise query() + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereAbout($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereAddress($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereCeo($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereDescription($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereFoundedIn($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereIsCertified($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereIsFeatured($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereIsPublic($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereSettings($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereSize($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereSlug($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereUserId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Enterprise whereWebsite($value) + * @mixin \Eloquent + */ + class IdeHelperEnterprise + { + } } namespace App\Models{ -/** - * App\Models\Feature - * - * @property int $id - * @property string $name - * @property int $is_enabled - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @method static \Illuminate\Database\Eloquent\Builder|Feature newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Feature newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Feature query() - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereIsEnabled($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereName($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereUpdatedAt($value) - * @mixin \Eloquent - */ - class IdeHelperFeature {} + /** + * App\Models\Feature + * + * @property int $id + * @property string $name + * @property int $is_enabled + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @method static \Illuminate\Database\Eloquent\Builder|Feature newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Feature newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Feature query() + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereIsEnabled($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereUpdatedAt($value) + * @mixin \Eloquent + */ + class IdeHelperFeature + { + } } namespace App\Models\Premium{ -/** - * App\Models\Premium\Feature - * - * @property int $id - * @property int $plan_id - * @property string $slug - * @property array $name - * @property array|null $description - * @property string $value - * @property int $resettable_period - * @property string $resettable_interval - * @property int $sort_order - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property \Illuminate\Support\Carbon|null $deleted_at - * @property-read array $translations - * @property-read \App\Models\Premium\Plan $plan - * @property-read \Illuminate\Database\Eloquent\Collection $usage - * @property-read int|null $usage_count - * @method static \Illuminate\Database\Eloquent\Builder|PlanFeature byPlanId(int $planId) - * @method static \Illuminate\Database\Eloquent\Builder|Feature newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Feature newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Feature onlyTrashed() - * @method static \Illuminate\Database\Eloquent\Builder|PlanFeature ordered(string $direction = 'asc') - * @method static \Illuminate\Database\Eloquent\Builder|Feature query() - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereDeletedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereDescription($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereName($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature wherePlanId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereResettableInterval($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereResettablePeriod($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereSlug($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereSortOrder($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature whereValue($value) - * @method static \Illuminate\Database\Eloquent\Builder|Feature withTrashed() - * @method static \Illuminate\Database\Eloquent\Builder|Feature withoutTrashed() - * @mixin \Eloquent - */ - class IdeHelperFeature {} + /** + * App\Models\Premium\Feature + * + * @property int $id + * @property int $plan_id + * @property string $slug + * @property array $name + * @property array|null $description + * @property string $value + * @property int $resettable_period + * @property string $resettable_interval + * @property int $sort_order + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property \Illuminate\Support\Carbon|null $deleted_at + * @property-read array $translations + * @property-read \App\Models\Premium\Plan $plan + * @property-read \Illuminate\Database\Eloquent\Collection $usage + * @property-read int|null $usage_count + * @method static \Illuminate\Database\Eloquent\Builder|PlanFeature byPlanId(int $planId) + * @method static \Illuminate\Database\Eloquent\Builder|Feature newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Feature newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Feature onlyTrashed() + * @method static \Illuminate\Database\Eloquent\Builder|PlanFeature ordered(string $direction = 'asc') + * @method static \Illuminate\Database\Eloquent\Builder|Feature query() + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereDeletedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereDescription($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature wherePlanId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereResettableInterval($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereResettablePeriod($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereSlug($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereSortOrder($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature whereValue($value) + * @method static \Illuminate\Database\Eloquent\Builder|Feature withTrashed() + * @method static \Illuminate\Database\Eloquent\Builder|Feature withoutTrashed() + * @mixin \Eloquent + */ + class IdeHelperFeature + { + } } namespace App\Models\Premium{ -/** - * App\Models\Premium\Plan - * - * @property int $id - * @property string $slug - * @property array $name - * @property string $type - * @property array|null $description - * @property bool $is_active - * @property float $price - * @property float $signup_fee - * @property string $currency - * @property int $trial_period - * @property string $trial_interval - * @property int $invoice_period - * @property string $invoice_interval - * @property int $grace_period - * @property string $grace_interval - * @property int|null $prorate_day - * @property int|null $prorate_period - * @property int|null $prorate_extend_due - * @property int|null $active_subscribers_limit - * @property int $sort_order - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property \Illuminate\Support\Carbon|null $deleted_at - * @property-read \Illuminate\Database\Eloquent\Collection $features - * @property-read int|null $features_count - * @property-read array $translations - * @property-read \Illuminate\Database\Eloquent\Collection $subscriptions - * @property-read int|null $subscriptions_count - * @method static \Illuminate\Database\Eloquent\Builder|Plan developer() - * @method static \Illuminate\Database\Eloquent\Builder|Plan enterprise() - * @method static \Illuminate\Database\Eloquent\Builder|Plan newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Plan newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Plan onlyTrashed() - * @method static \Illuminate\Database\Eloquent\Builder|Plan ordered(string $direction = 'asc') - * @method static \Illuminate\Database\Eloquent\Builder|Plan query() - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereActiveSubscribersLimit($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereCurrency($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereDeletedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereDescription($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereGraceInterval($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereGracePeriod($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereInvoiceInterval($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereInvoicePeriod($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereIsActive($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereName($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan wherePrice($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereProrateDay($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereProrateExtendDue($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereProratePeriod($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereSignupFee($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereSlug($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereSortOrder($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereTrialInterval($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereTrialPeriod($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereType($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Plan withTrashed() - * @method static \Illuminate\Database\Eloquent\Builder|Plan withoutTrashed() - * @mixin \Eloquent - */ - class IdeHelperPlan {} + /** + * App\Models\Premium\Plan + * + * @property int $id + * @property string $slug + * @property array $name + * @property string $type + * @property array|null $description + * @property bool $is_active + * @property float $price + * @property float $signup_fee + * @property string $currency + * @property int $trial_period + * @property string $trial_interval + * @property int $invoice_period + * @property string $invoice_interval + * @property int $grace_period + * @property string $grace_interval + * @property int|null $prorate_day + * @property int|null $prorate_period + * @property int|null $prorate_extend_due + * @property int|null $active_subscribers_limit + * @property int $sort_order + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property \Illuminate\Support\Carbon|null $deleted_at + * @property-read \Illuminate\Database\Eloquent\Collection $features + * @property-read int|null $features_count + * @property-read array $translations + * @property-read \Illuminate\Database\Eloquent\Collection $subscriptions + * @property-read int|null $subscriptions_count + * @method static \Illuminate\Database\Eloquent\Builder|Plan developer() + * @method static \Illuminate\Database\Eloquent\Builder|Plan enterprise() + * @method static \Illuminate\Database\Eloquent\Builder|Plan newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Plan newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Plan onlyTrashed() + * @method static \Illuminate\Database\Eloquent\Builder|Plan ordered(string $direction = 'asc') + * @method static \Illuminate\Database\Eloquent\Builder|Plan query() + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereActiveSubscribersLimit($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereCurrency($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereDeletedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereDescription($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereGraceInterval($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereGracePeriod($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereInvoiceInterval($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereInvoicePeriod($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereIsActive($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan wherePrice($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereProrateDay($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereProrateExtendDue($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereProratePeriod($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereSignupFee($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereSlug($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereSortOrder($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereTrialInterval($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereTrialPeriod($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereType($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Plan withTrashed() + * @method static \Illuminate\Database\Eloquent\Builder|Plan withoutTrashed() + * @mixin \Eloquent + */ + class IdeHelperPlan + { + } } namespace App\Models\Premium{ -/** - * App\Models\Premium\Subscription - * - * @property int $id - * @property string $subscriber_type - * @property int $subscriber_id - * @property int $plan_id - * @property string $slug - * @property array $name - * @property array|null $description - * @property \Illuminate\Support\Carbon|null $trial_ends_at - * @property \Illuminate\Support\Carbon|null $starts_at - * @property \Illuminate\Support\Carbon|null $ends_at - * @property \Illuminate\Support\Carbon|null $cancels_at - * @property \Illuminate\Support\Carbon|null $canceled_at - * @property string|null $timezone - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property \Illuminate\Support\Carbon|null $deleted_at - * @property-read array $translations - * @property-read \App\Models\Premium\Plan $plan - * @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $subscriber - * @property-read \Illuminate\Database\Eloquent\Collection $usage - * @property-read int|null $usage_count - * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription byPlanId(int $planId) - * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findActive() - * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findEndedPeriod() - * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findEndedTrial() - * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findEndingPeriod(int $dayRange = 3) - * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findEndingTrial(int $dayRange = 3) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Subscription newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription ofSubscriber(\Illuminate\Database\Eloquent\Model $subscriber) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription onlyTrashed() - * @method static \Illuminate\Database\Eloquent\Builder|Subscription query() - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereCanceledAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereCancelsAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereDeletedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereDescription($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereEndsAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereName($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription wherePlanId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereSlug($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereStartsAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereSubscriberId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereSubscriberType($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereTimezone($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereTrialEndsAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscription withTrashed() - * @method static \Illuminate\Database\Eloquent\Builder|Subscription withoutTrashed() - * @mixin \Eloquent - */ - class IdeHelperSubscription {} + /** + * App\Models\Premium\Subscription + * + * @property int $id + * @property string $subscriber_type + * @property int $subscriber_id + * @property int $plan_id + * @property string $slug + * @property array $name + * @property array|null $description + * @property \Illuminate\Support\Carbon|null $trial_ends_at + * @property \Illuminate\Support\Carbon|null $starts_at + * @property \Illuminate\Support\Carbon|null $ends_at + * @property \Illuminate\Support\Carbon|null $cancels_at + * @property \Illuminate\Support\Carbon|null $canceled_at + * @property string|null $timezone + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property \Illuminate\Support\Carbon|null $deleted_at + * @property-read array $translations + * @property-read \App\Models\Premium\Plan $plan + * @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $subscriber + * @property-read \Illuminate\Database\Eloquent\Collection $usage + * @property-read int|null $usage_count + * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription byPlanId(int $planId) + * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findActive() + * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findEndedPeriod() + * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findEndedTrial() + * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findEndingPeriod(int $dayRange = 3) + * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription findEndingTrial(int $dayRange = 3) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Subscription newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscription ofSubscriber(\Illuminate\Database\Eloquent\Model $subscriber) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription onlyTrashed() + * @method static \Illuminate\Database\Eloquent\Builder|Subscription query() + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereCanceledAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereCancelsAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereDeletedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereDescription($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereEndsAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription wherePlanId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereSlug($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereStartsAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereSubscriberId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereSubscriberType($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereTimezone($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereTrialEndsAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscription withTrashed() + * @method static \Illuminate\Database\Eloquent\Builder|Subscription withoutTrashed() + * @mixin \Eloquent + */ + class IdeHelperSubscription + { + } } namespace App\Models\Premium{ -/** - * App\Models\Premium\SubscriptionUsage - * - * @property int $id - * @property int $subscription_id - * @property int $feature_id - * @property int $used - * @property \Illuminate\Support\Carbon|null $valid_until - * @property string|null $timezone - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property \Illuminate\Support\Carbon|null $deleted_at - * @property-read \App\Models\Premium\Feature $feature - * @property-read \App\Models\Premium\Subscription $subscription - * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscriptionUsage byFeatureSlug(string $featureSlug) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage onlyTrashed() - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage query() - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereDeletedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereFeatureId($value) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereSubscriptionId($value) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereTimezone($value) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereUsed($value) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereValidUntil($value) - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage withTrashed() - * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage withoutTrashed() - * @mixin \Eloquent - */ - class IdeHelperSubscriptionUsage {} + /** + * App\Models\Premium\SubscriptionUsage + * + * @property int $id + * @property int $subscription_id + * @property int $feature_id + * @property int $used + * @property \Illuminate\Support\Carbon|null $valid_until + * @property string|null $timezone + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property \Illuminate\Support\Carbon|null $deleted_at + * @property-read \App\Models\Premium\Feature $feature + * @property-read \App\Models\Premium\Subscription $subscription + * @method static \Illuminate\Database\Eloquent\Builder|PlanSubscriptionUsage byFeatureSlug(string $featureSlug) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage onlyTrashed() + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage query() + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereDeletedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereFeatureId($value) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereSubscriptionId($value) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereTimezone($value) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereUsed($value) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage whereValidUntil($value) + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage withTrashed() + * @method static \Illuminate\Database\Eloquent\Builder|SubscriptionUsage withoutTrashed() + * @mixin \Eloquent + */ + class IdeHelperSubscriptionUsage + { + } } namespace App\Models{ -/** - * App\Models\Reaction - * - * @property int $id - * @property string $name - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @method static \Illuminate\Database\Eloquent\Builder|Reaction newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Reaction newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Reaction query() - * @method static \Illuminate\Database\Eloquent\Builder|Reaction whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Reaction whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Reaction whereName($value) - * @method static \Illuminate\Database\Eloquent\Builder|Reaction whereUpdatedAt($value) - * @mixin \Eloquent - */ - class IdeHelperReaction {} + /** + * App\Models\Reaction + * + * @property int $id + * @property string $name + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @method static \Illuminate\Database\Eloquent\Builder|Reaction newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Reaction newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Reaction query() + * @method static \Illuminate\Database\Eloquent\Builder|Reaction whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Reaction whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Reaction whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Reaction whereUpdatedAt($value) + * @mixin \Eloquent + */ + class IdeHelperReaction + { + } } namespace App\Models{ -/** - * App\Models\Reply - * - * @property int $id - * @property int $user_id - * @property string $replyable_type - * @property int $replyable_id - * @property string $body - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read \Illuminate\Database\Eloquent\Collection $activity - * @property-read int|null $activity_count - * @property-read \Illuminate\Database\Eloquent\Collection $allChildReplies - * @property-read int|null $all_child_replies_count - * @property-read Reply|null $latestReply - * @property-read \Illuminate\Database\Eloquent\Collection $reactions - * @property-read int|null $reactions_count - * @property-read \Illuminate\Database\Eloquent\Collection $replies - * @property-read int|null $replies_count - * @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $replyAble - * @property-read \App\Models\Thread|null $solutionTo - * @property-read \App\Models\User $user - * @method static \Database\Factories\ReplyFactory factory($count = null, $state = []) - * @method static \Illuminate\Database\Eloquent\Builder|Reply isSolution() - * @method static \Illuminate\Database\Eloquent\Builder|Reply newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Reply newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Reply query() - * @method static \Illuminate\Database\Eloquent\Builder|Reply whereBody($value) - * @method static \Illuminate\Database\Eloquent\Builder|Reply whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Reply whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Reply whereReplyableId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Reply whereReplyableType($value) - * @method static \Illuminate\Database\Eloquent\Builder|Reply whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Reply whereUserId($value) - * @mixin \Eloquent - */ - class IdeHelperReply {} + /** + * App\Models\Reply + * + * @property int $id + * @property int $user_id + * @property string $replyable_type + * @property int $replyable_id + * @property string $body + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \Illuminate\Database\Eloquent\Collection $activity + * @property-read int|null $activity_count + * @property-read \Illuminate\Database\Eloquent\Collection $allChildReplies + * @property-read int|null $all_child_replies_count + * @property-read Reply|null $latestReply + * @property-read \Illuminate\Database\Eloquent\Collection $reactions + * @property-read int|null $reactions_count + * @property-read \Illuminate\Database\Eloquent\Collection $replies + * @property-read int|null $replies_count + * @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $replyAble + * @property-read \App\Models\Thread|null $solutionTo + * @property-read \App\Models\User $user + * @method static \Database\Factories\ReplyFactory factory($count = null, $state = []) + * @method static \Illuminate\Database\Eloquent\Builder|Reply isSolution() + * @method static \Illuminate\Database\Eloquent\Builder|Reply newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Reply newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Reply query() + * @method static \Illuminate\Database\Eloquent\Builder|Reply whereBody($value) + * @method static \Illuminate\Database\Eloquent\Builder|Reply whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Reply whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Reply whereReplyableId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Reply whereReplyableType($value) + * @method static \Illuminate\Database\Eloquent\Builder|Reply whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Reply whereUserId($value) + * @mixin \Eloquent + */ + class IdeHelperReply + { + } } namespace App\Models{ -/** - * App\Models\SocialAccount - * - * @property int $id - * @property int $user_id - * @property string $provider - * @property string $provider_id - * @property string|null $token - * @property string|null $avatar - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount query() - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereAvatar($value) - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereProvider($value) - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereProviderId($value) - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereToken($value) - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereUserId($value) - * @mixin \Eloquent - */ - class IdeHelperSocialAccount {} + /** + * App\Models\SocialAccount + * + * @property int $id + * @property int $user_id + * @property string $provider + * @property string $provider_id + * @property string|null $token + * @property string|null $avatar + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount query() + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereAvatar($value) + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereProvider($value) + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereProviderId($value) + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereToken($value) + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereUserId($value) + * @mixin \Eloquent + */ + class IdeHelperSocialAccount + { + } } namespace App\Models{ -/** - * App\Models\Subscribe - * - * @property string $uuid - * @property int $user_id - * @property string $subscribeable_type - * @property int $subscribeable_id - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $subscribeAble - * @property-read \App\Models\User $user - * @method static \Illuminate\Database\Eloquent\Builder|Subscribe newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Subscribe newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Subscribe query() - * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereSubscribeableId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereSubscribeableType($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereUserId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereUuid($value) - * @mixin \Eloquent - */ - class IdeHelperSubscribe {} + /** + * App\Models\Subscribe + * + * @property string $uuid + * @property int $user_id + * @property string $subscribeable_type + * @property int $subscribeable_id + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $subscribeAble + * @property-read \App\Models\User $user + * @method static \Illuminate\Database\Eloquent\Builder|Subscribe newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Subscribe newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Subscribe query() + * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereSubscribeableId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereSubscribeableType($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereUserId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Subscribe whereUuid($value) + * @mixin \Eloquent + */ + class IdeHelperSubscribe + { + } } namespace App\Models{ -/** - * App\Models\Tag - * - * @property int $id - * @property string $name - * @property string $slug - * @property string|null $description - * @property array $concerns - * @property-read \Illuminate\Database\Eloquent\Collection $articles - * @property-read int|null $articles_count - * @method static \Database\Factories\TagFactory factory($count = null, $state = []) - * @method static \Illuminate\Database\Eloquent\Builder|Tag newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Tag newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Tag query() - * @method static \Illuminate\Database\Eloquent\Builder|Tag whereConcerns($value) - * @method static \Illuminate\Database\Eloquent\Builder|Tag whereDescription($value) - * @method static \Illuminate\Database\Eloquent\Builder|Tag whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Tag whereName($value) - * @method static \Illuminate\Database\Eloquent\Builder|Tag whereSlug($value) - * @mixin \Eloquent - */ - class IdeHelperTag {} + /** + * App\Models\Tag + * + * @property int $id + * @property string $name + * @property string $slug + * @property string|null $description + * @property array $concerns + * @property-read \Illuminate\Database\Eloquent\Collection $articles + * @property-read int|null $articles_count + * @method static \Database\Factories\TagFactory factory($count = null, $state = []) + * @method static \Illuminate\Database\Eloquent\Builder|Tag newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Tag newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Tag query() + * @method static \Illuminate\Database\Eloquent\Builder|Tag whereConcerns($value) + * @method static \Illuminate\Database\Eloquent\Builder|Tag whereDescription($value) + * @method static \Illuminate\Database\Eloquent\Builder|Tag whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Tag whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Tag whereSlug($value) + * @mixin \Eloquent + */ + class IdeHelperTag + { + } } namespace App\Models{ -/** - * App\Models\Thread - * - * @property int $id - * @property int $user_id - * @property string $title - * @property string $slug - * @property string $body - * @property int|null $solution_reply_id - * @property int|null $resolved_by - * @property bool $locked - * @property \Illuminate\Support\Carbon $last_posted_at - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read \Illuminate\Database\Eloquent\Collection $activity - * @property-read int|null $activity_count - * @property-read \Illuminate\Database\Eloquent\Collection $channels - * @property-read int|null $channels_count - * @property-read \App\Models\Reply|null $latestReply - * @property-read \Illuminate\Notifications\DatabaseNotificationCollection $notifications - * @property-read int|null $notifications_count - * @property-read \Illuminate\Database\Eloquent\Collection $reactions - * @property-read int|null $reactions_count - * @property-read \Illuminate\Database\Eloquent\Collection $replies - * @property-read int|null $replies_count - * @property-read \App\Models\User|null $resolvedBy - * @property-read \App\Models\Reply|null $solutionReply - * @property-read \Illuminate\Database\Eloquent\Collection $subscribes - * @property-read int|null $subscribes_count - * @property-read \App\Models\User $user - * @property-read \Illuminate\Database\Eloquent\Collection $views - * @property-read int|null $views_count - * @method static \Illuminate\Database\Eloquent\Builder|Thread active() - * @method static \Database\Factories\ThreadFactory factory($count = null, $state = []) - * @method static \Illuminate\Database\Eloquent\Builder|Thread feedQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Thread filter(\Illuminate\Http\Request $request, array $filters = []) - * @method static \Illuminate\Database\Eloquent\Builder|Thread forChannel(\App\Models\Channel $channel) - * @method static \Illuminate\Database\Eloquent\Builder|Thread newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Thread newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Thread orderByUniqueViews(string $direction = 'desc', $period = null, ?string $collection = null, string $as = 'unique_views_count') - * @method static \Illuminate\Database\Eloquent\Builder|Thread orderByViews(string $direction = 'desc', ?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') - * @method static \Illuminate\Database\Eloquent\Builder|Thread query() - * @method static \Illuminate\Database\Eloquent\Builder|Thread recent() - * @method static \Illuminate\Database\Eloquent\Builder|Thread resolved() - * @method static \Illuminate\Database\Eloquent\Builder|Thread unresolved() - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereBody($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereLastPostedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereLocked($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereResolvedBy($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereSlug($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereSolutionReplyId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereTitle($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread whereUserId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Thread withViewsCount(?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') - * @mixin \Eloquent - */ - class IdeHelperThread {} + /** + * App\Models\Thread + * + * @property int $id + * @property int $user_id + * @property string $title + * @property string $slug + * @property string $body + * @property int|null $solution_reply_id + * @property int|null $resolved_by + * @property bool $locked + * @property \Illuminate\Support\Carbon $last_posted_at + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \Illuminate\Database\Eloquent\Collection $activity + * @property-read int|null $activity_count + * @property-read \Illuminate\Database\Eloquent\Collection $channels + * @property-read int|null $channels_count + * @property-read \App\Models\Reply|null $latestReply + * @property-read \Illuminate\Notifications\DatabaseNotificationCollection $notifications + * @property-read int|null $notifications_count + * @property-read \Illuminate\Database\Eloquent\Collection $reactions + * @property-read int|null $reactions_count + * @property-read \Illuminate\Database\Eloquent\Collection $replies + * @property-read int|null $replies_count + * @property-read \App\Models\User|null $resolvedBy + * @property-read \App\Models\Reply|null $solutionReply + * @property-read \Illuminate\Database\Eloquent\Collection $subscribes + * @property-read int|null $subscribes_count + * @property-read \App\Models\User $user + * @property-read \Illuminate\Database\Eloquent\Collection $views + * @property-read int|null $views_count + * @method static \Illuminate\Database\Eloquent\Builder|Thread active() + * @method static \Database\Factories\ThreadFactory factory($count = null, $state = []) + * @method static \Illuminate\Database\Eloquent\Builder|Thread feedQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Thread filter(\Illuminate\Http\Request $request, array $filters = []) + * @method static \Illuminate\Database\Eloquent\Builder|Thread forChannel(\App\Models\Channel $channel) + * @method static \Illuminate\Database\Eloquent\Builder|Thread newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Thread newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Thread orderByUniqueViews(string $direction = 'desc', $period = null, ?string $collection = null, string $as = 'unique_views_count') + * @method static \Illuminate\Database\Eloquent\Builder|Thread orderByViews(string $direction = 'desc', ?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') + * @method static \Illuminate\Database\Eloquent\Builder|Thread query() + * @method static \Illuminate\Database\Eloquent\Builder|Thread recent() + * @method static \Illuminate\Database\Eloquent\Builder|Thread resolved() + * @method static \Illuminate\Database\Eloquent\Builder|Thread unresolved() + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereBody($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereLastPostedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereLocked($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereResolvedBy($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereSlug($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereSolutionReplyId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereTitle($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread whereUserId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Thread withViewsCount(?\CyrildeWit\EloquentViewable\Support\Period $period = null, ?string $collection = null, bool $unique = false, string $as = 'views_count') + * @mixin \Eloquent + */ + class IdeHelperThread + { + } } namespace App\Models{ -/** - * App\Models\Transaction - * - * @property string $id - * @property string $type - * @property int $user_id - * @property int $amount - * @property int|null $fees - * @property string $transaction_reference - * @property string $status - * @property array|null $metadata - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read \App\Models\User $user - * @method static \Illuminate\Database\Eloquent\Builder|Transaction newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Transaction newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|Transaction query() - * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereAmount($value) - * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereFees($value) - * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereMetadata($value) - * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereStatus($value) - * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereTransactionReference($value) - * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereType($value) - * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereUserId($value) - * @mixin \Eloquent - */ - class IdeHelperTransaction {} + /** + * App\Models\Transaction + * + * @property string $id + * @property string $type + * @property int $user_id + * @property int $amount + * @property int|null $fees + * @property string $transaction_reference + * @property string $status + * @property array|null $metadata + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \App\Models\User $user + * @method static \Illuminate\Database\Eloquent\Builder|Transaction newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Transaction newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Transaction query() + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereAmount($value) + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereFees($value) + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereMetadata($value) + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereStatus($value) + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereTransactionReference($value) + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereType($value) + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Transaction whereUserId($value) + * @mixin \Eloquent + */ + class IdeHelperTransaction + { + } } namespace App\Models{ -/** - * App\Models\User - * - * @property int $id - * @property string $name - * @property string $email - * @property string $username - * @property \Illuminate\Support\Carbon|null $email_verified_at - * @property string|null $password - * @property string|null $two_factor_secret - * @property string|null $two_factor_recovery_codes - * @property string|null $bio - * @property string|null $location - * @property string|null $avatar - * @property string $avatar_type - * @property string|null $phone_number - * @property \Illuminate\Support\Carbon|null $last_login_at - * @property string|null $last_login_ip - * @property string|null $github_profile - * @property string|null $twitter_profile - * @property string|null $linkedin_profile - * @property string|null $website - * @property int $opt_in - * @property array|null $settings - * @property string|null $remember_token - * @property int $reputation - * @property \Illuminate\Support\Carbon|null $created_at - * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read \Illuminate\Database\Eloquent\Collection $activities - * @property-read int|null $activities_count - * @property-read \Illuminate\Database\Eloquent\Collection $articles - * @property-read int|null $articles_count - * @property-read \Illuminate\Database\Eloquent\Collection $badges - * @property-read int|null $badges_count - * @property-read \Illuminate\Database\Eloquent\Collection $discussions - * @property-read int|null $discussions_count - * @property-read \App\Models\Enterprise|null $enterprise - * @property-read \Illuminate\Database\Eloquent\Collection $features - * @property-read int|null $features_count - * @property-read string|null $profile_photo_url - * @property-read string $roles_label - * @property-read \Spatie\MediaLibrary\MediaCollections\Models\Collections\MediaCollection $media - * @property-read int|null $media_count - * @property-read \Illuminate\Notifications\DatabaseNotificationCollection $notifications - * @property-read int|null $notifications_count - * @property-read \Illuminate\Database\Eloquent\Collection $permissions - * @property-read int|null $permissions_count - * @property-read \Illuminate\Database\Eloquent\Collection $planSubscriptions - * @property-read int|null $plan_subscriptions_count - * @property-read \Illuminate\Database\Eloquent\Collection $providers - * @property-read int|null $providers_count - * @property-read \Illuminate\Database\Eloquent\Collection $replyAble - * @property-read int|null $reply_able_count - * @property-read \Illuminate\Database\Eloquent\Collection $reputations - * @property-read int|null $reputations_count - * @property-read \Illuminate\Database\Eloquent\Collection $roles - * @property-read int|null $roles_count - * @property-read \Illuminate\Database\Eloquent\Collection $subscriptions - * @property-read int|null $subscriptions_count - * @property-read \Illuminate\Database\Eloquent\Collection $threads - * @property-read int|null $threads_count - * @property-read \Illuminate\Database\Eloquent\Collection $tokens - * @property-read int|null $tokens_count - * @property-read \Illuminate\Database\Eloquent\Collection $transactions - * @property-read int|null $transactions_count - * @method static \Database\Factories\UserFactory factory($count = null, $state = []) - * @method static \Illuminate\Database\Eloquent\Builder|User hasActivity() - * @method static \Illuminate\Database\Eloquent\Builder|User moderators() - * @method static \Illuminate\Database\Eloquent\Builder|User mostSolutions(?int $inLastDays = null) - * @method static \Illuminate\Database\Eloquent\Builder|User mostSolutionsInLastDays(int $days) - * @method static \Illuminate\Database\Eloquent\Builder|User mostSubmissions(?int $inLastDays = null) - * @method static \Illuminate\Database\Eloquent\Builder|User mostSubmissionsInLastDays(int $days) - * @method static \Illuminate\Database\Eloquent\Builder|User newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|User newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|User permission($permissions) - * @method static \Illuminate\Database\Eloquent\Builder|User query() - * @method static \Illuminate\Database\Eloquent\Builder|User role($roles, $guard = null) - * @method static \Illuminate\Database\Eloquent\Builder|User topContributors() - * @method static \Illuminate\Database\Eloquent\Builder|User unVerifiedUsers() - * @method static \Illuminate\Database\Eloquent\Builder|User verifiedUsers() - * @method static \Illuminate\Database\Eloquent\Builder|User whereAvatar($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereAvatarType($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereBio($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereEmail($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereEmailVerifiedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereGithubProfile($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereLastLoginAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereLastLoginIp($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereLinkedinProfile($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereLocation($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereName($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereOptIn($value) - * @method static \Illuminate\Database\Eloquent\Builder|User wherePassword($value) - * @method static \Illuminate\Database\Eloquent\Builder|User wherePhoneNumber($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereRememberToken($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereReputation($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereSettings($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereTwitterProfile($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereTwoFactorRecoveryCodes($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereTwoFactorSecret($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereUsername($value) - * @method static \Illuminate\Database\Eloquent\Builder|User whereWebsite($value) - * @method static \Illuminate\Database\Eloquent\Builder|User withCounts() - * @method static \Illuminate\Database\Eloquent\Builder|User withoutRole() - * @mixin \Eloquent - */ - class IdeHelperUser {} + /** + * App\Models\User + * + * @property int $id + * @property string $name + * @property string $email + * @property string $username + * @property \Illuminate\Support\Carbon|null $email_verified_at + * @property string|null $password + * @property string|null $two_factor_secret + * @property string|null $two_factor_recovery_codes + * @property string|null $bio + * @property string|null $location + * @property string|null $avatar + * @property string $avatar_type + * @property string|null $phone_number + * @property \Illuminate\Support\Carbon|null $last_login_at + * @property string|null $last_login_ip + * @property string|null $github_profile + * @property string|null $twitter_profile + * @property string|null $linkedin_profile + * @property string|null $website + * @property int $opt_in + * @property array|null $settings + * @property string|null $remember_token + * @property int $reputation + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \Illuminate\Database\Eloquent\Collection $activities + * @property-read int|null $activities_count + * @property-read \Illuminate\Database\Eloquent\Collection $articles + * @property-read int|null $articles_count + * @property-read \Illuminate\Database\Eloquent\Collection $badges + * @property-read int|null $badges_count + * @property-read \Illuminate\Database\Eloquent\Collection $discussions + * @property-read int|null $discussions_count + * @property-read \App\Models\Enterprise|null $enterprise + * @property-read \Illuminate\Database\Eloquent\Collection $features + * @property-read int|null $features_count + * @property-read string|null $profile_photo_url + * @property-read string $roles_label + * @property-read \Spatie\MediaLibrary\MediaCollections\Models\Collections\MediaCollection $media + * @property-read int|null $media_count + * @property-read \Illuminate\Notifications\DatabaseNotificationCollection $notifications + * @property-read int|null $notifications_count + * @property-read \Illuminate\Database\Eloquent\Collection $permissions + * @property-read int|null $permissions_count + * @property-read \Illuminate\Database\Eloquent\Collection $planSubscriptions + * @property-read int|null $plan_subscriptions_count + * @property-read \Illuminate\Database\Eloquent\Collection $providers + * @property-read int|null $providers_count + * @property-read \Illuminate\Database\Eloquent\Collection $replyAble + * @property-read int|null $reply_able_count + * @property-read \Illuminate\Database\Eloquent\Collection $reputations + * @property-read int|null $reputations_count + * @property-read \Illuminate\Database\Eloquent\Collection $roles + * @property-read int|null $roles_count + * @property-read \Illuminate\Database\Eloquent\Collection $subscriptions + * @property-read int|null $subscriptions_count + * @property-read \Illuminate\Database\Eloquent\Collection $threads + * @property-read int|null $threads_count + * @property-read \Illuminate\Database\Eloquent\Collection $tokens + * @property-read int|null $tokens_count + * @property-read \Illuminate\Database\Eloquent\Collection $transactions + * @property-read int|null $transactions_count + * @method static \Database\Factories\UserFactory factory($count = null, $state = []) + * @method static \Illuminate\Database\Eloquent\Builder|User hasActivity() + * @method static \Illuminate\Database\Eloquent\Builder|User moderators() + * @method static \Illuminate\Database\Eloquent\Builder|User mostSolutions(?int $inLastDays = null) + * @method static \Illuminate\Database\Eloquent\Builder|User mostSolutionsInLastDays(int $days) + * @method static \Illuminate\Database\Eloquent\Builder|User mostSubmissions(?int $inLastDays = null) + * @method static \Illuminate\Database\Eloquent\Builder|User mostSubmissionsInLastDays(int $days) + * @method static \Illuminate\Database\Eloquent\Builder|User newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|User newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|User permission($permissions) + * @method static \Illuminate\Database\Eloquent\Builder|User query() + * @method static \Illuminate\Database\Eloquent\Builder|User role($roles, $guard = null) + * @method static \Illuminate\Database\Eloquent\Builder|User topContributors() + * @method static \Illuminate\Database\Eloquent\Builder|User unVerifiedUsers() + * @method static \Illuminate\Database\Eloquent\Builder|User verifiedUsers() + * @method static \Illuminate\Database\Eloquent\Builder|User whereAvatar($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereAvatarType($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereBio($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereEmail($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereEmailVerifiedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereGithubProfile($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereLastLoginAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereLastLoginIp($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereLinkedinProfile($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereLocation($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereOptIn($value) + * @method static \Illuminate\Database\Eloquent\Builder|User wherePassword($value) + * @method static \Illuminate\Database\Eloquent\Builder|User wherePhoneNumber($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereRememberToken($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereReputation($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereSettings($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereTwitterProfile($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereTwoFactorRecoveryCodes($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereTwoFactorSecret($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereUsername($value) + * @method static \Illuminate\Database\Eloquent\Builder|User whereWebsite($value) + * @method static \Illuminate\Database\Eloquent\Builder|User withCounts() + * @method static \Illuminate\Database\Eloquent\Builder|User withoutRole() + * @mixin \Eloquent + */ + class IdeHelperUser + { + } } -