commit 6d934793196ecd1a1a89b19b3c56af779c82640d Author: Alfnnr Date: Sun Jun 29 20:49:16 2025 +0700 commit awal diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..8f0de65 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml}] +indent_size = 2 + +[docker-compose.yml] +indent_size = 4 diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..35db1dd --- /dev/null +++ b/.env.example @@ -0,0 +1,65 @@ +APP_NAME=Laravel +APP_ENV=local +APP_KEY= +APP_DEBUG=true +APP_URL=http://localhost + +APP_LOCALE=en +APP_FALLBACK_LOCALE=en +APP_FAKER_LOCALE=en_US + +APP_MAINTENANCE_DRIVER=file +# APP_MAINTENANCE_STORE=database + +PHP_CLI_SERVER_WORKERS=4 + +BCRYPT_ROUNDS=12 + +LOG_CHANNEL=stack +LOG_STACK=single +LOG_DEPRECATIONS_CHANNEL=null +LOG_LEVEL=debug + +DB_CONNECTION=sqlite +# DB_HOST=127.0.0.1 +# DB_PORT=3306 +# DB_DATABASE=laravel +# DB_USERNAME=root +# DB_PASSWORD= + +SESSION_DRIVER=database +SESSION_LIFETIME=120 +SESSION_ENCRYPT=false +SESSION_PATH=/ +SESSION_DOMAIN=null + +BROADCAST_CONNECTION=log +FILESYSTEM_DISK=local +QUEUE_CONNECTION=database + +CACHE_STORE=database +# CACHE_PREFIX= + +MEMCACHED_HOST=127.0.0.1 + +REDIS_CLIENT=phpredis +REDIS_HOST=127.0.0.1 +REDIS_PASSWORD=null +REDIS_PORT=6379 + +MAIL_MAILER=log +MAIL_SCHEME=null +MAIL_HOST=127.0.0.1 +MAIL_PORT=2525 +MAIL_USERNAME=null +MAIL_PASSWORD=null +MAIL_FROM_ADDRESS="hello@example.com" +MAIL_FROM_NAME="${APP_NAME}" + +AWS_ACCESS_KEY_ID= +AWS_SECRET_ACCESS_KEY= +AWS_DEFAULT_REGION=us-east-1 +AWS_BUCKET= +AWS_USE_PATH_STYLE_ENDPOINT=false + +VITE_APP_NAME="${APP_NAME}" diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..fcb21d3 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,11 @@ +* text=auto eol=lf + +*.blade.php diff=html +*.css diff=css +*.html diff=html +*.md diff=markdown +*.php diff=php + +/.github export-ignore +CHANGELOG.md export-ignore +.styleci.yml export-ignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c7cf1fa --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +/.phpunit.cache +/node_modules +/public/build +/public/hot +/public/storage +/storage/*.key +/storage/pail +/vendor +.env +.env.backup +.env.production +.phpactor.json +.phpunit.result.cache +Homestead.json +Homestead.yaml +npm-debug.log +yarn-error.log +/auth.json +/.fleet +/.idea +/.nova +/.vscode +/.zed diff --git a/README.md b/README.md new file mode 100644 index 0000000..1a4c26b --- /dev/null +++ b/README.md @@ -0,0 +1,66 @@ +

Laravel Logo

+ +

+Build Status +Total Downloads +Latest Stable Version +License +

+ +## About Laravel + +Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as: + +- [Simple, fast routing engine](https://laravel.com/docs/routing). +- [Powerful dependency injection container](https://laravel.com/docs/container). +- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage. +- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent). +- Database agnostic [schema migrations](https://laravel.com/docs/migrations). +- [Robust background job processing](https://laravel.com/docs/queues). +- [Real-time event broadcasting](https://laravel.com/docs/broadcasting). + +Laravel is accessible, powerful, and provides tools required for large, robust applications. + +## Learning Laravel + +Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. + +You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch. + +If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library. + +## Laravel Sponsors + +We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the [Laravel Partners program](https://partners.laravel.com). + +### Premium Partners + +- **[Vehikl](https://vehikl.com/)** +- **[Tighten Co.](https://tighten.co)** +- **[WebReinvent](https://webreinvent.com/)** +- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** +- **[64 Robots](https://64robots.com)** +- **[Curotec](https://www.curotec.com/services/technologies/laravel/)** +- **[Cyber-Duck](https://cyber-duck.co.uk)** +- **[DevSquad](https://devsquad.com/hire-laravel-developers)** +- **[Jump24](https://jump24.co.uk)** +- **[Redberry](https://redberry.international/laravel/)** +- **[Active Logic](https://activelogic.com)** +- **[byte5](https://byte5.de)** +- **[OP.GG](https://op.gg)** + +## Contributing + +Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions). + +## Code of Conduct + +In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct). + +## Security Vulnerabilities + +If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed. + +## License + +The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). diff --git a/app/Http/Controllers/AlternatifController.php b/app/Http/Controllers/AlternatifController.php new file mode 100644 index 0000000..80a408b --- /dev/null +++ b/app/Http/Controllers/AlternatifController.php @@ -0,0 +1,134 @@ +role === 'super_admin') { + $alternatifs = Alternatif::all(); + } elseif ($user->role === 'admin') { + $member = MemberKelompokTani::where('user_id', $user->id)->first(); + if ($member) { + $userIds = MemberKelompokTani::where('kelompok_tani_id', $member->kelompok_tani_id)->pluck('user_id'); + $alternatifs = Alternatif::whereIn('user_id', $userIds)->get(); + } else { + $alternatifs = collect(); // tidak ada kelompok + } + } else { + $alternatifs = Alternatif::where('user_id', $user->id)->get(); + } + + return view('admin.alternatif', [ + 'alternatifs' => $alternatifs, + 'title' => 'Data Alternatif' + ]); + } + + public function store(Request $request) + { + $request->validate([ + 'nama_lahan' => 'required|string|max:255' + ]); + + $userId = Auth::id(); + if (!$userId) { + return redirect()->back()->with('error', 'Anda harus login terlebih dahulu.'); + } + + Alternatif::create([ + 'nama_lahan' => $request->nama_lahan, + 'user_id' => $userId, + ]); + + return redirect()->back()->with('success', 'Alternatif berhasil ditambahkan.'); + } + + public function update(Request $request, $id) + { + $request->validate([ + 'nama_lahan' => 'required|string|max:255' + ]); + + $alternatif = Alternatif::findOrFail($id); + $user = Auth::user(); + + // Cek izin berdasarkan kelompok + if ($user->role === 'super_admin') { + // boleh update + } elseif ($user->role === 'admin') { + $adminGroup = MemberKelompokTani::where('user_id', $user->id)->first(); + $targetGroup = MemberKelompokTani::where('user_id', $alternatif->user_id)->first(); + + if (!$adminGroup || !$targetGroup || $adminGroup->kelompok_tani_id !== $targetGroup->kelompok_tani_id) { + abort(403, 'Anda tidak punya izin untuk mengedit alternatif ini.'); + } + } elseif ($alternatif->user_id !== $user->id) { + abort(403, 'Anda tidak punya izin untuk mengedit alternatif ini.'); + } + + $alternatif->update([ + 'nama_lahan' => $request->nama_lahan + ]); + + return redirect()->route('alternatif.index')->with('success', 'Data berhasil diperbarui!'); + } + + public function destroy($id) + { + $alternatif = Alternatif::findOrFail($id); + $user = Auth::user(); + + if ($user->role === 'super_admin') { + // bisa hapus semua + } elseif ($user->role === 'admin') { + $adminGroup = MemberKelompokTani::where('user_id', $user->id)->first(); + $targetGroup = MemberKelompokTani::where('user_id', $alternatif->user_id)->first(); + + if (!$adminGroup || !$targetGroup || $adminGroup->kelompok_tani_id !== $targetGroup->kelompok_tani_id) { + abort(403, 'Tidak diizinkan menghapus alternatif ini.'); + } + } elseif ($alternatif->user_id !== $user->id) { + abort(403, 'Tidak diizinkan menghapus alternatif ini.'); + } + + $alternatif->delete(); + + return redirect()->route('alternatif.index')->with('success', 'Alternatif berhasil dihapus.'); + } + + public function destroyAll() + { + $user = Auth::user(); + + if ($user->role === 'super_admin') { + DB::table('data_penilaian')->delete(); + DB::table('data_alternatifs')->delete(); + } elseif ($user->role === 'admin') { + $member = MemberKelompokTani::where('user_id', $user->id)->first(); + if (!$member) return redirect()->back()->with('error', 'Kelompok tidak ditemukan.'); + + $userIds = MemberKelompokTani::where('kelompok_tani_id', $member->kelompok_tani_id)->pluck('user_id'); + + $altIds = Alternatif::whereIn('user_id', $userIds)->pluck('id'); + + DB::table('data_penilaian')->whereIn('alternatif_id', $altIds)->delete(); + Alternatif::whereIn('id', $altIds)->delete(); + } else { + $altIds = Alternatif::where('user_id', $user->id)->pluck('id'); + DB::table('data_penilaian')->whereIn('alternatif_id', $altIds)->delete(); + Alternatif::where('user_id', $user->id)->delete(); + } + + return redirect()->route('alternatif.index')->with('success', 'Data alternatif berhasil dihapus.'); + } +} diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php new file mode 100644 index 0000000..20ddd0b --- /dev/null +++ b/app/Http/Controllers/Controller.php @@ -0,0 +1,12 @@ +input('periode'); + + $isSuperAdmin = $user->role === 'super_admin'; + $isAdmin = $user->role === 'admin'; + + // Ambil daftar user_id yang boleh diakses + if ($isSuperAdmin) { + $accessibleUserIds = User::pluck('id'); + } elseif ($isAdmin) { + $adminMember = MemberKelompokTani::where('user_id', $user->id)->first(); + $accessibleUserIds = MemberKelompokTani::where('kelompok_tani_id', $adminMember->kelompok_tani_id) + ->pluck('user_id'); + } else { + $accessibleUserIds = collect([$user->id]); + } + + // Data historis (filter berdasarkan user_id yang boleh diakses) + $query = HistorisPerhitungan::whereIn('user_id', $accessibleUserIds); + + if ($periode) { + $query->where('periode', $periode); + } + + $historis = $query->orderBy('periode', 'desc')->paginate(10); + + // Chart Data + $chartSubquery = DB::table('historis_perhitungan') + ->select('periode', DB::raw('MAX(nilai_akhir) as max_nilai'), 'user_id') + ->whereIn('user_id', $accessibleUserIds) + ->groupBy('periode', 'user_id'); + + $chartQuery = DB::table('historis_perhitungan as h1') + ->joinSub($chartSubquery, 'h2', function ($join) { + $join->on('h1.periode', '=', 'h2.periode') + ->on('h1.nilai_akhir', '=', 'h2.max_nilai') + ->on('h1.user_id', '=', 'h2.user_id'); + }) + ->select('h1.periode', 'h1.nilai_akhir', 'h1.nama_lahan') + ->orderBy('h1.periode', 'asc'); + + $chartData = $chartQuery->get(); + + return view('admin.dashboard', [ + 'title' => 'Dashboard', + 'jumlahKriteria' => Kriteria::count(), + 'jumlahSubkriteria' => SubKriteria::count(), + 'jumlahAlternatif' => Alternatif::whereIn('user_id', $accessibleUserIds)->count(), + 'jumlahUser' => $isSuperAdmin ? User::count() : $accessibleUserIds->count(), + 'user' => $user, + 'historis' => $historis, + 'periode' => $periode, + 'chartData' => $chartData + ]); + } +} diff --git a/app/Http/Controllers/HistorisPerhitunganController.php b/app/Http/Controllers/HistorisPerhitunganController.php new file mode 100644 index 0000000..fdcac9b --- /dev/null +++ b/app/Http/Controllers/HistorisPerhitunganController.php @@ -0,0 +1,18 @@ +role !== 'super_admin') { + abort(403, 'Anda tidak punya akses.'); + } + + $kelompokTani = KelompokTani::all(); + return view('admin.kelompoktani', [ + 'kelompokTani' => $kelompokTani, + 'title' => 'Kelola Kelompok Tani' + ]); + } + + // Menyimpan data kelompok tani baru + public function store(Request $request) + { + $user = Auth::user(); + + if (!$user || $user->role !== 'super_admin') { + abort(403, 'Anda tidak punya akses.'); + } + $request->validate([ + 'nama' => 'required|string|max:255', + ]); + + KelompokTani::create([ + 'nama' => $request->nama, + ]); + + return redirect()->route('kelompoktani.index')->with('success', 'Kelompok Tani berhasil ditambahkan.'); + } + + // Menampilkan form edit (kalau pakai modal, bagian ini tidak dipakai) + // public function edit(string $id) + // { + // $kelompok = KelompokTani::findOrFail($id); + // return view('admin.edit-kelompok', compact('kelompok')); + // } + + // Update data kelompok tani + public function update(Request $request, string $id) + { + $user = Auth::user(); + + if (!$user || $user->role !== 'super_admin') { + abort(403, 'Anda tidak punya akses.'); + } + $request->validate([ + 'nama' => 'required|string|max:255', + ]); + + $kelompok = KelompokTani::findOrFail($id); + $kelompok->update([ + 'nama' => $request->nama, + ]); + + return redirect()->route('kelompoktani.index')->with('success', 'Kelompok Tani berhasil diperbarui.'); + } + + // Hapus data kelompok tani + public function destroy(string $id) + { + $user = Auth::user(); + + if (!$user || $user->role !== 'super_admin') { + abort(403, 'Anda tidak punya akses.'); + } + $kelompok = KelompokTani::findOrFail($id); + $kelompok->delete(); + + return redirect()->route('kelompoktani.index')->with('success', 'Kelompok Tani berhasil dihapus.'); + } +} diff --git a/app/Http/Controllers/KriteriaController.php b/app/Http/Controllers/KriteriaController.php new file mode 100644 index 0000000..844413a --- /dev/null +++ b/app/Http/Controllers/KriteriaController.php @@ -0,0 +1,110 @@ +role, ['super_admin', 'admin'])) { + abort(403, 'Anda tidak punya akses.'); + } + + $kriterias = Kriteria::all(); + return view('admin.kriteria', [ + 'kriterias' => $kriterias, + 'title' => 'Data Kriteria' + ]); + } + + // Simpan kriteria baru + public function store(Request $request) + { + $user = Auth::user(); + + if (!$user || !in_array($user->role, ['super_admin', 'admin'])) { + abort(403, 'Anda tidak punya akses.'); + } + + $validated = $request->validate([ + 'kode_kriteria' => 'required|string|max:10', + 'nama_kriteria' => 'required|string|max:255', + 'jenis' => 'required|in:benefit,cost', + 'bobot' => 'required|numeric|min:0|max:100', + ]); + + // Hitung jumlah kriteria yang sudah ada + $jumlahKriteria = \App\Models\Kriteria::count(); + $totalBobot = \App\Models\Kriteria::sum('bobot'); + + // Cek jika sudah 6 kriteria atau bobot akan melebihi 100 + if ($jumlahKriteria >= 6) { + return redirect()->back()->with('error', 'Jumlah maksimal kriteria adalah 6.'); + } + + if ($totalBobot + $request->bobot > 100) { + return redirect()->back()->with('error', 'Total bobot tidak boleh melebihi 100.'); + } + + // Simpan + \App\Models\Kriteria::create($validated); + + return redirect()->route('kriteria.index')->with('success', 'Kriteria berhasil disimpan.'); + } + + + public function update(Request $request, $id) + { + $user = Auth::user(); + + if (!$user || !in_array($user->role, ['super_admin', 'admin'])) { + abort(403, 'Anda tidak punya akses.'); + } + + $request->validate([ + 'kode_kriteria' => 'required', + 'nama_kriteria' => 'required', + 'jenis' => 'required|in:benefit,cost', + 'bobot' => 'required|numeric', + ]); + + $kriteria = Kriteria::findOrFail($id); + + // Hitung total bobot dari semua kriteria KECUALI yang sedang diupdate + $totalBobotLain = Kriteria::where('id', '!=', $id)->sum('bobot'); + + // Bobot baru dari input + $bobotBaru = $request->bobot; + + if (($totalBobotLain + $bobotBaru) > 100) { + return redirect()->back()->with('error', 'Total bobot melebihi 100. Silakan kurangi bobot.'); + } + + $kriteria->update($request->all()); + + return redirect()->route('kriteria.index')->with('success', 'Data berhasil diperbarui!'); + } + + + // Hapus kriteria + public function destroy($id) + { + $user = Auth::user(); + + if (!$user || !in_array($user->role, ['super_admin', 'admin'])) { + abort(403, 'Anda tidak punya akses.'); + } + + $kriteria = Kriteria::findOrFail($id); + $kriteria->delete(); + + return redirect()->back()->with('success', 'Data kriteria berhasil dihapus.'); + } +} diff --git a/app/Http/Controllers/PenilaianController.php b/app/Http/Controllers/PenilaianController.php new file mode 100644 index 0000000..333c668 --- /dev/null +++ b/app/Http/Controllers/PenilaianController.php @@ -0,0 +1,89 @@ +role === 'super_admin') { + $alternatifs = Alternatif::all(); + } elseif ($user->role === 'admin') { + $member = MemberKelompokTani::where('user_id', $user->id)->first(); + if ($member) { + $userIds = MemberKelompokTani::where('kelompok_tani_id', $member->kelompok_tani_id) + ->pluck('user_id'); + $alternatifs = Alternatif::whereIn('user_id', $userIds)->get(); + } else { + $alternatifs = collect(); // kosong jika admin belum terdaftar di kelompok + } + } else { + $alternatifs = Alternatif::where('user_id', $user->id)->get(); + } + + $kriterias = Kriteria::all(); + $subKriterias = SubKriteria::all(); + + return view('admin.penilaian', [ + 'alternatifs' => $alternatifs, + 'kriterias' => $kriterias, + 'subKriterias' => $subKriterias, + 'title' => 'Penilaian Alternatif' + ]); + } + + public function store(Request $request) + { + $user = Auth::user(); + + $request->validate([ + 'penilaian' => 'required|array', + ]); + + foreach ($request->penilaian as $alternatifId => $kriteriaData) { + $alternatif = Alternatif::find($alternatifId); + + // Pastikan user hanya menilai alternatif yang berhak dia akses + if (!$alternatif) continue; + + if ($user->role === 'super_admin') { + // Super admin bisa menilai semua + } elseif ($user->role === 'admin') { + $adminGroup = MemberKelompokTani::where('user_id', $user->id)->first(); + $targetGroup = MemberKelompokTani::where('user_id', $alternatif->user_id)->first(); + + if (!$adminGroup || !$targetGroup || $adminGroup->kelompok_tani_id !== $targetGroup->kelompok_tani_id) { + continue; // skip jika beda kelompok + } + } elseif ($alternatif->user_id !== $user->id) { + continue; // user hanya bisa menilai lahan sendiri + } + + // Simpan atau update penilaian + foreach ($kriteriaData as $kriteriaId => $subKriteriaId) { + Penilaian::updateOrCreate( + [ + 'alternatif_id' => $alternatifId, + 'kriteria_id' => $kriteriaId, + ], + [ + 'subkriteria_id' => $subKriteriaId, + ] + ); + } + } + + return redirect()->route('penilaian.index')->with('success', 'Penilaian berhasil disimpan!'); + } +} diff --git a/app/Http/Controllers/PerhitunganController.php b/app/Http/Controllers/PerhitunganController.php new file mode 100644 index 0000000..a266e10 --- /dev/null +++ b/app/Http/Controllers/PerhitunganController.php @@ -0,0 +1,258 @@ +get(); + $penilaians = Penilaian::with('subkriteria')->get(); + + // Ambil alternatif sesuai role + if ($user->role === 'super_admin') { + $alternatifs = Alternatif::all(); + } elseif ($user->role === 'admin') { + $member = MemberKelompokTani::where('user_id', $user->id)->first(); + if ($member) { + $userIds = MemberKelompokTani::where('kelompok_tani_id', $member->kelompok_tani_id)->pluck('user_id'); + $alternatifs = Alternatif::whereIn('user_id', $userIds)->get(); + } else { + $alternatifs = collect(); // kosong jika admin belum terdaftar di kelompok + } + } else { + $alternatifs = Alternatif::where('user_id', $user->id)->get(); + } + + // STEP 1: ANALISA (nilai asli) + $analisa = []; + foreach ($alternatifs as $alt) { + $row = ['nama_lahan' => $alt->nama_lahan]; + foreach ($kriterias as $krit) { + $penilaian = $penilaians->where('alternatif_id', $alt->id) + ->where('kriteria_id', $krit->id) + ->first(); + $nilai = $penilaian && $penilaian->subkriteria ? $penilaian->subkriteria->bobot : 0; + $row[$krit->nama_kriteria] = $nilai; + } + $analisa[] = $row; + } + + // STEP 2: MAX / MIN untuk normalisasi + $maxValues = []; + $minValues = []; + foreach ($kriterias as $krit) { + $nilaiList = []; + foreach ($alternatifs as $alt) { + $penilaian = $penilaians->where('alternatif_id', $alt->id) + ->where('kriteria_id', $krit->id) + ->first(); + $nilai = $penilaian && $penilaian->subkriteria ? $penilaian->subkriteria->bobot : 0; + $nilaiList[] = $nilai; + } + $maxValues[$krit->nama_kriteria] = !empty($nilaiList) ? max($nilaiList) : 0; + $minValues[$krit->nama_kriteria] = !empty($nilaiList) ? min($nilaiList) : 0; + } + + // STEP 3: Normalisasi + $normalisasi = []; + foreach ($alternatifs as $alt) { + $row = ['nama_lahan' => $alt->nama_lahan]; + foreach ($kriterias as $krit) { + $penilaian = $penilaians->where('alternatif_id', $alt->id) + ->where('kriteria_id', $krit->id) + ->first(); + $nilai = $penilaian && $penilaian->subkriteria ? $penilaian->subkriteria->bobot : 0; + + $max = $maxValues[$krit->nama_kriteria] ?? 0; + $min = $minValues[$krit->nama_kriteria] ?? 0; + + if ($krit->jenis === 'Benefit') { + $normal = $max != 0 ? $nilai / $max : 0; + } else { + $normal = $nilai != 0 ? $min / $nilai : 0; + } + + $row[$krit->nama_kriteria] = round($normal, 4); + } + $normalisasi[] = $row; + } + + // STEP 4: Konversi bobot + $bobotDesimal = []; + foreach ($kriterias as $krit) { + $bobotDesimal[$krit->nama_kriteria] = $krit->bobot / 100; + } + +// STEP 5: Hitung Ranking +$ranking = []; +foreach ($alternatifs as $alt) { + $skor = 0; + $saran = []; + + foreach ($kriterias as $krit) { + $penilaian = $penilaians->where('alternatif_id', $alt->id) + ->where('kriteria_id', $krit->id) + ->first(); + + $nilai = $penilaian && $penilaian->subkriteria ? $penilaian->subkriteria->bobot : 0; + $normal = 0; + + if ($krit->jenis === 'Benefit') { + $max = $maxValues[$krit->nama_kriteria] ?? 0; + $normal = $max != 0 ? $nilai / $max : 0; + } else { + $min = $minValues[$krit->nama_kriteria] ?? 0; + $normal = $nilai != 0 ? $min / $nilai : 0; + } + + $skor += $normal * ($krit->bobot / 100); + + $sub = $penilaian?->subkriteria; + if ($sub) { + switch (strtolower($krit->nama_kriteria)) { + case 'curah hujan': + if ($sub->nama_sub_kriteria === '51 – 100 mm') { + $saran[] = "Curah hujan optimal untuk budidaya cabai. Tidak perlu intervensi tambahan terhadap sistem irigasi."; + } elseif ($sub->nama_sub_kriteria === '101 – 200 mm') { + $saran[] = "Curah hujan cukup tinggi. Pastikan drainase lahan baik agar akar tanaman tidak tergenang."; + } elseif ($sub->nama_sub_kriteria === '201 – 300 mm') { + $saran[] = "Curah hujan tinggi. Disarankan menggunakan bedengan tinggi dan sistem saluran air yang efisien untuk mencegah kebusukan akar."; + } elseif ($sub->nama_sub_kriteria === '< 50 atau > 300 mm') { + $saran[] = "Curah hujan ekstrem (terlalu rendah atau terlalu tinggi). Perlu sistem irigasi tambahan saat kering, dan peneduh serta drainase baik saat musim hujan."; + } + break; + case 'ph tanah': + if ($sub->nama_sub_kriteria === '6.0 – 6.8') { + $saran[] = "pH tanah berada dalam rentang optimal untuk tanaman cabai. Tidak perlu tindakan korektif."; + } elseif ($sub->nama_sub_kriteria === '5.5 – 5.9 atau 6.9 – 7.2') { + $saran[] = "pH tanah mendekati optimal, namun tetap disarankan memantau kondisi dan menyesuaikan dengan jenis varietas cabai."; + } elseif ($sub->nama_sub_kriteria === '5.0 – 5.4 atau 7.3 – 7.5') { + $saran[] = "pH tanah cukup menyimpang dari kondisi ideal. Pertimbangkan untuk menambahkan dolomit (kapur pertanian) atau belerang sesuai kebutuhan."; + } elseif ($sub->nama_sub_kriteria === '< 5.0 atau > 7.5') { + $saran[] = "pH tanah terlalu ekstrem untuk budidaya cabai. Lakukan koreksi tanah secara bertahap dan intensif untuk menyesuaikan ke tingkat netral."; + } + break; + case 'tekstur tanah': + if ($sub->nama_sub_kriteria === 'Lempung Berpasir') { + $saran[] = "Tekstur tanah sangat ideal untuk cabai. Sirkulasi udara dan drainase baik. Tidak perlu perbaikan."; + } elseif ($sub->nama_sub_kriteria === 'Lempung') { + $saran[] = "Tanah masih baik untuk cabai, meskipun perlu perhatian pada drainase terutama saat musim hujan."; + } elseif ($sub->nama_sub_kriteria === 'Lempung Liat') { + $saran[] = "Tanah agak berat, sebaiknya diberi bahan organik (kompos/pupuk kandang) untuk meningkatkan porositas."; + } elseif ($sub->nama_sub_kriteria === 'Berpasir Kasar atau Liat Berat') { + $saran[] = "Tekstur tanah kurang sesuai. Tambahkan bahan organik atau lakukan pencampuran tanah untuk meningkatkan struktur."; + } + break; + case 'temperatur': + if ($sub->nama_sub_kriteria === '24 - 28 °C') { + $saran[] = "Temperatur sangat ideal untuk pertumbuhan cabai. Tidak diperlukan tindakan tambahan."; + } elseif ($sub->nama_sub_kriteria === '29 – 32 °C atau 17 – 23 °C') { + $saran[] = "Temperatur cukup mendukung, namun pemantauan kelembapan tanah dan penyiraman teratur disarankan."; + } elseif ($sub->nama_sub_kriteria === '33 – 34 °C atau 14 – 16 °C') { + $saran[] = "Temperatur cenderung ekstrem, pertimbangkan penggunaan naungan atau penghangat untuk menstabilkan suhu."; + } elseif ($sub->nama_sub_kriteria === '> 34 °C atau < 14 °C') { + $saran[] = "Temperatur tidak cocok untuk cabai. Disarankan memilih tanaman yang lebih tahan suhu ekstrem atau melakukan penyesuaian mikroklimat."; + } + break; + case 'kelembapan': + if ($sub->nama_sub_kriteria === '60 – 80%') { + $saran[] = "Kelembapan sangat ideal untuk pertumbuhan cabai. Tidak diperlukan penyesuaian."; + } elseif ($sub->nama_sub_kriteria === '50 – 59%') { + $saran[] = "Kelembapan cukup baik, namun tetap jaga irigasi agar tetap stabil."; + } elseif ($sub->nama_sub_kriteria === '40 – 49%') { + $saran[] = "Kelembapan mulai rendah. Disarankan untuk meningkatkan frekuensi penyiraman atau memasang mulsa."; + } elseif ($sub->nama_sub_kriteria === '< 40% atau > 80%') { + $saran[] = "Kelembapan ekstrem. Perlu pengaturan irigasi atau drainase agar kondisi tanah sesuai kebutuhan cabai."; + } + break; + case 'tanaman sebelumnya': + if ($sub->nama_sub_kriteria === 'Padi, Jagung, Tebu, Bawang') { + $saran[] = "Tanaman sebelumnya sangat ideal. Lahan dalam kondisi baik untuk ditanami cabai."; + } elseif ($sub->nama_sub_kriteria === 'Bayam, Sawi, Kacang Tanah') { + $saran[] = "Tanaman sebelumnya cukup baik. Disarankan untuk melakukan pemupukan awal sebelum tanam cabai."; + } elseif ($sub->nama_sub_kriteria === 'Tomat, Terong, Tembakau') { + $saran[] = "Tanaman sebelumnya masih satu keluarga dengan cabai. Waspadai penyakit yang mungkin tertinggal di tanah."; + } elseif ($sub->nama_sub_kriteria === 'Semua Jenis Tanaman Cabai') { + $saran[] = "Tidak disarankan menanam cabai secara berulang. Rotasi tanaman diperlukan untuk mencegah resistensi penyakit."; + } + break; + } + } + } + + $ranking[] = [ + 'nama_lahan' => $alt->nama_lahan, + 'nilai_akhir' => round($skor, 4), + 'rekomendasi' => $saran, + ]; +} + +$ranking = collect($ranking)->sortByDesc('nilai_akhir')->values()->map(function ($item, $index) { + $item['ranking'] = $index + 1; + return $item; +})->toArray(); + +return view('admin.perhitungan', [ + 'analisa' => $analisa, + 'normalisasi' => $normalisasi, + 'ranking' => $ranking, + 'kriterias' => $kriterias, + 'title' => 'Perhitungan SAW', +]); + } + + public function simpanKeHistoris(Request $request) + { + $user = Auth::user(); + $hasilPerhitungan = $request->input('hasil'); + $periode = Carbon::now()->format('Y-m'); + + foreach ($hasilPerhitungan as $hasil) { + HistorisPerhitungan::create([ + 'nama_lahan' => $hasil['nama_lahan'], + 'user_id' => $user->id, + 'nilai_akhir' => $hasil['nilai_akhir'], + 'periode' => $periode, + ]); + } + + return redirect()->back()->with('success', 'Hasil perhitungan berhasil disimpan ke historis!'); + } + + public function historis() + { + $user = Auth::user(); + + if ($user->role === 'super_admin') { + $hasil_perhitungan = HistorisPerhitungan::all(); + } elseif ($user->role === 'admin') { + $member = MemberKelompokTani::where('user_id', $user->id)->first(); + if ($member) { + $userIds = MemberKelompokTani::where('kelompok_tani_id', $member->kelompok_tani_id) + ->pluck('user_id'); + $hasil_perhitungan = HistorisPerhitungan::whereIn('user_id', $userIds)->get(); + } else { + $hasil_perhitungan = collect(); // kosong + } + } else { + $hasil_perhitungan = HistorisPerhitungan::where('user_id', $user->id)->get(); + } + + return view('admin.historis', [ + 'hasil_perhitungan' => $hasil_perhitungan, + 'title' => 'Riwayat Perhitungan SAW', + ]); + } +} diff --git a/app/Http/Controllers/SubKriteriaController.php b/app/Http/Controllers/SubKriteriaController.php new file mode 100644 index 0000000..2fc88a2 --- /dev/null +++ b/app/Http/Controllers/SubKriteriaController.php @@ -0,0 +1,94 @@ +role, ['super_admin', 'admin'])) { + abort(403, 'Anda tidak punya akses.'); + } + + $kriteria = Kriteria::findOrFail($kriteria_id); + $subkriteria = SubKriteria::where('kriteria_id', $kriteria_id)->get(); + + return view('admin.subkriteria', [ + 'kriteria' => $kriteria, + 'subkriteria' => $subkriteria, + 'title' => 'Sub-Kriteria - ' . $kriteria->nama_kriteria + ]); + } + + public function store(Request $request) + { + $user = Auth::user(); + + if (!$user || !in_array($user->role, ['super_admin', 'admin'])) { + abort(403, 'Anda tidak punya akses.'); + } + + $validated = $request->validate([ + 'kriteria_id' => 'required|exists:data_kriterias,id', + 'nama_sub_kriteria' => 'required|string|max:255', + 'bobot' => 'required|numeric|between:1,4', + ]); + + // Hitung jumlah subkriteria yang sudah ada untuk kriteria ini + $jumlahSub = \App\Models\SubKriteria::where('kriteria_id', $request->kriteria_id)->count(); + + if ($jumlahSub >= 4) { + return redirect()->back()->with('error', 'Subkriteria maksimal hanya 4 untuk setiap kriteria.'); + } + + SubKriteria::create($validated); + + return redirect()->back()->with('success', 'Subkriteria berhasil ditambahkan.'); + } + + + public function update(Request $request, $id) + { + $user = Auth::user(); + + if (!$user || !in_array($user->role, ['super_admin', 'admin'])) { + abort(403, 'Anda tidak punya akses.'); + } + + $request->validate([ + 'nama_sub_kriteria' => 'required|string|max:255', + 'bobot' => 'required|numeric|between:1,4', + ]); + + $subkriteria = SubKriteria::findOrFail($id); + $subkriteria->update([ + 'nama_sub_kriteria' => $request->nama_sub_kriteria, + 'bobot' => $request->bobot, + ]); + + return redirect()->back()->with('success', 'Subkriteria berhasil diperbarui.'); + } + + + public function destroy($id) + { + $user = Auth::user(); + + if (!$user || !in_array($user->role, ['super_admin', 'admin'])) { + abort(403, 'Anda tidak punya akses.'); + } + + $subkriteria = SubKriteria::findOrFail($id); + $subkriteria->delete(); + + return redirect()->route('admin.subkriteria.index', ['kriteria_id' => $subkriteria->kriteria_id]) + ->with('success', 'Subkriteria berhasil dihapus'); + } +} diff --git a/app/Http/Controllers/UserSettingController.php b/app/Http/Controllers/UserSettingController.php new file mode 100644 index 0000000..4631034 --- /dev/null +++ b/app/Http/Controllers/UserSettingController.php @@ -0,0 +1,171 @@ +role === 'super_admin') { + $users = User::with(['kelompokTani'])->get(); + $kelompokTani = KelompokTani::all(); + } elseif ($userLogin->role === 'admin') { + $adminKelompok = MemberKelompokTani::where('user_id', $userLogin->id)->first(); + $userIds = MemberKelompokTani::where('kelompok_tani_id', $adminKelompok->kelompok_tani_id) + ->pluck('user_id'); + $users = User::whereIn('id', $userIds)->with('kelompokTani')->get(); + $kelompokTani = []; + } else { + $users = User::where('id', $userLogin->id)->with('kelompokTani')->get(); + $kelompokTani = []; + } + + return view('admin.usersetting', [ + 'users' => $users, + 'kelompokTani' => $kelompokTani, + 'title' => 'Data User' + ]); + } + + public function store(Request $request) + { + $userLogin = Auth::user(); + + if (!in_array($userLogin->role, ['admin', 'super_admin'])) { + abort(403, 'Tidak punya izin'); + } + + $rules = [ + 'name' => 'required|string|max:255', + 'username' => 'required|string|max:255|unique:users,username', + 'password' => 'required|string|min:6', + 'role' => 'required|string|in:admin,user' + ]; + + if ($userLogin->role === 'super_admin') { + $rules['kelompok_tani_id'] = 'required|exists:kelompok_tani,id'; + } + + $request->validate($rules); + + $newUser = User::create([ + 'name' => $request->name, + 'username' => $request->username, + 'password' => Hash::make($request->password), + 'role' => $request->role, + ]); + + if ($userLogin->role === 'super_admin') { + $kelompokTaniId = $request->kelompok_tani_id; + } else { + $adminKelompok = MemberKelompokTani::where('user_id', $userLogin->id)->first(); + if (!$adminKelompok) { + return redirect()->back()->with('error', 'Admin belum terdaftar di kelompok tani.'); + } + $kelompokTaniId = $adminKelompok->kelompok_tani_id; + } + + MemberKelompokTani::create([ + 'user_id' => $newUser->id, + 'kelompok_tani_id' => $kelompokTaniId, + 'role' => $request->role + ]); + + return redirect()->back()->with('success', 'User berhasil ditambahkan.'); + } + + public function update(Request $request, $id) + { + $userLogin = Auth::user(); + $user = User::findOrFail($id); + + $loginKelompok = MemberKelompokTani::where('user_id', $userLogin->id)->first(); + $targetKelompok = MemberKelompokTani::where('user_id', $user->id)->first(); + + if ($user->role === 'super_admin' && $userLogin->id !== $user->id) { + abort(403, 'Tidak diizinkan mengubah akun super admin.'); + } + + if ($userLogin->role !== 'super_admin' && + ($userLogin->id !== $user->id && $loginKelompok->kelompok_tani_id !== $targetKelompok->kelompok_tani_id)) { + abort(403, 'Tidak diizinkan mengedit user di luar kelompok.'); + } + + $rules = [ + 'name' => 'required|string|max:255', + 'username' => 'required|string|max:255|unique:users,username,' . $user->id, + 'password' => 'nullable|string|min:6', + 'role' => 'required|string|in:admin,user' + ]; + + if ($userLogin->role === 'super_admin') { + $rules['kelompok_tani_id'] = 'required|exists:kelompok_tani,id'; + } + + $request->validate($rules); + + $data = [ + 'name' => $request->name, + 'username' => $request->username, + 'role' => $request->role, + ]; + + if ($request->filled('password')) { + $data['password'] = Hash::make($request->password); + } + + $user->update($data); + + if ($targetKelompok) { + $targetKelompok->role = $request->role; + + if ($userLogin->role === 'super_admin') { + $targetKelompok->kelompok_tani_id = $request->kelompok_tani_id; + } + + $targetKelompok->save(); + } + + return redirect()->route('usersetting.index')->with('success', 'User berhasil diperbarui.'); + } + + public function destroy($id) + { + $userLogin = Auth::user(); + $user = User::findOrFail($id); + + if ($userLogin->id === $user->id) { + return redirect()->back()->with('error', 'Kamu tidak bisa menghapus akunmu sendiri.'); + } + if ($userLogin->role === 'admin' && $user->role === 'admin') { + return back()->with('error', 'Admin tidak boleh menghapus sesama admin.'); + } + + $loginKelompok = MemberKelompokTani::where('user_id', $userLogin->id)->first(); + $targetKelompok = MemberKelompokTani::where('user_id', $user->id)->first(); + + if ($user->role === 'super_admin') { + abort(403, 'Tidak diizinkan menghapus akun super admin.'); + } + + if ($userLogin->role !== 'super_admin') { + if (!$loginKelompok || !$targetKelompok || + $loginKelompok->kelompok_tani_id !== $targetKelompok->kelompok_tani_id) { + abort(403, 'Tidak diizinkan menghapus user di luar kelompok.'); + } + } + + $user->delete(); + + return redirect()->route('usersetting.index')->with('success', 'User berhasil dihapus.'); + } +} \ No newline at end of file diff --git a/app/Http/Controllers/auth/LoginController.php b/app/Http/Controllers/auth/LoginController.php new file mode 100644 index 0000000..1541138 --- /dev/null +++ b/app/Http/Controllers/auth/LoginController.php @@ -0,0 +1,45 @@ +only('username', 'password'); + + if (Auth::attempt($credentials)) { + $request->session()->regenerate(); + return redirect()->intended(route('dashboard')); + } + + return back()->withErrors([ + 'username' => 'Username atau password salah.', + ])->withInput(); + } + + public function logout(Request $request) + { + Auth::logout(); + $request->session()->invalidate(); + $request->session()->regenerateToken(); + + return redirect('/'); // arahkan sesuai rute login kamu + } + + public function username() + { + return 'username'; // pakai username, bukan email + } +} + + diff --git a/app/Http/Middleware/RoleMiddleware.php b/app/Http/Middleware/RoleMiddleware.php new file mode 100644 index 0000000..b5e2141 --- /dev/null +++ b/app/Http/Middleware/RoleMiddleware.php @@ -0,0 +1,19 @@ +role !== $role) { + abort(403, 'Unauthorized'); + } + + return $next($request); + } +} diff --git a/app/Models/Alternatif.php b/app/Models/Alternatif.php new file mode 100644 index 0000000..359c3db --- /dev/null +++ b/app/Models/Alternatif.php @@ -0,0 +1,30 @@ +hasMany(Penilaian::class, 'alternatif_id'); + } + + public function historisPerhitungans() + { + return $this->hasMany(HistorisPerhitungan::class, 'alternatif_id'); + } + public function user() + { + return $this->belongsTo(User::class); + } +} + + diff --git a/app/Models/HistorisPerhitungan.php b/app/Models/HistorisPerhitungan.php new file mode 100644 index 0000000..d32045a --- /dev/null +++ b/app/Models/HistorisPerhitungan.php @@ -0,0 +1,11 @@ +hasMany(MemberKelompokTani::class); + } + public function users() + { + return $this->belongsToMany(User::class, 'member_kelompok_tani', 'kelompok_tani_id', 'user_id'); + } + +} diff --git a/app/Models/Kriteria.php b/app/Models/Kriteria.php new file mode 100644 index 0000000..e1bfe68 --- /dev/null +++ b/app/Models/Kriteria.php @@ -0,0 +1,23 @@ +hasMany(SubKriteria::class); + } + public function penilaians() + { + return $this->hasMany(Penilaian::class, 'kriteria_id'); + } + +} + diff --git a/app/Models/MemberKelompokTani.php b/app/Models/MemberKelompokTani.php new file mode 100644 index 0000000..e6e326b --- /dev/null +++ b/app/Models/MemberKelompokTani.php @@ -0,0 +1,21 @@ +belongsTo(User::class); + } + + public function kelompok() + { + return $this->belongsTo(KelompokTani::class, 'kelompok_tani_id'); + } +} diff --git a/app/Models/Penilaian.php b/app/Models/Penilaian.php new file mode 100644 index 0000000..ec907cc --- /dev/null +++ b/app/Models/Penilaian.php @@ -0,0 +1,35 @@ +belongsTo(Alternatif::class, 'alternatif_id'); + } + + public function kriteria() + { + return $this->belongsTo(Kriteria::class, 'kriteria_id'); + } + + public function subkriteria() + { + return $this->belongsTo(SubKriteria::class, 'subkriteria_id'); + } + + +} + diff --git a/app/Models/SubKriteria.php b/app/Models/SubKriteria.php new file mode 100644 index 0000000..ec166e4 --- /dev/null +++ b/app/Models/SubKriteria.php @@ -0,0 +1,35 @@ +belongsTo(Kriteria::class, 'kriteria_id'); + } + + public function penilaians() + { + return $this->hasMany(Penilaian::class); + } + protected static function boot() + { + parent::boot(); + + static::saving(function ($model) { + if ($model->bobot < 1 || $model->bobot > 4) { + throw new \Exception('Nilai bobot harus berada di antara 1 dan 4.'); + } + }); + } +} + diff --git a/app/Models/User.php b/app/Models/User.php new file mode 100644 index 0000000..ec95f00 --- /dev/null +++ b/app/Models/User.php @@ -0,0 +1,63 @@ + */ + use HasFactory, Notifiable; + + /** + * The attributes that are mass assignable. + * + * @var list + */ + protected $fillable = [ + 'name', + 'username', + 'password', + 'role', + ]; + + /** + * The attributes that should be hidden for serialization. + * + * @var list + */ + protected $hidden = [ + 'password', + // 'remember_token', + ]; + + /** + * Get the attributes that should be cast. + * + * @return array + */ + protected function casts(): array + { + return [ + // 'email_verified_at' => 'datetime', + 'password' => 'hashed', + ]; + } + + public function kelompokTani() + { + return $this->belongsToMany(KelompokTani::class, 'member_kelompok_tani', 'user_id', 'kelompok_tani_id'); + } + + + + + // public function posts(): HasMany { + // return $this->hasMany(Post::class, 'author_id'); + // } + +} diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php new file mode 100644 index 0000000..be919e1 --- /dev/null +++ b/app/Providers/AppServiceProvider.php @@ -0,0 +1,26 @@ +handleCommand(new ArgvInput); + +exit($status); diff --git a/bootstrap/app.php b/bootstrap/app.php new file mode 100644 index 0000000..7b162da --- /dev/null +++ b/bootstrap/app.php @@ -0,0 +1,18 @@ +withRouting( + web: __DIR__.'/../routes/web.php', + commands: __DIR__.'/../routes/console.php', + health: '/up', + ) + ->withMiddleware(function (Middleware $middleware) { + // + }) + ->withExceptions(function (Exceptions $exceptions) { + // + })->create(); diff --git a/bootstrap/cache/.gitignore b/bootstrap/cache/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/bootstrap/cache/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/bootstrap/providers.php b/bootstrap/providers.php new file mode 100644 index 0000000..38b258d --- /dev/null +++ b/bootstrap/providers.php @@ -0,0 +1,5 @@ +=5.0.0" + }, + "require-dev": { + "doctrine/dbal": "^4.0.0", + "nesbot/carbon": "^2.71.0 || ^3.0.0", + "phpunit/phpunit": "^10.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Carbon\\Doctrine\\": "src/Carbon/Doctrine/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "KyleKatarn", + "email": "kylekatarnls@gmail.com" + } + ], + "description": "Types to use Carbon in Doctrine", + "keywords": [ + "carbon", + "date", + "datetime", + "doctrine", + "time" + ], + "support": { + "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues", + "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0" + }, + "funding": [ + { + "url": "https://github.com/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", + "type": "tidelift" + } + ], + "time": "2024-02-09T16:56:22+00:00" + }, + { + "name": "dflydev/dot-access-data", + "version": "v3.0.3", + "source": { + "type": "git", + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", + "scrutinizer/ocular": "1.6.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dragonfly Development Inc.", + "email": "info@dflydev.com", + "homepage": "http://dflydev.com" + }, + { + "name": "Beau Simensen", + "email": "beau@dflydev.com", + "homepage": "http://beausimensen.com" + }, + { + "name": "Carlos Frutos", + "email": "carlos@kiwing.it", + "homepage": "https://github.com/cfrutos" + }, + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com" + } + ], + "description": "Given a deep data structure, access data by dot notation.", + "homepage": "https://github.com/dflydev/dflydev-dot-access-data", + "keywords": [ + "access", + "data", + "dot", + "notation" + ], + "support": { + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3" + }, + "time": "2024-07-08T12:26:09+00:00" + }, + { + "name": "doctrine/inflector", + "version": "2.0.10", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^11.0", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^8.5 || ^9.5", + "vimeo/psalm": "^4.25 || ^5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", + "homepage": "https://www.doctrine-project.org/projects/inflector.html", + "keywords": [ + "inflection", + "inflector", + "lowercase", + "manipulation", + "php", + "plural", + "singular", + "strings", + "uppercase", + "words" + ], + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/2.0.10" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", + "type": "tidelift" + } + ], + "time": "2024-02-18T20:23:39+00:00" + }, + { + "name": "doctrine/lexer", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "doctrine/coding-standard": "^12", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^10.5", + "psalm/plugin-phpunit": "^0.18.3", + "vimeo/psalm": "^5.21" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/3.0.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], + "time": "2024-02-05T11:56:58+00:00" + }, + { + "name": "dragonmantank/cron-expression", + "version": "v3.4.0", + "source": { + "type": "git", + "url": "https://github.com/dragonmantank/cron-expression.git", + "reference": "8c784d071debd117328803d86b2097615b457500" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500", + "reference": "8c784d071debd117328803d86b2097615b457500", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0", + "webmozart/assert": "^1.0" + }, + "replace": { + "mtdowling/cron-expression": "^1.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Cron\\": "src/Cron/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Tankersley", + "email": "chris@ctankersley.com", + "homepage": "https://github.com/dragonmantank" + } + ], + "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", + "keywords": [ + "cron", + "schedule" + ], + "support": { + "issues": "https://github.com/dragonmantank/cron-expression/issues", + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0" + }, + "funding": [ + { + "url": "https://github.com/dragonmantank", + "type": "github" + } + ], + "time": "2024-10-09T13:47:03+00:00" + }, + { + "name": "egulias/email-validator", + "version": "4.0.3", + "source": { + "type": "git", + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "b115554301161fa21467629f1e1391c1936de517" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b115554301161fa21467629f1e1391c1936de517", + "reference": "b115554301161fa21467629f1e1391c1936de517", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^2.0 || ^3.0", + "php": ">=8.1", + "symfony/polyfill-intl-idn": "^1.26" + }, + "require-dev": { + "phpunit/phpunit": "^10.2", + "vimeo/psalm": "^5.12" + }, + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Egulias\\EmailValidator\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Eduardo Gulias Davis" + } + ], + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", + "keywords": [ + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" + ], + "support": { + "issues": "https://github.com/egulias/EmailValidator/issues", + "source": "https://github.com/egulias/EmailValidator/tree/4.0.3" + }, + "funding": [ + { + "url": "https://github.com/egulias", + "type": "github" + } + ], + "time": "2024-12-27T00:36:43+00:00" + }, + { + "name": "fruitcake/php-cors", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/fruitcake/php-cors.git", + "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b", + "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b", + "shasum": "" + }, + "require": { + "php": "^7.4|^8.0", + "symfony/http-foundation": "^4.4|^5.4|^6|^7" + }, + "require-dev": { + "phpstan/phpstan": "^1.4", + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "Fruitcake\\Cors\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fruitcake", + "homepage": "https://fruitcake.nl" + }, + { + "name": "Barryvdh", + "email": "barryvdh@gmail.com" + } + ], + "description": "Cross-origin resource sharing library for the Symfony HttpFoundation", + "homepage": "https://github.com/fruitcake/php-cors", + "keywords": [ + "cors", + "laravel", + "symfony" + ], + "support": { + "issues": "https://github.com/fruitcake/php-cors/issues", + "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0" + }, + "funding": [ + { + "url": "https://fruitcake.nl", + "type": "custom" + }, + { + "url": "https://github.com/barryvdh", + "type": "github" + } + ], + "time": "2023-10-12T05:21:21+00:00" + }, + { + "name": "graham-campbell/result-type", + "version": "v1.1.3", + "source": { + "type": "git", + "url": "https://github.com/GrahamCampbell/Result-Type.git", + "reference": "3ba905c11371512af9d9bdd27d99b782216b6945" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945", + "reference": "3ba905c11371512af9d9bdd27d99b782216b6945", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.3" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + }, + "type": "library", + "autoload": { + "psr-4": { + "GrahamCampbell\\ResultType\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "An Implementation Of The Result Type", + "keywords": [ + "Graham Campbell", + "GrahamCampbell", + "Result Type", + "Result-Type", + "result" + ], + "support": { + "issues": "https://github.com/GrahamCampbell/Result-Type/issues", + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", + "type": "tidelift" + } + ], + "time": "2024-07-20T21:45:45+00:00" + }, + { + "name": "guzzlehttp/guzzle", + "version": "7.9.2", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "d281ed313b989f213357e3be1a179f02196ac99b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b", + "reference": "d281ed313b989f213357e3be1a179f02196ac99b", + "shasum": "" + }, + "require": { + "ext-json": "*", + "guzzlehttp/promises": "^1.5.3 || ^2.0.3", + "guzzlehttp/psr7": "^2.7.0", + "php": "^7.2.5 || ^8.0", + "psr/http-client": "^1.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "provide": { + "psr/http-client-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-curl": "*", + "guzzle/client-integration-tests": "3.0.2", + "php-http/message-factory": "^1.1", + "phpunit/phpunit": "^8.5.39 || ^9.6.20", + "psr/log": "^1.1 || ^2.0 || ^3.0" + }, + "suggest": { + "ext-curl": "Required for CURL handler support", + "ext-intl": "Required for Internationalized Domain Name (IDN) support", + "psr/log": "Required for using the Log middleware" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle is a PHP HTTP client library", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "psr-18", + "psr-7", + "rest", + "web service" + ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/7.9.2" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", + "type": "tidelift" + } + ], + "time": "2024-07-24T11:22:20+00:00" + }, + { + "name": "guzzlehttp/promises", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/guzzle/promises.git", + "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455", + "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.39 || ^9.6.20" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle promises library", + "keywords": [ + "promise" + ], + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", + "type": "tidelift" + } + ], + "time": "2024-10-17T10:06:22+00:00" + }, + { + "name": "guzzlehttp/psr7", + "version": "2.7.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201", + "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.1 || ^2.0", + "ralouphie/getallheaders": "^3.0" + }, + "provide": { + "psr/http-factory-implementation": "1.0", + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "http-interop/http-factory-tests": "0.9.0", + "phpunit/phpunit": "^8.5.39 || ^9.6.20" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" + } + ], + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" + ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/2.7.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", + "type": "tidelift" + } + ], + "time": "2024-07-18T11:15:46+00:00" + }, + { + "name": "guzzlehttp/uri-template", + "version": "v1.0.4", + "source": { + "type": "git", + "url": "https://github.com/guzzle/uri-template.git", + "reference": "30e286560c137526eccd4ce21b2de477ab0676d2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/uri-template/zipball/30e286560c137526eccd4ce21b2de477ab0676d2", + "reference": "30e286560c137526eccd4ce21b2de477ab0676d2", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "symfony/polyfill-php80": "^1.24" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.36 || ^9.6.15", + "uri-template/tests": "1.0.0" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\UriTemplate\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + } + ], + "description": "A polyfill class for uri_template of PHP", + "keywords": [ + "guzzlehttp", + "uri-template" + ], + "support": { + "issues": "https://github.com/guzzle/uri-template/issues", + "source": "https://github.com/guzzle/uri-template/tree/v1.0.4" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template", + "type": "tidelift" + } + ], + "time": "2025-02-03T10:55:03+00:00" + }, + { + "name": "laravel/framework", + "version": "v12.2.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "2fb06941bc69ea92f28b2888535ab144ee006889" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/2fb06941bc69ea92f28b2888535ab144ee006889", + "reference": "2fb06941bc69ea92f28b2888535ab144ee006889", + "shasum": "" + }, + "require": { + "brick/math": "^0.11|^0.12", + "composer-runtime-api": "^2.2", + "doctrine/inflector": "^2.0.5", + "dragonmantank/cron-expression": "^3.4", + "egulias/email-validator": "^3.2.1|^4.0", + "ext-ctype": "*", + "ext-filter": "*", + "ext-hash": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-session": "*", + "ext-tokenizer": "*", + "fruitcake/php-cors": "^1.3", + "guzzlehttp/guzzle": "^7.8.2", + "guzzlehttp/uri-template": "^1.0", + "laravel/prompts": "^0.3.0", + "laravel/serializable-closure": "^1.3|^2.0", + "league/commonmark": "^2.6", + "league/flysystem": "^3.25.1", + "league/flysystem-local": "^3.25.1", + "league/uri": "^7.5.1", + "monolog/monolog": "^3.0", + "nesbot/carbon": "^3.8.4", + "nunomaduro/termwind": "^2.0", + "php": "^8.2", + "psr/container": "^1.1.1|^2.0.1", + "psr/log": "^1.0|^2.0|^3.0", + "psr/simple-cache": "^1.0|^2.0|^3.0", + "ramsey/uuid": "^4.7", + "symfony/console": "^7.2.0", + "symfony/error-handler": "^7.2.0", + "symfony/finder": "^7.2.0", + "symfony/http-foundation": "^7.2.0", + "symfony/http-kernel": "^7.2.0", + "symfony/mailer": "^7.2.0", + "symfony/mime": "^7.2.0", + "symfony/polyfill-php83": "^1.31", + "symfony/process": "^7.2.0", + "symfony/routing": "^7.2.0", + "symfony/uid": "^7.2.0", + "symfony/var-dumper": "^7.2.0", + "tijsverkoyen/css-to-inline-styles": "^2.2.5", + "vlucas/phpdotenv": "^5.6.1", + "voku/portable-ascii": "^2.0.2" + }, + "conflict": { + "tightenco/collect": "<5.5.33" + }, + "provide": { + "psr/container-implementation": "1.1|2.0", + "psr/log-implementation": "1.0|2.0|3.0", + "psr/simple-cache-implementation": "1.0|2.0|3.0" + }, + "replace": { + "illuminate/auth": "self.version", + "illuminate/broadcasting": "self.version", + "illuminate/bus": "self.version", + "illuminate/cache": "self.version", + "illuminate/collections": "self.version", + "illuminate/concurrency": "self.version", + "illuminate/conditionable": "self.version", + "illuminate/config": "self.version", + "illuminate/console": "self.version", + "illuminate/container": "self.version", + "illuminate/contracts": "self.version", + "illuminate/cookie": "self.version", + "illuminate/database": "self.version", + "illuminate/encryption": "self.version", + "illuminate/events": "self.version", + "illuminate/filesystem": "self.version", + "illuminate/hashing": "self.version", + "illuminate/http": "self.version", + "illuminate/log": "self.version", + "illuminate/macroable": "self.version", + "illuminate/mail": "self.version", + "illuminate/notifications": "self.version", + "illuminate/pagination": "self.version", + "illuminate/pipeline": "self.version", + "illuminate/process": "self.version", + "illuminate/queue": "self.version", + "illuminate/redis": "self.version", + "illuminate/routing": "self.version", + "illuminate/session": "self.version", + "illuminate/support": "self.version", + "illuminate/testing": "self.version", + "illuminate/translation": "self.version", + "illuminate/validation": "self.version", + "illuminate/view": "self.version", + "spatie/once": "*" + }, + "require-dev": { + "ably/ably-php": "^1.0", + "aws/aws-sdk-php": "^3.322.9", + "ext-gmp": "*", + "fakerphp/faker": "^1.24", + "guzzlehttp/promises": "^2.0.3", + "guzzlehttp/psr7": "^2.4", + "laravel/pint": "^1.18", + "league/flysystem-aws-s3-v3": "^3.25.1", + "league/flysystem-ftp": "^3.25.1", + "league/flysystem-path-prefixing": "^3.25.1", + "league/flysystem-read-only": "^3.25.1", + "league/flysystem-sftp-v3": "^3.25.1", + "mockery/mockery": "^1.6.10", + "orchestra/testbench-core": "^10.0.0", + "pda/pheanstalk": "^5.0.6", + "php-http/discovery": "^1.15", + "phpstan/phpstan": "^2.0", + "phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1", + "predis/predis": "^2.3", + "resend/resend-php": "^0.10.0", + "symfony/cache": "^7.2.0", + "symfony/http-client": "^7.2.0", + "symfony/psr-http-message-bridge": "^7.2.0", + "symfony/translation": "^7.2.0" + }, + "suggest": { + "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", + "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).", + "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).", + "ext-apcu": "Required to use the APC cache driver.", + "ext-fileinfo": "Required to use the Filesystem class.", + "ext-ftp": "Required to use the Flysystem FTP driver.", + "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", + "ext-memcached": "Required to use the memcache cache driver.", + "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.", + "ext-pdo": "Required to use all database features.", + "ext-posix": "Required to use all features of the queue worker.", + "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).", + "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", + "filp/whoops": "Required for friendly error pages in development (^2.14.3).", + "laravel/tinker": "Required to use the tinker console command (^2.0).", + "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).", + "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).", + "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).", + "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)", + "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).", + "mockery/mockery": "Required to use mocking (^1.6).", + "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).", + "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).", + "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.5.3|^12.0.1).", + "predis/predis": "Required to use the predis connector (^2.3).", + "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", + "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).", + "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).", + "symfony/cache": "Required to PSR-6 cache bridge (^7.2).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^7.2).", + "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.2).", + "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.2).", + "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.2).", + "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.2)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "12.x-dev" + } + }, + "autoload": { + "files": [ + "src/Illuminate/Collections/functions.php", + "src/Illuminate/Collections/helpers.php", + "src/Illuminate/Events/functions.php", + "src/Illuminate/Filesystem/functions.php", + "src/Illuminate/Foundation/helpers.php", + "src/Illuminate/Log/functions.php", + "src/Illuminate/Support/functions.php", + "src/Illuminate/Support/helpers.php" + ], + "psr-4": { + "Illuminate\\": "src/Illuminate/", + "Illuminate\\Support\\": [ + "src/Illuminate/Macroable/", + "src/Illuminate/Collections/", + "src/Illuminate/Conditionable/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Laravel Framework.", + "homepage": "https://laravel.com", + "keywords": [ + "framework", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2025-03-12T14:38:20+00:00" + }, + { + "name": "laravel/prompts", + "version": "v0.3.5", + "source": { + "type": "git", + "url": "https://github.com/laravel/prompts.git", + "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/prompts/zipball/57b8f7efe40333cdb925700891c7d7465325d3b1", + "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1", + "shasum": "" + }, + "require": { + "composer-runtime-api": "^2.2", + "ext-mbstring": "*", + "php": "^8.1", + "symfony/console": "^6.2|^7.0" + }, + "conflict": { + "illuminate/console": ">=10.17.0 <10.25.0", + "laravel/framework": ">=10.17.0 <10.25.0" + }, + "require-dev": { + "illuminate/collections": "^10.0|^11.0|^12.0", + "mockery/mockery": "^1.5", + "pestphp/pest": "^2.3|^3.4", + "phpstan/phpstan": "^1.11", + "phpstan/phpstan-mockery": "^1.1" + }, + "suggest": { + "ext-pcntl": "Required for the spinner to be animated." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "0.3.x-dev" + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Laravel\\Prompts\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Add beautiful and user-friendly forms to your command-line applications.", + "support": { + "issues": "https://github.com/laravel/prompts/issues", + "source": "https://github.com/laravel/prompts/tree/v0.3.5" + }, + "time": "2025-02-11T13:34:40+00:00" + }, + { + "name": "laravel/serializable-closure", + "version": "v2.0.3", + "source": { + "type": "git", + "url": "https://github.com/laravel/serializable-closure.git", + "reference": "f379c13663245f7aa4512a7869f62eb14095f23f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f379c13663245f7aa4512a7869f62eb14095f23f", + "reference": "f379c13663245f7aa4512a7869f62eb14095f23f", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "illuminate/support": "^10.0|^11.0|^12.0", + "nesbot/carbon": "^2.67|^3.0", + "pestphp/pest": "^2.36|^3.0", + "phpstan/phpstan": "^2.0", + "symfony/var-dumper": "^6.2.0|^7.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\SerializableClosure\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "nuno@laravel.com" + } + ], + "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", + "keywords": [ + "closure", + "laravel", + "serializable" + ], + "support": { + "issues": "https://github.com/laravel/serializable-closure/issues", + "source": "https://github.com/laravel/serializable-closure" + }, + "time": "2025-02-11T15:03:05+00:00" + }, + { + "name": "laravel/tinker", + "version": "v2.10.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/tinker.git", + "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3", + "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3", + "shasum": "" + }, + "require": { + "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "php": "^7.2.5|^8.0", + "psy/psysh": "^0.11.1|^0.12.0", + "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0" + }, + "require-dev": { + "mockery/mockery": "~1.3.3|^1.4.2", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0" + }, + "suggest": { + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)." + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Tinker\\TinkerServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Tinker\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Powerful REPL for the Laravel framework.", + "keywords": [ + "REPL", + "Tinker", + "laravel", + "psysh" + ], + "support": { + "issues": "https://github.com/laravel/tinker/issues", + "source": "https://github.com/laravel/tinker/tree/v2.10.1" + }, + "time": "2025-01-27T14:24:01+00:00" + }, + { + "name": "league/commonmark", + "version": "2.6.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/commonmark.git", + "reference": "d990688c91cedfb69753ffc2512727ec646df2ad" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d990688c91cedfb69753ffc2512727ec646df2ad", + "reference": "d990688c91cedfb69753ffc2512727ec646df2ad", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "league/config": "^1.1.1", + "php": "^7.4 || ^8.0", + "psr/event-dispatcher": "^1.0", + "symfony/deprecation-contracts": "^2.1 || ^3.0", + "symfony/polyfill-php80": "^1.16" + }, + "require-dev": { + "cebe/markdown": "^1.0", + "commonmark/cmark": "0.31.1", + "commonmark/commonmark.js": "0.31.1", + "composer/package-versions-deprecated": "^1.8", + "embed/embed": "^4.4", + "erusev/parsedown": "^1.0", + "ext-json": "*", + "github/gfm": "0.29.0", + "michelf/php-markdown": "^1.4 || ^2.0", + "nyholm/psr7": "^1.5", + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0", + "scrutinizer/ocular": "^1.8.1", + "symfony/finder": "^5.3 | ^6.0 | ^7.0", + "symfony/process": "^5.4 | ^6.0 | ^7.0", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0", + "unleashedtech/php-coding-standard": "^3.1.1", + "vimeo/psalm": "^4.24.0 || ^5.0.0" + }, + "suggest": { + "symfony/yaml": "v2.3+ required if using the Front Matter extension" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.7-dev" + } + }, + "autoload": { + "psr-4": { + "League\\CommonMark\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", + "homepage": "https://commonmark.thephpleague.com", + "keywords": [ + "commonmark", + "flavored", + "gfm", + "github", + "github-flavored", + "markdown", + "md", + "parser" + ], + "support": { + "docs": "https://commonmark.thephpleague.com/", + "forum": "https://github.com/thephpleague/commonmark/discussions", + "issues": "https://github.com/thephpleague/commonmark/issues", + "rss": "https://github.com/thephpleague/commonmark/releases.atom", + "source": "https://github.com/thephpleague/commonmark" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/commonmark", + "type": "tidelift" + } + ], + "time": "2024-12-29T14:10:59+00:00" + }, + { + "name": "league/config", + "version": "v1.2.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/config.git", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "shasum": "" + }, + "require": { + "dflydev/dot-access-data": "^3.0.1", + "nette/schema": "^1.2", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.7.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Config\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Define configuration arrays with strict schemas and access values with dot notation", + "homepage": "https://config.thephpleague.com", + "keywords": [ + "array", + "config", + "configuration", + "dot", + "dot-access", + "nested", + "schema" + ], + "support": { + "docs": "https://config.thephpleague.com/", + "issues": "https://github.com/thephpleague/config/issues", + "rss": "https://github.com/thephpleague/config/releases.atom", + "source": "https://github.com/thephpleague/config" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + } + ], + "time": "2022-12-11T20:36:23+00:00" + }, + { + "name": "league/flysystem", + "version": "3.29.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319", + "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319", + "shasum": "" + }, + "require": { + "league/flysystem-local": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "conflict": { + "async-aws/core": "<1.19.0", + "async-aws/s3": "<1.14.0", + "aws/aws-sdk-php": "3.209.31 || 3.210.0", + "guzzlehttp/guzzle": "<7.0", + "guzzlehttp/ringphp": "<1.1.1", + "phpseclib/phpseclib": "3.0.15", + "symfony/http-client": "<5.2" + }, + "require-dev": { + "async-aws/s3": "^1.5 || ^2.0", + "async-aws/simple-s3": "^1.1 || ^2.0", + "aws/aws-sdk-php": "^3.295.10", + "composer/semver": "^3.0", + "ext-fileinfo": "*", + "ext-ftp": "*", + "ext-mongodb": "^1.3", + "ext-zip": "*", + "friendsofphp/php-cs-fixer": "^3.5", + "google/cloud-storage": "^1.23", + "guzzlehttp/psr7": "^2.6", + "microsoft/azure-storage-blob": "^1.1", + "mongodb/mongodb": "^1.2", + "phpseclib/phpseclib": "^3.0.36", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.5.11|^10.0", + "sabre/dav": "^4.6.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "File storage abstraction for PHP", + "keywords": [ + "WebDAV", + "aws", + "cloud", + "file", + "files", + "filesystem", + "filesystems", + "ftp", + "s3", + "sftp", + "storage" + ], + "support": { + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/3.29.1" + }, + "time": "2024-10-08T08:58:34+00:00" + }, + { + "name": "league/flysystem-local", + "version": "3.29.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem-local.git", + "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27", + "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "league/flysystem": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\Local\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Local filesystem adapter for Flysystem.", + "keywords": [ + "Flysystem", + "file", + "files", + "filesystem", + "local" + ], + "support": { + "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0" + }, + "time": "2024-08-09T21:24:39+00:00" + }, + { + "name": "league/mime-type-detection", + "version": "1.16.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9", + "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.2", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "support": { + "issues": "https://github.com/thephpleague/mime-type-detection/issues", + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0" + }, + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2024-09-21T08:32:55+00:00" + }, + { + "name": "league/uri", + "version": "7.5.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/uri.git", + "reference": "81fb5145d2644324614cc532b28efd0215bda430" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430", + "reference": "81fb5145d2644324614cc532b28efd0215bda430", + "shasum": "" + }, + "require": { + "league/uri-interfaces": "^7.5", + "php": "^8.1" + }, + "conflict": { + "league/uri-schemes": "^1.0" + }, + "suggest": { + "ext-bcmath": "to improve IPV4 host parsing", + "ext-fileinfo": "to create Data URI from file contennts", + "ext-gmp": "to improve IPV4 host parsing", + "ext-intl": "to handle IDN host with the best performance", + "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain", + "league/uri-components": "Needed to easily manipulate URI objects components", + "php-64bit": "to improve IPV4 host parsing", + "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.x-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Uri\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ignace Nyamagana Butera", + "email": "nyamsprod@gmail.com", + "homepage": "https://nyamsprod.com" + } + ], + "description": "URI manipulation library", + "homepage": "https://uri.thephpleague.com", + "keywords": [ + "data-uri", + "file-uri", + "ftp", + "hostname", + "http", + "https", + "middleware", + "parse_str", + "parse_url", + "psr-7", + "query-string", + "querystring", + "rfc3986", + "rfc3987", + "rfc6570", + "uri", + "uri-template", + "url", + "ws" + ], + "support": { + "docs": "https://uri.thephpleague.com", + "forum": "https://thephpleague.slack.com", + "issues": "https://github.com/thephpleague/uri-src/issues", + "source": "https://github.com/thephpleague/uri/tree/7.5.1" + }, + "funding": [ + { + "url": "https://github.com/sponsors/nyamsprod", + "type": "github" + } + ], + "time": "2024-12-08T08:40:02+00:00" + }, + { + "name": "league/uri-interfaces", + "version": "7.5.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/uri-interfaces.git", + "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742", + "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742", + "shasum": "" + }, + "require": { + "ext-filter": "*", + "php": "^8.1", + "psr/http-factory": "^1", + "psr/http-message": "^1.1 || ^2.0" + }, + "suggest": { + "ext-bcmath": "to improve IPV4 host parsing", + "ext-gmp": "to improve IPV4 host parsing", + "ext-intl": "to handle IDN host with the best performance", + "php-64bit": "to improve IPV4 host parsing", + "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.x-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Uri\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ignace Nyamagana Butera", + "email": "nyamsprod@gmail.com", + "homepage": "https://nyamsprod.com" + } + ], + "description": "Common interfaces and classes for URI representation and interaction", + "homepage": "https://uri.thephpleague.com", + "keywords": [ + "data-uri", + "file-uri", + "ftp", + "hostname", + "http", + "https", + "parse_str", + "parse_url", + "psr-7", + "query-string", + "querystring", + "rfc3986", + "rfc3987", + "rfc6570", + "uri", + "url", + "ws" + ], + "support": { + "docs": "https://uri.thephpleague.com", + "forum": "https://thephpleague.slack.com", + "issues": "https://github.com/thephpleague/uri-src/issues", + "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0" + }, + "funding": [ + { + "url": "https://github.com/sponsors/nyamsprod", + "type": "github" + } + ], + "time": "2024-12-08T08:18:47+00:00" + }, + { + "name": "monolog/monolog", + "version": "3.8.1", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/monolog.git", + "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4", + "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^2.0 || ^3.0" + }, + "provide": { + "psr/log-implementation": "3.0.0" + }, + "require-dev": { + "aws/aws-sdk-php": "^3.0", + "doctrine/couchdb": "~1.0@dev", + "elasticsearch/elasticsearch": "^7 || ^8", + "ext-json": "*", + "graylog2/gelf-php": "^1.4.2 || ^2.0", + "guzzlehttp/guzzle": "^7.4.5", + "guzzlehttp/psr7": "^2.2", + "mongodb/mongodb": "^1.8", + "php-amqplib/php-amqplib": "~2.4 || ^3", + "php-console/php-console": "^3.1.8", + "phpstan/phpstan": "^2", + "phpstan/phpstan-deprecation-rules": "^2", + "phpstan/phpstan-strict-rules": "^2", + "phpunit/phpunit": "^10.5.17 || ^11.0.7", + "predis/predis": "^1.1 || ^2", + "rollbar/rollbar": "^4.0", + "ruflin/elastica": "^7 || ^8", + "symfony/mailer": "^5.4 || ^6", + "symfony/mime": "^5.4 || ^6" + }, + "suggest": { + "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", + "doctrine/couchdb": "Allow sending log messages to a CouchDB server", + "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", + "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", + "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", + "ext-mbstring": "Allow to work properly with unicode symbols", + "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", + "ext-openssl": "Required to send log messages using SSL", + "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", + "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", + "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", + "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", + "rollbar/rollbar": "Allow sending log messages to Rollbar", + "ruflin/elastica": "Allow sending log messages to an Elastic Search server" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Monolog\\": "src/Monolog" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" + } + ], + "description": "Sends your logs to files, sockets, inboxes, databases and various web services", + "homepage": "https://github.com/Seldaek/monolog", + "keywords": [ + "log", + "logging", + "psr-3" + ], + "support": { + "issues": "https://github.com/Seldaek/monolog/issues", + "source": "https://github.com/Seldaek/monolog/tree/3.8.1" + }, + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", + "type": "tidelift" + } + ], + "time": "2024-12-05T17:15:07+00:00" + }, + { + "name": "nesbot/carbon", + "version": "3.8.6", + "source": { + "type": "git", + "url": "https://github.com/CarbonPHP/carbon.git", + "reference": "ff2f20cf83bd4d503720632ce8a426dc747bf7fd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/ff2f20cf83bd4d503720632ce8a426dc747bf7fd", + "reference": "ff2f20cf83bd4d503720632ce8a426dc747bf7fd", + "shasum": "" + }, + "require": { + "carbonphp/carbon-doctrine-types": "<100.0", + "ext-json": "*", + "php": "^8.1", + "psr/clock": "^1.0", + "symfony/clock": "^6.3 || ^7.0", + "symfony/polyfill-mbstring": "^1.0", + "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "require-dev": { + "doctrine/dbal": "^3.6.3 || ^4.0", + "doctrine/orm": "^2.15.2 || ^3.0", + "friendsofphp/php-cs-fixer": "^3.57.2", + "kylekatarnls/multi-tester": "^2.5.3", + "ondrejmirtes/better-reflection": "^6.25.0.4", + "phpmd/phpmd": "^2.15.0", + "phpstan/extension-installer": "^1.3.1", + "phpstan/phpstan": "^1.11.2", + "phpunit/phpunit": "^10.5.20", + "squizlabs/php_codesniffer": "^3.9.0" + }, + "bin": [ + "bin/carbon" + ], + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Carbon\\Laravel\\ServiceProvider" + ] + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + }, + "branch-alias": { + "dev-2.x": "2.x-dev", + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Carbon\\": "src/Carbon/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Brian Nesbitt", + "email": "brian@nesbot.com", + "homepage": "https://markido.com" + }, + { + "name": "kylekatarnls", + "homepage": "https://github.com/kylekatarnls" + } + ], + "description": "An API extension for DateTime that supports 281 different languages.", + "homepage": "https://carbon.nesbot.com", + "keywords": [ + "date", + "datetime", + "time" + ], + "support": { + "docs": "https://carbon.nesbot.com/docs", + "issues": "https://github.com/CarbonPHP/carbon/issues", + "source": "https://github.com/CarbonPHP/carbon" + }, + "funding": [ + { + "url": "https://github.com/sponsors/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon#sponsor", + "type": "opencollective" + }, + { + "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme", + "type": "tidelift" + } + ], + "time": "2025-02-20T17:33:38+00:00" + }, + { + "name": "nette/schema", + "version": "v1.3.2", + "source": { + "type": "git", + "url": "https://github.com/nette/schema.git", + "reference": "da801d52f0354f70a638673c4a0f04e16529431d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d", + "reference": "da801d52f0354f70a638673c4a0f04e16529431d", + "shasum": "" + }, + "require": { + "nette/utils": "^4.0", + "php": "8.1 - 8.4" + }, + "require-dev": { + "nette/tester": "^2.5.2", + "phpstan/phpstan-nette": "^1.0", + "tracy/tracy": "^2.8" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "📐 Nette Schema: validating data structures against a given Schema.", + "homepage": "https://nette.org", + "keywords": [ + "config", + "nette" + ], + "support": { + "issues": "https://github.com/nette/schema/issues", + "source": "https://github.com/nette/schema/tree/v1.3.2" + }, + "time": "2024-10-06T23:10:23+00:00" + }, + { + "name": "nette/utils", + "version": "v4.0.5", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96", + "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96", + "shasum": "" + }, + "require": { + "php": "8.0 - 8.4" + }, + "conflict": { + "nette/finder": "<3", + "nette/schema": "<1.2.2" + }, + "require-dev": { + "jetbrains/phpstorm-attributes": "dev-master", + "nette/tester": "^2.5", + "phpstan/phpstan": "^1.0", + "tracy/tracy": "^2.9" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v4.0.5" + }, + "time": "2024-08-07T15:39:19+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v5.4.0", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "447a020a1f875a434d62f2a401f53b82a396e494" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494", + "reference": "447a020a1f875a434d62f2a401f53b82a396e494", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-json": "*", + "ext-tokenizer": "*", + "php": ">=7.4" + }, + "require-dev": { + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^9.0" + }, + "bin": [ + "bin/php-parse" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Nikita Popov" + } + ], + "description": "A PHP parser written in PHP", + "keywords": [ + "parser", + "php" + ], + "support": { + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0" + }, + "time": "2024-12-30T11:07:19+00:00" + }, + { + "name": "nunomaduro/termwind", + "version": "v2.3.0", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/termwind.git", + "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda", + "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": "^8.2", + "symfony/console": "^7.1.8" + }, + "require-dev": { + "illuminate/console": "^11.33.2", + "laravel/pint": "^1.18.2", + "mockery/mockery": "^1.6.12", + "pestphp/pest": "^2.36.0", + "phpstan/phpstan": "^1.12.11", + "phpstan/phpstan-strict-rules": "^1.6.1", + "symfony/var-dumper": "^7.1.8", + "thecodingmachine/phpstan-strict-rules": "^1.0.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Termwind\\Laravel\\TermwindServiceProvider" + ] + }, + "branch-alias": { + "dev-2.x": "2.x-dev" + } + }, + "autoload": { + "files": [ + "src/Functions.php" + ], + "psr-4": { + "Termwind\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Its like Tailwind CSS, but for the console.", + "keywords": [ + "cli", + "console", + "css", + "package", + "php", + "style" + ], + "support": { + "issues": "https://github.com/nunomaduro/termwind/issues", + "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://github.com/xiCO2k", + "type": "github" + } + ], + "time": "2024-11-21T10:39:51+00:00" + }, + { + "name": "phpoption/phpoption", + "version": "1.9.3", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "psr-4": { + "PhpOption\\": "src/PhpOption/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" + }, + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "Option Type for PHP", + "keywords": [ + "language", + "option", + "php", + "type" + ], + "support": { + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.9.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "time": "2024-07-20T21:41:07+00:00" + }, + { + "name": "psr/clock", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/clock.git", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Psr\\Clock\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for reading the clock.", + "homepage": "https://github.com/php-fig/clock", + "keywords": [ + "clock", + "now", + "psr", + "psr-20", + "time" + ], + "support": { + "issues": "https://github.com/php-fig/clock/issues", + "source": "https://github.com/php-fig/clock/tree/1.0.0" + }, + "time": "2022-11-25T14:36:26+00:00" + }, + { + "name": "psr/container", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "shasum": "" + }, + "require": { + "php": ">=7.4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/2.0.2" + }, + "time": "2021-11-05T16:47:00+00:00" + }, + { + "name": "psr/event-dispatcher", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\EventDispatcher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Standard interfaces for event handling.", + "keywords": [ + "events", + "psr", + "psr-14" + ], + "support": { + "issues": "https://github.com/php-fig/event-dispatcher/issues", + "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" + }, + "time": "2019-01-08T18:20:26+00:00" + }, + { + "name": "psr/http-client", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-client.git", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP clients", + "homepage": "https://github.com/php-fig/http-client", + "keywords": [ + "http", + "http-client", + "psr", + "psr-18" + ], + "support": { + "source": "https://github.com/php-fig/http-client" + }, + "time": "2023-09-23T14:17:50+00:00" + }, + { + "name": "psr/http-factory", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-factory.git", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", + "keywords": [ + "factory", + "http", + "message", + "psr", + "psr-17", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-factory" + }, + "time": "2024-04-15T12:06:14+00:00" + }, + { + "name": "psr/http-message", + "version": "2.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message.git", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/2.0" + }, + "time": "2023-04-04T09:54:51+00:00" + }, + { + "name": "psr/log", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/3.0.2" + }, + "time": "2024-09-11T13:17:53+00:00" + }, + { + "name": "psr/simple-cache", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" + }, + "time": "2021-10-29T13:26:27+00:00" + }, + { + "name": "psy/psysh", + "version": "v0.12.7", + "source": { + "type": "git", + "url": "https://github.com/bobthecow/psysh.git", + "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/d73fa3c74918ef4522bb8a3bf9cab39161c4b57c", + "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-tokenizer": "*", + "nikic/php-parser": "^5.0 || ^4.0", + "php": "^8.0 || ^7.4", + "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4" + }, + "conflict": { + "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.2" + }, + "suggest": { + "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", + "ext-pdo-sqlite": "The doc command requires SQLite to work.", + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well." + }, + "bin": [ + "bin/psysh" + ], + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": false, + "forward-command": false + }, + "branch-alias": { + "dev-main": "0.12.x-dev" + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Psy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Justin Hileman", + "email": "justin@justinhileman.info", + "homepage": "http://justinhileman.com" + } + ], + "description": "An interactive shell for modern PHP.", + "homepage": "http://psysh.org", + "keywords": [ + "REPL", + "console", + "interactive", + "shell" + ], + "support": { + "issues": "https://github.com/bobthecow/psysh/issues", + "source": "https://github.com/bobthecow/psysh/tree/v0.12.7" + }, + "time": "2024-12-10T01:58:33+00:00" + }, + { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, + "time": "2019-03-08T08:55:37+00:00" + }, + { + "name": "ramsey/collection", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/ramsey/collection.git", + "reference": "3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/collection/zipball/3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109", + "reference": "3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "captainhook/plugin-composer": "^5.3", + "ergebnis/composer-normalize": "^2.45", + "fakerphp/faker": "^1.24", + "hamcrest/hamcrest-php": "^2.0", + "jangregor/phpstan-prophecy": "^2.1", + "mockery/mockery": "^1.6", + "php-parallel-lint/php-console-highlighter": "^1.0", + "php-parallel-lint/php-parallel-lint": "^1.4", + "phpspec/prophecy-phpunit": "^2.3", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-mockery": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^10.5", + "ramsey/coding-standard": "^2.3", + "ramsey/conventional-commits": "^1.6", + "roave/security-advisories": "dev-latest" + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + }, + "ramsey/conventional-commits": { + "configFile": "conventional-commits.json" + } + }, + "autoload": { + "psr-4": { + "Ramsey\\Collection\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + } + ], + "description": "A PHP library for representing and manipulating collections.", + "keywords": [ + "array", + "collection", + "hash", + "map", + "queue", + "set" + ], + "support": { + "issues": "https://github.com/ramsey/collection/issues", + "source": "https://github.com/ramsey/collection/tree/2.1.0" + }, + "time": "2025-03-02T04:48:29+00:00" + }, + { + "name": "ramsey/uuid", + "version": "4.7.6", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "91039bc1faa45ba123c4328958e620d382ec7088" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088", + "reference": "91039bc1faa45ba123c4328958e620d382ec7088", + "shasum": "" + }, + "require": { + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12", + "ext-json": "*", + "php": "^8.0", + "ramsey/collection": "^1.2 || ^2.0" + }, + "replace": { + "rhumsaa/uuid": "self.version" + }, + "require-dev": { + "captainhook/captainhook": "^5.10", + "captainhook/plugin-composer": "^5.3", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", + "doctrine/annotations": "^1.8", + "ergebnis/composer-normalize": "^2.15", + "mockery/mockery": "^1.3", + "paragonie/random-lib": "^2", + "php-mock/php-mock": "^2.2", + "php-mock/php-mock-mockery": "^1.3", + "php-parallel-lint/php-parallel-lint": "^1.1", + "phpbench/phpbench": "^1.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.1", + "phpunit/phpunit": "^8.5 || ^9", + "ramsey/composer-repl": "^1.4", + "slevomat/coding-standard": "^8.4", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.9" + }, + "suggest": { + "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", + "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", + "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", + "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", + "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Ramsey\\Uuid\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", + "keywords": [ + "guid", + "identifier", + "uuid" + ], + "support": { + "issues": "https://github.com/ramsey/uuid/issues", + "source": "https://github.com/ramsey/uuid/tree/4.7.6" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", + "type": "tidelift" + } + ], + "time": "2024-04-27T21:32:50+00:00" + }, + { + "name": "symfony/clock", + "version": "v7.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/clock.git", + "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24", + "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/clock": "^1.0", + "symfony/polyfill-php83": "^1.28" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/now.php" + ], + "psr-4": { + "Symfony\\Component\\Clock\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Decouples applications from the system clock", + "homepage": "https://symfony.com", + "keywords": [ + "clock", + "psr20", + "time" + ], + "support": { + "source": "https://github.com/symfony/clock/tree/v7.2.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:21:43+00:00" + }, + { + "name": "symfony/console", + "version": "v7.2.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "fefcc18c0f5d0efe3ab3152f15857298868dc2c3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/fefcc18c0f5d0efe3ab3152f15857298868dc2c3", + "reference": "fefcc18c0f5d0efe3ab3152f15857298868dc2c3", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^6.4|^7.0" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/dotenv": "<6.4", + "symfony/event-dispatcher": "<6.4", + "symfony/lock": "<6.4", + "symfony/process": "<6.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/lock": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/stopwatch": "^6.4|^7.0", + "symfony/var-dumper": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Eases the creation of beautiful and testable command line interfaces", + "homepage": "https://symfony.com", + "keywords": [ + "cli", + "command-line", + "console", + "terminal" + ], + "support": { + "source": "https://github.com/symfony/console/tree/v7.2.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-12-11T03:49:26+00:00" + }, + { + "name": "symfony/css-selector", + "version": "v7.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2", + "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Converts CSS selectors to XPath expressions", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/css-selector/tree/v7.2.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:21:43+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.5.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", + "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.5-dev" + } + }, + "autoload": { + "files": [ + "function.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/error-handler", + "version": "v7.2.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/error-handler.git", + "reference": "aabf79938aa795350c07ce6464dd1985607d95d5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/aabf79938aa795350c07ce6464dd1985607d95d5", + "reference": "aabf79938aa795350c07ce6464dd1985607d95d5", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/log": "^1|^2|^3", + "symfony/var-dumper": "^6.4|^7.0" + }, + "conflict": { + "symfony/deprecation-contracts": "<2.5", + "symfony/http-kernel": "<6.4" + }, + "require-dev": { + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/serializer": "^6.4|^7.0" + }, + "bin": [ + "Resources/bin/patch-type-declarations" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\ErrorHandler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to manage errors and ease debugging PHP code", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/error-handler/tree/v7.2.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-02-02T20:27:07+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v7.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1", + "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/event-dispatcher-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/service-contracts": "<2.5" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/error-handler": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/event-dispatcher/tree/v7.2.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:21:43+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v3.5.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f", + "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/event-dispatcher": "^1" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.5-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\EventDispatcher\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/finder", + "version": "v7.2.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "87a71856f2f56e4100373e92529eed3171695cfb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/87a71856f2f56e4100373e92529eed3171695cfb", + "reference": "87a71856f2f56e4100373e92529eed3171695cfb", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "symfony/filesystem": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Finds files and directories via an intuitive fluent interface", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v7.2.2" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-12-30T19:00:17+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v7.2.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "ee1b504b8926198be89d05e5b6fc4c3810c090f0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ee1b504b8926198be89d05e5b6fc4c3810c090f0", + "reference": "ee1b504b8926198be89d05e5b6fc4c3810c090f0", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3.0", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php83": "^1.27" + }, + "conflict": { + "doctrine/dbal": "<3.6", + "symfony/cache": "<6.4.12|>=7.0,<7.1.5" + }, + "require-dev": { + "doctrine/dbal": "^3.6|^4", + "predis/predis": "^1.1|^2.0", + "symfony/cache": "^6.4.12|^7.1.5", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/mime": "^6.4|^7.0", + "symfony/rate-limiter": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpFoundation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Defines an object-oriented layer for the HTTP specification", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-foundation/tree/v7.2.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-01-17T10:56:55+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v7.2.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "9f1103734c5789798fefb90e91de4586039003ed" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9f1103734c5789798fefb90e91de4586039003ed", + "reference": "9f1103734c5789798fefb90e91de4586039003ed", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/log": "^1|^2|^3", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/error-handler": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/browser-kit": "<6.4", + "symfony/cache": "<6.4", + "symfony/config": "<6.4", + "symfony/console": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/doctrine-bridge": "<6.4", + "symfony/form": "<6.4", + "symfony/http-client": "<6.4", + "symfony/http-client-contracts": "<2.5", + "symfony/mailer": "<6.4", + "symfony/messenger": "<6.4", + "symfony/translation": "<6.4", + "symfony/translation-contracts": "<2.5", + "symfony/twig-bridge": "<6.4", + "symfony/validator": "<6.4", + "symfony/var-dumper": "<6.4", + "twig/twig": "<3.12" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^6.4|^7.0", + "symfony/clock": "^6.4|^7.0", + "symfony/config": "^6.4|^7.0", + "symfony/console": "^6.4|^7.0", + "symfony/css-selector": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/dom-crawler": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/finder": "^6.4|^7.0", + "symfony/http-client-contracts": "^2.5|^3", + "symfony/process": "^6.4|^7.0", + "symfony/property-access": "^7.1", + "symfony/routing": "^6.4|^7.0", + "symfony/serializer": "^7.1", + "symfony/stopwatch": "^6.4|^7.0", + "symfony/translation": "^6.4|^7.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/uid": "^6.4|^7.0", + "symfony/validator": "^6.4|^7.0", + "symfony/var-dumper": "^6.4|^7.0", + "symfony/var-exporter": "^6.4|^7.0", + "twig/twig": "^3.12" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpKernel\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides a structured process for converting a Request into a Response", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-kernel/tree/v7.2.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-02-26T11:01:22+00:00" + }, + { + "name": "symfony/mailer", + "version": "v7.2.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/mailer.git", + "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mailer/zipball/f3871b182c44997cf039f3b462af4a48fb85f9d3", + "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3", + "shasum": "" + }, + "require": { + "egulias/email-validator": "^2.1.10|^3|^4", + "php": ">=8.2", + "psr/event-dispatcher": "^1", + "psr/log": "^1|^2|^3", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/mime": "^7.2", + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<6.4", + "symfony/messenger": "<6.4", + "symfony/mime": "<6.4", + "symfony/twig-bridge": "<6.4" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/twig-bridge": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mailer\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Helps sending emails", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/mailer/tree/v7.2.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-01-27T11:08:17+00:00" + }, + { + "name": "symfony/mime", + "version": "v7.2.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "87ca22046b78c3feaff04b337f33b38510fd686b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/87ca22046b78c3feaff04b337f33b38510fd686b", + "reference": "87ca22046b78c3feaff04b337f33b38510fd686b", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" + }, + "conflict": { + "egulias/email-validator": "~3.0.0", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", + "symfony/mailer": "<6.4", + "symfony/serializer": "<6.4.3|>7.0,<7.0.3" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10|^3.1|^4", + "league/html-to-markdown": "^5.0", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/property-access": "^6.4|^7.0", + "symfony/property-info": "^6.4|^7.0", + "symfony/serializer": "^6.4.3|^7.0.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mime\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Allows manipulating MIME messages", + "homepage": "https://symfony.com", + "keywords": [ + "mime", + "mime-type" + ], + "support": { + "source": "https://github.com/symfony/mime/tree/v7.2.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-02-19T08:51:20+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's grapheme_* functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-intl-idn", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773", + "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773", + "shasum": "" + }, + "require": { + "php": ">=7.2", + "symfony/polyfill-intl-normalizer": "^1.10" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Idn\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Laurent Bassin", + "email": "laurent@bassin.info" + }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "idn", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "3833d7255cc303546435cb650316bff708a1c75c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", + "reference": "3833d7255cc303546435cb650316bff708a1c75c", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-php83", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php83.git", + "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491", + "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php83\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-uuid", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-uuid.git", + "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2", + "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-uuid": "*" + }, + "suggest": { + "ext-uuid": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Uuid\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for uuid functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/process", + "version": "v7.2.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "d8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/d8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf", + "reference": "d8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Executes commands in sub-processes", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v7.2.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-02-05T08:33:46+00:00" + }, + { + "name": "symfony/routing", + "version": "v7.2.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/ee9a67edc6baa33e5fae662f94f91fd262930996", + "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/config": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/yaml": "<6.4" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/yaml": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Routing\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Maps an HTTP request to a set of configuration variables", + "homepage": "https://symfony.com", + "keywords": [ + "router", + "routing", + "uri", + "url" + ], + "support": { + "source": "https://github.com/symfony/routing/tree/v7.2.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-01-17T10:56:55+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v3.5.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0", + "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "ext-psr": "<1.1|>=2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.5-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/v3.5.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/string", + "version": "v7.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/446e0d146f991dde3e73f45f2c97a9faad773c82", + "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.5" + }, + "require-dev": { + "symfony/emoji": "^7.1", + "symfony/error-handler": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\String\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", + "homepage": "https://symfony.com", + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], + "support": { + "source": "https://github.com/symfony/string/tree/v7.2.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-11-13T13:31:26+00:00" + }, + { + "name": "symfony/translation", + "version": "v7.2.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "283856e6981286cc0d800b53bd5703e8e363f05a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/283856e6981286cc0d800b53bd5703e8e363f05a", + "reference": "283856e6981286cc0d800b53bd5703e8e363f05a", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation-contracts": "^2.5|^3.0" + }, + "conflict": { + "symfony/config": "<6.4", + "symfony/console": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<6.4", + "symfony/service-contracts": "<2.5", + "symfony/twig-bundle": "<6.4", + "symfony/yaml": "<6.4" + }, + "provide": { + "symfony/translation-implementation": "2.3|3.0" + }, + "require-dev": { + "nikic/php-parser": "^4.18|^5.0", + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/console": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/finder": "^6.4|^7.0", + "symfony/http-client-contracts": "^2.5|^3.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/routing": "^6.4|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to internationalize your application", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/translation/tree/v7.2.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-02-13T10:27:23+00:00" + }, + { + "name": "symfony/translation-contracts", + "version": "v3.5.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "4667ff3bd513750603a09c8dedbea942487fb07c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c", + "reference": "4667ff3bd513750603a09c8dedbea942487fb07c", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.5-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to translation", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/uid", + "version": "v7.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/uid.git", + "reference": "2d294d0c48df244c71c105a169d0190bfb080426" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/uid/zipball/2d294d0c48df244c71c105a169d0190bfb080426", + "reference": "2d294d0c48df244c71c105a169d0190bfb080426", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-uuid": "^1.15" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Uid\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to generate and represent UIDs", + "homepage": "https://symfony.com", + "keywords": [ + "UID", + "ulid", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/uid/tree/v7.2.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:21:43+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v7.2.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "82b478c69745d8878eb60f9a049a4d584996f73a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/82b478c69745d8878eb60f9a049a4d584996f73a", + "reference": "82b478c69745d8878eb60f9a049a4d584996f73a", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/console": "<6.4" + }, + "require-dev": { + "ext-iconv": "*", + "symfony/console": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/uid": "^6.4|^7.0", + "twig/twig": "^3.12" + }, + "bin": [ + "Resources/bin/var-dump-server" + ], + "type": "library", + "autoload": { + "files": [ + "Resources/functions/dump.php" + ], + "psr-4": { + "Symfony\\Component\\VarDumper\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides mechanisms for walking through any arbitrary PHP variable", + "homepage": "https://symfony.com", + "keywords": [ + "debug", + "dump" + ], + "support": { + "source": "https://github.com/symfony/var-dumper/tree/v7.2.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-01-17T11:39:41+00:00" + }, + { + "name": "tijsverkoyen/css-to-inline-styles", + "version": "v2.3.0", + "source": { + "type": "git", + "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", + "reference": "0d72ac1c00084279c1816675284073c5a337c20d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d", + "reference": "0d72ac1c00084279c1816675284073c5a337c20d", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "php": "^7.4 || ^8.0", + "symfony/css-selector": "^5.4 || ^6.0 || ^7.0" + }, + "require-dev": { + "phpstan/phpstan": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^8.5.21 || ^9.5.10" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "TijsVerkoyen\\CssToInlineStyles\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Tijs Verkoyen", + "email": "css_to_inline_styles@verkoyen.eu", + "role": "Developer" + } + ], + "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", + "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", + "support": { + "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0" + }, + "time": "2024-12-21T16:25:41+00:00" + }, + { + "name": "vlucas/phpdotenv", + "version": "v5.6.1", + "source": { + "type": "git", + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2", + "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2", + "shasum": "" + }, + "require": { + "ext-pcre": "*", + "graham-campbell/result-type": "^1.1.3", + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.3", + "symfony/polyfill-ctype": "^1.24", + "symfony/polyfill-mbstring": "^1.24", + "symfony/polyfill-php80": "^1.24" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-filter": "*", + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "suggest": { + "ext-filter": "Required to use the boolean validator." + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, + "branch-alias": { + "dev-master": "5.6-dev" + } + }, + "autoload": { + "psr-4": { + "Dotenv\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Vance Lucas", + "email": "vance@vancelucas.com", + "homepage": "https://github.com/vlucas" + } + ], + "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", + "keywords": [ + "dotenv", + "env", + "environment" + ], + "support": { + "issues": "https://github.com/vlucas/phpdotenv/issues", + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", + "type": "tidelift" + } + ], + "time": "2024-07-20T21:52:34+00:00" + }, + { + "name": "voku/portable-ascii", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/voku/portable-ascii.git", + "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d", + "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d", + "shasum": "" + }, + "require": { + "php": ">=7.0.0" + }, + "require-dev": { + "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" + }, + "suggest": { + "ext-intl": "Use Intl for transliterator_transliterate() support" + }, + "type": "library", + "autoload": { + "psr-4": { + "voku\\": "src/voku/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Lars Moelleken", + "homepage": "https://www.moelleken.org/" + } + ], + "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", + "homepage": "https://github.com/voku/portable-ascii", + "keywords": [ + "ascii", + "clean", + "php" + ], + "support": { + "issues": "https://github.com/voku/portable-ascii/issues", + "source": "https://github.com/voku/portable-ascii/tree/2.0.3" + }, + "funding": [ + { + "url": "https://www.paypal.me/moelleken", + "type": "custom" + }, + { + "url": "https://github.com/voku", + "type": "github" + }, + { + "url": "https://opencollective.com/portable-ascii", + "type": "open_collective" + }, + { + "url": "https://www.patreon.com/voku", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", + "type": "tidelift" + } + ], + "time": "2024-11-21T01:49:47+00:00" + }, + { + "name": "webmozart/assert", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://github.com/webmozarts/assert.git", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "php": "^7.2 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.13" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.11.0" + }, + "time": "2022-06-03T18:03:27+00:00" + } + ], + "packages-dev": [ + { + "name": "barryvdh/laravel-debugbar", + "version": "v3.15.4", + "source": { + "type": "git", + "url": "https://github.com/barryvdh/laravel-debugbar.git", + "reference": "c0667ea91f7185f1e074402c5788195e96bf8106" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/c0667ea91f7185f1e074402c5788195e96bf8106", + "reference": "c0667ea91f7185f1e074402c5788195e96bf8106", + "shasum": "" + }, + "require": { + "illuminate/routing": "^9|^10|^11|^12", + "illuminate/session": "^9|^10|^11|^12", + "illuminate/support": "^9|^10|^11|^12", + "php": "^8.1", + "php-debugbar/php-debugbar": "~2.1.1", + "symfony/finder": "^6|^7" + }, + "require-dev": { + "mockery/mockery": "^1.3.3", + "orchestra/testbench-dusk": "^7|^8|^9|^10", + "phpunit/phpunit": "^9.5.10|^10|^11", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "extra": { + "laravel": { + "aliases": { + "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar" + }, + "providers": [ + "Barryvdh\\Debugbar\\ServiceProvider" + ] + }, + "branch-alias": { + "dev-master": "3.15-dev" + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Barryvdh\\Debugbar\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Barry vd. Heuvel", + "email": "barryvdh@gmail.com" + } + ], + "description": "PHP Debugbar integration for Laravel", + "keywords": [ + "debug", + "debugbar", + "dev", + "laravel", + "profiler", + "webprofiler" + ], + "support": { + "issues": "https://github.com/barryvdh/laravel-debugbar/issues", + "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.15.4" + }, + "funding": [ + { + "url": "https://fruitcake.nl", + "type": "custom" + }, + { + "url": "https://github.com/barryvdh", + "type": "github" + } + ], + "time": "2025-04-16T06:32:06+00:00" + }, + { + "name": "fakerphp/faker", + "version": "v1.24.1", + "source": { + "type": "git", + "url": "https://github.com/FakerPHP/Faker.git", + "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", + "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0", + "psr/container": "^1.0 || ^2.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "conflict": { + "fzaninotto/faker": "*" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "doctrine/persistence": "^1.3 || ^2.0", + "ext-intl": "*", + "phpunit/phpunit": "^9.5.26", + "symfony/phpunit-bridge": "^5.4.16" + }, + "suggest": { + "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", + "ext-curl": "Required by Faker\\Provider\\Image to download images.", + "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", + "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", + "ext-mbstring": "Required for multibyte Unicode string functionality." + }, + "type": "library", + "autoload": { + "psr-4": { + "Faker\\": "src/Faker/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "François Zaninotto" + } + ], + "description": "Faker is a PHP library that generates fake data for you.", + "keywords": [ + "data", + "faker", + "fixtures" + ], + "support": { + "issues": "https://github.com/FakerPHP/Faker/issues", + "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1" + }, + "time": "2024-11-21T13:46:39+00:00" + }, + { + "name": "filp/whoops", + "version": "2.17.0", + "source": { + "type": "git", + "url": "https://github.com/filp/whoops.git", + "reference": "075bc0c26631110584175de6523ab3f1652eb28e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filp/whoops/zipball/075bc0c26631110584175de6523ab3f1652eb28e", + "reference": "075bc0c26631110584175de6523ab3f1652eb28e", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0", + "psr/log": "^1.0.1 || ^2.0 || ^3.0" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3", + "symfony/var-dumper": "^4.0 || ^5.0" + }, + "suggest": { + "symfony/var-dumper": "Pretty print complex values better with var-dumper available", + "whoops/soap": "Formats errors as SOAP responses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7-dev" + } + }, + "autoload": { + "psr-4": { + "Whoops\\": "src/Whoops/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Filipe Dobreira", + "homepage": "https://github.com/filp", + "role": "Developer" + } + ], + "description": "php error handling for cool kids", + "homepage": "https://filp.github.io/whoops/", + "keywords": [ + "error", + "exception", + "handling", + "library", + "throwable", + "whoops" + ], + "support": { + "issues": "https://github.com/filp/whoops/issues", + "source": "https://github.com/filp/whoops/tree/2.17.0" + }, + "funding": [ + { + "url": "https://github.com/denis-sokolov", + "type": "github" + } + ], + "time": "2025-01-25T12:00:00+00:00" + }, + { + "name": "hamcrest/hamcrest-php", + "version": "v2.0.1", + "source": { + "type": "git", + "url": "https://github.com/hamcrest/hamcrest-php.git", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "shasum": "" + }, + "require": { + "php": "^5.3|^7.0|^8.0" + }, + "replace": { + "cordoval/hamcrest-php": "*", + "davedevelopment/hamcrest-php": "*", + "kodova/hamcrest-php": "*" + }, + "require-dev": { + "phpunit/php-file-iterator": "^1.4 || ^2.0", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "classmap": [ + "hamcrest" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "This is the PHP port of Hamcrest Matchers", + "keywords": [ + "test" + ], + "support": { + "issues": "https://github.com/hamcrest/hamcrest-php/issues", + "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" + }, + "time": "2020-07-09T08:09:16+00:00" + }, + { + "name": "laravel/pail", + "version": "v1.2.2", + "source": { + "type": "git", + "url": "https://github.com/laravel/pail.git", + "reference": "f31f4980f52be17c4667f3eafe034e6826787db2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pail/zipball/f31f4980f52be17c4667f3eafe034e6826787db2", + "reference": "f31f4980f52be17c4667f3eafe034e6826787db2", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "illuminate/console": "^10.24|^11.0|^12.0", + "illuminate/contracts": "^10.24|^11.0|^12.0", + "illuminate/log": "^10.24|^11.0|^12.0", + "illuminate/process": "^10.24|^11.0|^12.0", + "illuminate/support": "^10.24|^11.0|^12.0", + "nunomaduro/termwind": "^1.15|^2.0", + "php": "^8.2", + "symfony/console": "^6.0|^7.0" + }, + "require-dev": { + "laravel/framework": "^10.24|^11.0|^12.0", + "laravel/pint": "^1.13", + "orchestra/testbench-core": "^8.13|^9.0|^10.0", + "pestphp/pest": "^2.20|^3.0", + "pestphp/pest-plugin-type-coverage": "^2.3|^3.0", + "phpstan/phpstan": "^1.10", + "symfony/var-dumper": "^6.3|^7.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Pail\\PailServiceProvider" + ] + }, + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\Pail\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Easily delve into your Laravel application's log files directly from the command line.", + "homepage": "https://github.com/laravel/pail", + "keywords": [ + "laravel", + "logs", + "php", + "tail" + ], + "support": { + "issues": "https://github.com/laravel/pail/issues", + "source": "https://github.com/laravel/pail" + }, + "time": "2025-01-28T15:15:15+00:00" + }, + { + "name": "laravel/pint", + "version": "v1.21.2", + "source": { + "type": "git", + "url": "https://github.com/laravel/pint.git", + "reference": "370772e7d9e9da087678a0edf2b11b6960e40558" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pint/zipball/370772e7d9e9da087678a0edf2b11b6960e40558", + "reference": "370772e7d9e9da087678a0edf2b11b6960e40558", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "php": "^8.2.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.72.0", + "illuminate/view": "^11.44.2", + "larastan/larastan": "^3.2.0", + "laravel-zero/framework": "^11.36.1", + "mockery/mockery": "^1.6.12", + "nunomaduro/termwind": "^2.3", + "pestphp/pest": "^2.36.0" + }, + "bin": [ + "builds/pint" + ], + "type": "project", + "autoload": { + "psr-4": { + "App\\": "app/", + "Database\\Seeders\\": "database/seeders/", + "Database\\Factories\\": "database/factories/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "An opinionated code formatter for PHP.", + "homepage": "https://laravel.com", + "keywords": [ + "format", + "formatter", + "lint", + "linter", + "php" + ], + "support": { + "issues": "https://github.com/laravel/pint/issues", + "source": "https://github.com/laravel/pint" + }, + "time": "2025-03-14T22:31:42+00:00" + }, + { + "name": "laravel/sail", + "version": "v1.41.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/sail.git", + "reference": "fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sail/zipball/fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec", + "reference": "fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec", + "shasum": "" + }, + "require": { + "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0", + "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0", + "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0", + "php": "^8.0", + "symfony/console": "^6.0|^7.0", + "symfony/yaml": "^6.0|^7.0" + }, + "require-dev": { + "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0", + "phpstan/phpstan": "^1.10" + }, + "bin": [ + "bin/sail" + ], + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Sail\\SailServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Sail\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Docker files for running a basic Laravel application.", + "keywords": [ + "docker", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/sail/issues", + "source": "https://github.com/laravel/sail" + }, + "time": "2025-01-24T15:45:36+00:00" + }, + { + "name": "mockery/mockery", + "version": "1.6.12", + "source": { + "type": "git", + "url": "https://github.com/mockery/mockery.git", + "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699", + "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699", + "shasum": "" + }, + "require": { + "hamcrest/hamcrest-php": "^2.0.1", + "lib-pcre": ">=7.0", + "php": ">=7.3" + }, + "conflict": { + "phpunit/phpunit": "<8.0" + }, + "require-dev": { + "phpunit/phpunit": "^8.5 || ^9.6.17", + "symplify/easy-coding-standard": "^12.1.14" + }, + "type": "library", + "autoload": { + "files": [ + "library/helpers.php", + "library/Mockery.php" + ], + "psr-4": { + "Mockery\\": "library/Mockery" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Pádraic Brady", + "email": "padraic.brady@gmail.com", + "homepage": "https://github.com/padraic", + "role": "Author" + }, + { + "name": "Dave Marshall", + "email": "dave.marshall@atstsolutions.co.uk", + "homepage": "https://davedevelopment.co.uk", + "role": "Developer" + }, + { + "name": "Nathanael Esayeas", + "email": "nathanael.esayeas@protonmail.com", + "homepage": "https://github.com/ghostwriter", + "role": "Lead Developer" + } + ], + "description": "Mockery is a simple yet flexible PHP mock object framework", + "homepage": "https://github.com/mockery/mockery", + "keywords": [ + "BDD", + "TDD", + "library", + "mock", + "mock objects", + "mockery", + "stub", + "test", + "test double", + "testing" + ], + "support": { + "docs": "https://docs.mockery.io/", + "issues": "https://github.com/mockery/mockery/issues", + "rss": "https://github.com/mockery/mockery/releases.atom", + "security": "https://github.com/mockery/mockery/security/advisories", + "source": "https://github.com/mockery/mockery" + }, + "time": "2024-05-16T03:13:13+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.13.0", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "024473a478be9df5fdaca2c793f2232fe788e414" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414", + "reference": "024473a478be9df5fdaca2c793f2232fe788e414", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "conflict": { + "doctrine/collections": "<1.6.8", + "doctrine/common": "<2.13.3 || >=3 <3.2.2" + }, + "require-dev": { + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpspec/prophecy": "^1.10", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + }, + "type": "library", + "autoload": { + "files": [ + "src/DeepCopy/deep_copy.php" + ], + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.13.0" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2025-02-12T12:17:51+00:00" + }, + { + "name": "nunomaduro/collision", + "version": "v8.7.0", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/collision.git", + "reference": "586cb8181a257a2152b6a855ca8d9598878a1a26" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/586cb8181a257a2152b6a855ca8d9598878a1a26", + "reference": "586cb8181a257a2152b6a855ca8d9598878a1a26", + "shasum": "" + }, + "require": { + "filp/whoops": "^2.17.0", + "nunomaduro/termwind": "^2.3.0", + "php": "^8.2.0", + "symfony/console": "^7.2.1" + }, + "conflict": { + "laravel/framework": "<11.39.1 || >=13.0.0", + "phpunit/phpunit": "<11.5.3 || >=12.0.0" + }, + "require-dev": { + "larastan/larastan": "^2.10.0", + "laravel/framework": "^11.44.2", + "laravel/pint": "^1.21.2", + "laravel/sail": "^1.41.0", + "laravel/sanctum": "^4.0.8", + "laravel/tinker": "^2.10.1", + "orchestra/testbench-core": "^9.12.0", + "pestphp/pest": "^3.7.4", + "sebastian/environment": "^6.1.0 || ^7.2.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" + ] + }, + "branch-alias": { + "dev-8.x": "8.x-dev" + } + }, + "autoload": { + "files": [ + "./src/Adapters/Phpunit/Autoload.php" + ], + "psr-4": { + "NunoMaduro\\Collision\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Cli error handling for console/command-line PHP applications.", + "keywords": [ + "artisan", + "cli", + "command-line", + "console", + "dev", + "error", + "handling", + "laravel", + "laravel-zero", + "php", + "symfony" + ], + "support": { + "issues": "https://github.com/nunomaduro/collision/issues", + "source": "https://github.com/nunomaduro/collision" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://www.patreon.com/nunomaduro", + "type": "patreon" + } + ], + "time": "2025-03-14T22:37:40+00:00" + }, + { + "name": "phar-io/manifest", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "54750ef60c58e43759730615a392c31c80e23176" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", + "reference": "54750ef60c58e43759730615a392c31c80e23176", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:33:53+00:00" + }, + { + "name": "phar-io/version", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" + }, + "time": "2022-02-21T01:04:05+00:00" + }, + { + "name": "php-debugbar/php-debugbar", + "version": "v2.1.6", + "source": { + "type": "git", + "url": "https://github.com/php-debugbar/php-debugbar.git", + "reference": "16fa68da5617220594aa5e33fa9de415f94784a0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-debugbar/php-debugbar/zipball/16fa68da5617220594aa5e33fa9de415f94784a0", + "reference": "16fa68da5617220594aa5e33fa9de415f94784a0", + "shasum": "" + }, + "require": { + "php": "^8", + "psr/log": "^1|^2|^3", + "symfony/var-dumper": "^4|^5|^6|^7" + }, + "require-dev": { + "dbrekelmans/bdi": "^1", + "phpunit/phpunit": "^8|^9", + "symfony/panther": "^1|^2.1", + "twig/twig": "^1.38|^2.7|^3.0" + }, + "suggest": { + "kriswallsmith/assetic": "The best way to manage assets", + "monolog/monolog": "Log using Monolog", + "predis/predis": "Redis storage" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "psr-4": { + "DebugBar\\": "src/DebugBar/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Maxime Bouroumeau-Fuseau", + "email": "maxime.bouroumeau@gmail.com", + "homepage": "http://maximebf.com" + }, + { + "name": "Barry vd. Heuvel", + "email": "barryvdh@gmail.com" + } + ], + "description": "Debug bar in the browser for php application", + "homepage": "https://github.com/php-debugbar/php-debugbar", + "keywords": [ + "debug", + "debug bar", + "debugbar", + "dev" + ], + "support": { + "issues": "https://github.com/php-debugbar/php-debugbar/issues", + "source": "https://github.com/php-debugbar/php-debugbar/tree/v2.1.6" + }, + "time": "2025-02-21T17:47:03+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "11.0.9", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/14d63fbcca18457e49c6f8bebaa91a87e8e188d7", + "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^5.4.0", + "php": ">=8.2", + "phpunit/php-file-iterator": "^5.1.0", + "phpunit/php-text-template": "^4.0.1", + "sebastian/code-unit-reverse-lookup": "^4.0.1", + "sebastian/complexity": "^4.0.1", + "sebastian/environment": "^7.2.0", + "sebastian/lines-of-code": "^3.0.1", + "sebastian/version": "^5.0.2", + "theseer/tokenizer": "^1.2.3" + }, + "require-dev": { + "phpunit/phpunit": "^11.5.2" + }, + "suggest": { + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "11.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.9" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-02-25T13:26:39+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "5.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6", + "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-08-27T05:02:59+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "5.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2", + "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^11.0" + }, + "suggest": { + "ext-pcntl": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "security": "https://github.com/sebastianbergmann/php-invoker/security/policy", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:07:44+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964", + "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "security": "https://github.com/sebastianbergmann/php-text-template/security/policy", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:08:43+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "7.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3", + "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "security": "https://github.com/sebastianbergmann/php-timer/security/policy", + "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:09:35+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "11.5.12", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "d42785840519401ed2113292263795eb4c0f95da" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/d42785840519401ed2113292263795eb4c0f95da", + "reference": "d42785840519401ed2113292263795eb4c0f95da", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.13.0", + "phar-io/manifest": "^2.0.4", + "phar-io/version": "^3.2.1", + "php": ">=8.2", + "phpunit/php-code-coverage": "^11.0.9", + "phpunit/php-file-iterator": "^5.1.0", + "phpunit/php-invoker": "^5.0.1", + "phpunit/php-text-template": "^4.0.1", + "phpunit/php-timer": "^7.0.1", + "sebastian/cli-parser": "^3.0.2", + "sebastian/code-unit": "^3.0.2", + "sebastian/comparator": "^6.3.1", + "sebastian/diff": "^6.0.2", + "sebastian/environment": "^7.2.0", + "sebastian/exporter": "^6.3.0", + "sebastian/global-state": "^7.0.2", + "sebastian/object-enumerator": "^6.0.1", + "sebastian/type": "^5.1.0", + "sebastian/version": "^5.0.2", + "staabm/side-effects-detector": "^1.0.5" + }, + "suggest": { + "ext-soap": "To be able to generate mocks based on WSDL files" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "11.5-dev" + } + }, + "autoload": { + "files": [ + "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.12" + }, + "funding": [ + { + "url": "https://phpunit.de/sponsors.html", + "type": "custom" + }, + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", + "type": "tidelift" + } + ], + "time": "2025-03-07T07:31:03+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180", + "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for parsing CLI options", + "homepage": "https://github.com/sebastianbergmann/cli-parser", + "support": { + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "security": "https://github.com/sebastianbergmann/cli-parser/security/policy", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:41:36+00:00" + }, + { + "name": "sebastian/code-unit", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca", + "reference": "ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the PHP code units", + "homepage": "https://github.com/sebastianbergmann/code-unit", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "security": "https://github.com/sebastianbergmann/code-unit/security/policy", + "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-12-12T09:59:06+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "183a9b2632194febd219bb9246eee421dad8d45e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e", + "reference": "183a9b2632194febd219bb9246eee421dad8d45e", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:45:54+00:00" + }, + { + "name": "sebastian/comparator", + "version": "6.3.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/24b8fbc2c8e201bb1308e7b05148d6ab393b6959", + "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.2", + "sebastian/diff": "^6.0", + "sebastian/exporter": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.4" + }, + "suggest": { + "ext-bcmath": "For comparing BcMath\\Number objects" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.3-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "security": "https://github.com/sebastianbergmann/comparator/security/policy", + "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-03-07T06:57:01+00:00" + }, + { + "name": "sebastian/complexity", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "ee41d384ab1906c68852636b6de493846e13e5a0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0", + "reference": "ee41d384ab1906c68852636b6de493846e13e5a0", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^5.0", + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for calculating the complexity of PHP code units", + "homepage": "https://github.com/sebastianbergmann/complexity", + "support": { + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "security": "https://github.com/sebastianbergmann/complexity/security/policy", + "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:49:50+00:00" + }, + { + "name": "sebastian/diff", + "version": "6.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544", + "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0", + "symfony/process": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "security": "https://github.com/sebastianbergmann/diff/security/policy", + "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:53:05+00:00" + }, + { + "name": "sebastian/environment", + "version": "7.2.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5", + "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "https://github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "security": "https://github.com/sebastianbergmann/environment/security/policy", + "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:54:44+00:00" + }, + { + "name": "sebastian/exporter", + "version": "6.3.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3", + "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=8.2", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "https://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "security": "https://github.com/sebastianbergmann/exporter/security/policy", + "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-12-05T09:17:50+00:00" + }, + { + "name": "sebastian/global-state", + "version": "7.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "3be331570a721f9a4b5917f4209773de17f747d7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7", + "reference": "3be331570a721f9a4b5917f4209773de17f747d7", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "sebastian/object-reflector": "^4.0", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "https://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "security": "https://github.com/sebastianbergmann/global-state/security/policy", + "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:57:36+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a", + "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^5.0", + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "support": { + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:58:38+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "6.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "f5b498e631a74204185071eb41f33f38d64608aa" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa", + "reference": "f5b498e631a74204185071eb41f33f38d64608aa", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "sebastian/object-reflector": "^4.0", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:00:13+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9", + "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "security": "https://github.com/sebastianbergmann/object-reflector/security/policy", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:01:32+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "6.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "694d156164372abbd149a4b85ccda2e4670c0e16" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16", + "reference": "694d156164372abbd149a4b85ccda2e4670c0e16", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "https://github.com/sebastianbergmann/recursion-context", + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "security": "https://github.com/sebastianbergmann/recursion-context/security/policy", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:10:34+00:00" + }, + { + "name": "sebastian/type", + "version": "5.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac", + "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", + "support": { + "issues": "https://github.com/sebastianbergmann/type/issues", + "security": "https://github.com/sebastianbergmann/type/security/policy", + "source": "https://github.com/sebastianbergmann/type/tree/5.1.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-09-17T13:12:04+00:00" + }, + { + "name": "sebastian/version", + "version": "5.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874", + "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "security": "https://github.com/sebastianbergmann/version/security/policy", + "source": "https://github.com/sebastianbergmann/version/tree/5.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-10-09T05:16:32+00:00" + }, + { + "name": "staabm/side-effects-detector", + "version": "1.0.5", + "source": { + "type": "git", + "url": "https://github.com/staabm/side-effects-detector.git", + "reference": "d8334211a140ce329c13726d4a715adbddd0a163" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163", + "reference": "d8334211a140ce329c13726d4a715adbddd0a163", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^1.12.6", + "phpunit/phpunit": "^9.6.21", + "symfony/var-dumper": "^5.4.43", + "tomasvotruba/type-coverage": "1.0.0", + "tomasvotruba/unused-public": "1.0.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "lib/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A static analysis tool to detect side effects in PHP code", + "keywords": [ + "static analysis" + ], + "support": { + "issues": "https://github.com/staabm/side-effects-detector/issues", + "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5" + }, + "funding": [ + { + "url": "https://github.com/staabm", + "type": "github" + } + ], + "time": "2024-10-20T05:08:20+00:00" + }, + { + "name": "symfony/yaml", + "version": "v7.2.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "ac238f173df0c9c1120f862d0f599e17535a87ec" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/ac238f173df0c9c1120f862d0f599e17535a87ec", + "reference": "ac238f173df0c9c1120f862d0f599e17535a87ec", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/console": "<6.4" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0" + }, + "bin": [ + "Resources/bin/yaml-lint" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Loads and dumps YAML files", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/yaml/tree/v7.2.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-01-07T12:55:42+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.2.3", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "support": { + "issues": "https://github.com/theseer/tokenizer/issues", + "source": "https://github.com/theseer/tokenizer/tree/1.2.3" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:36:25+00:00" + } + ], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": {}, + "prefer-stable": true, + "prefer-lowest": false, + "platform": { + "php": "^8.2" + }, + "platform-dev": {}, + "plugin-api-version": "2.6.0" +} diff --git a/config/app.php b/config/app.php new file mode 100644 index 0000000..324b513 --- /dev/null +++ b/config/app.php @@ -0,0 +1,126 @@ + env('APP_NAME', 'Laravel'), + + /* + |-------------------------------------------------------------------------- + | Application Environment + |-------------------------------------------------------------------------- + | + | This value determines the "environment" your application is currently + | running in. This may determine how you prefer to configure various + | services the application utilizes. Set this in your ".env" file. + | + */ + + 'env' => env('APP_ENV', 'production'), + + /* + |-------------------------------------------------------------------------- + | Application Debug Mode + |-------------------------------------------------------------------------- + | + | When your application is in debug mode, detailed error messages with + | stack traces will be shown on every error that occurs within your + | application. If disabled, a simple generic error page is shown. + | + */ + + 'debug' => (bool) env('APP_DEBUG', false), + + /* + |-------------------------------------------------------------------------- + | Application URL + |-------------------------------------------------------------------------- + | + | This URL is used by the console to properly generate URLs when using + | the Artisan command line tool. You should set this to the root of + | the application so that it's available within Artisan commands. + | + */ + + 'url' => env('APP_URL', 'http://localhost'), + + /* + |-------------------------------------------------------------------------- + | Application Timezone + |-------------------------------------------------------------------------- + | + | Here you may specify the default timezone for your application, which + | will be used by the PHP date and date-time functions. The timezone + | is set to "UTC" by default as it is suitable for most use cases. + | + */ + + 'timezone' => 'UTC', + + /* + |-------------------------------------------------------------------------- + | Application Locale Configuration + |-------------------------------------------------------------------------- + | + | The application locale determines the default locale that will be used + | by Laravel's translation / localization methods. This option can be + | set to any locale for which you plan to have translation strings. + | + */ + + 'locale' => env('APP_LOCALE', 'en'), + + 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'), + + 'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'), + + /* + |-------------------------------------------------------------------------- + | Encryption Key + |-------------------------------------------------------------------------- + | + | This key is utilized by Laravel's encryption services and should be set + | to a random, 32 character string to ensure that all encrypted values + | are secure. You should do this prior to deploying the application. + | + */ + + 'cipher' => 'AES-256-CBC', + + 'key' => env('APP_KEY'), + + 'previous_keys' => [ + ...array_filter( + explode(',', env('APP_PREVIOUS_KEYS', '')) + ), + ], + + /* + |-------------------------------------------------------------------------- + | Maintenance Mode Driver + |-------------------------------------------------------------------------- + | + | These configuration options determine the driver used to determine and + | manage Laravel's "maintenance mode" status. The "cache" driver will + | allow maintenance mode to be controlled across multiple machines. + | + | Supported drivers: "file", "cache" + | + */ + + 'maintenance' => [ + 'driver' => env('APP_MAINTENANCE_DRIVER', 'file'), + 'store' => env('APP_MAINTENANCE_STORE', 'database'), + ], + +]; diff --git a/config/auth.php b/config/auth.php new file mode 100644 index 0000000..0ba5d5d --- /dev/null +++ b/config/auth.php @@ -0,0 +1,115 @@ + [ + 'guard' => env('AUTH_GUARD', 'web'), + 'passwords' => env('AUTH_PASSWORD_BROKER', 'users'), + ], + + /* + |-------------------------------------------------------------------------- + | Authentication Guards + |-------------------------------------------------------------------------- + | + | Next, you may define every authentication guard for your application. + | Of course, a great default configuration has been defined for you + | which utilizes session storage plus the Eloquent user provider. + | + | All authentication guards have a user provider, which defines how the + | users are actually retrieved out of your database or other storage + | system used by the application. Typically, Eloquent is utilized. + | + | Supported: "session" + | + */ + + 'guards' => [ + 'web' => [ + 'driver' => 'session', + 'provider' => 'users', + ], + ], + + /* + |-------------------------------------------------------------------------- + | User Providers + |-------------------------------------------------------------------------- + | + | All authentication guards have a user provider, which defines how the + | users are actually retrieved out of your database or other storage + | system used by the application. Typically, Eloquent is utilized. + | + | If you have multiple user tables or models you may configure multiple + | providers to represent the model / table. These providers may then + | be assigned to any extra authentication guards you have defined. + | + | Supported: "database", "eloquent" + | + */ + + 'providers' => [ + 'users' => [ + 'driver' => 'eloquent', + 'model' => env('AUTH_MODEL', App\Models\User::class), + ], + + // 'users' => [ + // 'driver' => 'database', + // 'table' => 'users', + // ], + ], + + /* + |-------------------------------------------------------------------------- + | Resetting Passwords + |-------------------------------------------------------------------------- + | + | These configuration options specify the behavior of Laravel's password + | reset functionality, including the table utilized for token storage + | and the user provider that is invoked to actually retrieve users. + | + | The expiry time is the number of minutes that each reset token will be + | considered valid. This security feature keeps tokens short-lived so + | they have less time to be guessed. You may change this as needed. + | + | The throttle setting is the number of seconds a user must wait before + | generating more password reset tokens. This prevents the user from + | quickly generating a very large amount of password reset tokens. + | + */ + + 'passwords' => [ + 'users' => [ + 'provider' => 'users', + 'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'), + 'expire' => 60, + 'throttle' => 60, + ], + ], + + /* + |-------------------------------------------------------------------------- + | Password Confirmation Timeout + |-------------------------------------------------------------------------- + | + | Here you may define the amount of seconds before a password confirmation + | window expires and users are asked to re-enter their password via the + | confirmation screen. By default, the timeout lasts for three hours. + | + */ + + 'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800), + +]; diff --git a/config/cache.php b/config/cache.php new file mode 100644 index 0000000..925f7d2 --- /dev/null +++ b/config/cache.php @@ -0,0 +1,108 @@ + env('CACHE_STORE', 'database'), + + /* + |-------------------------------------------------------------------------- + | Cache Stores + |-------------------------------------------------------------------------- + | + | Here you may define all of the cache "stores" for your application as + | well as their drivers. You may even define multiple stores for the + | same cache driver to group types of items stored in your caches. + | + | Supported drivers: "array", "database", "file", "memcached", + | "redis", "dynamodb", "octane", "null" + | + */ + + 'stores' => [ + + 'array' => [ + 'driver' => 'array', + 'serialize' => false, + ], + + 'database' => [ + 'driver' => 'database', + 'connection' => env('DB_CACHE_CONNECTION'), + 'table' => env('DB_CACHE_TABLE', 'cache'), + 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'), + 'lock_table' => env('DB_CACHE_LOCK_TABLE'), + ], + + 'file' => [ + 'driver' => 'file', + 'path' => storage_path('framework/cache/data'), + 'lock_path' => storage_path('framework/cache/data'), + ], + + 'memcached' => [ + 'driver' => 'memcached', + 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), + 'sasl' => [ + env('MEMCACHED_USERNAME'), + env('MEMCACHED_PASSWORD'), + ], + 'options' => [ + // Memcached::OPT_CONNECT_TIMEOUT => 2000, + ], + 'servers' => [ + [ + 'host' => env('MEMCACHED_HOST', '127.0.0.1'), + 'port' => env('MEMCACHED_PORT', 11211), + 'weight' => 100, + ], + ], + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => env('REDIS_CACHE_CONNECTION', 'cache'), + 'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'), + ], + + 'dynamodb' => [ + 'driver' => 'dynamodb', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), + 'endpoint' => env('DYNAMODB_ENDPOINT'), + ], + + 'octane' => [ + 'driver' => 'octane', + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Cache Key Prefix + |-------------------------------------------------------------------------- + | + | When utilizing the APC, database, memcached, Redis, and DynamoDB cache + | stores, there might be other applications using the same cache. For + | that reason, you may prefix every cache key to avoid collisions. + | + */ + + 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'), + +]; diff --git a/config/database.php b/config/database.php new file mode 100644 index 0000000..8910562 --- /dev/null +++ b/config/database.php @@ -0,0 +1,174 @@ + env('DB_CONNECTION', 'sqlite'), + + /* + |-------------------------------------------------------------------------- + | Database Connections + |-------------------------------------------------------------------------- + | + | Below are all of the database connections defined for your application. + | An example configuration is provided for each database system which + | is supported by Laravel. You're free to add / remove connections. + | + */ + + 'connections' => [ + + 'sqlite' => [ + 'driver' => 'sqlite', + 'url' => env('DB_URL'), + 'database' => env('DB_DATABASE', database_path('database.sqlite')), + 'prefix' => '', + 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), + 'busy_timeout' => null, + 'journal_mode' => null, + 'synchronous' => null, + ], + + 'mysql' => [ + 'driver' => 'mysql', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => env('DB_CHARSET', 'utf8mb4'), + 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'mariadb' => [ + 'driver' => 'mariadb', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => env('DB_CHARSET', 'utf8mb4'), + 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'pgsql' => [ + 'driver' => 'pgsql', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '5432'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => env('DB_CHARSET', 'utf8'), + 'prefix' => '', + 'prefix_indexes' => true, + 'search_path' => 'public', + 'sslmode' => 'prefer', + ], + + 'sqlsrv' => [ + 'driver' => 'sqlsrv', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', 'localhost'), + 'port' => env('DB_PORT', '1433'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => env('DB_CHARSET', 'utf8'), + 'prefix' => '', + 'prefix_indexes' => true, + // 'encrypt' => env('DB_ENCRYPT', 'yes'), + // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'), + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Migration Repository Table + |-------------------------------------------------------------------------- + | + | This table keeps track of all the migrations that have already run for + | your application. Using this information, we can determine which of + | the migrations on disk haven't actually been run on the database. + | + */ + + 'migrations' => [ + 'table' => 'migrations', + 'update_date_on_publish' => true, + ], + + /* + |-------------------------------------------------------------------------- + | Redis Databases + |-------------------------------------------------------------------------- + | + | Redis is an open source, fast, and advanced key-value store that also + | provides a richer body of commands than a typical key-value system + | such as Memcached. You may define your connection settings here. + | + */ + + 'redis' => [ + + 'client' => env('REDIS_CLIENT', 'phpredis'), + + 'options' => [ + 'cluster' => env('REDIS_CLUSTER', 'redis'), + 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), + 'persistent' => env('REDIS_PERSISTENT', false), + ], + + 'default' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_DB', '0'), + ], + + 'cache' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_CACHE_DB', '1'), + ], + + ], + +]; diff --git a/config/filesystems.php b/config/filesystems.php new file mode 100644 index 0000000..3d671bd --- /dev/null +++ b/config/filesystems.php @@ -0,0 +1,80 @@ + env('FILESYSTEM_DISK', 'local'), + + /* + |-------------------------------------------------------------------------- + | Filesystem Disks + |-------------------------------------------------------------------------- + | + | Below you may configure as many filesystem disks as necessary, and you + | may even configure multiple disks for the same driver. Examples for + | most supported storage drivers are configured here for reference. + | + | Supported drivers: "local", "ftp", "sftp", "s3" + | + */ + + 'disks' => [ + + 'local' => [ + 'driver' => 'local', + 'root' => storage_path('app/private'), + 'serve' => true, + 'throw' => false, + 'report' => false, + ], + + 'public' => [ + 'driver' => 'local', + 'root' => storage_path('app/public'), + 'url' => env('APP_URL').'/storage', + 'visibility' => 'public', + 'throw' => false, + 'report' => false, + ], + + 's3' => [ + 'driver' => 's3', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION'), + 'bucket' => env('AWS_BUCKET'), + 'url' => env('AWS_URL'), + 'endpoint' => env('AWS_ENDPOINT'), + 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), + 'throw' => false, + 'report' => false, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Symbolic Links + |-------------------------------------------------------------------------- + | + | Here you may configure the symbolic links that will be created when the + | `storage:link` Artisan command is executed. The array keys should be + | the locations of the links and the values should be their targets. + | + */ + + 'links' => [ + public_path('storage') => storage_path('app/public'), + ], + +]; diff --git a/config/logging.php b/config/logging.php new file mode 100644 index 0000000..8d94292 --- /dev/null +++ b/config/logging.php @@ -0,0 +1,132 @@ + env('LOG_CHANNEL', 'stack'), + + /* + |-------------------------------------------------------------------------- + | Deprecations Log Channel + |-------------------------------------------------------------------------- + | + | This option controls the log channel that should be used to log warnings + | regarding deprecated PHP and library features. This allows you to get + | your application ready for upcoming major versions of dependencies. + | + */ + + 'deprecations' => [ + 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'), + 'trace' => env('LOG_DEPRECATIONS_TRACE', false), + ], + + /* + |-------------------------------------------------------------------------- + | Log Channels + |-------------------------------------------------------------------------- + | + | Here you may configure the log channels for your application. Laravel + | utilizes the Monolog PHP logging library, which includes a variety + | of powerful log handlers and formatters that you're free to use. + | + | Available drivers: "single", "daily", "slack", "syslog", + | "errorlog", "monolog", "custom", "stack" + | + */ + + 'channels' => [ + + 'stack' => [ + 'driver' => 'stack', + 'channels' => explode(',', env('LOG_STACK', 'single')), + 'ignore_exceptions' => false, + ], + + 'single' => [ + 'driver' => 'single', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'replace_placeholders' => true, + ], + + 'daily' => [ + 'driver' => 'daily', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'days' => env('LOG_DAILY_DAYS', 14), + 'replace_placeholders' => true, + ], + + 'slack' => [ + 'driver' => 'slack', + 'url' => env('LOG_SLACK_WEBHOOK_URL'), + 'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'), + 'emoji' => env('LOG_SLACK_EMOJI', ':boom:'), + 'level' => env('LOG_LEVEL', 'critical'), + 'replace_placeholders' => true, + ], + + 'papertrail' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class), + 'handler_with' => [ + 'host' => env('PAPERTRAIL_URL'), + 'port' => env('PAPERTRAIL_PORT'), + 'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'), + ], + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'stderr' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => StreamHandler::class, + 'formatter' => env('LOG_STDERR_FORMATTER'), + 'with' => [ + 'stream' => 'php://stderr', + ], + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'syslog' => [ + 'driver' => 'syslog', + 'level' => env('LOG_LEVEL', 'debug'), + 'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER), + 'replace_placeholders' => true, + ], + + 'errorlog' => [ + 'driver' => 'errorlog', + 'level' => env('LOG_LEVEL', 'debug'), + 'replace_placeholders' => true, + ], + + 'null' => [ + 'driver' => 'monolog', + 'handler' => NullHandler::class, + ], + + 'emergency' => [ + 'path' => storage_path('logs/laravel.log'), + ], + + ], + +]; diff --git a/config/mail.php b/config/mail.php new file mode 100644 index 0000000..756305b --- /dev/null +++ b/config/mail.php @@ -0,0 +1,116 @@ + env('MAIL_MAILER', 'log'), + + /* + |-------------------------------------------------------------------------- + | Mailer Configurations + |-------------------------------------------------------------------------- + | + | Here you may configure all of the mailers used by your application plus + | their respective settings. Several examples have been configured for + | you and you are free to add your own as your application requires. + | + | Laravel supports a variety of mail "transport" drivers that can be used + | when delivering an email. You may specify which one you're using for + | your mailers below. You may also add additional mailers if needed. + | + | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2", + | "postmark", "resend", "log", "array", + | "failover", "roundrobin" + | + */ + + 'mailers' => [ + + 'smtp' => [ + 'transport' => 'smtp', + 'scheme' => env('MAIL_SCHEME'), + 'url' => env('MAIL_URL'), + 'host' => env('MAIL_HOST', '127.0.0.1'), + 'port' => env('MAIL_PORT', 2525), + 'username' => env('MAIL_USERNAME'), + 'password' => env('MAIL_PASSWORD'), + 'timeout' => null, + 'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)), + ], + + 'ses' => [ + 'transport' => 'ses', + ], + + 'postmark' => [ + 'transport' => 'postmark', + // 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'), + // 'client' => [ + // 'timeout' => 5, + // ], + ], + + 'resend' => [ + 'transport' => 'resend', + ], + + 'sendmail' => [ + 'transport' => 'sendmail', + 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'), + ], + + 'log' => [ + 'transport' => 'log', + 'channel' => env('MAIL_LOG_CHANNEL'), + ], + + 'array' => [ + 'transport' => 'array', + ], + + 'failover' => [ + 'transport' => 'failover', + 'mailers' => [ + 'smtp', + 'log', + ], + ], + + 'roundrobin' => [ + 'transport' => 'roundrobin', + 'mailers' => [ + 'ses', + 'postmark', + ], + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Global "From" Address + |-------------------------------------------------------------------------- + | + | You may wish for all emails sent by your application to be sent from + | the same address. Here you may specify a name and address that is + | used globally for all emails that are sent by your application. + | + */ + + 'from' => [ + 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), + 'name' => env('MAIL_FROM_NAME', 'Example'), + ], + +]; diff --git a/config/queue.php b/config/queue.php new file mode 100644 index 0000000..116bd8d --- /dev/null +++ b/config/queue.php @@ -0,0 +1,112 @@ + env('QUEUE_CONNECTION', 'database'), + + /* + |-------------------------------------------------------------------------- + | Queue Connections + |-------------------------------------------------------------------------- + | + | Here you may configure the connection options for every queue backend + | used by your application. An example configuration is provided for + | each backend supported by Laravel. You're also free to add more. + | + | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" + | + */ + + 'connections' => [ + + 'sync' => [ + 'driver' => 'sync', + ], + + 'database' => [ + 'driver' => 'database', + 'connection' => env('DB_QUEUE_CONNECTION'), + 'table' => env('DB_QUEUE_TABLE', 'jobs'), + 'queue' => env('DB_QUEUE', 'default'), + 'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90), + 'after_commit' => false, + ], + + 'beanstalkd' => [ + 'driver' => 'beanstalkd', + 'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'), + 'queue' => env('BEANSTALKD_QUEUE', 'default'), + 'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90), + 'block_for' => 0, + 'after_commit' => false, + ], + + 'sqs' => [ + 'driver' => 'sqs', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), + 'queue' => env('SQS_QUEUE', 'default'), + 'suffix' => env('SQS_SUFFIX'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'after_commit' => false, + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => env('REDIS_QUEUE_CONNECTION', 'default'), + 'queue' => env('REDIS_QUEUE', 'default'), + 'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90), + 'block_for' => null, + 'after_commit' => false, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Job Batching + |-------------------------------------------------------------------------- + | + | The following options configure the database and table that store job + | batching information. These options can be updated to any database + | connection and table which has been defined by your application. + | + */ + + 'batching' => [ + 'database' => env('DB_CONNECTION', 'sqlite'), + 'table' => 'job_batches', + ], + + /* + |-------------------------------------------------------------------------- + | Failed Queue Jobs + |-------------------------------------------------------------------------- + | + | These options configure the behavior of failed queue job logging so you + | can control how and where failed jobs are stored. Laravel ships with + | support for storing failed jobs in a simple file or in a database. + | + | Supported drivers: "database-uuids", "dynamodb", "file", "null" + | + */ + + 'failed' => [ + 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), + 'database' => env('DB_CONNECTION', 'sqlite'), + 'table' => 'failed_jobs', + ], + +]; diff --git a/config/services.php b/config/services.php new file mode 100644 index 0000000..27a3617 --- /dev/null +++ b/config/services.php @@ -0,0 +1,38 @@ + [ + 'token' => env('POSTMARK_TOKEN'), + ], + + 'ses' => [ + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + ], + + 'resend' => [ + 'key' => env('RESEND_KEY'), + ], + + 'slack' => [ + 'notifications' => [ + 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'), + 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'), + ], + ], + +]; diff --git a/config/session.php b/config/session.php new file mode 100644 index 0000000..ba0aa60 --- /dev/null +++ b/config/session.php @@ -0,0 +1,217 @@ + env('SESSION_DRIVER', 'database'), + + /* + |-------------------------------------------------------------------------- + | Session Lifetime + |-------------------------------------------------------------------------- + | + | Here you may specify the number of minutes that you wish the session + | to be allowed to remain idle before it expires. If you want them + | to expire immediately when the browser is closed then you may + | indicate that via the expire_on_close configuration option. + | + */ + + 'lifetime' => (int) env('SESSION_LIFETIME', 120), + + 'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false), + + /* + |-------------------------------------------------------------------------- + | Session Encryption + |-------------------------------------------------------------------------- + | + | This option allows you to easily specify that all of your session data + | should be encrypted before it's stored. All encryption is performed + | automatically by Laravel and you may use the session like normal. + | + */ + + 'encrypt' => env('SESSION_ENCRYPT', false), + + /* + |-------------------------------------------------------------------------- + | Session File Location + |-------------------------------------------------------------------------- + | + | When utilizing the "file" session driver, the session files are placed + | on disk. The default storage location is defined here; however, you + | are free to provide another location where they should be stored. + | + */ + + 'files' => storage_path('framework/sessions'), + + /* + |-------------------------------------------------------------------------- + | Session Database Connection + |-------------------------------------------------------------------------- + | + | When using the "database" or "redis" session drivers, you may specify a + | connection that should be used to manage these sessions. This should + | correspond to a connection in your database configuration options. + | + */ + + 'connection' => env('SESSION_CONNECTION'), + + /* + |-------------------------------------------------------------------------- + | Session Database Table + |-------------------------------------------------------------------------- + | + | When using the "database" session driver, you may specify the table to + | be used to store sessions. Of course, a sensible default is defined + | for you; however, you're welcome to change this to another table. + | + */ + + 'table' => env('SESSION_TABLE', 'sessions'), + + /* + |-------------------------------------------------------------------------- + | Session Cache Store + |-------------------------------------------------------------------------- + | + | When using one of the framework's cache driven session backends, you may + | define the cache store which should be used to store the session data + | between requests. This must match one of your defined cache stores. + | + | Affects: "apc", "dynamodb", "memcached", "redis" + | + */ + + 'store' => env('SESSION_STORE'), + + /* + |-------------------------------------------------------------------------- + | Session Sweeping Lottery + |-------------------------------------------------------------------------- + | + | Some session drivers must manually sweep their storage location to get + | rid of old sessions from storage. Here are the chances that it will + | happen on a given request. By default, the odds are 2 out of 100. + | + */ + + 'lottery' => [2, 100], + + /* + |-------------------------------------------------------------------------- + | Session Cookie Name + |-------------------------------------------------------------------------- + | + | Here you may change the name of the session cookie that is created by + | the framework. Typically, you should not need to change this value + | since doing so does not grant a meaningful security improvement. + | + */ + + 'cookie' => env( + 'SESSION_COOKIE', + Str::slug(env('APP_NAME', 'laravel'), '_').'_session' + ), + + /* + |-------------------------------------------------------------------------- + | Session Cookie Path + |-------------------------------------------------------------------------- + | + | The session cookie path determines the path for which the cookie will + | be regarded as available. Typically, this will be the root path of + | your application, but you're free to change this when necessary. + | + */ + + 'path' => env('SESSION_PATH', '/'), + + /* + |-------------------------------------------------------------------------- + | Session Cookie Domain + |-------------------------------------------------------------------------- + | + | This value determines the domain and subdomains the session cookie is + | available to. By default, the cookie will be available to the root + | domain and all subdomains. Typically, this shouldn't be changed. + | + */ + + 'domain' => env('SESSION_DOMAIN'), + + /* + |-------------------------------------------------------------------------- + | HTTPS Only Cookies + |-------------------------------------------------------------------------- + | + | By setting this option to true, session cookies will only be sent back + | to the server if the browser has a HTTPS connection. This will keep + | the cookie from being sent to you when it can't be done securely. + | + */ + + 'secure' => env('SESSION_SECURE_COOKIE'), + + /* + |-------------------------------------------------------------------------- + | HTTP Access Only + |-------------------------------------------------------------------------- + | + | Setting this value to true will prevent JavaScript from accessing the + | value of the cookie and the cookie will only be accessible through + | the HTTP protocol. It's unlikely you should disable this option. + | + */ + + 'http_only' => env('SESSION_HTTP_ONLY', true), + + /* + |-------------------------------------------------------------------------- + | Same-Site Cookies + |-------------------------------------------------------------------------- + | + | This option determines how your cookies behave when cross-site requests + | take place, and can be used to mitigate CSRF attacks. By default, we + | will set this value to "lax" to permit secure cross-site requests. + | + | See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value + | + | Supported: "lax", "strict", "none", null + | + */ + + 'same_site' => env('SESSION_SAME_SITE', 'lax'), + + /* + |-------------------------------------------------------------------------- + | Partitioned Cookies + |-------------------------------------------------------------------------- + | + | Setting this value to true will tie the cookie to the top-level site for + | a cross-site context. Partitioned cookies are accepted by the browser + | when flagged "secure" and the Same-Site attribute is set to "none". + | + */ + + 'partitioned' => env('SESSION_PARTITIONED_COOKIE', false), + +]; diff --git a/database.sqlite b/database.sqlite new file mode 100644 index 0000000..e69de29 diff --git a/database/.gitignore b/database/.gitignore new file mode 100644 index 0000000..9b19b93 --- /dev/null +++ b/database/.gitignore @@ -0,0 +1 @@ +*.sqlite* diff --git a/database/factories/CategoryFactory.php b/database/factories/CategoryFactory.php new file mode 100644 index 0000000..405da21 --- /dev/null +++ b/database/factories/CategoryFactory.php @@ -0,0 +1,25 @@ + + */ +class CategoryFactory extends Factory +{ + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + 'name' => fake()->sentence(rand(1,2), false), + 'slug' => Str::slug(fake()->sentence(rand(1,2), false)) + ]; + } +} diff --git a/database/factories/PostFactory.php b/database/factories/PostFactory.php new file mode 100644 index 0000000..99fc6a0 --- /dev/null +++ b/database/factories/PostFactory.php @@ -0,0 +1,29 @@ + + */ +class PostFactory extends Factory +{ + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + 'title' => fake()->sentence(), + 'author_id' => User::factory(), + 'category_id' => Category::factory(), + 'slug' => Str::slug(fake()->sentence()), + 'body' => fake()->text() + ]; + } +} diff --git a/database/migrations/0001_01_01_000000_create_users_table.php b/database/migrations/0001_01_01_000000_create_users_table.php new file mode 100644 index 0000000..1325a4d --- /dev/null +++ b/database/migrations/0001_01_01_000000_create_users_table.php @@ -0,0 +1,47 @@ +id(); + $table->string('name'); + $table->string('username')->unique(); + $table->string('password'); + $table->timestamps(); + }); + + // Schema::create('password_reset_tokens', function (Blueprint $table) { + // $table->string('email')->primary(); + // $table->string('token'); + // $table->timestamp('created_at')->nullable(); + // }); + + Schema::create('sessions', function (Blueprint $table) { + $table->string('id')->primary(); + $table->foreignId('user_id')->nullable()->index(); + $table->string('ip_address', 45)->nullable(); + $table->text('user_agent')->nullable(); + $table->longText('payload'); + $table->integer('last_activity')->index(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('users'); + // Schema::dropIfExists('password_reset_tokens'); + Schema::dropIfExists('sessions'); + } +}; diff --git a/database/migrations/0001_01_01_000001_create_cache_table.php b/database/migrations/0001_01_01_000001_create_cache_table.php new file mode 100644 index 0000000..b9c106b --- /dev/null +++ b/database/migrations/0001_01_01_000001_create_cache_table.php @@ -0,0 +1,35 @@ +string('key')->primary(); + $table->mediumText('value'); + $table->integer('expiration'); + }); + + Schema::create('cache_locks', function (Blueprint $table) { + $table->string('key')->primary(); + $table->string('owner'); + $table->integer('expiration'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('cache'); + Schema::dropIfExists('cache_locks'); + } +}; diff --git a/database/migrations/0001_01_01_000002_create_jobs_table.php b/database/migrations/0001_01_01_000002_create_jobs_table.php new file mode 100644 index 0000000..425e705 --- /dev/null +++ b/database/migrations/0001_01_01_000002_create_jobs_table.php @@ -0,0 +1,57 @@ +id(); + $table->string('queue')->index(); + $table->longText('payload'); + $table->unsignedTinyInteger('attempts'); + $table->unsignedInteger('reserved_at')->nullable(); + $table->unsignedInteger('available_at'); + $table->unsignedInteger('created_at'); + }); + + Schema::create('job_batches', function (Blueprint $table) { + $table->string('id')->primary(); + $table->string('name'); + $table->integer('total_jobs'); + $table->integer('pending_jobs'); + $table->integer('failed_jobs'); + $table->longText('failed_job_ids'); + $table->mediumText('options')->nullable(); + $table->integer('cancelled_at')->nullable(); + $table->integer('created_at'); + $table->integer('finished_at')->nullable(); + }); + + Schema::create('failed_jobs', function (Blueprint $table) { + $table->id(); + $table->string('uuid')->unique(); + $table->text('connection'); + $table->text('queue'); + $table->longText('payload'); + $table->longText('exception'); + $table->timestamp('failed_at')->useCurrent(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('jobs'); + Schema::dropIfExists('job_batches'); + Schema::dropIfExists('failed_jobs'); + } +}; diff --git a/database/migrations/2025_05_09_063416_create_kriteria_table.php b/database/migrations/2025_05_09_063416_create_kriteria_table.php new file mode 100644 index 0000000..356a9a6 --- /dev/null +++ b/database/migrations/2025_05_09_063416_create_kriteria_table.php @@ -0,0 +1,32 @@ +id(); + $table->string('kode_kriteria'); + $table->string('nama_kriteria'); + $table->enum('jenis', ['Benefit', 'Cost']); // Menyimpan jenis kriteria (Benefit atau Cost) + $table->float('bobot'); + $table->timestamps(); + }); +} + + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('data_kriterias'); + } +}; diff --git a/database/migrations/2025_05_10_064833_create_sub_kriterias_table.php b/database/migrations/2025_05_10_064833_create_sub_kriterias_table.php new file mode 100644 index 0000000..344b2e9 --- /dev/null +++ b/database/migrations/2025_05_10_064833_create_sub_kriterias_table.php @@ -0,0 +1,24 @@ +id(); + $table->foreignId('kriteria_id')->constrained('data_kriterias')->onDelete('cascade'); + $table->string('nama_sub_kriteria'); + $table->float('bobot'); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('data_sub_kriterias'); + } +}; + diff --git a/database/migrations/2025_05_11_113622_create_data_alternatifs_table.php b/database/migrations/2025_05_11_113622_create_data_alternatifs_table.php new file mode 100644 index 0000000..5b9f7ef --- /dev/null +++ b/database/migrations/2025_05_11_113622_create_data_alternatifs_table.php @@ -0,0 +1,31 @@ +id(); + $table->string('nama_lahan'); + // $table->string('deskripsi'); + $table->unsignedBigInteger('user_id'); + $table->timestamps(); + $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('data_alternatifs'); + } +}; diff --git a/database/migrations/2025_05_12_071850_create_data_penilaian_table.php b/database/migrations/2025_05_12_071850_create_data_penilaian_table.php new file mode 100644 index 0000000..59a3f48 --- /dev/null +++ b/database/migrations/2025_05_12_071850_create_data_penilaian_table.php @@ -0,0 +1,30 @@ +id(); + $table->foreignId('alternatif_id')->constrained('data_alternatifs')->onDelete('cascade'); + $table->foreignId('kriteria_id')->constrained('data_kriterias')->onDelete('cascade'); + $table->foreignId('subkriteria_id')->constrained('data_sub_kriterias')->onDelete('cascade'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('data_penilaian'); + } +}; diff --git a/database/migrations/2025_05_21_084542_create_historis_perhitungan_table.php b/database/migrations/2025_05_21_084542_create_historis_perhitungan_table.php new file mode 100644 index 0000000..026d393 --- /dev/null +++ b/database/migrations/2025_05_21_084542_create_historis_perhitungan_table.php @@ -0,0 +1,30 @@ +id(); + $table->string('nama_lahan'); + $table->float('nilai_akhir'); + $table->string('periode'); // contoh: '2025-05' + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('historis_perhitungan'); + } +}; diff --git a/database/migrations/2025_05_26_042619_add_role_to_users_table.php b/database/migrations/2025_05_26_042619_add_role_to_users_table.php new file mode 100644 index 0000000..b71551b --- /dev/null +++ b/database/migrations/2025_05_26_042619_add_role_to_users_table.php @@ -0,0 +1,25 @@ +string('role')->default('user'); // nilai default: 'user' + }); + } + + public function down() + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn('role'); + }); + } +}; diff --git a/database/migrations/2025_05_27_011729_add_user_id_to_alternatifs_table.php b/database/migrations/2025_05_27_011729_add_user_id_to_alternatifs_table.php new file mode 100644 index 0000000..4e31359 --- /dev/null +++ b/database/migrations/2025_05_27_011729_add_user_id_to_alternatifs_table.php @@ -0,0 +1,30 @@ +unsignedBigInteger('user_id')->default(1)->after('id'); // tambahkan default 1 + // $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); + // }); + + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('data_alternatifs', function (Blueprint $table) { + // + }); + } +}; diff --git a/database/migrations/2025_06_12_072335_add_user_id_to_historis_perhitungan_table.php b/database/migrations/2025_06_12_072335_add_user_id_to_historis_perhitungan_table.php new file mode 100644 index 0000000..5c89092 --- /dev/null +++ b/database/migrations/2025_06_12_072335_add_user_id_to_historis_perhitungan_table.php @@ -0,0 +1,28 @@ +unsignedBigInteger('user_id')->after('id'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('historis_perhitungan', function (Blueprint $table) { + // + }); + } +}; diff --git a/database/migrations/2025_06_23_094143_create_kelompok_tani_table.php b/database/migrations/2025_06_23_094143_create_kelompok_tani_table.php new file mode 100644 index 0000000..69a9ffc --- /dev/null +++ b/database/migrations/2025_06_23_094143_create_kelompok_tani_table.php @@ -0,0 +1,28 @@ +id(); + $table->string('nama'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('kelompok_tani'); + } +}; diff --git a/database/migrations/2025_06_23_094245_create_member_kelompok_tani_table.php b/database/migrations/2025_06_23_094245_create_member_kelompok_tani_table.php new file mode 100644 index 0000000..9bb6986 --- /dev/null +++ b/database/migrations/2025_06_23_094245_create_member_kelompok_tani_table.php @@ -0,0 +1,30 @@ +id(); + $table->foreignId('user_id')->constrained()->onDelete('cascade'); + $table->foreignId('kelompok_tani_id')->constrained('kelompok_tani')->onDelete('cascade'); + $table->enum('role', ['admin', 'user']); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('member_kelompok_tani'); + } +}; diff --git a/database/migrations/2025_06_23_101231_update_role_enum_on_users_table.php b/database/migrations/2025_06_23_101231_update_role_enum_on_users_table.php new file mode 100644 index 0000000..264c8bb --- /dev/null +++ b/database/migrations/2025_06_23_101231_update_role_enum_on_users_table.php @@ -0,0 +1,26 @@ +create(); + + // User::factory()->create([ + // 'name' => 'Test User', + // 'email' => 'test@example.com', + // ]); + + + + + // Category::create([ + // 'name' => 'Web Design', + // 'slug' => 'web-design' + // ]); + + // Post::create([ + // 'title' => 'Judul Artikel 1', + // 'author_id' => 1, + // 'category_id' => 1, + // 'slug' => 'judul -artikel-1', + // 'body' => 'lorem ipsum dajowjjjjjjjjjjjjjjjjjjjjjjjfaoogaoidhgfuoagsduoabodsufbauosbfuodsafbuoadbfoadubfaosbfoasubfas' + // ]); + $this->call([ + // UserSeeder::class, + KriteriaSeeder::class, + SubKriteriaSeeder::class, + KelompokTaniSeeder::class, + ]); + + } +} diff --git a/database/seeders/KelompokTaniSeeder.php b/database/seeders/KelompokTaniSeeder.php new file mode 100644 index 0000000..39ef065 --- /dev/null +++ b/database/seeders/KelompokTaniSeeder.php @@ -0,0 +1,49 @@ + 'Kelompok Tani Mawar', + ]); + + // 2. Tambah Admin + $admin = User::create([ + 'name' => 'Admin Mawar', + 'username' => 'adminmawar', + 'password' => Hash::make('admin123'), + 'role' => 'admin', + ]); + + // 3. Tambah User + $user = User::create([ + 'name' => 'User Mawar', + 'username' => 'usermawar', + 'password' => Hash::make('user123'), + 'role' => 'user', + ]); + + // 4. Hubungkan ke member_kelompok_tani + MemberKelompokTani::create([ + 'user_id' => $admin->id, + 'kelompok_tani_id' => $kelompok->id, + 'role' => 'admin', + ]); + + MemberKelompokTani::create([ + 'user_id' => $user->id, + 'kelompok_tani_id' => $kelompok->id, + 'role' => 'user', + ]); + } +} diff --git a/database/seeders/KriteriaSeeder.php b/database/seeders/KriteriaSeeder.php new file mode 100644 index 0000000..21000c7 --- /dev/null +++ b/database/seeders/KriteriaSeeder.php @@ -0,0 +1,67 @@ +insert([ + [ + 'kode_kriteria' => 'C1', + 'nama_kriteria' => 'Curah Hujan', + 'jenis' => 'Benefit', + 'bobot' => 0.25, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kode_kriteria' => 'C2', + 'nama_kriteria' => 'pH Tanah', + 'jenis' => 'Benefit', + 'bobot' => 0.20, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kode_kriteria' => 'C3', + 'nama_kriteria' => 'Tekstur Tanah', + 'jenis' => 'Benefit', + 'bobot' => 0.15, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kode_kriteria' => 'C4', + 'nama_kriteria' => 'Temperatur', + 'jenis' => 'Benefit', + 'bobot' => 0.15, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kode_kriteria' => 'C5', + 'nama_kriteria' => 'Kelembapan', + 'jenis' => 'Benefit', + 'bobot' => 0.15, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kode_kriteria' => 'C6', + 'nama_kriteria' => 'Tanaman Sebelumnya', + 'jenis' => 'Benefit', + 'bobot' => 0.10, + 'created_at' => now(), + 'updated_at' => now(), + ], + ]); + } +} diff --git a/database/seeders/SubKriteriaSeeder.php b/database/seeders/SubKriteriaSeeder.php new file mode 100644 index 0000000..68fa50a --- /dev/null +++ b/database/seeders/SubKriteriaSeeder.php @@ -0,0 +1,187 @@ +insert([ + [ + 'kriteria_id' => 1, + 'nama_sub_kriteria' => '51 – 100 mm', + 'bobot' => 4, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 1, + 'nama_sub_kriteria' => '101 – 200 mm', + 'bobot' => 3, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 1, + 'nama_sub_kriteria' => '201 – 300 mm', + 'bobot' => 2, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 1, + 'nama_sub_kriteria' => '< 50 atau > 300 mm', + 'bobot' => 1, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 2, + 'nama_sub_kriteria' => '6.0 – 6.8', + 'bobot' => 4, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 2, + 'nama_sub_kriteria' => '5.5 – 5.9 atau 6.9 – 7.2', + 'bobot' => 3, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 2, + 'nama_sub_kriteria' => '5.0 – 5.4 atau 7.3 – 7.5', + 'bobot' => 2, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 2, + 'nama_sub_kriteria' => '< 5.0 atau > 7.5', + 'bobot' => 1, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 3, + 'nama_sub_kriteria' => 'Lempung Berpasir', + 'bobot' => 4, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 3, + 'nama_sub_kriteria' => 'Lempung', + 'bobot' => 3, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 3, + 'nama_sub_kriteria' => 'Lempung Liat', + 'bobot' => 2, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 3, + 'nama_sub_kriteria' => 'Berpasir Kasar atau Liat Berat', + 'bobot' => 1, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 4, + 'nama_sub_kriteria' => '24 - 28 °C', + 'bobot' => 4, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 4, + 'nama_sub_kriteria' => '29 – 32 °C atau 17 – 23 °C', + 'bobot' => 3, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 4, + 'nama_sub_kriteria' => '33 – 34 °C atau 14 – 16 °C', + 'bobot' => 2, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 4, + 'nama_sub_kriteria' => '> 34 °C atau < 14 °C', + 'bobot' => 1, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 5, + 'nama_sub_kriteria' => '60 – 80%', + 'bobot' => 4, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 5, + 'nama_sub_kriteria' => '50 – 59%', + 'bobot' => 3, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 5, + 'nama_sub_kriteria' => '40 – 49%', + 'bobot' => 2, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 5, + 'nama_sub_kriteria' => '< 40% atau > 80%', + 'bobot' => 1, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 6, + 'nama_sub_kriteria' => 'Padi, Jagung, Tebu, Bawang', + 'bobot' => 4, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 6, + 'nama_sub_kriteria' => 'Bayam, Sawi, Kacang Tanah', + 'bobot' => 3, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 6, + 'nama_sub_kriteria' => 'Tomat, Terong, Tembakau', + 'bobot' => 2, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kriteria_id' => 6, + 'nama_sub_kriteria' => 'Semua Jenis Tanaman Cabai', + 'bobot' => 1, + 'created_at' => now(), + 'updated_at' => now(), + ] + ]); + } +} diff --git a/database/seeders/SuperAdminSeeder.php b/database/seeders/SuperAdminSeeder.php new file mode 100644 index 0000000..2bbe730 --- /dev/null +++ b/database/seeders/SuperAdminSeeder.php @@ -0,0 +1,24 @@ + 'Super Admin', + 'username' => 'superadmin', + 'password' => Hash::make('passwordku'), + 'role' => 'super_admin', + ]); + } +} diff --git a/database/seeders/UserSeeder.php b/database/seeders/UserSeeder.php new file mode 100644 index 0000000..6c735d3 --- /dev/null +++ b/database/seeders/UserSeeder.php @@ -0,0 +1,48 @@ +insert([ + [ + 'name' => 'Admin Bebek', + 'username' => 'admin_bebek', + 'password' => Hash::make('b3b3kg1l4'), + 'role' => 'admin', + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'name' => 'User Cabai', + 'username' => 'user_cabai', + 'password' => Hash::make('cabai123'), + 'role' => 'user', + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'name' => 'User Jagung', + 'username' => 'user_jagung', + 'password' => Hash::make('jagung456'), + 'role' => 'user', + 'created_at' => now(), + 'updated_at' => now(), + ] + ]); + // User::factory(5)->create(); + } +} diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..6efc3d8 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,2641 @@ +{ + "name": "laravelcoba", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "devDependencies": { + "@tailwindcss/vite": "^4.1.5", + "autoprefixer": "^10.4.21", + "axios": "^1.7.4", + "concurrently": "^9.0.1", + "flowbite": "^3.1.2", + "flowbite-typography": "^1.0.5", + "laravel-vite-plugin": "^1.2.0", + "postcss": "^8.5.3", + "tailwindcss": "^4.1.5", + "vite": "^6.0.11" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.4.tgz", + "integrity": "sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.4.tgz", + "integrity": "sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.4.tgz", + "integrity": "sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.4.tgz", + "integrity": "sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.4.tgz", + "integrity": "sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.4.tgz", + "integrity": "sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.4.tgz", + "integrity": "sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.4.tgz", + "integrity": "sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.4.tgz", + "integrity": "sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.4.tgz", + "integrity": "sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.4.tgz", + "integrity": "sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.4.tgz", + "integrity": "sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.4.tgz", + "integrity": "sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.4.tgz", + "integrity": "sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.4.tgz", + "integrity": "sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.4.tgz", + "integrity": "sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.4.tgz", + "integrity": "sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.4.tgz", + "integrity": "sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.4.tgz", + "integrity": "sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.4.tgz", + "integrity": "sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.4.tgz", + "integrity": "sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.4.tgz", + "integrity": "sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.4.tgz", + "integrity": "sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.4.tgz", + "integrity": "sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.4.tgz", + "integrity": "sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "dev": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@rollup/plugin-node-resolve": { + "version": "15.3.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.3.1.tgz", + "integrity": "sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rollup/pluginutils": "^5.0.1", + "@types/resolve": "1.20.2", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.22.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^2.78.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/pluginutils": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.4.tgz", + "integrity": "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.40.2.tgz", + "integrity": "sha512-JkdNEq+DFxZfUwxvB58tHMHBHVgX23ew41g1OQinthJ+ryhdRk67O31S7sYw8u2lTjHUPFxwar07BBt1KHp/hg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.40.2.tgz", + "integrity": "sha512-13unNoZ8NzUmnndhPTkWPWbX3vtHodYmy+I9kuLxN+F+l+x3LdVF7UCu8TWVMt1POHLh6oDHhnOA04n8oJZhBw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.40.2.tgz", + "integrity": "sha512-Gzf1Hn2Aoe8VZzevHostPX23U7N5+4D36WJNHK88NZHCJr7aVMG4fadqkIf72eqVPGjGc0HJHNuUaUcxiR+N/w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.40.2.tgz", + "integrity": "sha512-47N4hxa01a4x6XnJoskMKTS8XZ0CZMd8YTbINbi+w03A2w4j1RTlnGHOz/P0+Bg1LaVL6ufZyNprSg+fW5nYQQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.40.2.tgz", + "integrity": "sha512-8t6aL4MD+rXSHHZUR1z19+9OFJ2rl1wGKvckN47XFRVO+QL/dUSpKA2SLRo4vMg7ELA8pzGpC+W9OEd1Z/ZqoQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.40.2.tgz", + "integrity": "sha512-C+AyHBzfpsOEYRFjztcYUFsH4S7UsE9cDtHCtma5BK8+ydOZYgMmWg1d/4KBytQspJCld8ZIujFMAdKG1xyr4Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.40.2.tgz", + "integrity": "sha512-de6TFZYIvJwRNjmW3+gaXiZ2DaWL5D5yGmSYzkdzjBDS3W+B9JQ48oZEsmMvemqjtAFzE16DIBLqd6IQQRuG9Q==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.40.2.tgz", + "integrity": "sha512-urjaEZubdIkacKc930hUDOfQPysezKla/O9qV+O89enqsqUmQm8Xj8O/vh0gHg4LYfv7Y7UsE3QjzLQzDYN1qg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.40.2.tgz", + "integrity": "sha512-KlE8IC0HFOC33taNt1zR8qNlBYHj31qGT1UqWqtvR/+NuCVhfufAq9fxO8BMFC22Wu0rxOwGVWxtCMvZVLmhQg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.40.2.tgz", + "integrity": "sha512-j8CgxvfM0kbnhu4XgjnCWJQyyBOeBI1Zq91Z850aUddUmPeQvuAy6OiMdPS46gNFgy8gN1xkYyLgwLYZG3rBOg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loongarch64-gnu": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.40.2.tgz", + "integrity": "sha512-Ybc/1qUampKuRF4tQXc7G7QY9YRyeVSykfK36Y5Qc5dmrIxwFhrOzqaVTNoZygqZ1ZieSWTibfFhQ5qK8jpWxw==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.40.2.tgz", + "integrity": "sha512-3FCIrnrt03CCsZqSYAOW/k9n625pjpuMzVfeI+ZBUSDT3MVIFDSPfSUgIl9FqUftxcUXInvFah79hE1c9abD+Q==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.40.2.tgz", + "integrity": "sha512-QNU7BFHEvHMp2ESSY3SozIkBPaPBDTsfVNGx3Xhv+TdvWXFGOSH2NJvhD1zKAT6AyuuErJgbdvaJhYVhVqrWTg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.40.2.tgz", + "integrity": "sha512-5W6vNYkhgfh7URiXTO1E9a0cy4fSgfE4+Hl5agb/U1sa0kjOLMLC1wObxwKxecE17j0URxuTrYZZME4/VH57Hg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.40.2.tgz", + "integrity": "sha512-B7LKIz+0+p348JoAL4X/YxGx9zOx3sR+o6Hj15Y3aaApNfAshK8+mWZEf759DXfRLeL2vg5LYJBB7DdcleYCoQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.40.2.tgz", + "integrity": "sha512-lG7Xa+BmBNwpjmVUbmyKxdQJ3Q6whHjMjzQplOs5Z+Gj7mxPtWakGHqzMqNER68G67kmCX9qX57aRsW5V0VOng==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.40.2.tgz", + "integrity": "sha512-tD46wKHd+KJvsmije4bUskNuvWKFcTOIM9tZ/RrmIvcXnbi0YK/cKS9FzFtAm7Oxi2EhV5N2OpfFB348vSQRXA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.40.2.tgz", + "integrity": "sha512-Bjv/HG8RRWLNkXwQQemdsWw4Mg+IJ29LK+bJPW2SCzPKOUaMmPEppQlu/Fqk1d7+DX3V7JbFdbkh/NMmurT6Pg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.40.2.tgz", + "integrity": "sha512-dt1llVSGEsGKvzeIO76HToiYPNPYPkmjhMHhP00T9S4rDern8P2ZWvWAQUEJ+R1UdMWJ/42i/QqJ2WV765GZcA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.40.2.tgz", + "integrity": "sha512-bwspbWB04XJpeElvsp+DCylKfF4trJDa2Y9Go8O6A7YLX2LIKGcNK/CYImJN6ZP4DcuOHB4Utl3iCbnR62DudA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@tailwindcss/node": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.5.tgz", + "integrity": "sha512-CBhSWo0vLnWhXIvpD0qsPephiaUYfHUX3U9anwDaHZAeuGpTiB3XmsxPAN6qX7bFhipyGBqOa1QYQVVhkOUGxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "enhanced-resolve": "^5.18.1", + "jiti": "^2.4.2", + "lightningcss": "1.29.2", + "tailwindcss": "4.1.5" + } + }, + "node_modules/@tailwindcss/oxide": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.5.tgz", + "integrity": "sha512-1n4br1znquEvyW/QuqMKQZlBen+jxAbvyduU87RS8R3tUSvByAkcaMTkJepNIrTlYhD+U25K4iiCIxE6BGdRYA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + }, + "optionalDependencies": { + "@tailwindcss/oxide-android-arm64": "4.1.5", + "@tailwindcss/oxide-darwin-arm64": "4.1.5", + "@tailwindcss/oxide-darwin-x64": "4.1.5", + "@tailwindcss/oxide-freebsd-x64": "4.1.5", + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.5", + "@tailwindcss/oxide-linux-arm64-gnu": "4.1.5", + "@tailwindcss/oxide-linux-arm64-musl": "4.1.5", + "@tailwindcss/oxide-linux-x64-gnu": "4.1.5", + "@tailwindcss/oxide-linux-x64-musl": "4.1.5", + "@tailwindcss/oxide-wasm32-wasi": "4.1.5", + "@tailwindcss/oxide-win32-arm64-msvc": "4.1.5", + "@tailwindcss/oxide-win32-x64-msvc": "4.1.5" + } + }, + "node_modules/@tailwindcss/oxide-android-arm64": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.5.tgz", + "integrity": "sha512-LVvM0GirXHED02j7hSECm8l9GGJ1RfgpWCW+DRn5TvSaxVsv28gRtoL4aWKGnXqwvI3zu1GABeDNDVZeDPOQrw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-darwin-arm64": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.5.tgz", + "integrity": "sha512-//TfCA3pNrgnw4rRJOqavW7XUk8gsg9ddi8cwcsWXp99tzdBAZW0WXrD8wDyNbqjW316Pk2hiN/NJx/KWHl8oA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-darwin-x64": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.5.tgz", + "integrity": "sha512-XQorp3Q6/WzRd9OalgHgaqgEbjP3qjHrlSUb5k1EuS1Z9NE9+BbzSORraO+ecW432cbCN7RVGGL/lSnHxcd+7Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-freebsd-x64": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.5.tgz", + "integrity": "sha512-bPrLWbxo8gAo97ZmrCbOdtlz/Dkuy8NK97aFbVpkJ2nJ2Jo/rsCbu0TlGx8joCuA3q6vMWTSn01JY46iwG+clg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.5.tgz", + "integrity": "sha512-1gtQJY9JzMAhgAfvd/ZaVOjh/Ju/nCoAsvOVJenWZfs05wb8zq+GOTnZALWGqKIYEtyNpCzvMk+ocGpxwdvaVg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.5.tgz", + "integrity": "sha512-dtlaHU2v7MtdxBXoqhxwsWjav7oim7Whc6S9wq/i/uUMTWAzq/gijq1InSgn2yTnh43kR+SFvcSyEF0GCNu1PQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-musl": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.5.tgz", + "integrity": "sha512-fg0F6nAeYcJ3CriqDT1iVrqALMwD37+sLzXs8Rjy8Z1ZHshJoYceodfyUwGJEsQoTyWbliFNRs2wMQNXtT7MVA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-gnu": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.5.tgz", + "integrity": "sha512-SO+F2YEIAHa1AITwc8oPwMOWhgorPzzcbhWEb+4oLi953h45FklDmM8dPSZ7hNHpIk9p/SCZKUYn35t5fjGtHA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-musl": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.5.tgz", + "integrity": "sha512-6UbBBplywkk/R+PqqioskUeXfKcBht3KU7juTi1UszJLx0KPXUo10v2Ok04iBJIaDPkIFkUOVboXms5Yxvaz+g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.5.tgz", + "integrity": "sha512-hwALf2K9FHuiXTPqmo1KeOb83fTRNbe9r/Ixv9ZNQ/R24yw8Ge1HOWDDgTdtzntIaIUJG5dfXCf4g9AD4RiyhQ==", + "bundleDependencies": [ + "@napi-rs/wasm-runtime", + "@emnapi/core", + "@emnapi/runtime", + "@tybys/wasm-util", + "@emnapi/wasi-threads", + "tslib" + ], + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.4.3", + "@emnapi/runtime": "^1.4.3", + "@emnapi/wasi-threads": "^1.0.2", + "@napi-rs/wasm-runtime": "^0.2.9", + "@tybys/wasm-util": "^0.9.0", + "tslib": "^2.8.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.5.tgz", + "integrity": "sha512-oDKncffWzaovJbkuR7/OTNFRJQVdiw/n8HnzaCItrNQUeQgjy7oUiYpsm9HUBgpmvmDpSSbGaCa2Evzvk3eFmA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-win32-x64-msvc": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.5.tgz", + "integrity": "sha512-WiR4dtyrFdbb+ov0LK+7XsFOsG+0xs0PKZKkt41KDn9jYpO7baE3bXiudPVkTqUEwNfiglCygQHl2jklvSBi7Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/vite": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.1.5.tgz", + "integrity": "sha512-FE1stRoqdHSb7RxesMfCXE8icwI1W6zGE/512ae3ZDrpkQYTTYeSyUJPRCjZd8CwVAhpDUbi1YR8pcZioFJQ/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@tailwindcss/node": "4.1.5", + "@tailwindcss/oxide": "4.1.5", + "tailwindcss": "4.1.5" + }, + "peerDependencies": { + "vite": "^5.2.0 || ^6" + } + }, + "node_modules/@types/estree": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz", + "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/resolve": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz", + "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/autoprefixer": { + "version": "10.4.21", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz", + "integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "browserslist": "^4.24.4", + "caniuse-lite": "^1.0.30001702", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.1.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/axios": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.9.0.tgz", + "integrity": "sha512-re4CqKTJaURpzbLHtIi6XpDv20/CnpXOtjRY5/CU32L8gU8ek9UIivcfvSWvmKEngmVbrUtPpdDwWDWL7DNHvg==", + "dev": true, + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/browserslist": { + "version": "4.24.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.5.tgz", + "integrity": "sha512-FDToo4Wo82hIdgc1CQ+NQD0hEhmpPjrZ3hiUgwgOG6IuTdlpr8jdjyG24P6cNP1yJpTLzS5OcGgSw0xmDU1/Tw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001716", + "electron-to-chromium": "^1.5.149", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001717", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001717.tgz", + "integrity": "sha512-auPpttCq6BDEG8ZAuHJIplGw6GODhjw+/11e7IjpnYCxZcW/ONgPs0KVBJ0d1bY3e2+7PRe5RCLyP+PfwVgkYw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/concurrently": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-9.1.2.tgz", + "integrity": "sha512-H9MWcoPsYddwbOGM6difjVwVZHl63nwMEwDJG/L7VGtuaJhb12h2caPG2tVPWs7emuYix252iGfqOyrz1GczTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.2", + "lodash": "^4.17.21", + "rxjs": "^7.8.1", + "shell-quote": "^1.8.1", + "supports-color": "^8.1.1", + "tree-kill": "^1.2.2", + "yargs": "^17.7.2" + }, + "bin": { + "conc": "dist/bin/concurrently.js", + "concurrently": "dist/bin/concurrently.js" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" + } + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/detect-libc": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz", + "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.150", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.150.tgz", + "integrity": "sha512-rOOkP2ZUMx1yL4fCxXQKDHQ8ZXwisb2OycOQVKHgvB3ZI4CvehOd4y2tfnnLDieJ3Zs1RL1Dlp3cMkyIn7nnXA==", + "dev": true, + "license": "ISC" + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/enhanced-resolve": { + "version": "5.18.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz", + "integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/esbuild": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.4.tgz", + "integrity": "sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.4", + "@esbuild/android-arm": "0.25.4", + "@esbuild/android-arm64": "0.25.4", + "@esbuild/android-x64": "0.25.4", + "@esbuild/darwin-arm64": "0.25.4", + "@esbuild/darwin-x64": "0.25.4", + "@esbuild/freebsd-arm64": "0.25.4", + "@esbuild/freebsd-x64": "0.25.4", + "@esbuild/linux-arm": "0.25.4", + "@esbuild/linux-arm64": "0.25.4", + "@esbuild/linux-ia32": "0.25.4", + "@esbuild/linux-loong64": "0.25.4", + "@esbuild/linux-mips64el": "0.25.4", + "@esbuild/linux-ppc64": "0.25.4", + "@esbuild/linux-riscv64": "0.25.4", + "@esbuild/linux-s390x": "0.25.4", + "@esbuild/linux-x64": "0.25.4", + "@esbuild/netbsd-arm64": "0.25.4", + "@esbuild/netbsd-x64": "0.25.4", + "@esbuild/openbsd-arm64": "0.25.4", + "@esbuild/openbsd-x64": "0.25.4", + "@esbuild/sunos-x64": "0.25.4", + "@esbuild/win32-arm64": "0.25.4", + "@esbuild/win32-ia32": "0.25.4", + "@esbuild/win32-x64": "0.25.4" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true, + "license": "MIT" + }, + "node_modules/fdir": { + "version": "6.4.4", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.4.tgz", + "integrity": "sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/flowbite": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/flowbite/-/flowbite-3.1.2.tgz", + "integrity": "sha512-MkwSgbbybCYgMC+go6Da5idEKUFfMqc/AmSjm/2ZbdmvoKf5frLPq/eIhXc9P+rC8t9boZtUXzHDgt5whZ6A/Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@popperjs/core": "^2.9.3", + "flowbite-datepicker": "^1.3.1", + "mini-svg-data-uri": "^1.4.3", + "postcss": "^8.5.1" + } + }, + "node_modules/flowbite-datepicker": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/flowbite-datepicker/-/flowbite-datepicker-1.3.2.tgz", + "integrity": "sha512-6Nfm0MCVX3mpaR7YSCjmEO2GO8CDt6CX8ZpQnGdeu03WUCWtEPQ/uy0PUiNtIJjJZWnX0Cm3H55MOhbD1g+E/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rollup/plugin-node-resolve": "^15.2.3", + "flowbite": "^2.0.0" + } + }, + "node_modules/flowbite-datepicker/node_modules/flowbite": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/flowbite/-/flowbite-2.5.2.tgz", + "integrity": "sha512-kwFD3n8/YW4EG8GlY3Od9IoKND97kitO+/ejISHSqpn3vw2i5K/+ZI8Jm2V+KC4fGdnfi0XZ+TzYqQb4Q1LshA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@popperjs/core": "^2.9.3", + "flowbite-datepicker": "^1.3.0", + "mini-svg-data-uri": "^1.4.3" + } + }, + "node_modules/flowbite-typography": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/flowbite-typography/-/flowbite-typography-1.0.5.tgz", + "integrity": "sha512-IqTwOYgGZkXTK/5ngx3A9oQwgOqnRyUKUfIiB+w6xDmiD8z3cKDIgYfFpHIMKbLVfg+QmJIPqEEPrGZbAwVT6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "lodash.castarray": "^4.4.0", + "lodash.isplainobject": "^4.0.6", + "lodash.merge": "^4.6.2" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.2.tgz", + "integrity": "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==", + "dev": true, + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", + "dev": true, + "license": "MIT" + }, + "node_modules/jiti": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.4.2.tgz", + "integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==", + "dev": true, + "license": "MIT", + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "node_modules/laravel-vite-plugin": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-1.2.0.tgz", + "integrity": "sha512-R0pJ+IcTVeqEMoKz/B2Ij57QVq3sFTABiFmb06gAwFdivbOgsUtuhX6N2MGLEArajrS3U5JbberzwOe7uXHMHQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "picocolors": "^1.0.0", + "vite-plugin-full-reload": "^1.1.0" + }, + "bin": { + "clean-orphaned-assets": "bin/clean.js" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "peerDependencies": { + "vite": "^5.0.0 || ^6.0.0" + } + }, + "node_modules/lightningcss": { + "version": "1.29.2", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.29.2.tgz", + "integrity": "sha512-6b6gd/RUXKaw5keVdSEtqFVdzWnU5jMxTUjA2bVcMNPLwSQ08Sv/UodBVtETLCn7k4S1Ibxwh7k68IwLZPgKaA==", + "dev": true, + "license": "MPL-2.0", + "dependencies": { + "detect-libc": "^2.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-darwin-arm64": "1.29.2", + "lightningcss-darwin-x64": "1.29.2", + "lightningcss-freebsd-x64": "1.29.2", + "lightningcss-linux-arm-gnueabihf": "1.29.2", + "lightningcss-linux-arm64-gnu": "1.29.2", + "lightningcss-linux-arm64-musl": "1.29.2", + "lightningcss-linux-x64-gnu": "1.29.2", + "lightningcss-linux-x64-musl": "1.29.2", + "lightningcss-win32-arm64-msvc": "1.29.2", + "lightningcss-win32-x64-msvc": "1.29.2" + } + }, + "node_modules/lightningcss-darwin-arm64": { + "version": "1.29.2", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.29.2.tgz", + "integrity": "sha512-cK/eMabSViKn/PG8U/a7aCorpeKLMlK0bQeNHmdb7qUnBkNPnL+oV5DjJUo0kqWsJUapZsM4jCfYItbqBDvlcA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-x64": { + "version": "1.29.2", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.29.2.tgz", + "integrity": "sha512-j5qYxamyQw4kDXX5hnnCKMf3mLlHvG44f24Qyi2965/Ycz829MYqjrVg2H8BidybHBp9kom4D7DR5VqCKDXS0w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-freebsd-x64": { + "version": "1.29.2", + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.29.2.tgz", + "integrity": "sha512-wDk7M2tM78Ii8ek9YjnY8MjV5f5JN2qNVO+/0BAGZRvXKtQrBC4/cn4ssQIpKIPP44YXw6gFdpUF+Ps+RGsCwg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.29.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.29.2.tgz", + "integrity": "sha512-IRUrOrAF2Z+KExdExe3Rz7NSTuuJ2HvCGlMKoquK5pjvo2JY4Rybr+NrKnq0U0hZnx5AnGsuFHjGnNT14w26sg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.29.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.29.2.tgz", + "integrity": "sha512-KKCpOlmhdjvUTX/mBuaKemp0oeDIBBLFiU5Fnqxh1/DZ4JPZi4evEH7TKoSBFOSOV3J7iEmmBaw/8dpiUvRKlQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.29.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.29.2.tgz", + "integrity": "sha512-Q64eM1bPlOOUgxFmoPUefqzY1yV3ctFPE6d/Vt7WzLW4rKTv7MyYNky+FWxRpLkNASTnKQUaiMJ87zNODIrrKQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.29.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.29.2.tgz", + "integrity": "sha512-0v6idDCPG6epLXtBH/RPkHvYx74CVziHo6TMYga8O2EiQApnUPZsbR9nFNrg2cgBzk1AYqEd95TlrsL7nYABQg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.29.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.29.2.tgz", + "integrity": "sha512-rMpz2yawkgGT8RULc5S4WiZopVMOFWjiItBT7aSfDX4NQav6M44rhn5hjtkKzB+wMTRlLLqxkeYEtQ3dd9696w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.29.2", + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.29.2.tgz", + "integrity": "sha512-nL7zRW6evGQqYVu/bKGK+zShyz8OVzsCotFgc7judbt6wnB2KbiKKJwBE4SGoDBQ1O94RjW4asrCjQL4i8Fhbw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.29.2", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.29.2.tgz", + "integrity": "sha512-EdIUW3B2vLuHmv7urfzMI/h2fmlnOQBk1xlsDxkN1tCWKjNFjfLhGxYk8C8mzpSfr+A6jFFIi8fU6LbQGsRWjA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.castarray": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.castarray/-/lodash.castarray-4.4.0.tgz", + "integrity": "sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mini-svg-data-uri": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz", + "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==", + "dev": true, + "license": "MIT", + "bin": { + "mini-svg-data-uri": "cli.js" + } + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/node-releases": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "dev": true, + "license": "MIT" + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", + "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.8", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true, + "license": "MIT" + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/rollup": { + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.40.2.tgz", + "integrity": "sha512-tfUOg6DTP4rhQ3VjOO6B4wyrJnGOX85requAXvqYTHsOgb2TFJdZ3aWpT8W2kPoypSGP7dZUyzxJ9ee4buM5Fg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.7" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.40.2", + "@rollup/rollup-android-arm64": "4.40.2", + "@rollup/rollup-darwin-arm64": "4.40.2", + "@rollup/rollup-darwin-x64": "4.40.2", + "@rollup/rollup-freebsd-arm64": "4.40.2", + "@rollup/rollup-freebsd-x64": "4.40.2", + "@rollup/rollup-linux-arm-gnueabihf": "4.40.2", + "@rollup/rollup-linux-arm-musleabihf": "4.40.2", + "@rollup/rollup-linux-arm64-gnu": "4.40.2", + "@rollup/rollup-linux-arm64-musl": "4.40.2", + "@rollup/rollup-linux-loongarch64-gnu": "4.40.2", + "@rollup/rollup-linux-powerpc64le-gnu": "4.40.2", + "@rollup/rollup-linux-riscv64-gnu": "4.40.2", + "@rollup/rollup-linux-riscv64-musl": "4.40.2", + "@rollup/rollup-linux-s390x-gnu": "4.40.2", + "@rollup/rollup-linux-x64-gnu": "4.40.2", + "@rollup/rollup-linux-x64-musl": "4.40.2", + "@rollup/rollup-win32-arm64-msvc": "4.40.2", + "@rollup/rollup-win32-ia32-msvc": "4.40.2", + "@rollup/rollup-win32-x64-msvc": "4.40.2", + "fsevents": "~2.3.2" + } + }, + "node_modules/rxjs": { + "version": "7.8.2", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", + "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/shell-quote": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.2.tgz", + "integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tailwindcss": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.5.tgz", + "integrity": "sha512-nYtSPfWGDiWgCkwQG/m+aX83XCwf62sBgg3bIlNiiOcggnS1x3uVRDAuyelBFL+vJdOPPCGElxv9DjHJjRHiVA==", + "dev": true, + "license": "MIT" + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.13.tgz", + "integrity": "sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.4.4", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true, + "license": "MIT", + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "license": "0BSD" + }, + "node_modules/update-browserslist-db": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/vite": { + "version": "6.3.5", + "resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz", + "integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.25.0", + "fdir": "^6.4.4", + "picomatch": "^4.0.2", + "postcss": "^8.5.3", + "rollup": "^4.34.9", + "tinyglobby": "^0.2.13" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", + "jiti": ">=1.21.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vite-plugin-full-reload": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/vite-plugin-full-reload/-/vite-plugin-full-reload-1.2.0.tgz", + "integrity": "sha512-kz18NW79x0IHbxRSHm0jttP4zoO9P9gXh+n6UTwlNKnviTTEpOlum6oS9SmecrTtSr+muHEn5TUuC75UovQzcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picocolors": "^1.0.0", + "picomatch": "^2.3.1" + } + }, + "node_modules/vite-plugin-full-reload/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..4186885 --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "private": true, + "type": "module", + "scripts": { + "build": "vite build", + "dev": "vite" + }, + "devDependencies": { + "@tailwindcss/vite": "^4.1.5", + "autoprefixer": "^10.4.21", + "axios": "^1.7.4", + "concurrently": "^9.0.1", + "flowbite": "^3.1.2", + "flowbite-typography": "^1.0.5", + "laravel-vite-plugin": "^1.2.0", + "postcss": "^8.5.3", + "tailwindcss": "^4.1.5", + "vite": "^6.0.11" + } +} diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 0000000..506b9a3 --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,33 @@ + + + + + tests/Unit + + + tests/Feature + + + + + app + + + + + + + + + + + + + + + + diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..b574a59 --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,25 @@ + + + Options -MultiViews -Indexes + + + RewriteEngine On + + # Handle Authorization Header + RewriteCond %{HTTP:Authorization} . + RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + + # Handle X-XSRF-Token Header + RewriteCond %{HTTP:x-xsrf-token} . + RewriteRule .* - [E=HTTP_X_XSRF_TOKEN:%{HTTP:X-XSRF-Token}] + + # Redirect Trailing Slashes If Not A Folder... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_URI} (.+)/$ + RewriteRule ^ %1 [L,R=301] + + # Send Requests To Front Controller... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule ^ index.php [L] + diff --git a/public/assets/css/theme-rtl.css b/public/assets/css/theme-rtl.css new file mode 100644 index 0000000..caf3cf9 --- /dev/null +++ b/public/assets/css/theme-rtl.css @@ -0,0 +1,18308 @@ +/* -------------------------------------------------------------------------- */ +/* Theme */ +/* -------------------------------------------------------------------------- */ +/* prettier-ignore */ +/* -------------------------------------------------------------------------- */ +/* Utilities */ +/* -------------------------------------------------------------------------- */ +/*----------------------------------------------- +| Bootstrap Styles +-----------------------------------------------*/ +/*! + * Bootstrap v5.0.0-alpha1 (https://getbootstrap.com/) + * Copyright 2011-2020 The Bootstrap Authors + * Copyright 2011-2020 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +:root { + --bs-blue: #1F3A63; + --bs-indigo: #53ACF8; + --bs-purple: #ad45f6; + --bs-pink: #f6458e; + --bs-red: #F55767; + --bs-orange: #f6d845; + --bs-yellow: #FFA024; + --bs-green: #66BB6A; + --bs-teal: #299EF3; + --bs-cyan: #3EB8F4; + --bs-white: #fff; + --bs-gray: #C3C1C8; + --bs-gray-dark: #616368; + --bs-primary: #1F3A63; + --bs-secondary: #4F5665; + --bs-success: #66BB6A; + --bs-info: #3EB8F4; + --bs-warning: #FFA024; + --bs-danger: #F55767; + --bs-light: #F9FAFD; + --bs-dark: #1F1534; + --bs-font-sans-serif: "Chivo", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + --bs-font-monospace: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); +} + +*, +*::before, +*::after { + -webkit-box-sizing: border-box; + box-sizing: border-box; +} + +@media (prefers-reduced-motion: no-preference) { + :root { + scroll-behavior: smooth; + } +} + +body { + margin: 0; + font-family: "Chivo", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #7D7987; + background-color: #fff; + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} + +[tabindex="-1"]:focus:not(:focus-visible) { + outline: 0 !important; +} + +hr { + margin: 1rem 0; + color: #E1E0E4; + background-color: currentColor; + border: 0; + opacity: 1; +} + +hr:not([size]) { + height: 1px; +} + +h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 { + margin-top: 0; + margin-bottom: 0.5rem; + font-family: "Chivo", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-weight: 500; + line-height: 1.2; + color: #112D58; +} + +h1, .h1 { + font-size: calc(1.37383rem + 1.48598vw); +} + +@media (min-width: 1200px) { + h1, .h1 { + font-size: 2.48832rem; + } +} + +h2, .h2 { + font-size: calc(1.33236rem + 0.98832vw); +} + +@media (min-width: 1200px) { + h2, .h2 { + font-size: 2.0736rem; + } +} + +h3, .h3 { + font-size: calc(1.2978rem + 0.5736vw); +} + +@media (min-width: 1200px) { + h3, .h3 { + font-size: 1.728rem; + } +} + +h4, .h4 { + font-size: calc(1.269rem + 0.228vw); +} + +@media (min-width: 1200px) { + h4, .h4 { + font-size: 1.44rem; + } +} + +h5, .h5 { + font-size: 1.2rem; +} + +h6, .h6 { + font-size: 0.83333rem; +} + +p { + margin-top: 0; + margin-bottom: 1rem; +} + +abbr[title], +abbr[data-bs-original-title] { + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + -webkit-text-decoration-skip-ink: none; + text-decoration-skip-ink: none; +} + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; +} + +ol, +ul { + padding-right: 2rem; +} + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; +} + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; +} + +dt { + font-weight: 700; +} + +dd { + margin-bottom: .5rem; + margin-right: 0; +} + +blockquote { + margin: 0 0 1rem; +} + +b, +strong { + font-weight: 800; +} + +small, .small { + font-size: 75%; +} + +mark, .mark { + padding: 0.2em; + background-color: #fcf8e3; +} + +sub, +sup { + position: relative; + font-size: 0.75em; + line-height: 0; + vertical-align: baseline; +} + +sub { + bottom: -.25em; +} + +sup { + top: -.5em; +} + +a { + color: #1F3A63; + text-decoration: none; +} + +a:hover { + color: #192e4f; + text-decoration: underline; +} + +a:not([href]):not([class]), a:not([href]):not([class]):hover { + color: inherit; + text-decoration: none; +} + +pre, +code, +kbd, +samp { + font-family: var(--bs-font-monospace); + font-size: 1em; + direction: ltr ; + unicode-bidi: bidi-override; +} + +pre { + display: block; + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + font-size: 75%; +} + +pre code { + font-size: inherit; + color: inherit; + word-break: normal; +} + +code { + font-size: 75%; + color: #f6458e; + word-wrap: break-word; +} + +a > code { + color: inherit; +} + +kbd { + padding: 0.2rem 0.4rem; + font-size: 75%; + color: #fff; + background-color: #4F5665; + border-radius: 0.3rem; +} + +kbd kbd { + padding: 0; + font-size: 1em; + font-weight: 700; +} + +figure { + margin: 0 0 1rem; +} + +img, +svg { + vertical-align: middle; +} + +table { + caption-side: bottom; + border-collapse: collapse; +} + +caption { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + color: #CDCCD1; + text-align: right; +} + +th { + text-align: inherit; + text-align: -webkit-match-parent; +} + +thead, +tbody, +tfoot, +tr, +td, +th { + border-color: inherit; + border-style: solid; + border-width: 0; +} + +label { + display: inline-block; +} + +button { + border-radius: 0; +} + +button:focus:not(:focus-visible) { + outline: 0; +} + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +button, +select { + text-transform: none; +} + +[role="button"] { + cursor: pointer; +} + +select { + word-wrap: normal; +} + +[list]::-webkit-calendar-picker-indicator { + display: none; +} + +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +button:not(:disabled), +[type="button"]:not(:disabled), +[type="reset"]:not(:disabled), +[type="submit"]:not(:disabled) { + cursor: pointer; +} + +::-moz-focus-inner { + padding: 0; + border-style: none; +} + +textarea { + resize: vertical; +} + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} + +legend { + float: right; + width: 100%; + padding: 0; + margin-bottom: 0.5rem; + font-size: calc(1.275rem + 0.3vw); + line-height: inherit; +} + +@media (min-width: 1200px) { + legend { + font-size: 1.5rem; + } +} + +legend + * { + clear: right; +} + +::-webkit-datetime-edit-fields-wrapper, +::-webkit-datetime-edit-text, +::-webkit-datetime-edit-minute, +::-webkit-datetime-edit-hour-field, +::-webkit-datetime-edit-day-field, +::-webkit-datetime-edit-month-field, +::-webkit-datetime-edit-year-field { + padding: 0; +} + +::-webkit-inner-spin-button { + height: auto; +} + +[type="search"] { + outline-offset: -2px; + -webkit-appearance: textfield; +} + +[type="tel"], +[type="url"], +[type="email"], +[type="number"] { + direction: ltr; +} +::-webkit-search-decoration { + -webkit-appearance: none; +} + +::-webkit-color-swatch-wrapper { + padding: 0; +} + +::file-selector-button { + font: inherit; +} + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; +} + +output { + display: inline-block; +} + +iframe { + border: 0; +} + +summary { + display: list-item; + cursor: pointer; +} + +progress { + vertical-align: baseline; +} + +[hidden] { + display: none !important; +} + +.lead { + font-size: 1.2rem; + font-weight: 400; +} + +.display-1 { + font-size: calc(1.55498rem + 3.65978vw); + font-weight: 900; + line-height: 1; +} + +@media (min-width: 1200px) { + .display-1 { + font-size: 4.29982rem; + } +} + +.display-2 { + font-size: calc(1.48332rem + 2.79982vw); + font-weight: 900; + line-height: 1; +} + +@media (min-width: 1200px) { + .display-2 { + font-size: 3.58318rem; + } +} + +.display-3 { + font-size: calc(1.4236rem + 2.08318vw); + font-weight: 900; + line-height: 1; +} + +@media (min-width: 1200px) { + .display-3 { + font-size: 2.98598rem; + } +} + +.display-4 { + font-size: calc(1.37383rem + 1.48598vw); + font-weight: 900; + line-height: 1; +} + +@media (min-width: 1200px) { + .display-4 { + font-size: 2.48832rem; + } +} + +.display-5 { + font-size: calc(1.33236rem + 0.98832vw); + font-weight: 900; + line-height: 1; +} + +@media (min-width: 1200px) { + .display-5 { + font-size: 2.0736rem; + } +} + +.display-6 { + font-size: calc(1.2978rem + 0.5736vw); + font-weight: 900; + line-height: 1; +} + +@media (min-width: 1200px) { + .display-6 { + font-size: 1.728rem; + } +} + +.list-unstyled { + padding-right: 0; + list-style: none; +} + +.list-inline { + padding-right: 0; + list-style: none; +} + +.list-inline-item { + display: inline-block; +} + +.list-inline-item:not(:last-child) { + margin-left: 0.5rem; +} + +.initialism { + font-size: 75%; + text-transform: uppercase; +} + +.blockquote { + margin-bottom: 1rem; + font-size: 1.2rem; +} + +.blockquote > :last-child { + margin-bottom: 0; +} + +.blockquote-footer { + margin-top: -1rem; + margin-bottom: 1rem; + font-size: 75%; + color: #C3C1C8; +} + +.blockquote-footer::before { + content: "\2014\00A0"; +} + +.img-fluid { + max-width: 100%; + height: auto; +} + +.img-thumbnail { + padding: 0.25rem; + background-color: #fff; + border: 1px solid #E1E0E4; + border-radius: 0.25rem; + max-width: 100%; + height: auto; +} + +.figure { + display: inline-block; +} + +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; +} + +.figure-caption { + font-size: 75%; + color: #C3C1C8; +} + +.container, +.container-fluid, +.container-sm, +.container-md, +.container-lg, +.container-xl, +.container-xxl { + width: 100%; + padding-left: var(--bs-gutter-x, 1rem); + padding-right: var(--bs-gutter-x, 1rem); + margin-left: auto; + margin-right: auto; +} + +@media (min-width: 576px) { + .container, .container-sm { + max-width: 540px; + } +} + +@media (min-width: 768px) { + .container, .container-sm, .container-md { + max-width: 720px; + } +} + +@media (min-width: 992px) { + .container, .container-sm, .container-md, .container-lg { + max-width: 960px; + } +} + +@media (min-width: 1200px) { + .container, .container-sm, .container-md, .container-lg, .container-xl { + max-width: 1140px; + } +} + +@media (min-width: 1540px) { + .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl { + max-width: 1480px; + } +} + +.row { + --bs-gutter-x: 2rem; + --bs-gutter-y: 0; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-top: calc(var(--bs-gutter-y) * -1); + margin-left: calc(var(--bs-gutter-x) / -2); + margin-right: calc(var(--bs-gutter-x) / -2); +} + +.row > * { + -ms-flex-negative: 0; + flex-shrink: 0; + width: 100%; + max-width: 100%; + padding-left: calc(var(--bs-gutter-x) / 2); + padding-right: calc(var(--bs-gutter-x) / 2); + margin-top: var(--bs-gutter-y); +} + +.col { + -webkit-box-flex: 1; + -ms-flex: 1 0 0%; + flex: 1 0 0%; +} + +.row-cols-auto > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; +} + +.row-cols-1 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 100%; +} + +.row-cols-2 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 50%; +} + +.row-cols-3 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 33.33333%; +} + +.row-cols-4 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 25%; +} + +.row-cols-5 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 20%; +} + +.row-cols-6 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 16.66667%; +} + +.col-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; +} + +.col-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 8.33333%; +} + +.col-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 16.66667%; +} + +.col-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 25%; +} + +.col-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 33.33333%; +} + +.col-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 41.66667%; +} + +.col-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 50%; +} + +.col-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 58.33333%; +} + +.col-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 66.66667%; +} + +.col-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 75%; +} + +.col-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 83.33333%; +} + +.col-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 91.66667%; +} + +.col-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 100%; +} + +.offset-1 { + margin-right: 8.33333%; +} + +.offset-2 { + margin-right: 16.66667%; +} + +.offset-3 { + margin-right: 25%; +} + +.offset-4 { + margin-right: 33.33333%; +} + +.offset-5 { + margin-right: 41.66667%; +} + +.offset-6 { + margin-right: 50%; +} + +.offset-7 { + margin-right: 58.33333%; +} + +.offset-8 { + margin-right: 66.66667%; +} + +.offset-9 { + margin-right: 75%; +} + +.offset-10 { + margin-right: 83.33333%; +} + +.offset-11 { + margin-right: 91.66667%; +} + +.g-0, +.gx-0 { + --bs-gutter-x: 0; +} + +.g-0, +.gy-0 { + --bs-gutter-y: 0; +} + +.g-1, +.gx-1 { + --bs-gutter-x: 0.25rem; +} + +.g-1, +.gy-1 { + --bs-gutter-y: 0.25rem; +} + +.g-2, +.gx-2 { + --bs-gutter-x: 0.5rem; +} + +.g-2, +.gy-2 { + --bs-gutter-y: 0.5rem; +} + +.g-3, +.gx-3 { + --bs-gutter-x: 1rem; +} + +.g-3, +.gy-3 { + --bs-gutter-y: 1rem; +} + +.g-4, +.gx-4 { + --bs-gutter-x: 1.8rem; +} + +.g-4, +.gy-4 { + --bs-gutter-y: 1.8rem; +} + +.g-5, +.gx-5 { + --bs-gutter-x: 3rem; +} + +.g-5, +.gy-5 { + --bs-gutter-y: 3rem; +} + +.g-6, +.gx-6 { + --bs-gutter-x: 4rem; +} + +.g-6, +.gy-6 { + --bs-gutter-y: 4rem; +} + +.g-7, +.gx-7 { + --bs-gutter-x: 5rem; +} + +.g-7, +.gy-7 { + --bs-gutter-y: 5rem; +} + +.g-8, +.gx-8 { + --bs-gutter-x: 7.5rem; +} + +.g-8, +.gy-8 { + --bs-gutter-y: 7.5rem; +} + +.g-9, +.gx-9 { + --bs-gutter-x: 10rem; +} + +.g-9, +.gy-9 { + --bs-gutter-y: 10rem; +} + +.g-10, +.gx-10 { + --bs-gutter-x: 12.5rem; +} + +.g-10, +.gy-10 { + --bs-gutter-y: 12.5rem; +} + +.g-11, +.gx-11 { + --bs-gutter-x: 15rem; +} + +.g-11, +.gy-11 { + --bs-gutter-y: 15rem; +} + +@media (min-width: 576px) { + .col-sm { + -webkit-box-flex: 1; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + } + .row-cols-sm-auto > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + } + .row-cols-sm-1 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 100%; + } + .row-cols-sm-2 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 50%; + } + .row-cols-sm-3 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 33.33333%; + } + .row-cols-sm-4 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 25%; + } + .row-cols-sm-5 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 20%; + } + .row-cols-sm-6 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 16.66667%; + } + .col-sm-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + } + .col-sm-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 8.33333%; + } + .col-sm-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 16.66667%; + } + .col-sm-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 25%; + } + .col-sm-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 33.33333%; + } + .col-sm-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 41.66667%; + } + .col-sm-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 50%; + } + .col-sm-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 58.33333%; + } + .col-sm-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 66.66667%; + } + .col-sm-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 75%; + } + .col-sm-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 83.33333%; + } + .col-sm-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 91.66667%; + } + .col-sm-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 100%; + } + .offset-sm-0 { + margin-right: 0; + } + .offset-sm-1 { + margin-right: 8.33333%; + } + .offset-sm-2 { + margin-right: 16.66667%; + } + .offset-sm-3 { + margin-right: 25%; + } + .offset-sm-4 { + margin-right: 33.33333%; + } + .offset-sm-5 { + margin-right: 41.66667%; + } + .offset-sm-6 { + margin-right: 50%; + } + .offset-sm-7 { + margin-right: 58.33333%; + } + .offset-sm-8 { + margin-right: 66.66667%; + } + .offset-sm-9 { + margin-right: 75%; + } + .offset-sm-10 { + margin-right: 83.33333%; + } + .offset-sm-11 { + margin-right: 91.66667%; + } + .g-sm-0, + .gx-sm-0 { + --bs-gutter-x: 0; + } + .g-sm-0, + .gy-sm-0 { + --bs-gutter-y: 0; + } + .g-sm-1, + .gx-sm-1 { + --bs-gutter-x: 0.25rem; + } + .g-sm-1, + .gy-sm-1 { + --bs-gutter-y: 0.25rem; + } + .g-sm-2, + .gx-sm-2 { + --bs-gutter-x: 0.5rem; + } + .g-sm-2, + .gy-sm-2 { + --bs-gutter-y: 0.5rem; + } + .g-sm-3, + .gx-sm-3 { + --bs-gutter-x: 1rem; + } + .g-sm-3, + .gy-sm-3 { + --bs-gutter-y: 1rem; + } + .g-sm-4, + .gx-sm-4 { + --bs-gutter-x: 1.8rem; + } + .g-sm-4, + .gy-sm-4 { + --bs-gutter-y: 1.8rem; + } + .g-sm-5, + .gx-sm-5 { + --bs-gutter-x: 3rem; + } + .g-sm-5, + .gy-sm-5 { + --bs-gutter-y: 3rem; + } + .g-sm-6, + .gx-sm-6 { + --bs-gutter-x: 4rem; + } + .g-sm-6, + .gy-sm-6 { + --bs-gutter-y: 4rem; + } + .g-sm-7, + .gx-sm-7 { + --bs-gutter-x: 5rem; + } + .g-sm-7, + .gy-sm-7 { + --bs-gutter-y: 5rem; + } + .g-sm-8, + .gx-sm-8 { + --bs-gutter-x: 7.5rem; + } + .g-sm-8, + .gy-sm-8 { + --bs-gutter-y: 7.5rem; + } + .g-sm-9, + .gx-sm-9 { + --bs-gutter-x: 10rem; + } + .g-sm-9, + .gy-sm-9 { + --bs-gutter-y: 10rem; + } + .g-sm-10, + .gx-sm-10 { + --bs-gutter-x: 12.5rem; + } + .g-sm-10, + .gy-sm-10 { + --bs-gutter-y: 12.5rem; + } + .g-sm-11, + .gx-sm-11 { + --bs-gutter-x: 15rem; + } + .g-sm-11, + .gy-sm-11 { + --bs-gutter-y: 15rem; + } +} + +@media (min-width: 768px) { + .col-md { + -webkit-box-flex: 1; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + } + .row-cols-md-auto > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + } + .row-cols-md-1 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 100%; + } + .row-cols-md-2 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 50%; + } + .row-cols-md-3 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 33.33333%; + } + .row-cols-md-4 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 25%; + } + .row-cols-md-5 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 20%; + } + .row-cols-md-6 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 16.66667%; + } + .col-md-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + } + .col-md-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 8.33333%; + } + .col-md-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 16.66667%; + } + .col-md-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 25%; + } + .col-md-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 33.33333%; + } + .col-md-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 41.66667%; + } + .col-md-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 50%; + } + .col-md-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 58.33333%; + } + .col-md-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 66.66667%; + } + .col-md-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 75%; + } + .col-md-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 83.33333%; + } + .col-md-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 91.66667%; + } + .col-md-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 100%; + } + .offset-md-0 { + margin-right: 0; + } + .offset-md-1 { + margin-right: 8.33333%; + } + .offset-md-2 { + margin-right: 16.66667%; + } + .offset-md-3 { + margin-right: 25%; + } + .offset-md-4 { + margin-right: 33.33333%; + } + .offset-md-5 { + margin-right: 41.66667%; + } + .offset-md-6 { + margin-right: 50%; + } + .offset-md-7 { + margin-right: 58.33333%; + } + .offset-md-8 { + margin-right: 66.66667%; + } + .offset-md-9 { + margin-right: 75%; + } + .offset-md-10 { + margin-right: 83.33333%; + } + .offset-md-11 { + margin-right: 91.66667%; + } + .g-md-0, + .gx-md-0 { + --bs-gutter-x: 0; + } + .g-md-0, + .gy-md-0 { + --bs-gutter-y: 0; + } + .g-md-1, + .gx-md-1 { + --bs-gutter-x: 0.25rem; + } + .g-md-1, + .gy-md-1 { + --bs-gutter-y: 0.25rem; + } + .g-md-2, + .gx-md-2 { + --bs-gutter-x: 0.5rem; + } + .g-md-2, + .gy-md-2 { + --bs-gutter-y: 0.5rem; + } + .g-md-3, + .gx-md-3 { + --bs-gutter-x: 1rem; + } + .g-md-3, + .gy-md-3 { + --bs-gutter-y: 1rem; + } + .g-md-4, + .gx-md-4 { + --bs-gutter-x: 1.8rem; + } + .g-md-4, + .gy-md-4 { + --bs-gutter-y: 1.8rem; + } + .g-md-5, + .gx-md-5 { + --bs-gutter-x: 3rem; + } + .g-md-5, + .gy-md-5 { + --bs-gutter-y: 3rem; + } + .g-md-6, + .gx-md-6 { + --bs-gutter-x: 4rem; + } + .g-md-6, + .gy-md-6 { + --bs-gutter-y: 4rem; + } + .g-md-7, + .gx-md-7 { + --bs-gutter-x: 5rem; + } + .g-md-7, + .gy-md-7 { + --bs-gutter-y: 5rem; + } + .g-md-8, + .gx-md-8 { + --bs-gutter-x: 7.5rem; + } + .g-md-8, + .gy-md-8 { + --bs-gutter-y: 7.5rem; + } + .g-md-9, + .gx-md-9 { + --bs-gutter-x: 10rem; + } + .g-md-9, + .gy-md-9 { + --bs-gutter-y: 10rem; + } + .g-md-10, + .gx-md-10 { + --bs-gutter-x: 12.5rem; + } + .g-md-10, + .gy-md-10 { + --bs-gutter-y: 12.5rem; + } + .g-md-11, + .gx-md-11 { + --bs-gutter-x: 15rem; + } + .g-md-11, + .gy-md-11 { + --bs-gutter-y: 15rem; + } +} + +@media (min-width: 992px) { + .col-lg { + -webkit-box-flex: 1; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + } + .row-cols-lg-auto > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + } + .row-cols-lg-1 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 100%; + } + .row-cols-lg-2 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 50%; + } + .row-cols-lg-3 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 33.33333%; + } + .row-cols-lg-4 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 25%; + } + .row-cols-lg-5 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 20%; + } + .row-cols-lg-6 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 16.66667%; + } + .col-lg-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + } + .col-lg-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 8.33333%; + } + .col-lg-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 16.66667%; + } + .col-lg-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 25%; + } + .col-lg-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 33.33333%; + } + .col-lg-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 41.66667%; + } + .col-lg-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 50%; + } + .col-lg-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 58.33333%; + } + .col-lg-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 66.66667%; + } + .col-lg-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 75%; + } + .col-lg-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 83.33333%; + } + .col-lg-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 91.66667%; + } + .col-lg-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 100%; + } + .offset-lg-0 { + margin-right: 0; + } + .offset-lg-1 { + margin-right: 8.33333%; + } + .offset-lg-2 { + margin-right: 16.66667%; + } + .offset-lg-3 { + margin-right: 25%; + } + .offset-lg-4 { + margin-right: 33.33333%; + } + .offset-lg-5 { + margin-right: 41.66667%; + } + .offset-lg-6 { + margin-right: 50%; + } + .offset-lg-7 { + margin-right: 58.33333%; + } + .offset-lg-8 { + margin-right: 66.66667%; + } + .offset-lg-9 { + margin-right: 75%; + } + .offset-lg-10 { + margin-right: 83.33333%; + } + .offset-lg-11 { + margin-right: 91.66667%; + } + .g-lg-0, + .gx-lg-0 { + --bs-gutter-x: 0; + } + .g-lg-0, + .gy-lg-0 { + --bs-gutter-y: 0; + } + .g-lg-1, + .gx-lg-1 { + --bs-gutter-x: 0.25rem; + } + .g-lg-1, + .gy-lg-1 { + --bs-gutter-y: 0.25rem; + } + .g-lg-2, + .gx-lg-2 { + --bs-gutter-x: 0.5rem; + } + .g-lg-2, + .gy-lg-2 { + --bs-gutter-y: 0.5rem; + } + .g-lg-3, + .gx-lg-3 { + --bs-gutter-x: 1rem; + } + .g-lg-3, + .gy-lg-3 { + --bs-gutter-y: 1rem; + } + .g-lg-4, + .gx-lg-4 { + --bs-gutter-x: 1.8rem; + } + .g-lg-4, + .gy-lg-4 { + --bs-gutter-y: 1.8rem; + } + .g-lg-5, + .gx-lg-5 { + --bs-gutter-x: 3rem; + } + .g-lg-5, + .gy-lg-5 { + --bs-gutter-y: 3rem; + } + .g-lg-6, + .gx-lg-6 { + --bs-gutter-x: 4rem; + } + .g-lg-6, + .gy-lg-6 { + --bs-gutter-y: 4rem; + } + .g-lg-7, + .gx-lg-7 { + --bs-gutter-x: 5rem; + } + .g-lg-7, + .gy-lg-7 { + --bs-gutter-y: 5rem; + } + .g-lg-8, + .gx-lg-8 { + --bs-gutter-x: 7.5rem; + } + .g-lg-8, + .gy-lg-8 { + --bs-gutter-y: 7.5rem; + } + .g-lg-9, + .gx-lg-9 { + --bs-gutter-x: 10rem; + } + .g-lg-9, + .gy-lg-9 { + --bs-gutter-y: 10rem; + } + .g-lg-10, + .gx-lg-10 { + --bs-gutter-x: 12.5rem; + } + .g-lg-10, + .gy-lg-10 { + --bs-gutter-y: 12.5rem; + } + .g-lg-11, + .gx-lg-11 { + --bs-gutter-x: 15rem; + } + .g-lg-11, + .gy-lg-11 { + --bs-gutter-y: 15rem; + } +} + +@media (min-width: 1200px) { + .col-xl { + -webkit-box-flex: 1; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + } + .row-cols-xl-auto > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + } + .row-cols-xl-1 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 100%; + } + .row-cols-xl-2 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 50%; + } + .row-cols-xl-3 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 33.33333%; + } + .row-cols-xl-4 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 25%; + } + .row-cols-xl-5 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 20%; + } + .row-cols-xl-6 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 16.66667%; + } + .col-xl-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + } + .col-xl-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 8.33333%; + } + .col-xl-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 16.66667%; + } + .col-xl-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 25%; + } + .col-xl-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 33.33333%; + } + .col-xl-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 41.66667%; + } + .col-xl-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 50%; + } + .col-xl-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 58.33333%; + } + .col-xl-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 66.66667%; + } + .col-xl-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 75%; + } + .col-xl-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 83.33333%; + } + .col-xl-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 91.66667%; + } + .col-xl-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 100%; + } + .offset-xl-0 { + margin-right: 0; + } + .offset-xl-1 { + margin-right: 8.33333%; + } + .offset-xl-2 { + margin-right: 16.66667%; + } + .offset-xl-3 { + margin-right: 25%; + } + .offset-xl-4 { + margin-right: 33.33333%; + } + .offset-xl-5 { + margin-right: 41.66667%; + } + .offset-xl-6 { + margin-right: 50%; + } + .offset-xl-7 { + margin-right: 58.33333%; + } + .offset-xl-8 { + margin-right: 66.66667%; + } + .offset-xl-9 { + margin-right: 75%; + } + .offset-xl-10 { + margin-right: 83.33333%; + } + .offset-xl-11 { + margin-right: 91.66667%; + } + .g-xl-0, + .gx-xl-0 { + --bs-gutter-x: 0; + } + .g-xl-0, + .gy-xl-0 { + --bs-gutter-y: 0; + } + .g-xl-1, + .gx-xl-1 { + --bs-gutter-x: 0.25rem; + } + .g-xl-1, + .gy-xl-1 { + --bs-gutter-y: 0.25rem; + } + .g-xl-2, + .gx-xl-2 { + --bs-gutter-x: 0.5rem; + } + .g-xl-2, + .gy-xl-2 { + --bs-gutter-y: 0.5rem; + } + .g-xl-3, + .gx-xl-3 { + --bs-gutter-x: 1rem; + } + .g-xl-3, + .gy-xl-3 { + --bs-gutter-y: 1rem; + } + .g-xl-4, + .gx-xl-4 { + --bs-gutter-x: 1.8rem; + } + .g-xl-4, + .gy-xl-4 { + --bs-gutter-y: 1.8rem; + } + .g-xl-5, + .gx-xl-5 { + --bs-gutter-x: 3rem; + } + .g-xl-5, + .gy-xl-5 { + --bs-gutter-y: 3rem; + } + .g-xl-6, + .gx-xl-6 { + --bs-gutter-x: 4rem; + } + .g-xl-6, + .gy-xl-6 { + --bs-gutter-y: 4rem; + } + .g-xl-7, + .gx-xl-7 { + --bs-gutter-x: 5rem; + } + .g-xl-7, + .gy-xl-7 { + --bs-gutter-y: 5rem; + } + .g-xl-8, + .gx-xl-8 { + --bs-gutter-x: 7.5rem; + } + .g-xl-8, + .gy-xl-8 { + --bs-gutter-y: 7.5rem; + } + .g-xl-9, + .gx-xl-9 { + --bs-gutter-x: 10rem; + } + .g-xl-9, + .gy-xl-9 { + --bs-gutter-y: 10rem; + } + .g-xl-10, + .gx-xl-10 { + --bs-gutter-x: 12.5rem; + } + .g-xl-10, + .gy-xl-10 { + --bs-gutter-y: 12.5rem; + } + .g-xl-11, + .gx-xl-11 { + --bs-gutter-x: 15rem; + } + .g-xl-11, + .gy-xl-11 { + --bs-gutter-y: 15rem; + } +} + +@media (min-width: 1540px) { + .col-xxl { + -webkit-box-flex: 1; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + } + .row-cols-xxl-auto > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + } + .row-cols-xxl-1 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 100%; + } + .row-cols-xxl-2 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 50%; + } + .row-cols-xxl-3 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 33.33333%; + } + .row-cols-xxl-4 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 25%; + } + .row-cols-xxl-5 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 20%; + } + .row-cols-xxl-6 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 16.66667%; + } + .col-xxl-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + } + .col-xxl-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 8.33333%; + } + .col-xxl-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 16.66667%; + } + .col-xxl-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 25%; + } + .col-xxl-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 33.33333%; + } + .col-xxl-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 41.66667%; + } + .col-xxl-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 50%; + } + .col-xxl-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 58.33333%; + } + .col-xxl-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 66.66667%; + } + .col-xxl-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 75%; + } + .col-xxl-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 83.33333%; + } + .col-xxl-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 91.66667%; + } + .col-xxl-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 100%; + } + .offset-xxl-0 { + margin-right: 0; + } + .offset-xxl-1 { + margin-right: 8.33333%; + } + .offset-xxl-2 { + margin-right: 16.66667%; + } + .offset-xxl-3 { + margin-right: 25%; + } + .offset-xxl-4 { + margin-right: 33.33333%; + } + .offset-xxl-5 { + margin-right: 41.66667%; + } + .offset-xxl-6 { + margin-right: 50%; + } + .offset-xxl-7 { + margin-right: 58.33333%; + } + .offset-xxl-8 { + margin-right: 66.66667%; + } + .offset-xxl-9 { + margin-right: 75%; + } + .offset-xxl-10 { + margin-right: 83.33333%; + } + .offset-xxl-11 { + margin-right: 91.66667%; + } + .g-xxl-0, + .gx-xxl-0 { + --bs-gutter-x: 0; + } + .g-xxl-0, + .gy-xxl-0 { + --bs-gutter-y: 0; + } + .g-xxl-1, + .gx-xxl-1 { + --bs-gutter-x: 0.25rem; + } + .g-xxl-1, + .gy-xxl-1 { + --bs-gutter-y: 0.25rem; + } + .g-xxl-2, + .gx-xxl-2 { + --bs-gutter-x: 0.5rem; + } + .g-xxl-2, + .gy-xxl-2 { + --bs-gutter-y: 0.5rem; + } + .g-xxl-3, + .gx-xxl-3 { + --bs-gutter-x: 1rem; + } + .g-xxl-3, + .gy-xxl-3 { + --bs-gutter-y: 1rem; + } + .g-xxl-4, + .gx-xxl-4 { + --bs-gutter-x: 1.8rem; + } + .g-xxl-4, + .gy-xxl-4 { + --bs-gutter-y: 1.8rem; + } + .g-xxl-5, + .gx-xxl-5 { + --bs-gutter-x: 3rem; + } + .g-xxl-5, + .gy-xxl-5 { + --bs-gutter-y: 3rem; + } + .g-xxl-6, + .gx-xxl-6 { + --bs-gutter-x: 4rem; + } + .g-xxl-6, + .gy-xxl-6 { + --bs-gutter-y: 4rem; + } + .g-xxl-7, + .gx-xxl-7 { + --bs-gutter-x: 5rem; + } + .g-xxl-7, + .gy-xxl-7 { + --bs-gutter-y: 5rem; + } + .g-xxl-8, + .gx-xxl-8 { + --bs-gutter-x: 7.5rem; + } + .g-xxl-8, + .gy-xxl-8 { + --bs-gutter-y: 7.5rem; + } + .g-xxl-9, + .gx-xxl-9 { + --bs-gutter-x: 10rem; + } + .g-xxl-9, + .gy-xxl-9 { + --bs-gutter-y: 10rem; + } + .g-xxl-10, + .gx-xxl-10 { + --bs-gutter-x: 12.5rem; + } + .g-xxl-10, + .gy-xxl-10 { + --bs-gutter-y: 12.5rem; + } + .g-xxl-11, + .gx-xxl-11 { + --bs-gutter-x: 15rem; + } + .g-xxl-11, + .gy-xxl-11 { + --bs-gutter-y: 15rem; + } +} + +.table { + --bs-table-bg: transparent; + --bs-table-striped-color: #7D7987; + --bs-table-striped-bg: rgba(0, 0, 0, 0.05); + --bs-table-active-color: #7D7987; + --bs-table-active-bg: rgba(0, 0, 0, 0.1); + --bs-table-hover-color: #7D7987; + --bs-table-hover-bg: rgba(0, 0, 0, 0.075); + width: 100%; + margin-bottom: 1rem; + color: #7D7987; + vertical-align: top; + border-color: #E1E0E4; +} + +.table > :not(caption) > * > * { + padding: 0.5rem 0.5rem; + background-color: var(--bs-table-bg); + border-bottom-width: 1px; + -webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg); + box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg); +} + +.table > tbody { + vertical-align: inherit; +} + +.table > thead { + vertical-align: bottom; +} + +.table > :not(:last-child) > :last-child > * { + border-bottom-color: currentColor; +} + +.caption-top { + caption-side: top; +} + +.table-sm > :not(caption) > * > * { + padding: 0.25rem 0.25rem; +} + +.table-bordered > :not(caption) > * { + border-width: 1px 0; +} + +.table-bordered > :not(caption) > * > * { + border-width: 0 1px; +} + +.table-borderless > :not(caption) > * > * { + border-bottom-width: 0; +} + +.table-striped > tbody > tr:nth-of-type(odd) { + --bs-table-accent-bg: var(--bs-table-striped-bg); + color: var(--bs-table-striped-color); +} + +.table-active { + --bs-table-accent-bg: var(--bs-table-active-bg); + color: var(--bs-table-active-color); +} + +.table-hover > tbody > tr:hover { + --bs-table-accent-bg: var(--bs-table-hover-bg); + color: var(--bs-table-hover-color); +} + +.table-primary { + --bs-table-bg: #d2d8e0; + --bs-table-striped-bg: #ccd2da; + --bs-table-striped-color: #616368; + --bs-table-active-bg: #c7ccd4; + --bs-table-active-color: #616368; + --bs-table-hover-bg: #cacfd7; + --bs-table-hover-color: #616368; + color: #616368; + border-color: #c7ccd4; +} + +.table-secondary { + --bs-table-bg: #dcdde0; + --bs-table-striped-bg: #d6d7da; + --bs-table-striped-color: #616368; + --bs-table-active-bg: #d0d1d4; + --bs-table-active-color: #616368; + --bs-table-hover-bg: #d3d4d7; + --bs-table-hover-color: #616368; + color: #616368; + border-color: #d0d1d4; +} + +.table-success { + --bs-table-bg: #e0f1e1; + --bs-table-striped-bg: #daeadb; + --bs-table-striped-color: #616368; + --bs-table-active-bg: #d3e3d5; + --bs-table-active-color: #616368; + --bs-table-hover-bg: #d6e6d8; + --bs-table-hover-color: #616368; + color: #616368; + border-color: #d3e3d5; +} + +.table-info { + --bs-table-bg: #d8f1fd; + --bs-table-striped-bg: #d2eaf6; + --bs-table-striped-color: #616368; + --bs-table-active-bg: #cce3ee; + --bs-table-active-color: #616368; + --bs-table-hover-bg: #cfe6f2; + --bs-table-hover-color: #616368; + color: #616368; + border-color: #cce3ee; +} + +.table-warning { + --bs-table-bg: #ffecd3; + --bs-table-striped-bg: #f7e5ce; + --bs-table-striped-color: #616368; + --bs-table-active-bg: #efdec8; + --bs-table-active-color: #616368; + --bs-table-hover-bg: #f3e2cb; + --bs-table-hover-color: #616368; + color: #616368; + border-color: #efdec8; +} + +.table-danger { + --bs-table-bg: #fddde1; + --bs-table-striped-bg: #f5d7db; + --bs-table-striped-color: #616368; + --bs-table-active-bg: #edd1d5; + --bs-table-active-color: #616368; + --bs-table-hover-bg: #f1d4d8; + --bs-table-hover-color: #616368; + color: #616368; + border-color: #edd1d5; +} + +.table-light { + --bs-table-bg: #F9FAFD; + --bs-table-striped-bg: #f1f2f6; + --bs-table-striped-color: #616368; + --bs-table-active-bg: #eaebee; + --bs-table-active-color: #616368; + --bs-table-hover-bg: #eeeff2; + --bs-table-hover-color: #616368; + color: #616368; + border-color: #eaebee; +} + +.table-dark { + --bs-table-bg: #1F1534; + --bs-table-striped-bg: #2a213e; + --bs-table-striped-color: #fff; + --bs-table-active-bg: #352c48; + --bs-table-active-color: #fff; + --bs-table-hover-bg: #302743; + --bs-table-hover-color: #fff; + color: #fff; + border-color: #352c48; +} + +.table-responsive { + overflow-x: auto; + -webkit-overflow-scrolling: touch; +} + +@media (max-width: 575.98px) { + .table-responsive-sm { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} + +@media (max-width: 767.98px) { + .table-responsive-md { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} + +@media (max-width: 991.98px) { + .table-responsive-lg { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} + +@media (max-width: 1199.98px) { + .table-responsive-xl { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} + +@media (max-width: 1539.98px) { + .table-responsive-xxl { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} + +.form-label { + margin-bottom: 0.5rem; +} + +.col-form-label { + padding-top: calc(0.375rem + 1px); + padding-bottom: calc(0.375rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5; +} + +.col-form-label-lg { + padding-top: calc(0.6rem + 1px); + padding-bottom: calc(0.6rem + 1px); + font-size: 1rem; +} + +.col-form-label-sm { + padding-top: calc(0.1rem + 1px); + padding-bottom: calc(0.1rem + 1px); + font-size: 0.875rem; +} + +.form-text { + margin-top: 0.25rem; + font-size: 75%; + color: #CDCCD1; +} + +.form-control { + display: block; + width: 100%; + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #7D7987; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #D7D6DA; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + border-radius: 0.25rem; + -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .form-control { + -webkit-transition: none; + -o-transition: none; + transition: none; + } +} + +.form-control[type="file"] { + overflow: hidden; +} + +.form-control[type="file"]:not(:disabled):not([readonly]) { + cursor: pointer; +} + +.form-control:focus { + color: #7D7987; + background-color: #fff; + border-color: #8f9db1; + outline: 0; + -webkit-box-shadow: 0 0 0 0.25rem rgba(31, 58, 99, 0.25); + box-shadow: 0 0 0 0.25rem rgba(31, 58, 99, 0.25); +} + +.form-control::-webkit-date-and-time-value { + height: 1.5em; +} + +.form-control::-webkit-input-placeholder { + color: #C3C1C8; + opacity: 1; +} + +.form-control::-moz-placeholder { + color: #C3C1C8; + opacity: 1; +} + +.form-control:-ms-input-placeholder { + color: #C3C1C8; + opacity: 1; +} + +.form-control::-ms-input-placeholder { + color: #C3C1C8; + opacity: 1; +} + +.form-control::placeholder { + color: #C3C1C8; + opacity: 1; +} + +.form-control:disabled, .form-control[readonly] { + background-color: #EBEBED; + opacity: 1; +} + +.form-control::file-selector-button { + padding: 0.375rem 0.75rem; + margin: -0.375rem -0.75rem; + -webkit-margin-end: 0.75rem; + margin-inline-end: 0.75rem; + color: #7D7987; + background-color: #EBEBED; + pointer-events: none; + border-color: inherit; + border-style: solid; + border-width: 0; + border-inline-end-width: 1px; + border-radius: 0; + -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .form-control::file-selector-button { + -webkit-transition: none; + -o-transition: none; + transition: none; + } +} + +.form-control:hover:not(:disabled):not([readonly])::file-selector-button { + background-color: #dfdfe1; +} + +.form-control::-webkit-file-upload-button { + padding: 0.375rem 0.75rem; + margin: -0.375rem -0.75rem; + -webkit-margin-end: 0.75rem; + margin-inline-end: 0.75rem; + color: #7D7987; + background-color: #EBEBED; + pointer-events: none; + border-color: inherit; + border-style: solid; + border-width: 0; + border-inline-end-width: 1px; + border-radius: 0; + -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .form-control::-webkit-file-upload-button { + -webkit-transition: none; + transition: none; + } +} + +.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button { + background-color: #dfdfe1; +} + +.form-control-plaintext { + display: block; + width: 100%; + padding: 0.375rem 0; + margin-bottom: 0; + line-height: 1.5; + color: #7D7987; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; +} + +.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { + padding-left: 0; + padding-right: 0; +} + +.form-control-sm { + min-height: calc(1.5em + 0.2rem + 2px); + padding: 0.1rem 0.5rem; + font-size: 0.875rem; + border-radius: 0.3rem; +} + +.form-control-sm::file-selector-button { + padding: 0.1rem 0.5rem; + margin: -0.1rem -0.5rem; + -webkit-margin-end: 0.5rem; + margin-inline-end: 0.5rem; +} + +.form-control-sm::-webkit-file-upload-button { + padding: 0.1rem 0.5rem; + margin: -0.1rem -0.5rem; + -webkit-margin-end: 0.5rem; + margin-inline-end: 0.5rem; +} + +.form-control-lg { + min-height: calc(1.5em + 1.2rem + 2px); + padding: 0.6rem 1.7rem; + font-size: 1rem; + border-radius: 0.5rem; +} + +.form-control-lg::file-selector-button { + padding: 0.6rem 1.7rem; + margin: -0.6rem -1.7rem; + -webkit-margin-end: 1.7rem; + margin-inline-end: 1.7rem; +} + +.form-control-lg::-webkit-file-upload-button { + padding: 0.6rem 1.7rem; + margin: -0.6rem -1.7rem; + -webkit-margin-end: 1.7rem; + margin-inline-end: 1.7rem; +} + +textarea.form-control { + min-height: calc(1.5em + 0.75rem + 2px); +} + +textarea.form-control-sm { + min-height: calc(1.5em + 0.2rem + 2px); +} + +textarea.form-control-lg { + min-height: calc(1.5em + 1.2rem + 2px); +} + +.form-control-color { + max-width: 3rem; + height: auto; + padding: 0.375rem; +} + +.form-control-color:not(:disabled):not([readonly]) { + cursor: pointer; +} + +.form-control-color::-moz-color-swatch { + height: 1.5em; + border-radius: 0.25rem; +} + +.form-control-color::-webkit-color-swatch { + height: 1.5em; + border-radius: 0.25rem; +} + +.form-select { + display: block; + width: 100%; + padding: 0.375rem 0.75rem 0.375rem 2.25rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #7D7987; + background-color: #fff; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23616368' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: left 0.75rem center; + background-size: 16px 12px; + border: 1px solid #D7D6DA; + border-radius: 0.25rem; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +.form-select:focus { + border-color: #8f9db1; + outline: 0; + -webkit-box-shadow: 0 0 0 0.25rem rgba(31, 58, 99, 0.25); + box-shadow: 0 0 0 0.25rem rgba(31, 58, 99, 0.25); +} + +.form-select[multiple], .form-select[size]:not([size="1"]) { + padding-left: 0.75rem; + background-image: none; +} + +.form-select:disabled { + color: #C3C1C8; + background-color: #EBEBED; +} + +.form-select:-moz-focusring { + color: transparent; + text-shadow: 0 0 0 #7D7987; +} + +.form-select-sm { + padding-top: 0.1rem; + padding-bottom: 0.1rem; + padding-right: 0.5rem; + font-size: 0.875rem; +} + +.form-select-lg { + padding-top: 0.6rem; + padding-bottom: 0.6rem; + padding-right: 1.7rem; + font-size: 1rem; +} + +.form-check { + display: block; + min-height: 1.5rem; + padding-right: 1.5em; + margin-bottom: 0.125rem; +} + +.form-check .form-check-input { + float: right; + margin-right: -1.5em; +} + +.form-check-input { + width: 1em; + height: 1em; + margin-top: 0.25em; + vertical-align: top; + background-color: #fff; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + border: 1px solid rgba(0, 0, 0, 0.25); + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + -webkit-print-color-adjust: exact; + color-adjust: exact; +} + +.form-check-input[type="checkbox"] { + border-radius: 0.25em; +} + +.form-check-input[type="radio"] { + border-radius: 50%; +} + +.form-check-input:active { + -webkit-filter: brightness(90%); + filter: brightness(90%); +} + +.form-check-input:focus { + border-color: #8f9db1; + outline: 0; + -webkit-box-shadow: 0 0 0 0.25rem rgba(31, 58, 99, 0.25); + box-shadow: 0 0 0 0.25rem rgba(31, 58, 99, 0.25); +} + +.form-check-input:checked { + background-color: #1F3A63; + border-color: #1F3A63; +} + +.form-check-input:checked[type="checkbox"] { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e"); +} + +.form-check-input:checked[type="radio"] { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e"); +} + +.form-check-input[type="checkbox"]:indeterminate { + background-color: #1F3A63; + border-color: #1F3A63; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e"); +} + +.form-check-input:disabled { + pointer-events: none; + -webkit-filter: none; + filter: none; + opacity: 0.5; +} + +.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label { + opacity: 0.5; +} + +.form-switch { + padding-right: 2.5em; +} + +.form-switch .form-check-input { + width: 2em; + margin-right: -2.5em; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e"); + background-position: right center; + border-radius: 2em; + -webkit-transition: background-position 0.15s ease-in-out; + -o-transition: background-position 0.15s ease-in-out; + transition: background-position 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .form-switch .form-check-input { + -webkit-transition: none; + -o-transition: none; + transition: none; + } +} + +.form-switch .form-check-input:focus { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%238f9db1'/%3e%3c/svg%3e"); +} + +.form-switch .form-check-input:checked { + background-position: left center; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); +} + +.form-check-inline { + display: inline-block; + margin-left: 1rem; +} + +.btn-check { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} + +.btn-check[disabled] + .btn, .btn-check:disabled + .btn { + pointer-events: none; + -webkit-filter: none; + filter: none; + opacity: 0.65; +} + +.form-range { + width: 100%; + height: 1.5rem; + padding: 0; + background-color: transparent; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +.form-range:focus { + outline: 0; +} + +.form-range:focus::-webkit-slider-thumb { + -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(31, 58, 99, 0.25); + box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(31, 58, 99, 0.25); +} + +.form-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(31, 58, 99, 0.25); +} + +.form-range::-moz-focus-outer { + border: 0; +} + +.form-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + background-color: #1F3A63; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + -webkit-appearance: none; + appearance: none; +} + +@media (prefers-reduced-motion: reduce) { + .form-range::-webkit-slider-thumb { + -webkit-transition: none; + transition: none; + } +} + +.form-range::-webkit-slider-thumb:active { + background-color: #bcc4d0; +} + +.form-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #E1E0E4; + border-color: transparent; + border-radius: 1rem; +} + +.form-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #1F3A63; + border: 0; + border-radius: 1rem; + -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + -moz-appearance: none; + appearance: none; +} + +@media (prefers-reduced-motion: reduce) { + .form-range::-moz-range-thumb { + -moz-transition: none; + transition: none; + } +} + +.form-range::-moz-range-thumb:active { + background-color: #bcc4d0; +} + +.form-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #E1E0E4; + border-color: transparent; + border-radius: 1rem; +} + +.form-range:disabled { + pointer-events: none; +} + +.form-range:disabled::-webkit-slider-thumb { + background-color: #CDCCD1; +} + +.form-range:disabled::-moz-range-thumb { + background-color: #CDCCD1; +} + +.form-floating { + position: relative; +} + +.form-floating > .form-control, +.form-floating > .form-select { + height: calc(3.5rem + 2px); + padding: 1rem 0.75rem; +} + +.form-floating > label { + position: absolute; + top: 0; + right: 0; + height: 100%; + padding: 1rem 0.75rem; + pointer-events: none; + border: 1px solid transparent; + -webkit-transform-origin: 100% 0; + -ms-transform-origin: 100% 0; + transform-origin: 100% 0; + -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out; + transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out; + -o-transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; + transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; + transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .form-floating > label { + -webkit-transition: none; + -o-transition: none; + transition: none; + } +} + +.form-floating > .form-control::-webkit-input-placeholder { + color: transparent; +} + +.form-floating > .form-control::-moz-placeholder { + color: transparent; +} + +.form-floating > .form-control:-ms-input-placeholder { + color: transparent; +} + +.form-floating > .form-control::-ms-input-placeholder { + color: transparent; +} + +.form-floating > .form-control::placeholder { + color: transparent; +} + +.form-floating > .form-control:not(:-moz-placeholder-shown) { + padding-top: 1.625rem; + padding-bottom: 0.625rem; +} + +.form-floating > .form-control:not(:-ms-input-placeholder) { + padding-top: 1.625rem; + padding-bottom: 0.625rem; +} + +.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) { + padding-top: 1.625rem; + padding-bottom: 0.625rem; +} + +.form-floating > .form-control:-webkit-autofill { + padding-top: 1.625rem; + padding-bottom: 0.625rem; +} + +.form-floating > .form-select { + padding-top: 1.625rem; + padding-bottom: 0.625rem; +} + +.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label { + opacity: 0.65; + transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem); +} + +.form-floating > .form-control:not(:-ms-input-placeholder) ~ label { + opacity: 0.65; + -ms-transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem); + transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem); +} + +.form-floating > .form-control:focus ~ label, +.form-floating > .form-control:not(:placeholder-shown) ~ label, +.form-floating > .form-select ~ label { + opacity: 0.65; + -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem); + -ms-transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem); + transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem); +} + +.form-floating > .form-control:-webkit-autofill ~ label { + opacity: 0.65; + -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem); + transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem); +} + +.input-group { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: stretch; + -ms-flex-align: stretch; + align-items: stretch; + width: 100%; +} + +.input-group > .form-control, +.input-group > .form-select { + position: relative; + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + width: 1%; + min-width: 0; +} + +.input-group > .form-control:focus, +.input-group > .form-select:focus { + z-index: 3; +} + +.input-group .btn { + position: relative; + z-index: 2; +} + +.input-group .btn:focus { + z-index: 3; +} + +.input-group-text { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #7D7987; + text-align: center; + white-space: nowrap; + background-color: #EBEBED; + border: 1px solid #D7D6DA; + border-radius: 0.25rem; +} + +.input-group-lg > .form-control, +.input-group-lg > .form-select, +.input-group-lg > .input-group-text, +.input-group-lg > .btn { + padding: 0.6rem 1.7rem; + font-size: 1rem; + border-radius: 0.5rem; +} + +.input-group-sm > .form-control, +.input-group-sm > .form-select, +.input-group-sm > .input-group-text, +.input-group-sm > .btn { + padding: 0.1rem 0.5rem; + font-size: 0.875rem; + border-radius: 0.3rem; +} + +.input-group-lg > .form-select, +.input-group-sm > .form-select { + padding-left: 3rem; +} + +.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu), +.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu), +.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) { + margin-right: -1px; + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 75%; + color: #66BB6A; +} + +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.875rem; + color: #fff; + background-color: rgba(102, 187, 106, 0.9); + border-radius: 0.25rem; +} + +.was-validated :valid ~ .valid-feedback, +.was-validated :valid ~ .valid-tooltip, +.is-valid ~ .valid-feedback, +.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .form-control:valid, .form-control.is-valid { + border-color: #66BB6A; + padding-left: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2366BB6A' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: left calc(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +.was-validated .form-control:valid:focus, .form-control.is-valid:focus { + border-color: #66BB6A; + -webkit-box-shadow: 0 0 0 0.25rem rgba(102, 187, 106, 0.25); + box-shadow: 0 0 0 0.25rem rgba(102, 187, 106, 0.25); +} + +.was-validated textarea.form-control:valid, textarea.form-control.is-valid { + padding-left: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) left calc(0.375em + 0.1875rem); +} + +.was-validated .form-select:valid, .form-select.is-valid { + border-color: #66BB6A; + padding-left: 4.125rem; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23616368' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2366BB6A' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); + background-position: left 0.75rem center, center left 2.25rem; + background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +.was-validated .form-select:valid:focus, .form-select.is-valid:focus { + border-color: #66BB6A; + -webkit-box-shadow: 0 0 0 0.25rem rgba(102, 187, 106, 0.25); + box-shadow: 0 0 0 0.25rem rgba(102, 187, 106, 0.25); +} + +.was-validated .form-check-input:valid, .form-check-input.is-valid { + border-color: #66BB6A; +} + +.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked { + background-color: #66BB6A; +} + +.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus { + -webkit-box-shadow: 0 0 0 0.25rem rgba(102, 187, 106, 0.25); + box-shadow: 0 0 0 0.25rem rgba(102, 187, 106, 0.25); +} + +.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: #66BB6A; +} + +.form-check-inline .form-check-input ~ .valid-feedback { + margin-right: .5em; +} + +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 75%; + color: #F55767; +} + +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.875rem; + color: #fff; + background-color: rgba(245, 87, 103, 0.9); + border-radius: 0.25rem; +} + +.was-validated :invalid ~ .invalid-feedback, +.was-validated :invalid ~ .invalid-tooltip, +.is-invalid ~ .invalid-feedback, +.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .form-control:invalid, .form-control.is-invalid { + border-color: #F55767; + padding-left: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F55767'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23F55767' stroke='none'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: left calc(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { + border-color: #F55767; + -webkit-box-shadow: 0 0 0 0.25rem rgba(245, 87, 103, 0.25); + box-shadow: 0 0 0 0.25rem rgba(245, 87, 103, 0.25); +} + +.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { + padding-left: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) left calc(0.375em + 0.1875rem); +} + +.was-validated .form-select:invalid, .form-select.is-invalid { + border-color: #F55767; + padding-left: 4.125rem; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23616368' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F55767'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23F55767' stroke='none'/%3e%3c/svg%3e"); + background-position: left 0.75rem center, center left 2.25rem; + background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus { + border-color: #F55767; + -webkit-box-shadow: 0 0 0 0.25rem rgba(245, 87, 103, 0.25); + box-shadow: 0 0 0 0.25rem rgba(245, 87, 103, 0.25); +} + +.was-validated .form-check-input:invalid, .form-check-input.is-invalid { + border-color: #F55767; +} + +.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked { + background-color: #F55767; +} + +.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus { + -webkit-box-shadow: 0 0 0 0.25rem rgba(245, 87, 103, 0.25); + box-shadow: 0 0 0 0.25rem rgba(245, 87, 103, 0.25); +} + +.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: #F55767; +} + +.form-check-inline .form-check-input ~ .invalid-feedback { + margin-right: .5em; +} + +.btn { + display: inline-block; + font-weight: 500; + line-height: 1.5; + color: #7D7987; + text-align: center; + vertical-align: middle; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-color: transparent; + border: 1px solid transparent; + padding: 0.375rem 0.75rem; + font-size: 1rem; + border-radius: 0.313rem; + -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .btn { + -webkit-transition: none; + -o-transition: none; + transition: none; + } +} + +.btn:hover { + color: #7D7987; + text-decoration: none; +} + +.btn-check:focus + .btn, .btn:focus { + outline: 0; + -webkit-box-shadow: 0 0 0 0.25rem rgba(31, 58, 99, 0.25); + box-shadow: 0 0 0 0.25rem rgba(31, 58, 99, 0.25); +} + +.btn:disabled, .btn.disabled, +fieldset:disabled .btn { + pointer-events: none; + opacity: 0.65; +} + +.btn-primary { + color: #fff; + background-color: #1F3A63; + border-color: #1F3A63; +} + +.btn-primary:hover { + color: #fff; + background-color: #1a3154; + border-color: #192e4f; +} + +.btn-check:focus + .btn-primary, .btn-primary:focus { + color: #fff; + background-color: #1a3154; + border-color: #192e4f; + -webkit-box-shadow: 0 0 0 0 rgba(65, 88, 122, 0.5); + box-shadow: 0 0 0 0 rgba(65, 88, 122, 0.5); +} + +.btn-check:checked + .btn-primary, +.btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, +.show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #192e4f; + border-color: #172c4a; +} + +.btn-check:checked + .btn-primary:focus, +.btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, +.show > .btn-primary.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0 rgba(65, 88, 122, 0.5); + box-shadow: 0 0 0 0 rgba(65, 88, 122, 0.5); +} + +.btn-primary:disabled, .btn-primary.disabled { + color: #fff; + background-color: #1F3A63; + border-color: #1F3A63; +} + +.btn-secondary { + color: #fff; + background-color: #4F5665; + border-color: #4F5665; +} + +.btn-secondary:hover { + color: #fff; + background-color: #434956; + border-color: #3f4551; +} + +.btn-check:focus + .btn-secondary, .btn-secondary:focus { + color: #fff; + background-color: #434956; + border-color: #3f4551; + -webkit-box-shadow: 0 0 0 0 rgba(105, 111, 124, 0.5); + box-shadow: 0 0 0 0 rgba(105, 111, 124, 0.5); +} + +.btn-check:checked + .btn-secondary, +.btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, +.show > .btn-secondary.dropdown-toggle { + color: #fff; + background-color: #3f4551; + border-color: #3b414c; +} + +.btn-check:checked + .btn-secondary:focus, +.btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, +.show > .btn-secondary.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0 rgba(105, 111, 124, 0.5); + box-shadow: 0 0 0 0 rgba(105, 111, 124, 0.5); +} + +.btn-secondary:disabled, .btn-secondary.disabled { + color: #fff; + background-color: #4F5665; + border-color: #4F5665; +} + +.btn-success { + color: #fff; + background-color: #66BB6A; + border-color: #66BB6A; +} + +.btn-success:hover { + color: #fff; + background-color: #579f5a; + border-color: #529655; +} + +.btn-check:focus + .btn-success, .btn-success:focus { + color: #fff; + background-color: #579f5a; + border-color: #529655; + -webkit-box-shadow: 0 0 0 0 rgba(125, 197, 128, 0.5); + box-shadow: 0 0 0 0 rgba(125, 197, 128, 0.5); +} + +.btn-check:checked + .btn-success, +.btn-check:active + .btn-success, .btn-success:active, .btn-success.active, +.show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #529655; + border-color: #4d8c50; +} + +.btn-check:checked + .btn-success:focus, +.btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, +.show > .btn-success.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0 rgba(125, 197, 128, 0.5); + box-shadow: 0 0 0 0 rgba(125, 197, 128, 0.5); +} + +.btn-success:disabled, .btn-success.disabled { + color: #fff; + background-color: #66BB6A; + border-color: #66BB6A; +} + +.btn-info { + color: #fff; + background-color: #3EB8F4; + border-color: #3EB8F4; +} + +.btn-info:hover { + color: #fff; + background-color: #359ccf; + border-color: #3293c3; +} + +.btn-check:focus + .btn-info, .btn-info:focus { + color: #fff; + background-color: #359ccf; + border-color: #3293c3; + -webkit-box-shadow: 0 0 0 0 rgba(91, 195, 246, 0.5); + box-shadow: 0 0 0 0 rgba(91, 195, 246, 0.5); +} + +.btn-check:checked + .btn-info, +.btn-check:active + .btn-info, .btn-info:active, .btn-info.active, +.show > .btn-info.dropdown-toggle { + color: #fff; + background-color: #3293c3; + border-color: #2f8ab7; +} + +.btn-check:checked + .btn-info:focus, +.btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, +.show > .btn-info.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0 rgba(91, 195, 246, 0.5); + box-shadow: 0 0 0 0 rgba(91, 195, 246, 0.5); +} + +.btn-info:disabled, .btn-info.disabled { + color: #fff; + background-color: #3EB8F4; + border-color: #3EB8F4; +} + +.btn-warning { + color: #fff; + background-color: #FFA024; + border-color: #FFA024; +} + +.btn-warning:hover { + color: #fff; + background-color: #d9881f; + border-color: #cc801d; +} + +.btn-check:focus + .btn-warning, .btn-warning:focus { + color: #fff; + background-color: #d9881f; + border-color: #cc801d; + -webkit-box-shadow: 0 0 0 0 rgba(255, 174, 69, 0.5); + box-shadow: 0 0 0 0 rgba(255, 174, 69, 0.5); +} + +.btn-check:checked + .btn-warning, +.btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, +.show > .btn-warning.dropdown-toggle { + color: #fff; + background-color: #cc801d; + border-color: #bf781b; +} + +.btn-check:checked + .btn-warning:focus, +.btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, +.show > .btn-warning.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0 rgba(255, 174, 69, 0.5); + box-shadow: 0 0 0 0 rgba(255, 174, 69, 0.5); +} + +.btn-warning:disabled, .btn-warning.disabled { + color: #fff; + background-color: #FFA024; + border-color: #FFA024; +} + +.btn-danger { + color: #fff; + background-color: #F55767; + border-color: #F55767; +} + +.btn-danger:hover { + color: #fff; + background-color: #d04a58; + border-color: #c44652; +} + +.btn-check:focus + .btn-danger, .btn-danger:focus { + color: #fff; + background-color: #d04a58; + border-color: #c44652; + -webkit-box-shadow: 0 0 0 0 rgba(247, 112, 126, 0.5); + box-shadow: 0 0 0 0 rgba(247, 112, 126, 0.5); +} + +.btn-check:checked + .btn-danger, +.btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, +.show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #c44652; + border-color: #b8414d; +} + +.btn-check:checked + .btn-danger:focus, +.btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, +.show > .btn-danger.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0 rgba(247, 112, 126, 0.5); + box-shadow: 0 0 0 0 rgba(247, 112, 126, 0.5); +} + +.btn-danger:disabled, .btn-danger.disabled { + color: #fff; + background-color: #F55767; + border-color: #F55767; +} + +.btn-light { + color: #616368; + background-color: #F9FAFD; + border-color: #F9FAFD; +} + +.btn-light:hover { + color: #616368; + background-color: #fafbfd; + border-color: #fafbfd; +} + +.btn-check:focus + .btn-light, .btn-light:focus { + color: #616368; + background-color: #fafbfd; + border-color: #fafbfd; + -webkit-box-shadow: 0 0 0 0 rgba(226, 227, 231, 0.5); + box-shadow: 0 0 0 0 rgba(226, 227, 231, 0.5); +} + +.btn-check:checked + .btn-light, +.btn-check:active + .btn-light, .btn-light:active, .btn-light.active, +.show > .btn-light.dropdown-toggle { + color: #616368; + background-color: #fafbfd; + border-color: #fafbfd; +} + +.btn-check:checked + .btn-light:focus, +.btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, +.show > .btn-light.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0 rgba(226, 227, 231, 0.5); + box-shadow: 0 0 0 0 rgba(226, 227, 231, 0.5); +} + +.btn-light:disabled, .btn-light.disabled { + color: #616368; + background-color: #F9FAFD; + border-color: #F9FAFD; +} + +.btn-dark { + color: #fff; + background-color: #1F1534; + border-color: #1F1534; +} + +.btn-dark:hover { + color: #fff; + background-color: #1a122c; + border-color: #19112a; +} + +.btn-check:focus + .btn-dark, .btn-dark:focus { + color: #fff; + background-color: #1a122c; + border-color: #19112a; + -webkit-box-shadow: 0 0 0 0 rgba(65, 56, 82, 0.5); + box-shadow: 0 0 0 0 rgba(65, 56, 82, 0.5); +} + +.btn-check:checked + .btn-dark, +.btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, +.show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #19112a; + border-color: #171027; +} + +.btn-check:checked + .btn-dark:focus, +.btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, +.show > .btn-dark.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0 rgba(65, 56, 82, 0.5); + box-shadow: 0 0 0 0 rgba(65, 56, 82, 0.5); +} + +.btn-dark:disabled, .btn-dark.disabled { + color: #fff; + background-color: #1F1534; + border-color: #1F1534; +} + +.btn-outline-primary { + color: #1F3A63; + border-color: #1F3A63; +} + +.btn-outline-primary:hover { + color: #fff; + background-color: #1F3A63; + border-color: #1F3A63; +} + +.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus { + -webkit-box-shadow: 0 0 0 0 rgba(31, 58, 99, 0.5); + box-shadow: 0 0 0 0 rgba(31, 58, 99, 0.5); +} + +.btn-check:checked + .btn-outline-primary, +.btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show { + color: #fff; + background-color: #1F3A63; + border-color: #1F3A63; +} + +.btn-check:checked + .btn-outline-primary:focus, +.btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus { + -webkit-box-shadow: 0 0 0 0 rgba(31, 58, 99, 0.5); + box-shadow: 0 0 0 0 rgba(31, 58, 99, 0.5); +} + +.btn-outline-primary:disabled, .btn-outline-primary.disabled { + color: #1F3A63; + background-color: transparent; +} + +.btn-outline-secondary { + color: #4F5665; + border-color: #4F5665; +} + +.btn-outline-secondary:hover { + color: #fff; + background-color: #4F5665; + border-color: #4F5665; +} + +.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus { + -webkit-box-shadow: 0 0 0 0 rgba(79, 86, 101, 0.5); + box-shadow: 0 0 0 0 rgba(79, 86, 101, 0.5); +} + +.btn-check:checked + .btn-outline-secondary, +.btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show { + color: #fff; + background-color: #4F5665; + border-color: #4F5665; +} + +.btn-check:checked + .btn-outline-secondary:focus, +.btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus { + -webkit-box-shadow: 0 0 0 0 rgba(79, 86, 101, 0.5); + box-shadow: 0 0 0 0 rgba(79, 86, 101, 0.5); +} + +.btn-outline-secondary:disabled, .btn-outline-secondary.disabled { + color: #4F5665; + background-color: transparent; +} + +.btn-outline-success { + color: #66BB6A; + border-color: #66BB6A; +} + +.btn-outline-success:hover { + color: #fff; + background-color: #66BB6A; + border-color: #66BB6A; +} + +.btn-check:focus + .btn-outline-success, .btn-outline-success:focus { + -webkit-box-shadow: 0 0 0 0 rgba(102, 187, 106, 0.5); + box-shadow: 0 0 0 0 rgba(102, 187, 106, 0.5); +} + +.btn-check:checked + .btn-outline-success, +.btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show { + color: #fff; + background-color: #66BB6A; + border-color: #66BB6A; +} + +.btn-check:checked + .btn-outline-success:focus, +.btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus { + -webkit-box-shadow: 0 0 0 0 rgba(102, 187, 106, 0.5); + box-shadow: 0 0 0 0 rgba(102, 187, 106, 0.5); +} + +.btn-outline-success:disabled, .btn-outline-success.disabled { + color: #66BB6A; + background-color: transparent; +} + +.btn-outline-info { + color: #3EB8F4; + border-color: #3EB8F4; +} + +.btn-outline-info:hover { + color: #fff; + background-color: #3EB8F4; + border-color: #3EB8F4; +} + +.btn-check:focus + .btn-outline-info, .btn-outline-info:focus { + -webkit-box-shadow: 0 0 0 0 rgba(62, 184, 244, 0.5); + box-shadow: 0 0 0 0 rgba(62, 184, 244, 0.5); +} + +.btn-check:checked + .btn-outline-info, +.btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show { + color: #fff; + background-color: #3EB8F4; + border-color: #3EB8F4; +} + +.btn-check:checked + .btn-outline-info:focus, +.btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus { + -webkit-box-shadow: 0 0 0 0 rgba(62, 184, 244, 0.5); + box-shadow: 0 0 0 0 rgba(62, 184, 244, 0.5); +} + +.btn-outline-info:disabled, .btn-outline-info.disabled { + color: #3EB8F4; + background-color: transparent; +} + +.btn-outline-warning { + color: #FFA024; + border-color: #FFA024; +} + +.btn-outline-warning:hover { + color: #fff; + background-color: #FFA024; + border-color: #FFA024; +} + +.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus { + -webkit-box-shadow: 0 0 0 0 rgba(255, 160, 36, 0.5); + box-shadow: 0 0 0 0 rgba(255, 160, 36, 0.5); +} + +.btn-check:checked + .btn-outline-warning, +.btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show { + color: #fff; + background-color: #FFA024; + border-color: #FFA024; +} + +.btn-check:checked + .btn-outline-warning:focus, +.btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus { + -webkit-box-shadow: 0 0 0 0 rgba(255, 160, 36, 0.5); + box-shadow: 0 0 0 0 rgba(255, 160, 36, 0.5); +} + +.btn-outline-warning:disabled, .btn-outline-warning.disabled { + color: #FFA024; + background-color: transparent; +} + +.btn-outline-danger { + color: #F55767; + border-color: #F55767; +} + +.btn-outline-danger:hover { + color: #fff; + background-color: #F55767; + border-color: #F55767; +} + +.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus { + -webkit-box-shadow: 0 0 0 0 rgba(245, 87, 103, 0.5); + box-shadow: 0 0 0 0 rgba(245, 87, 103, 0.5); +} + +.btn-check:checked + .btn-outline-danger, +.btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show { + color: #fff; + background-color: #F55767; + border-color: #F55767; +} + +.btn-check:checked + .btn-outline-danger:focus, +.btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus { + -webkit-box-shadow: 0 0 0 0 rgba(245, 87, 103, 0.5); + box-shadow: 0 0 0 0 rgba(245, 87, 103, 0.5); +} + +.btn-outline-danger:disabled, .btn-outline-danger.disabled { + color: #F55767; + background-color: transparent; +} + +.btn-outline-light { + color: #F9FAFD; + border-color: #F9FAFD; +} + +.btn-outline-light:hover { + color: #616368; + background-color: #F9FAFD; + border-color: #F9FAFD; +} + +.btn-check:focus + .btn-outline-light, .btn-outline-light:focus { + -webkit-box-shadow: 0 0 0 0 rgba(249, 250, 253, 0.5); + box-shadow: 0 0 0 0 rgba(249, 250, 253, 0.5); +} + +.btn-check:checked + .btn-outline-light, +.btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show { + color: #616368; + background-color: #F9FAFD; + border-color: #F9FAFD; +} + +.btn-check:checked + .btn-outline-light:focus, +.btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus { + -webkit-box-shadow: 0 0 0 0 rgba(249, 250, 253, 0.5); + box-shadow: 0 0 0 0 rgba(249, 250, 253, 0.5); +} + +.btn-outline-light:disabled, .btn-outline-light.disabled { + color: #F9FAFD; + background-color: transparent; +} + +.btn-outline-dark { + color: #1F1534; + border-color: #1F1534; +} + +.btn-outline-dark:hover { + color: #fff; + background-color: #1F1534; + border-color: #1F1534; +} + +.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus { + -webkit-box-shadow: 0 0 0 0 rgba(31, 21, 52, 0.5); + box-shadow: 0 0 0 0 rgba(31, 21, 52, 0.5); +} + +.btn-check:checked + .btn-outline-dark, +.btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show { + color: #fff; + background-color: #1F1534; + border-color: #1F1534; +} + +.btn-check:checked + .btn-outline-dark:focus, +.btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus { + -webkit-box-shadow: 0 0 0 0 rgba(31, 21, 52, 0.5); + box-shadow: 0 0 0 0 rgba(31, 21, 52, 0.5); +} + +.btn-outline-dark:disabled, .btn-outline-dark.disabled { + color: #1F1534; + background-color: transparent; +} + +.btn-link { + font-weight: 400; + color: #1F3A63; + text-decoration: none; +} + +.btn-link:hover { + color: #192e4f; + text-decoration: underline; +} + +.btn-link:focus { + text-decoration: underline; +} + +.btn-link:disabled, .btn-link.disabled { + color: #C3C1C8; +} + +.btn-lg, .btn-group-lg > .btn { + padding: 0.6rem 1.7rem; + font-size: 1rem; + border-radius: 0.5rem; +} + +.btn-sm, .btn-group-sm > .btn { + padding: 0.1rem 0.5rem; + font-size: 0.875rem; + border-radius: 0.3rem; +} + +.fade { + -webkit-transition: opacity 0.15s linear; + -o-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; +} + +@media (prefers-reduced-motion: reduce) { + .fade { + -webkit-transition: none; + -o-transition: none; + transition: none; + } +} + +.fade:not(.show) { + opacity: 0; +} + +.collapse:not(.show) { + display: none; +} + +.collapsing { + height: 0; + overflow: hidden; + -webkit-transition: height 0.35s ease; + -o-transition: height 0.35s ease; + transition: height 0.35s ease; +} + +@media (prefers-reduced-motion: reduce) { + .collapsing { + -webkit-transition: none; + -o-transition: none; + transition: none; + } +} + +.dropup, +.dropend, +.dropdown, +.dropstart { + position: relative; +} + +.dropdown-toggle { + white-space: nowrap; +} + +.dropdown-toggle::after { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-left: 0.3em solid transparent; + border-bottom: 0; + border-right: 0.3em solid transparent; +} + +.dropdown-toggle:empty::after { + margin-right: 0; +} + +.dropdown-menu { + position: absolute; + top: 100%; + z-index: 1000; + display: none; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0; + font-size: 1rem; + color: #7D7987; + text-align: right; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 0.25rem; +} + +.dropdown-menu[data-bs-popper] { + right: 0; + margin-top: 0.125rem; +} + +.dropdown-menu-start { + --bs-position: start; +} + +.dropdown-menu-start[data-bs-popper] { + right: auto ; + left: 0 ; +} + +.dropdown-menu-end { + --bs-position: end; +} + +.dropdown-menu-end[data-bs-popper] { + right: 0 ; + left: auto ; +} + +@media (min-width: 576px) { + .dropdown-menu-sm-start { + --bs-position: start; + } + .dropdown-menu-sm-start[data-bs-popper] { + right: auto ; + left: 0 ; + } + .dropdown-menu-sm-end { + --bs-position: end; + } + .dropdown-menu-sm-end[data-bs-popper] { + right: 0 ; + left: auto ; + } +} + +@media (min-width: 768px) { + .dropdown-menu-md-start { + --bs-position: start; + } + .dropdown-menu-md-start[data-bs-popper] { + right: auto ; + left: 0 ; + } + .dropdown-menu-md-end { + --bs-position: end; + } + .dropdown-menu-md-end[data-bs-popper] { + right: 0 ; + left: auto ; + } +} + +@media (min-width: 992px) { + .dropdown-menu-lg-start { + --bs-position: start; + } + .dropdown-menu-lg-start[data-bs-popper] { + right: auto ; + left: 0 ; + } + .dropdown-menu-lg-end { + --bs-position: end; + } + .dropdown-menu-lg-end[data-bs-popper] { + right: 0 ; + left: auto ; + } +} + +@media (min-width: 1200px) { + .dropdown-menu-xl-start { + --bs-position: start; + } + .dropdown-menu-xl-start[data-bs-popper] { + right: auto ; + left: 0 ; + } + .dropdown-menu-xl-end { + --bs-position: end; + } + .dropdown-menu-xl-end[data-bs-popper] { + right: 0 ; + left: auto ; + } +} + +@media (min-width: 1540px) { + .dropdown-menu-xxl-start { + --bs-position: start; + } + .dropdown-menu-xxl-start[data-bs-popper] { + right: auto ; + left: 0 ; + } + .dropdown-menu-xxl-end { + --bs-position: end; + } + .dropdown-menu-xxl-end[data-bs-popper] { + right: 0 ; + left: auto ; + } +} + +.dropup .dropdown-menu { + top: auto; + bottom: 100%; +} + +.dropup .dropdown-menu[data-bs-popper] { + margin-top: 0; + margin-bottom: 0.125rem; +} + +.dropup .dropdown-toggle::after { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-left: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-right: 0.3em solid transparent; +} + +.dropup .dropdown-toggle:empty::after { + margin-right: 0; +} + +.dropend .dropdown-menu { + top: 0; + left: auto; + right: 100%; +} + +.dropend .dropdown-menu[data-bs-popper] { + margin-top: 0; + margin-right: 0.125rem; +} + +.dropend .dropdown-toggle::after { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-left: 0; + border-bottom: 0.3em solid transparent; + border-right: 0.3em solid; +} + +.dropend .dropdown-toggle:empty::after { + margin-right: 0; +} + +.dropend .dropdown-toggle::after { + vertical-align: 0; +} + +.dropstart .dropdown-menu { + top: 0; + left: 100%; + right: auto; +} + +.dropstart .dropdown-menu[data-bs-popper] { + margin-top: 0; + margin-left: 0.125rem; +} + +.dropstart .dropdown-toggle::after { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; +} + +.dropstart .dropdown-toggle::after { + display: none; +} + +.dropstart .dropdown-toggle::before { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-left: 0.3em solid; + border-bottom: 0.3em solid transparent; +} + +.dropstart .dropdown-toggle:empty::after { + margin-right: 0; +} + +.dropstart .dropdown-toggle::before { + vertical-align: 0; +} + +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid rgba(0, 0, 0, 0.15); +} + +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1rem; + clear: both; + font-weight: 400; + color: #4F5665; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0; +} + +.dropdown-item:hover, .dropdown-item:focus { + color: #474d5b; + text-decoration: none; + background-color: #EBEBED; +} + +.dropdown-item.active, .dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #1F3A63; +} + +.dropdown-item.disabled, .dropdown-item:disabled { + color: #CDCCD1; + pointer-events: none; + background-color: transparent; +} + +.dropdown-menu.show { + display: block; +} + +.dropdown-header { + display: block; + padding: 0.5rem 1rem; + margin-bottom: 0; + font-size: 0.875rem; + color: #C3C1C8; + white-space: nowrap; +} + +.dropdown-item-text { + display: block; + padding: 0.25rem 1rem; + color: #4F5665; +} + +.dropdown-menu-dark { + color: #E1E0E4; + background-color: #616368; + border-color: rgba(0, 0, 0, 0.15); +} + +.dropdown-menu-dark .dropdown-item { + color: #E1E0E4; +} + +.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus { + color: #fff; + background-color: rgba(255, 255, 255, 0.15); +} + +.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active { + color: #fff; + background-color: #1F3A63; +} + +.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled { + color: #CDCCD1; +} + +.dropdown-menu-dark .dropdown-divider { + border-color: rgba(0, 0, 0, 0.15); +} + +.dropdown-menu-dark .dropdown-item-text { + color: #E1E0E4; +} + +.dropdown-menu-dark .dropdown-header { + color: #CDCCD1; +} + +.btn-group, +.btn-group-vertical { + position: relative; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + vertical-align: middle; +} + +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; +} + +.btn-group > .btn-check:checked + .btn, +.btn-group > .btn-check:focus + .btn, +.btn-group > .btn:hover, +.btn-group > .btn:focus, +.btn-group > .btn:active, +.btn-group > .btn.active, +.btn-group-vertical > .btn-check:checked + .btn, +.btn-group-vertical > .btn-check:focus + .btn, +.btn-group-vertical > .btn:hover, +.btn-group-vertical > .btn:focus, +.btn-group-vertical > .btn:active, +.btn-group-vertical > .btn.active { + z-index: 1; +} + +.btn-toolbar { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; +} + +.btn-toolbar .input-group { + width: auto; +} + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) { + margin-right: -1px; +} + +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn-group:not(:last-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.btn-group > .btn:nth-child(n + 3), +.btn-group > :not(.btn-check) + .btn, +.btn-group > .btn-group:not(:first-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.dropdown-toggle-split { + padding-left: 0.5625rem; + padding-right: 0.5625rem; +} + +.dropdown-toggle-split::after, +.dropup .dropdown-toggle-split::after, +.dropend .dropdown-toggle-split::after { + margin-right: 0; +} + +.dropstart .dropdown-toggle-split::before { + margin-left: 0; +} + +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { + padding-left: 0.375rem; + padding-right: 0.375rem; +} + +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { + padding-left: 1.275rem; + padding-right: 1.275rem; +} + +.btn-group-vertical { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; +} + +.btn-group-vertical > .btn, +.btn-group-vertical > .btn-group { + width: 100%; +} + +.btn-group-vertical > .btn:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) { + margin-top: -1px; +} + +.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group-vertical > .btn-group:not(:last-child) > .btn { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +.btn-group-vertical > .btn ~ .btn, +.btn-group-vertical > .btn-group:not(:first-child) > .btn { + border-top-right-radius: 0; + border-top-left-radius: 0; +} + +.nav { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding-right: 0; + margin-bottom: 0; + list-style: none; +} + +.nav-link { + display: block; + padding: 0.5rem 1rem; + -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; + -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .nav-link { + -webkit-transition: none; + -o-transition: none; + transition: none; + } +} + +.nav-link:hover, .nav-link:focus { + text-decoration: none; +} + +.nav-link.disabled { + color: #C3C1C8; + pointer-events: none; + cursor: default; +} + +.nav-tabs { + border-bottom: 1px solid #E1E0E4; +} + +.nav-tabs .nav-link { + margin-bottom: -1px; + background: none; + border: 1px solid transparent; + border-top-right-radius: 0.25rem; + border-top-left-radius: 0.25rem; +} + +.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + border-color: #EBEBED #EBEBED #E1E0E4; + isolation: isolate; +} + +.nav-tabs .nav-link.disabled { + color: #C3C1C8; + background-color: transparent; + border-color: transparent; +} + +.nav-tabs .nav-link.active, +.nav-tabs .nav-item.show .nav-link { + color: #7D7987; + background-color: #fff; + border-color: #E1E0E4 #E1E0E4 #fff; +} + +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-right-radius: 0; + border-top-left-radius: 0; +} + +.nav-pills .nav-link { + background: none; + border: 0; + border-radius: 0.25rem; +} + +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #1F3A63; +} + +.nav-fill > .nav-link, +.nav-fill .nav-item { + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + text-align: center; +} + +.nav-justified > .nav-link, +.nav-justified .nav-item { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + text-align: center; +} + +.tab-content > .tab-pane { + display: none; +} + +.tab-content > .active { + display: block; +} + +.navbar { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + padding-top: 0.5rem; + padding-left: 1rem; + padding-bottom: 0.5rem; + padding-right: 1rem; +} + +.navbar > .container, +.navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: inherit; + flex-wrap: inherit; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; +} + +.navbar-brand { + padding-top: -0.046rem; + padding-bottom: -0.046rem; + margin-left: 1rem; + font-size: calc(1.2978rem + 0.5736vw); + white-space: nowrap; +} + +@media (min-width: 1200px) { + .navbar-brand { + font-size: 1.728rem; + } +} + +.navbar-brand:hover, .navbar-brand:focus { + text-decoration: none; +} + +.navbar-nav { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + padding-right: 0; + margin-bottom: 0; + list-style: none; +} + +.navbar-nav .nav-link { + padding-left: 0; + padding-right: 0; +} + +.navbar-nav .dropdown-menu { + position: static; +} + +.navbar-text { + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + +.navbar-collapse { + -ms-flex-preferred-size: 100%; + flex-basis: 100%; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} + +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.2rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 0.313rem; + -webkit-transition: -webkit-box-shadow 0.15s ease-in-out; + transition: -webkit-box-shadow 0.15s ease-in-out; + -o-transition: box-shadow 0.15s ease-in-out; + transition: box-shadow 0.15s ease-in-out; + transition: box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .navbar-toggler { + -webkit-transition: none; + -o-transition: none; + transition: none; + } +} + +.navbar-toggler:hover { + text-decoration: none; +} + +.navbar-toggler:focus { + text-decoration: none; + outline: 0; + -webkit-box-shadow: 0 0 0 0; + box-shadow: 0 0 0 0; +} + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + background-repeat: no-repeat; + background-position: center; + background-size: 100%; +} + +.navbar-nav-scroll { + max-height: var(--bs-scroll-height, 75vh); + overflow-y: auto; +} + +@media (min-width: 576px) { + .navbar-expand-sm { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-sm .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-sm .navbar-nav .nav-link { + padding-left: 0.5rem; + padding-right: 0.5rem; + } + .navbar-expand-sm .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-sm .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-sm .navbar-toggler { + display: none; + } +} + +@media (min-width: 768px) { + .navbar-expand-md { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-md .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-md .navbar-nav .nav-link { + padding-left: 0.5rem; + padding-right: 0.5rem; + } + .navbar-expand-md .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-md .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-md .navbar-toggler { + display: none; + } +} + +@media (min-width: 992px) { + .navbar-expand-lg { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-lg .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-lg .navbar-nav .nav-link { + padding-left: 0.5rem; + padding-right: 0.5rem; + } + .navbar-expand-lg .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-lg .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-lg .navbar-toggler { + display: none; + } +} + +@media (min-width: 1200px) { + .navbar-expand-xl { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-xl .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-xl .navbar-nav .nav-link { + padding-left: 0.5rem; + padding-right: 0.5rem; + } + .navbar-expand-xl .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-xl .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-xl .navbar-toggler { + display: none; + } +} + +@media (min-width: 1540px) { + .navbar-expand-xxl { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-xxl .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-xxl .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-xxl .navbar-nav .nav-link { + padding-left: 0.5rem; + padding-right: 0.5rem; + } + .navbar-expand-xxl .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-xxl .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-xxl .navbar-toggler { + display: none; + } +} + +.navbar-expand { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; +} + +.navbar-expand .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; +} + +.navbar-expand .navbar-nav .dropdown-menu { + position: absolute; +} + +.navbar-expand .navbar-nav .nav-link { + padding-left: 0.5rem; + padding-right: 0.5rem; +} + +.navbar-expand .navbar-nav-scroll { + overflow: visible; +} + +.navbar-expand .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; +} + +.navbar-expand .navbar-toggler { + display: none; +} + +.navbar-light .navbar-brand { + color: #1F1534; +} + +.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { + color: #1F1534; +} + +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, 0.95); +} + +.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { + color: rgba(0, 0, 0, 0.95); +} + +.navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.25); +} + +.navbar-light .navbar-nav .show > .nav-link, +.navbar-light .navbar-nav .nav-link.active { + color: #1F1534; +} + +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.95); + border-color: rgba(0, 0, 0, 0.1); +} + +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.95%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M0 6h30M0 14h30M0 22h30'/%3E%3C/svg%3E"); +} + +.navbar-light .navbar-text { + color: rgba(0, 0, 0, 0.95); +} + +.navbar-light .navbar-text a, +.navbar-light .navbar-text a:hover, +.navbar-light .navbar-text a:focus { + color: #1F1534; +} + +.navbar-dark .navbar-brand { + color: #fff; +} + +.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { + color: #fff; +} + +.navbar-dark .navbar-nav .nav-link { + color: rgba(255, 255, 255, 0.7); +} + +.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { + color: rgba(255, 255, 255, 0.9); +} + +.navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); +} + +.navbar-dark .navbar-nav .show > .nav-link, +.navbar-dark .navbar-nav .nav-link.active { + color: #fff; +} + +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.7); + border-color: rgba(255, 255, 255, 0.1); +} + +.navbar-dark .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} + +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, 0.7); +} + +.navbar-dark .navbar-text a, +.navbar-dark .navbar-text a:hover, +.navbar-dark .navbar-text a:focus { + color: #fff; +} + +.card { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 0 solid rgba(0, 0, 0, 0.125); + border-radius: 0.25rem; +} + +.card > hr { + margin-left: 0; + margin-right: 0; +} + +.card > .list-group { + border-top: inherit; + border-bottom: inherit; +} + +.card > .list-group:first-child { + border-top-width: 0; + border-top-right-radius: 0.25rem; + border-top-left-radius: 0.25rem; +} + +.card > .list-group:last-child { + border-bottom-width: 0; + border-bottom-left-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; +} + +.card > .card-header + .list-group, +.card > .list-group + .card-footer { + border-top: 0; +} + +.card-body { + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 1rem 1rem; +} + +.card-title { + margin-bottom: 0.5rem; +} + +.card-subtitle { + margin-top: -0.25rem; + margin-bottom: 0; +} + +.card-text:last-child { + margin-bottom: 0; +} + +.card-link:hover { + text-decoration: none; +} + +.card-link + .card-link { + margin-left: 1rem ; +} + +.card-header { + padding: 0.5rem 1rem; + margin-bottom: 0; + background-color: rgba(0, 0, 0, 0.03); + border-bottom: 0 solid rgba(0, 0, 0, 0.125); +} + +.card-header:first-child { + border-radius: 0.25rem 0.25rem 0 0; +} + +.card-footer { + padding: 0.5rem 1rem; + background-color: rgba(0, 0, 0, 0.03); + border-top: 0 solid rgba(0, 0, 0, 0.125); +} + +.card-footer:last-child { + border-radius: 0 0 0.25rem 0.25rem; +} + +.card-header-tabs { + margin-left: -0.5rem; + margin-bottom: -0.5rem; + margin-right: -0.5rem; + border-bottom: 0; +} + +.card-header-pills { + margin-left: -0.5rem; + margin-right: -0.5rem; +} + +.card-img-overlay { + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; + padding: 1rem; + border-radius: 0.25rem; +} + +.card-img, +.card-img-top, +.card-img-bottom { + width: 100%; +} + +.card-img, +.card-img-top { + border-top-right-radius: 0.25rem; + border-top-left-radius: 0.25rem; +} + +.card-img, +.card-img-bottom { + border-bottom-left-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; +} + +.card-group > .card { + margin-bottom: 1rem; +} + +@media (min-width: 576px) { + .card-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + } + .card-group > .card { + -webkit-box-flex: 1; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + margin-bottom: 0; + } + .card-group > .card + .card { + margin-right: 0; + border-right: 0; + } + .card-group > .card:not(:last-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + .card-group > .card:not(:last-child) .card-img-top, + .card-group > .card:not(:last-child) .card-header { + border-top-left-radius: 0; + } + .card-group > .card:not(:last-child) .card-img-bottom, + .card-group > .card:not(:last-child) .card-footer { + border-bottom-left-radius: 0; + } + .card-group > .card:not(:first-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + .card-group > .card:not(:first-child) .card-img-top, + .card-group > .card:not(:first-child) .card-header { + border-top-right-radius: 0; + } + .card-group > .card:not(:first-child) .card-img-bottom, + .card-group > .card:not(:first-child) .card-footer { + border-bottom-right-radius: 0; + } +} + +.breadcrumb { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding: 0 0; + margin-bottom: 1rem; + list-style: none; +} + +.breadcrumb-item + .breadcrumb-item { + padding-right: 0.5rem; +} + +.breadcrumb-item + .breadcrumb-item::before { + float: right; + padding-left: 0.5rem; + color: #C3C1C8; + content: var(--bs-breadcrumb-divider, "/") ; +} + +.breadcrumb-item.active { + color: #C3C1C8; +} + +.pagination { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + padding-right: 0; + list-style: none; +} + +.page-link { + position: relative; + display: block; + color: #1F3A63; + background-color: #fff; + border: 1px solid #E1E0E4; + -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .page-link { + -webkit-transition: none; + -o-transition: none; + transition: none; + } +} + +.page-link:hover { + z-index: 2; + color: #192e4f; + text-decoration: none; + background-color: #EBEBED; + border-color: #E1E0E4; +} + +.page-link:focus { + z-index: 3; + color: #192e4f; + background-color: #EBEBED; + outline: 0; + -webkit-box-shadow: 0 0 0 0.25rem rgba(31, 58, 99, 0.25); + box-shadow: 0 0 0 0.25rem rgba(31, 58, 99, 0.25); +} + +.page-item:not(:first-child) .page-link { + margin-right: -1px; +} + +.page-item.active .page-link { + z-index: 3; + color: #fff; + background-color: #1F3A63; + border-color: #1F3A63; +} + +.page-item.disabled .page-link { + color: #C3C1C8; + pointer-events: none; + background-color: #fff; + border-color: #E1E0E4; +} + +.page-link { + padding: 0.375rem 0.75rem; +} + +.page-item:first-child .page-link { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; +} + +.page-item:last-child .page-link { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.pagination-lg .page-link { + padding: 0.75rem 1.5rem; + font-size: 1.2rem; +} + +.pagination-lg .page-item:first-child .page-link { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; +} + +.pagination-lg .page-item:last-child .page-link { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; +} + +.pagination-sm .page-link { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; +} + +.pagination-sm .page-item:first-child .page-link { + border-top-right-radius: 0.3rem; + border-bottom-right-radius: 0.3rem; +} + +.pagination-sm .page-item:last-child .page-link { + border-top-left-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; +} + +.badge { + display: inline-block; + padding: 0.35em 0.65em; + font-size: 0.75em; + font-weight: 700; + line-height: 1; + color: #fff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.25rem; +} + +.badge:empty { + display: none; +} + +.btn .badge { + position: relative; + top: -1px; +} + +.alert { + position: relative; + padding: 1rem 1rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: 0.25rem; +} + +.alert-heading { + color: inherit; +} + +.alert-link { + font-weight: 700; +} + +.alert-dismissible { + padding-left: 3rem; +} + +.alert-dismissible .btn-close { + position: absolute; + top: 0; + left: 0; + z-index: 2; + padding: 1.25rem 1rem; +} + +.alert-primary { + color: #13233b; + background-color: #d2d8e0; + border-color: #bcc4d0; +} + +.alert-primary .alert-link { + color: #0f1c2f; +} + +.alert-secondary { + color: #2f343d; + background-color: #dcdde0; + border-color: #caccd1; +} + +.alert-secondary .alert-link { + color: #262a31; +} + +.alert-success { + color: #3d7040; + background-color: #e0f1e1; + border-color: #d1ebd2; +} + +.alert-success .alert-link { + color: #315a33; +} + +.alert-info { + color: #256e92; + background-color: #d8f1fd; + border-color: #c5eafc; +} + +.alert-info .alert-link { + color: #1e5875; +} + +.alert-warning { + color: #996016; + background-color: #ffecd3; + border-color: #ffe3bd; +} + +.alert-warning .alert-link { + color: #7a4d12; +} + +.alert-danger { + color: #93343e; + background-color: #fddde1; + border-color: #fccdd1; +} + +.alert-danger .alert-link { + color: #762a32; +} + +.alert-light { + color: #959698; + background-color: #fefeff; + border-color: #fdfefe; +} + +.alert-light .alert-link { + color: #77787a; +} + +.alert-dark { + color: #130d1f; + background-color: #d2d0d6; + border-color: #bcb9c2; +} + +.alert-dark .alert-link { + color: #0f0a19; +} + +@-webkit-keyframes progress-bar-stripes { + 0% { + background-position-x: 1rem; + } +} + +@keyframes progress-bar-stripes { + 0% { + background-position-x: 1rem; + } +} + +.progress { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + height: 1rem; + overflow: hidden; + font-size: 0.75rem; + background-color: #EBEBED; + border-radius: 0.25rem; +} + +.progress-bar { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + overflow: hidden; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #1F3A63; + -webkit-transition: width 0.6s ease; + -o-transition: width 0.6s ease; + transition: width 0.6s ease; +} + +@media (prefers-reduced-motion: reduce) { + .progress-bar { + -webkit-transition: none; + -o-transition: none; + transition: none; + } +} + +.progress-bar-striped { + background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 1rem 1rem; +} + +.progress-bar-animated { + -webkit-animation: 1s linear infinite progress-bar-stripes; + animation: 1s linear infinite progress-bar-stripes; +} + +@media (prefers-reduced-motion: reduce) { + .progress-bar-animated { + -webkit-animation: none; + animation: none; + } +} + +.list-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + padding-right: 0; + margin-bottom: 0; + border-radius: 0.25rem; +} + +.list-group-item-action { + width: 100%; + color: #7D7987; + text-align: inherit; +} + +.list-group-item-action:hover, .list-group-item-action:focus { + z-index: 1; + color: #7D7987; + text-decoration: none; + background-color: #F5F7FA; +} + +.list-group-item-action:active { + color: #7D7987; + background-color: #EBEBED; +} + +.list-group-item { + position: relative; + display: block; + padding: 0.5rem 1rem; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); +} + +.list-group-item:first-child { + border-top-right-radius: inherit; + border-top-left-radius: inherit; +} + +.list-group-item:last-child { + border-bottom-left-radius: inherit; + border-bottom-right-radius: inherit; +} + +.list-group-item.disabled, .list-group-item:disabled { + color: #C3C1C8; + pointer-events: none; + background-color: #fff; +} + +.list-group-item.active { + z-index: 2; + color: #fff; + background-color: #1F3A63; + border-color: #1F3A63; +} + +.list-group-item + .list-group-item { + border-top-width: 0; +} + +.list-group-item + .list-group-item.active { + margin-top: -1px; + border-top-width: 1px; +} + +.list-group-horizontal { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; +} + +.list-group-horizontal > .list-group-item:first-child { + border-bottom-right-radius: 0.25rem; + border-top-left-radius: 0; +} + +.list-group-horizontal > .list-group-item:last-child { + border-top-left-radius: 0.25rem; + border-bottom-right-radius: 0; +} + +.list-group-horizontal > .list-group-item.active { + margin-top: 0; +} + +.list-group-horizontal > .list-group-item + .list-group-item { + border-top-width: 1px; + border-right-width: 0; +} + +.list-group-horizontal > .list-group-item + .list-group-item.active { + margin-right: -1px; + border-right-width: 1px; +} + +@media (min-width: 576px) { + .list-group-horizontal-sm { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + } + .list-group-horizontal-sm > .list-group-item:first-child { + border-bottom-right-radius: 0.25rem; + border-top-left-radius: 0; + } + .list-group-horizontal-sm > .list-group-item:last-child { + border-top-left-radius: 0.25rem; + border-bottom-right-radius: 0; + } + .list-group-horizontal-sm > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-sm > .list-group-item + .list-group-item { + border-top-width: 1px; + border-right-width: 0; + } + .list-group-horizontal-sm > .list-group-item + .list-group-item.active { + margin-right: -1px; + border-right-width: 1px; + } +} + +@media (min-width: 768px) { + .list-group-horizontal-md { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + } + .list-group-horizontal-md > .list-group-item:first-child { + border-bottom-right-radius: 0.25rem; + border-top-left-radius: 0; + } + .list-group-horizontal-md > .list-group-item:last-child { + border-top-left-radius: 0.25rem; + border-bottom-right-radius: 0; + } + .list-group-horizontal-md > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-md > .list-group-item + .list-group-item { + border-top-width: 1px; + border-right-width: 0; + } + .list-group-horizontal-md > .list-group-item + .list-group-item.active { + margin-right: -1px; + border-right-width: 1px; + } +} + +@media (min-width: 992px) { + .list-group-horizontal-lg { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + } + .list-group-horizontal-lg > .list-group-item:first-child { + border-bottom-right-radius: 0.25rem; + border-top-left-radius: 0; + } + .list-group-horizontal-lg > .list-group-item:last-child { + border-top-left-radius: 0.25rem; + border-bottom-right-radius: 0; + } + .list-group-horizontal-lg > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-lg > .list-group-item + .list-group-item { + border-top-width: 1px; + border-right-width: 0; + } + .list-group-horizontal-lg > .list-group-item + .list-group-item.active { + margin-right: -1px; + border-right-width: 1px; + } +} + +@media (min-width: 1200px) { + .list-group-horizontal-xl { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + } + .list-group-horizontal-xl > .list-group-item:first-child { + border-bottom-right-radius: 0.25rem; + border-top-left-radius: 0; + } + .list-group-horizontal-xl > .list-group-item:last-child { + border-top-left-radius: 0.25rem; + border-bottom-right-radius: 0; + } + .list-group-horizontal-xl > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-xl > .list-group-item + .list-group-item { + border-top-width: 1px; + border-right-width: 0; + } + .list-group-horizontal-xl > .list-group-item + .list-group-item.active { + margin-right: -1px; + border-right-width: 1px; + } +} + +@media (min-width: 1540px) { + .list-group-horizontal-xxl { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + } + .list-group-horizontal-xxl > .list-group-item:first-child { + border-bottom-right-radius: 0.25rem; + border-top-left-radius: 0; + } + .list-group-horizontal-xxl > .list-group-item:last-child { + border-top-left-radius: 0.25rem; + border-bottom-right-radius: 0; + } + .list-group-horizontal-xxl > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-xxl > .list-group-item + .list-group-item { + border-top-width: 1px; + border-right-width: 0; + } + .list-group-horizontal-xxl > .list-group-item + .list-group-item.active { + margin-right: -1px; + border-right-width: 1px; + } +} + +.list-group-flush { + border-radius: 0; +} + +.list-group-flush > .list-group-item { + border-width: 0 0 1px; +} + +.list-group-flush > .list-group-item:last-child { + border-bottom-width: 0; +} + +.list-group-item-primary { + color: #13233b; + background-color: #d2d8e0; +} + +.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { + color: #13233b; + background-color: #bdc2ca; +} + +.list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #13233b; + border-color: #13233b; +} + +.list-group-item-secondary { + color: #2f343d; + background-color: #dcdde0; +} + +.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { + color: #2f343d; + background-color: #c6c7ca; +} + +.list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #2f343d; + border-color: #2f343d; +} + +.list-group-item-success { + color: #3d7040; + background-color: #e0f1e1; +} + +.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { + color: #3d7040; + background-color: #cad9cb; +} + +.list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #3d7040; + border-color: #3d7040; +} + +.list-group-item-info { + color: #256e92; + background-color: #d8f1fd; +} + +.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { + color: #256e92; + background-color: #c2d9e4; +} + +.list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #256e92; + border-color: #256e92; +} + +.list-group-item-warning { + color: #996016; + background-color: #ffecd3; +} + +.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { + color: #996016; + background-color: #e6d4be; +} + +.list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #996016; + border-color: #996016; +} + +.list-group-item-danger { + color: #93343e; + background-color: #fddde1; +} + +.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { + color: #93343e; + background-color: #e4c7cb; +} + +.list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #93343e; + border-color: #93343e; +} + +.list-group-item-light { + color: #959698; + background-color: #fefeff; +} + +.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { + color: #959698; + background-color: #e5e5e6; +} + +.list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #959698; + border-color: #959698; +} + +.list-group-item-dark { + color: #130d1f; + background-color: #d2d0d6; +} + +.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { + color: #130d1f; + background-color: #bdbbc1; +} + +.list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #130d1f; + border-color: #130d1f; +} + +.btn-close { + -webkit-box-sizing: content-box; + box-sizing: content-box; + width: 1em; + height: 1em; + padding: 0.25em 0.25em; + color: #000; + background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat; + border: 0; + border-radius: 0.25rem; + opacity: 0.5; +} + +.btn-close:hover { + color: #000; + text-decoration: none; + opacity: 0.75; +} + +.btn-close:focus { + outline: 0; + -webkit-box-shadow: 0 0 0 0.25rem rgba(31, 58, 99, 0.25); + box-shadow: 0 0 0 0.25rem rgba(31, 58, 99, 0.25); + opacity: 1; +} + +.btn-close:disabled, .btn-close.disabled { + pointer-events: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + opacity: 0.25; +} + +.btn-close-white { + -webkit-filter: invert(1) grayscale(100%) brightness(200%); + filter: invert(1) grayscale(100%) brightness(200%); +} + +.toast { + width: 350px; + max-width: 100%; + font-size: 0.875rem; + pointer-events: auto; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.1); + -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); + border-radius: 0.25rem; +} + +.toast:not(.showing):not(.show) { + opacity: 0; +} + +.toast.hide { + display: none; +} + +.toast-container { + width: -webkit-max-content; + width: -moz-max-content; + width: max-content; + max-width: 100%; + pointer-events: none; +} + +.toast-container > :not(:last-child) { + margin-bottom: 1rem; +} + +.toast-header { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 0.5rem 0.75rem; + color: #C3C1C8; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border-bottom: 1px solid rgba(0, 0, 0, 0.05); + border-top-right-radius: calc(0.25rem - 1px); + border-top-left-radius: calc(0.25rem - 1px); +} + +.toast-header .btn-close { + margin-left: -0.375rem; + margin-right: 0.75rem; +} + +.toast-body { + padding: 0.75rem; + word-wrap: break-word; +} + +.modal-open { + overflow: hidden; +} + +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto; +} + +.modal { + position: fixed; + top: 0; + right: 0; + z-index: 1050; + display: none; + width: 100%; + height: 100%; + overflow: hidden; + outline: 0; +} + +.modal-dialog { + position: relative; + width: auto; + margin: 0.5rem; + pointer-events: none; +} + +.modal.fade .modal-dialog { + -webkit-transition: -webkit-transform 0.3s ease-out; + transition: -webkit-transform 0.3s ease-out; + -o-transition: transform 0.3s ease-out; + transition: transform 0.3s ease-out; + transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; + -webkit-transform: translate(0, -50px); + -ms-transform: translate(0, -50px); + transform: translate(0, -50px); +} + +@media (prefers-reduced-motion: reduce) { + .modal.fade .modal-dialog { + -webkit-transition: none; + -o-transition: none; + transition: none; + } +} + +.modal.show .modal-dialog { + -webkit-transform: none; + -ms-transform: none; + transform: none; +} + +.modal.modal-static .modal-dialog { + -webkit-transform: scale(1.02); + -ms-transform: scale(1.02); + transform: scale(1.02); +} + +.modal-dialog-scrollable { + height: calc(100% - 1rem); +} + +.modal-dialog-scrollable .modal-content { + max-height: 100%; + overflow: hidden; +} + +.modal-dialog-scrollable .modal-body { + overflow-y: auto; +} + +.modal-dialog-centered { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + min-height: calc(100% - 1rem); +} + +.modal-content { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.5rem; + outline: 0; +} + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: #000; +} + +.modal-backdrop.fade { + opacity: 0; +} + +.modal-backdrop.show { + opacity: 0.5; +} + +.modal-header { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-negative: 0; + flex-shrink: 0; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 1rem 1rem; + border-bottom: 1px solid #E1E0E4; + border-top-right-radius: calc(0.5rem - 1px); + border-top-left-radius: calc(0.5rem - 1px); +} + +.modal-header .btn-close { + padding: 0.5rem 0.5rem; + margin: -0.5rem auto -0.5rem -0.5rem; +} + +.modal-title { + margin-bottom: 0; + line-height: 1.5; +} + +.modal-body { + position: relative; + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 1rem; +} + +.modal-footer { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-negative: 0; + flex-shrink: 0; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + padding: 0.75rem; + border-top: 1px solid #E1E0E4; + border-bottom-left-radius: calc(0.5rem - 1px); + border-bottom-right-radius: calc(0.5rem - 1px); +} + +.modal-footer > * { + margin: 0.25rem; +} + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; +} + +@media (min-width: 576px) { + .modal-dialog { + max-width: 500px; + margin: 1.75rem auto; + } + .modal-dialog-scrollable { + height: calc(100% - 3.5rem); + } + .modal-dialog-centered { + min-height: calc(100% - 3.5rem); + } + .modal-sm { + max-width: 300px; + } +} + +@media (min-width: 992px) { + .modal-lg, + .modal-xl { + max-width: 800px; + } +} + +@media (min-width: 1200px) { + .modal-xl { + max-width: 1140px; + } +} + +.modal-fullscreen { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; +} + +.modal-fullscreen .modal-content { + height: 100%; + border: 0; + border-radius: 0; +} + +.modal-fullscreen .modal-header { + border-radius: 0; +} + +.modal-fullscreen .modal-body { + overflow-y: auto; +} + +.modal-fullscreen .modal-footer { + border-radius: 0; +} + +@media (max-width: 575.98px) { + .modal-fullscreen-sm-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-sm-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-sm-down .modal-header { + border-radius: 0; + } + .modal-fullscreen-sm-down .modal-body { + overflow-y: auto; + } + .modal-fullscreen-sm-down .modal-footer { + border-radius: 0; + } +} + +@media (max-width: 767.98px) { + .modal-fullscreen-md-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-md-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-md-down .modal-header { + border-radius: 0; + } + .modal-fullscreen-md-down .modal-body { + overflow-y: auto; + } + .modal-fullscreen-md-down .modal-footer { + border-radius: 0; + } +} + +@media (max-width: 991.98px) { + .modal-fullscreen-lg-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-lg-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-lg-down .modal-header { + border-radius: 0; + } + .modal-fullscreen-lg-down .modal-body { + overflow-y: auto; + } + .modal-fullscreen-lg-down .modal-footer { + border-radius: 0; + } +} + +@media (max-width: 1199.98px) { + .modal-fullscreen-xl-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-xl-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-xl-down .modal-header { + border-radius: 0; + } + .modal-fullscreen-xl-down .modal-body { + overflow-y: auto; + } + .modal-fullscreen-xl-down .modal-footer { + border-radius: 0; + } +} + +@media (max-width: 1539.98px) { + .modal-fullscreen-xxl-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-xxl-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-xxl-down .modal-header { + border-radius: 0; + } + .modal-fullscreen-xxl-down .modal-body { + overflow-y: auto; + } + .modal-fullscreen-xxl-down .modal-footer { + border-radius: 0; + } +} + +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: "Chivo", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: right; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + opacity: 0; +} + +.tooltip.show { + opacity: 0.9; +} + +.tooltip .tooltip-arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; +} + +.tooltip .tooltip-arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; +} + +.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^="top"] { + padding: 0.4rem 0; +} + +.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow { + bottom: 0; +} + +.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before { + top: -1px; + border-width: 0.4rem 0.4rem 0; + border-top-color: #000; +} + +.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^="right"] { + padding: 0 0.4rem; +} + +.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; +} + +.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before { + left: -1px; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #000; +} + +.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^="bottom"] { + padding: 0.4rem 0; +} + +.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow { + top: 0; +} + +.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before { + bottom: -1px; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #000; +} + +.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^="left"] { + padding: 0 0.4rem; +} + +.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; +} + +.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before { + right: -1px; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000; +} + +.tooltip-inner { + max-width: 200px; + padding: 0.25rem 0.5rem; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 0.25rem; +} + +.popover { + position: absolute; + top: 0; + left: 0 ; + z-index: 1060; + display: block; + max-width: 276px; + font-family: "Chivo", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: right; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.5rem; +} + +.popover .popover-arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; +} + +.popover .popover-arrow::before, .popover .popover-arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; +} + +.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow { + bottom: calc(-0.5rem - 1px); +} + +.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before { + bottom: 0; + border-width: 0.5rem 0.5rem 0; + border-top-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after { + bottom: 1px; + border-width: 0.5rem 0.5rem 0; + border-top-color: #fff; +} + +.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow { + right: calc(-0.5rem - 1px); + width: 0.5rem; + height: 1rem; +} + +.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before { + right: 0; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after { + right: 1px; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: #fff; +} + +.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow { + top: calc(-0.5rem - 1px); +} + +.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before { + top: 0; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after { + top: 1px; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: #fff; +} + +.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before { + position: absolute; + top: 0; + right: 50%; + display: block; + width: 1rem; + margin-right: -0.5rem; + content: ""; + border-bottom: 1px solid #f0f0f0; +} + +.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow { + left: calc(-0.5rem - 1px); + width: 0.5rem; + height: 1rem; +} + +.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before { + left: 0; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after { + left: 1px; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: #fff; +} + +.popover-header { + padding: 0.5rem 1rem; + margin-bottom: 0; + font-size: 1rem; + color: #112D58; + background-color: #f0f0f0; + border-bottom: 1px solid #d8d8d8; + border-top-right-radius: calc(0.5rem - 1px); + border-top-left-radius: calc(0.5rem - 1px); +} + +.popover-header:empty { + display: none; +} + +.popover-body { + padding: 1rem 1rem; + color: #7D7987; +} + +.carousel { + position: relative; +} + +.carousel.pointer-event { + -ms-touch-action: pan-y; + touch-action: pan-y; +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} + +.carousel-inner::after { + display: block; + clear: both; + content: ""; +} + +.carousel-item { + position: relative; + display: none; + float: right; + width: 100%; + margin-left: -100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-transition: -webkit-transform 0.6s ease-in-out; + transition: -webkit-transform 0.6s ease-in-out; + -o-transition: transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .carousel-item { + -webkit-transition: none; + -o-transition: none; + transition: none; + } +} + +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; +} +.carousel-item-next:not(.carousel-item-start), +.active.carousel-item-end { + -webkit-transform: translateX(100%); + -ms-transform: translateX(100%); + transform: translateX(100%); +} + +.carousel-item-prev:not(.carousel-item-end), +.active.carousel-item-start { + -webkit-transform: translateX(-100%); + -ms-transform: translateX(-100%); + transform: translateX(-100%); +} +.carousel-fade .carousel-item { + opacity: 0; + -webkit-transition-property: opacity; + -o-transition-property: opacity; + transition-property: opacity; + -webkit-transform: none; + -ms-transform: none; + transform: none; +} + +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-start, +.carousel-fade .carousel-item-prev.carousel-item-end { + z-index: 1; + opacity: 1; +} + +.carousel-fade .active.carousel-item-start, +.carousel-fade .active.carousel-item-end { + z-index: 0; + opacity: 0; + -webkit-transition: opacity 0s 0.6s; + -o-transition: opacity 0s 0.6s; + transition: opacity 0s 0.6s; +} + +@media (prefers-reduced-motion: reduce) { + .carousel-fade .active.carousel-item-start, + .carousel-fade .active.carousel-item-end { + -webkit-transition: none; + -o-transition: none; + transition: none; + } +} + +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + width: 15%; + padding: 0; + color: #66BB6A; + text-align: center; + background: none; + border: 0; + opacity: 0.9; + -webkit-transition: opacity 0.15s ease; + -o-transition: opacity 0.15s ease; + transition: opacity 0.15s ease; +} + +@media (prefers-reduced-motion: reduce) { + .carousel-control-prev, + .carousel-control-next { + -webkit-transition: none; + -o-transition: none; + transition: none; + } +} + +.carousel-control-prev:hover, .carousel-control-prev:focus, +.carousel-control-next:hover, +.carousel-control-next:focus { + color: #66BB6A; + text-decoration: none; + outline: 0; + opacity: 0.9; +} + +.carousel-control-prev { + right: 0; +} + +.carousel-control-next { + left: 0; +} + +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 2rem; + height: 2rem; + background-repeat: no-repeat; + background-position: 50%; + background-size: 100% 100%; +} +.carousel-control-next-icon { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2366BB6A' class='bi bi-arrow-left-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.5 7.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5z'/%3E%3C/svg%3E"); +} + +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2366BB6A' class='bi bi-arrow-right-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z'/%3E%3C/svg%3E"); +} + +.carousel-indicators { + position: absolute; + left: 0; + bottom: 0; + right: 0; + z-index: 2; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + padding: 0; + margin-left: 15%; + margin-bottom: 1rem; + margin-right: 15%; + list-style: none; +} + +.carousel-indicators [data-bs-target] { + -webkit-box-sizing: content-box; + box-sizing: content-box; + -webkit-box-flex: 0; + -ms-flex: 0 1 auto; + flex: 0 1 auto; + width: 9px; + height: 9px; + padding: 0; + margin-left: 3px; + margin-right: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #1F3A63; + background-clip: padding-box; + border: 0; + border-top: 0 solid transparent; + border-bottom: 0 solid transparent; + opacity: 0.5; + -webkit-transition: opacity 0.6s ease; + -o-transition: opacity 0.6s ease; + transition: opacity 0.6s ease; +} + +@media (prefers-reduced-motion: reduce) { + .carousel-indicators [data-bs-target] { + -webkit-transition: none; + -o-transition: none; + transition: none; + } +} + +.carousel-indicators .active { + opacity: 1; +} + +.carousel-caption { + position: absolute; + left: 15%; + bottom: 1.25rem; + right: 15%; + padding-top: 1.25rem; + padding-bottom: 1.25rem; + color: #fff; + text-align: center; +} + +.carousel-dark .carousel-control-next-icon, +.carousel-dark .carousel-control-prev-icon { + -webkit-filter: invert(1) grayscale(100); + filter: invert(1) grayscale(100); +} + +.carousel-dark .carousel-indicators [data-bs-target] { + background-color: #000; +} + +.carousel-dark .carousel-caption { + color: #000; +} + +@-webkit-keyframes spinner-border { + to { + -webkit-transform: rotate(360deg) ; + transform: rotate(360deg) ; + } +} + +@keyframes spinner-border { + to { + -webkit-transform: rotate(360deg) ; + transform: rotate(360deg) ; + } +} + +.spinner-border { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + border: 0.25em solid currentColor; + border-left-color: transparent; + border-radius: 50%; + -webkit-animation: 0.75s linear infinite spinner-border; + animation: 0.75s linear infinite spinner-border; +} + +.spinner-border-sm { + width: 1rem; + height: 1rem; + border-width: 0.2em; +} + +@-webkit-keyframes spinner-grow { + 0% { + -webkit-transform: scale(0); + transform: scale(0); + } + 50% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +@keyframes spinner-grow { + 0% { + -webkit-transform: scale(0); + transform: scale(0); + } + 50% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.spinner-grow { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + background-color: currentColor; + border-radius: 50%; + opacity: 0; + -webkit-animation: 0.75s linear infinite spinner-grow; + animation: 0.75s linear infinite spinner-grow; +} + +.spinner-grow-sm { + width: 1rem; + height: 1rem; +} + +@media (prefers-reduced-motion: reduce) { + .spinner-border, + .spinner-grow { + -webkit-animation-duration: 1.5s; + animation-duration: 1.5s; + } +} + +.accordion-button { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + width: 100%; + padding: 1.5rem 2.6rem; + font-size: 1rem; + color: #7D7987; + text-align: right; + background-color: #F5F7FA; + border: 1px solid rgba(255, 255, 255, 0.125); + border-radius: 0; + overflow-anchor: none; + -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out; + -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .accordion-button { + -webkit-transition: none; + -o-transition: none; + transition: none; + } +} + +.accordion-button.collapsed { + border-bottom-width: 0; +} + +.accordion-button:not(.collapsed) { + color: #1F1534; + background-color: #F5F7FA; +} + +.accordion-button:not(.collapsed)::after { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E"); + -webkit-transform: rotate(-180deg); + -ms-transform: rotate(-180deg); + transform: rotate(-180deg); +} + +.accordion-button::after { + -ms-flex-negative: 0; + flex-shrink: 0; + width: 1.8rem; + height: 1.8rem; + margin-right: auto; + content: ""; + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E"); + background-repeat: no-repeat; + background-size: 1.8rem; + -webkit-transition: -webkit-transform 0.2s ease-in-out; + transition: -webkit-transform 0.2s ease-in-out; + -o-transition: transform 0.2s ease-in-out; + transition: transform 0.2s ease-in-out; + transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .accordion-button::after { + -webkit-transition: none; + -o-transition: none; + transition: none; + } +} + +.accordion-button:hover { + z-index: 2; +} + +.accordion-button:focus { + z-index: 3; + border-color: #fff; + outline: 0; + -webkit-box-shadow: #F9FAFD; + box-shadow: #F9FAFD; +} + +.accordion-header { + margin-bottom: 0; +} + +.accordion-item:first-of-type .accordion-button { + border-top-right-radius: 0; + border-top-left-radius: 0; +} + +.accordion-item:last-of-type .accordion-button.collapsed { + border-bottom-width: 1px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +.accordion-item:last-of-type .accordion-collapse { + border-bottom-width: 1px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +.accordion-collapse { + border: solid rgba(255, 255, 255, 0.125); + border-width: 0 1px; +} + +.accordion-body { + padding: 1.5rem 2.6rem; +} + +.accordion-flush .accordion-button { + border-left: 0; + border-right: 0; + border-radius: 0; +} + +.accordion-flush .accordion-collapse { + border-width: 0; +} + +.accordion-flush .accordion-item:first-of-type .accordion-button { + border-top-width: 0; + border-top-right-radius: 0; + border-top-left-radius: 0; +} + +.accordion-flush .accordion-item:last-of-type .accordion-button.collapsed { + border-bottom-width: 0; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +.clearfix::after { + display: block; + clear: both; + content: ""; +} + +.link-primary { + color: #1F3A63; +} + +.link-primary:hover, .link-primary:focus { + color: #192e4f; +} + +.link-secondary { + color: #4F5665; +} + +.link-secondary:hover, .link-secondary:focus { + color: #3f4551; +} + +.link-success { + color: #66BB6A; +} + +.link-success:hover, .link-success:focus { + color: #529655; +} + +.link-info { + color: #3EB8F4; +} + +.link-info:hover, .link-info:focus { + color: #3293c3; +} + +.link-warning { + color: #FFA024; +} + +.link-warning:hover, .link-warning:focus { + color: #cc801d; +} + +.link-danger { + color: #F55767; +} + +.link-danger:hover, .link-danger:focus { + color: #c44652; +} + +.link-light { + color: #F9FAFD; +} + +.link-light:hover, .link-light:focus { + color: #fafbfd; +} + +.link-dark { + color: #1F1534; +} + +.link-dark:hover, .link-dark:focus { + color: #19112a; +} + +.ratio { + position: relative; + width: 100%; +} + +.ratio::before { + display: block; + padding-top: var(--bs-aspect-ratio); + content: ""; +} + +.ratio > * { + position: absolute; + top: 0; + right: 0; + width: 100%; + height: 100%; +} + +.ratio-1x1 { + --bs-aspect-ratio: 100%; +} + +.ratio-4x3 { + --bs-aspect-ratio: calc(3 / 4 * 100%); +} + +.ratio-16x9 { + --bs-aspect-ratio: calc(9 / 16 * 100%); +} + +.ratio-21x9 { + --bs-aspect-ratio: calc(9 / 21 * 100%); +} + +.fixed-top { + position: fixed; + top: 0; + left: 0; + right: 0; + z-index: 1030; +} + +.fixed-bottom { + position: fixed; + left: 0; + bottom: 0; + right: 0; + z-index: 1030; +} + +.sticky-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; +} + +@media (min-width: 576px) { + .sticky-sm-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} + +@media (min-width: 768px) { + .sticky-md-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} + +@media (min-width: 992px) { + .sticky-lg-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} + +@media (min-width: 1200px) { + .sticky-xl-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} + +@media (min-width: 1540px) { + .sticky-xxl-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} + +.visually-hidden, +.visually-hidden-focusable:not(:focus):not(:focus-within) { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border: 0 !important; +} + +.stretched-link::after { + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; + z-index: 1; + content: ""; +} + +.text-truncate { + overflow: hidden; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + white-space: nowrap; +} + +.align-baseline { + vertical-align: baseline !important; +} + +.align-top { + vertical-align: top !important; +} + +.align-middle { + vertical-align: middle !important; +} + +.align-bottom { + vertical-align: bottom !important; +} + +.align-text-bottom { + vertical-align: text-bottom !important; +} + +.align-text-top { + vertical-align: text-top !important; +} + +.float-start { + float: right !important; +} + +.float-end { + float: left !important; +} + +.float-none { + float: none !important; +} + +.overflow-auto { + overflow: auto !important; +} + +.overflow-hidden { + overflow: hidden !important; +} + +.overflow-visible { + overflow: visible !important; +} + +.overflow-scroll { + overflow: scroll !important; +} + +.d-inline { + display: inline !important; +} + +.d-inline-block { + display: inline-block !important; +} + +.d-block { + display: block !important; +} + +.d-grid { + display: grid !important; +} + +.d-table { + display: table !important; +} + +.d-table-row { + display: table-row !important; +} + +.d-table-cell { + display: table-cell !important; +} + +.d-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; +} + +.d-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; +} + +.d-none { + display: none !important; +} + +.shadow { + -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; +} + +.shadow-sm { + -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; +} + +.shadow-lg { + -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; + box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; +} + +.shadow-none { + -webkit-box-shadow: none !important; + box-shadow: none !important; +} + +.position-static { + position: static !important; +} + +.position-absolute { + position: absolute !important; +} + +.position-relative { + position: relative !important; +} + +.position-fixed { + position: fixed !important; +} + +.position-sticky { + position: -webkit-sticky !important; + position: sticky !important; +} + +.top-0 { + top: 0 !important; +} + +.top-50 { + top: 50% !important; +} + +.top-100 { + top: 100% !important; +} + +.bottom-0 { + bottom: 0 !important; +} + +.bottom-50 { + bottom: 50% !important; +} + +.bottom-100 { + bottom: 100% !important; +} + +.start-0 { + right: 0 !important; +} + +.start-50 { + right: 50% !important; +} + +.start-100 { + right: 100% !important; +} + +.end-0 { + left: 0 !important; +} + +.end-50 { + left: 50% !important; +} + +.end-100 { + left: 100% !important; +} + +.translate-middle { + -webkit-transform: translateX(50%) translateY(-50%) !important; + -ms-transform: translateX(50%) translateY(-50%) !important; + transform: translateX(50%) translateY(-50%) !important; +} + +.translate-middle-x { + -webkit-transform: translateX(50%) !important; + -ms-transform: translateX(50%) !important; + transform: translateX(50%) !important; +} + +.translate-middle-y { + -webkit-transform: translateY(-50%) !important; + -ms-transform: translateY(-50%) !important; + transform: translateY(-50%) !important; +} + +.border { + border: 1px solid #E1E0E4 !important; +} + +.border-0 { + border: 0 !important; +} + +.border-top { + border-top: 1px solid #E1E0E4 !important; +} + +.border-top-0 { + border-top: 0 !important; +} + +.border-end { + border-left: 1px solid #E1E0E4 !important; +} + +.border-end-0 { + border-left: 0 !important; +} + +.border-bottom { + border-bottom: 1px solid #E1E0E4 !important; +} + +.border-bottom-0 { + border-bottom: 0 !important; +} + +.border-start { + border-right: 1px solid #E1E0E4 !important; +} + +.border-start-0 { + border-right: 0 !important; +} + +.border-facebook { + border-color: #3c5a99 !important; +} + +.border-google-plus { + border-color: #dd4b39 !important; +} + +.border-twitter { + border-color: #1da1f2 !important; +} + +.border-linkedin { + border-color: #0077b5 !important; +} + +.border-youtube { + border-color: #ff0000 !important; +} + +.border-github { + border-color: #333 !important; +} + +.border-theme { + border-color: #0BAC56 !important; +} + +.border-black { + border-color: #000 !important; +} + +.border-100 { + border-color: #F5F7FA !important; +} + +.border-200 { + border-color: #EBEBED !important; +} + +.border-300 { + border-color: #E1E0E4 !important; +} + +.border-400 { + border-color: #D7D6DA !important; +} + +.border-500 { + border-color: #CDCCD1 !important; +} + +.border-600 { + border-color: #C3C1C8 !important; +} + +.border-700 { + border-color: #7D7987 !important; +} + +.border-800 { + border-color: #616368 !important; +} + +.border-900 { + border-color: #4F5665 !important; +} + +.border-1000 { + border-color: #112D58 !important; +} + +.border-1100 { + border-color: #1F1534 !important; +} + +.border-white { + border-color: #fff !important; +} + +.border-primary { + border-color: #1F3A63 !important; +} + +.border-secondary { + border-color: #4F5665 !important; +} + +.border-success { + border-color: #66BB6A !important; +} + +.border-info { + border-color: #3EB8F4 !important; +} + +.border-warning { + border-color: #FFA024 !important; +} + +.border-danger { + border-color: #F55767 !important; +} + +.border-light { + border-color: #F9FAFD !important; +} + +.border-dark { + border-color: #1F1534 !important; +} + +.border-0 { + border-width: 0 !important; +} + +.border-1 { + border-width: 1px !important; +} + +.border-2 { + border-width: 2px !important; +} + +.border-3 { + border-width: 3px !important; +} + +.border-4 { + border-width: 4px !important; +} + +.border-5 { + border-width: 5px !important; +} + +.w-25 { + width: 25% !important; +} + +.w-50 { + width: 50% !important; +} + +.w-75 { + width: 75% !important; +} + +.w-100 { + width: 100% !important; +} + +.w-auto { + width: auto !important; +} + +.mw-100 { + max-width: 100% !important; +} + +.vw-25 { + width: 25vw !important; +} + +.vw-50 { + width: 50vw !important; +} + +.vw-75 { + width: 75vw !important; +} + +.vw-100 { + width: 100vw !important; +} + +.min-vw-100 { + min-width: 100vw !important; +} + +.h-25 { + height: 25% !important; +} + +.h-50 { + height: 50% !important; +} + +.h-75 { + height: 75% !important; +} + +.h-100 { + height: 100% !important; +} + +.h-auto { + height: auto !important; +} + +.mh-100 { + max-height: 100% !important; +} + +.vh-25 { + height: 25vh !important; +} + +.vh-50 { + height: 50vh !important; +} + +.vh-75 { + height: 75vh !important; +} + +.vh-100 { + height: 100vh !important; +} + +.min-vh-25 { + min-height: 25vh !important; +} + +.min-vh-50 { + min-height: 50vh !important; +} + +.min-vh-75 { + min-height: 75vh !important; +} + +.min-vh-100 { + min-height: 100vh !important; +} + +.flex-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; +} + +.flex-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; +} + +.flex-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; +} + +.flex-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; +} + +.flex-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; +} + +.flex-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; +} + +.flex-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; +} + +.flex-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; +} + +.flex-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; +} + +.flex-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; +} + +.flex-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; +} + +.flex-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; +} + +.gap-0 { + gap: 0 !important; +} + +.gap-1 { + gap: 0.25rem !important; +} + +.gap-2 { + gap: 0.5rem !important; +} + +.gap-3 { + gap: 1rem !important; +} + +.gap-4 { + gap: 1.8rem !important; +} + +.gap-5 { + gap: 3rem !important; +} + +.gap-6 { + gap: 4rem !important; +} + +.gap-7 { + gap: 5rem !important; +} + +.gap-8 { + gap: 7.5rem !important; +} + +.gap-9 { + gap: 10rem !important; +} + +.gap-10 { + gap: 12.5rem !important; +} + +.gap-11 { + gap: 15rem !important; +} + +.justify-content-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; +} + +.justify-content-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; +} + +.justify-content-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; +} + +.justify-content-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; +} + +.justify-content-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; +} + +.justify-content-evenly { + -webkit-box-pack: space-evenly !important; + -ms-flex-pack: space-evenly !important; + justify-content: space-evenly !important; +} + +.align-items-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; +} + +.align-items-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; +} + +.align-items-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; +} + +.align-items-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; +} + +.align-items-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; +} + +.align-content-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; +} + +.align-content-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; +} + +.align-content-center { + -ms-flex-line-pack: center !important; + align-content: center !important; +} + +.align-content-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; +} + +.align-content-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; +} + +.align-content-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; +} + +.align-self-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; +} + +.align-self-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; +} + +.align-self-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; +} + +.align-self-center { + -ms-flex-item-align: center !important; + align-self: center !important; +} + +.align-self-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; +} + +.align-self-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; +} + +.order-first { + -webkit-box-ordinal-group: 0 !important; + -ms-flex-order: -1 !important; + order: -1 !important; +} + +.order-0 { + -webkit-box-ordinal-group: 1 !important; + -ms-flex-order: 0 !important; + order: 0 !important; +} + +.order-1 { + -webkit-box-ordinal-group: 2 !important; + -ms-flex-order: 1 !important; + order: 1 !important; +} + +.order-2 { + -webkit-box-ordinal-group: 3 !important; + -ms-flex-order: 2 !important; + order: 2 !important; +} + +.order-3 { + -webkit-box-ordinal-group: 4 !important; + -ms-flex-order: 3 !important; + order: 3 !important; +} + +.order-4 { + -webkit-box-ordinal-group: 5 !important; + -ms-flex-order: 4 !important; + order: 4 !important; +} + +.order-5 { + -webkit-box-ordinal-group: 6 !important; + -ms-flex-order: 5 !important; + order: 5 !important; +} + +.order-last { + -webkit-box-ordinal-group: 7 !important; + -ms-flex-order: 6 !important; + order: 6 !important; +} + +.m-0 { + margin: 0 !important; +} + +.m-1 { + margin: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem !important; +} + +.m-3 { + margin: 1rem !important; +} + +.m-4 { + margin: 1.8rem !important; +} + +.m-5 { + margin: 3rem !important; +} + +.m-6 { + margin: 4rem !important; +} + +.m-7 { + margin: 5rem !important; +} + +.m-8 { + margin: 7.5rem !important; +} + +.m-9 { + margin: 10rem !important; +} + +.m-10 { + margin: 12.5rem !important; +} + +.m-11 { + margin: 15rem !important; +} + +.m-auto { + margin: auto !important; +} + +.mx-0 { + margin-left: 0 !important; + margin-right: 0 !important; +} + +.mx-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; +} + +.mx-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; +} + +.mx-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; +} + +.mx-4 { + margin-left: 1.8rem !important; + margin-right: 1.8rem !important; +} + +.mx-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; +} + +.mx-6 { + margin-left: 4rem !important; + margin-right: 4rem !important; +} + +.mx-7 { + margin-left: 5rem !important; + margin-right: 5rem !important; +} + +.mx-8 { + margin-left: 7.5rem !important; + margin-right: 7.5rem !important; +} + +.mx-9 { + margin-left: 10rem !important; + margin-right: 10rem !important; +} + +.mx-10 { + margin-left: 12.5rem !important; + margin-right: 12.5rem !important; +} + +.mx-11 { + margin-left: 15rem !important; + margin-right: 15rem !important; +} + +.mx-auto { + margin-left: auto !important; + margin-right: auto !important; +} + +.my-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; +} + +.my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; +} + +.my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; +} + +.my-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; +} + +.my-4 { + margin-top: 1.8rem !important; + margin-bottom: 1.8rem !important; +} + +.my-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; +} + +.my-6 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; +} + +.my-7 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; +} + +.my-8 { + margin-top: 7.5rem !important; + margin-bottom: 7.5rem !important; +} + +.my-9 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; +} + +.my-10 { + margin-top: 12.5rem !important; + margin-bottom: 12.5rem !important; +} + +.my-11 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; +} + +.my-auto { + margin-top: auto !important; + margin-bottom: auto !important; +} + +.mt-0 { + margin-top: 0 !important; +} + +.mt-1 { + margin-top: 0.25rem !important; +} + +.mt-2 { + margin-top: 0.5rem !important; +} + +.mt-3 { + margin-top: 1rem !important; +} + +.mt-4 { + margin-top: 1.8rem !important; +} + +.mt-5 { + margin-top: 3rem !important; +} + +.mt-6 { + margin-top: 4rem !important; +} + +.mt-7 { + margin-top: 5rem !important; +} + +.mt-8 { + margin-top: 7.5rem !important; +} + +.mt-9 { + margin-top: 10rem !important; +} + +.mt-10 { + margin-top: 12.5rem !important; +} + +.mt-11 { + margin-top: 15rem !important; +} + +.mt-auto { + margin-top: auto !important; +} + +.me-0 { + margin-left: 0 !important; +} + +.me-1 { + margin-left: 0.25rem !important; +} + +.me-2 { + margin-left: 0.5rem !important; +} + +.me-3 { + margin-left: 1rem !important; +} + +.me-4 { + margin-left: 1.8rem !important; +} + +.me-5 { + margin-left: 3rem !important; +} + +.me-6 { + margin-left: 4rem !important; +} + +.me-7 { + margin-left: 5rem !important; +} + +.me-8 { + margin-left: 7.5rem !important; +} + +.me-9 { + margin-left: 10rem !important; +} + +.me-10 { + margin-left: 12.5rem !important; +} + +.me-11 { + margin-left: 15rem !important; +} + +.me-auto { + margin-left: auto !important; +} + +.mb-0 { + margin-bottom: 0 !important; +} + +.mb-1 { + margin-bottom: 0.25rem !important; +} + +.mb-2 { + margin-bottom: 0.5rem !important; +} + +.mb-3 { + margin-bottom: 1rem !important; +} + +.mb-4 { + margin-bottom: 1.8rem !important; +} + +.mb-5 { + margin-bottom: 3rem !important; +} + +.mb-6 { + margin-bottom: 4rem !important; +} + +.mb-7 { + margin-bottom: 5rem !important; +} + +.mb-8 { + margin-bottom: 7.5rem !important; +} + +.mb-9 { + margin-bottom: 10rem !important; +} + +.mb-10 { + margin-bottom: 12.5rem !important; +} + +.mb-11 { + margin-bottom: 15rem !important; +} + +.mb-auto { + margin-bottom: auto !important; +} + +.ms-0 { + margin-right: 0 !important; +} + +.ms-1 { + margin-right: 0.25rem !important; +} + +.ms-2 { + margin-right: 0.5rem !important; +} + +.ms-3 { + margin-right: 1rem !important; +} + +.ms-4 { + margin-right: 1.8rem !important; +} + +.ms-5 { + margin-right: 3rem !important; +} + +.ms-6 { + margin-right: 4rem !important; +} + +.ms-7 { + margin-right: 5rem !important; +} + +.ms-8 { + margin-right: 7.5rem !important; +} + +.ms-9 { + margin-right: 10rem !important; +} + +.ms-10 { + margin-right: 12.5rem !important; +} + +.ms-11 { + margin-right: 15rem !important; +} + +.ms-auto { + margin-right: auto !important; +} + +.m-n1 { + margin: -0.25rem !important; +} + +.m-n2 { + margin: -0.5rem !important; +} + +.m-n3 { + margin: -1rem !important; +} + +.m-n4 { + margin: -1.8rem !important; +} + +.m-n5 { + margin: -3rem !important; +} + +.m-n6 { + margin: -4rem !important; +} + +.m-n7 { + margin: -5rem !important; +} + +.m-n8 { + margin: -7.5rem !important; +} + +.m-n9 { + margin: -10rem !important; +} + +.m-n10 { + margin: -12.5rem !important; +} + +.m-n11 { + margin: -15rem !important; +} + +.mx-n1 { + margin-left: -0.25rem !important; + margin-right: -0.25rem !important; +} + +.mx-n2 { + margin-left: -0.5rem !important; + margin-right: -0.5rem !important; +} + +.mx-n3 { + margin-left: -1rem !important; + margin-right: -1rem !important; +} + +.mx-n4 { + margin-left: -1.8rem !important; + margin-right: -1.8rem !important; +} + +.mx-n5 { + margin-left: -3rem !important; + margin-right: -3rem !important; +} + +.mx-n6 { + margin-left: -4rem !important; + margin-right: -4rem !important; +} + +.mx-n7 { + margin-left: -5rem !important; + margin-right: -5rem !important; +} + +.mx-n8 { + margin-left: -7.5rem !important; + margin-right: -7.5rem !important; +} + +.mx-n9 { + margin-left: -10rem !important; + margin-right: -10rem !important; +} + +.mx-n10 { + margin-left: -12.5rem !important; + margin-right: -12.5rem !important; +} + +.mx-n11 { + margin-left: -15rem !important; + margin-right: -15rem !important; +} + +.my-n1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; +} + +.my-n2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; +} + +.my-n3 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; +} + +.my-n4 { + margin-top: -1.8rem !important; + margin-bottom: -1.8rem !important; +} + +.my-n5 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; +} + +.my-n6 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; +} + +.my-n7 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; +} + +.my-n8 { + margin-top: -7.5rem !important; + margin-bottom: -7.5rem !important; +} + +.my-n9 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; +} + +.my-n10 { + margin-top: -12.5rem !important; + margin-bottom: -12.5rem !important; +} + +.my-n11 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; +} + +.mt-n1 { + margin-top: -0.25rem !important; +} + +.mt-n2 { + margin-top: -0.5rem !important; +} + +.mt-n3 { + margin-top: -1rem !important; +} + +.mt-n4 { + margin-top: -1.8rem !important; +} + +.mt-n5 { + margin-top: -3rem !important; +} + +.mt-n6 { + margin-top: -4rem !important; +} + +.mt-n7 { + margin-top: -5rem !important; +} + +.mt-n8 { + margin-top: -7.5rem !important; +} + +.mt-n9 { + margin-top: -10rem !important; +} + +.mt-n10 { + margin-top: -12.5rem !important; +} + +.mt-n11 { + margin-top: -15rem !important; +} + +.me-n1 { + margin-left: -0.25rem !important; +} + +.me-n2 { + margin-left: -0.5rem !important; +} + +.me-n3 { + margin-left: -1rem !important; +} + +.me-n4 { + margin-left: -1.8rem !important; +} + +.me-n5 { + margin-left: -3rem !important; +} + +.me-n6 { + margin-left: -4rem !important; +} + +.me-n7 { + margin-left: -5rem !important; +} + +.me-n8 { + margin-left: -7.5rem !important; +} + +.me-n9 { + margin-left: -10rem !important; +} + +.me-n10 { + margin-left: -12.5rem !important; +} + +.me-n11 { + margin-left: -15rem !important; +} + +.mb-n1 { + margin-bottom: -0.25rem !important; +} + +.mb-n2 { + margin-bottom: -0.5rem !important; +} + +.mb-n3 { + margin-bottom: -1rem !important; +} + +.mb-n4 { + margin-bottom: -1.8rem !important; +} + +.mb-n5 { + margin-bottom: -3rem !important; +} + +.mb-n6 { + margin-bottom: -4rem !important; +} + +.mb-n7 { + margin-bottom: -5rem !important; +} + +.mb-n8 { + margin-bottom: -7.5rem !important; +} + +.mb-n9 { + margin-bottom: -10rem !important; +} + +.mb-n10 { + margin-bottom: -12.5rem !important; +} + +.mb-n11 { + margin-bottom: -15rem !important; +} + +.ms-n1 { + margin-right: -0.25rem !important; +} + +.ms-n2 { + margin-right: -0.5rem !important; +} + +.ms-n3 { + margin-right: -1rem !important; +} + +.ms-n4 { + margin-right: -1.8rem !important; +} + +.ms-n5 { + margin-right: -3rem !important; +} + +.ms-n6 { + margin-right: -4rem !important; +} + +.ms-n7 { + margin-right: -5rem !important; +} + +.ms-n8 { + margin-right: -7.5rem !important; +} + +.ms-n9 { + margin-right: -10rem !important; +} + +.ms-n10 { + margin-right: -12.5rem !important; +} + +.ms-n11 { + margin-right: -15rem !important; +} + +.p-0 { + padding: 0 !important; +} + +.p-1 { + padding: 0.25rem !important; +} + +.p-2 { + padding: 0.5rem !important; +} + +.p-3 { + padding: 1rem !important; +} + +.p-4 { + padding: 1.8rem !important; +} + +.p-5 { + padding: 3rem !important; +} + +.p-6 { + padding: 4rem !important; +} + +.p-7 { + padding: 5rem !important; +} + +.p-8 { + padding: 7.5rem !important; +} + +.p-9 { + padding: 10rem !important; +} + +.p-10 { + padding: 12.5rem !important; +} + +.p-11 { + padding: 15rem !important; +} + +.px-0 { + padding-left: 0 !important; + padding-right: 0 !important; +} + +.px-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; +} + +.px-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; +} + +.px-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; +} + +.px-4 { + padding-left: 1.8rem !important; + padding-right: 1.8rem !important; +} + +.px-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; +} + +.px-6 { + padding-left: 4rem !important; + padding-right: 4rem !important; +} + +.px-7 { + padding-left: 5rem !important; + padding-right: 5rem !important; +} + +.px-8 { + padding-left: 7.5rem !important; + padding-right: 7.5rem !important; +} + +.px-9 { + padding-left: 10rem !important; + padding-right: 10rem !important; +} + +.px-10 { + padding-left: 12.5rem !important; + padding-right: 12.5rem !important; +} + +.px-11 { + padding-left: 15rem !important; + padding-right: 15rem !important; +} + +.py-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; +} + +.py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; +} + +.py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; +} + +.py-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; +} + +.py-4 { + padding-top: 1.8rem !important; + padding-bottom: 1.8rem !important; +} + +.py-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; +} + +.py-6 { + padding-top: 4rem !important; + padding-bottom: 4rem !important; +} + +.py-7 { + padding-top: 5rem !important; + padding-bottom: 5rem !important; +} + +.py-8 { + padding-top: 7.5rem !important; + padding-bottom: 7.5rem !important; +} + +.py-9 { + padding-top: 10rem !important; + padding-bottom: 10rem !important; +} + +.py-10 { + padding-top: 12.5rem !important; + padding-bottom: 12.5rem !important; +} + +.py-11 { + padding-top: 15rem !important; + padding-bottom: 15rem !important; +} + +.pt-0 { + padding-top: 0 !important; +} + +.pt-1 { + padding-top: 0.25rem !important; +} + +.pt-2 { + padding-top: 0.5rem !important; +} + +.pt-3 { + padding-top: 1rem !important; +} + +.pt-4 { + padding-top: 1.8rem !important; +} + +.pt-5 { + padding-top: 3rem !important; +} + +.pt-6 { + padding-top: 4rem !important; +} + +.pt-7 { + padding-top: 5rem !important; +} + +.pt-8 { + padding-top: 7.5rem !important; +} + +.pt-9 { + padding-top: 10rem !important; +} + +.pt-10 { + padding-top: 12.5rem !important; +} + +.pt-11 { + padding-top: 15rem !important; +} + +.pe-0 { + padding-left: 0 !important; +} + +.pe-1 { + padding-left: 0.25rem !important; +} + +.pe-2 { + padding-left: 0.5rem !important; +} + +.pe-3 { + padding-left: 1rem !important; +} + +.pe-4 { + padding-left: 1.8rem !important; +} + +.pe-5 { + padding-left: 3rem !important; +} + +.pe-6 { + padding-left: 4rem !important; +} + +.pe-7 { + padding-left: 5rem !important; +} + +.pe-8 { + padding-left: 7.5rem !important; +} + +.pe-9 { + padding-left: 10rem !important; +} + +.pe-10 { + padding-left: 12.5rem !important; +} + +.pe-11 { + padding-left: 15rem !important; +} + +.pb-0 { + padding-bottom: 0 !important; +} + +.pb-1 { + padding-bottom: 0.25rem !important; +} + +.pb-2 { + padding-bottom: 0.5rem !important; +} + +.pb-3 { + padding-bottom: 1rem !important; +} + +.pb-4 { + padding-bottom: 1.8rem !important; +} + +.pb-5 { + padding-bottom: 3rem !important; +} + +.pb-6 { + padding-bottom: 4rem !important; +} + +.pb-7 { + padding-bottom: 5rem !important; +} + +.pb-8 { + padding-bottom: 7.5rem !important; +} + +.pb-9 { + padding-bottom: 10rem !important; +} + +.pb-10 { + padding-bottom: 12.5rem !important; +} + +.pb-11 { + padding-bottom: 15rem !important; +} + +.ps-0 { + padding-right: 0 !important; +} + +.ps-1 { + padding-right: 0.25rem !important; +} + +.ps-2 { + padding-right: 0.5rem !important; +} + +.ps-3 { + padding-right: 1rem !important; +} + +.ps-4 { + padding-right: 1.8rem !important; +} + +.ps-5 { + padding-right: 3rem !important; +} + +.ps-6 { + padding-right: 4rem !important; +} + +.ps-7 { + padding-right: 5rem !important; +} + +.ps-8 { + padding-right: 7.5rem !important; +} + +.ps-9 { + padding-right: 10rem !important; +} + +.ps-10 { + padding-right: 12.5rem !important; +} + +.ps-11 { + padding-right: 15rem !important; +} + +.fs--2 { + font-size: 0.69444rem !important; +} + +.fs--1 { + font-size: 0.83333rem !important; +} + +.fs-0 { + font-size: 1rem !important; +} + +.fs-1 { + font-size: 1.2rem !important; +} + +.fs-2 { + font-size: 1.44rem !important; +} + +.fs-3 { + font-size: 1.728rem !important; +} + +.fs-4 { + font-size: 2.0736rem !important; +} + +.fs-5 { + font-size: 2.48832rem !important; +} + +.fs-6 { + font-size: 2.98598rem !important; +} + +.fs-7 { + font-size: 3.58318rem !important; +} + +.fs-8 { + font-size: 4.29982rem !important; +} + +.fst-italic { + font-style: italic !important; +} + +.fst-normal { + font-style: normal !important; +} + +.fw-thin { + font-weight: 100 !important; +} + +.fw-lighter { + font-weight: 200 !important; +} + +.fw-light { + font-weight: 300 !important; +} + +.fw-normal { + font-weight: 400 !important; +} + +.fw-medium { + font-weight: 500 !important; +} + +.fw-semi-bold { + font-weight: 600 !important; +} + +.fw-bold { + font-weight: 700 !important; +} + +.fw-bolder { + font-weight: 800 !important; +} + +.fw-black { + font-weight: 900 !important; +} + +.text-lowercase { + text-transform: lowercase !important; +} + +.text-uppercase { + text-transform: uppercase !important; +} + +.text-capitalize { + text-transform: capitalize !important; +} + +.text-start { + text-align: right !important; +} + +.text-end { + text-align: left !important; +} + +.text-center { + text-align: center !important; +} + +.text-primary { + color: #1F3A63 !important; +} + +.text-secondary { + color: #4F5665 !important; +} + +.text-success { + color: #66BB6A !important; +} + +.text-info { + color: #3EB8F4 !important; +} + +.text-warning { + color: #FFA024 !important; +} + +.text-danger { + color: #F55767 !important; +} + +.text-light { + color: #F9FAFD !important; +} + +.text-dark { + color: #1F1534 !important; +} + +.text-white { + color: #fff !important; +} + +.text-body { + color: #7D7987 !important; +} + +.text-muted { + color: #CDCCD1 !important; +} + +.text-black-50 { + color: rgba(0, 0, 0, 0.5) !important; +} + +.text-white-50 { + color: rgba(255, 255, 255, 0.5) !important; +} + +.text-reset { + color: inherit !important; +} + +.lh-1 { + line-height: 1 !important; +} + +.lh-sm { + line-height: 1.25 !important; +} + +.lh-base { + line-height: 1.5 !important; +} + +.lh-lg { + line-height: 2 !important; +} + +.bg-facebook { + background-color: #3c5a99 !important; +} + +.bg-google-plus { + background-color: #dd4b39 !important; +} + +.bg-twitter { + background-color: #1da1f2 !important; +} + +.bg-linkedin { + background-color: #0077b5 !important; +} + +.bg-youtube { + background-color: #ff0000 !important; +} + +.bg-github { + background-color: #333 !important; +} + +.bg-theme { + background-color: #0BAC56 !important; +} + +.bg-black { + background-color: #000 !important; +} + +.bg-100 { + background-color: #F5F7FA !important; +} + +.bg-200 { + background-color: #EBEBED !important; +} + +.bg-300 { + background-color: #E1E0E4 !important; +} + +.bg-400 { + background-color: #D7D6DA !important; +} + +.bg-500 { + background-color: #CDCCD1 !important; +} + +.bg-600 { + background-color: #C3C1C8 !important; +} + +.bg-700 { + background-color: #7D7987 !important; +} + +.bg-800 { + background-color: #616368 !important; +} + +.bg-900 { + background-color: #4F5665 !important; +} + +.bg-1000 { + background-color: #112D58 !important; +} + +.bg-1100 { + background-color: #1F1534 !important; +} + +.bg-white { + background-color: #fff !important; +} + +.bg-primary { + background-color: #1F3A63 !important; +} + +.bg-secondary { + background-color: #4F5665 !important; +} + +.bg-success { + background-color: #66BB6A !important; +} + +.bg-info { + background-color: #3EB8F4 !important; +} + +.bg-warning { + background-color: #FFA024 !important; +} + +.bg-danger { + background-color: #F55767 !important; +} + +.bg-light { + background-color: #F9FAFD !important; +} + +.bg-dark { + background-color: #1F1534 !important; +} + +.bg-body { + background-color: #fff !important; +} + +.bg-transparent { + background-color: transparent !important; +} + +.bg-gradient { + background-image: var(--bs-gradient) !important; +} + +.text-wrap { + white-space: normal !important; +} + +.text-nowrap { + white-space: nowrap !important; +} + +.text-decoration-none { + text-decoration: none !important; +} + +.text-decoration-underline { + text-decoration: underline !important; +} + +.text-decoration-line-through { + text-decoration: line-through !important; +} +.font-monospace { + font-family: var(--bs-font-monospace) !important; +} + +.user-select-all { + -webkit-user-select: all !important; + -moz-user-select: all !important; + -ms-user-select: all !important; + user-select: all !important; +} + +.user-select-auto { + -webkit-user-select: auto !important; + -moz-user-select: auto !important; + -ms-user-select: auto !important; + user-select: auto !important; +} + +.user-select-none { + -webkit-user-select: none !important; + -moz-user-select: none !important; + -ms-user-select: none !important; + user-select: none !important; +} + +.pe-none { + pointer-events: none !important; +} + +.pe-auto { + pointer-events: auto !important; +} + +.rounded { + border-radius: 0.25rem !important; +} + +.rounded-0 { + border-radius: 0 !important; +} + +.rounded-1 { + border-radius: 0.3rem !important; +} + +.rounded-2 { + border-radius: 0.25rem !important; +} + +.rounded-3 { + border-radius: 0.5rem !important; +} + +.rounded-circle { + border-radius: 50% !important; +} + +.rounded-pill { + border-radius: 50rem !important; +} + +.rounded-top { + border-top-start-radius: 0.25rem !important; + border-top-end-radius: 0.25rem !important; +} + +.rounded-top-lg { + border-top-start-radius: 0.5rem !important; + border-top-end-radius: 0.5rem !important; +} + +.rounded-top-0 { + border-top-start-radius: 0 !important; + border-top-end-radius: 0 !important; +} + +.rounded-end { + border-top-end-radius: 0.25rem !important; + border-bottom-end-radius: 0.25rem !important; +} + +.rounded-end-lg { + border-top-end-radius: 0.5rem !important; + border-bottom-end-radius: 0.5rem !important; +} + +.rounded-end-0 { + border-top-end-radius: 0 !important; + border-bottom-end-radius: 0 !important; +} + +.rounded-bottom { + border-bottom-end-radius: 0.25rem !important; + border-bottom-start-radius: 0.25rem !important; +} + +.rounded-bottom-lg { + border-bottom-end-radius: 0.5rem !important; + border-bottom-start-radius: 0.5rem !important; +} + +.rounded-bottom-0 { + border-bottom-end-radius: 0 !important; + border-bottom-start-radius: 0 !important; +} + +.rounded-start { + border-bottom-start-radius: 0.25rem !important; + border-top-start-radius: 0.25rem !important; +} + +.rounded-start-lg { + border-bottom-start-radius: 0.5rem !important; + border-top-start-radius: 0.5rem !important; +} + +.rounded-start-0 { + border-bottom-start-radius: 0 !important; + border-top-start-radius: 0 !important; +} + +.visible { + visibility: visible !important; +} + +.invisible { + visibility: hidden !important; +} + +.opacity-0 { + opacity: 0 !important; +} + +.opacity-25 { + opacity: 0.25 !important; +} + +.opacity-50 { + opacity: 0.5 !important; +} + +.opacity-75 { + opacity: 0.75 !important; +} + +.opacity-85 { + opacity: 0.85 !important; +} + +.opacity-100 { + opacity: 1 !important; +} + +.text-facebook { + color: #3c5a99 !important; +} + +.text-google-plus { + color: #dd4b39 !important; +} + +.text-twitter { + color: #1da1f2 !important; +} + +.text-linkedin { + color: #0077b5 !important; +} + +.text-youtube { + color: #ff0000 !important; +} + +.text-github { + color: #333 !important; +} + +.text-theme { + color: #0BAC56 !important; +} + +.text-black { + color: #000 !important; +} + +.text-100 { + color: #F5F7FA !important; +} + +.text-200 { + color: #EBEBED !important; +} + +.text-300 { + color: #E1E0E4 !important; +} + +.text-400 { + color: #D7D6DA !important; +} + +.text-500 { + color: #CDCCD1 !important; +} + +.text-600 { + color: #C3C1C8 !important; +} + +.text-700 { + color: #7D7987 !important; +} + +.text-800 { + color: #616368 !important; +} + +.text-900 { + color: #4F5665 !important; +} + +.text-1000 { + color: #112D58 !important; +} + +.text-1100 { + color: #1F1534 !important; +} + +.text-white { + color: #fff !important; +} + +.max-vh-25 { + max-height: 25vh !important; +} + +.max-vh-50 { + max-height: 50vh !important; +} + +.max-vh-75 { + max-height: 75vh !important; +} + +.max-vh-100 { + max-height: 100vh !important; +} + +.border-x { + border-right: 1px solid #E1E0E4 !important; + border-left: 1px solid #E1E0E4 !important; +} + +.border-x-0 { + border-right: 0 !important; + border-left: 0 !important; +} + +.border-y { + border-top: 1px solid #E1E0E4 !important; + border-bottom: 1px solid #E1E0E4 !important; +} + +.border-y-0 { + border-top: 0 !important; + border-bottom: 0 !important; +} + +.border-dashed { + border: 1px dashed #E1E0E4 !important; +} + +.border-dashed-top { + border-top: 1px dashed #E1E0E4 !important; +} + +.border-dashed-end { + border-left: 1px dashed #E1E0E4 !important; +} + +.border-dashed-start { + border-right: 1px dashed #E1E0E4 !important; +} + +.border-dashed-bottom { + border-bottom: 1px dashed #E1E0E4 !important; +} + +.border-dashed-x { + border-right: 1px dashed #E1E0E4 !important; + border-left: 1px dashed #E1E0E4 !important; +} + +.border-dashed-y { + border-top: 1px dashed #E1E0E4 !important; + border-bottom: 1px dashed #E1E0E4 !important; +} + +.rounded-0 { + border-radius: 0 !important; +} + +.bg-soft-primary { + background-color: #e9ebef !important; +} + +.bg-soft-secondary { + background-color: #edeef0 !important; +} + +.bg-soft-success { + background-color: #f0f8f0 !important; +} + +.bg-soft-info { + background-color: #ecf8fe !important; +} + +.bg-soft-warning { + background-color: #fff6e9 !important; +} + +.bg-soft-danger { + background-color: #feeef0 !important; +} + +.bg-soft-light { + background-color: #feffff !important; +} + +.bg-soft-dark { + background-color: #e9e8eb !important; +} + +@media (min-width: 576px) { + .float-sm-start { + float: right !important; + } + .float-sm-end { + float: left !important; + } + .float-sm-none { + float: none !important; + } + .d-sm-inline { + display: inline !important; + } + .d-sm-inline-block { + display: inline-block !important; + } + .d-sm-block { + display: block !important; + } + .d-sm-grid { + display: grid !important; + } + .d-sm-table { + display: table !important; + } + .d-sm-table-row { + display: table-row !important; + } + .d-sm-table-cell { + display: table-cell !important; + } + .d-sm-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + } + .d-sm-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } + .d-sm-none { + display: none !important; + } + .position-sm-static { + position: static !important; + } + .position-sm-absolute { + position: absolute !important; + } + .position-sm-relative { + position: relative !important; + } + .position-sm-fixed { + position: fixed !important; + } + .position-sm-sticky { + position: -webkit-sticky !important; + position: sticky !important; + } + .translate-sm-middle { + -webkit-transform: translateX(50%) translateY(-50%) !important; + -ms-transform: translateX(50%) translateY(-50%) !important; + transform: translateX(50%) translateY(-50%) !important; + } + .translate-sm-middle-x { + -webkit-transform: translateX(50%) !important; + -ms-transform: translateX(50%) !important; + transform: translateX(50%) !important; + } + .translate-sm-middle-y { + -webkit-transform: translateY(-50%) !important; + -ms-transform: translateY(-50%) !important; + transform: translateY(-50%) !important; + } + .border-sm { + border: 1px solid #E1E0E4 !important; + } + .border-sm-0 { + border: 0 !important; + } + .border-sm-top { + border-top: 1px solid #E1E0E4 !important; + } + .border-sm-top-0 { + border-top: 0 !important; + } + .border-sm-end { + border-left: 1px solid #E1E0E4 !important; + } + .border-sm-end-0 { + border-left: 0 !important; + } + .border-sm-bottom { + border-bottom: 1px solid #E1E0E4 !important; + } + .border-sm-bottom-0 { + border-bottom: 0 !important; + } + .border-sm-start { + border-right: 1px solid #E1E0E4 !important; + } + .border-sm-start-0 { + border-right: 0 !important; + } + .w-sm-25 { + width: 25% !important; + } + .w-sm-50 { + width: 50% !important; + } + .w-sm-75 { + width: 75% !important; + } + .w-sm-100 { + width: 100% !important; + } + .w-sm-auto { + width: auto !important; + } + .vw-sm-25 { + width: 25vw !important; + } + .vw-sm-50 { + width: 50vw !important; + } + .vw-sm-75 { + width: 75vw !important; + } + .vw-sm-100 { + width: 100vw !important; + } + .h-sm-25 { + height: 25% !important; + } + .h-sm-50 { + height: 50% !important; + } + .h-sm-75 { + height: 75% !important; + } + .h-sm-100 { + height: 100% !important; + } + .h-sm-auto { + height: auto !important; + } + .vh-sm-25 { + height: 25vh !important; + } + .vh-sm-50 { + height: 50vh !important; + } + .vh-sm-75 { + height: 75vh !important; + } + .vh-sm-100 { + height: 100vh !important; + } + .min-vh-sm-25 { + min-height: 25vh !important; + } + .min-vh-sm-50 { + min-height: 50vh !important; + } + .min-vh-sm-75 { + min-height: 75vh !important; + } + .min-vh-sm-100 { + min-height: 100vh !important; + } + .flex-sm-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } + .flex-sm-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-sm-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-sm-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-sm-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-sm-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-sm-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + .flex-sm-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; + } + .flex-sm-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; + } + .flex-sm-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-sm-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-sm-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .gap-sm-0 { + gap: 0 !important; + } + .gap-sm-1 { + gap: 0.25rem !important; + } + .gap-sm-2 { + gap: 0.5rem !important; + } + .gap-sm-3 { + gap: 1rem !important; + } + .gap-sm-4 { + gap: 1.8rem !important; + } + .gap-sm-5 { + gap: 3rem !important; + } + .gap-sm-6 { + gap: 4rem !important; + } + .gap-sm-7 { + gap: 5rem !important; + } + .gap-sm-8 { + gap: 7.5rem !important; + } + .gap-sm-9 { + gap: 10rem !important; + } + .gap-sm-10 { + gap: 12.5rem !important; + } + .gap-sm-11 { + gap: 15rem !important; + } + .justify-content-sm-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-sm-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-sm-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-sm-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-sm-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .justify-content-sm-evenly { + -webkit-box-pack: space-evenly !important; + -ms-flex-pack: space-evenly !important; + justify-content: space-evenly !important; + } + .align-items-sm-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-sm-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-sm-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-sm-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-sm-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-sm-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-sm-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-sm-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-sm-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-sm-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-sm-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-sm-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-sm-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-sm-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-sm-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-sm-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-sm-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } + .order-sm-first { + -webkit-box-ordinal-group: 0 !important; + -ms-flex-order: -1 !important; + order: -1 !important; + } + .order-sm-0 { + -webkit-box-ordinal-group: 1 !important; + -ms-flex-order: 0 !important; + order: 0 !important; + } + .order-sm-1 { + -webkit-box-ordinal-group: 2 !important; + -ms-flex-order: 1 !important; + order: 1 !important; + } + .order-sm-2 { + -webkit-box-ordinal-group: 3 !important; + -ms-flex-order: 2 !important; + order: 2 !important; + } + .order-sm-3 { + -webkit-box-ordinal-group: 4 !important; + -ms-flex-order: 3 !important; + order: 3 !important; + } + .order-sm-4 { + -webkit-box-ordinal-group: 5 !important; + -ms-flex-order: 4 !important; + order: 4 !important; + } + .order-sm-5 { + -webkit-box-ordinal-group: 6 !important; + -ms-flex-order: 5 !important; + order: 5 !important; + } + .order-sm-last { + -webkit-box-ordinal-group: 7 !important; + -ms-flex-order: 6 !important; + order: 6 !important; + } + .m-sm-0 { + margin: 0 !important; + } + .m-sm-1 { + margin: 0.25rem !important; + } + .m-sm-2 { + margin: 0.5rem !important; + } + .m-sm-3 { + margin: 1rem !important; + } + .m-sm-4 { + margin: 1.8rem !important; + } + .m-sm-5 { + margin: 3rem !important; + } + .m-sm-6 { + margin: 4rem !important; + } + .m-sm-7 { + margin: 5rem !important; + } + .m-sm-8 { + margin: 7.5rem !important; + } + .m-sm-9 { + margin: 10rem !important; + } + .m-sm-10 { + margin: 12.5rem !important; + } + .m-sm-11 { + margin: 15rem !important; + } + .m-sm-auto { + margin: auto !important; + } + .mx-sm-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-sm-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-sm-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-sm-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-sm-4 { + margin-left: 1.8rem !important; + margin-right: 1.8rem !important; + } + .mx-sm-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-sm-6 { + margin-left: 4rem !important; + margin-right: 4rem !important; + } + .mx-sm-7 { + margin-left: 5rem !important; + margin-right: 5rem !important; + } + .mx-sm-8 { + margin-left: 7.5rem !important; + margin-right: 7.5rem !important; + } + .mx-sm-9 { + margin-left: 10rem !important; + margin-right: 10rem !important; + } + .mx-sm-10 { + margin-left: 12.5rem !important; + margin-right: 12.5rem !important; + } + .mx-sm-11 { + margin-left: 15rem !important; + margin-right: 15rem !important; + } + .mx-sm-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-sm-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-sm-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-sm-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-sm-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-sm-4 { + margin-top: 1.8rem !important; + margin-bottom: 1.8rem !important; + } + .my-sm-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-sm-6 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; + } + .my-sm-7 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; + } + .my-sm-8 { + margin-top: 7.5rem !important; + margin-bottom: 7.5rem !important; + } + .my-sm-9 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; + } + .my-sm-10 { + margin-top: 12.5rem !important; + margin-bottom: 12.5rem !important; + } + .my-sm-11 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; + } + .my-sm-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-sm-0 { + margin-top: 0 !important; + } + .mt-sm-1 { + margin-top: 0.25rem !important; + } + .mt-sm-2 { + margin-top: 0.5rem !important; + } + .mt-sm-3 { + margin-top: 1rem !important; + } + .mt-sm-4 { + margin-top: 1.8rem !important; + } + .mt-sm-5 { + margin-top: 3rem !important; + } + .mt-sm-6 { + margin-top: 4rem !important; + } + .mt-sm-7 { + margin-top: 5rem !important; + } + .mt-sm-8 { + margin-top: 7.5rem !important; + } + .mt-sm-9 { + margin-top: 10rem !important; + } + .mt-sm-10 { + margin-top: 12.5rem !important; + } + .mt-sm-11 { + margin-top: 15rem !important; + } + .mt-sm-auto { + margin-top: auto !important; + } + .me-sm-0 { + margin-left: 0 !important; + } + .me-sm-1 { + margin-left: 0.25rem !important; + } + .me-sm-2 { + margin-left: 0.5rem !important; + } + .me-sm-3 { + margin-left: 1rem !important; + } + .me-sm-4 { + margin-left: 1.8rem !important; + } + .me-sm-5 { + margin-left: 3rem !important; + } + .me-sm-6 { + margin-left: 4rem !important; + } + .me-sm-7 { + margin-left: 5rem !important; + } + .me-sm-8 { + margin-left: 7.5rem !important; + } + .me-sm-9 { + margin-left: 10rem !important; + } + .me-sm-10 { + margin-left: 12.5rem !important; + } + .me-sm-11 { + margin-left: 15rem !important; + } + .me-sm-auto { + margin-left: auto !important; + } + .mb-sm-0 { + margin-bottom: 0 !important; + } + .mb-sm-1 { + margin-bottom: 0.25rem !important; + } + .mb-sm-2 { + margin-bottom: 0.5rem !important; + } + .mb-sm-3 { + margin-bottom: 1rem !important; + } + .mb-sm-4 { + margin-bottom: 1.8rem !important; + } + .mb-sm-5 { + margin-bottom: 3rem !important; + } + .mb-sm-6 { + margin-bottom: 4rem !important; + } + .mb-sm-7 { + margin-bottom: 5rem !important; + } + .mb-sm-8 { + margin-bottom: 7.5rem !important; + } + .mb-sm-9 { + margin-bottom: 10rem !important; + } + .mb-sm-10 { + margin-bottom: 12.5rem !important; + } + .mb-sm-11 { + margin-bottom: 15rem !important; + } + .mb-sm-auto { + margin-bottom: auto !important; + } + .ms-sm-0 { + margin-right: 0 !important; + } + .ms-sm-1 { + margin-right: 0.25rem !important; + } + .ms-sm-2 { + margin-right: 0.5rem !important; + } + .ms-sm-3 { + margin-right: 1rem !important; + } + .ms-sm-4 { + margin-right: 1.8rem !important; + } + .ms-sm-5 { + margin-right: 3rem !important; + } + .ms-sm-6 { + margin-right: 4rem !important; + } + .ms-sm-7 { + margin-right: 5rem !important; + } + .ms-sm-8 { + margin-right: 7.5rem !important; + } + .ms-sm-9 { + margin-right: 10rem !important; + } + .ms-sm-10 { + margin-right: 12.5rem !important; + } + .ms-sm-11 { + margin-right: 15rem !important; + } + .ms-sm-auto { + margin-right: auto !important; + } + .m-sm-n1 { + margin: -0.25rem !important; + } + .m-sm-n2 { + margin: -0.5rem !important; + } + .m-sm-n3 { + margin: -1rem !important; + } + .m-sm-n4 { + margin: -1.8rem !important; + } + .m-sm-n5 { + margin: -3rem !important; + } + .m-sm-n6 { + margin: -4rem !important; + } + .m-sm-n7 { + margin: -5rem !important; + } + .m-sm-n8 { + margin: -7.5rem !important; + } + .m-sm-n9 { + margin: -10rem !important; + } + .m-sm-n10 { + margin: -12.5rem !important; + } + .m-sm-n11 { + margin: -15rem !important; + } + .mx-sm-n1 { + margin-left: -0.25rem !important; + margin-right: -0.25rem !important; + } + .mx-sm-n2 { + margin-left: -0.5rem !important; + margin-right: -0.5rem !important; + } + .mx-sm-n3 { + margin-left: -1rem !important; + margin-right: -1rem !important; + } + .mx-sm-n4 { + margin-left: -1.8rem !important; + margin-right: -1.8rem !important; + } + .mx-sm-n5 { + margin-left: -3rem !important; + margin-right: -3rem !important; + } + .mx-sm-n6 { + margin-left: -4rem !important; + margin-right: -4rem !important; + } + .mx-sm-n7 { + margin-left: -5rem !important; + margin-right: -5rem !important; + } + .mx-sm-n8 { + margin-left: -7.5rem !important; + margin-right: -7.5rem !important; + } + .mx-sm-n9 { + margin-left: -10rem !important; + margin-right: -10rem !important; + } + .mx-sm-n10 { + margin-left: -12.5rem !important; + margin-right: -12.5rem !important; + } + .mx-sm-n11 { + margin-left: -15rem !important; + margin-right: -15rem !important; + } + .my-sm-n1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; + } + .my-sm-n2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; + } + .my-sm-n3 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; + } + .my-sm-n4 { + margin-top: -1.8rem !important; + margin-bottom: -1.8rem !important; + } + .my-sm-n5 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; + } + .my-sm-n6 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; + } + .my-sm-n7 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; + } + .my-sm-n8 { + margin-top: -7.5rem !important; + margin-bottom: -7.5rem !important; + } + .my-sm-n9 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; + } + .my-sm-n10 { + margin-top: -12.5rem !important; + margin-bottom: -12.5rem !important; + } + .my-sm-n11 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; + } + .mt-sm-n1 { + margin-top: -0.25rem !important; + } + .mt-sm-n2 { + margin-top: -0.5rem !important; + } + .mt-sm-n3 { + margin-top: -1rem !important; + } + .mt-sm-n4 { + margin-top: -1.8rem !important; + } + .mt-sm-n5 { + margin-top: -3rem !important; + } + .mt-sm-n6 { + margin-top: -4rem !important; + } + .mt-sm-n7 { + margin-top: -5rem !important; + } + .mt-sm-n8 { + margin-top: -7.5rem !important; + } + .mt-sm-n9 { + margin-top: -10rem !important; + } + .mt-sm-n10 { + margin-top: -12.5rem !important; + } + .mt-sm-n11 { + margin-top: -15rem !important; + } + .me-sm-n1 { + margin-left: -0.25rem !important; + } + .me-sm-n2 { + margin-left: -0.5rem !important; + } + .me-sm-n3 { + margin-left: -1rem !important; + } + .me-sm-n4 { + margin-left: -1.8rem !important; + } + .me-sm-n5 { + margin-left: -3rem !important; + } + .me-sm-n6 { + margin-left: -4rem !important; + } + .me-sm-n7 { + margin-left: -5rem !important; + } + .me-sm-n8 { + margin-left: -7.5rem !important; + } + .me-sm-n9 { + margin-left: -10rem !important; + } + .me-sm-n10 { + margin-left: -12.5rem !important; + } + .me-sm-n11 { + margin-left: -15rem !important; + } + .mb-sm-n1 { + margin-bottom: -0.25rem !important; + } + .mb-sm-n2 { + margin-bottom: -0.5rem !important; + } + .mb-sm-n3 { + margin-bottom: -1rem !important; + } + .mb-sm-n4 { + margin-bottom: -1.8rem !important; + } + .mb-sm-n5 { + margin-bottom: -3rem !important; + } + .mb-sm-n6 { + margin-bottom: -4rem !important; + } + .mb-sm-n7 { + margin-bottom: -5rem !important; + } + .mb-sm-n8 { + margin-bottom: -7.5rem !important; + } + .mb-sm-n9 { + margin-bottom: -10rem !important; + } + .mb-sm-n10 { + margin-bottom: -12.5rem !important; + } + .mb-sm-n11 { + margin-bottom: -15rem !important; + } + .ms-sm-n1 { + margin-right: -0.25rem !important; + } + .ms-sm-n2 { + margin-right: -0.5rem !important; + } + .ms-sm-n3 { + margin-right: -1rem !important; + } + .ms-sm-n4 { + margin-right: -1.8rem !important; + } + .ms-sm-n5 { + margin-right: -3rem !important; + } + .ms-sm-n6 { + margin-right: -4rem !important; + } + .ms-sm-n7 { + margin-right: -5rem !important; + } + .ms-sm-n8 { + margin-right: -7.5rem !important; + } + .ms-sm-n9 { + margin-right: -10rem !important; + } + .ms-sm-n10 { + margin-right: -12.5rem !important; + } + .ms-sm-n11 { + margin-right: -15rem !important; + } + .p-sm-0 { + padding: 0 !important; + } + .p-sm-1 { + padding: 0.25rem !important; + } + .p-sm-2 { + padding: 0.5rem !important; + } + .p-sm-3 { + padding: 1rem !important; + } + .p-sm-4 { + padding: 1.8rem !important; + } + .p-sm-5 { + padding: 3rem !important; + } + .p-sm-6 { + padding: 4rem !important; + } + .p-sm-7 { + padding: 5rem !important; + } + .p-sm-8 { + padding: 7.5rem !important; + } + .p-sm-9 { + padding: 10rem !important; + } + .p-sm-10 { + padding: 12.5rem !important; + } + .p-sm-11 { + padding: 15rem !important; + } + .px-sm-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-sm-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-sm-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-sm-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-sm-4 { + padding-left: 1.8rem !important; + padding-right: 1.8rem !important; + } + .px-sm-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .px-sm-6 { + padding-left: 4rem !important; + padding-right: 4rem !important; + } + .px-sm-7 { + padding-left: 5rem !important; + padding-right: 5rem !important; + } + .px-sm-8 { + padding-left: 7.5rem !important; + padding-right: 7.5rem !important; + } + .px-sm-9 { + padding-left: 10rem !important; + padding-right: 10rem !important; + } + .px-sm-10 { + padding-left: 12.5rem !important; + padding-right: 12.5rem !important; + } + .px-sm-11 { + padding-left: 15rem !important; + padding-right: 15rem !important; + } + .py-sm-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-sm-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-sm-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-sm-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-sm-4 { + padding-top: 1.8rem !important; + padding-bottom: 1.8rem !important; + } + .py-sm-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .py-sm-6 { + padding-top: 4rem !important; + padding-bottom: 4rem !important; + } + .py-sm-7 { + padding-top: 5rem !important; + padding-bottom: 5rem !important; + } + .py-sm-8 { + padding-top: 7.5rem !important; + padding-bottom: 7.5rem !important; + } + .py-sm-9 { + padding-top: 10rem !important; + padding-bottom: 10rem !important; + } + .py-sm-10 { + padding-top: 12.5rem !important; + padding-bottom: 12.5rem !important; + } + .py-sm-11 { + padding-top: 15rem !important; + padding-bottom: 15rem !important; + } + .pt-sm-0 { + padding-top: 0 !important; + } + .pt-sm-1 { + padding-top: 0.25rem !important; + } + .pt-sm-2 { + padding-top: 0.5rem !important; + } + .pt-sm-3 { + padding-top: 1rem !important; + } + .pt-sm-4 { + padding-top: 1.8rem !important; + } + .pt-sm-5 { + padding-top: 3rem !important; + } + .pt-sm-6 { + padding-top: 4rem !important; + } + .pt-sm-7 { + padding-top: 5rem !important; + } + .pt-sm-8 { + padding-top: 7.5rem !important; + } + .pt-sm-9 { + padding-top: 10rem !important; + } + .pt-sm-10 { + padding-top: 12.5rem !important; + } + .pt-sm-11 { + padding-top: 15rem !important; + } + .pe-sm-0 { + padding-left: 0 !important; + } + .pe-sm-1 { + padding-left: 0.25rem !important; + } + .pe-sm-2 { + padding-left: 0.5rem !important; + } + .pe-sm-3 { + padding-left: 1rem !important; + } + .pe-sm-4 { + padding-left: 1.8rem !important; + } + .pe-sm-5 { + padding-left: 3rem !important; + } + .pe-sm-6 { + padding-left: 4rem !important; + } + .pe-sm-7 { + padding-left: 5rem !important; + } + .pe-sm-8 { + padding-left: 7.5rem !important; + } + .pe-sm-9 { + padding-left: 10rem !important; + } + .pe-sm-10 { + padding-left: 12.5rem !important; + } + .pe-sm-11 { + padding-left: 15rem !important; + } + .pb-sm-0 { + padding-bottom: 0 !important; + } + .pb-sm-1 { + padding-bottom: 0.25rem !important; + } + .pb-sm-2 { + padding-bottom: 0.5rem !important; + } + .pb-sm-3 { + padding-bottom: 1rem !important; + } + .pb-sm-4 { + padding-bottom: 1.8rem !important; + } + .pb-sm-5 { + padding-bottom: 3rem !important; + } + .pb-sm-6 { + padding-bottom: 4rem !important; + } + .pb-sm-7 { + padding-bottom: 5rem !important; + } + .pb-sm-8 { + padding-bottom: 7.5rem !important; + } + .pb-sm-9 { + padding-bottom: 10rem !important; + } + .pb-sm-10 { + padding-bottom: 12.5rem !important; + } + .pb-sm-11 { + padding-bottom: 15rem !important; + } + .ps-sm-0 { + padding-right: 0 !important; + } + .ps-sm-1 { + padding-right: 0.25rem !important; + } + .ps-sm-2 { + padding-right: 0.5rem !important; + } + .ps-sm-3 { + padding-right: 1rem !important; + } + .ps-sm-4 { + padding-right: 1.8rem !important; + } + .ps-sm-5 { + padding-right: 3rem !important; + } + .ps-sm-6 { + padding-right: 4rem !important; + } + .ps-sm-7 { + padding-right: 5rem !important; + } + .ps-sm-8 { + padding-right: 7.5rem !important; + } + .ps-sm-9 { + padding-right: 10rem !important; + } + .ps-sm-10 { + padding-right: 12.5rem !important; + } + .ps-sm-11 { + padding-right: 15rem !important; + } + .fs-sm--2 { + font-size: 0.69444rem !important; + } + .fs-sm--1 { + font-size: 0.83333rem !important; + } + .fs-sm-0 { + font-size: 1rem !important; + } + .fs-sm-1 { + font-size: 1.2rem !important; + } + .fs-sm-2 { + font-size: 1.44rem !important; + } + .fs-sm-3 { + font-size: 1.728rem !important; + } + .fs-sm-4 { + font-size: 2.0736rem !important; + } + .fs-sm-5 { + font-size: 2.48832rem !important; + } + .fs-sm-6 { + font-size: 2.98598rem !important; + } + .fs-sm-7 { + font-size: 3.58318rem !important; + } + .fs-sm-8 { + font-size: 4.29982rem !important; + } + .text-sm-start { + text-align: right !important; + } + .text-sm-end { + text-align: left !important; + } + .text-sm-center { + text-align: center !important; + } + .rounded-sm-top { + border-top-start-radius: 0.25rem !important; + border-top-end-radius: 0.25rem !important; + } + .rounded-sm-top-lg { + border-top-start-radius: 0.5rem !important; + border-top-end-radius: 0.5rem !important; + } + .rounded-sm-top-0 { + border-top-start-radius: 0 !important; + border-top-end-radius: 0 !important; + } + .rounded-sm-end { + border-top-end-radius: 0.25rem !important; + border-bottom-end-radius: 0.25rem !important; + } + .rounded-sm-end-lg { + border-top-end-radius: 0.5rem !important; + border-bottom-end-radius: 0.5rem !important; + } + .rounded-sm-end-0 { + border-top-end-radius: 0 !important; + border-bottom-end-radius: 0 !important; + } + .rounded-sm-bottom { + border-bottom-end-radius: 0.25rem !important; + border-bottom-start-radius: 0.25rem !important; + } + .rounded-sm-bottom-lg { + border-bottom-end-radius: 0.5rem !important; + border-bottom-start-radius: 0.5rem !important; + } + .rounded-sm-bottom-0 { + border-bottom-end-radius: 0 !important; + border-bottom-start-radius: 0 !important; + } + .rounded-sm-start { + border-bottom-start-radius: 0.25rem !important; + border-top-start-radius: 0.25rem !important; + } + .rounded-sm-start-lg { + border-bottom-start-radius: 0.5rem !important; + border-top-start-radius: 0.5rem !important; + } + .rounded-sm-start-0 { + border-bottom-start-radius: 0 !important; + border-top-start-radius: 0 !important; + } + .opacity-sm-0 { + opacity: 0 !important; + } + .opacity-sm-25 { + opacity: 0.25 !important; + } + .opacity-sm-50 { + opacity: 0.5 !important; + } + .opacity-sm-75 { + opacity: 0.75 !important; + } + .opacity-sm-85 { + opacity: 0.85 !important; + } + .opacity-sm-100 { + opacity: 1 !important; + } + .text-sm-facebook { + color: #3c5a99 !important; + } + .text-sm-google-plus { + color: #dd4b39 !important; + } + .text-sm-twitter { + color: #1da1f2 !important; + } + .text-sm-linkedin { + color: #0077b5 !important; + } + .text-sm-youtube { + color: #ff0000 !important; + } + .text-sm-github { + color: #333 !important; + } + .text-sm-theme { + color: #0BAC56 !important; + } + .text-sm-black { + color: #000 !important; + } + .text-sm-100 { + color: #F5F7FA !important; + } + .text-sm-200 { + color: #EBEBED !important; + } + .text-sm-300 { + color: #E1E0E4 !important; + } + .text-sm-400 { + color: #D7D6DA !important; + } + .text-sm-500 { + color: #CDCCD1 !important; + } + .text-sm-600 { + color: #C3C1C8 !important; + } + .text-sm-700 { + color: #7D7987 !important; + } + .text-sm-800 { + color: #616368 !important; + } + .text-sm-900 { + color: #4F5665 !important; + } + .text-sm-1000 { + color: #112D58 !important; + } + .text-sm-1100 { + color: #1F1534 !important; + } + .text-sm-white { + color: #fff !important; + } + .max-vh-sm-25 { + max-height: 25vh !important; + } + .max-vh-sm-50 { + max-height: 50vh !important; + } + .max-vh-sm-75 { + max-height: 75vh !important; + } + .max-vh-sm-100 { + max-height: 100vh !important; + } + .border-sm-x { + border-right: 1px solid #E1E0E4 !important; + border-left: 1px solid #E1E0E4 !important; + } + .border-sm-x-0 { + border-right: 0 !important; + border-left: 0 !important; + } + .border-sm-y { + border-top: 1px solid #E1E0E4 !important; + border-bottom: 1px solid #E1E0E4 !important; + } + .border-sm-y-0 { + border-top: 0 !important; + border-bottom: 0 !important; + } + .border-sm-dashed { + border: 1px dashed #E1E0E4 !important; + } + .border-sm-dashed-top { + border-top: 1px dashed #E1E0E4 !important; + } + .border-sm-dashed-end { + border-left: 1px dashed #E1E0E4 !important; + } + .border-sm-dashed-start { + border-right: 1px dashed #E1E0E4 !important; + } + .border-sm-dashed-bottom { + border-bottom: 1px dashed #E1E0E4 !important; + } + .border-sm-dashed-x { + border-right: 1px dashed #E1E0E4 !important; + border-left: 1px dashed #E1E0E4 !important; + } + .border-sm-dashed-y { + border-top: 1px dashed #E1E0E4 !important; + border-bottom: 1px dashed #E1E0E4 !important; + } + .rounded-sm-0 { + border-radius: 0 !important; + } +} + +@media (min-width: 768px) { + .float-md-start { + float: right !important; + } + .float-md-end { + float: left !important; + } + .float-md-none { + float: none !important; + } + .d-md-inline { + display: inline !important; + } + .d-md-inline-block { + display: inline-block !important; + } + .d-md-block { + display: block !important; + } + .d-md-grid { + display: grid !important; + } + .d-md-table { + display: table !important; + } + .d-md-table-row { + display: table-row !important; + } + .d-md-table-cell { + display: table-cell !important; + } + .d-md-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + } + .d-md-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } + .d-md-none { + display: none !important; + } + .position-md-static { + position: static !important; + } + .position-md-absolute { + position: absolute !important; + } + .position-md-relative { + position: relative !important; + } + .position-md-fixed { + position: fixed !important; + } + .position-md-sticky { + position: -webkit-sticky !important; + position: sticky !important; + } + .translate-md-middle { + -webkit-transform: translateX(50%) translateY(-50%) !important; + -ms-transform: translateX(50%) translateY(-50%) !important; + transform: translateX(50%) translateY(-50%) !important; + } + .translate-md-middle-x { + -webkit-transform: translateX(50%) !important; + -ms-transform: translateX(50%) !important; + transform: translateX(50%) !important; + } + .translate-md-middle-y { + -webkit-transform: translateY(-50%) !important; + -ms-transform: translateY(-50%) !important; + transform: translateY(-50%) !important; + } + .border-md { + border: 1px solid #E1E0E4 !important; + } + .border-md-0 { + border: 0 !important; + } + .border-md-top { + border-top: 1px solid #E1E0E4 !important; + } + .border-md-top-0 { + border-top: 0 !important; + } + .border-md-end { + border-left: 1px solid #E1E0E4 !important; + } + .border-md-end-0 { + border-left: 0 !important; + } + .border-md-bottom { + border-bottom: 1px solid #E1E0E4 !important; + } + .border-md-bottom-0 { + border-bottom: 0 !important; + } + .border-md-start { + border-right: 1px solid #E1E0E4 !important; + } + .border-md-start-0 { + border-right: 0 !important; + } + .w-md-25 { + width: 25% !important; + } + .w-md-50 { + width: 50% !important; + } + .w-md-75 { + width: 75% !important; + } + .w-md-100 { + width: 100% !important; + } + .w-md-auto { + width: auto !important; + } + .vw-md-25 { + width: 25vw !important; + } + .vw-md-50 { + width: 50vw !important; + } + .vw-md-75 { + width: 75vw !important; + } + .vw-md-100 { + width: 100vw !important; + } + .h-md-25 { + height: 25% !important; + } + .h-md-50 { + height: 50% !important; + } + .h-md-75 { + height: 75% !important; + } + .h-md-100 { + height: 100% !important; + } + .h-md-auto { + height: auto !important; + } + .vh-md-25 { + height: 25vh !important; + } + .vh-md-50 { + height: 50vh !important; + } + .vh-md-75 { + height: 75vh !important; + } + .vh-md-100 { + height: 100vh !important; + } + .min-vh-md-25 { + min-height: 25vh !important; + } + .min-vh-md-50 { + min-height: 50vh !important; + } + .min-vh-md-75 { + min-height: 75vh !important; + } + .min-vh-md-100 { + min-height: 100vh !important; + } + .flex-md-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } + .flex-md-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-md-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-md-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-md-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-md-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-md-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + .flex-md-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; + } + .flex-md-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; + } + .flex-md-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-md-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-md-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .gap-md-0 { + gap: 0 !important; + } + .gap-md-1 { + gap: 0.25rem !important; + } + .gap-md-2 { + gap: 0.5rem !important; + } + .gap-md-3 { + gap: 1rem !important; + } + .gap-md-4 { + gap: 1.8rem !important; + } + .gap-md-5 { + gap: 3rem !important; + } + .gap-md-6 { + gap: 4rem !important; + } + .gap-md-7 { + gap: 5rem !important; + } + .gap-md-8 { + gap: 7.5rem !important; + } + .gap-md-9 { + gap: 10rem !important; + } + .gap-md-10 { + gap: 12.5rem !important; + } + .gap-md-11 { + gap: 15rem !important; + } + .justify-content-md-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-md-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-md-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-md-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-md-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .justify-content-md-evenly { + -webkit-box-pack: space-evenly !important; + -ms-flex-pack: space-evenly !important; + justify-content: space-evenly !important; + } + .align-items-md-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-md-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-md-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-md-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-md-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-md-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-md-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-md-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-md-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-md-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-md-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-md-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-md-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-md-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-md-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-md-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-md-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } + .order-md-first { + -webkit-box-ordinal-group: 0 !important; + -ms-flex-order: -1 !important; + order: -1 !important; + } + .order-md-0 { + -webkit-box-ordinal-group: 1 !important; + -ms-flex-order: 0 !important; + order: 0 !important; + } + .order-md-1 { + -webkit-box-ordinal-group: 2 !important; + -ms-flex-order: 1 !important; + order: 1 !important; + } + .order-md-2 { + -webkit-box-ordinal-group: 3 !important; + -ms-flex-order: 2 !important; + order: 2 !important; + } + .order-md-3 { + -webkit-box-ordinal-group: 4 !important; + -ms-flex-order: 3 !important; + order: 3 !important; + } + .order-md-4 { + -webkit-box-ordinal-group: 5 !important; + -ms-flex-order: 4 !important; + order: 4 !important; + } + .order-md-5 { + -webkit-box-ordinal-group: 6 !important; + -ms-flex-order: 5 !important; + order: 5 !important; + } + .order-md-last { + -webkit-box-ordinal-group: 7 !important; + -ms-flex-order: 6 !important; + order: 6 !important; + } + .m-md-0 { + margin: 0 !important; + } + .m-md-1 { + margin: 0.25rem !important; + } + .m-md-2 { + margin: 0.5rem !important; + } + .m-md-3 { + margin: 1rem !important; + } + .m-md-4 { + margin: 1.8rem !important; + } + .m-md-5 { + margin: 3rem !important; + } + .m-md-6 { + margin: 4rem !important; + } + .m-md-7 { + margin: 5rem !important; + } + .m-md-8 { + margin: 7.5rem !important; + } + .m-md-9 { + margin: 10rem !important; + } + .m-md-10 { + margin: 12.5rem !important; + } + .m-md-11 { + margin: 15rem !important; + } + .m-md-auto { + margin: auto !important; + } + .mx-md-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-md-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-md-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-md-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-md-4 { + margin-left: 1.8rem !important; + margin-right: 1.8rem !important; + } + .mx-md-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-md-6 { + margin-left: 4rem !important; + margin-right: 4rem !important; + } + .mx-md-7 { + margin-left: 5rem !important; + margin-right: 5rem !important; + } + .mx-md-8 { + margin-left: 7.5rem !important; + margin-right: 7.5rem !important; + } + .mx-md-9 { + margin-left: 10rem !important; + margin-right: 10rem !important; + } + .mx-md-10 { + margin-left: 12.5rem !important; + margin-right: 12.5rem !important; + } + .mx-md-11 { + margin-left: 15rem !important; + margin-right: 15rem !important; + } + .mx-md-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-md-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-md-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-md-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-md-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-md-4 { + margin-top: 1.8rem !important; + margin-bottom: 1.8rem !important; + } + .my-md-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-md-6 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; + } + .my-md-7 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; + } + .my-md-8 { + margin-top: 7.5rem !important; + margin-bottom: 7.5rem !important; + } + .my-md-9 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; + } + .my-md-10 { + margin-top: 12.5rem !important; + margin-bottom: 12.5rem !important; + } + .my-md-11 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; + } + .my-md-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-md-0 { + margin-top: 0 !important; + } + .mt-md-1 { + margin-top: 0.25rem !important; + } + .mt-md-2 { + margin-top: 0.5rem !important; + } + .mt-md-3 { + margin-top: 1rem !important; + } + .mt-md-4 { + margin-top: 1.8rem !important; + } + .mt-md-5 { + margin-top: 3rem !important; + } + .mt-md-6 { + margin-top: 4rem !important; + } + .mt-md-7 { + margin-top: 5rem !important; + } + .mt-md-8 { + margin-top: 7.5rem !important; + } + .mt-md-9 { + margin-top: 10rem !important; + } + .mt-md-10 { + margin-top: 12.5rem !important; + } + .mt-md-11 { + margin-top: 15rem !important; + } + .mt-md-auto { + margin-top: auto !important; + } + .me-md-0 { + margin-left: 0 !important; + } + .me-md-1 { + margin-left: 0.25rem !important; + } + .me-md-2 { + margin-left: 0.5rem !important; + } + .me-md-3 { + margin-left: 1rem !important; + } + .me-md-4 { + margin-left: 1.8rem !important; + } + .me-md-5 { + margin-left: 3rem !important; + } + .me-md-6 { + margin-left: 4rem !important; + } + .me-md-7 { + margin-left: 5rem !important; + } + .me-md-8 { + margin-left: 7.5rem !important; + } + .me-md-9 { + margin-left: 10rem !important; + } + .me-md-10 { + margin-left: 12.5rem !important; + } + .me-md-11 { + margin-left: 15rem !important; + } + .me-md-auto { + margin-left: auto !important; + } + .mb-md-0 { + margin-bottom: 0 !important; + } + .mb-md-1 { + margin-bottom: 0.25rem !important; + } + .mb-md-2 { + margin-bottom: 0.5rem !important; + } + .mb-md-3 { + margin-bottom: 1rem !important; + } + .mb-md-4 { + margin-bottom: 1.8rem !important; + } + .mb-md-5 { + margin-bottom: 3rem !important; + } + .mb-md-6 { + margin-bottom: 4rem !important; + } + .mb-md-7 { + margin-bottom: 5rem !important; + } + .mb-md-8 { + margin-bottom: 7.5rem !important; + } + .mb-md-9 { + margin-bottom: 10rem !important; + } + .mb-md-10 { + margin-bottom: 12.5rem !important; + } + .mb-md-11 { + margin-bottom: 15rem !important; + } + .mb-md-auto { + margin-bottom: auto !important; + } + .ms-md-0 { + margin-right: 0 !important; + } + .ms-md-1 { + margin-right: 0.25rem !important; + } + .ms-md-2 { + margin-right: 0.5rem !important; + } + .ms-md-3 { + margin-right: 1rem !important; + } + .ms-md-4 { + margin-right: 1.8rem !important; + } + .ms-md-5 { + margin-right: 3rem !important; + } + .ms-md-6 { + margin-right: 4rem !important; + } + .ms-md-7 { + margin-right: 5rem !important; + } + .ms-md-8 { + margin-right: 7.5rem !important; + } + .ms-md-9 { + margin-right: 10rem !important; + } + .ms-md-10 { + margin-right: 12.5rem !important; + } + .ms-md-11 { + margin-right: 15rem !important; + } + .ms-md-auto { + margin-right: auto !important; + } + .m-md-n1 { + margin: -0.25rem !important; + } + .m-md-n2 { + margin: -0.5rem !important; + } + .m-md-n3 { + margin: -1rem !important; + } + .m-md-n4 { + margin: -1.8rem !important; + } + .m-md-n5 { + margin: -3rem !important; + } + .m-md-n6 { + margin: -4rem !important; + } + .m-md-n7 { + margin: -5rem !important; + } + .m-md-n8 { + margin: -7.5rem !important; + } + .m-md-n9 { + margin: -10rem !important; + } + .m-md-n10 { + margin: -12.5rem !important; + } + .m-md-n11 { + margin: -15rem !important; + } + .mx-md-n1 { + margin-left: -0.25rem !important; + margin-right: -0.25rem !important; + } + .mx-md-n2 { + margin-left: -0.5rem !important; + margin-right: -0.5rem !important; + } + .mx-md-n3 { + margin-left: -1rem !important; + margin-right: -1rem !important; + } + .mx-md-n4 { + margin-left: -1.8rem !important; + margin-right: -1.8rem !important; + } + .mx-md-n5 { + margin-left: -3rem !important; + margin-right: -3rem !important; + } + .mx-md-n6 { + margin-left: -4rem !important; + margin-right: -4rem !important; + } + .mx-md-n7 { + margin-left: -5rem !important; + margin-right: -5rem !important; + } + .mx-md-n8 { + margin-left: -7.5rem !important; + margin-right: -7.5rem !important; + } + .mx-md-n9 { + margin-left: -10rem !important; + margin-right: -10rem !important; + } + .mx-md-n10 { + margin-left: -12.5rem !important; + margin-right: -12.5rem !important; + } + .mx-md-n11 { + margin-left: -15rem !important; + margin-right: -15rem !important; + } + .my-md-n1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; + } + .my-md-n2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; + } + .my-md-n3 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; + } + .my-md-n4 { + margin-top: -1.8rem !important; + margin-bottom: -1.8rem !important; + } + .my-md-n5 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; + } + .my-md-n6 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; + } + .my-md-n7 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; + } + .my-md-n8 { + margin-top: -7.5rem !important; + margin-bottom: -7.5rem !important; + } + .my-md-n9 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; + } + .my-md-n10 { + margin-top: -12.5rem !important; + margin-bottom: -12.5rem !important; + } + .my-md-n11 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; + } + .mt-md-n1 { + margin-top: -0.25rem !important; + } + .mt-md-n2 { + margin-top: -0.5rem !important; + } + .mt-md-n3 { + margin-top: -1rem !important; + } + .mt-md-n4 { + margin-top: -1.8rem !important; + } + .mt-md-n5 { + margin-top: -3rem !important; + } + .mt-md-n6 { + margin-top: -4rem !important; + } + .mt-md-n7 { + margin-top: -5rem !important; + } + .mt-md-n8 { + margin-top: -7.5rem !important; + } + .mt-md-n9 { + margin-top: -10rem !important; + } + .mt-md-n10 { + margin-top: -12.5rem !important; + } + .mt-md-n11 { + margin-top: -15rem !important; + } + .me-md-n1 { + margin-left: -0.25rem !important; + } + .me-md-n2 { + margin-left: -0.5rem !important; + } + .me-md-n3 { + margin-left: -1rem !important; + } + .me-md-n4 { + margin-left: -1.8rem !important; + } + .me-md-n5 { + margin-left: -3rem !important; + } + .me-md-n6 { + margin-left: -4rem !important; + } + .me-md-n7 { + margin-left: -5rem !important; + } + .me-md-n8 { + margin-left: -7.5rem !important; + } + .me-md-n9 { + margin-left: -10rem !important; + } + .me-md-n10 { + margin-left: -12.5rem !important; + } + .me-md-n11 { + margin-left: -15rem !important; + } + .mb-md-n1 { + margin-bottom: -0.25rem !important; + } + .mb-md-n2 { + margin-bottom: -0.5rem !important; + } + .mb-md-n3 { + margin-bottom: -1rem !important; + } + .mb-md-n4 { + margin-bottom: -1.8rem !important; + } + .mb-md-n5 { + margin-bottom: -3rem !important; + } + .mb-md-n6 { + margin-bottom: -4rem !important; + } + .mb-md-n7 { + margin-bottom: -5rem !important; + } + .mb-md-n8 { + margin-bottom: -7.5rem !important; + } + .mb-md-n9 { + margin-bottom: -10rem !important; + } + .mb-md-n10 { + margin-bottom: -12.5rem !important; + } + .mb-md-n11 { + margin-bottom: -15rem !important; + } + .ms-md-n1 { + margin-right: -0.25rem !important; + } + .ms-md-n2 { + margin-right: -0.5rem !important; + } + .ms-md-n3 { + margin-right: -1rem !important; + } + .ms-md-n4 { + margin-right: -1.8rem !important; + } + .ms-md-n5 { + margin-right: -3rem !important; + } + .ms-md-n6 { + margin-right: -4rem !important; + } + .ms-md-n7 { + margin-right: -5rem !important; + } + .ms-md-n8 { + margin-right: -7.5rem !important; + } + .ms-md-n9 { + margin-right: -10rem !important; + } + .ms-md-n10 { + margin-right: -12.5rem !important; + } + .ms-md-n11 { + margin-right: -15rem !important; + } + .p-md-0 { + padding: 0 !important; + } + .p-md-1 { + padding: 0.25rem !important; + } + .p-md-2 { + padding: 0.5rem !important; + } + .p-md-3 { + padding: 1rem !important; + } + .p-md-4 { + padding: 1.8rem !important; + } + .p-md-5 { + padding: 3rem !important; + } + .p-md-6 { + padding: 4rem !important; + } + .p-md-7 { + padding: 5rem !important; + } + .p-md-8 { + padding: 7.5rem !important; + } + .p-md-9 { + padding: 10rem !important; + } + .p-md-10 { + padding: 12.5rem !important; + } + .p-md-11 { + padding: 15rem !important; + } + .px-md-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-md-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-md-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-md-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-md-4 { + padding-left: 1.8rem !important; + padding-right: 1.8rem !important; + } + .px-md-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .px-md-6 { + padding-left: 4rem !important; + padding-right: 4rem !important; + } + .px-md-7 { + padding-left: 5rem !important; + padding-right: 5rem !important; + } + .px-md-8 { + padding-left: 7.5rem !important; + padding-right: 7.5rem !important; + } + .px-md-9 { + padding-left: 10rem !important; + padding-right: 10rem !important; + } + .px-md-10 { + padding-left: 12.5rem !important; + padding-right: 12.5rem !important; + } + .px-md-11 { + padding-left: 15rem !important; + padding-right: 15rem !important; + } + .py-md-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-md-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-md-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-md-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-md-4 { + padding-top: 1.8rem !important; + padding-bottom: 1.8rem !important; + } + .py-md-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .py-md-6 { + padding-top: 4rem !important; + padding-bottom: 4rem !important; + } + .py-md-7 { + padding-top: 5rem !important; + padding-bottom: 5rem !important; + } + .py-md-8 { + padding-top: 7.5rem !important; + padding-bottom: 7.5rem !important; + } + .py-md-9 { + padding-top: 10rem !important; + padding-bottom: 10rem !important; + } + .py-md-10 { + padding-top: 12.5rem !important; + padding-bottom: 12.5rem !important; + } + .py-md-11 { + padding-top: 15rem !important; + padding-bottom: 15rem !important; + } + .pt-md-0 { + padding-top: 0 !important; + } + .pt-md-1 { + padding-top: 0.25rem !important; + } + .pt-md-2 { + padding-top: 0.5rem !important; + } + .pt-md-3 { + padding-top: 1rem !important; + } + .pt-md-4 { + padding-top: 1.8rem !important; + } + .pt-md-5 { + padding-top: 3rem !important; + } + .pt-md-6 { + padding-top: 4rem !important; + } + .pt-md-7 { + padding-top: 5rem !important; + } + .pt-md-8 { + padding-top: 7.5rem !important; + } + .pt-md-9 { + padding-top: 10rem !important; + } + .pt-md-10 { + padding-top: 12.5rem !important; + } + .pt-md-11 { + padding-top: 15rem !important; + } + .pe-md-0 { + padding-left: 0 !important; + } + .pe-md-1 { + padding-left: 0.25rem !important; + } + .pe-md-2 { + padding-left: 0.5rem !important; + } + .pe-md-3 { + padding-left: 1rem !important; + } + .pe-md-4 { + padding-left: 1.8rem !important; + } + .pe-md-5 { + padding-left: 3rem !important; + } + .pe-md-6 { + padding-left: 4rem !important; + } + .pe-md-7 { + padding-left: 5rem !important; + } + .pe-md-8 { + padding-left: 7.5rem !important; + } + .pe-md-9 { + padding-left: 10rem !important; + } + .pe-md-10 { + padding-left: 12.5rem !important; + } + .pe-md-11 { + padding-left: 15rem !important; + } + .pb-md-0 { + padding-bottom: 0 !important; + } + .pb-md-1 { + padding-bottom: 0.25rem !important; + } + .pb-md-2 { + padding-bottom: 0.5rem !important; + } + .pb-md-3 { + padding-bottom: 1rem !important; + } + .pb-md-4 { + padding-bottom: 1.8rem !important; + } + .pb-md-5 { + padding-bottom: 3rem !important; + } + .pb-md-6 { + padding-bottom: 4rem !important; + } + .pb-md-7 { + padding-bottom: 5rem !important; + } + .pb-md-8 { + padding-bottom: 7.5rem !important; + } + .pb-md-9 { + padding-bottom: 10rem !important; + } + .pb-md-10 { + padding-bottom: 12.5rem !important; + } + .pb-md-11 { + padding-bottom: 15rem !important; + } + .ps-md-0 { + padding-right: 0 !important; + } + .ps-md-1 { + padding-right: 0.25rem !important; + } + .ps-md-2 { + padding-right: 0.5rem !important; + } + .ps-md-3 { + padding-right: 1rem !important; + } + .ps-md-4 { + padding-right: 1.8rem !important; + } + .ps-md-5 { + padding-right: 3rem !important; + } + .ps-md-6 { + padding-right: 4rem !important; + } + .ps-md-7 { + padding-right: 5rem !important; + } + .ps-md-8 { + padding-right: 7.5rem !important; + } + .ps-md-9 { + padding-right: 10rem !important; + } + .ps-md-10 { + padding-right: 12.5rem !important; + } + .ps-md-11 { + padding-right: 15rem !important; + } + .fs-md--2 { + font-size: 0.69444rem !important; + } + .fs-md--1 { + font-size: 0.83333rem !important; + } + .fs-md-0 { + font-size: 1rem !important; + } + .fs-md-1 { + font-size: 1.2rem !important; + } + .fs-md-2 { + font-size: 1.44rem !important; + } + .fs-md-3 { + font-size: 1.728rem !important; + } + .fs-md-4 { + font-size: 2.0736rem !important; + } + .fs-md-5 { + font-size: 2.48832rem !important; + } + .fs-md-6 { + font-size: 2.98598rem !important; + } + .fs-md-7 { + font-size: 3.58318rem !important; + } + .fs-md-8 { + font-size: 4.29982rem !important; + } + .text-md-start { + text-align: right !important; + } + .text-md-end { + text-align: left !important; + } + .text-md-center { + text-align: center !important; + } + .rounded-md-top { + border-top-start-radius: 0.25rem !important; + border-top-end-radius: 0.25rem !important; + } + .rounded-md-top-lg { + border-top-start-radius: 0.5rem !important; + border-top-end-radius: 0.5rem !important; + } + .rounded-md-top-0 { + border-top-start-radius: 0 !important; + border-top-end-radius: 0 !important; + } + .rounded-md-end { + border-top-end-radius: 0.25rem !important; + border-bottom-end-radius: 0.25rem !important; + } + .rounded-md-end-lg { + border-top-end-radius: 0.5rem !important; + border-bottom-end-radius: 0.5rem !important; + } + .rounded-md-end-0 { + border-top-end-radius: 0 !important; + border-bottom-end-radius: 0 !important; + } + .rounded-md-bottom { + border-bottom-end-radius: 0.25rem !important; + border-bottom-start-radius: 0.25rem !important; + } + .rounded-md-bottom-lg { + border-bottom-end-radius: 0.5rem !important; + border-bottom-start-radius: 0.5rem !important; + } + .rounded-md-bottom-0 { + border-bottom-end-radius: 0 !important; + border-bottom-start-radius: 0 !important; + } + .rounded-md-start { + border-bottom-start-radius: 0.25rem !important; + border-top-start-radius: 0.25rem !important; + } + .rounded-md-start-lg { + border-bottom-start-radius: 0.5rem !important; + border-top-start-radius: 0.5rem !important; + } + .rounded-md-start-0 { + border-bottom-start-radius: 0 !important; + border-top-start-radius: 0 !important; + } + .opacity-md-0 { + opacity: 0 !important; + } + .opacity-md-25 { + opacity: 0.25 !important; + } + .opacity-md-50 { + opacity: 0.5 !important; + } + .opacity-md-75 { + opacity: 0.75 !important; + } + .opacity-md-85 { + opacity: 0.85 !important; + } + .opacity-md-100 { + opacity: 1 !important; + } + .text-md-facebook { + color: #3c5a99 !important; + } + .text-md-google-plus { + color: #dd4b39 !important; + } + .text-md-twitter { + color: #1da1f2 !important; + } + .text-md-linkedin { + color: #0077b5 !important; + } + .text-md-youtube { + color: #ff0000 !important; + } + .text-md-github { + color: #333 !important; + } + .text-md-theme { + color: #0BAC56 !important; + } + .text-md-black { + color: #000 !important; + } + .text-md-100 { + color: #F5F7FA !important; + } + .text-md-200 { + color: #EBEBED !important; + } + .text-md-300 { + color: #E1E0E4 !important; + } + .text-md-400 { + color: #D7D6DA !important; + } + .text-md-500 { + color: #CDCCD1 !important; + } + .text-md-600 { + color: #C3C1C8 !important; + } + .text-md-700 { + color: #7D7987 !important; + } + .text-md-800 { + color: #616368 !important; + } + .text-md-900 { + color: #4F5665 !important; + } + .text-md-1000 { + color: #112D58 !important; + } + .text-md-1100 { + color: #1F1534 !important; + } + .text-md-white { + color: #fff !important; + } + .max-vh-md-25 { + max-height: 25vh !important; + } + .max-vh-md-50 { + max-height: 50vh !important; + } + .max-vh-md-75 { + max-height: 75vh !important; + } + .max-vh-md-100 { + max-height: 100vh !important; + } + .border-md-x { + border-right: 1px solid #E1E0E4 !important; + border-left: 1px solid #E1E0E4 !important; + } + .border-md-x-0 { + border-right: 0 !important; + border-left: 0 !important; + } + .border-md-y { + border-top: 1px solid #E1E0E4 !important; + border-bottom: 1px solid #E1E0E4 !important; + } + .border-md-y-0 { + border-top: 0 !important; + border-bottom: 0 !important; + } + .border-md-dashed { + border: 1px dashed #E1E0E4 !important; + } + .border-md-dashed-top { + border-top: 1px dashed #E1E0E4 !important; + } + .border-md-dashed-end { + border-left: 1px dashed #E1E0E4 !important; + } + .border-md-dashed-start { + border-right: 1px dashed #E1E0E4 !important; + } + .border-md-dashed-bottom { + border-bottom: 1px dashed #E1E0E4 !important; + } + .border-md-dashed-x { + border-right: 1px dashed #E1E0E4 !important; + border-left: 1px dashed #E1E0E4 !important; + } + .border-md-dashed-y { + border-top: 1px dashed #E1E0E4 !important; + border-bottom: 1px dashed #E1E0E4 !important; + } + .rounded-md-0 { + border-radius: 0 !important; + } +} + +@media (min-width: 992px) { + .float-lg-start { + float: right !important; + } + .float-lg-end { + float: left !important; + } + .float-lg-none { + float: none !important; + } + .d-lg-inline { + display: inline !important; + } + .d-lg-inline-block { + display: inline-block !important; + } + .d-lg-block { + display: block !important; + } + .d-lg-grid { + display: grid !important; + } + .d-lg-table { + display: table !important; + } + .d-lg-table-row { + display: table-row !important; + } + .d-lg-table-cell { + display: table-cell !important; + } + .d-lg-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + } + .d-lg-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } + .d-lg-none { + display: none !important; + } + .position-lg-static { + position: static !important; + } + .position-lg-absolute { + position: absolute !important; + } + .position-lg-relative { + position: relative !important; + } + .position-lg-fixed { + position: fixed !important; + } + .position-lg-sticky { + position: -webkit-sticky !important; + position: sticky !important; + } + .translate-lg-middle { + -webkit-transform: translateX(50%) translateY(-50%) !important; + -ms-transform: translateX(50%) translateY(-50%) !important; + transform: translateX(50%) translateY(-50%) !important; + } + .translate-lg-middle-x { + -webkit-transform: translateX(50%) !important; + -ms-transform: translateX(50%) !important; + transform: translateX(50%) !important; + } + .translate-lg-middle-y { + -webkit-transform: translateY(-50%) !important; + -ms-transform: translateY(-50%) !important; + transform: translateY(-50%) !important; + } + .border-lg { + border: 1px solid #E1E0E4 !important; + } + .border-lg-0 { + border: 0 !important; + } + .border-lg-top { + border-top: 1px solid #E1E0E4 !important; + } + .border-lg-top-0 { + border-top: 0 !important; + } + .border-lg-end { + border-left: 1px solid #E1E0E4 !important; + } + .border-lg-end-0 { + border-left: 0 !important; + } + .border-lg-bottom { + border-bottom: 1px solid #E1E0E4 !important; + } + .border-lg-bottom-0 { + border-bottom: 0 !important; + } + .border-lg-start { + border-right: 1px solid #E1E0E4 !important; + } + .border-lg-start-0 { + border-right: 0 !important; + } + .w-lg-25 { + width: 25% !important; + } + .w-lg-50 { + width: 50% !important; + } + .w-lg-75 { + width: 75% !important; + } + .w-lg-100 { + width: 100% !important; + } + .w-lg-auto { + width: auto !important; + } + .vw-lg-25 { + width: 25vw !important; + } + .vw-lg-50 { + width: 50vw !important; + } + .vw-lg-75 { + width: 75vw !important; + } + .vw-lg-100 { + width: 100vw !important; + } + .h-lg-25 { + height: 25% !important; + } + .h-lg-50 { + height: 50% !important; + } + .h-lg-75 { + height: 75% !important; + } + .h-lg-100 { + height: 100% !important; + } + .h-lg-auto { + height: auto !important; + } + .vh-lg-25 { + height: 25vh !important; + } + .vh-lg-50 { + height: 50vh !important; + } + .vh-lg-75 { + height: 75vh !important; + } + .vh-lg-100 { + height: 100vh !important; + } + .min-vh-lg-25 { + min-height: 25vh !important; + } + .min-vh-lg-50 { + min-height: 50vh !important; + } + .min-vh-lg-75 { + min-height: 75vh !important; + } + .min-vh-lg-100 { + min-height: 100vh !important; + } + .flex-lg-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } + .flex-lg-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-lg-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-lg-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-lg-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-lg-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-lg-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + .flex-lg-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; + } + .flex-lg-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; + } + .flex-lg-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-lg-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-lg-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .gap-lg-0 { + gap: 0 !important; + } + .gap-lg-1 { + gap: 0.25rem !important; + } + .gap-lg-2 { + gap: 0.5rem !important; + } + .gap-lg-3 { + gap: 1rem !important; + } + .gap-lg-4 { + gap: 1.8rem !important; + } + .gap-lg-5 { + gap: 3rem !important; + } + .gap-lg-6 { + gap: 4rem !important; + } + .gap-lg-7 { + gap: 5rem !important; + } + .gap-lg-8 { + gap: 7.5rem !important; + } + .gap-lg-9 { + gap: 10rem !important; + } + .gap-lg-10 { + gap: 12.5rem !important; + } + .gap-lg-11 { + gap: 15rem !important; + } + .justify-content-lg-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-lg-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-lg-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-lg-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-lg-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .justify-content-lg-evenly { + -webkit-box-pack: space-evenly !important; + -ms-flex-pack: space-evenly !important; + justify-content: space-evenly !important; + } + .align-items-lg-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-lg-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-lg-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-lg-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-lg-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-lg-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-lg-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-lg-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-lg-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-lg-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-lg-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-lg-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-lg-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-lg-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-lg-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-lg-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-lg-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } + .order-lg-first { + -webkit-box-ordinal-group: 0 !important; + -ms-flex-order: -1 !important; + order: -1 !important; + } + .order-lg-0 { + -webkit-box-ordinal-group: 1 !important; + -ms-flex-order: 0 !important; + order: 0 !important; + } + .order-lg-1 { + -webkit-box-ordinal-group: 2 !important; + -ms-flex-order: 1 !important; + order: 1 !important; + } + .order-lg-2 { + -webkit-box-ordinal-group: 3 !important; + -ms-flex-order: 2 !important; + order: 2 !important; + } + .order-lg-3 { + -webkit-box-ordinal-group: 4 !important; + -ms-flex-order: 3 !important; + order: 3 !important; + } + .order-lg-4 { + -webkit-box-ordinal-group: 5 !important; + -ms-flex-order: 4 !important; + order: 4 !important; + } + .order-lg-5 { + -webkit-box-ordinal-group: 6 !important; + -ms-flex-order: 5 !important; + order: 5 !important; + } + .order-lg-last { + -webkit-box-ordinal-group: 7 !important; + -ms-flex-order: 6 !important; + order: 6 !important; + } + .m-lg-0 { + margin: 0 !important; + } + .m-lg-1 { + margin: 0.25rem !important; + } + .m-lg-2 { + margin: 0.5rem !important; + } + .m-lg-3 { + margin: 1rem !important; + } + .m-lg-4 { + margin: 1.8rem !important; + } + .m-lg-5 { + margin: 3rem !important; + } + .m-lg-6 { + margin: 4rem !important; + } + .m-lg-7 { + margin: 5rem !important; + } + .m-lg-8 { + margin: 7.5rem !important; + } + .m-lg-9 { + margin: 10rem !important; + } + .m-lg-10 { + margin: 12.5rem !important; + } + .m-lg-11 { + margin: 15rem !important; + } + .m-lg-auto { + margin: auto !important; + } + .mx-lg-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-lg-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-lg-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-lg-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-lg-4 { + margin-left: 1.8rem !important; + margin-right: 1.8rem !important; + } + .mx-lg-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-lg-6 { + margin-left: 4rem !important; + margin-right: 4rem !important; + } + .mx-lg-7 { + margin-left: 5rem !important; + margin-right: 5rem !important; + } + .mx-lg-8 { + margin-left: 7.5rem !important; + margin-right: 7.5rem !important; + } + .mx-lg-9 { + margin-left: 10rem !important; + margin-right: 10rem !important; + } + .mx-lg-10 { + margin-left: 12.5rem !important; + margin-right: 12.5rem !important; + } + .mx-lg-11 { + margin-left: 15rem !important; + margin-right: 15rem !important; + } + .mx-lg-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-lg-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-lg-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-lg-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-lg-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-lg-4 { + margin-top: 1.8rem !important; + margin-bottom: 1.8rem !important; + } + .my-lg-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-lg-6 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; + } + .my-lg-7 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; + } + .my-lg-8 { + margin-top: 7.5rem !important; + margin-bottom: 7.5rem !important; + } + .my-lg-9 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; + } + .my-lg-10 { + margin-top: 12.5rem !important; + margin-bottom: 12.5rem !important; + } + .my-lg-11 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; + } + .my-lg-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-lg-0 { + margin-top: 0 !important; + } + .mt-lg-1 { + margin-top: 0.25rem !important; + } + .mt-lg-2 { + margin-top: 0.5rem !important; + } + .mt-lg-3 { + margin-top: 1rem !important; + } + .mt-lg-4 { + margin-top: 1.8rem !important; + } + .mt-lg-5 { + margin-top: 3rem !important; + } + .mt-lg-6 { + margin-top: 4rem !important; + } + .mt-lg-7 { + margin-top: 5rem !important; + } + .mt-lg-8 { + margin-top: 7.5rem !important; + } + .mt-lg-9 { + margin-top: 10rem !important; + } + .mt-lg-10 { + margin-top: 12.5rem !important; + } + .mt-lg-11 { + margin-top: 15rem !important; + } + .mt-lg-auto { + margin-top: auto !important; + } + .me-lg-0 { + margin-left: 0 !important; + } + .me-lg-1 { + margin-left: 0.25rem !important; + } + .me-lg-2 { + margin-left: 0.5rem !important; + } + .me-lg-3 { + margin-left: 1rem !important; + } + .me-lg-4 { + margin-left: 1.8rem !important; + } + .me-lg-5 { + margin-left: 3rem !important; + } + .me-lg-6 { + margin-left: 4rem !important; + } + .me-lg-7 { + margin-left: 5rem !important; + } + .me-lg-8 { + margin-left: 7.5rem !important; + } + .me-lg-9 { + margin-left: 10rem !important; + } + .me-lg-10 { + margin-left: 12.5rem !important; + } + .me-lg-11 { + margin-left: 15rem !important; + } + .me-lg-auto { + margin-left: auto !important; + } + .mb-lg-0 { + margin-bottom: 0 !important; + } + .mb-lg-1 { + margin-bottom: 0.25rem !important; + } + .mb-lg-2 { + margin-bottom: 0.5rem !important; + } + .mb-lg-3 { + margin-bottom: 1rem !important; + } + .mb-lg-4 { + margin-bottom: 1.8rem !important; + } + .mb-lg-5 { + margin-bottom: 3rem !important; + } + .mb-lg-6 { + margin-bottom: 4rem !important; + } + .mb-lg-7 { + margin-bottom: 5rem !important; + } + .mb-lg-8 { + margin-bottom: 7.5rem !important; + } + .mb-lg-9 { + margin-bottom: 10rem !important; + } + .mb-lg-10 { + margin-bottom: 12.5rem !important; + } + .mb-lg-11 { + margin-bottom: 15rem !important; + } + .mb-lg-auto { + margin-bottom: auto !important; + } + .ms-lg-0 { + margin-right: 0 !important; + } + .ms-lg-1 { + margin-right: 0.25rem !important; + } + .ms-lg-2 { + margin-right: 0.5rem !important; + } + .ms-lg-3 { + margin-right: 1rem !important; + } + .ms-lg-4 { + margin-right: 1.8rem !important; + } + .ms-lg-5 { + margin-right: 3rem !important; + } + .ms-lg-6 { + margin-right: 4rem !important; + } + .ms-lg-7 { + margin-right: 5rem !important; + } + .ms-lg-8 { + margin-right: 7.5rem !important; + } + .ms-lg-9 { + margin-right: 10rem !important; + } + .ms-lg-10 { + margin-right: 12.5rem !important; + } + .ms-lg-11 { + margin-right: 15rem !important; + } + .ms-lg-auto { + margin-right: auto !important; + } + .m-lg-n1 { + margin: -0.25rem !important; + } + .m-lg-n2 { + margin: -0.5rem !important; + } + .m-lg-n3 { + margin: -1rem !important; + } + .m-lg-n4 { + margin: -1.8rem !important; + } + .m-lg-n5 { + margin: -3rem !important; + } + .m-lg-n6 { + margin: -4rem !important; + } + .m-lg-n7 { + margin: -5rem !important; + } + .m-lg-n8 { + margin: -7.5rem !important; + } + .m-lg-n9 { + margin: -10rem !important; + } + .m-lg-n10 { + margin: -12.5rem !important; + } + .m-lg-n11 { + margin: -15rem !important; + } + .mx-lg-n1 { + margin-left: -0.25rem !important; + margin-right: -0.25rem !important; + } + .mx-lg-n2 { + margin-left: -0.5rem !important; + margin-right: -0.5rem !important; + } + .mx-lg-n3 { + margin-left: -1rem !important; + margin-right: -1rem !important; + } + .mx-lg-n4 { + margin-left: -1.8rem !important; + margin-right: -1.8rem !important; + } + .mx-lg-n5 { + margin-left: -3rem !important; + margin-right: -3rem !important; + } + .mx-lg-n6 { + margin-left: -4rem !important; + margin-right: -4rem !important; + } + .mx-lg-n7 { + margin-left: -5rem !important; + margin-right: -5rem !important; + } + .mx-lg-n8 { + margin-left: -7.5rem !important; + margin-right: -7.5rem !important; + } + .mx-lg-n9 { + margin-left: -10rem !important; + margin-right: -10rem !important; + } + .mx-lg-n10 { + margin-left: -12.5rem !important; + margin-right: -12.5rem !important; + } + .mx-lg-n11 { + margin-left: -15rem !important; + margin-right: -15rem !important; + } + .my-lg-n1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; + } + .my-lg-n2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; + } + .my-lg-n3 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; + } + .my-lg-n4 { + margin-top: -1.8rem !important; + margin-bottom: -1.8rem !important; + } + .my-lg-n5 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; + } + .my-lg-n6 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; + } + .my-lg-n7 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; + } + .my-lg-n8 { + margin-top: -7.5rem !important; + margin-bottom: -7.5rem !important; + } + .my-lg-n9 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; + } + .my-lg-n10 { + margin-top: -12.5rem !important; + margin-bottom: -12.5rem !important; + } + .my-lg-n11 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; + } + .mt-lg-n1 { + margin-top: -0.25rem !important; + } + .mt-lg-n2 { + margin-top: -0.5rem !important; + } + .mt-lg-n3 { + margin-top: -1rem !important; + } + .mt-lg-n4 { + margin-top: -1.8rem !important; + } + .mt-lg-n5 { + margin-top: -3rem !important; + } + .mt-lg-n6 { + margin-top: -4rem !important; + } + .mt-lg-n7 { + margin-top: -5rem !important; + } + .mt-lg-n8 { + margin-top: -7.5rem !important; + } + .mt-lg-n9 { + margin-top: -10rem !important; + } + .mt-lg-n10 { + margin-top: -12.5rem !important; + } + .mt-lg-n11 { + margin-top: -15rem !important; + } + .me-lg-n1 { + margin-left: -0.25rem !important; + } + .me-lg-n2 { + margin-left: -0.5rem !important; + } + .me-lg-n3 { + margin-left: -1rem !important; + } + .me-lg-n4 { + margin-left: -1.8rem !important; + } + .me-lg-n5 { + margin-left: -3rem !important; + } + .me-lg-n6 { + margin-left: -4rem !important; + } + .me-lg-n7 { + margin-left: -5rem !important; + } + .me-lg-n8 { + margin-left: -7.5rem !important; + } + .me-lg-n9 { + margin-left: -10rem !important; + } + .me-lg-n10 { + margin-left: -12.5rem !important; + } + .me-lg-n11 { + margin-left: -15rem !important; + } + .mb-lg-n1 { + margin-bottom: -0.25rem !important; + } + .mb-lg-n2 { + margin-bottom: -0.5rem !important; + } + .mb-lg-n3 { + margin-bottom: -1rem !important; + } + .mb-lg-n4 { + margin-bottom: -1.8rem !important; + } + .mb-lg-n5 { + margin-bottom: -3rem !important; + } + .mb-lg-n6 { + margin-bottom: -4rem !important; + } + .mb-lg-n7 { + margin-bottom: -5rem !important; + } + .mb-lg-n8 { + margin-bottom: -7.5rem !important; + } + .mb-lg-n9 { + margin-bottom: -10rem !important; + } + .mb-lg-n10 { + margin-bottom: -12.5rem !important; + } + .mb-lg-n11 { + margin-bottom: -15rem !important; + } + .ms-lg-n1 { + margin-right: -0.25rem !important; + } + .ms-lg-n2 { + margin-right: -0.5rem !important; + } + .ms-lg-n3 { + margin-right: -1rem !important; + } + .ms-lg-n4 { + margin-right: -1.8rem !important; + } + .ms-lg-n5 { + margin-right: -3rem !important; + } + .ms-lg-n6 { + margin-right: -4rem !important; + } + .ms-lg-n7 { + margin-right: -5rem !important; + } + .ms-lg-n8 { + margin-right: -7.5rem !important; + } + .ms-lg-n9 { + margin-right: -10rem !important; + } + .ms-lg-n10 { + margin-right: -12.5rem !important; + } + .ms-lg-n11 { + margin-right: -15rem !important; + } + .p-lg-0 { + padding: 0 !important; + } + .p-lg-1 { + padding: 0.25rem !important; + } + .p-lg-2 { + padding: 0.5rem !important; + } + .p-lg-3 { + padding: 1rem !important; + } + .p-lg-4 { + padding: 1.8rem !important; + } + .p-lg-5 { + padding: 3rem !important; + } + .p-lg-6 { + padding: 4rem !important; + } + .p-lg-7 { + padding: 5rem !important; + } + .p-lg-8 { + padding: 7.5rem !important; + } + .p-lg-9 { + padding: 10rem !important; + } + .p-lg-10 { + padding: 12.5rem !important; + } + .p-lg-11 { + padding: 15rem !important; + } + .px-lg-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-lg-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-lg-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-lg-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-lg-4 { + padding-left: 1.8rem !important; + padding-right: 1.8rem !important; + } + .px-lg-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .px-lg-6 { + padding-left: 4rem !important; + padding-right: 4rem !important; + } + .px-lg-7 { + padding-left: 5rem !important; + padding-right: 5rem !important; + } + .px-lg-8 { + padding-left: 7.5rem !important; + padding-right: 7.5rem !important; + } + .px-lg-9 { + padding-left: 10rem !important; + padding-right: 10rem !important; + } + .px-lg-10 { + padding-left: 12.5rem !important; + padding-right: 12.5rem !important; + } + .px-lg-11 { + padding-left: 15rem !important; + padding-right: 15rem !important; + } + .py-lg-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-lg-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-lg-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-lg-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-lg-4 { + padding-top: 1.8rem !important; + padding-bottom: 1.8rem !important; + } + .py-lg-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .py-lg-6 { + padding-top: 4rem !important; + padding-bottom: 4rem !important; + } + .py-lg-7 { + padding-top: 5rem !important; + padding-bottom: 5rem !important; + } + .py-lg-8 { + padding-top: 7.5rem !important; + padding-bottom: 7.5rem !important; + } + .py-lg-9 { + padding-top: 10rem !important; + padding-bottom: 10rem !important; + } + .py-lg-10 { + padding-top: 12.5rem !important; + padding-bottom: 12.5rem !important; + } + .py-lg-11 { + padding-top: 15rem !important; + padding-bottom: 15rem !important; + } + .pt-lg-0 { + padding-top: 0 !important; + } + .pt-lg-1 { + padding-top: 0.25rem !important; + } + .pt-lg-2 { + padding-top: 0.5rem !important; + } + .pt-lg-3 { + padding-top: 1rem !important; + } + .pt-lg-4 { + padding-top: 1.8rem !important; + } + .pt-lg-5 { + padding-top: 3rem !important; + } + .pt-lg-6 { + padding-top: 4rem !important; + } + .pt-lg-7 { + padding-top: 5rem !important; + } + .pt-lg-8 { + padding-top: 7.5rem !important; + } + .pt-lg-9 { + padding-top: 10rem !important; + } + .pt-lg-10 { + padding-top: 12.5rem !important; + } + .pt-lg-11 { + padding-top: 15rem !important; + } + .pe-lg-0 { + padding-left: 0 !important; + } + .pe-lg-1 { + padding-left: 0.25rem !important; + } + .pe-lg-2 { + padding-left: 0.5rem !important; + } + .pe-lg-3 { + padding-left: 1rem !important; + } + .pe-lg-4 { + padding-left: 1.8rem !important; + } + .pe-lg-5 { + padding-left: 3rem !important; + } + .pe-lg-6 { + padding-left: 4rem !important; + } + .pe-lg-7 { + padding-left: 5rem !important; + } + .pe-lg-8 { + padding-left: 7.5rem !important; + } + .pe-lg-9 { + padding-left: 10rem !important; + } + .pe-lg-10 { + padding-left: 12.5rem !important; + } + .pe-lg-11 { + padding-left: 15rem !important; + } + .pb-lg-0 { + padding-bottom: 0 !important; + } + .pb-lg-1 { + padding-bottom: 0.25rem !important; + } + .pb-lg-2 { + padding-bottom: 0.5rem !important; + } + .pb-lg-3 { + padding-bottom: 1rem !important; + } + .pb-lg-4 { + padding-bottom: 1.8rem !important; + } + .pb-lg-5 { + padding-bottom: 3rem !important; + } + .pb-lg-6 { + padding-bottom: 4rem !important; + } + .pb-lg-7 { + padding-bottom: 5rem !important; + } + .pb-lg-8 { + padding-bottom: 7.5rem !important; + } + .pb-lg-9 { + padding-bottom: 10rem !important; + } + .pb-lg-10 { + padding-bottom: 12.5rem !important; + } + .pb-lg-11 { + padding-bottom: 15rem !important; + } + .ps-lg-0 { + padding-right: 0 !important; + } + .ps-lg-1 { + padding-right: 0.25rem !important; + } + .ps-lg-2 { + padding-right: 0.5rem !important; + } + .ps-lg-3 { + padding-right: 1rem !important; + } + .ps-lg-4 { + padding-right: 1.8rem !important; + } + .ps-lg-5 { + padding-right: 3rem !important; + } + .ps-lg-6 { + padding-right: 4rem !important; + } + .ps-lg-7 { + padding-right: 5rem !important; + } + .ps-lg-8 { + padding-right: 7.5rem !important; + } + .ps-lg-9 { + padding-right: 10rem !important; + } + .ps-lg-10 { + padding-right: 12.5rem !important; + } + .ps-lg-11 { + padding-right: 15rem !important; + } + .fs-lg--2 { + font-size: 0.69444rem !important; + } + .fs-lg--1 { + font-size: 0.83333rem !important; + } + .fs-lg-0 { + font-size: 1rem !important; + } + .fs-lg-1 { + font-size: 1.2rem !important; + } + .fs-lg-2 { + font-size: 1.44rem !important; + } + .fs-lg-3 { + font-size: 1.728rem !important; + } + .fs-lg-4 { + font-size: 2.0736rem !important; + } + .fs-lg-5 { + font-size: 2.48832rem !important; + } + .fs-lg-6 { + font-size: 2.98598rem !important; + } + .fs-lg-7 { + font-size: 3.58318rem !important; + } + .fs-lg-8 { + font-size: 4.29982rem !important; + } + .text-lg-start { + text-align: right !important; + } + .text-lg-end { + text-align: left !important; + } + .text-lg-center { + text-align: center !important; + } + .rounded-lg-top { + border-top-start-radius: 0.25rem !important; + border-top-end-radius: 0.25rem !important; + } + .rounded-lg-top-lg { + border-top-start-radius: 0.5rem !important; + border-top-end-radius: 0.5rem !important; + } + .rounded-lg-top-0 { + border-top-start-radius: 0 !important; + border-top-end-radius: 0 !important; + } + .rounded-lg-end { + border-top-end-radius: 0.25rem !important; + border-bottom-end-radius: 0.25rem !important; + } + .rounded-lg-end-lg { + border-top-end-radius: 0.5rem !important; + border-bottom-end-radius: 0.5rem !important; + } + .rounded-lg-end-0 { + border-top-end-radius: 0 !important; + border-bottom-end-radius: 0 !important; + } + .rounded-lg-bottom { + border-bottom-end-radius: 0.25rem !important; + border-bottom-start-radius: 0.25rem !important; + } + .rounded-lg-bottom-lg { + border-bottom-end-radius: 0.5rem !important; + border-bottom-start-radius: 0.5rem !important; + } + .rounded-lg-bottom-0 { + border-bottom-end-radius: 0 !important; + border-bottom-start-radius: 0 !important; + } + .rounded-lg-start { + border-bottom-start-radius: 0.25rem !important; + border-top-start-radius: 0.25rem !important; + } + .rounded-lg-start-lg { + border-bottom-start-radius: 0.5rem !important; + border-top-start-radius: 0.5rem !important; + } + .rounded-lg-start-0 { + border-bottom-start-radius: 0 !important; + border-top-start-radius: 0 !important; + } + .opacity-lg-0 { + opacity: 0 !important; + } + .opacity-lg-25 { + opacity: 0.25 !important; + } + .opacity-lg-50 { + opacity: 0.5 !important; + } + .opacity-lg-75 { + opacity: 0.75 !important; + } + .opacity-lg-85 { + opacity: 0.85 !important; + } + .opacity-lg-100 { + opacity: 1 !important; + } + .text-lg-facebook { + color: #3c5a99 !important; + } + .text-lg-google-plus { + color: #dd4b39 !important; + } + .text-lg-twitter { + color: #1da1f2 !important; + } + .text-lg-linkedin { + color: #0077b5 !important; + } + .text-lg-youtube { + color: #ff0000 !important; + } + .text-lg-github { + color: #333 !important; + } + .text-lg-theme { + color: #0BAC56 !important; + } + .text-lg-black { + color: #000 !important; + } + .text-lg-100 { + color: #F5F7FA !important; + } + .text-lg-200 { + color: #EBEBED !important; + } + .text-lg-300 { + color: #E1E0E4 !important; + } + .text-lg-400 { + color: #D7D6DA !important; + } + .text-lg-500 { + color: #CDCCD1 !important; + } + .text-lg-600 { + color: #C3C1C8 !important; + } + .text-lg-700 { + color: #7D7987 !important; + } + .text-lg-800 { + color: #616368 !important; + } + .text-lg-900 { + color: #4F5665 !important; + } + .text-lg-1000 { + color: #112D58 !important; + } + .text-lg-1100 { + color: #1F1534 !important; + } + .text-lg-white { + color: #fff !important; + } + .max-vh-lg-25 { + max-height: 25vh !important; + } + .max-vh-lg-50 { + max-height: 50vh !important; + } + .max-vh-lg-75 { + max-height: 75vh !important; + } + .max-vh-lg-100 { + max-height: 100vh !important; + } + .border-lg-x { + border-right: 1px solid #E1E0E4 !important; + border-left: 1px solid #E1E0E4 !important; + } + .border-lg-x-0 { + border-right: 0 !important; + border-left: 0 !important; + } + .border-lg-y { + border-top: 1px solid #E1E0E4 !important; + border-bottom: 1px solid #E1E0E4 !important; + } + .border-lg-y-0 { + border-top: 0 !important; + border-bottom: 0 !important; + } + .border-lg-dashed { + border: 1px dashed #E1E0E4 !important; + } + .border-lg-dashed-top { + border-top: 1px dashed #E1E0E4 !important; + } + .border-lg-dashed-end { + border-left: 1px dashed #E1E0E4 !important; + } + .border-lg-dashed-start { + border-right: 1px dashed #E1E0E4 !important; + } + .border-lg-dashed-bottom { + border-bottom: 1px dashed #E1E0E4 !important; + } + .border-lg-dashed-x { + border-right: 1px dashed #E1E0E4 !important; + border-left: 1px dashed #E1E0E4 !important; + } + .border-lg-dashed-y { + border-top: 1px dashed #E1E0E4 !important; + border-bottom: 1px dashed #E1E0E4 !important; + } + .rounded-lg-0 { + border-radius: 0 !important; + } +} + +@media (min-width: 1200px) { + .float-xl-start { + float: right !important; + } + .float-xl-end { + float: left !important; + } + .float-xl-none { + float: none !important; + } + .d-xl-inline { + display: inline !important; + } + .d-xl-inline-block { + display: inline-block !important; + } + .d-xl-block { + display: block !important; + } + .d-xl-grid { + display: grid !important; + } + .d-xl-table { + display: table !important; + } + .d-xl-table-row { + display: table-row !important; + } + .d-xl-table-cell { + display: table-cell !important; + } + .d-xl-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + } + .d-xl-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } + .d-xl-none { + display: none !important; + } + .position-xl-static { + position: static !important; + } + .position-xl-absolute { + position: absolute !important; + } + .position-xl-relative { + position: relative !important; + } + .position-xl-fixed { + position: fixed !important; + } + .position-xl-sticky { + position: -webkit-sticky !important; + position: sticky !important; + } + .translate-xl-middle { + -webkit-transform: translateX(50%) translateY(-50%) !important; + -ms-transform: translateX(50%) translateY(-50%) !important; + transform: translateX(50%) translateY(-50%) !important; + } + .translate-xl-middle-x { + -webkit-transform: translateX(50%) !important; + -ms-transform: translateX(50%) !important; + transform: translateX(50%) !important; + } + .translate-xl-middle-y { + -webkit-transform: translateY(-50%) !important; + -ms-transform: translateY(-50%) !important; + transform: translateY(-50%) !important; + } + .border-xl { + border: 1px solid #E1E0E4 !important; + } + .border-xl-0 { + border: 0 !important; + } + .border-xl-top { + border-top: 1px solid #E1E0E4 !important; + } + .border-xl-top-0 { + border-top: 0 !important; + } + .border-xl-end { + border-left: 1px solid #E1E0E4 !important; + } + .border-xl-end-0 { + border-left: 0 !important; + } + .border-xl-bottom { + border-bottom: 1px solid #E1E0E4 !important; + } + .border-xl-bottom-0 { + border-bottom: 0 !important; + } + .border-xl-start { + border-right: 1px solid #E1E0E4 !important; + } + .border-xl-start-0 { + border-right: 0 !important; + } + .w-xl-25 { + width: 25% !important; + } + .w-xl-50 { + width: 50% !important; + } + .w-xl-75 { + width: 75% !important; + } + .w-xl-100 { + width: 100% !important; + } + .w-xl-auto { + width: auto !important; + } + .vw-xl-25 { + width: 25vw !important; + } + .vw-xl-50 { + width: 50vw !important; + } + .vw-xl-75 { + width: 75vw !important; + } + .vw-xl-100 { + width: 100vw !important; + } + .h-xl-25 { + height: 25% !important; + } + .h-xl-50 { + height: 50% !important; + } + .h-xl-75 { + height: 75% !important; + } + .h-xl-100 { + height: 100% !important; + } + .h-xl-auto { + height: auto !important; + } + .vh-xl-25 { + height: 25vh !important; + } + .vh-xl-50 { + height: 50vh !important; + } + .vh-xl-75 { + height: 75vh !important; + } + .vh-xl-100 { + height: 100vh !important; + } + .min-vh-xl-25 { + min-height: 25vh !important; + } + .min-vh-xl-50 { + min-height: 50vh !important; + } + .min-vh-xl-75 { + min-height: 75vh !important; + } + .min-vh-xl-100 { + min-height: 100vh !important; + } + .flex-xl-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } + .flex-xl-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-xl-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-xl-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-xl-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-xl-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-xl-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + .flex-xl-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; + } + .flex-xl-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; + } + .flex-xl-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-xl-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-xl-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .gap-xl-0 { + gap: 0 !important; + } + .gap-xl-1 { + gap: 0.25rem !important; + } + .gap-xl-2 { + gap: 0.5rem !important; + } + .gap-xl-3 { + gap: 1rem !important; + } + .gap-xl-4 { + gap: 1.8rem !important; + } + .gap-xl-5 { + gap: 3rem !important; + } + .gap-xl-6 { + gap: 4rem !important; + } + .gap-xl-7 { + gap: 5rem !important; + } + .gap-xl-8 { + gap: 7.5rem !important; + } + .gap-xl-9 { + gap: 10rem !important; + } + .gap-xl-10 { + gap: 12.5rem !important; + } + .gap-xl-11 { + gap: 15rem !important; + } + .justify-content-xl-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-xl-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-xl-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-xl-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-xl-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .justify-content-xl-evenly { + -webkit-box-pack: space-evenly !important; + -ms-flex-pack: space-evenly !important; + justify-content: space-evenly !important; + } + .align-items-xl-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-xl-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-xl-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-xl-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-xl-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-xl-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-xl-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-xl-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-xl-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-xl-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-xl-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-xl-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-xl-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-xl-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-xl-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-xl-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-xl-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } + .order-xl-first { + -webkit-box-ordinal-group: 0 !important; + -ms-flex-order: -1 !important; + order: -1 !important; + } + .order-xl-0 { + -webkit-box-ordinal-group: 1 !important; + -ms-flex-order: 0 !important; + order: 0 !important; + } + .order-xl-1 { + -webkit-box-ordinal-group: 2 !important; + -ms-flex-order: 1 !important; + order: 1 !important; + } + .order-xl-2 { + -webkit-box-ordinal-group: 3 !important; + -ms-flex-order: 2 !important; + order: 2 !important; + } + .order-xl-3 { + -webkit-box-ordinal-group: 4 !important; + -ms-flex-order: 3 !important; + order: 3 !important; + } + .order-xl-4 { + -webkit-box-ordinal-group: 5 !important; + -ms-flex-order: 4 !important; + order: 4 !important; + } + .order-xl-5 { + -webkit-box-ordinal-group: 6 !important; + -ms-flex-order: 5 !important; + order: 5 !important; + } + .order-xl-last { + -webkit-box-ordinal-group: 7 !important; + -ms-flex-order: 6 !important; + order: 6 !important; + } + .m-xl-0 { + margin: 0 !important; + } + .m-xl-1 { + margin: 0.25rem !important; + } + .m-xl-2 { + margin: 0.5rem !important; + } + .m-xl-3 { + margin: 1rem !important; + } + .m-xl-4 { + margin: 1.8rem !important; + } + .m-xl-5 { + margin: 3rem !important; + } + .m-xl-6 { + margin: 4rem !important; + } + .m-xl-7 { + margin: 5rem !important; + } + .m-xl-8 { + margin: 7.5rem !important; + } + .m-xl-9 { + margin: 10rem !important; + } + .m-xl-10 { + margin: 12.5rem !important; + } + .m-xl-11 { + margin: 15rem !important; + } + .m-xl-auto { + margin: auto !important; + } + .mx-xl-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-xl-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-xl-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-xl-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-xl-4 { + margin-left: 1.8rem !important; + margin-right: 1.8rem !important; + } + .mx-xl-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-xl-6 { + margin-left: 4rem !important; + margin-right: 4rem !important; + } + .mx-xl-7 { + margin-left: 5rem !important; + margin-right: 5rem !important; + } + .mx-xl-8 { + margin-left: 7.5rem !important; + margin-right: 7.5rem !important; + } + .mx-xl-9 { + margin-left: 10rem !important; + margin-right: 10rem !important; + } + .mx-xl-10 { + margin-left: 12.5rem !important; + margin-right: 12.5rem !important; + } + .mx-xl-11 { + margin-left: 15rem !important; + margin-right: 15rem !important; + } + .mx-xl-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-xl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-xl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-xl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-xl-4 { + margin-top: 1.8rem !important; + margin-bottom: 1.8rem !important; + } + .my-xl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-xl-6 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; + } + .my-xl-7 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; + } + .my-xl-8 { + margin-top: 7.5rem !important; + margin-bottom: 7.5rem !important; + } + .my-xl-9 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; + } + .my-xl-10 { + margin-top: 12.5rem !important; + margin-bottom: 12.5rem !important; + } + .my-xl-11 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; + } + .my-xl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-xl-0 { + margin-top: 0 !important; + } + .mt-xl-1 { + margin-top: 0.25rem !important; + } + .mt-xl-2 { + margin-top: 0.5rem !important; + } + .mt-xl-3 { + margin-top: 1rem !important; + } + .mt-xl-4 { + margin-top: 1.8rem !important; + } + .mt-xl-5 { + margin-top: 3rem !important; + } + .mt-xl-6 { + margin-top: 4rem !important; + } + .mt-xl-7 { + margin-top: 5rem !important; + } + .mt-xl-8 { + margin-top: 7.5rem !important; + } + .mt-xl-9 { + margin-top: 10rem !important; + } + .mt-xl-10 { + margin-top: 12.5rem !important; + } + .mt-xl-11 { + margin-top: 15rem !important; + } + .mt-xl-auto { + margin-top: auto !important; + } + .me-xl-0 { + margin-left: 0 !important; + } + .me-xl-1 { + margin-left: 0.25rem !important; + } + .me-xl-2 { + margin-left: 0.5rem !important; + } + .me-xl-3 { + margin-left: 1rem !important; + } + .me-xl-4 { + margin-left: 1.8rem !important; + } + .me-xl-5 { + margin-left: 3rem !important; + } + .me-xl-6 { + margin-left: 4rem !important; + } + .me-xl-7 { + margin-left: 5rem !important; + } + .me-xl-8 { + margin-left: 7.5rem !important; + } + .me-xl-9 { + margin-left: 10rem !important; + } + .me-xl-10 { + margin-left: 12.5rem !important; + } + .me-xl-11 { + margin-left: 15rem !important; + } + .me-xl-auto { + margin-left: auto !important; + } + .mb-xl-0 { + margin-bottom: 0 !important; + } + .mb-xl-1 { + margin-bottom: 0.25rem !important; + } + .mb-xl-2 { + margin-bottom: 0.5rem !important; + } + .mb-xl-3 { + margin-bottom: 1rem !important; + } + .mb-xl-4 { + margin-bottom: 1.8rem !important; + } + .mb-xl-5 { + margin-bottom: 3rem !important; + } + .mb-xl-6 { + margin-bottom: 4rem !important; + } + .mb-xl-7 { + margin-bottom: 5rem !important; + } + .mb-xl-8 { + margin-bottom: 7.5rem !important; + } + .mb-xl-9 { + margin-bottom: 10rem !important; + } + .mb-xl-10 { + margin-bottom: 12.5rem !important; + } + .mb-xl-11 { + margin-bottom: 15rem !important; + } + .mb-xl-auto { + margin-bottom: auto !important; + } + .ms-xl-0 { + margin-right: 0 !important; + } + .ms-xl-1 { + margin-right: 0.25rem !important; + } + .ms-xl-2 { + margin-right: 0.5rem !important; + } + .ms-xl-3 { + margin-right: 1rem !important; + } + .ms-xl-4 { + margin-right: 1.8rem !important; + } + .ms-xl-5 { + margin-right: 3rem !important; + } + .ms-xl-6 { + margin-right: 4rem !important; + } + .ms-xl-7 { + margin-right: 5rem !important; + } + .ms-xl-8 { + margin-right: 7.5rem !important; + } + .ms-xl-9 { + margin-right: 10rem !important; + } + .ms-xl-10 { + margin-right: 12.5rem !important; + } + .ms-xl-11 { + margin-right: 15rem !important; + } + .ms-xl-auto { + margin-right: auto !important; + } + .m-xl-n1 { + margin: -0.25rem !important; + } + .m-xl-n2 { + margin: -0.5rem !important; + } + .m-xl-n3 { + margin: -1rem !important; + } + .m-xl-n4 { + margin: -1.8rem !important; + } + .m-xl-n5 { + margin: -3rem !important; + } + .m-xl-n6 { + margin: -4rem !important; + } + .m-xl-n7 { + margin: -5rem !important; + } + .m-xl-n8 { + margin: -7.5rem !important; + } + .m-xl-n9 { + margin: -10rem !important; + } + .m-xl-n10 { + margin: -12.5rem !important; + } + .m-xl-n11 { + margin: -15rem !important; + } + .mx-xl-n1 { + margin-left: -0.25rem !important; + margin-right: -0.25rem !important; + } + .mx-xl-n2 { + margin-left: -0.5rem !important; + margin-right: -0.5rem !important; + } + .mx-xl-n3 { + margin-left: -1rem !important; + margin-right: -1rem !important; + } + .mx-xl-n4 { + margin-left: -1.8rem !important; + margin-right: -1.8rem !important; + } + .mx-xl-n5 { + margin-left: -3rem !important; + margin-right: -3rem !important; + } + .mx-xl-n6 { + margin-left: -4rem !important; + margin-right: -4rem !important; + } + .mx-xl-n7 { + margin-left: -5rem !important; + margin-right: -5rem !important; + } + .mx-xl-n8 { + margin-left: -7.5rem !important; + margin-right: -7.5rem !important; + } + .mx-xl-n9 { + margin-left: -10rem !important; + margin-right: -10rem !important; + } + .mx-xl-n10 { + margin-left: -12.5rem !important; + margin-right: -12.5rem !important; + } + .mx-xl-n11 { + margin-left: -15rem !important; + margin-right: -15rem !important; + } + .my-xl-n1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; + } + .my-xl-n2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; + } + .my-xl-n3 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; + } + .my-xl-n4 { + margin-top: -1.8rem !important; + margin-bottom: -1.8rem !important; + } + .my-xl-n5 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; + } + .my-xl-n6 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; + } + .my-xl-n7 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; + } + .my-xl-n8 { + margin-top: -7.5rem !important; + margin-bottom: -7.5rem !important; + } + .my-xl-n9 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; + } + .my-xl-n10 { + margin-top: -12.5rem !important; + margin-bottom: -12.5rem !important; + } + .my-xl-n11 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; + } + .mt-xl-n1 { + margin-top: -0.25rem !important; + } + .mt-xl-n2 { + margin-top: -0.5rem !important; + } + .mt-xl-n3 { + margin-top: -1rem !important; + } + .mt-xl-n4 { + margin-top: -1.8rem !important; + } + .mt-xl-n5 { + margin-top: -3rem !important; + } + .mt-xl-n6 { + margin-top: -4rem !important; + } + .mt-xl-n7 { + margin-top: -5rem !important; + } + .mt-xl-n8 { + margin-top: -7.5rem !important; + } + .mt-xl-n9 { + margin-top: -10rem !important; + } + .mt-xl-n10 { + margin-top: -12.5rem !important; + } + .mt-xl-n11 { + margin-top: -15rem !important; + } + .me-xl-n1 { + margin-left: -0.25rem !important; + } + .me-xl-n2 { + margin-left: -0.5rem !important; + } + .me-xl-n3 { + margin-left: -1rem !important; + } + .me-xl-n4 { + margin-left: -1.8rem !important; + } + .me-xl-n5 { + margin-left: -3rem !important; + } + .me-xl-n6 { + margin-left: -4rem !important; + } + .me-xl-n7 { + margin-left: -5rem !important; + } + .me-xl-n8 { + margin-left: -7.5rem !important; + } + .me-xl-n9 { + margin-left: -10rem !important; + } + .me-xl-n10 { + margin-left: -12.5rem !important; + } + .me-xl-n11 { + margin-left: -15rem !important; + } + .mb-xl-n1 { + margin-bottom: -0.25rem !important; + } + .mb-xl-n2 { + margin-bottom: -0.5rem !important; + } + .mb-xl-n3 { + margin-bottom: -1rem !important; + } + .mb-xl-n4 { + margin-bottom: -1.8rem !important; + } + .mb-xl-n5 { + margin-bottom: -3rem !important; + } + .mb-xl-n6 { + margin-bottom: -4rem !important; + } + .mb-xl-n7 { + margin-bottom: -5rem !important; + } + .mb-xl-n8 { + margin-bottom: -7.5rem !important; + } + .mb-xl-n9 { + margin-bottom: -10rem !important; + } + .mb-xl-n10 { + margin-bottom: -12.5rem !important; + } + .mb-xl-n11 { + margin-bottom: -15rem !important; + } + .ms-xl-n1 { + margin-right: -0.25rem !important; + } + .ms-xl-n2 { + margin-right: -0.5rem !important; + } + .ms-xl-n3 { + margin-right: -1rem !important; + } + .ms-xl-n4 { + margin-right: -1.8rem !important; + } + .ms-xl-n5 { + margin-right: -3rem !important; + } + .ms-xl-n6 { + margin-right: -4rem !important; + } + .ms-xl-n7 { + margin-right: -5rem !important; + } + .ms-xl-n8 { + margin-right: -7.5rem !important; + } + .ms-xl-n9 { + margin-right: -10rem !important; + } + .ms-xl-n10 { + margin-right: -12.5rem !important; + } + .ms-xl-n11 { + margin-right: -15rem !important; + } + .p-xl-0 { + padding: 0 !important; + } + .p-xl-1 { + padding: 0.25rem !important; + } + .p-xl-2 { + padding: 0.5rem !important; + } + .p-xl-3 { + padding: 1rem !important; + } + .p-xl-4 { + padding: 1.8rem !important; + } + .p-xl-5 { + padding: 3rem !important; + } + .p-xl-6 { + padding: 4rem !important; + } + .p-xl-7 { + padding: 5rem !important; + } + .p-xl-8 { + padding: 7.5rem !important; + } + .p-xl-9 { + padding: 10rem !important; + } + .p-xl-10 { + padding: 12.5rem !important; + } + .p-xl-11 { + padding: 15rem !important; + } + .px-xl-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-xl-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-xl-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-xl-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-xl-4 { + padding-left: 1.8rem !important; + padding-right: 1.8rem !important; + } + .px-xl-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .px-xl-6 { + padding-left: 4rem !important; + padding-right: 4rem !important; + } + .px-xl-7 { + padding-left: 5rem !important; + padding-right: 5rem !important; + } + .px-xl-8 { + padding-left: 7.5rem !important; + padding-right: 7.5rem !important; + } + .px-xl-9 { + padding-left: 10rem !important; + padding-right: 10rem !important; + } + .px-xl-10 { + padding-left: 12.5rem !important; + padding-right: 12.5rem !important; + } + .px-xl-11 { + padding-left: 15rem !important; + padding-right: 15rem !important; + } + .py-xl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-xl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-xl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-xl-4 { + padding-top: 1.8rem !important; + padding-bottom: 1.8rem !important; + } + .py-xl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .py-xl-6 { + padding-top: 4rem !important; + padding-bottom: 4rem !important; + } + .py-xl-7 { + padding-top: 5rem !important; + padding-bottom: 5rem !important; + } + .py-xl-8 { + padding-top: 7.5rem !important; + padding-bottom: 7.5rem !important; + } + .py-xl-9 { + padding-top: 10rem !important; + padding-bottom: 10rem !important; + } + .py-xl-10 { + padding-top: 12.5rem !important; + padding-bottom: 12.5rem !important; + } + .py-xl-11 { + padding-top: 15rem !important; + padding-bottom: 15rem !important; + } + .pt-xl-0 { + padding-top: 0 !important; + } + .pt-xl-1 { + padding-top: 0.25rem !important; + } + .pt-xl-2 { + padding-top: 0.5rem !important; + } + .pt-xl-3 { + padding-top: 1rem !important; + } + .pt-xl-4 { + padding-top: 1.8rem !important; + } + .pt-xl-5 { + padding-top: 3rem !important; + } + .pt-xl-6 { + padding-top: 4rem !important; + } + .pt-xl-7 { + padding-top: 5rem !important; + } + .pt-xl-8 { + padding-top: 7.5rem !important; + } + .pt-xl-9 { + padding-top: 10rem !important; + } + .pt-xl-10 { + padding-top: 12.5rem !important; + } + .pt-xl-11 { + padding-top: 15rem !important; + } + .pe-xl-0 { + padding-left: 0 !important; + } + .pe-xl-1 { + padding-left: 0.25rem !important; + } + .pe-xl-2 { + padding-left: 0.5rem !important; + } + .pe-xl-3 { + padding-left: 1rem !important; + } + .pe-xl-4 { + padding-left: 1.8rem !important; + } + .pe-xl-5 { + padding-left: 3rem !important; + } + .pe-xl-6 { + padding-left: 4rem !important; + } + .pe-xl-7 { + padding-left: 5rem !important; + } + .pe-xl-8 { + padding-left: 7.5rem !important; + } + .pe-xl-9 { + padding-left: 10rem !important; + } + .pe-xl-10 { + padding-left: 12.5rem !important; + } + .pe-xl-11 { + padding-left: 15rem !important; + } + .pb-xl-0 { + padding-bottom: 0 !important; + } + .pb-xl-1 { + padding-bottom: 0.25rem !important; + } + .pb-xl-2 { + padding-bottom: 0.5rem !important; + } + .pb-xl-3 { + padding-bottom: 1rem !important; + } + .pb-xl-4 { + padding-bottom: 1.8rem !important; + } + .pb-xl-5 { + padding-bottom: 3rem !important; + } + .pb-xl-6 { + padding-bottom: 4rem !important; + } + .pb-xl-7 { + padding-bottom: 5rem !important; + } + .pb-xl-8 { + padding-bottom: 7.5rem !important; + } + .pb-xl-9 { + padding-bottom: 10rem !important; + } + .pb-xl-10 { + padding-bottom: 12.5rem !important; + } + .pb-xl-11 { + padding-bottom: 15rem !important; + } + .ps-xl-0 { + padding-right: 0 !important; + } + .ps-xl-1 { + padding-right: 0.25rem !important; + } + .ps-xl-2 { + padding-right: 0.5rem !important; + } + .ps-xl-3 { + padding-right: 1rem !important; + } + .ps-xl-4 { + padding-right: 1.8rem !important; + } + .ps-xl-5 { + padding-right: 3rem !important; + } + .ps-xl-6 { + padding-right: 4rem !important; + } + .ps-xl-7 { + padding-right: 5rem !important; + } + .ps-xl-8 { + padding-right: 7.5rem !important; + } + .ps-xl-9 { + padding-right: 10rem !important; + } + .ps-xl-10 { + padding-right: 12.5rem !important; + } + .ps-xl-11 { + padding-right: 15rem !important; + } + .fs-xl--2 { + font-size: 0.69444rem !important; + } + .fs-xl--1 { + font-size: 0.83333rem !important; + } + .fs-xl-0 { + font-size: 1rem !important; + } + .fs-xl-1 { + font-size: 1.2rem !important; + } + .fs-xl-2 { + font-size: 1.44rem !important; + } + .fs-xl-3 { + font-size: 1.728rem !important; + } + .fs-xl-4 { + font-size: 2.0736rem !important; + } + .fs-xl-5 { + font-size: 2.48832rem !important; + } + .fs-xl-6 { + font-size: 2.98598rem !important; + } + .fs-xl-7 { + font-size: 3.58318rem !important; + } + .fs-xl-8 { + font-size: 4.29982rem !important; + } + .text-xl-start { + text-align: right !important; + } + .text-xl-end { + text-align: left !important; + } + .text-xl-center { + text-align: center !important; + } + .rounded-xl-top { + border-top-start-radius: 0.25rem !important; + border-top-end-radius: 0.25rem !important; + } + .rounded-xl-top-lg { + border-top-start-radius: 0.5rem !important; + border-top-end-radius: 0.5rem !important; + } + .rounded-xl-top-0 { + border-top-start-radius: 0 !important; + border-top-end-radius: 0 !important; + } + .rounded-xl-end { + border-top-end-radius: 0.25rem !important; + border-bottom-end-radius: 0.25rem !important; + } + .rounded-xl-end-lg { + border-top-end-radius: 0.5rem !important; + border-bottom-end-radius: 0.5rem !important; + } + .rounded-xl-end-0 { + border-top-end-radius: 0 !important; + border-bottom-end-radius: 0 !important; + } + .rounded-xl-bottom { + border-bottom-end-radius: 0.25rem !important; + border-bottom-start-radius: 0.25rem !important; + } + .rounded-xl-bottom-lg { + border-bottom-end-radius: 0.5rem !important; + border-bottom-start-radius: 0.5rem !important; + } + .rounded-xl-bottom-0 { + border-bottom-end-radius: 0 !important; + border-bottom-start-radius: 0 !important; + } + .rounded-xl-start { + border-bottom-start-radius: 0.25rem !important; + border-top-start-radius: 0.25rem !important; + } + .rounded-xl-start-lg { + border-bottom-start-radius: 0.5rem !important; + border-top-start-radius: 0.5rem !important; + } + .rounded-xl-start-0 { + border-bottom-start-radius: 0 !important; + border-top-start-radius: 0 !important; + } + .opacity-xl-0 { + opacity: 0 !important; + } + .opacity-xl-25 { + opacity: 0.25 !important; + } + .opacity-xl-50 { + opacity: 0.5 !important; + } + .opacity-xl-75 { + opacity: 0.75 !important; + } + .opacity-xl-85 { + opacity: 0.85 !important; + } + .opacity-xl-100 { + opacity: 1 !important; + } + .text-xl-facebook { + color: #3c5a99 !important; + } + .text-xl-google-plus { + color: #dd4b39 !important; + } + .text-xl-twitter { + color: #1da1f2 !important; + } + .text-xl-linkedin { + color: #0077b5 !important; + } + .text-xl-youtube { + color: #ff0000 !important; + } + .text-xl-github { + color: #333 !important; + } + .text-xl-theme { + color: #0BAC56 !important; + } + .text-xl-black { + color: #000 !important; + } + .text-xl-100 { + color: #F5F7FA !important; + } + .text-xl-200 { + color: #EBEBED !important; + } + .text-xl-300 { + color: #E1E0E4 !important; + } + .text-xl-400 { + color: #D7D6DA !important; + } + .text-xl-500 { + color: #CDCCD1 !important; + } + .text-xl-600 { + color: #C3C1C8 !important; + } + .text-xl-700 { + color: #7D7987 !important; + } + .text-xl-800 { + color: #616368 !important; + } + .text-xl-900 { + color: #4F5665 !important; + } + .text-xl-1000 { + color: #112D58 !important; + } + .text-xl-1100 { + color: #1F1534 !important; + } + .text-xl-white { + color: #fff !important; + } + .max-vh-xl-25 { + max-height: 25vh !important; + } + .max-vh-xl-50 { + max-height: 50vh !important; + } + .max-vh-xl-75 { + max-height: 75vh !important; + } + .max-vh-xl-100 { + max-height: 100vh !important; + } + .border-xl-x { + border-right: 1px solid #E1E0E4 !important; + border-left: 1px solid #E1E0E4 !important; + } + .border-xl-x-0 { + border-right: 0 !important; + border-left: 0 !important; + } + .border-xl-y { + border-top: 1px solid #E1E0E4 !important; + border-bottom: 1px solid #E1E0E4 !important; + } + .border-xl-y-0 { + border-top: 0 !important; + border-bottom: 0 !important; + } + .border-xl-dashed { + border: 1px dashed #E1E0E4 !important; + } + .border-xl-dashed-top { + border-top: 1px dashed #E1E0E4 !important; + } + .border-xl-dashed-end { + border-left: 1px dashed #E1E0E4 !important; + } + .border-xl-dashed-start { + border-right: 1px dashed #E1E0E4 !important; + } + .border-xl-dashed-bottom { + border-bottom: 1px dashed #E1E0E4 !important; + } + .border-xl-dashed-x { + border-right: 1px dashed #E1E0E4 !important; + border-left: 1px dashed #E1E0E4 !important; + } + .border-xl-dashed-y { + border-top: 1px dashed #E1E0E4 !important; + border-bottom: 1px dashed #E1E0E4 !important; + } + .rounded-xl-0 { + border-radius: 0 !important; + } +} + +@media (min-width: 1540px) { + .float-xxl-start { + float: right !important; + } + .float-xxl-end { + float: left !important; + } + .float-xxl-none { + float: none !important; + } + .d-xxl-inline { + display: inline !important; + } + .d-xxl-inline-block { + display: inline-block !important; + } + .d-xxl-block { + display: block !important; + } + .d-xxl-grid { + display: grid !important; + } + .d-xxl-table { + display: table !important; + } + .d-xxl-table-row { + display: table-row !important; + } + .d-xxl-table-cell { + display: table-cell !important; + } + .d-xxl-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + } + .d-xxl-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } + .d-xxl-none { + display: none !important; + } + .position-xxl-static { + position: static !important; + } + .position-xxl-absolute { + position: absolute !important; + } + .position-xxl-relative { + position: relative !important; + } + .position-xxl-fixed { + position: fixed !important; + } + .position-xxl-sticky { + position: -webkit-sticky !important; + position: sticky !important; + } + .translate-xxl-middle { + -webkit-transform: translateX(50%) translateY(-50%) !important; + -ms-transform: translateX(50%) translateY(-50%) !important; + transform: translateX(50%) translateY(-50%) !important; + } + .translate-xxl-middle-x { + -webkit-transform: translateX(50%) !important; + -ms-transform: translateX(50%) !important; + transform: translateX(50%) !important; + } + .translate-xxl-middle-y { + -webkit-transform: translateY(-50%) !important; + -ms-transform: translateY(-50%) !important; + transform: translateY(-50%) !important; + } + .border-xxl { + border: 1px solid #E1E0E4 !important; + } + .border-xxl-0 { + border: 0 !important; + } + .border-xxl-top { + border-top: 1px solid #E1E0E4 !important; + } + .border-xxl-top-0 { + border-top: 0 !important; + } + .border-xxl-end { + border-left: 1px solid #E1E0E4 !important; + } + .border-xxl-end-0 { + border-left: 0 !important; + } + .border-xxl-bottom { + border-bottom: 1px solid #E1E0E4 !important; + } + .border-xxl-bottom-0 { + border-bottom: 0 !important; + } + .border-xxl-start { + border-right: 1px solid #E1E0E4 !important; + } + .border-xxl-start-0 { + border-right: 0 !important; + } + .w-xxl-25 { + width: 25% !important; + } + .w-xxl-50 { + width: 50% !important; + } + .w-xxl-75 { + width: 75% !important; + } + .w-xxl-100 { + width: 100% !important; + } + .w-xxl-auto { + width: auto !important; + } + .vw-xxl-25 { + width: 25vw !important; + } + .vw-xxl-50 { + width: 50vw !important; + } + .vw-xxl-75 { + width: 75vw !important; + } + .vw-xxl-100 { + width: 100vw !important; + } + .h-xxl-25 { + height: 25% !important; + } + .h-xxl-50 { + height: 50% !important; + } + .h-xxl-75 { + height: 75% !important; + } + .h-xxl-100 { + height: 100% !important; + } + .h-xxl-auto { + height: auto !important; + } + .vh-xxl-25 { + height: 25vh !important; + } + .vh-xxl-50 { + height: 50vh !important; + } + .vh-xxl-75 { + height: 75vh !important; + } + .vh-xxl-100 { + height: 100vh !important; + } + .min-vh-xxl-25 { + min-height: 25vh !important; + } + .min-vh-xxl-50 { + min-height: 50vh !important; + } + .min-vh-xxl-75 { + min-height: 75vh !important; + } + .min-vh-xxl-100 { + min-height: 100vh !important; + } + .flex-xxl-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } + .flex-xxl-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-xxl-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-xxl-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-xxl-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-xxl-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-xxl-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + .flex-xxl-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; + } + .flex-xxl-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; + } + .flex-xxl-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-xxl-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-xxl-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .gap-xxl-0 { + gap: 0 !important; + } + .gap-xxl-1 { + gap: 0.25rem !important; + } + .gap-xxl-2 { + gap: 0.5rem !important; + } + .gap-xxl-3 { + gap: 1rem !important; + } + .gap-xxl-4 { + gap: 1.8rem !important; + } + .gap-xxl-5 { + gap: 3rem !important; + } + .gap-xxl-6 { + gap: 4rem !important; + } + .gap-xxl-7 { + gap: 5rem !important; + } + .gap-xxl-8 { + gap: 7.5rem !important; + } + .gap-xxl-9 { + gap: 10rem !important; + } + .gap-xxl-10 { + gap: 12.5rem !important; + } + .gap-xxl-11 { + gap: 15rem !important; + } + .justify-content-xxl-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-xxl-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-xxl-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-xxl-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-xxl-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .justify-content-xxl-evenly { + -webkit-box-pack: space-evenly !important; + -ms-flex-pack: space-evenly !important; + justify-content: space-evenly !important; + } + .align-items-xxl-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-xxl-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-xxl-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-xxl-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-xxl-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-xxl-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-xxl-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-xxl-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-xxl-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-xxl-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-xxl-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-xxl-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-xxl-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-xxl-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-xxl-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-xxl-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-xxl-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } + .order-xxl-first { + -webkit-box-ordinal-group: 0 !important; + -ms-flex-order: -1 !important; + order: -1 !important; + } + .order-xxl-0 { + -webkit-box-ordinal-group: 1 !important; + -ms-flex-order: 0 !important; + order: 0 !important; + } + .order-xxl-1 { + -webkit-box-ordinal-group: 2 !important; + -ms-flex-order: 1 !important; + order: 1 !important; + } + .order-xxl-2 { + -webkit-box-ordinal-group: 3 !important; + -ms-flex-order: 2 !important; + order: 2 !important; + } + .order-xxl-3 { + -webkit-box-ordinal-group: 4 !important; + -ms-flex-order: 3 !important; + order: 3 !important; + } + .order-xxl-4 { + -webkit-box-ordinal-group: 5 !important; + -ms-flex-order: 4 !important; + order: 4 !important; + } + .order-xxl-5 { + -webkit-box-ordinal-group: 6 !important; + -ms-flex-order: 5 !important; + order: 5 !important; + } + .order-xxl-last { + -webkit-box-ordinal-group: 7 !important; + -ms-flex-order: 6 !important; + order: 6 !important; + } + .m-xxl-0 { + margin: 0 !important; + } + .m-xxl-1 { + margin: 0.25rem !important; + } + .m-xxl-2 { + margin: 0.5rem !important; + } + .m-xxl-3 { + margin: 1rem !important; + } + .m-xxl-4 { + margin: 1.8rem !important; + } + .m-xxl-5 { + margin: 3rem !important; + } + .m-xxl-6 { + margin: 4rem !important; + } + .m-xxl-7 { + margin: 5rem !important; + } + .m-xxl-8 { + margin: 7.5rem !important; + } + .m-xxl-9 { + margin: 10rem !important; + } + .m-xxl-10 { + margin: 12.5rem !important; + } + .m-xxl-11 { + margin: 15rem !important; + } + .m-xxl-auto { + margin: auto !important; + } + .mx-xxl-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-xxl-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-xxl-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-xxl-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-xxl-4 { + margin-left: 1.8rem !important; + margin-right: 1.8rem !important; + } + .mx-xxl-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-xxl-6 { + margin-left: 4rem !important; + margin-right: 4rem !important; + } + .mx-xxl-7 { + margin-left: 5rem !important; + margin-right: 5rem !important; + } + .mx-xxl-8 { + margin-left: 7.5rem !important; + margin-right: 7.5rem !important; + } + .mx-xxl-9 { + margin-left: 10rem !important; + margin-right: 10rem !important; + } + .mx-xxl-10 { + margin-left: 12.5rem !important; + margin-right: 12.5rem !important; + } + .mx-xxl-11 { + margin-left: 15rem !important; + margin-right: 15rem !important; + } + .mx-xxl-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-xxl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-xxl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xxl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-xxl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-xxl-4 { + margin-top: 1.8rem !important; + margin-bottom: 1.8rem !important; + } + .my-xxl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-xxl-6 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; + } + .my-xxl-7 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; + } + .my-xxl-8 { + margin-top: 7.5rem !important; + margin-bottom: 7.5rem !important; + } + .my-xxl-9 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; + } + .my-xxl-10 { + margin-top: 12.5rem !important; + margin-bottom: 12.5rem !important; + } + .my-xxl-11 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; + } + .my-xxl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-xxl-0 { + margin-top: 0 !important; + } + .mt-xxl-1 { + margin-top: 0.25rem !important; + } + .mt-xxl-2 { + margin-top: 0.5rem !important; + } + .mt-xxl-3 { + margin-top: 1rem !important; + } + .mt-xxl-4 { + margin-top: 1.8rem !important; + } + .mt-xxl-5 { + margin-top: 3rem !important; + } + .mt-xxl-6 { + margin-top: 4rem !important; + } + .mt-xxl-7 { + margin-top: 5rem !important; + } + .mt-xxl-8 { + margin-top: 7.5rem !important; + } + .mt-xxl-9 { + margin-top: 10rem !important; + } + .mt-xxl-10 { + margin-top: 12.5rem !important; + } + .mt-xxl-11 { + margin-top: 15rem !important; + } + .mt-xxl-auto { + margin-top: auto !important; + } + .me-xxl-0 { + margin-left: 0 !important; + } + .me-xxl-1 { + margin-left: 0.25rem !important; + } + .me-xxl-2 { + margin-left: 0.5rem !important; + } + .me-xxl-3 { + margin-left: 1rem !important; + } + .me-xxl-4 { + margin-left: 1.8rem !important; + } + .me-xxl-5 { + margin-left: 3rem !important; + } + .me-xxl-6 { + margin-left: 4rem !important; + } + .me-xxl-7 { + margin-left: 5rem !important; + } + .me-xxl-8 { + margin-left: 7.5rem !important; + } + .me-xxl-9 { + margin-left: 10rem !important; + } + .me-xxl-10 { + margin-left: 12.5rem !important; + } + .me-xxl-11 { + margin-left: 15rem !important; + } + .me-xxl-auto { + margin-left: auto !important; + } + .mb-xxl-0 { + margin-bottom: 0 !important; + } + .mb-xxl-1 { + margin-bottom: 0.25rem !important; + } + .mb-xxl-2 { + margin-bottom: 0.5rem !important; + } + .mb-xxl-3 { + margin-bottom: 1rem !important; + } + .mb-xxl-4 { + margin-bottom: 1.8rem !important; + } + .mb-xxl-5 { + margin-bottom: 3rem !important; + } + .mb-xxl-6 { + margin-bottom: 4rem !important; + } + .mb-xxl-7 { + margin-bottom: 5rem !important; + } + .mb-xxl-8 { + margin-bottom: 7.5rem !important; + } + .mb-xxl-9 { + margin-bottom: 10rem !important; + } + .mb-xxl-10 { + margin-bottom: 12.5rem !important; + } + .mb-xxl-11 { + margin-bottom: 15rem !important; + } + .mb-xxl-auto { + margin-bottom: auto !important; + } + .ms-xxl-0 { + margin-right: 0 !important; + } + .ms-xxl-1 { + margin-right: 0.25rem !important; + } + .ms-xxl-2 { + margin-right: 0.5rem !important; + } + .ms-xxl-3 { + margin-right: 1rem !important; + } + .ms-xxl-4 { + margin-right: 1.8rem !important; + } + .ms-xxl-5 { + margin-right: 3rem !important; + } + .ms-xxl-6 { + margin-right: 4rem !important; + } + .ms-xxl-7 { + margin-right: 5rem !important; + } + .ms-xxl-8 { + margin-right: 7.5rem !important; + } + .ms-xxl-9 { + margin-right: 10rem !important; + } + .ms-xxl-10 { + margin-right: 12.5rem !important; + } + .ms-xxl-11 { + margin-right: 15rem !important; + } + .ms-xxl-auto { + margin-right: auto !important; + } + .m-xxl-n1 { + margin: -0.25rem !important; + } + .m-xxl-n2 { + margin: -0.5rem !important; + } + .m-xxl-n3 { + margin: -1rem !important; + } + .m-xxl-n4 { + margin: -1.8rem !important; + } + .m-xxl-n5 { + margin: -3rem !important; + } + .m-xxl-n6 { + margin: -4rem !important; + } + .m-xxl-n7 { + margin: -5rem !important; + } + .m-xxl-n8 { + margin: -7.5rem !important; + } + .m-xxl-n9 { + margin: -10rem !important; + } + .m-xxl-n10 { + margin: -12.5rem !important; + } + .m-xxl-n11 { + margin: -15rem !important; + } + .mx-xxl-n1 { + margin-left: -0.25rem !important; + margin-right: -0.25rem !important; + } + .mx-xxl-n2 { + margin-left: -0.5rem !important; + margin-right: -0.5rem !important; + } + .mx-xxl-n3 { + margin-left: -1rem !important; + margin-right: -1rem !important; + } + .mx-xxl-n4 { + margin-left: -1.8rem !important; + margin-right: -1.8rem !important; + } + .mx-xxl-n5 { + margin-left: -3rem !important; + margin-right: -3rem !important; + } + .mx-xxl-n6 { + margin-left: -4rem !important; + margin-right: -4rem !important; + } + .mx-xxl-n7 { + margin-left: -5rem !important; + margin-right: -5rem !important; + } + .mx-xxl-n8 { + margin-left: -7.5rem !important; + margin-right: -7.5rem !important; + } + .mx-xxl-n9 { + margin-left: -10rem !important; + margin-right: -10rem !important; + } + .mx-xxl-n10 { + margin-left: -12.5rem !important; + margin-right: -12.5rem !important; + } + .mx-xxl-n11 { + margin-left: -15rem !important; + margin-right: -15rem !important; + } + .my-xxl-n1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; + } + .my-xxl-n2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; + } + .my-xxl-n3 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; + } + .my-xxl-n4 { + margin-top: -1.8rem !important; + margin-bottom: -1.8rem !important; + } + .my-xxl-n5 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; + } + .my-xxl-n6 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; + } + .my-xxl-n7 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; + } + .my-xxl-n8 { + margin-top: -7.5rem !important; + margin-bottom: -7.5rem !important; + } + .my-xxl-n9 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; + } + .my-xxl-n10 { + margin-top: -12.5rem !important; + margin-bottom: -12.5rem !important; + } + .my-xxl-n11 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; + } + .mt-xxl-n1 { + margin-top: -0.25rem !important; + } + .mt-xxl-n2 { + margin-top: -0.5rem !important; + } + .mt-xxl-n3 { + margin-top: -1rem !important; + } + .mt-xxl-n4 { + margin-top: -1.8rem !important; + } + .mt-xxl-n5 { + margin-top: -3rem !important; + } + .mt-xxl-n6 { + margin-top: -4rem !important; + } + .mt-xxl-n7 { + margin-top: -5rem !important; + } + .mt-xxl-n8 { + margin-top: -7.5rem !important; + } + .mt-xxl-n9 { + margin-top: -10rem !important; + } + .mt-xxl-n10 { + margin-top: -12.5rem !important; + } + .mt-xxl-n11 { + margin-top: -15rem !important; + } + .me-xxl-n1 { + margin-left: -0.25rem !important; + } + .me-xxl-n2 { + margin-left: -0.5rem !important; + } + .me-xxl-n3 { + margin-left: -1rem !important; + } + .me-xxl-n4 { + margin-left: -1.8rem !important; + } + .me-xxl-n5 { + margin-left: -3rem !important; + } + .me-xxl-n6 { + margin-left: -4rem !important; + } + .me-xxl-n7 { + margin-left: -5rem !important; + } + .me-xxl-n8 { + margin-left: -7.5rem !important; + } + .me-xxl-n9 { + margin-left: -10rem !important; + } + .me-xxl-n10 { + margin-left: -12.5rem !important; + } + .me-xxl-n11 { + margin-left: -15rem !important; + } + .mb-xxl-n1 { + margin-bottom: -0.25rem !important; + } + .mb-xxl-n2 { + margin-bottom: -0.5rem !important; + } + .mb-xxl-n3 { + margin-bottom: -1rem !important; + } + .mb-xxl-n4 { + margin-bottom: -1.8rem !important; + } + .mb-xxl-n5 { + margin-bottom: -3rem !important; + } + .mb-xxl-n6 { + margin-bottom: -4rem !important; + } + .mb-xxl-n7 { + margin-bottom: -5rem !important; + } + .mb-xxl-n8 { + margin-bottom: -7.5rem !important; + } + .mb-xxl-n9 { + margin-bottom: -10rem !important; + } + .mb-xxl-n10 { + margin-bottom: -12.5rem !important; + } + .mb-xxl-n11 { + margin-bottom: -15rem !important; + } + .ms-xxl-n1 { + margin-right: -0.25rem !important; + } + .ms-xxl-n2 { + margin-right: -0.5rem !important; + } + .ms-xxl-n3 { + margin-right: -1rem !important; + } + .ms-xxl-n4 { + margin-right: -1.8rem !important; + } + .ms-xxl-n5 { + margin-right: -3rem !important; + } + .ms-xxl-n6 { + margin-right: -4rem !important; + } + .ms-xxl-n7 { + margin-right: -5rem !important; + } + .ms-xxl-n8 { + margin-right: -7.5rem !important; + } + .ms-xxl-n9 { + margin-right: -10rem !important; + } + .ms-xxl-n10 { + margin-right: -12.5rem !important; + } + .ms-xxl-n11 { + margin-right: -15rem !important; + } + .p-xxl-0 { + padding: 0 !important; + } + .p-xxl-1 { + padding: 0.25rem !important; + } + .p-xxl-2 { + padding: 0.5rem !important; + } + .p-xxl-3 { + padding: 1rem !important; + } + .p-xxl-4 { + padding: 1.8rem !important; + } + .p-xxl-5 { + padding: 3rem !important; + } + .p-xxl-6 { + padding: 4rem !important; + } + .p-xxl-7 { + padding: 5rem !important; + } + .p-xxl-8 { + padding: 7.5rem !important; + } + .p-xxl-9 { + padding: 10rem !important; + } + .p-xxl-10 { + padding: 12.5rem !important; + } + .p-xxl-11 { + padding: 15rem !important; + } + .px-xxl-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-xxl-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-xxl-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-xxl-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-xxl-4 { + padding-left: 1.8rem !important; + padding-right: 1.8rem !important; + } + .px-xxl-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .px-xxl-6 { + padding-left: 4rem !important; + padding-right: 4rem !important; + } + .px-xxl-7 { + padding-left: 5rem !important; + padding-right: 5rem !important; + } + .px-xxl-8 { + padding-left: 7.5rem !important; + padding-right: 7.5rem !important; + } + .px-xxl-9 { + padding-left: 10rem !important; + padding-right: 10rem !important; + } + .px-xxl-10 { + padding-left: 12.5rem !important; + padding-right: 12.5rem !important; + } + .px-xxl-11 { + padding-left: 15rem !important; + padding-right: 15rem !important; + } + .py-xxl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-xxl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xxl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-xxl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-xxl-4 { + padding-top: 1.8rem !important; + padding-bottom: 1.8rem !important; + } + .py-xxl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .py-xxl-6 { + padding-top: 4rem !important; + padding-bottom: 4rem !important; + } + .py-xxl-7 { + padding-top: 5rem !important; + padding-bottom: 5rem !important; + } + .py-xxl-8 { + padding-top: 7.5rem !important; + padding-bottom: 7.5rem !important; + } + .py-xxl-9 { + padding-top: 10rem !important; + padding-bottom: 10rem !important; + } + .py-xxl-10 { + padding-top: 12.5rem !important; + padding-bottom: 12.5rem !important; + } + .py-xxl-11 { + padding-top: 15rem !important; + padding-bottom: 15rem !important; + } + .pt-xxl-0 { + padding-top: 0 !important; + } + .pt-xxl-1 { + padding-top: 0.25rem !important; + } + .pt-xxl-2 { + padding-top: 0.5rem !important; + } + .pt-xxl-3 { + padding-top: 1rem !important; + } + .pt-xxl-4 { + padding-top: 1.8rem !important; + } + .pt-xxl-5 { + padding-top: 3rem !important; + } + .pt-xxl-6 { + padding-top: 4rem !important; + } + .pt-xxl-7 { + padding-top: 5rem !important; + } + .pt-xxl-8 { + padding-top: 7.5rem !important; + } + .pt-xxl-9 { + padding-top: 10rem !important; + } + .pt-xxl-10 { + padding-top: 12.5rem !important; + } + .pt-xxl-11 { + padding-top: 15rem !important; + } + .pe-xxl-0 { + padding-left: 0 !important; + } + .pe-xxl-1 { + padding-left: 0.25rem !important; + } + .pe-xxl-2 { + padding-left: 0.5rem !important; + } + .pe-xxl-3 { + padding-left: 1rem !important; + } + .pe-xxl-4 { + padding-left: 1.8rem !important; + } + .pe-xxl-5 { + padding-left: 3rem !important; + } + .pe-xxl-6 { + padding-left: 4rem !important; + } + .pe-xxl-7 { + padding-left: 5rem !important; + } + .pe-xxl-8 { + padding-left: 7.5rem !important; + } + .pe-xxl-9 { + padding-left: 10rem !important; + } + .pe-xxl-10 { + padding-left: 12.5rem !important; + } + .pe-xxl-11 { + padding-left: 15rem !important; + } + .pb-xxl-0 { + padding-bottom: 0 !important; + } + .pb-xxl-1 { + padding-bottom: 0.25rem !important; + } + .pb-xxl-2 { + padding-bottom: 0.5rem !important; + } + .pb-xxl-3 { + padding-bottom: 1rem !important; + } + .pb-xxl-4 { + padding-bottom: 1.8rem !important; + } + .pb-xxl-5 { + padding-bottom: 3rem !important; + } + .pb-xxl-6 { + padding-bottom: 4rem !important; + } + .pb-xxl-7 { + padding-bottom: 5rem !important; + } + .pb-xxl-8 { + padding-bottom: 7.5rem !important; + } + .pb-xxl-9 { + padding-bottom: 10rem !important; + } + .pb-xxl-10 { + padding-bottom: 12.5rem !important; + } + .pb-xxl-11 { + padding-bottom: 15rem !important; + } + .ps-xxl-0 { + padding-right: 0 !important; + } + .ps-xxl-1 { + padding-right: 0.25rem !important; + } + .ps-xxl-2 { + padding-right: 0.5rem !important; + } + .ps-xxl-3 { + padding-right: 1rem !important; + } + .ps-xxl-4 { + padding-right: 1.8rem !important; + } + .ps-xxl-5 { + padding-right: 3rem !important; + } + .ps-xxl-6 { + padding-right: 4rem !important; + } + .ps-xxl-7 { + padding-right: 5rem !important; + } + .ps-xxl-8 { + padding-right: 7.5rem !important; + } + .ps-xxl-9 { + padding-right: 10rem !important; + } + .ps-xxl-10 { + padding-right: 12.5rem !important; + } + .ps-xxl-11 { + padding-right: 15rem !important; + } + .fs-xxl--2 { + font-size: 0.69444rem !important; + } + .fs-xxl--1 { + font-size: 0.83333rem !important; + } + .fs-xxl-0 { + font-size: 1rem !important; + } + .fs-xxl-1 { + font-size: 1.2rem !important; + } + .fs-xxl-2 { + font-size: 1.44rem !important; + } + .fs-xxl-3 { + font-size: 1.728rem !important; + } + .fs-xxl-4 { + font-size: 2.0736rem !important; + } + .fs-xxl-5 { + font-size: 2.48832rem !important; + } + .fs-xxl-6 { + font-size: 2.98598rem !important; + } + .fs-xxl-7 { + font-size: 3.58318rem !important; + } + .fs-xxl-8 { + font-size: 4.29982rem !important; + } + .text-xxl-start { + text-align: right !important; + } + .text-xxl-end { + text-align: left !important; + } + .text-xxl-center { + text-align: center !important; + } + .rounded-xxl-top { + border-top-start-radius: 0.25rem !important; + border-top-end-radius: 0.25rem !important; + } + .rounded-xxl-top-lg { + border-top-start-radius: 0.5rem !important; + border-top-end-radius: 0.5rem !important; + } + .rounded-xxl-top-0 { + border-top-start-radius: 0 !important; + border-top-end-radius: 0 !important; + } + .rounded-xxl-end { + border-top-end-radius: 0.25rem !important; + border-bottom-end-radius: 0.25rem !important; + } + .rounded-xxl-end-lg { + border-top-end-radius: 0.5rem !important; + border-bottom-end-radius: 0.5rem !important; + } + .rounded-xxl-end-0 { + border-top-end-radius: 0 !important; + border-bottom-end-radius: 0 !important; + } + .rounded-xxl-bottom { + border-bottom-end-radius: 0.25rem !important; + border-bottom-start-radius: 0.25rem !important; + } + .rounded-xxl-bottom-lg { + border-bottom-end-radius: 0.5rem !important; + border-bottom-start-radius: 0.5rem !important; + } + .rounded-xxl-bottom-0 { + border-bottom-end-radius: 0 !important; + border-bottom-start-radius: 0 !important; + } + .rounded-xxl-start { + border-bottom-start-radius: 0.25rem !important; + border-top-start-radius: 0.25rem !important; + } + .rounded-xxl-start-lg { + border-bottom-start-radius: 0.5rem !important; + border-top-start-radius: 0.5rem !important; + } + .rounded-xxl-start-0 { + border-bottom-start-radius: 0 !important; + border-top-start-radius: 0 !important; + } + .opacity-xxl-0 { + opacity: 0 !important; + } + .opacity-xxl-25 { + opacity: 0.25 !important; + } + .opacity-xxl-50 { + opacity: 0.5 !important; + } + .opacity-xxl-75 { + opacity: 0.75 !important; + } + .opacity-xxl-85 { + opacity: 0.85 !important; + } + .opacity-xxl-100 { + opacity: 1 !important; + } + .text-xxl-facebook { + color: #3c5a99 !important; + } + .text-xxl-google-plus { + color: #dd4b39 !important; + } + .text-xxl-twitter { + color: #1da1f2 !important; + } + .text-xxl-linkedin { + color: #0077b5 !important; + } + .text-xxl-youtube { + color: #ff0000 !important; + } + .text-xxl-github { + color: #333 !important; + } + .text-xxl-theme { + color: #0BAC56 !important; + } + .text-xxl-black { + color: #000 !important; + } + .text-xxl-100 { + color: #F5F7FA !important; + } + .text-xxl-200 { + color: #EBEBED !important; + } + .text-xxl-300 { + color: #E1E0E4 !important; + } + .text-xxl-400 { + color: #D7D6DA !important; + } + .text-xxl-500 { + color: #CDCCD1 !important; + } + .text-xxl-600 { + color: #C3C1C8 !important; + } + .text-xxl-700 { + color: #7D7987 !important; + } + .text-xxl-800 { + color: #616368 !important; + } + .text-xxl-900 { + color: #4F5665 !important; + } + .text-xxl-1000 { + color: #112D58 !important; + } + .text-xxl-1100 { + color: #1F1534 !important; + } + .text-xxl-white { + color: #fff !important; + } + .max-vh-xxl-25 { + max-height: 25vh !important; + } + .max-vh-xxl-50 { + max-height: 50vh !important; + } + .max-vh-xxl-75 { + max-height: 75vh !important; + } + .max-vh-xxl-100 { + max-height: 100vh !important; + } + .border-xxl-x { + border-right: 1px solid #E1E0E4 !important; + border-left: 1px solid #E1E0E4 !important; + } + .border-xxl-x-0 { + border-right: 0 !important; + border-left: 0 !important; + } + .border-xxl-y { + border-top: 1px solid #E1E0E4 !important; + border-bottom: 1px solid #E1E0E4 !important; + } + .border-xxl-y-0 { + border-top: 0 !important; + border-bottom: 0 !important; + } + .border-xxl-dashed { + border: 1px dashed #E1E0E4 !important; + } + .border-xxl-dashed-top { + border-top: 1px dashed #E1E0E4 !important; + } + .border-xxl-dashed-end { + border-left: 1px dashed #E1E0E4 !important; + } + .border-xxl-dashed-start { + border-right: 1px dashed #E1E0E4 !important; + } + .border-xxl-dashed-bottom { + border-bottom: 1px dashed #E1E0E4 !important; + } + .border-xxl-dashed-x { + border-right: 1px dashed #E1E0E4 !important; + border-left: 1px dashed #E1E0E4 !important; + } + .border-xxl-dashed-y { + border-top: 1px dashed #E1E0E4 !important; + border-bottom: 1px dashed #E1E0E4 !important; + } + .rounded-xxl-0 { + border-radius: 0 !important; + } +} + +@media print { + .d-print-inline { + display: inline !important; + } + .d-print-inline-block { + display: inline-block !important; + } + .d-print-block { + display: block !important; + } + .d-print-grid { + display: grid !important; + } + .d-print-table { + display: table !important; + } + .d-print-table-row { + display: table-row !important; + } + .d-print-table-cell { + display: table-cell !important; + } + .d-print-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + } + .d-print-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } + .d-print-none { + display: none !important; + } +} + +/*----------------------------------------------- +| Theme Styles +-----------------------------------------------*/ +/*----------------------------------------------- +| Reboot +-----------------------------------------------*/ +::-webkit-input-placeholder { + opacity: 1; + color: #D7D6DA !important; +} +::-moz-placeholder { + opacity: 1; + color: #D7D6DA !important; +} +:-ms-input-placeholder { + opacity: 1; + color: #D7D6DA !important; +} +::-ms-input-placeholder { + opacity: 1; + color: #D7D6DA !important; +} +::placeholder { + opacity: 1; + color: #D7D6DA !important; +} + +html { + scroll-behavior: smooth; + scroll-padding-top: 6.3125rem; +} + +body { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + position: relative; +} + +pre, code { + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; +} + +section { + position: relative; + padding-top: 4rem; + padding-bottom: 4rem; +} + +@media (min-width: 992px) { + section { + padding-top: 7.5rem; + padding-bottom: 7.5rem; + } +} + +input, +button, +select, +optgroup, +textarea, +label, +.alert, +.badge, +.blockquote-footer, +.btn, +.navbar, +.pagination, +.valid-feedback, +.invalid-feedback { + font-family: "Chivo", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; +} + +pre { + margin: 0; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); +} + +strong { + font-weight: 600; +} + +label { + font-weight: 500 !important; + margin-bottom: 0.5rem; +} + +@font-face { + font-family: 'Circular Std'; + src: url("../fonts/CircularStd-MediumItalic.eot"); + src: local("Circular Std Medium Italic"), local("CircularStd-MediumItalic"), url("../fonts/CircularStd-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-MediumItalic.woff2") format("woff2"), url("../fonts/CircularStd-MediumItalic.woff") format("woff"), url("../fonts/CircularStd-MediumItalic.ttf") format("truetype"); + font-weight: 500; + font-style: italic; +} + +@font-face { + font-family: 'Circular Std'; + src: url("../fonts/CircularStd-Black.eot"); + src: local("Circular Std Black"), local("CircularStd-Black"), url("../fonts/CircularStd-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-Black.woff2") format("woff2"), url("../fonts/CircularStd-Black.woff") format("woff"), url("../fonts/CircularStd-Black.ttf") format("truetype"); + font-weight: 900; + font-style: normal; +} + +@font-face { + font-family: 'Circular Std'; + src: url("../fonts/CircularStd-Medium.eot"); + src: local("Circular Std Medium"), local("CircularStd-Medium"), url("../fonts/CircularStd-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-Medium.woff2") format("woff2"), url("../fonts/CircularStd-Medium.woff") format("woff"), url("../fonts/CircularStd-Medium.ttf") format("truetype"); + font-weight: 500; + font-style: normal; +} + +@font-face { + font-family: 'Circular Std'; + src: url("../fonts/CircularStd-Bold.eot"); + src: local("Circular Std Bold"), local("CircularStd-Bold"), url("../fonts/CircularStd-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-Bold.woff2") format("woff2"), url("../fonts/CircularStd-Bold.woff") format("woff"), url("../fonts/CircularStd-Bold.ttf") format("truetype"); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: 'Circular Std'; + src: url("../fonts/CircularStd-BlackItalic.eot"); + src: local("Circular Std Black Italic"), local("CircularStd-BlackItalic"), url("../fonts/CircularStd-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-BlackItalic.woff2") format("woff2"), url("../fonts/CircularStd-BlackItalic.woff") format("woff"), url("../fonts/CircularStd-BlackItalic.ttf") format("truetype"); + font-weight: 900; + font-style: italic; +} + +@font-face { + font-family: 'Circular Std Book'; + src: url("../fonts/CircularStd-BookItalic.eot"); + src: local("Circular Std Book Italic"), local("CircularStd-BookItalic"), url("../fonts/CircularStd-BookItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-BookItalic.woff2") format("woff2"), url("../fonts/CircularStd-BookItalic.woff") format("woff"), url("../fonts/CircularStd-BookItalic.ttf") format("truetype"); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: 'Circular Std'; + src: url("../fonts/CircularStd-BoldItalic.eot"); + src: local("Circular Std Bold Italic"), local("CircularStd-BoldItalic"), url("../fonts/CircularStd-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-BoldItalic.woff2") format("woff2"), url("../fonts/CircularStd-BoldItalic.woff") format("woff"), url("../fonts/CircularStd-BoldItalic.ttf") format("truetype"); + font-weight: bold; + font-style: italic; +} + +@font-face { + font-family: 'Circular Std Book'; + src: url("../fonts/CircularStd-Book.eot"); + src: local("Circular Std Book"), local("CircularStd-Book"), url("../fonts/CircularStd-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-Book.woff2") format("woff2"), url("../fonts/CircularStd-Book.woff") format("woff"), url("../fonts/CircularStd-Book.ttf") format("truetype"); + font-weight: normal; + font-style: normal; +} + +/* -------------------------------------------------------------------------- */ +/* Browser Fixing */ +/* -------------------------------------------------------------------------- */ +.firefox .dropcap:first-letter { + margin-top: 0.175em; +} + +.chrome .btn-close { + background-clip: unset; +} + +/* -------------------------------------------------------------------------- */ +/* Text */ +/* -------------------------------------------------------------------------- */ +.text-smallcaps { + font-variant: small-caps; +} + +.text-superscript { + vertical-align: super; +} + +.text-word-break { + word-break: break-word; +} + +/*----------------------------------------------- +| Font family +-----------------------------------------------*/ +.font-sans-serif { + font-family: "Chivo", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; +} + +.font-base { + font-family: "Chivo", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; +} + +/*----------------------------------------------- +| Error Page +-----------------------------------------------*/ +.fs-error { + font-size: 7rem; +} + +@media (min-width: 576px) { + .fs-error { + font-size: 10rem; + } +} + +/*----------------------------------------------- +| Text alignment +-----------------------------------------------*/ +.text-justify { + text-align: justify !important; +} + +.shape-up { + margin-top: -21rem; +} + +/*----------------------------------------------- +| Backgrounds +-----------------------------------------------*/ +.bg-holder { + position: absolute; + width: 100%; + min-height: 100%; + top: 0; + right: 0; + background-size: cover; + background-position: center; + overflow: hidden; + will-change: transform, opacity, filter; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + background-repeat: no-repeat; + z-index: 0; +} + +.bg-holder.bg-right { + right: auto; + left: 0; +} + +.bg-holder.overlay:before { + position: absolute; + content: ""; + background: rgba(0, 0, 0, 0.25); + top: 0; + bottom: 0; + right: 0; + left: 0; +} + +.bg-holder.overlay-0:before { + background: rgba(0, 0, 0, 0.7); +} + +.bg-holder.overlay-1:before { + background: rgba(0, 0, 0, 0.55); +} + +.bg-holder.overlay-2:before { + background: rgba(0, 0, 0, 0.4); +} + +.bg-holder .bg-video { + position: absolute; + display: block; + z-index: -1; + top: 0; + right: 0; + -o-object-fit: cover; + object-fit: cover; + height: 100%; + min-width: 100%; +} + +.bg-holder .bg-youtube { + position: absolute !important; + top: 0; + right: 0; + height: 100%; + width: 100%; +} + +.bg-primary-gradient { + background: -o-linear-gradient(-241.82deg, #51B4F7 9.05%, #5A98F2 76.74%); + background: linear-gradient(-208.18deg, #51B4F7 9.05%, #5A98F2 76.74%); +} + +.bg-dark-gradient { + background: -o-linear-gradient(-269deg, rgba(113, 110, 110, 0) 15%, rgba(30, 42, 70, 0.93) 72.07%); + background: linear-gradient(-181deg, rgba(113, 110, 110, 0) 15%, rgba(30, 42, 70, 0.93) 72.07%); +} + +.bg-light-gradient { + background: -o-linear-gradient(-269deg, rgba(113, 110, 110, 0) 35%, rgba(30, 45, 70, 0.93) 94.07%); + background: linear-gradient(-181deg, rgba(113, 110, 110, 0) 35%, rgba(30, 45, 70, 0.93) 94.07%); +} + +/* -------------------------------------------------------------------------- */ +/* Borders */ +/* -------------------------------------------------------------------------- */ +.overflow-hidden[class*='rounded'] { + -webkit-mask-image: radial-gradient(#fff, #000); + mask-image: radial-gradient(#fff, #000); +} + +.border-top-2 { + border-top-width: 0.125rem !important; +} + +.border-end-2 { + border-left-width: 0.125rem !important; +} + +.border-bottom-2 { + border-bottom-width: 0.125rem !important; +} + +.border-start-2 { + border-right-width: 0.125rem !important; +} + +/* -------------------------------------------------------------------------- */ +/* Position */ +/* -------------------------------------------------------------------------- */ +.container, +.container-fluid, +.container-sm, +.container-md, +.container-lg, +.container-xl, +.container-xxl { + position: relative; +} + +.all-0 { + top: 0; + left: 0; + bottom: 0; + right: 0; +} + +/* -------------------------------------------------------------------------- */ +/* Flex */ +/* -------------------------------------------------------------------------- */ +.flex-center { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; +} + +.flex-between-center { + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} + +.flex-end-center { + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} + +.flex-1 { + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; +} + +.link-black { + color: #000 !important; +} + +.link-black:hover, .link-black:focus { + color: black !important; +} + +.link-100 { + color: #F5F7FA !important; +} + +.link-100:hover, .link-100:focus { + color: #c2cee1 !important; +} + +.link-200 { + color: #EBEBED !important; +} + +.link-200:hover, .link-200:focus { + color: #c3c3c9 !important; +} + +.link-300 { + color: #E1E0E4 !important; +} + +.link-300:hover, .link-300:focus { + color: #b9b7c0 !important; +} + +.link-400 { + color: #D7D6DA !important; +} + +.link-400:hover, .link-400:focus { + color: #b0aeb6 !important; +} + +.link-500 { + color: #CDCCD1 !important; +} + +.link-500:hover, .link-500:focus { + color: #a6a4ad !important; +} + +.link-600 { + color: #C3C1C8 !important; +} + +.link-600:hover, .link-600:focus { + color: #9c98a4 !important; +} + +.link-700 { + color: #7D7987 !important; +} + +.link-700:hover, .link-700:focus { + color: #58555f !important; +} + +.link-800 { + color: #616368 !important; +} + +.link-800:hover, .link-800:focus { + color: #3c3d40 !important; +} + +.link-900 { + color: #4F5665 !important; +} + +.link-900:hover, .link-900:focus { + color: #2d313a !important; +} + +.link-1000 { + color: #112D58 !important; +} + +.link-1000:hover, .link-1000:focus { + color: #050c18 !important; +} + +.link-1100 { + color: #1F1534 !important; +} + +.link-1100:hover, .link-1100:focus { + color: black !important; +} + +.link-white { + color: #fff !important; +} + +.link-white:hover, .link-white:focus { + color: #d9d9d9 !important; +} + +.shadow-transition { + -webkit-box-shadow: 0 25px 45px rgba(79, 86, 101, 0.075); + box-shadow: 0 25px 45px rgba(79, 86, 101, 0.075); + -webkit-transition: -webkit-box-shadow 0.4s ease; + transition: -webkit-box-shadow 0.4s ease; + -o-transition: box-shadow 0.4s ease; + transition: box-shadow 0.4s ease; + transition: box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease; +} + +/*----------------------------------------------- +| Icons group +-----------------------------------------------*/ +.icon-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; +} + +.icon-group .icon-item:not(:last-child) { + margin-left: 0.5rem; +} + +.icon-item { + border-radius: 50%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + color: #7D7987; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + height: 2.5rem; + width: 2.5rem; + border: 0; + font-size: 0.875rem; + -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); +} + +.icon-item:hover, .icon-item:focus { + background-color: #EBEBED; +} + +.icon-item.icon-item-sm { + height: 1.875rem; + width: 1.875rem; +} + +.icon-item.icon-item-lg { + height: 2.75rem; + width: 2.75rem; +} + +.fontawesome-i2svg-active .icon-indicator { + opacity: 1; +} + +/*----------------------------------------------- +| Object fit and Z-index +-----------------------------------------------*/ +.fit-cover { + -o-object-fit: cover; + object-fit: cover; +} + +.z-index-1 { + z-index: 1; +} + +.z-index-2 { + z-index: 2 !important; +} + +.z-index--1 { + z-index: -1; +} + +/*----------------------------------------------- +| Sidebar +-----------------------------------------------*/ +.sticky-sidebar { + position: -webkit-sticky; + position: sticky; + z-index: 1020; + top: 5.3125rem; +} + +/*----------------------------------------------- +| Custom circle +-----------------------------------------------*/ +.circle-dashed { + border: 1px dashed #1F3A63; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + border-radius: 50%; + width: 3.5rem; + height: 3.5rem; +} + +/*----------------------------------------------- +| Miscellaneous +-----------------------------------------------*/ +.hover-text-decoration-none:hover, .hover-text-decoration-none:focus { + text-decoration: none; +} + +.resize-none { + resize: none; +} + +.collapsed .collapse-icon { + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + -webkit-transform: rotate(0deg); + -ms-transform: rotate(0deg); + transform: rotate(0deg); +} + +.collapse-icon { + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + -webkit-transform: rotate(-90deg); + -ms-transform: rotate(-90deg); + transform: rotate(-90deg); +} + +[data-dismiss="dropdown"] *, +[data-offset-top] *, +[data-toggle="collapse"] *, +[data-toggle="tooltip"] *, +[data-toggle="popover"] * { + pointer-events: none; +} + +/*----------------------------------------------- +| Outline +-----------------------------------------------*/ +.outline-none { + outline: none; + -webkit-box-shadow: none; + box-shadow: none; +} + +.outline-none:hover, .outline-none:focus { + outline: none; + -webkit-box-shadow: none; + box-shadow: none; +} + +/*----------------------------------------------- +| Vertical Line (used in kanban header) +-----------------------------------------------*/ +.vertical-line:after { + position: absolute; + content: ""; + height: 75%; + width: 1px; + background: #E1E0E4; + left: 0; + top: 50%; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + transform: translateY(-50%); +} + +.vertical-line.vertical-line-400:after { + background-color: #D7D6DA; +} + +/* -------------------------------------------------------------------------- */ +/* Transition */ +/* -------------------------------------------------------------------------- */ +.transition-base { + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} + +.transition-none { + -webkit-transition: none; + -o-transition: none; + transition: none; +} + +.fsp-75 { + font-size: 75%; +} + +/* -------------------------------------------------------------------------- */ +/* Width */ +/* -------------------------------------------------------------------------- */ +.min-w-0 { + min-width: 0; +} + +/* -------------------------------------------------------------------------- */ +/* Terms sidebar */ +/* -------------------------------------------------------------------------- */ +.terms-sidebar .nav-link { + color: #CDCCD1; + font-weight: 500; + font-family: "Chivo", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; +} + +.terms-sidebar .nav-link.active { + color: #1F3A63; +} + +.card-price { + padding-right: .75rem; + padding-left: .75rem; + text-align: center; +} + +.backdrop { + -webkit-backdrop-filter: blur(3px); + backdrop-filter: blur(3px); +} + +/*----------------------------------------------- +| LaslesVPN glow buttons +-----------------------------------------------*/ +.btn-glow { + position: relative; +} + +.btn-glow::before { + content: ''; + height: 80%; + width: 80%; + position: absolute; + top: 10%; + right: 10%; + display: inline-block; + background-color: inherit; + opacity: 0.55; + -webkit-filter: blur(26px); + filter: blur(26px); + -webkit-transform: translateY(45%); + -ms-transform: translateY(45%); + transform: translateY(45%); + z-index: -1; + border-radius: 10px; +} + +/* Hover */ +.hover-top { + -webkit-transform: translateY(0) translateZ(0); + transform: translateY(0) translateZ(0); + -webkit-transition: all 0.3s ease-out; + -o-transition: all 0.3s ease-out; + transition: all 0.3s ease-out; +} + +.hover-top.hover-top-shadow-lg:hover, .hover-top.hover-top-shadow-lg:focus { + -webkit-transform: translateY(-0.3125rem) translateZ(0); + transform: translateY(-0.3125rem) translateZ(0); +} + +.hover-top:hover, .hover-top:focus { + -webkit-transform: translateY(-0.125rem) translateZ(0); + transform: translateY(-0.125rem) translateZ(0); + -webkit-box-shadow: -0.5rem 0.5rem 1.5rem rgba(22, 28, 45, 0.1) !important; + box-shadow: -0.5rem 0.5rem 1.5rem rgba(22, 28, 45, 0.1) !important; +} + +/* -------------------------------------------------------------------------- */ +/* Badge */ +/* -------------------------------------------------------------------------- */ +.badge { + line-height: 0.8125rem; +} + +.badge-circle { + height: 2rem; + width: 2rem; + border-radius: 50%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 0 0.5rem; +} + +@media (min-width: 768px) { + .badge-circle { + height: 3.4rem; + width: 3.4rem; + border-radius: 50%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 0 1rem; + } +} + +.carousel-control-next, +.carousel-control-prev { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + width: 15%; + color: #66BB6A; + text-align: center; + opacity: 0.9; + -webkit-transition: opacity 0.15s ease; + -o-transition: opacity 0.15s ease; + transition: opacity 0.15s ease; +} + +@media (prefers-reduced-motion: reduce) { + .carousel-control-next, + .carousel-control-prev { + -webkit-transition: none; + -o-transition: none; + transition: none; + } +} + +.carousel-control-next:hover, .carousel-control-next:focus, +.carousel-control-prev:hover, +.carousel-control-prev:focus { + color: #66BB6A; + text-decoration: none; + outline: 0; + opacity: 0.9; +} + +.carousel-control-prev { + right: 0; +} + +.carousel-control-next { + left: 0; +} + +.carousel-indicators { + position: static; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: start; + margin: 0; +} + +.carousel-indicators li { + border-radius: 50%; +} + +.carousel-indicators .active { + opacity: 1; + background-color: #1F3A63; + width: 9px; + height: 9px; +} + +.carousel-control-prev { + right: auto; + left: 45px; +} + +.card-span { + -webkit-transform: translateY(0) translateZ(0); + transform: translateY(0) translateZ(0); + -webkit-transition: all 0.3s ease-out; + -o-transition: all 0.3s ease-out; + transition: all 0.3s ease-out; + border: 0; +} + +.card-span.hover-top-shadow-lg:hover, .card-span.hover-top-shadow-lg:focus { + -webkit-transform: translateY(-0.3125rem) translateZ(0); + transform: translateY(-0.3125rem) translateZ(0); +} + +.card-span:hover, .card-span:focus { + -webkit-transform: translateY(-0.125rem) translateZ(0); + transform: translateY(-0.125rem) translateZ(0); + -webkit-box-shadow: -0.5rem 0.5rem 1.5rem rgba(22, 28, 45, 0.1) !important; + box-shadow: -0.5rem 0.5rem 1.5rem rgba(22, 28, 45, 0.1) !important; + background-color: #D9EEDA; +} + +.theme-tab .nav-link { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + padding-right: 0; + padding-left: 0; + width: 100%; + text-align: center; + color: #fff; + display: block; +} + +.theme-tab .nav-link .nav-item-circle { + color: #fff; + background-color: #66BB6A; + border: 2px solid #fff; + height: 3rem; + width: 3rem; + border-radius: 50%; + line-height: 2.75rem; + padding: 0; + text-align: center; + -ms-flex-item-align: center; + align-self: center; + display: block; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} + +.theme-tab .nav-link.active { + color: #66BB6A; +} + +.theme-tab .nav-link.active .nav-item-circle { + background-color: #fff !important; + color: #66BB6A; + border-color: #fff; +} + +.theme-tab .nav-link .nav-item-circle .check-icon { + display: none; +} + +.theme-tab .nav-link .nav-item-circle-parent { + display: block; +} + +.theme-tab .nav-link .nav-item-circle-parent:before { + content: ""; + height: 2px; + width: 101%; + position: absolute; + right: 51%; + top: 50%; + -webkit-transform: translate3d(50%, -50%, 0); + transform: translate3d(50%, -50%, 0); + background: #fff; +} + +.theme-tab .nav-item-circle-parent { + position: relative; + padding: 0 1rem; +} + +.theme-tab .nav-item-circle { + margin: 0 auto; + z-index: 1; + position: relative; +} + +.theme-tab .nav-item { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-preferred-size: auto; + flex-basis: auto; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; +} + +.theme-tab .nav-item:first-child .nav-item-circle-parent:before, .theme-tab .nav-item:last-child .nav-item-circle-parent:before { + width: 50%; +} + +.theme-tab .nav-item:first-child .nav-item-circle-parent:before { + -webkit-transform: translate3d(0, -50%, 0); + transform: translate3d(0, -50%, 0); +} + +.theme-tab .nav-item:last-child .nav-item-circle-parent:before { + right: 0; + -webkit-transform: translate3d(0, -50%, 0); + transform: translate3d(0, -50%, 0); +} + +.cta { + margin-bottom: -21rem; +} + +@media (min-width: 768px) { + .cta { + margin-bottom: -20rem; + } +} + +/*----------------------------------------------- +| User Styles +-----------------------------------------------*/ + +/*# sourceMappingURL=theme-rtl.css.map */ diff --git a/public/assets/css/theme-rtl.css.map b/public/assets/css/theme-rtl.css.map new file mode 100644 index 0000000..fcde5db --- /dev/null +++ b/public/assets/css/theme-rtl.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["theme.scss","theme/_variables.scss","theme/_utilities.scss","theme.css","_bootstrap.scss","../../node_modules/bootstrap/scss/_root.scss","../../node_modules/bootstrap/scss/_reboot.scss","../../node_modules/bootstrap/scss/vendor/_rfs.scss","../../node_modules/bootstrap/scss/_variables.scss","../../node_modules/bootstrap/scss/_functions.scss","../../node_modules/bootstrap/scss/mixins/_border-radius.scss","../../node_modules/bootstrap/scss/_type.scss","../../node_modules/bootstrap/scss/mixins/_lists.scss","../../node_modules/bootstrap/scss/_images.scss","../../node_modules/bootstrap/scss/mixins/_image.scss","../../node_modules/bootstrap/scss/_containers.scss","../../node_modules/bootstrap/scss/mixins/_container.scss","../../node_modules/bootstrap/scss/mixins/_breakpoints.scss","../../node_modules/bootstrap/scss/_grid.scss","../../node_modules/bootstrap/scss/mixins/_grid.scss","../../node_modules/bootstrap/scss/_tables.scss","../../node_modules/bootstrap/scss/mixins/_table-variants.scss","../../node_modules/bootstrap/scss/forms/_labels.scss","../../node_modules/bootstrap/scss/forms/_form-text.scss","../../node_modules/bootstrap/scss/forms/_form-control.scss","../../node_modules/bootstrap/scss/mixins/_transition.scss","../../node_modules/bootstrap/scss/mixins/_gradients.scss","../../node_modules/bootstrap/scss/forms/_form-select.scss","../../node_modules/bootstrap/scss/forms/_form-check.scss","../../node_modules/bootstrap/scss/forms/_form-range.scss","../../node_modules/bootstrap/scss/forms/_floating-labels.scss","../../node_modules/bootstrap/scss/forms/_input-group.scss","../../node_modules/bootstrap/scss/mixins/_forms.scss","../../node_modules/bootstrap/scss/_buttons.scss","../../node_modules/bootstrap/scss/mixins/_buttons.scss","../../node_modules/bootstrap/scss/_transitions.scss","../../node_modules/bootstrap/scss/_dropdown.scss","../../node_modules/bootstrap/scss/mixins/_caret.scss","../../node_modules/bootstrap/scss/_button-group.scss","../../node_modules/bootstrap/scss/_nav.scss","../../node_modules/bootstrap/scss/_navbar.scss","../../node_modules/bootstrap/scss/_card.scss","../../node_modules/bootstrap/scss/_breadcrumb.scss","../../node_modules/bootstrap/scss/_pagination.scss","../../node_modules/bootstrap/scss/mixins/_pagination.scss","../../node_modules/bootstrap/scss/_badge.scss","../../node_modules/bootstrap/scss/_alert.scss","../../node_modules/bootstrap/scss/mixins/_alert.scss","../../node_modules/bootstrap/scss/_progress.scss","../../node_modules/bootstrap/scss/_list-group.scss","../../node_modules/bootstrap/scss/mixins/_list-group.scss","../../node_modules/bootstrap/scss/_close.scss","../../node_modules/bootstrap/scss/_toasts.scss","../../node_modules/bootstrap/scss/_modal.scss","../../node_modules/bootstrap/scss/_tooltip.scss","../../node_modules/bootstrap/scss/mixins/_reset-text.scss","../../node_modules/bootstrap/scss/_popover.scss","../../node_modules/bootstrap/scss/_carousel.scss","../../node_modules/bootstrap/scss/mixins/_clearfix.scss","../../node_modules/bootstrap/scss/_spinners.scss","../../node_modules/bootstrap/scss/_accordion.scss","../../node_modules/bootstrap/scss/helpers/_colored-links.scss","../../node_modules/bootstrap/scss/helpers/_ratio.scss","../../node_modules/bootstrap/scss/helpers/_position.scss","../../node_modules/bootstrap/scss/helpers/_visually-hidden.scss","../../node_modules/bootstrap/scss/mixins/_visually-hidden.scss","../../node_modules/bootstrap/scss/helpers/_stretched-link.scss","../../node_modules/bootstrap/scss/helpers/_text-truncation.scss","../../node_modules/bootstrap/scss/mixins/_text-truncate.scss","../../node_modules/bootstrap/scss/mixins/_utilities.scss","../../node_modules/bootstrap/scss/utilities/_api.scss","theme/_reboot.scss","theme/_fonts.scss","theme/_browser-support.scss","theme/helpers/_text.scss","theme/helpers/_background.scss","theme/helpers/_borders.scss","theme/helpers/_position.scss","theme/helpers/_flex.scss","theme/helpers/_colored-links.scss","theme/helpers/_shadow.scss","theme/_icon.scss","theme/_mixins.scss","theme/_mixed.scss","theme/_button.scss","theme/_hover.scss","theme/_badge.scss","theme/_testimonial.scss","theme/_card.scss","theme/_how-it-works.scss","theme/_cta.scss"],"names":[],"mappings":"AAAA,+EAAA;AACA,+EAAA;AACA,+EAAA;ACFA,oBAAA;ACAA,+EAAA;AACA,+EAAA;AACA,+EAAA;AFaA;;gDGNgD;ACThD;;;;;EDeE;AEfF;EAGI,kBAAiC;EAAjC,oBAAiC;EAAjC,oBAAiC;EAAjC,kBAAiC;EAAjC,iBAAiC;EAAjC,oBAAiC;EAAjC,oBAAiC;EAAjC,mBAAiC;EAAjC,kBAAiC;EAAjC,kBAAiC;EAAjC,gBAAiC;EAAjC,kBAAiC;EAAjC,uBAAiC;EAIjC,qBAAiC;EAAjC,uBAAiC;EAAjC,qBAAiC;EAAjC,kBAAiC;EAAjC,qBAAiC;EAAjC,oBAAiC;EAAjC,mBAAiC;EAAjC,kBAAiC;EAKnC,wLAAsD;EACtD,2GAAoD;EACpD,yFAAwC;AF2B1C;;AG1BA;;;EAGE,8BAAsB;EAAtB,sBAAsB;AH6BxB;;AGhBI;ED/BJ;ICgCM,uBAAuB;EHoB3B;AACF;;AGRA;EACE,SAAS;EACT,kKL0LmC;EMkB/B,eAvE+B;EDnInC,gBLsNsB;EKrNtB,gBEwX+B;EFvX/B,cLJiB;EKMjB,sBLbU;EKcV,8BAA8B;EAC9B,6CLHU;AEaZ;;AAEA;EGEE,qBAAqB;AHAvB;;AGSA;EACE,cAAsB;EACtB,cLrCgB;EKsChB,8BAA8B;EAC9B,SAAS;EACT,ULkUY;AExUd;;AGSA;EACE,WLgFgB;AEtFlB;;AGgBA;EACE,aAAa;EACb,qBE6VuC;EF5VvC,+KLgImC;EK9HnC,gBLkKsB;EKjKtB,gBE6V+B;EF5V/B,cLtDiB;AEwCnB;;AGiBA;ECoJQ,uCAf6B;AJlJrC;;AIDI;EDcJ;IC2JQ,qBAlF6B;EJjFnC;AACF;;AGYA;EC+IQ,uCAf6B;AJxIrC;;AIXI;EDmBJ;ICsJQ,oBAlF6B;EJvEnC;AACF;;AGOA;EC0IQ,qCAf6B;AJ9HrC;;AIrBI;EDwBJ;ICiJQ,mBAlF6B;EJ7DnC;AACF;;AGEA;ECqIQ,mCAf6B;AJpHrC;;AI/BI;ED6BJ;IC4IQ,kBAlF6B;EJnDnC;AACF;;AGHA;EC4HM,iBAvE+B;AJ9CrC;;AGFA;ECuHM,qBAvE+B;AJ1CrC;;AGKA;EACE,aAAa;EACb,mBEwJ8B;AL1JhC;;AGaA;;EAEE,0BAA0B;EAC1B,yCAAiC;EAAjC,iCAAiC;EACjC,YAAY;EACZ,sCAA8B;EAA9B,8BAA8B;AHVhC;;AGgBA;EACE,mBAAmB;EACnB,kBAAkB;EAClB,oBAAoB;AHbtB;;AGmBA;;EAEE,kBAAkB;AHhBpB;;AGmBA;;;EAGE,aAAa;EACb,mBAAmB;AHhBrB;;AGmBA;;;;EAIE,gBAAgB;AHhBlB;;AGmBA;EACE,gBLsEoB;AEtFtB;;AGqBA;EACE,oBAAoB;EACpB,cAAc;AHlBhB;;AGwBA;EACE,gBAAgB;AHrBlB;;AG6BA;;EAEE,gBL+CsB;AEzExB;;AGkCA;ECuBM,cAvE+B;AJkBrC;;AGqCA;EACE,cEkQgC;EFjQhC,yBEyQmC;AL3SrC;;AG2CA;;EAEE,kBAAkB;ECGd,iBAvE+B;EDsEnC,cAAc;EACd,wBAAwB;AHxC1B;;AG2CA;EAAM,cAAc;AHvCpB;;AGwCA;EAAM,UAAU;AHpChB;;AGyCA;EACE,cLxLY;EKyLZ,qBLjDoB;AEWtB;;AGoCA;EAKI,cGzGiC;EH0GjC,0BLpD6B;AEejC;;AG8CA;EAGI,cAAc;EACd,qBAAqB;AH7CzB;;AGoDA;;;;EAIE,qCEuHoF;ED9JhF,cAvE+B;EDgHnC,+BAAoC;EACpC,2BAA2B;AHjD7B;;AGwDA;EACE,cAAc;EACd,aAAa;EACb,mBAAmB;EACnB,cAAc;ECrDV,cAvE+B;AJwErC;;AGgDA;ECjDM,kBAvE+B;EDmIjC,cAAc;EACd,kBAAkB;AHtDtB;;AG0DA;ECjEM,cAvE+B;ED0InC,cL9OY;EK+OZ,qBAAqB;AHvDvB;;AG0DE;EACE,cAAc;AHvDlB;;AG2DA;EACE,sBE8/BuC;ED3kCnC,cAvE+B;EDsJnC,WLlSU;EKmSV,yBL1RgB;ES/Bd,qBT0MqB;AEwDzB;;AGmDA;EAQI,UAAU;ECpFR,cAvE+B;ED6JjC,gBLvEkB;AEgBtB;;AGgEA;EACE,gBAAgB;AH7DlB;;AGmEA;;EAEE,sBAAsB;AHhExB;;AGwEA;EACE,oBAAoB;EACpB,yBAAyB;AHrE3B;;AGwEA;EACE,mBE6IiC;EF5IjC,sBE4IiC;EF3IjC,cLtUgB;EKuUhB,gBAAgB;AHrElB;;AG4EA;EAEE,mBAAmB;EACnB,gCAAgC;AH1ElC;;AG6EA;;;;;;EAME,qBAAqB;EACrB,mBAAmB;EACnB,eAAe;AH1EjB;;AGkFA;EACE,qBAAqB;AH/EvB;;AGqFA;EAEE,gBAAgB;AHnFlB;;AG2FA;EACE,UAAU;AHxFZ;;AG6FA;;;;;EAKE,SAAS;EACT,oBAAoB;ECnLhB,kBAvE+B;ED4PnC,oBAAoB;AH1FtB;;AG+FA;;EAEE,oBAAoB;AH5FtB;;AAEA;EGiGE,eAAe;AH/FjB;;AGqGA;EACE,iBAAiB;AHlGnB;;AAEA;EGuGE,aAAa;AHrGf;;AG6GA;;;;EAIE,0BAA0B;AH1G5B;;AGsGA;;;;EAQM,eAAe;AHvGrB;;AG8GA;EACE,UAAU;EACV,kBAAkB;AH3GpB;;AGgHA;EACE,gBAAgB;AH7GlB;;AGuHA;EACE,YAAY;EACZ,UAAU;EACV,SAAS;EACT,SAAS;AHpHX;;AG4HA;EACE,WAAW;EACX,WAAW;EACX,UAAU;EACV,qBE3BiC;ED3O3B,iCAf6B;EDwRnC,oBAAoB;AH1HtB;;AIjTI;EDoaJ;IC3PQ,iBAlF6B;EJ+NnC;AACF;;AG6GA;EAUI,WAAW;AHnHf;;AG0HA;;;;;;;EAOE,UAAU;AHvHZ;;AG0HA;EACE,YAAY;AHvHd;;AAEA;EG+HE,oBAAoB;EACpB,6BAA6B;AH7H/B;;AGqIA;;;;;;;CH5HC;AGuID;EACE,wBAAwB;AHrI1B;;AG0IA;EACE,UAAU;AHvIZ;;AG8IA;EACE,aAAa;AH3If;;AGiJA;EACE,aAAa;EACb,0BAA0B;AH9I5B;;AGmJA;EACE,qBAAqB;AHhJvB;;AGqJA;EACE,SAAS;AHlJX;;AGyJA;EACE,kBAAkB;EAClB,eAAe;AHtJjB;;AG8JA;EACE,wBAAwB;AH3J1B;;AAEA;EGkKE,wBAAwB;AHhK1B;;AQ7bA;EJ+NM,iBAvE+B;EItJnC,gBVyOsB;AEuNxB;;AQ3bE;EJ4NM,uCAf6B;EI3MjC,gBVuOmB;EUtOnB,cVkQmB;AE4LvB;;AIvYI;EI1DF;IJmOM,qBAlF6B;EJqTnC;AACF;;AQvcE;EJ4NM,uCAf6B;EI3MjC,gBVuOmB;EUtOnB,cVkQmB;AEwMvB;;AInZI;EI1DF;IJmOM,qBAlF6B;EJiUnC;AACF;;AQndE;EJ4NM,sCAf6B;EI3MjC,gBVuOmB;EUtOnB,cVkQmB;AEoNvB;;AI/ZI;EI1DF;IJmOM,qBAlF6B;EJ6UnC;AACF;;AQ/dE;EJ4NM,uCAf6B;EI3MjC,gBVuOmB;EUtOnB,cVkQmB;AEgOvB;;AI3aI;EI1DF;IJmOM,qBAlF6B;EJyVnC;AACF;;AQ3eE;EJ4NM,uCAf6B;EI3MjC,gBVuOmB;EUtOnB,cVkQmB;AE4OvB;;AIvbI;EI1DF;IJmOM,oBAlF6B;EJqWnC;AACF;;AQvfE;EJ4NM,qCAf6B;EI3MjC,gBVuOmB;EUtOnB,cVkQmB;AEwPvB;;AIncI;EI1DF;IJmOM,mBAlF6B;EJiXnC;AACF;;AQ7eA;ECrDE,eAAe;EACf,gBAAgB;ATsiBlB;;AQ7eA;EC1DE,eAAe;EACf,gBAAgB;AT2iBlB;;AQ/eA;EACE,qBAAqB;ARkfvB;;AQnfA;EAII,oBH+a+B;ALoEnC;;AQzeA;EJ4KM,cAvE+B;EInGnC,yBAAyB;AR4e3B;;AQxeA;EACE,mBViGW;EMoEP,iBAvE+B;AJ8YrC;;AQ7eA;EAKI,gBAAgB;AR4epB;;AQxeA;EACE,iBVwFW;EUvFX,mBVuFW;EMoEP,cAvE+B;EIlFnC,cVpDiB;AE+hBnB;;AQ/eA;EAOI,qBAAqB;AR4ezB;;AU1kBA;ECIE,eAAe;EAGf,YAAY;AXwkBd;;AUzkBA;EACE,gBLwtCwC;EKvtCxC,sBZyBU;EYxBV,yBZ2BgB;ESzBd,sBTyMmB;EahNrB,eAAe;EAGf,YAAY;AXilBd;;AUnkBA;EAEE,qBAAqB;AVqkBvB;;AUlkBA;EACE,qBAA0B;EAC1B,cAAc;AVqkBhB;;AUlkBA;ENqNM,cAvE+B;EM5InC,cZMiB;AE+jBnB;;AYvmBE;;;;;;;ECHA,WAAW;EACX,uCAAuE;EACvE,sCAAsE;EACtE,kBAAkB;EAClB,iBAAiB;AbonBnB;;Ac5jBI;EF5CE;IACE,gBdXK;EEunBX;AACF;;AclkBI;EF5CE;IACE,gBdVK;EE4nBX;AACF;;AcxkBI;EF5CE;IACE,gBdTK;EEioBX;AACF;;Ac9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c;EACd,WAAW;EACX,yBhB6iBkC;EDzT9B,eAvE+B;EiB1KnC,gBvB6PsB;EuB5PtB,gBhB+Z+B;EgB9Z/B,cvBmCiB;EuBlCjB,sBvB2BU;EuB1BV,4BAA4B;EAC5B,yBvB6BgB;EuB5BhB,wBAAgB;EAAhB,qBAAgB;EAAhB,gBAAgB;EdEd,sBTyMmB;EwB3MjB,wFjBuqB4F;EiBvqB5F,gFjBuqB4F;EiBvqB5F,2EjBuqB4F;EiBvqB5F,wEjBuqB4F;EiBvqB5F,8GjBuqB4F;AL8jDlG;;AsBjuEM;EDhBN;ICiBQ,wBAAgB;IAAhB,mBAAgB;IAAhB,gBAAgB;EtBquEtB;AACF;;AqBvvEA;EAqBI,gBAAgB;ArBsuEpB;;AqB3vEA;EAwBM,eAAe;ArBuuErB;;AqB/vEA;EA8BI,cvBae;EuBZf,sBvBKQ;EuBJR,qBfuHiC;EetHjC,UAAU;EAKR,wDvBmCQ;EuBnCR,gDvBmCQ;AE8rEd;;AqBvwEA;EA+CI,aAAmE;ArB4tEvE;;AqB3wEA;EAoDI,cvBVe;EuBYf,UAAU;ArB0tEd;;AqBhxEA;EAoDI,cvBVe;EuBYf,UAAU;ArB0tEd;;AqBhxEA;EAoDI,cvBVe;EuBYf,UAAU;ArB0tEd;;AqBhxEA;EAoDI,cvBVe;EuBYf,UAAU;ArB0tEd;;AqBhxEA;EAoDI,cvBVe;EuBYf,UAAU;ArB0tEd;;AqBhxEA;EAgEI,yBvB1Bc;EuB6Bd,UAAU;ArBktEd;;AqBrxEA;EAyEI,yBhBuegC;EgBtehC,0BhBsegC;EgBrehC,2BhBqegC;EgBrehC,0BhBqegC;EgBpehC,cvBjCe;EyB3CjB,yBzBsCgB;EuBwCd,oBAAoB;EACpB,qBAAqB;EACrB,mBAAmB;EACnB,eAAe;EACf,4BvBiFc;EuBhFd,gBAAgB;ECvEd,qJjB8lB6I;EiB9lB7I,6IjB8lB6I;EiB9lB7I,wIjB8lB6I;EiB9lB7I,qIjB8lB6I;EiB9lB7I,2KjB8lB6I;AL0rDnJ;;AsBpxEM;EDhBN;ICiBQ,wBAAgB;IAAhB,mBAAgB;IAAhB,gBAAgB;EtBwxEtB;AACF;;AqB1yEA;EAyFI,yBfmEiC;ANkpErC;;AqB9yEA;EA6FI,yBhBmdgC;EgBldhC,0BhBkdgC;EgBjdhC,2BhBidgC;EgBjdhC,0BhBidgC;EgBhdhC,cvBrDe;EyB3CjB,yBzBsCgB;EuB4Dd,oBAAoB;EACpB,qBAAqB;EACrB,mBAAmB;EACnB,eAAe;EACf,4BvB6Dc;EuB5Dd,gBAAgB;EC3Fd,qJjB8lB6I;EiB9lB7I,6IjB8lB6I;EiB9lB7I,qIjB8lB6I;EiB9lB7I,2KjB8lB6I;ALmtDnJ;;AsB7yEM;EDhBN;ICiBQ,wBAAgB;IAAhB,gBAAgB;EtBizEtB;AACF;;AqBn0EA;EA4GI,yBfgDiC;AN2qErC;;AqBltEA;EACE,cAAc;EACd,WAAW;EACX,mBAA2B;EAC3B,gBAAgB;EAChB,gBhB4S+B;EgB3S/B,cvBhFiB;EuBiFjB,6BAA6B;EAC7B,yBAAyB;EACzB,mBAAmC;ArBqtErC;;AqB9tEA;EAaI,gBAAgB;EAChB,eAAe;ArBqtEnB;;AqB1sEA;EACE,sCfoC8D;EenC9D,sBvBuK6B;EMhEzB,mBAvE+B;EGlKjC,qBT0MqB;AEuoEzB;;AqBjtEA;EAQI,sBvBiK2B;EuBhK3B,uBvBgK2B;EuB/J3B,0BvB+J2B;EuB/J3B,yBvB+J2B;AE8iE/B;;AqBvtEA;EAcI,sBvB2J2B;EuB1J3B,uBvB0J2B;EuBzJ3B,0BvByJ2B;EuBzJ3B,yBvByJ2B;AEojE/B;;AqBzsEA;EACE,sCfgB8D;Eef9D,sBvBsJ6B;EMnEzB,eAvE+B;EGlKjC,qBT2MoB;AEypExB;;AqBhtEA;EAQI,sBvBgJ2B;EuB/I3B,uBvB+I2B;EuB9I3B,0BvB8I2B;EuB9I3B,yBvB8I2B;AE8jE/B;;AqBttEA;EAcI,sBvB0I2B;EuBzI3B,uBvByI2B;EuBxI3B,0BvBwI2B;EuBxI3B,yBvBwI2B;AEokE/B;;AqBrsEA;EAEI,uCfR4D;AN+sEhE;;AqBzsEA;EAMI,sCfZ4D;ANmtEhE;;AqB7sEA;EAUI,sCfhB4D;ANutEhE;;AqBlsEA;EACE,eAAe;EACf,YAAY;EACZ,iBhBoWmC;ALi2DrC;;AqBxsEA;EAMI,eAAe;ArBssEnB;;AqB5sEA;EAUI,aAAmE;EdpMnE,sBTyMmB;AEksEvB;;AqBjtEA;EAeI,aAAmE;EdzMnE,sBTyMmB;AEusEvB;;AwB75EA;EACE,cAAc;EACd,WAAW;EACX,0CnB4iBkC;EDzT9B,eAvE+B;EoBzKnC,gB1B4PsB;E0B3PtB,gBnB8Z+B;EmB7Z/B,c1BkCiB;E0BjCjB,sB1B0BU;E0BzBV,iPlBqEgF;EkBpEhF,4BAA4B;EAC5B,yCnB4uBqE;EmB3uBrE,0BnB4uB2C;EmB3uB3C,yB1ByBgB;ES1Bd,sBTyMmB;E0BrMrB,wBAAgB;EAAhB,qBAAgB;EAAhB,gBAAgB;AxB85ElB;;AwB/6EA;EAoBI,qBlBkIiC;EkBjIjC,UAAU;EAKR,wD1B8CQ;E0B9CR,gD1B8CQ;AE62Ed;;AwBr7EA;EAgCI,sBnB+gBgC;EmB9gBhC,sBAAsB;AxBy5E1B;;AwB17EA;EAqCI,c1BIe;E0BHf,yB1BDc;AE05ElB;;AwB/7EA;EA4CI,kBAAkB;EAClB,0B1BHe;AE05EnB;;AwBn5EA;EACE,mB1BmQ6B;E0BlQ7B,sB1BkQ6B;E0BjQ7B,oB1BkQ6B;EMhEzB,mBAvE+B;AJ4xErC;;AwBn5EA;EACE,mB1B+P4B;E0B9P5B,sB1B8P4B;E0B7P5B,oB1B8P6B;EMnEzB,eAvE+B;AJmyErC;;AyBn9EA;EACE,cAAc;EACd,kBpBqrB2E;EoBprB3E,mBpBqrBsE;EoBprBtE,uBpBqrB+C;ALiyDjD;;AyB19EA;EAOI,WAAW;EACX,mBAA2C;AzBu9E/C;;AyBn9EA;EACE,UpByqB2C;EoBxqB3C,WpBwqB2C;EoBvqB3C,kBAA6D;EAC7D,mBAAmB;EACnB,sB3BmBU;E2BlBV,4BAA4B;EAC5B,2BAA2B;EAC3B,wBAAwB;EACxB,qCpB4qBoE;EoB3qBpE,wBAAgB;EAAhB,qBAAgB;EAAhB,gBAAgB;EAChB,iCAAmB;EAAnB,mBAAmB;AzBs9ErB;;AyBj+EA;ElBEI,qBForB2C;AL+yD/C;;AyBr+EA;EAoBI,kBpBmqByC;ALkzD7C;;AyBz+EA;EAwBI,+BpB0pBqD;EoB1pBrD,uBpB0pBqD;AL2zDzD;;AyB7+EA;EA4BI,qBnB+GiC;EmB9GjC,UAAU;EACV,wD3B+BU;E2B/BV,gD3B+BU;AEs7Ed;;AyBn/EA;EAkCI,yB3B2BU;E2B1BV,qB3B0BU;AE27Ed;;AyBx/EA;EAyCQ,+OnB2B0E;ANw7ElF;;AyB5/EA;EAiDQ,uJnBmB0E;AN47ElF;;AyBhgFA;EAuDI,yB3BMU;E2BLV,qB3BKU;E2BAR,yOnBO4E;ANk8ElF;;AyBtgFA;EAkEI,oBAAoB;EACpB,oBAAY;EAAZ,YAAY;EACZ,YpBkoByC;ALs0D7C;;AyB5gFA;EA4EM,YpB0nBuC;AL00D7C;;AyBt7EA;EACE,mBpBinByD;ALw0D3D;;AyB17EA;EAII,UpB6mBiC;EoB5mBjC,mBAA4C;EAC5C,wKnB5B8E;EmB6B9E,gCAAgC;ElB/FhC,kBFysBiC;EiB3sB/B,yDjB+sBgE;EiB/sBhE,oDjB+sBgE;EiB/sBhE,iDjB+sBgE;AL80DtE;;AsBzhFM;EGsFN;IHrFQ,wBAAgB;IAAhB,mBAAgB;IAAhB,gBAAgB;EtB6hFtB;AACF;;AyBz8EA;EAYM,0JnBlC4E;ANm+ElF;;AyB78EA;EAgBM,iCpB4mBwC;EoBvmBtC,uJnB3C0E;ANw+ElF;;AyBv7EA;EACE,qBAAqB;EACrB,kBpBimBoC;ALy1DtC;;AyBv7EA;EACE,kBAAkB;EAClB,sBAAsB;EACtB,oBAAoB;AzB07EtB;;AyB77EA;EAQM,oBAAoB;EACpB,oBAAY;EAAZ,YAAY;EACZ,apB8c2B;AL2+DjC;;A0BvkFA;EACE,WAAW;EACX,cpB4K2B;EoB3K3B,UAAU;EACV,6BAA6B;EAC7B,wBAAgB;EAAhB,qBAAgB;EAAhB,gBAAgB;A1B0kFlB;;A0B/kFA;EAQI,UAAU;A1B2kFd;;A0BnlFA;EAY8B,wE5B2DhB;E4B3DgB,gE5B2DhB;AEghFd;;A0BvlFA;EAa8B,gE5B0DhB;AEohFd;;A0B3lFA;EAiBI,SAAS;A1B8kFb;;A0B/lFA;EAqBI,WrBmwB2C;EqBlwB3C,YrBkwB2C;EqBjwB3C,oBAAqE;EHzBvE,yBzByEY;E4B9CV,SrBkwBwC;EE/wBxC,mBFgxB2C;EiBlxBzC,4HjBwxBkI;EiBxxBlI,oHjBwxBkI;EiBxxBlI,4GjBwxBkI;EiBxxBlI,kJjBwxBkI;EqBrwBpI,wBAAgB;EAAhB,gBAAgB;A1B6kFpB;;AsB5lFM;EIdN;IJeQ,wBAAgB;IAAhB,gBAAgB;EtBgmFtB;AACF;;A0BhnFA;EHFE,yBjBuJmC;AN+9ErC;;A0BpnFA;EAqCI,WrB4uBkC;EqB3uBlC,crB4uBmC;EqB3uBnC,kBAAkB;EAClB,erB2uBqC;EqB1uBrC,yB5BJc;E4BKd,yBAAyB;EnB9BzB,mBFywBkC;ALy2DtC;;A0B9nFA;EAgDI,WrBwuB2C;EqBvuB3C,YrBuuB2C;EkB1xB7C,yBzByEY;E4BpBV,SrBwuBwC;EE/wBxC,mBFgxB2C;EiBlxBzC,iHjBwxBkI;EiBxxBlI,4GjBwxBkI;EqB3uBpI,qBAAgB;EAAhB,gBAAgB;A1BilFpB;;AsB1nFM;EIdN;IJeQ,qBAAgB;IAAhB,gBAAgB;EtB8nFtB;AACF;;A0B9oFA;EHFE,yBjBuJmC;AN6/ErC;;A0BlpFA;EA+DI,WrBktBkC;EqBjtBlC,crBktBmC;EqBjtBnC,kBAAkB;EAClB,erBitBqC;EqBhtBrC,yB5B9Bc;E4B+Bd,yBAAyB;EnBxDzB,mBFywBkC;ALu4DtC;;A0B5pFA;EA0EI,oBAAoB;A1BslFxB;;A0BhqFA;EA6EM,yB5BtCY;AE6nFlB;;A0BpqFA;EAiFM,yB5B1CY;AEioFlB;;A2B9qFA;EACE,kBAAkB;A3BirFpB;;A2BlrFA;;EAKI,0BrBkL4D;EqBjL5D,qBtB8iBgC;ALooEpC;;A2BxrFA;EAUI,kBAAkB;EAClB,MAAM;EACN,OAAO;EACP,YAAY;EACZ,qBtBsiBgC;EsBriBhC,oBAAoB;EACpB,6BAA6C;EAC7C,6BAAqB;EAArB,yBAAqB;EAArB,qBAAqB;ELDnB,gFjBqyB8E;EiBryB9E,wEjBqyB8E;EiBryB9E,mEjBqyB8E;EiBryB9E,gEjBqyB8E;EiBryB9E,oGjBqyB8E;AL+4DpF;;AsBhrFM;EKpBN;ILqBQ,wBAAgB;IAAhB,mBAAgB;IAAhB,gBAAgB;EtBorFtB;AACF;;A2B1sFA;EAwBM,kBAAkB;A3BsrFxB;;A2B9sFA;EAwBM,kBAAkB;A3BsrFxB;;A2B9sFA;EAwBM,kBAAkB;A3BsrFxB;;A2B9sFA;EAwBM,kBAAkB;A3BsrFxB;;A2B9sFA;EAwBM,kBAAkB;A3BsrFxB;;A2B9sFA;EA6BM,qBtBoxBoC;EsBnxBpC,wBtBoxBmC;ALi6DzC;;A2BntFA;EA6BM,qBtBoxBoC;EsBnxBpC,wBtBoxBmC;ALi6DzC;;A2BntFA;EA6BM,qBtBoxBoC;EsBnxBpC,wBtBoxBmC;ALi6DzC;;A2BntFA;EAkCM,qBtB+wBoC;EsB9wBpC,wBtB+wBmC;ALs6DzC;;A2BxtFA;EAwCI,qBtBywBsC;EsBxwBtC,wBtBywBqC;AL26DzC;;A2B7tFA;EAgDM,atBmwB+B;EsBlwB/B,8DtBmwB4E;ALg7DlF;;A2BpuFA;EAgDM,atBmwB+B;EsBlwB/B,kEtBmwB4E;EsBnwB5E,8DtBmwB4E;ALg7DlF;;A2BpuFA;;;EAgDM,atBmwB+B;EsBlwB/B,sEtBmwB4E;EsBnwB5E,kEtBmwB4E;EsBnwB5E,8DtBmwB4E;ALg7DlF;;A2BpuFA;EAuDM,atB4vB+B;EsB3vB/B,sEtB4vB4E;EsB5vB5E,8DtB4vB4E;ALq7DlF;;A4BruFA;EACE,kBAAkB;EAClB,oBAAa;EAAb,oBAAa;EAAb,aAAa;EACb,mBAAe;EAAf,eAAe;EACf,0BAAoB;EAApB,uBAAoB;EAApB,oBAAoB;EACpB,WAAW;A5BwuFb;;A4B7uFA;;EASI,kBAAkB;EAClB,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,SAAS;EACT,YAAY;A5ByuFhB;;A4BrvFA;;EAkBI,UAAU;A5BwuFd;;A4B1vFA;EAyBI,kBAAkB;EAClB,UAAU;A5BquFd;;A4B/vFA;EA6BM,UAAU;A5BsuFhB;;A4B3tFA;EACE,oBAAa;EAAb,oBAAa;EAAb,aAAa;EACb,yBAAmB;EAAnB,sBAAmB;EAAnB,mBAAmB;EACnB,yBvBqgBkC;EDzT9B,eAvE+B;EwBnInC,gB9BsNsB;E8BrNtB,gBvBwX+B;EuBvX/B,c9BJiB;E8BKjB,kBAAkB;EAClB,mBAAmB;EACnB,yB9BZgB;E8BahB,yB9BXgB;ES1Bd,sBTyMmB;AE2jFvB;;A4BrtFA;;;;EAIE,sB9ByP6B;EMnEzB,eAvE+B;EGlKjC,qBT2MoB;AEkkFxB;;A4BrtFA;;;;EAIE,sB9B6O6B;EMhEzB,mBAvE+B;EGlKjC,qBT0MqB;AE4kFzB;;A4BrtFA;;EAEE,mBAAsE;A5BwtFxE;;A4B7sFA;;ErB9DI,0BqBkE8B;ErBjE9B,6BqBiE8B;A5B+sFlC;;A4BntFA;;ErB9DI,0BqByE8B;ErBxE9B,6BqBwE8B;A5B8sFlC;;A4BztFA;EAqBI,iB9BkDc;ESvHd,yBqBsE8B;ErBrE9B,4BqBqE8B;A5BysFlC;;A4B3sF8D;EC5F1D,aAAa;EACb,WAAW;EACX,mBxBkmB0C;EDjYxC,cAvE+B;EyBvJjC,c/BuDW;AEmvFf;;A4BntF0C;ECnFtC,kBAAkB;EAClB,SAAS;EACT,UAAU;EACV,aAAa;EACb,eAAe;EACf,uBxBghC2C;EwB/gC3C,iBAAiB;EzBoNf,mBAvE+B;EyB1IjC,W/BFQ;E+BGR,0C/ByCW;ESlEX,sBTyMmB;AE0nFvB;;A6Bj1FI;;;;EA8CE,cAAc;A7B0yFpB;;A6Bx1FI;EAoDE,qB/B4BS;E+BzBP,oCvB4HwD;EuB3HxD,4PvBwB0E;EuBvB1E,4BAA4B;EAC5B,2DAA6D;EAC7D,gEvBwHwD;AN8qFhE;;A6Bj2FI;EA+DI,qB/BiBO;E+BhBP,2D/BgBO;E+BhBP,mD/BgBO;AEsxFf;;A6Bt2FI;EAyEI,oCvB0GwD;EuBzGxD,kFvByGwD;ANwrFhE;;A6B32FI;EAiFE,qB/BDS;E+BIP,uBxB0qB6F;EwBzqB7F,6dvBL0E;EuBM1E,+DxB2pBsD;EwB1pBtD,2EvB4FwD;ANgsFhE;;A6Bn3FI;EA2FI,qB/BXO;E+BYP,2D/BZO;E+BYP,mD/BZO;AEwyFf;;A6Bx3FI;EAmGE,qB/BnBS;AE4yFf;;A6B53FI;EAsGI,yB/BtBO;AEgzFf;;A6Bh4FI;EA0GI,2D/B1BO;E+B0BP,mD/B1BO;AEozFf;;A6Bp4FI;EA8GI,c/B9BO;AEwzFf;;A6BtxFE;EAEI,iBAAiB;A7BwxFvB;;A4B5xFyG;EC5FrG,aAAa;EACb,WAAW;EACX,mBxBkmB0C;EDjYxC,cAvE+B;EyBvJjC,c/BoDS;AEu0Fb;;A4BpyFmF;ECnF/E,kBAAkB;EAClB,SAAS;EACT,UAAU;EACV,aAAa;EACb,eAAe;EACf,uBxBghC2C;EwB/gC3C,iBAAiB;EzBoNf,mBAvE+B;EyB1IjC,W/BFQ;E+BGR,yC/BsCS;ES/DT,sBTyMmB;AE2sFvB;;A6Bl6FI;;;;EA8CE,cAAc;A7B23FpB;;A6Bz6FI;EAoDE,qB/ByBO;E+BtBL,oCvB4HwD;EuB3HxD,4UvBwB0E;EuBvB1E,4BAA4B;EAC5B,2DAA6D;EAC7D,gEvBwHwD;AN+vFhE;;A6Bl7FI;EA+DI,qB/BcK;E+BbL,0D/BaK;E+BbL,kD/BaK;AE02Fb;;A6Bv7FI;EAyEI,oCvB0GwD;EuBzGxD,kFvByGwD;ANywFhE;;A6B57FI;EAiFE,qB/BJO;E+BOL,uBxB0qB6F;EwBzqB7F,6iBvBL0E;EuBM1E,+DxB2pBsD;EwB1pBtD,2EvB4FwD;ANixFhE;;A6Bp8FI;EA2FI,qB/BdK;E+BeL,0D/BfK;E+BeL,kD/BfK;AE43Fb;;A6Bz8FI;EAmGE,qB/BtBO;AEg4Fb;;A6B78FI;EAsGI,yB/BzBK;AEo4Fb;;A6Bj9FI;EA0GI,0D/B7BK;E+B6BL,kD/B7BK;AEw4Fb;;A6Br9FI;EA8GI,c/BjCK;AE44Fb;;A6Bv2FE;EAEI,iBAAiB;A7By2FvB;;A8B79FA;EACE,qBAAqB;EAErB,gBhCiQsB;EgChQtB,gBzBka+B;EyBja/B,chCsCiB;EgCrCjB,kBAAkB;EAGlB,sBAAsB;EACtB,eAA2C;EAC3C,yBAAiB;EAAjB,sBAAiB;EAAjB,qBAAiB;EAAjB,iBAAiB;EACjB,6BAA6B;EAC7B,6BAA2C;EC0G3C,yB1BybkC;EDzT9B,eAvE+B;EGlKjC,uBTsTwB;EwBxTtB,qJjB8lB6I;EiB9lB7I,6IjB8lB6I;EiB9lB7I,wIjB8lB6I;EiB9lB7I,qIjB8lB6I;EiB9lB7I,2KjB8lB6I;ALo4EnJ;;AsB99FM;EQhBN;IRiBQ,wBAAgB;IAAhB,mBAAgB;IAAhB,gBAAgB;EtBk+FtB;AACF;;A8Bp/FA;EAkBI,chCyBe;EgCxBf,qBAA6D;A9Bs+FjE;;A8Bn+FE;EAEE,UAAU;EACV,wDhCgDU;EgChDV,gDhCgDU;AEq7Fd;;A8B9/FA;;EA0CI,oBAAoB;EACpB,azBmjB6B;ALs6EjC;;A8B98FE;ECvCA,WjCqBU;EyBpCV,yBzByEY;EiCxDZ,qBjCwDY;AEi8Fd;;A+Bt/FE;EACE,WjCeQ;EyBpCV,yBjB4JmC;EyBrIjC,qBzBqIiC;ANo3FrC;;A+Bt/FE;EAEE,WjCQQ;EyBpCV,yBjB4JmC;EyB9HjC,qBzB8HiC;EyBzH/B,kDAAiE;EAAjE,0CAAiE;A/Bo/FvE;;A+Bh/FE;;;EAKE,WjCRQ;EiCSR,yBzB+GiC;EyB5GjC,qBzB4GiC;ANm4FrC;;A+Bx/FE;;;EAgBM,kDAAiE;EAAjE,0CAAiE;A/B8+FzE;;A+Bz+FE;EAEE,WjC1BQ;EiC2BR,yBjCUU;EiCPV,qBjCOU;AEk+Fd;;A8Br/FE;ECvCA,WjCqBU;EyBpCV,yBzB6CgB;EiC5BhB,qBjC4BgB;AEogGlB;;A+B7hGE;EACE,WjCeQ;EyBpCV,yBjB4JmC;EyBrIjC,qBzBqIiC;AN25FrC;;A+B7hGE;EAEE,WjCQQ;EyBpCV,yBjB4JmC;EyB9HjC,qBzB8HiC;EyBzH/B,oDAAiE;EAAjE,4CAAiE;A/B2hGvE;;A+BvhGE;;;EAKE,WjCRQ;EiCSR,yBzB+GiC;EyB5GjC,qBzB4GiC;AN06FrC;;A+B/hGE;;;EAgBM,oDAAiE;EAAjE,4CAAiE;A/BqhGzE;;A+BhhGE;EAEE,WjC1BQ;EiC2BR,yBjClBc;EiCqBd,qBjCrBc;AEqiGlB;;A8B5hGE;ECvCA,WjCqBU;EyBpCV,yBzBgFa;EiC/Db,qBjC+Da;AEwgGf;;A+BpkGE;EACE,WjCeQ;EyBpCV,yBjB4JmC;EyBrIjC,qBzBqIiC;ANk8FrC;;A+BpkGE;EAEE,WjCQQ;EyBpCV,yBjB4JmC;EyB9HjC,qBzB8HiC;EyBzH/B,oDAAiE;EAAjE,4CAAiE;A/BkkGvE;;A+B9jGE;;;EAKE,WjCRQ;EiCSR,yBzB+GiC;EyB5GjC,qBzB4GiC;ANi9FrC;;A+BtkGE;;;EAgBM,oDAAiE;EAAjE,4CAAiE;A/B4jGzE;;A+BvjGE;EAEE,WjC1BQ;EiC2BR,yBjCiBW;EiCdX,qBjCcW;AEyiGf;;A8BnkGE;ECvCA,WjCqBU;EyBpCV,yBzBkFY;EiCjEZ,qBjCiEY;AE6iGd;;A+B3mGE;EACE,WjCeQ;EyBpCV,yBjB4JmC;EyBrIjC,qBzBqIiC;ANy+FrC;;A+B3mGE;EAEE,WjCQQ;EyBpCV,yBjB4JmC;EyB9HjC,qBzB8HiC;EyBzH/B,mDAAiE;EAAjE,2CAAiE;A/BymGvE;;A+BrmGE;;;EAKE,WjCRQ;EiCSR,yBzB+GiC;EyB5GjC,qBzB4GiC;ANw/FrC;;A+B7mGE;;;EAgBM,mDAAiE;EAAjE,2CAAiE;A/BmmGzE;;A+B9lGE;EAEE,WjC1BQ;EiC2BR,yBjCmBU;EiChBV,qBjCgBU;AE8kGd;;A8B1mGE;ECvCA,WjCqBU;EyBpCV,yBzB+Ec;EiC9Dd,qBjC8Dc;AEulGhB;;A+BlpGE;EACE,WjCeQ;EyBpCV,yBjB4JmC;EyBrIjC,qBzBqIiC;ANghGrC;;A+BlpGE;EAEE,WjCQQ;EyBpCV,yBjB4JmC;EyB9HjC,qBzB8HiC;EyBzH/B,mDAAiE;EAAjE,2CAAiE;A/BgpGvE;;A+B5oGE;;;EAKE,WjCRQ;EiCSR,yBzB+GiC;EyB5GjC,qBzB4GiC;AN+hGrC;;A+BppGE;;;EAgBM,mDAAiE;EAAjE,2CAAiE;A/B0oGzE;;A+BroGE;EAEE,WjC1BQ;EiC2BR,yBjCgBY;EiCbZ,qBjCaY;AEwnGhB;;A8BjpGE;ECvCA,WjCqBU;EyBpCV,yBzB6EW;EiC5DX,qBjC4DW;AEgoGb;;A+BzrGE;EACE,WjCeQ;EyBpCV,yBjB4JmC;EyBrIjC,qBzBqIiC;ANujGrC;;A+BzrGE;EAEE,WjCQQ;EyBpCV,yBjB4JmC;EyB9HjC,qBzB8HiC;EyBzH/B,oDAAiE;EAAjE,4CAAiE;A/BurGvE;;A+BnrGE;;;EAKE,WjCRQ;EiCSR,yBzB+GiC;EyB5GjC,qBzB4GiC;ANskGrC;;A+B3rGE;;;EAgBM,oDAAiE;EAAjE,4CAAiE;A/BirGzE;;A+B5qGE;EAEE,WjC1BQ;EiC2BR,yBjCcS;EiCXT,qBjCWS;AEiqGb;;A8BxrGE;ECvCA,cjC6BgB;EyB5ChB,yBzBmFa;EiClEb,qBjCkEa;AEiqGf;;A+BhuGE;EACE,cjCuBc;EyB5ChB,yBjBuJmC;EyBhIjC,qBzBgIiC;ANmmGrC;;A+BhuGE;EAEE,cjCgBc;EyB5ChB,yBjBuJmC;EyBzHjC,qBzByHiC;EyBpH/B,oDAAiE;EAAjE,4CAAiE;A/B8tGvE;;A+B1tGE;;;EAKE,cjCAc;EiCCd,yBzB0GiC;EyBvGjC,qBzBuGiC;ANknGrC;;A+BluGE;;;EAgBM,oDAAiE;EAAjE,4CAAiE;A/BwtGzE;;A+BntGE;EAEE,cjClBc;EiCmBd,yBjCoBW;EiCjBX,qBjCiBW;AEksGf;;A8B/tGE;ECvCA,WjCqBU;EyBpCV,yBzB+CiB;EiC9BjB,qBjC8BiB;AE4uGnB;;A+BvwGE;EACE,WjCeQ;EyBpCV,yBjB4JmC;EyBrIjC,qBzBqIiC;ANqoGrC;;A+BvwGE;EAEE,WjCQQ;EyBpCV,yBjB4JmC;EyB9HjC,qBzB8HiC;EyBzH/B,iDAAiE;EAAjE,yCAAiE;A/BqwGvE;;A+BjwGE;;;EAKE,WjCRQ;EiCSR,yBzB+GiC;EyB5GjC,qBzB4GiC;ANopGrC;;A+BzwGE;;;EAgBM,iDAAiE;EAAjE,yCAAiE;A/B+vGzE;;A+B1vGE;EAEE,WjC1BQ;EiC2BR,yBjChBe;EiCmBf,qBjCnBe;AE6wGnB;;A8BhwGE;ECiBA,cjCJY;EiCKZ,qBjCLY;AEwvGd;;A+BjvGE;EACE,WjC7CQ;EiC8CR,yBjCTU;EiCUV,qBjCVU;AE8vGd;;A+BjvGE;EAEE,iDjCfU;EiCeV,yCjCfU;AEkwGd;;A+BhvGE;;EAKE,WjC5DQ;EiC6DR,yBjCxBU;EiCyBV,qBjCzBU;AEywGd;;A+BvvGE;;EAcM,iDjChCM;EiCgCN,yCjChCM;AE8wGd;;A+BzuGE;EAEE,cjCvCU;EiCwCV,6BAA6B;A/B2uGjC;;A8BhyGE;ECiBA,cjChCgB;EiCiChB,qBjCjCgB;AEozGlB;;A+BjxGE;EACE,WjC7CQ;EiC8CR,yBjCrCc;EiCsCd,qBjCtCc;AE0zGlB;;A+BjxGE;EAEE,kDjC3Cc;EiC2Cd,0CjC3Cc;AE8zGlB;;A+BhxGE;;EAKE,WjC5DQ;EiC6DR,yBjCpDc;EiCqDd,qBjCrDc;AEq0GlB;;A+BvxGE;;EAcM,kDjC5DU;EiC4DV,0CjC5DU;AE00GlB;;A+BzwGE;EAEE,cjCnEc;EiCoEd,6BAA6B;A/B2wGjC;;A8Bh0GE;ECiBA,cjCGa;EiCFb,qBjCEa;AEizGf;;A+BjzGE;EACE,WjC7CQ;EiC8CR,yBjCFW;EiCGX,qBjCHW;AEuzGf;;A+BjzGE;EAEE,oDjCRW;EiCQX,4CjCRW;AE2zGf;;A+BhzGE;;EAKE,WjC5DQ;EiC6DR,yBjCjBW;EiCkBX,qBjClBW;AEk0Gf;;A+BvzGE;;EAcM,oDjCzBO;EiCyBP,4CjCzBO;AEu0Gf;;A+BzyGE;EAEE,cjChCW;EiCiCX,6BAA6B;A/B2yGjC;;A8Bh2GE;ECiBA,cjCKY;EiCJZ,qBjCIY;AE+0Gd;;A+Bj1GE;EACE,WjC7CQ;EiC8CR,yBjCAU;EiCCV,qBjCDU;AEq1Gd;;A+Bj1GE;EAEE,mDjCNU;EiCMV,2CjCNU;AEy1Gd;;A+Bh1GE;;EAKE,WjC5DQ;EiC6DR,yBjCfU;EiCgBV,qBjChBU;AEg2Gd;;A+Bv1GE;;EAcM,mDjCvBM;EiCuBN,2CjCvBM;AEq2Gd;;A+Bz0GE;EAEE,cjC9BU;EiC+BV,6BAA6B;A/B20GjC;;A8Bh4GE;ECiBA,cjCEc;EiCDd,qBjCCc;AEk3GhB;;A+Bj3GE;EACE,WjC7CQ;EiC8CR,yBjCHY;EiCIZ,qBjCJY;AEw3GhB;;A+Bj3GE;EAEE,mDjCTY;EiCSZ,2CjCTY;AE43GhB;;A+Bh3GE;;EAKE,WjC5DQ;EiC6DR,yBjClBY;EiCmBZ,qBjCnBY;AEm4GhB;;A+Bv3GE;;EAcM,mDjC1BQ;EiC0BR,2CjC1BQ;AEw4GhB;;A+Bz2GE;EAEE,cjCjCY;EiCkCZ,6BAA6B;A/B22GjC;;A8Bh6GE;ECiBA,cjCAW;EiCCX,qBjCDW;AEo5Gb;;A+Bj5GE;EACE,WjC7CQ;EiC8CR,yBjCLS;EiCMT,qBjCNS;AE05Gb;;A+Bj5GE;EAEE,mDjCXS;EiCWT,2CjCXS;AE85Gb;;A+Bh5GE;;EAKE,WjC5DQ;EiC6DR,yBjCpBS;EiCqBT,qBjCrBS;AEq6Gb;;A+Bv5GE;;EAcM,mDjC5BK;EiC4BL,2CjC5BK;AE06Gb;;A+Bz4GE;EAEE,cjCnCS;EiCoCT,6BAA6B;A/B24GjC;;A8Bh8GE;ECiBA,cjCMa;EiCLb,qBjCKa;AE86Gf;;A+Bj7GE;EACE,cjCrCc;EiCsCd,yBjCCW;EiCAX,qBjCAW;AEo7Gf;;A+Bj7GE;EAEE,oDjCLW;EiCKX,4CjCLW;AEw7Gf;;A+Bh7GE;;EAKE,cjCpDc;EiCqDd,yBjCdW;EiCeX,qBjCfW;AE+7Gf;;A+Bv7GE;;EAcM,oDjCtBO;EiCsBP,4CjCtBO;AEo8Gf;;A+Bz6GE;EAEE,cjC7BW;EiC8BX,6BAA6B;A/B26GjC;;A8Bh+GE;ECiBA,cjC9BiB;EiC+BjB,qBjC/BiB;AEk/GnB;;A+Bj9GE;EACE,WjC7CQ;EiC8CR,yBjCnCe;EiCoCf,qBjCpCe;AEw/GnB;;A+Bj9GE;EAEE,iDjCzCe;EiCyCf,yCjCzCe;AE4/GnB;;A+Bh9GE;;EAKE,WjC5DQ;EiC6DR,yBjClDe;EiCmDf,qBjCnDe;AEmgHnB;;A+Bv9GE;;EAcM,iDjC1DW;EiC0DX,yCjC1DW;AEwgHnB;;A+Bz8GE;EAEE,cjCjEe;EiCkEf,6BAA6B;A/B28GjC;;A8Br/GA;EACE,gBhC2LsB;EgC1LtB,chCAY;EgCCZ,qBhCuIoB;AEi3GtB;;A8B3/GA;EAMI,cxB+EiC;EwB9EjC,0BhCoI6B;AEq3GjC;;A8BhgHA;EAWI,0BhCgI6B;AEy3GjC;;A8BpgHA;EAgBI,chC7Ce;AEqiHnB;;A8B7+GA;ECqBE,sBjCmM6B;EMnEzB,eAvE+B;EGlKjC,qBT2MoB;AE43GxB;;A8B/+GA;ECiBE,sBjCgM6B;EMhEzB,mBAvE+B;EGlKjC,qBT0MqB;AEm4GzB;;AgC/lHA;EVgBM,wCjBkX2C;EiBlX3C,mCjBkX2C;EiBlX3C,gCjBkX2C;ALiuGjD;;AsB/kHM;EUpBN;IVqBQ,wBAAgB;IAAhB,mBAAgB;IAAhB,gBAAgB;EtBmlHtB;AACF;;AgCzmHA;EAII,UAAU;AhCymHd;;AgCrmHA;EAEI,aAAa;AhCumHjB;;AgCnmHA;EACE,SAAS;EACT,gBAAgB;EVAZ,qCjBmXwC;EiBnXxC,gCjBmXwC;EiBnXxC,6BjBmXwC;ALovG9C;;AsBnmHM;EUNN;IVOQ,wBAAgB;IAAhB,mBAAgB;IAAhB,gBAAgB;EtBumHtB;AACF;;AiC5nHA;;;;EAIE,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iGhB,mBAAmB;EAEnB,mBAAmB;EACnB,6BAA6B;EAC7B,SAAS;AjCkvHX;;AiC7vHA;EA2BI,c3BNiC;E2BOjC,qBAA6D;EVnK/D,yBzBsCgB;AEo2HlB;;AiCnwHA;EAkCI,WnCrIQ;EmCsIR,qBAAqB;EV1KvB,yBzByEY;AEu0Hd;;AiCzwHA;EAyCI,cnCvIc;EmCwId,oBAAoB;EACpB,6BAA6B;AjCouHjC;;AiC9tHA;EACE,cAAc;AjCiuHhB;;AiC7tHA;EACE,cAAc;EACd,oBnCZW;EmCaX,gBAAgB;E7BuDZ,mBAvE+B;E6BkBnC,cnCxJiB;EmCyJjB,mBAAmB;AjCguHrB;;AiC5tHA;EACE,cAAc;EACd,qBnCtBW;EmCuBX,cnC7JgB;AE43HlB;;AiC3tHA;EACE,cnCxKgB;EmCyKhB,yBnCpKgB;EmCqKhB,iCnCjKU;AE+3HZ;;AiCjuHA;EAOI,cnC9Kc;AE44HlB;;AiCruHA;EAWM,WnCrLM;EyBpCV,2CzBoCU;AEo5HZ;;AiC1uHA;EAiBM,WnC3LM;EyBpCV,yBzByEY;AEo3Hd;;AiC/uHA;EAuBM,cnC5LY;AEw5HlB;;AiCnvHA;EA4BI,iCnC1LQ;AEq5HZ;;AiCvvHA;EAgCI,cnCvMc;AEk6HlB;;AiC3vHA;EAoCI,cnCzMc;AEo6HlB;;AmCh9HA;;EAEE,kBAAkB;EAClB,2BAAoB;EAApB,2BAAoB;EAApB,oBAAoB;EACpB,sBAAsB;AnCm9HxB;;AmCv9HA;;EAOI,kBAAkB;EAClB,mBAAc;EAAd,kBAAc;EAAd,cAAc;AnCq9HlB;;AmC79HA;;;;;;;;;;;;EAmBI,UAAU;AnCy9Hd;;AmCp9HA;EACE,oBAAa;EAAb,oBAAa;EAAb,aAAa;EACb,mBAAe;EAAf,eAAe;EACf,uBAA2B;EAA3B,oBAA2B;EAA3B,2BAA2B;AnCu9H7B;;AmC19HA;EAMI,WAAW;AnCw9Hf;;AmCp9HA;;EAII,iBrCgIc;AEq1HlB;;AmCz9HA;;E5BDI,0B4BW4B;E5BV5B,6B4BU4B;AnCq9HhC;;AmC/9HA;;;E5BaI,yB4BO8B;E5BN9B,4B4BM8B;AnCk9HlC;;AmCl8HA;EACE,wBAAmC;EACnC,uBAAkC;AnCq8HpC;;AmCv8HA;;;EAOI,cAAc;AnCs8HlB;;AmCn8HE;EACE,eAAe;AnCs8HnB;;AmCl8HA;EACE,uBAAsC;EACtC,sBAAqC;AnCq8HvC;;AmCl8HA;EACE,uBAAsC;EACtC,sBAAqC;AnCq8HvC;;AmCj7HA;EACE,4BAAsB;EAAtB,6BAAsB;EAAtB,0BAAsB;EAAtB,sBAAsB;EACtB,wBAAuB;EAAvB,qBAAuB;EAAvB,uBAAuB;EACvB,wBAAuB;EAAvB,qBAAuB;EAAvB,uBAAuB;AnCo7HzB;;AmCv7HA;;EAOI,WAAW;AnCq7Hf;;AmC57HA;;EAYI,gBrC0Cc;AE24HlB;;AmCj8HA;;E5BxEI,6B4B0F+B;E5BzF/B,4B4ByF+B;AnCq7HnC;;AmCv8HA;;E5BtFI,yB4B6G4B;E5B5G5B,0B4B4G4B;AnCs7HhC;;AoCzjIA;EACE,oBAAa;EAAb,oBAAa;EAAb,aAAa;EACb,mBAAe;EAAf,eAAe;EACf,eAAe;EACf,gBAAgB;EAChB,gBAAgB;ApC4jIlB;;AoCzjIA;EACE,cAAc;EACd,oB/Bq1BsC;EiBp1BlC,+GjBy1BsH;EiBz1BtH,0GjBy1BsH;EiBz1BtH,uGjBy1BsH;ALmuG5H;;AsBxjIM;EcPN;IdQQ,wBAAgB;IAAhB,mBAAgB;IAAhB,gBAAgB;EtB4jItB;AACF;;AoCrkIA;EAYI,qBAA6D;ApC6jIjE;;AoCzkIA;EAiBI,ctCgBe;EsCff,oBAAoB;EACpB,eAAe;ApC4jInB;;AoCpjIA;EACE,gCtCEgB;AEqjIlB;;AoCxjIA;EAII,mBtC2Hc;EsC1Hd,gBAAgB;EAChB,6BAAgD;E7BnBhD,+BTgMmB;ES/LnB,gCT+LmB;AE64HvB;;AoChkIA;EAWM,qCtCRY;EsCUZ,kBAAkB;ApCwjIxB;;AoCrkIA;EAiBM,ctCXa;EsCYb,6BAA6B;EAC7B,yBAAyB;ApCwjI/B;;AoC3kIA;;EAyBI,ctClBe;EsCmBf,sBtC1BQ;EsC2BR,kCtC3BQ;AEklIZ;;AoCllIA;EAgCI,gBtC+Fc;ES5Id,yB6B+C4B;E7B9C5B,0B6B8C4B;ApCsjIhC;;AoC7iIA;EAEI,gBAAgB;EAChB,SAAS;E7BpET,sBTy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AQQ,qBAAiB;EAAjB,iBAAiB;EACjB,uBAA2B;EAA3B,oBAA2B;EAA3B,2BAA2B;ArCivInC;;AqC1vIA;EAYU,8BAAmB;EAAnB,6BAAmB;EAAnB,uBAAmB;EAAnB,mBAAmB;ArCkvI7B;;AqC9vIA;EAeY,kBAAkB;ArCmvI9B;;AqClwIA;EAmBY,qBhC6sB6B;EgC5sB7B,oBhC4sB6B;ALuiHzC;;AqCvwIA;EAyBU,iBAAiB;ArCkvI3B;;AqC3wIA;EA6BU,+BAAwB;EAAxB,+BAAwB;EAAxB,wBAAwB;EACxB,6BAAgB;EAAhB,gBAAgB;ArCkvI1B;;AqChxIA;EAkCU,aAAa;ArCkvIvB;;AqCruIA;EAEI,cvC5Je;AEm4InB;;AqCzuIA;EAMM,cvChKa;AEu4InB;;AqC7uIA;EAYM,0BvCrKM;AE04IZ;;AqCjvIA;EAgBQ,0BvCzKI;AE84IZ;;AqCrvIA;EAoBQ,0BvC7KI;AEk5IZ;;AqCzvIA;;EA0BM,cvCpLa;AEw5InB;;AqC9vIA;EA+BI,0BvCxLQ;EuCyLR,gCvCzLQ;AE45IZ;;AqCnwIA;EAoCI,0Q/B7J8E;ANg4IlF;;AqCvwIA;EAwCI,0BvCjMQ;AEo6IZ;;AqC3wIA;;;EA6CM,cvCvMa;AE26InB;;AqC9tIA;EAEI,WvC1NQ;AE07IZ;;AqCluIA;EAMM,WvC9NM;AE87IZ;;AqCtuIA;EAYM,+BvCpOM;AEk8IZ;;AqC1uIA;EAgBQ,+BvCxOI;AEs8IZ;;AqC9uIA;EAoBQ,gCvC5OI;AE08IZ;;AqClvIA;;EA0BM,WvClPM;AE+8IZ;;AqCvvIA;EA+BI,+BvCvPQ;EuCwPR,sCvCxPQ;AEo9IZ;;AqC5vIA;EAoCI,kQ/BhN8E;AN46IlF;;AqChwIA;EAwCI,+BvChQQ;AE49IZ;;AqCpwIA;;;EA4CM,WvCpQM;AEk+IZ;;AsCtgJA;EACE,kBAAkB;EAClB,oBAAa;EAAb,oBAAa;EAAb,aAAa;EACb,4BAAsB;EAAtB,6BAAsB;EAAtB,0BAAsB;EAAtB,sBAAsB;EACtB,YAAY;EAEZ,qBAAqB;EACrB,sBxC6BU;EwC5BV,2BAA2B;EAC3B,oCxCuCU;ESlCR,sBTyMmB;AE2zIvB;;AsClhJA;EAaI,eAAe;EACf,cAAc;AtCygJlB;;AsCvhJA;EAkBI,mBAAmB;EACnB,sBAAsB;AtCygJ1B;;AsC5hJA;EAsBM,mBAAmB;E/BCrB,+BD6KyB;EC5KzB,gCD4KyB;AN81I7B;;AsCliJA;EA2BM,sBAAsB;E/BUxB,mCD+JyB;EC9JzB,kCD8JyB;ANo2I7B;;AsCxiJA;;EAoCI,aAAa;AtCygJjB;;AsCrgJA;EAGE,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,kBxCuIW;AE+3Ib;;AsClgJA;EACE,qBjCu8B6C;AL8jH/C;;AsClgJA;EACE,oBAAqC;EACrC,gBAAgB;AtCqgJlB;;AsClgJA;EACE,gBAAgB;AtCqgJlB;;AsClgJA;EAEI,qBAAqB;AtCogJzB;;AsCtgJA;EAMI,kCAAiD;AtCogJrD;;AsC5/IA;EACE,oBxCuGW;EwCtGX,gBAAgB;EAEhB,qCxC/BU;EwCgCV,2CxChCU;AE8hJZ;;AsCngJA;E/B7DI,kC+BqE8E;AtC+/IlF;;AsC3/IA;EACE,oBxC2FW;EwCzFX,qCxC1CU;EwC2CV,wCxC3CU;AEwiJZ;;AsCjgJA;E/BzEI,kCDsLyB;ANw5I7B;;AsCr/IA;EACE,qBAAsC;EACtC,sBjCo5BoD;EiCn5BpD,oBAAqC;EACrC,gBAAgB;AtCw/IlB;;AsC9+IA;EACE,qBAAsC;EACtC,oBAAqC;AtCi/IvC;;AsC7+IA;EACE,kBAAkB;EAClB,MAAM;EACN,QAAQ;EACR,SAAS;EACT,OAAO;EACP,axCkDW;ESrKT,sBDsLyB;AN86I7B;;AsC7+IA;;;EAGE,WAAW;AtCg/Ib;;AsC7+IA;;E/BpHI,+BD6KyB;EC5KzB,gCD4KyB;AN07I7B;;AsC9+IA;;E/B3GI,mCD+JyB;EC9JzB,kCD8JyB;ANg8I7B;;AsC1+IA;EAII,mBjCy2BsD;ALioH1D;;Ac7kJI;EwB+FJ;IAQI,oBAAa;IAAb,oBAAa;IAAb,aAAa;IACb,8BAAmB;IAAnB,6BAAmB;IAAnB,uBAAmB;IAAnB,mBAAmB;EtC2+IrB;EsCp/IF;IAcM,mBAAY;IAAZ,gBAAY;IAAZ,YAAY;IACZ,gBAAgB;EtCy+IpB;EsCx/IF;IAkBQ,cAAc;IACd,cAAc;EtCy+IpB;EsC5/IF;I/B5HI,0B+BqJkC;I/BpJlC,6B+BoJkC;EtCu+IpC;EsChgJF;;IA8BY,0BAA0B;EtCs+IpC;EsCpgJF;;IAmCY,6BAA6B;EtCq+IvC;EsCxgJF;I/B9GI,yB+BsJoC;I/BrJpC,4B+BqJoC;EtCo+ItC;EsC5gJF;;IA6CY,yBAAyB;EtCm+InC;EsChhJF;;IAkDY,4BAA4B;EtCk+ItC;AACF;;AuCnrJA;EACE,oBAAa;EAAb,oBAAa;EAAb,aAAa;EACb,mBAAe;EAAf,eAAe;EACf,YlCqvCmC;EkCpvCnC,mBlCsvCsC;EkCpvCtC,gBAAgB;AvCqrJlB;;AuChrJA;EAGI,oBlC2uCqC;ALs8GzC;;AuCprJA;EAMM,WAAW;EACX,qBlCuuCmC;EkCtuCnC,czC2Ba;EyC1Bb,uFAAyO;AvCkrJ/O;;AuC3rJA;EAcI,czCqBe;AE4pJnB;;AwC1sJA;EACE,oBAAa;EAAb,oBAAa;EAAb,aAAa;E/BGb,eAAe;EACf,gBAAgB;AT2sJlB;;AwC3sJA;EACE,kBAAkB;EAClB,cAAc;EACd,c1CqEY;E0CnEZ,sB1C8BU;E0C7BV,yB1CgCgB;EwB3BZ,qJjBm+BoJ;EiBn+BpJ,6IjBm+BoJ;EiBn+BpJ,wIjBm+BoJ;EiBn+BpJ,qIjBm+BoJ;EiBn+BpJ,2KjBm+BoJ;ALsuH1J;;AsBrsJM;EkBfN;IlBgBQ,wBAAgB;IAAhB,mBAAgB;IAAhB,gBAAgB;EtBysJtB;AACF;;AwC1tJA;EAUI,UAAU;EACV,clCgJiC;EkC/IjC,qBAA6D;EAC7D,yB1CwBc;E0CvBd,qB1CwBc;AE4rJlB;;AwCluJA;EAkBI,UAAU;EACV,clCwIiC;EkCvIjC,yB1CiBc;E0ChBd,UnC28BiC;EmC18BjC,wD1CkDU;E0ClDV,gD1CkDU;AEkqJd;;AwChtJA;EAEI,iB1CsIc;AE4kJlB;;AwCptJA;EAMI,UAAU;EACV,W1CEQ;EyBpCV,yBzByEY;E0CrCV,qB1CqCU;AE6qJd;;AwC3tJA;EAaI,c1CEe;E0CDf,oBAAoB;EACpB,sB1CNQ;E0COR,qB1CJc;AEstJlB;;AwC5vJA;ECDI,yBpCi9BsC;ALgzH1C;;AyC7vJE;ElCwCE,+BT2KmB;ES1KnB,kCT0KmB;AE+iJvB;;AyClwJE;ElC0BE,gCTyLmB;ESxLnB,mCTwLmB;AEojJvB;;AyC5wJE;EACE,uBpCq9BsC;ED9tBpC,iBAvE+B;AJgmJrC;;AyCzwJQ;ElCqCJ,8BT6KoB;ES5KpB,iCT4KoB;AE4jJxB;;AyCxwJQ;ElCiBJ,+BT2LoB;ES1LpB,kCT0LoB;AEikJxB;;AyC3xJE;EACE,uBpCm9BqC;ED5tBnC,mBAvE+B;AJ+mJrC;;AyCxxJQ;ElCqCJ,8BT4KqB;ES3KrB,iCT2KqB;AE4kJzB;;AyCvxJQ;ElCiBJ,+BT0LqB;ESzLrB,kCTyLqB;AEilJzB;;A0CxyJA;EACE,qBAAqB;EACrB,sBrCmnCuC;ED/3BnC,iBAvE+B;EsC3KnC,gB5CiQoB;E4ChQpB,cAAc;EACd,W5C6BU;E4C5BV,kBAAkB;EAClB,mBAAmB;EACnB,wBAAwB;EnCItB,sBTyMmB;AE+lJvB;;A0CrzJA;EAeI,aAAa;A1C0yJjB;;A0CryJA;EACE,kBAAkB;EAClB,SAAS;A1CwyJX;;A2C/zJA;EACE,kBAAkB;EAClB,kB7CiLW;E6ChLX,mBtCwqCsC;EsCvqCtC,6BAA6C;EpCU3C,sBTyMmB;AEgnJvB;;A2C9zJA;EAEE,cAAc;A3Cg0JhB;;A2C5zJA;EACE,gB7CsPoB;AEykJtB;;A2CvzJA;EACE,mBtC2pCsD;AL+pHxD;;A2C3zJA;EAKI,kBAAkB;EAClB,MAAM;EACN,QAAQ;EACR,UtC+PuC;EsC9PvC,qB7CkJS;AEwqJb;;A2C3yJE;ECnDA,ctC+JmC;EiB5JnC,yBjBuJmC;EsCxJnC,qBtCwJmC;AN0sJrC;;A4Ch2JE;EACE,ctC0JiC;ANysJrC;;A2CrzJE;ECnDA,ctC+JmC;EiB5JnC,yBjBuJmC;EsCxJnC,qBtCwJmC;ANotJrC;;A4C12JE;EACE,ctC0JiC;ANmtJrC;;A2C/zJE;ECnDA,ctC+JmC;EiB5JnC,yBjBuJmC;EsCxJnC,qBtCwJmC;AN8tJrC;;A4Cp3JE;EACE,ctC0JiC;AN6tJrC;;A2Cz0JE;ECnDA,ctC+JmC;EiB5JnC,yBjBuJmC;EsCxJnC,qBtCwJmC;ANwuJrC;;A4C93JE;EACE,ctC0JiC;ANuuJrC;;A2Cn1JE;ECnDA,ctC+JmC;EiB5JnC,yBjBuJmC;EsCxJnC,qBtCwJmC;ANkvJrC;;A4Cx4JE;EACE,ctC0JiC;ANivJrC;;A2C71JE;ECnDA,ctC+JmC;EiB5JnC,yBjBuJmC;EsCxJnC,qBtCwJmC;AN4vJrC;;A4Cl5JE;EACE,ctC0JiC;AN2vJrC;;A2Cv2JE;ECnDA,ctC+JmC;EiB5JnC,yBjBuJmC;EsCxJnC,qBtCwJmC;ANswJrC;;A4C55JE;EACE,ctC0JiC;ANqwJrC;;A2Cj3JE;ECnDA,ctC+JmC;EiB5JnC,yBjBuJmC;EsCxJnC,qBtCwJmC;ANgxJrC;;A4Ct6JE;EACE,ctC0JiC;AN+wJrC;;A6C76JE;EACE;IAAK,2BxC0rC+B;ELuvHtC;AACF;;A6Cn7JE;EACE;IAAK,2BxC0rC+B;ELuvHtC;AACF;;A6C96JA;EACE,oBAAa;EAAb,oBAAa;EAAb,aAAa;EACb,YxCorCsC;EwCnrCtC,gBAAgB;EzCiPZ,kBAvE+B;EyCxKnC,yB/C8BgB;ESxBd,sBTyMmB;AEmuJvB;;A6C76JA;EACE,oBAAa;EAAb,oBAAa;EAAb,aAAa;EACb,4BAAsB;EAAtB,6BAAsB;EAAtB,0BAAsB;EAAtB,sBAAsB;EACtB,wBAAuB;EAAvB,qBAAuB;EAAvB,uBAAuB;EACvB,gBAAgB;EAChB,W/CkBU;E+CjBV,kBAAkB;EAClB,mBAAmB;EACnB,yB/CoDY;EwB7DR,mCjBqrC4C;EiBrrC5C,8BjBqrC4C;EiBrrC5C,2BjBqrC4C;ALqwHlD;;AsBt7JM;EuBHN;IvBIQ,wBAAgB;IAAhB,mBAAgB;IAAhB,gBAAgB;EtB07JtB;AACF;;A6Cn7JA;EtBeE,wMAA6I;EAA7I,qMAA6I;EsBb7I,0BxC8pCsC;ALwxHxC;;A6Cl7JE;EACE,0DAA8D;EAA9D,kDAA8D;A7Cq7JlE;;A6Cl7JM;EAJJ;IAKM,uBAAe;IAAf,eAAe;E7Cs7JrB;AACF;;A8C39JA;EACE,oBAAa;EAAb,oBAAa;EAAb,aAAa;EACb,4BAAsB;EAAtB,6BAAsB;EAAtB,0BAAsB;EAAtB,sBAAsB;EAGtB,eAAe;EACf,gBAAgB;EvCQd,sBTyMmB;AE4wJvB;;A8Cn9JA;EACE,WAAW;EACX,chDyBiB;EgDxBjB,mBAAmB;A9Cs9JrB;;A8Cz9JA;EAQI,UAAU;EACV,chDkBe;EgDjBf,qBAAqB;EACrB,yBhDUa;AE28JjB;;A8Ch+JA;EAeI,chDYe;EgDXf,yBhDMc;AE+8JlB;;A8C58JA;EACE,kBAAkB;EAClB,cAAc;EACd,oBhDuIW;EgDpIX,sBhDXU;EgDYV,sChDAU;AE68JZ;;A8Cp9JA;EvClBI,+BuC4BkC;EvC3BlC,gCuC2BkC;A9C+8JtC;;A8Cz9JA;EvCJI,mCuCkBqC;EvCjBrC,kCuCiBqC;A9Cg9JzC;;A8C99JA;EAmBI,chDlBe;EgDmBf,oBAAoB;EACpB,sBhD1BQ;AEy+JZ;;A8Cp+JA;EA0BI,UAAU;EACV,WhDhCQ;EgDiCR,yBhDIU;EgDHV,qBhDGU;AE28Jd;;A8C3+JA;EAiCI,mBAAmB;A9C88JvB;;A8C/+JA;EAoCM,gBhDsFY;EgDrFZ,qBhDqFY;AE03JlB;;A8Cj8JI;EACE,8BAAmB;EAAnB,6BAAmB;EAAnB,uBAAmB;EAAnB,mBAAmB;A9Co8JzB;;A8Cr8JI;EvCvBA,kCTkJmB;ES9JnB,0BuCyCsC;A9Co8J1C;;A8C18JI;EvCnCA,gCT8JmB;ESlJnB,4BuCkC2C;A9Co8J/C;;A8C/8JI;EAeM,aAAa;A9Co8JvB;;A8Cn9JI;EAmBM,qBhDoDQ;EgDnDR,oBAAoB;A9Co8J9B;;A8Cx9JI;EAuBQ,iBhDgDM;EgD/CN,sBhD+CM;AEs5JlB;;Ac9/JI;EgCiCA;IACE,8BAAmB;IAAnB,6BAAmB;IAAnB,uBAAmB;IAAnB,mBAAmB;E9Ci+JvB;E8Cl+JE;IvCvBA,kCTkJmB;IS9JnB,0BuCyCsC;E9Cg+JxC;E8Ct+JE;IvCnCA,gCT8JmB;ISlJnB,4BuCkC2C;E9C+9J7C;E8C1+JE;IAeM,aAAa;E9C89JrB;E8C7+JE;IAmBM,qBhDoDQ;IgDnDR,oBAAoB;E9C69J5B;E8Cj/JE;IAuBQ,iBhDgDM;IgD/CN,sBhD+CM;EE86JhB;AACF;;AcvhKI;EgCiCA;IACE,8BAAmB;IAAnB,6BAAmB;IAAnB,uBAAmB;IAAnB,mBAAmB;E9C0/JvB;E8C3/JE;IvCvBA,kCTkJmB;IS9JnB,0BuCyCsC;E9Cy/JxC;E8C//JE;IvCnCA,gCT8JmB;ISlJnB,4BuCkC2C;E9Cw/J7C;E8CngKE;IAeM,aAAa;E9Cu/JrB;E8CtgKE;IAmBM,qBhDoDQ;IgDnDR,oBAAoB;E9Cs/J5B;E8C1gKE;IAuBQ,iBhDgDM;IgD/CN,sBhD+CM;EEu8JhB;AACF;;AchjKI;EgCiCA;IACE,8BAAmB;IAAnB,6BAAmB;IAAnB,uBAAmB;IAAnB,mBAAmB;E9CmhKvB;E8CphKE;IvCvBA,kCTkJmB;IS9JnB,0BuCyCsC;E9CkhKxC;E8CxhKE;IvCnCA,gCT8JmB;ISlJnB,4BuCkC2C;E9CihK7C;E8C5hKE;IAeM,aAAa;E9CghKrB;E8C/hKE;IAmBM,qBhDoDQ;IgDnDR,oBAAoB;E9C+gK5B;E8CniKE;IAuBQ,iBhDgDM;IgD/CN,sBhD+CM;EEg+JhB;AACF;;AczkKI;EgCiCA;IACE,8BAAmB;IAAnB,6BAAmB;IAAnB,uBAAmB;IAAnB,mBAAmB;E9C4iKvB;E8C7iKE;IvCvBA,kCTkJmB;IS9JnB,0BuCyCsC;E9C2iKxC;E8CjjKE;IvCnCA,gCT8JmB;ISlJnB,4BuCkC2C;E9C0iK7C;E8CrjKE;IAeM,aAAa;E9CyiKrB;E8CxjKE;IAmBM,qBhDoDQ;IgDnDR,oBAAoB;E9CwiK5B;E8C5jKE;IAuBQ,iBhDgDM;IgD/CN,sBhD+CM;EEy/JhB;AACF;;AclmKI;EgCiCA;IACE,8BAAmB;IAAnB,6BAAmB;IAAnB,uBAAmB;IAAnB,mBAAmB;E9CqkKvB;E8CtkKE;IvCvBA,kCTkJmB;IS9JnB,0BuCyCsC;E9CokKxC;E8C1kKE;IvCnCA,gCT8JmB;ISlJnB,4BuCkC2C;E9CmkK7C;E8C9kKE;IAeM,aAAa;E9CkkKrB;E8CjlKE;IAmBM,qBhDoDQ;IgDnDR,oBAAoB;E9CikK5B;E8CrlKE;IAuBQ,iBhDgDM;IgD/CN,sBhD+CM;EEkhKhB;AACF;;A8CpjKA;EvCpHI,gBuCqHsB;A9CujK1B;;A8CxjKA;EAII,qBhD6Bc;AE2hKlB;;A8C5jKA;EAOM,sBAAsB;A9CyjK5B;;A+CnsKE;EACE,czC4JiC;EyC3JjC,yBzCsJiC;ANgjKrC;;A+CxsKE;EAOM,czCsJ6B;EyCrJ7B,yBzCqJ6B;ANgjKrC;;A+C7sKE;EAYM,WjDyBI;EiDxBJ,yBzCgJ6B;EyC/I7B,qBzC+I6B;ANsjKrC;;A+CntKE;EACE,czC4JiC;EyC3JjC,yBzCsJiC;ANgkKrC;;A+CxtKE;EAOM,czCsJ6B;EyCrJ7B,yBzCqJ6B;ANgkKrC;;A+C7tKE;EAYM,WjDyBI;EiDxBJ,yBzCgJ6B;EyC/I7B,qBzC+I6B;ANskKrC;;A+CnuKE;EACE,czC4JiC;EyC3JjC,yBzCsJiC;ANglKrC;;A+CxuKE;EAOM,czCsJ6B;EyCrJ7B,yBzCqJ6B;ANglKrC;;A+C7uKE;EAYM,WjDyBI;EiDxBJ,yBzCgJ6B;EyC/I7B,qBzC+I6B;ANslKrC;;A+CnvKE;EACE,czC4JiC;EyC3JjC,yBzCsJiC;ANgmKrC;;A+CxvKE;EAOM,czCsJ6B;EyCrJ7B,yBzCqJ6B;ANgmKrC;;A+C7vKE;EAYM,WjDyBI;EiDxBJ,yBzCgJ6B;EyC/I7B,qBzC+I6B;ANsmKrC;;A+CnwKE;EACE,czC4JiC;EyC3JjC,yBzCsJiC;ANgnKrC;;A+CxwKE;EAOM,czCsJ6B;EyCrJ7B,yBzCqJ6B;ANgnKrC;;A+C7wKE;EAYM,WjDyBI;EiDxBJ,yBzCgJ6B;EyC/I7B,qBzC+I6B;ANsnKrC;;A+CnxKE;EACE,czC4JiC;EyC3JjC,yBzCsJiC;ANgoKrC;;A+CxxKE;EAOM,czCsJ6B;EyCrJ7B,yBzCqJ6B;ANgoKrC;;A+C7xKE;EAYM,WjDyBI;EiDxBJ,yBzCgJ6B;EyC/I7B,qBzC+I6B;ANsoKrC;;A+CnyKE;EACE,czC4JiC;EyC3JjC,yBzCsJiC;ANgpKrC;;A+CxyKE;EAOM,czCsJ6B;EyCrJ7B,yBzCqJ6B;ANgpKrC;;A+C7yKE;EAYM,WjDyBI;EiDxBJ,yBzCgJ6B;EyC/I7B,qBzC+I6B;ANspKrC;;A+CnzKE;EACE,czC4JiC;EyC3JjC,yBzCsJiC;ANgqKrC;;A+CxzKE;EAOM,czCsJ6B;EyCrJ7B,yBzCqJ6B;ANgqKrC;;A+C7zKE;EAYM,WjDyBI;EiDxBJ,yBzCgJ6B;EyC/I7B,qBzC+I6B;ANsqKrC;;AgDj0KA;EACE,+BAAuB;EAAvB,uBAAuB;EACvB,U3C4yC8B;E2C3yC9B,W3C2yC8B;E2C1yC9B,sB3C4yCgC;E2C3yChC,WlD0CU;EkDzCV,2WAA0F;EAC1F,SAAS;EzCMP,sBTyMmB;EkD7MrB,Y3C4yC6B;ALwhI/B;;AgD70KA;EAaI,WlDkCQ;EkDjCR,qBAAqB;EACrB,a3CuyC4B;AL6hIhC;;AgDn1KA;EAmBI,UAAU;EACV,wDlDoDU;EkDpDV,gDlDoDU;EkDnDV,U3CkyC0B;ALkiI9B;;AgDz1KA;EA0BI,oBAAoB;EACpB,yBAAiB;EAAjB,sBAAiB;EAAjB,qBAAiB;EAAjB,iBAAiB;EACjB,a3C4xC4B;ALuiIhC;;AgD/zKA;EACE,0D3CwxCqE;E2CxxCrE,kD3CwxCqE;AL0iIvE;;AiDx2KA;EACE,Y5CkmCuC;E4CjmCvC,eAAe;E7CyPX,mBAvE+B;E6C/KnC,oBAAoB;EACpB,2CnDkCU;EmDjCV,4BAA4B;EAC5B,oC5CkmCmD;E4CjmCnD,qDnD2CU;EmD3CV,6CnD2CU;ESlCR,sBTyMmB;AEypKvB;;AiDp3KA;EAaI,UAAU;AjD22Kd;;AiDx3KA;EAiBI,aAAa;AjD22KjB;;AiDv2KA;EACE,0BAAkB;EAAlB,uBAAkB;EAAlB,kBAAkB;EAClB,eAAe;EACf,oBAAoB;AjD02KtB;;AiD72KA;EAMI,mB5CkUwC;ALyiK5C;;AiDv2KA;EACE,oBAAa;EAAb,oBAAa;EAAb,aAAa;EACb,yBAAmB;EAAnB,sBAAmB;EAAnB,mBAAmB;EACnB,uB5CkkCwC;E4CjkCxC,cnDWiB;EmDVjB,2CnDIU;EmDHV,4BAA4B;EAC5B,4C5C2kCoD;EEtlClD,2CDgL4D;EC/K5D,4CD+K4D;ANusKhE;;AiDn3KA;EAWI,uBAAmC;EACnC,oB5CyjCsC;ALmzI1C;;AiDx2KA;EACE,gB5CojCwC;E4CnjCxC,qBAAqB;AjD22KvB;;AkDt5KA;EAEE,gBAAgB;AlDw5KlB;;AkD15KA;EAKI,kB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gB2CwM4B;ElDy5K9B;EkDl6KE;I3C/LA,gB2C4M4B;ElDw5K9B;EkDr6KE;IAiBI,gBAAgB;ElDu5KtB;EkDx6KE;I3C/LA,gB2CoN4B;ElDs5K9B;AACF;;AcjjLI;EoCqIA;IACE,YAAY;IACZ,eAAe;IACf,YAAY;IACZ,SAAS;ElDg7Kb;EkDp7KE;IAOI,YAAY;IACZ,SAAS;I3CvMb,gB2CwM4B;ElDg7K9B;EkDz7KE;I3C/LA,gB2C4M4B;ElD+6K9B;EkD57KE;IAiBI,gBAAgB;ElD86KtB;EkD/7KE;I3C/LA,gB2CoN4B;ElD66K9B;AACF;;AcxkLI;EoCqIA;IACE,YAAY;IACZ,eAAe;IACf,YAAY;IACZ,SAAS;ElDu8Kb;EkD38KE;IAOI,YAAY;IACZ,SAAS;I3CvMb,gB2CwM4B;ElDu8K9B;EkDh9KE;I3C/LA,gB2C4M4B;ElDs8K9B;EkDn9KE;IAiBI,gBAAgB;ElDq8KtB;EkDt9KE;I3C/LA,gB2CoN4B;ElDo8K9B;AACF;;Ac/lLI;EoCqIA;IACE,YAAY;IACZ,eAAe;IACf,YAAY;IACZ,SAAS;ElD89Kb;EkDl+KE;IAOI,YAAY;IACZ,SAAS;I3CvMb,gB2CwM4B;ElD89K9B;EkDv+KE;I3C/LA,gB2C4M4B;ElD69K9B;EkD1+KE;IAiBI,gBAAgB;ElD49KtB;EkD7+KE;I3C/LA,gB2CoN4B;ElD29K9B;AACF;;ActnLI;EoCqIA;IACE,YAAY;IACZ,eAAe;IACf,YAAY;IACZ,SAAS;ElDq/Kb;EkDz/KE;IAOI,YAAY;IACZ,SAAS;I3CvMb,gB2CwM4B;ElDq/K9B;EkD9/KE;I3C/LA,gB2C4M4B;ElDo/K9B;EkDjgLE;IAiBI,gBAAgB;ElDm/KtB;EkDpgLE;I3C/LA,gB2CoN4B;ElDk/K9B;AACF;;AmDxtLA;EACE,kBAAkB;EAClB,a9C01BsC;E8Cz1BtC,cAAc;EACd,S9CkjCmC;E+CtjCnC,kKtDwOmC;EsDtOnC,kBAAkB;EAClB,gBtDmQsB;EsDlQtB,gB/Cqa+B;E+Cpa/B,gBAAgB;EAChB,iBAAiB;EACjB,qBAAqB;EACrB,iBAAiB;EACjB,oBAAoB;EACpB,sBAAsB;EACtB,kBAAkB;EAClB,oBAAoB;EACpB,mBAAmB;EACnB,gBAAgB;EhD4OZ,mBAvE+B;E+CzKnC,qBAAqB;EACrB,UAAU;AnDquLZ;;AmDhvLA;EAaW,Y9CsiC2B;ALisJtC;;AmDpvLA;EAgBI,kBAAkB;EAClB,cAAc;EACd,a9CsiCqC;E8CriCrC,c9CsiCqC;ALksJzC;;AmD3vLA;EAsBM,kBAAkB;EAClB,WAAW;EACX,yBAAyB;EACzB,mBAAmB;AnDyuLzB;;AmDpuLA;EACE,iBAAgC;AnDuuLlC;;AmDxuLA;EAII,SAAS;AnDwuLb;;AmD5uLA;EAOM,SAAS;EACT,6BAAgE;EAChE,sBrDYM;AE6tLZ;;AmDpuLA;EACE,iB9C4gCuC;AL2tJzC;;AmDxuLA;EAII,OAAO;EACP,a9CwgCqC;E8CvgCrC,c9CsgCqC;ALkuJzC;;AmD9uLA;EASM,WAAW;EACX,oCAA2F;EAC3F,wBrDJM;AE6uLZ;;AmDpuLA;EACE,iBAAgC;AnDuuLlC;;AmDxuLA;EAII,MAAM;AnDwuLV;;AmD5uLA;EAOM,YAAY;EACZ,6B9Cq/BmC;E8Cp/BnC,yBrDlBM;AE2vLZ;;AmDpuLA;EACE,iB9C8+BuC;ALyvJzC;;AmDxuLA;EAII,QAAQ;EACR,a9C0+BqC;E8Cz+BrC,c9Cw+BqC;ALgwJzC;;AmD9uLA;EASM,UAAU;EACV,oC9Cq+BmC;E8Cp+BnC,uBrDlCM;AE2wLZ;;AmDptLA;EACE,gB9Co8BuC;E8Cn8BvC,uB9Cy8B6C;E8Cx8B7C,WrDtEU;EqDuEV,kBAAkB;EAClB,sBrD5DU;ESlCR,sBTyMmB;AE6mLvB;;AqDx0LA;EACE,kBAAkB;EAClB,MAAM;EACN,wBAA6B;EAC7B,ahDw1BsC;EgDv1BtC,cAAc;EACd,gBhDokCuC;E+CzkCvC,kKtDwOmC;EsDtOnC,kBAAkB;EAClB,gBtDmQsB;EsDlQtB,gB/Cqa+B;E+Cpa/B,gBAAgB;EAChB,iBAAiB;EACjB,qBAAqB;EACrB,iBAAiB;EACjB,oBAAoB;EACpB,sBAAsB;EACtB,kBAAkB;EAClB,oBAAoB;EACpB,mBAAmB;EACnB,gBAAgB;EhD4OZ,mBAvE+B;EiDxKnC,qBAAqB;EACrB,sBvD2BU;EuD1BV,4BAA4B;EAC5B,oCvDqCU;ESlCR,qBT2MoB;AEwoLxB;;AqDr2LA;EAoBI,kBAAkB;EAClB,cAAc;EACd,WhDokCoC;EgDnkCpC,chDokCqC;ALixJzC;;AqD52LA;EA2BM,kBAAkB;EAClB,cAAc;EACd,WAAW;EACX,yBAAyB;EACzB,mBAAmB;ArDq1LzB;;AqDh1LA;EAEI,2B/CqK4D;AN6qLhE;;AqDp1LA;EAKM,SAAS;EACT,6BAAgE;EAChE,qChDmjCiE;ALgyJvE;;AqD11LA;EAWM,WvDwHY;EuDvHZ,6BAAgE;EAChE,sBvDTM;AE41LZ;;AqD90LA;EAEI,yB/CmJ4D;E+ClJ5D,ahDkiCqC;EgDjiCrC,YhDgiCoC;ALgzJxC;;AqDp1LA;EAOM,OAAO;EACP,oCAA2F;EAC3F,uChD+hCiE;ALkzJvE;;AqD11LA;EAaM,SvDoGY;EuDnGZ,oCAA2F;EAC3F,wBvD7BM;AE82LZ;;AqD50LA;EAEI,wB/C+H4D;AN+sLhE;;AqDh1LA;EAKM,MAAM;EACN,oCAA2F;EAC3F,wChD6gCiE;ALk0JvE;;AqDt1LA;EAWM,QvDkFY;EuDjFZ,oCAA2F;EAC3F,yBvD/CM;AE83LZ;;AqD51LA;EAmBI,kBAAkB;EAClB,MAAM;EACN,SAAS;EACT,cAAc;EACd,WhDy/BoC;EgDx/BpC,oBAAsC;EACtC,WAAW;EACX,gC/C4DiC;ANixLrC;;AqDz0LA;EAEI,0B/CiG4D;E+ChG5D,ahDg/BqC;EgD/+BrC,YhD8+BoC;AL61JxC;;AqD/0LA;EAOM,QAAQ;EACR,oChD2+BmC;EgD1+BnC,sChD6+BiE;AL+1JvE;;AqDr1LA;EAaM,UvDkDY;EuDjDZ,oChDq+BmC;EgDp+BnC,uBvD/EM;AE25LZ;;AqDvzLA;EACE,oBvD0CW;EuDzCX,gBAAgB;EjD6GZ,eAvE+B;EiDpCnC,cvD9FiB;EuD+FjB,yB/CemC;E+CdnC,gC/CcmC;ECrIjC,0CDgL4D;EC/K5D,2CD+K4D;ANmwLhE;;AqDl0LA;EAUI,aAAa;ArD4zLjB;;AqDxzLA;EACE,kBvD4BW;EuD3BX,cvD7GiB;AEw6LnB;;AsD18L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;IAAhB,gBAAgB;EtByuMtB;AACF;;AyD3vMA;EAgBI,sBAAsB;AzD+uM1B;;AyD/vMA;EAoBI,c3D2Be;E2D1Bf,yB3DgBa;AE+tMjB;;AyDpwMA;EAwBM,6PnDwD4E;EmDvD5E,iCpD2gCkD;EoD3gClD,6BpD2gCkD;EoD3gClD,yBpD2gCkD;ALquKxD;;AyDzwMA;EA+BI,oBAAc;EAAd,cAAc;EACd,a3DwZ4C;E2DvZ5C,c3DuZ4C;E2DtZ5C,iBAAiB;EACjB,WAAW;EACX,ySnD4C8E;EmD3C9E,4BAA4B;EAC5B,uB3DkZ4C;EwB5a1C,sDjBuhC6D;EiBvhC7D,8CjBuhC6D;EiBvhC7D,yCjBuhC6D;EiBvhC7D,sCjBuhC6D;EiBvhC7D,0EjBuhC6D;ALkvKnE;;AsBrwMM;EmChBN;InCiBQ,wBAAgB;IAAhB,mBAAgB;IAAhB,gBAAgB;EtBywMtB;AACF;;AyD3xMA;EA2CI,UAAU;AzDovMd;;AyD/xMA;EA+CI,UAAU;EACV,kB3DZQ;E2DaR,UAAU;EACV,2B3DiCW;E2DjCX,mB3DiCW;AEmtMf;;AyDhvMA;EACE,gBAAgB;AzDmvMlB;;AyDhvMA;ElDnCI,yBTyZuC;ESxZvC,0BTwZuC;AE+3L3C;;AyDrvMA;EAWQ,wB3D8FU;ES9Hd,6BT2YuC;ES1YvC,4BT0YuC;AEq4L3C;;AyD3vMA;EAiBM,wB3DwFY;ES9Hd,6BT2YuC;ES1YvC,4BT0YuC;AE24L3C;;AyD1uMA;EACE,wC3D9CU;E2D+CV,mB3DgFgB;AE6pMlB;;AyD1uMA;EACE,sB3DqV8C;AEw5LhD;;AyDruMA;EAEI,eAAe;EACf,cAAc;ElDpFd,gBkDqFwB;AzDuuM5B;;AyD3uMA;EAQI,eAAe;AzDuuMnB;;AyD/uMA;EAcQ,mBAAmB;ElDtFvB,yBkDuFgC;ElDtFhC,0BkDsFgC;AzDsuMpC;;AyDrvMA;EAqBQ,sBAAsB;ElD/E1B,6BkDgFmC;ElD/EnC,4BkD+EmC;AzDquMvC;;AuD51ME;EACE,cAAc;EACd,WAAW;EACX,WAAW;AvD+1Mf;;A0Dn2ME;EACE,c5D2EU;AE2xMd;;A0Dv2ME;EAMM,cpDyJ6B;AN4sMrC;;A0D32ME;EA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zE;;AkEruNM;EAEI,gCAA+D;AlEuuNzE;;AkEzuNM;EAEI,6BAA+D;AlE2uNzE;;AkE7uNM;EAEI,gCAA+D;AlE+uNzE;;AkEjvNM;EAEI,6BAA+D;AlEmvNzE;;AkErvNM;EAEI,gCAA+D;AlEuvNzE;;AkEzvNM;EAEI,gCAA+D;AlE2vNzE;;AkE7vNM;EAEI,gCAA+D;AlE+vNzE;;AkEjwNM;EAEI,gCAA+D;AlEmwNzE;;AkErwNM;EAEI,gCAA+D;AlEuwNzE;;AkEzwNM;EAEI,gCAA+D;AlE2wNzE;;AkE7wNM;EAEI,gCAA+D;AlE+wNzE;;AkEjxNM;EAEI,gCAA+D;AlEmxNzE;;AkErxNM;EAEI,gCAA+D;AlEuxNzE;;AkEzxNM;EAEI,gCAA+D;AlE2xNzE;;AkE7xNM;EAEI,gCAA+D;AlE+xNzE;;AkEjyNM;EAEI,6BAA+D;AlEmyNzE;;AkEryNM;EAEI,gCAA+D;AlEuyNzE;;AkEzyNM;EAEI,gCAA+D;AlE2yNzE;;AkE7yNM;EAEI,gCAA+D;AlE+yNzE;;AkEjzNM;EAEI,gCAA+D;AlEmzNzE;;AkErzNM;EAEI,gCAA+D;AlEuzNzE;;AkEzzNM;EAEI,gCAA+D;AlE2zNzE;;AkE7zNM;EAEI,gCAA+D;AlE+zNzE;;AkEj0NM;EAEI,gCAA+D;AlEm0NzE;;AkEr0NM;EAEI,0BAA+D;AlEu0NzE;;AkEz0NM;EAEI,4BAA+D;AlE20NzE;;AkE70NM;EAEI,4BAA+D;AlE+0NzE;;AkEj1NM;EAEI,4BAA+D;AlEm1NzE;;AkEr1NM;EAEI,4BAA+D;AlEu1NzE;;AkEz1NM;EAEI,4BAA+D;AlE21NzE;;AkE71NM;EAEI,qBAA+D;AlE+1NzE;;AkEj2NM;EAEI,qBAA+D;AlEm2NzE;;AkEr2NM;EAEI,qBAA+D;AlEu2NzE;;AkEz2NM;EAEI,sBAA+D;AlE22NzE;;AkE72NM;EAEI,sBAA+D;AlE+2NzE;;AkEj3NM;EAEI,0BAA+D;AlEm3NzE;;AkEr3NM;EAEI,sBAA+D;AlEu3NzE;;AkEz3NM;EAEI,sBAA+D;AlE23NzE;;AkE73NM;EAEI,sBAA+D;AlE+3NzE;;AkEj4NM;EAEI,uBAA+D;AlEm4N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,6BAA+D;AlEq3OzE;;AkEv3OM;EAEI,4BAA+D;AlEy3OzE;;AkE33OM;EAEI,8BAA+D;AlE63OzE;;AkE/3OM;EAEI,4BAA+D;AlEi4OzE;;AkEn4OM;EAEI,2BAA+D;AlEq4OzE;;AkEv4OM;EAEI,0BAA+D;AlEy4OzE;;AkE34OM;EAEI,gCAA+D;AlE64OzE;;AkE/4OM;EAEI,+BAA+D;AlEi5OzE;;AkEn5OM;EAEI,6BAA+D;AlEq5OzE;;AkEv5OM;EAEI,+BAA+D;AlEy5OzE;;AkE35OM;EAEI,6BAA+D;AlE65OzE;;AkE/5OM;EAEI,6BAA+D;AlEi6OzE;;AkEn6OM;EAEI,6BAA+D;AlEq6OzE;;AkEv6OM;EAEI,+BAA+D;AlEy6OzE;;AkE36OM;EAEI,8BAA+D;AlE66OzE;;AkE/6OM;EAEI,gCAA+D;AlEi7OzE;;AkEn7OM;EAEI,8BAA+D;AlEq7OzE;;AkEv7OM;EAEI,6BAA+D;AlEy7OzE;;AkE37OM;EAEI,2BAA+D;AlE67OzE;;AkE/7OM;EAEI,iCAA+D;AlEi8OzE;;AkEn8OM;EAEI,gCAA+D;AlEq8OzE;;AkEv8OM;EAEI,8BAA+D;AlEy8OzE;;AkE38OM;EAEI,gCAA+D;AlE68OzE;;AkE/8OM;EAEI,8BAA+D;AlEi9OzE;;AkEn9OM;EAEI,8BAA+D;AlEq9OzE;;AkEv9OM;EAEI,8BAA+D;AlEy9OzE;;AkE39OM;EAEI,gCAA+D;AlE69OzE;;AkE/9OM;EAEI,+BAA+D;AlEi+OzE;;AkEn+OM;EAEI,iCAA+D;AlEq+OzE;;AkEv+OM;EAEI,+BAA+D;AlEy+OzE;;AkE3+OM;EAEI,8BAA+D;AlE6+OzE;;AkE/+OM;EAEI,yBAA+D;AlEi/OzE;;AkEn/OM;EAEI,+BAA+D;AlEq/OzE;;AkEv/OM;EAEI,8BAA+D;AlEy/OzE;;AkE3/OM;EAEI,4BAA+D;AlE6/OzE;;AkE//OM;EAEI,8BAA+D;AlEigPzE;;AkEngPM;EAEI,4BAA+D;AlEqgPzE;;AkEvgPM;EAEI,4BAA+D;AlEygPzE;;AkE3gPM;EAEI,4BAA+D;AlE6gPzE;;AkE/gPM;EAEI,8BAA+D;AlEihPzE;;AkEnhPM;EAEI,6BAA+D;AlEqhPzE;;AkEvhPM;EAEI,+BAA+D;AlEyhPzE;;AkE3hPM;EAEI,6BAA+D;AlE6hPzE;;AkE/hPM;EAEI,4BAA+D;AlEiiPzE;;AkEniPM;EAEI,2BAA+D;AlEqiPzE;;AkEviPM;EAEI,0BAA+D;AlEyiPzE;;AkE3iPM;EAEI,wBAA+D;AlE6iPzE;;AkE/iPM;EAEI,0BAA+D;AlEijPzE;;AkEnjPM;EAEI,wBAA+D;AlEqjPzE;;AkEvjPM;EAEI,wBAA+D;AlEyjPzE;;AkE3jPM;EAEI,wBAA+D;AlE6jPzE;;AkE/jPM;EAEI,0BAA+D;AlEikPzE;;AkEnkPM;EAEI,yBAA+D;AlEqkPzE;;AkEvkPM;EAEI,2BAA+D;AlEykPzE;;AkE3kPM;EAEI,yBAA+D;AlE6kPzE;;AkE/kPM;EAEI,iCAA+D;EAA/D,gCAA+D;AlEklPzE;;AkEplPM;EAEI,gCAA+D;EAA/D,+BAA+D;AlEulPzE;;AkEzlPM;EAEI,8BAA+D;EAA/D,6BAA+D;AlE4lPzE;;AkE9lPM;EAEI,gCAA+D;EAA/D,+BAA+D;AlEimPzE;;AkEnmPM;EAEI,8BAA+D;EAA/D,6BAA+D;AlEsmPzE;;AkExmPM;EAEI,8BAA+D;EAA/D,6BAA+D;AlE2mPzE;;AkE7mPM;EAEI,8BAA+D;EAA/D,6BAA+D;AlEgnPzE;;AkElnPM;EAEI,gCAA+D;EAA/D,+BAA+D;AlEqnPzE;;AkEvnPM;EAEI,+BAA+D;EAA/D,8BAA+D;AlE0nPzE;;AkE5nPM;EAEI,iCAA+D;EAA/D,gCAA+D;AlE+nPzE;;AkEjoPM;EAEI,+BAA+D;EAA/D,8BAA+D;AlEooPzE;;AkEtoPM;EAEI,+BAA+D;EAA/D,kCAA+D;AlEyoPzE;;AkE3oPM;EAEI,8BAA+D;EAA/D,iCAA+D;AlE8oPzE;;AkEhpPM;EAEI,4BAA+D;EAA/D,+BAA+D;AlEmpPzE;;AkErpPM;EAEI,8BAA+D;EAA/D,iCAA+D;AlEwpPzE;;AkE1pPM;EAEI,4BAA+D;EAA/D,+BAA+D;AlE6pPzE;;AkE/pPM;EAEI,4BAA+D;EAA/D,+BAA+D;AlEkqPzE;;AkEpqPM;EAEI,4BAA+D;EAA/D,+BAA+D;AlEuqPzE;;AkEzqPM;EAEI,8BAA+D;EAA/D,iCAA+D;AlE4qPzE;;AkE9qPM;EAEI,6BAA+D;EAA/D,gCAA+D;AlEirPzE;;AkEnrPM;EAEI,+BAA+D;EAA/D,kCAA+D;AlEsrPzE;;AkExrPM;EAEI,6BAA+D;EAA/D,gCAA+D;AlE2rPzE;;AkE7rPM;EAEI,+BAA+D;AlE+rPzE;;AkEjsPM;EAEI,8BAA+D;AlEmsPzE;;AkErsPM;EAEI,4BAA+D;AlEusPzE;;AkEzsPM;EAEI,8BAA+D;AlE2sPzE;;AkE7sPM;EAEI,4BAA+D;AlE+sPzE;;AkEjtPM;EAEI,4BAA+D;AlEmtPzE;;AkErtPM;EAEI,4BAA+D;AlEutPzE;;AkEztPM;EAEI,8BAA+D;AlE2tPzE;;AkE7tPM;EAEI,6BAA+D;AlE+tPzE;;AkEjuPM;EAEI,+BAA+D;AlEmuPzE;;AkEruPM;EAEI,6BAA+D;AlEuuPzE;;AkEzuPM;EAEI,iCAA+D;AlE2uPzE;;AkE7uPM;EAEI,gCAA+D;AlE+uPzE;;AkEjvPM;EAEI,8BAA+D;AlEmvPzE;;AkErvPM;EAEI,gCAA+D;AlEuvPzE;;AkEzvPM;EAEI,8BAA+D;AlE2vPzE;;AkE7vPM;EAEI,8BAA+D;AlE+vPzE;;AkEjwPM;EAEI,8BAA+D;AlEmwPzE;;AkErwPM;EAEI,gCAA+D;AlEuwPzE;;AkEzwPM;EAEI,+BAA+D;AlE2wPzE;;AkE7wPM;EAEI,iCAA+D;AlE+wPzE;;AkEjxPM;EAEI,+BAA+D;AlEmxPzE;;AkErxPM;EAEI,kCAA+D;AlEuxPzE;;AkEzxPM;EAEI,iCAA+D;AlE2xPzE;;AkE7xPM;EAEI,+BAA+D;AlE+xPzE;;AkEjyPM;EAEI,iCAA+D;AlEmyPzE;;AkEryPM;EAEI,+BAA+D;AlEuyPzE;;AkEzyPM;EAEI,+BAA+D;AlE2yPzE;;AkE7yPM;EAEI,+BAA+D;AlE+yPzE;;AkEjzPM;EAEI,iCAA+D;AlEmzPzE;;AkErzPM;EAEI,gCAA+D;AlEuzPzE;;AkEzzPM;EAEI,kCAA+D;AlE2zPzE;;AkE7zPM;EAEI,gCAA+D;AlE+zPzE;;AkEj0PM;EAEI,gCAA+D;AlEm0P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BAA+D;AlEmnQzE;;AkErnQM;EAEI,4BAA+D;AlEunQzE;;AkEznQM;EAEI,kCAA+D;AlE2nQzE;;AkE7nQM;EAEI,iCAA+D;AlE+nQzE;;AkEjoQM;EAEI,+BAA+D;AlEmoQzE;;AkEroQM;EAEI,iCAA+D;AlEuoQzE;;AkEzoQM;EAEI,+BAA+D;AlE2oQzE;;AkE7oQM;EAEI,+BAA+D;AlE+oQzE;;AkEjpQM;EAEI,+BAA+D;AlEmpQzE;;AkErpQM;EAEI,iCAA+D;AlEupQzE;;AkEzpQM;EAEI,gCAA+D;AlE2pQzE;;AkE7pQM;EAEI,kCAA+D;AlE+pQzE;;AkEjqQM;EAEI,gCAA+D;AlEmqQzE;;AkErqQM;EAEI,0BAA+D;AlEuqQzE;;AkEzqQM;EAEI,gCAA+D;AlE2qQzE;;AkE7qQM;EAEI,+BAA+D;AlE+qQzE;;AkEjrQM;EAEI,6BAA+D;AlEmrQzE;;AkErrQM;EAEI,+BAA+D;AlEurQzE;;AkEzrQM;EAEI,6BAA+D;AlE2rQzE;;AkE7rQM;EAEI,6BAA+D;AlE+rQzE;;AkEjsQM;EAEI,6BAA+D;AlEmsQzE;;AkErsQM;EAEI,+BAA+D;AlEusQzE;;AkEzsQM;EAEI,8BAA+D;AlE2sQzE;;AkE7sQM;EAEI,gCAA+D;AlE+sQzE;;AkEjtQM;EAEI,8BAA+D;AlEmtQzE;;AkErtQM;EAEI,gCAA+D;AlEutQzE;;AkEztQM;EAEI,gCAA+D;AlE2tQzE;;AkE7tQM;EAEI,0BAA+D;AlE+tQzE;;AkEjuQM;EAEI,4BAA+D;AlEmuQzE;;AkEruQM;EAEI,6BAA+D;AlEuuQzE;;AkEzuQM;EAEI,8BAA+D;AlE2uQzE;;AkE7uQM;EAEI,+BAA+D;AlE+uQzE;;AkEjvQM;EAEI,gCAA+D;AlEmvQzE;;AkErvQM;EAEI,gCAA+D;AlEuvQzE;;AkEzvQM;EAEI,gCAA+D;AlE2vQzE;;AkE7vQM;EAEI,gCAA+D;AlE+vQzE;;AkEjwQM;EAEI,6BAA+D;AlEmwQzE;;AkErwQM;EAEI,6BAA+D;AlEuwQzE;;AkEzwQM;EAEI,2BAA+D;AlE2wQzE;;AkE7wQM;EAEI,2BAA+D;AlE+wQzE;;AkEjxQM;EAEI,2BAA+D;AlEmxQzE;;AkErxQM;EAEI,2BAA+D;AlEuxQzE;;AkEzxQM;EAEI,2BAA+D;AlE2xQzE;;AkE7xQM;EAEI,2BAA+D;AlE+xQzE;;AkEjyQM;EAEI,2BAA+D;AlEmyQzE;;AkEryQM;EAEI,2BAA+D;AlEuyQzE;;AkEzyQM;EAEI,2BAA+D;AlE2yQzE;;AkE7yQM;EAEI,oCAA+D;AlE+yQzE;;AkEjzQM;EAEI,oCAA+D;AlEmzQzE;;AkErzQM;EAEI,qCAA+D;AlEuzQzE;;AkEzzQM;EAEI,2BAA+D;AlE2zQzE;;AkE7zQM;EAEI,4BAA+D;AlE+zQzE;;AkEj0QM;EAEI,6BAA+D;AlEm0QzE;;AkEr0QM;EAEI,yBAA+D;AlEu0QzE;;AkEz0QM;EAEI,yBAA+D;AlE20QzE;;AkE70QM;EAEI,yBAA+D;AlE+0QzE;;AkEj1QM;EAEI,yBAA+D;AlEm1QzE;;AkEr1QM;EAEI,yBAA+D;AlEu1QzE;;AkEz1QM;EAEI,yBAA+D;AlE21QzE;;AkE71QM;EAEI,yBAA+D;AlE+1QzE;;AkEj2QM;EAEI,yBAA+D;AlEm2QzE;;AkEr2QM;EAEI,sBAA+D;AlEu2QzE;;AkEz2QM;EAEI,yBAA+D;AlE22QzE;;AkE72QM;EAEI,yBAA+D;AlE+2QzE;;AkEj3QM;EAEI,oCAA+D;AlEm3QzE;;AkEr3QM;EAEI,0CAA+D;AlEu3QzE;;AkEz3QM;EAEI,yBAA+D;AlE23QzE;;AkE73QM;EAEI,yBAA+D;AlE+3QzE;;AkEj4QM;EAEI,4BAA+D;AlEm4QzE;;AkEr4QM;EAEI,2BAA+D;AlEu4QzE;;AkEz4QM;EAEI,yBAA+D;AlE24QzE;;AkE74QM;EAEI,oCAA+D;AlE+4QzE;;AkEj5QM;EAEI,oCAA+D;AlEm5QzE;;AkEr5QM;EAEI,oCAA+D;AlEu5QzE;;AkEz5QM;EAEI,oCAA+D;AlE25QzE;;AkE75QM;EAEI,oCAA+D;AlE+5QzE;;AkEj6QM;EAEI,iCAA+D;AlEm6QzE;;AkEr6QM;EAEI,oCAA+D;AlEu6QzE;;AkEz6QM;EAEI,iCAA+D;AlE26QzE;;AkE76QM;EAEI,oCAA+D;AlE+6QzE;;AkEj7QM;EAEI,o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A+D;ElEu2SvE;EkEz2SI;IAEI,gCAA+D;ElE02SvE;EkE52SI;IAEI,+BAA+D;ElE62SvE;EkE/2SI;IAEI,6BAA+D;ElEg3SvE;EkEl3SI;IAEI,+BAA+D;ElEm3SvE;EkEr3SI;IAEI,6BAA+D;ElEs3SvE;EkEx3SI;IAEI,6BAA+D;ElEy3SvE;EkE33SI;IAEI,6BAA+D;ElE43SvE;EkE93SI;IAEI,+BAA+D;ElE+3SvE;EkEj4SI;IAEI,8BAA+D;ElEk4SvE;EkEp4SI;IAEI,gCAA+D;ElEq4SvE;EkEv4SI;IAEI,8BAA+D;ElEw4SvE;EkE14SI;IAEI,6BAA+D;ElE24SvE;EkE74SI;IAEI,2BAA+D;ElE84SvE;EkEh5SI;IAEI,iCAA+D;ElEi5SvE;EkEn5SI;IAEI,gCAA+D;ElEo5SvE;EkEt5SI;IAEI,8BAA+D;ElEu5SvE;EkEz5SI;IAEI,gCAA+D;ElE05SvE;EkE55SI;IAEI,8BAA+D;ElE65SvE;EkE/5SI;IAEI,8BAA+D;ElEg6SvE;EkEl6SI;IAEI,8BAA+D;ElEm6SvE;EkEr6SI;IAEI,gCAA+D;ElEs6SvE;EkEx6SI;IAEI,+BAA+D;ElEy6SvE;EkE36SI;IAEI,iCAA+D;ElE46SvE;EkE96SI;IAEI,+BAA+D;ElE+6SvE;EkEj7SI;IAEI,8BAA+D;ElEk7SvE;EkEp7SI;IAEI,yBAA+D;ElEq7SvE;EkEv7SI;IAEI,+BAA+D;ElEw7SvE;EkE17SI;IAEI,8BAA+D;ElE27SvE;EkE77SI;IAEI,4BAA+D;ElE87SvE;EkEh8SI;IAEI,8BAA+D;ElEi8SvE;EkEn8SI;IAEI,4BAA+D;ElEo8SvE;EkEt8SI;IAEI,4BAA+D;ElEu8SvE;EkEz8SI;IAEI,4BAA+D;ElE08SvE;EkE58SI;IAEI,8BAA+D;ElE68SvE;EkE/8SI;IAEI,6BAA+D;ElEg9SvE;EkEl9SI;IAEI,+BAA+D;ElEm9SvE;EkEr9SI;IAEI,6BAA+D;ElEs9SvE;EkEx9SI;IAEI,4BAA+D;ElEy9SvE;EkE39SI;IAEI,2BAA+D;ElE49SvE;EkE99SI;IAEI,0BAA+D;ElE+9SvE;EkEj+SI;IAEI,wBAA+D;ElEk+SvE;EkEp+SI;IAEI,0BAA+D;ElEq+SvE;EkEv+SI;IAEI,wBAA+D;ElEw+SvE;EkE1+SI;IAEI,wBAA+D;ElE2+SvE;EkE7+SI;IAEI,wBAA+D;ElE8+SvE;EkEh/SI;IAEI,0BAA+D;ElEi/SvE;EkEn/SI;IAEI,yBAA+D;ElEo/SvE;EkEt/SI;IAEI,2BAA+D;ElEu/SvE;EkEz/SI;IAEI,yBAA+D;ElE0/SvE;EkE5/SI;IAEI,iCAA+D;IAA/D,gCAA+D;ElE8/SvE;EkEhgTI;IAEI,gCAA+D;IAA/D,+BAA+D;ElEkgTvE;EkEpgTI;IAEI,8BAA+D;IAA/D,6BAA+D;ElEsgTvE;EkExgTI;IAEI,gCAA+D;IAA/D,+BAA+D;ElE0gTvE;EkE5gTI;IAEI,8BAA+D;IAA/D,6BAA+D;ElE8gTvE;EkEhhTI;IAEI,8BAA+D;IAA/D,6BAA+D;ElEkhTvE;EkEphTI;IAEI,8BAA+D;IAA/D,6BAA+D;ElEshTvE;EkExhTI;IAEI,gCAA+D;IAA/D,+BAA+D;ElE0hTvE;EkE5hTI;IAEI,+BAA+D;IAA/D,8BAA+D;ElE8hTvE;EkEhiTI;IAEI,iCAA+D;IAA/D,gCAA+D;ElEkiTvE;EkEpiTI;IAEI,+BAA+D;IAA/D,8BAA+D;ElEsiTvE;EkExiTI;IAEI,+BAA+D;IAA/D,kCAA+D;ElE0iTvE;EkE5iTI;IAEI,8BAA+D;IAA/D,iCAA+D;ElE8iTvE;EkEhjTI;IAEI,4BAA+D;IAA/D,+BAA+D;ElEkjTvE;EkEpjTI;IAEI,8BAA+D;IAA/D,iCAA+D;ElEsjTvE;EkExjTI;IAEI,4BAA+D;IAA/D,+BAA+D;ElE0jTvE;EkE5jTI;IAEI,4BAA+D;IAA/D,+BAA+D;ElE8jTvE;EkEhkTI;IAEI,4BAA+D;IAA/D,+BAA+D;ElEkkTvE;EkEpkTI;IAEI,8BAA+D;IAA/D,iCAA+D;ElEskTvE;EkExkTI;IAEI,6BAA+D;IAA/D,gCAA+D;ElE0kTvE;EkE5kTI;IAEI,+BAA+D;IAA/D,kCAA+D;ElE8kTvE;EkEhlTI;IAEI,6BAA+D;IAA/D,gCAA+D;ElEklTvE;EkEplTI;IAEI,+BAA+D;ElEqlTvE;EkEvlTI;IAEI,8BAA+D;ElEwlTvE;EkE1lTI;IAEI,4BAA+D;ElE2lTvE;EkE7lTI;IAEI,8BAA+D;ElE8lTvE;EkEhmTI;IAEI,4BAA+D;ElEimTvE;EkEnmTI;IAEI,4BAA+D;ElEomTvE;EkEtmTI;IAEI,4BAA+D;ElEumTvE;EkEzmTI;IAEI,8BAA+D;ElE0mTvE;EkE5mTI;IAEI,6BAA+D;ElE6mTvE;EkE/mTI;IAEI,+BAA+D;ElEgnTvE;EkElnTI;IAEI,6BAA+D;ElEmnTvE;EkErnTI;IAEI,iCAA+D;ElEsnTvE;EkExnTI;IAEI,gCAA+D;ElEynTvE;EkE3nTI;IAEI,8BAA+D;ElE4nTvE;EkE9nTI;IAEI,gCAA+D;ElE+nTvE;EkEjoTI;IAEI,8BAA+D;ElEkoTvE;EkEpoTI;IAEI,8BAA+D;ElEqoTvE;EkEvoTI;IAEI,8BAA+D;ElEwoTvE;EkE1oTI;IAEI,gCAA+D;ElE2oTvE;EkE7oTI;IAEI,+BAA+D;ElE8oTvE;EkEhpTI;IAEI,iCAA+D;ElEipTvE;EkEnpTI;IAEI,+BAA+D;ElEopTvE;EkEtpTI;IAEI,kCAA+D;ElEupTvE;EkEzpTI;IAEI,iCAA+D;ElE0pTvE;EkE5pTI;IAEI,+BAA+D;ElE6pTvE;EkE/pTI;IAEI,iCAA+D;ElEgqTvE;EkElqTI;IAEI,+BAA+D;ElEmqTvE;EkErqTI;IAEI,+BAA+D;ElEsqTvE;EkExqTI;IAEI,+BAA+D;ElEyqTvE;EkE3qTI;IAEI,iCAA+D;ElE4qTvE;EkE9qTI;IAEI,gCAA+D;ElE+qTvE;EkEjrTI;IAEI,kCAA+D;ElEkrTvE;EkEprTI;IAEI,gCAA+D;ElEqrTvE;EkEvrTI;IAEI,gCAA+D;ElEwrTvE;EkE1rTI;IAEI,+BAA+D;ElE2rTvE;EkE7rTI;IAEI,6BAA+D;ElE8rTvE;EkEhsTI;IAEI,+BAA+D;ElEisTvE;EkEnsTI;IAEI,6BAA+D;ElEosTvE;EkEtsTI;IAEI,6BAA+D;ElEusTvE;EkEzsTI;IAEI,6BAA+D;ElE0sTvE;EkE5sTI;IAEI,+BAA+D;ElE6sTvE;EkE/sTI;IAEI,8BAA+D;ElEgtTvE;EkEltTI;IAEI,gCAA+D;ElEm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VI;IAEI,6BAA+D;ElE6qVvE;EkE/qVI;IAEI,2BAA+D;ElEgrVvE;EkElrVI;IAEI,2BAA+D;ElEmrVvE;EkErrVI;IAEI,2BAA+D;ElEsrVvE;EkExrVI;IAEI,6BAA+D;ElEyrVvE;EkE3rVI;IAEI,4BAA+D;ElE4rVvE;EkE9rVI;IAEI,8BAA+D;ElE+rVvE;EkEjsVI;IAEI,4BAA+D;ElEksVvE;EkEpsVI;IAEI,2BAA+D;ElEqsVvE;EkEvsVI;IAEI,0BAA+D;ElEwsVvE;EkE1sVI;IAEI,gCAA+D;ElE2sVvE;EkE7sVI;IAEI,+BAA+D;ElE8sVvE;EkEhtVI;IAEI,6BAA+D;ElEitVvE;EkEntVI;IAEI,+BAA+D;ElEotVvE;EkEttVI;IAEI,6BAA+D;ElEutVvE;EkEztVI;IAEI,6BAA+D;ElE0tVvE;EkE5tVI;IAEI,6BAA+D;ElE6tVvE;EkE/tVI;IAEI,+BAA+D;ElEguVvE;EkEluVI;IAEI,8BAA+D;ElEmuVvE;EkEruVI;IAEI,gCAA+D;ElEsuVvE;EkExuVI;IAEI,8BAA+D;ElEyuVvE;EkE3uVI;IAEI,6BAA+D;ElE4uVvE;EkE9uVI;IAEI,2BAA+D;ElE+uVvE;EkEjvVI;IAEI,iCAA+D;ElEkvVvE;EkEpvVI;IAEI,gCAA+D;ElEqvVvE;EkEvvVI;IAEI,8BAA+D;ElEwvVvE;EkE1vVI;IAEI,gCAA+D;ElE2vVvE;EkE7vVI;IAEI,8BAA+D;ElE8vVvE;EkEhwVI;IAEI,8BAA+D;ElEiwVvE;EkEnwVI;IAEI,8BAA+D;ElEowVvE;EkEtwVI;IAEI,gCAA+D;ElEuwVvE;EkEzwVI;IAEI,+BAA+D;ElE0wVvE;EkE5wVI;IAEI,iCAA+D;ElE6wVvE;EkE/wVI;IAEI,+BAA+D;ElEgxVvE;EkElxVI;IAEI,8BAA+D;ElEmxVvE;EkErxVI;IAEI,yBAA+D;ElEsxVvE;EkExxVI;IAEI,+BAA+D;ElEyxVvE;EkE3xVI;IAEI,8BAA+D;ElE4xVvE;EkE9xVI;IAEI,4BAA+D;ElE+xVvE;EkEjyVI;IAEI,8BAA+D;ElEkyVvE;EkEpyVI;IAEI,4BAA+D;ElEqyVvE;EkEvyVI;IAEI,4BAA+D;ElEwyVvE;EkE1yVI;IAEI,4BAA+D;ElE2yVvE;EkE7yVI;IAEI,8BAA+D;ElE8yVvE;EkEhzVI;IAEI,6BAA+D;ElEizVvE;EkEnzVI;IAEI,+BAA+D;ElEozVvE;EkEtzVI;IAEI,6BAA+D;ElEuzVvE;EkEzzVI;IAEI,4BAA+D;ElE0zVvE;EkE5zVI;IAEI,2BAA+D;ElE6zVvE;EkE/zVI;IAEI,0BAA+D;ElEg0VvE;EkEl0VI;IAEI,wBAA+D;ElEm0VvE;EkEr0VI;IAEI,0BAA+D;ElEs0VvE;EkEx0VI;IAEI,wBAA+D;ElEy0VvE;EkE30VI;IAEI,wBAA+D;ElE40VvE;EkE90VI;IAEI,wBAA+D;ElE+0VvE;EkEj1VI;IAEI,0BAA+D;ElEk1VvE;EkEp1VI;IAEI,yBAA+D;ElEq1VvE;EkEv1VI;IAEI,2BAA+D;ElEw1VvE;EkE11VI;IAEI,yBAA+D;ElE21VvE;EkE71VI;IAEI,iCAA+D;IAA/D,gCAA+D;ElE+1VvE;EkEj2VI;IAEI,gCAA+D;IAA/D,+BAA+D;ElEm2VvE;EkEr2VI;IAEI,8BAA+D;IAA/D,6BAA+D;ElEu2VvE;EkEz2VI;IAEI,gCAA+D;IAA/D,+BAA+D;ElE22VvE;EkE72VI;IAEI,8BAA+D;IAA/D,6BAA+D;ElE+2VvE;EkEj3VI;IAEI,8BAA+D;IAA/D,6BAA+D;ElEm3VvE;EkEr3VI;IAEI,8BAA+D;IAA/D,6BAA+D;ElEu3VvE;EkEz3VI;IAEI,gCAA+D;IAA/D,+BAA+D;ElE23VvE;EkE73VI;IAEI,+BAA+D;IAA/D,8BAA+D;ElE+3VvE;EkEj4VI;IAEI,iCAA+D;IAA/D,gCAA+D;ElEm4VvE;EkEr4VI;IAEI,+BAA+D;IAA/D,8BAA+D;ElEu4VvE;EkEz4VI;IAEI,+BAA+D;IAA/D,kCAA+D;ElE24VvE;EkE74VI;IAEI,8BAA+D;IAA/D,iCAA+D;ElE+4VvE;EkEj5VI;IAEI,4BAA+D;IAA/D,+BAA+D;ElEm5VvE;EkEr5VI;IAEI,8BAA+D;IAA/D,iCAA+D;ElEu5VvE;EkEz5VI;IAEI,4BAA+D;IAA/D,+BAA+D;ElE25VvE;EkE75VI;IAEI,4BAA+D;IAA/D,+BAA+D;ElE+5VvE;EkEj6VI;IAEI,4BAA+D;IAA/D,+BAA+D;ElEm6VvE;EkEr6VI;IAEI,8BAA+D;IAA/D,iCAA+D;ElEu6VvE;EkEz6VI;IAEI,6BAA+D;IAA/D,gCAA+D;ElE26VvE;EkE76VI;IAEI,+BAA+D;IAA/D,kCAA+D;ElE+6VvE;EkEj7VI;IAEI,6BAA+D;IAA/D,gCAA+D;ElEm7VvE;EkEr7VI;IAEI,+BAA+D;ElEs7VvE;EkEx7VI;IAEI,8BAA+D;ElEy7VvE;EkE37VI;IAEI,4BAA+D;ElE47VvE;EkE97VI;IAEI,8BAA+D;ElE+7VvE;EkEj8VI;IAEI,4BAA+D;ElEk8VvE;EkEp8VI;IAEI,4BAA+D;ElEq8VvE;EkEv8VI;IAEI,4BAA+D;ElEw8VvE;EkE18VI;IAEI,8BAA+D;ElE28VvE;EkE78VI;IAEI,6BAA+D;ElE88VvE;EkEh9VI;IAEI,+BAA+D;ElEi9VvE;EkEn9VI;IAEI,6BAA+D;ElEo9VvE;EkEt9VI;IAEI,iCAA+D;ElEu9VvE;EkEz9VI;IAEI,gCAA+D;ElE09VvE;EkE59VI;IAEI,8BAA+D;ElE69VvE;EkE/9VI;IAEI,gCAA+D;ElEg+VvE;EkEl+VI;IAEI,8BAA+D;ElEm+VvE;EkEr+VI;IAEI,8BAA+D;ElEs+VvE;EkEx+VI;IAEI,8BAA+D;ElEy+VvE;EkE3+VI;IAEI,gCAA+D;ElE4+VvE;EkE9+VI;IAEI,+BAA+D;ElE++VvE;EkEj/VI;IAEI,iCAA+D;ElEk/VvE;EkEp/VI;IAEI,+BAA+D;ElEq/VvE;EkEv/VI;IAEI,kCAA+D;ElEw/VvE;EkE1/VI;IAEI,iCAA+D;ElE2/VvE;EkE7/VI;IAEI,+BAA+D;ElE8/VvE;EkEhgWI;IAEI,iCAA+D;ElEigWvE;EkEngWI;IAEI,+BAA+D;ElEogWvE;EkEtgWI;IAEI,+BAA+D;ElEugWvE;EkEzgWI;IAEI,+BAA+D;ElE0gWvE;EkE5gWI;IAEI,iCAA+D;ElE6gWvE;EkE/gWI;IAEI,gCAA+D;ElEghWvE;EkElhWI;IAEI,kCAA+D;ElEmhWvE;EkErhWI;IAEI,gCAA+D;ElEshWvE;EkExhWI;IAEI,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EtuYI;IAEI,+BAA+D;IAA/D,8BAA+D;ElEwuYvE;EkE1uYI;IAEI,+BAA+D;IAA/D,kCAA+D;ElE4uYvE;EkE9uYI;IAEI,8BAA+D;IAA/D,iCAA+D;ElEgvYvE;EkElvYI;IAEI,4BAA+D;IAA/D,+BAA+D;ElEovYvE;EkEtvYI;IAEI,8BAA+D;IAA/D,iCAA+D;ElEwvYvE;EkE1vYI;IAEI,4BAA+D;IAA/D,+BAA+D;ElE4vYvE;EkE9vYI;IAEI,4BAA+D;IAA/D,+BAA+D;ElEgwYvE;EkElwYI;IAEI,4BAA+D;IAA/D,+BAA+D;ElEowYvE;EkEtwYI;IAEI,8BAA+D;IAA/D,iCAA+D;ElEwwYvE;EkE1wYI;IAEI,6BAA+D;IAA/D,gCAA+D;ElE4wYvE;EkE9wYI;IAEI,+BAA+D;IAA/D,kCAA+D;ElEgxYvE;EkElxYI;IAEI,6BAA+D;IAA/D,gCAA+D;ElEoxYvE;EkEtxYI;IAEI,+BAA+D;ElEuxYvE;EkEzxYI;IAEI,8BAA+D;ElE0xYvE;EkE5xYI;IAEI,4BAA+D;ElE6xYvE;EkE/xYI;IAEI,8BAA+D;ElEgyYvE;EkElyYI;IAEI,4BAA+D;ElEmyYvE;EkEryYI;IAEI,4BAA+D;ElEsyYvE;EkExyYI;IAEI,4BAA+D;ElEyyYvE;EkE3yYI;IAEI,8BAA+D;ElE4yYvE;EkE9yYI;IAEI,6BAA+D;ElE+yYvE;EkEjzYI;IAEI,+BAA+D;ElEkzYvE;EkEpzYI;IAEI,6BAA+D;ElEqzYvE;EkEvzYI;IAEI,iCAA+D;ElEwzYvE;EkE1zYI;IAEI,gCAA+D;ElE2zYvE;EkE7zYI;IAEI,8BAA+D;ElE8zYvE;EkEh0YI;IAEI,gCAA+D;ElEi0YvE;EkEn0YI;IAEI,8BAA+D;ElEo0YvE;EkEt0YI;IAEI,8BAA+D;ElEu0YvE;EkEz0YI;IAEI,8BAA+D;ElE00YvE;EkE50YI;IAEI,gCAA+D;ElE60YvE;EkE/0YI;IAEI,+BAA+D;ElEg1YvE;EkEl1YI;IAEI,iCAA+D;ElEm1YvE;EkEr1YI;IAEI,+BAA+D;ElEs1YvE;EkEx1YI;IAEI,kCAA+D;ElEy1YvE;EkE31YI;IAEI,iCAA+D;ElE41YvE;Ek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E9kZI;IAEI,gCAA+D;ElE+kZvE;EkEjlZI;IAEI,8BAA+D;ElEklZvE;EkEplZI;IAEI,8BAA+D;ElEqlZvE;EkEvlZI;IAEI,8BAA+D;ElEwlZvE;EkE1lZI;IAEI,gCAA+D;ElE2lZvE;EkE7lZI;IAEI,+BAA+D;ElE8lZvE;EkEhmZI;IAEI,iCAA+D;ElEimZvE;EkEnmZI;IAEI,+BAA+D;ElEomZvE;EkEtmZI;IAEI,4BAA+D;ElEumZvE;EkEzmZI;IAEI,kCAA+D;ElE0mZvE;EkE5mZI;IAEI,iCAA+D;ElE6mZvE;EkE/mZI;IAEI,+BAA+D;ElEgnZvE;EkElnZI;IAEI,iCAA+D;ElEmnZvE;EkErnZI;IAEI,+BAA+D;ElEsnZvE;EkExnZI;IAEI,+BAA+D;ElEynZvE;EkE3nZI;IAEI,+BAA+D;ElE4nZvE;EkE9nZI;IAEI,iCAA+D;ElE+nZvE;EkEjoZI;IAEI,gCAA+D;ElEkoZvE;EkEpoZI;IAEI,kCAA+D;ElEqoZvE;EkEvoZI;IAEI,gCAA+D;ElEwoZvE;EkE1oZI;IAEI,0BAA+D;ElE2oZvE;EkE7oZI;IAEI,gCAA+D;ElE8oZvE;EkEhpZI;IAEI,+BAA+D;ElEipZvE;EkEnpZI;IAEI,6BAA+D;ElEopZvE;EkEtpZI;IAEI,+BAA+D;ElEupZvE;EkEzpZI;IAEI,6BAA+D;ElE0pZvE;EkE5pZI;IAEI,6BAA+D;ElE6pZvE;EkE/pZI;IAEI,6BAA+D;ElEgqZvE;EkElqZI;IAEI,+BAA+D;ElEmqZvE;EkErqZI;IAEI,8BAA+D;ElEsqZvE;EkExqZI;IAEI,gCAA+D;ElEyqZvE;EkE3qZI;IAEI,8BAA+D;ElE4qZvE;EkE9qZI;IAEI,gCAA+D;ElE+qZvE;EkEjrZI;IAEI,gCAA+D;ElEkrZvE;EkEprZI;IAEI,0BAA+D;ElEqrZvE;EkEvrZI;IAEI,4BAA+D;ElEwrZvE;EkE1rZI;IAEI,6BAA+D;ElE2rZvE;EkE7rZI;IAEI,8BAA+D;ElE8rZvE;EkEhsZI;IAEI,+BAA+D;ElEisZvE;EkEnsZI;IAEI,gCAA+D;ElEosZvE;EkEtsZI;IAEI,gCAA+D;ElEusZvE;EkEzsZI;IAEI,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D,+BAA+D;ElE6ibvE;EkE/ibI;IAEI,8BAA+D;IAA/D,6BAA+D;ElEijbvE;EkEnjbI;IAEI,8BAA+D;IAA/D,6BAA+D;ElEqjbvE;EkEvjbI;IAEI,8BAA+D;IAA/D,6BAA+D;ElEyjbvE;EkE3jbI;IAEI,gCAA+D;IAA/D,+BAA+D;ElE6jbvE;EkE/jbI;IAEI,+BAA+D;IAA/D,8BAA+D;ElEikbvE;EkEnkbI;IAEI,iCAA+D;IAA/D,gCAA+D;ElEqkbvE;EkEvkbI;IAEI,+BAA+D;IAA/D,8BAA+D;ElEykbvE;EkE3kbI;IAEI,+BAA+D;IAA/D,kCAA+D;ElE6kbvE;EkE/kbI;IAEI,8BAA+D;IAA/D,iCAA+D;ElEilbvE;EkEnlbI;IAEI,4BAA+D;IAA/D,+BAA+D;ElEqlbvE;EkEvlbI;IAEI,8BAA+D;IAA/D,iCAA+D;ElEylbvE;EkE3lbI;IAEI,4BAA+D;IAA/D,+BAA+D;ElE6lbvE;EkE/lbI;IAEI,4BAA+D;IAA/D,+BAA+D;ElEimbvE;EkEnmbI;IAEI,4BAA+D;IAA/D,+BAA+D;ElEqmbvE;EkEvmbI;IAEI,8BAA+D;IAA/D,iCAA+D;ElEymbvE;EkE3mbI;IAEI,6BAA+D;IAA/D,gCAA+D;ElE6mbvE;EkE/mbI;IAEI,+BAA+D;IAA/D,kCAA+D;ElEinbvE;EkEnnbI;IAEI,6BAA+D;IAA/D,gCAA+D;ElEqnbvE;EkEvnbI;IAEI,+BAA+D;ElEwnbvE;EkE1nbI;IAEI,8BAA+D;ElE2nbvE;EkE7nbI;IAEI,4BAA+D;ElE8nbvE;EkEhobI;IAEI,8BAA+D;ElEiobvE;EkEnobI;IAEI,4BAA+D;ElEoobvE;EkEtobI;IAEI,4BAA+D;ElEuobvE;EkEzobI;IAEI,4BAA+D;ElE0obvE;EkE5obI;IAEI,8BAA+D;ElE6obvE;EkE/obI;IAEI,6BAA+D;ElEgpbvE;EkElpbI;IAEI,+BAA+D;ElEmpbvE;EkErpbI;IAEI,6BAA+D;ElEspbvE;EkExpbI;IAEI,iCAA+D;ElEypbvE;EkE3pbI;IAEI,gCAA+D;ElE4pbvE;EkE9pbI;IAEI,8BAA+D;ElE+pbvE;EkEjqbI;IAEI,gCAA+D;ElEkqbvE;EkEpqbI;IAEI,8BAA+D;ElEqqbvE;EkEvqbI;IAEI,8BAA+D;ElEwqbvE;EkE1qbI;IAEI,8BAA+D;ElE2qbvE;EkE7qbI;IAEI,gCAA+D;ElE8qbvE;EkEhrbI;IAEI,+BAA+D;ElEirbvE;EkEnrbI;IAEI,iCAA+D;ElEorbvE;EkEtrbI;IAEI,+BAA+D;ElEurbvE;EkEzrbI;IAEI,kCAA+D;ElE0rbvE;EkE5rbI;IAEI,iCAA+D;ElE6rbvE;EkE/rbI;IAEI,+BAA+D;ElEgsbvE;EkElsbI;IAEI,iCAA+D;ElEmsbvE;EkErsbI;IAEI,+BAA+D;ElEssbvE;EkExsbI;IAEI,+BAA+D;ElEysbvE;EkE3sbI;IAEI,+BAA+D;ElE4sbvE;EkE9sbI;IAEI,iCAA+D;ElE+sbvE;EkEjtbI;IAEI,gCAA+D;ElEktbvE;EkEptbI;IAEI,kCAA+D;ElEqtbvE;EkEvtbI;IAEI,gCAA+D;ElEwtbvE;EkE1tbI;IAEI,gCAA+D;ElE2tbvE;EkE7tbI;IAEI,+BAA+D;ElE8tbvE;EkEhubI;IAEI,6BAA+D;ElEiubvE;EkEnubI;IAEI,+BAA+D;ElEoubvE;EkEtubI;IAEI,6BAA+D;ElEuubvE;EkEzubI;IAEI,6BAA+D;ElE0ubvE;EkE5ubI;IAEI,6BAA+D;ElE6ubvE;EkE/ubI;IAEI,+BAA+D;ElEgvbvE;EkElvbI;IAEI,8BAA+D;ElEmvbvE;EkErvbI;IAEI,gCAA+D;ElEsvbvE;EkExvbI;IAEI,8BAA+D;ElEyvbvE;EkE3vbI;IAEI,qBAA+D;ElE4vbvE;EkE9vbI;IAEI,2BAA+D;ElE+vbvE;EkEjwbI;IAEI,0BAA+D;ElEkwbvE;EkEpwbI;IAEI,wBAA+D;ElEqwbvE;EkEvwbI;IAEI,0BAA+D;ElEwwbvE;EkE1wbI;IAEI,wBAA+D;ElE2wbvE;EkE7wbI;IAEI,wBAA+D;ElE8wbvE;EkEhxbI;IAEI,wBAA+D;ElEixbvE;EkEnxbI;IAEI,0BAA+D;ElEoxbvE;EkEtxbI;IAEI,yBAA+D;ElEuxbvE;EkEzxbI;IAEI,2BAA+D;ElE0xbvE;EkE5xbI;IAEI,yBAA+D;ElE6xbvE;EkE/xbI;IAEI,2BAA+D;IAA/D,0BAA+D;ElEiybvE;EkEnybI;IAEI,iCAA+D;IAA/D,gCAA+D;ElEqybvE;EkEvybI;IAEI,gCAA+D;IAA/D,+BAA+D;ElEyybvE;EkE3ybI;IAEI,8BAA+D;IAA/D,6BAA+D;ElE6ybvE;EkE/ybI;IAEI,gCAA+D;IAA/D,+BAA+D;ElEizbvE;EkEnzbI;IAEI,8BAA+D;IAA/D,6BAA+D;ElEqzbvE;EkEvzbI;IAEI,8BAA+D;IAA/D,6BAA+D;ElEyzbvE;EkE3zbI;IAEI,8BAA+D;IAA/D,6BAA+D;ElE6zbvE;EkE/zbI;IAEI,gCAA+D;IAA/D,+BAA+D;ElEi0bvE;EkEn0bI;IAEI,+BAA+D;IAA/D,8BAA+D;ElEq0bvE;EkEv0bI;IAEI,iCAA+D;IAA/D,gCAA+D;ElEy0bvE;EkE30bI;IAEI,+BAA+D;IAA/D,8BAA+D;ElE60bvE;EkE/0bI;IAEI,yBAA+D;IAA/D,4BAA+D;ElEi1bvE;EkEn1bI;IAEI,+BAA+D;IAA/D,kCAA+D;ElEq1bvE;EkEv1bI;IAEI,8BAA+D;IAA/D,iCAA+D;ElEy1bvE;EkE31bI;IAEI,4BAA+D;IAA/D,+BAA+D;ElE61bvE;EkE/1bI;IAEI,8BAA+D;IAA/D,iCAA+D;ElEi2bvE;EkEn2bI;IAEI,4BAA+D;IAA/D,+BAA+D;ElEq2bvE;EkEv2bI;IAEI,4BAA+D;IAA/D,+BAA+D;ElEy2bvE;EkE32bI;IAEI,4BAA+D;IAA/D,+BAA+D;ElE62bvE;EkE/2bI;IAEI,8BAA+D;IAA/D,iCAA+D;ElEi3bvE;EkEn3bI;IAEI,6BAA+D;IAA/D,gCAA+D;ElEq3bvE;EkEv3bI;IAEI,+BAA+D;IAA/D,kCAA+D;ElEy3bvE;EkE33bI;IAEI,6BAA+D;IAA/D,gCAA+D;ElE63bvE;EkE/3bI;IAEI,yBAA+D;ElEg4bvE;EkEl4bI;IAEI,+BAA+D;ElEm4bvE;EkEr4bI;IAEI,8BAA+D;ElEs4bvE;EkEx4bI;IAEI,4BAA+D;ElEy4bvE;EkE34bI;IAEI,8BAA+D;ElE44bvE;EkE94bI;IAEI,4BAA+D;ElE+4bvE;EkEj5bI;IAEI,4BAA+D;ElEk5bvE;EkEp5bI;IAEI,4BAA+D;ElEq5bvE;EkEv5bI;IAEI,8BAA+D;ElEw5bvE;EkE15bI;IAEI,6BAA+D;ElE25bvE;EkE75bI;IAEI,+BAA+D;ElE85bvE;EkEh6bI;IAEI,6BAA+D;ElEi6bvE;EkEn6bI;IAEI,2BAA+D;ElEo6bvE;EkEt6bI;IAEI,iCAA+D;ElEu6bvE;EkEz6bI;IAEI,gCAA+D;ElE06bvE;EkE56bI;IAEI,8BAA+D;ElE66bvE;EkE/6bI;IAEI,gCAA+D;ElEg7bvE;EkEl7bI;IAEI,8BAA+D;ElEm7bvE;EkEr7bI;IAEI,8BAA+D;ElEs7bvE;EkEx7bI;IAEI,8BAA+D;ElEy7bvE;EkE37bI;IAEI,gCAA+D;ElE47bvE;EkE97bI;IAEI,+BAA+D;ElE+7bvE;EkEj8bI;IAEI,iCAA+D;ElEk8bvE;EkEp8bI;IAEI,+BAA+D;ElEq8bvE;EkEv8bI;IAEI,4BAA+D;ElEw8bvE;EkE18bI;IAEI,kCAA+D;ElE28bvE;EkE78bI;IAEI,iCAA+D;ElE88bvE;EkEh9bI;IAEI,+BAA+D;ElEi9bvE;EkEn9bI;IAEI,iCAA+D;ElEo9bvE;EkEt9bI;IAEI,+BAA+D;ElEu9bvE;EkEz9bI;IAEI,+BAA+D;ElE09bvE;EkE59bI;IAEI,+BAA+D;ElE69bvE;EkE/9bI;IAEI,iCAA+D;ElEg+bvE;EkEl+bI;IAEI,gCAA+D;ElEm+bvE;EkEr+bI;IAEI,kCAA+D;ElEs+bvE;EkEx+bI;IAEI,gCAA+D;ElEy+bvE;EkE3+bI;IAEI,0BAA+D;ElE4+bvE;EkE9+bI;IAEI,gCAA+D;ElE++bvE;EkEj/bI;IAEI,+BAA+D;ElEk/bvE;EkEp/bI;IAEI,6BAA+D;ElEq/bvE;EkEv/bI;IAEI,+BAA+D;ElEw/bvE;EkE1/bI;IAEI,6BAA+D;ElE2/bvE;EkE7/bI;IAEI,6BAA+D;ElE8/bvE;EkEhgcI;IAEI,6BAA+D;ElEigcvE;EkEngcI;IAEI,+BAA+D;ElEogcvE;EkEtgcI;IAEI,8BAA+D;ElEugcvE;EkEzgcI;IAEI,gCAA+D;ElE0gcvE;EkE5gcI;IAEI,8BAA+D;ElE6gcvE;EkE/gcI;IAEI,gCAA+D;ElEghcvE;EkElhcI;IAEI,gCAA+D;ElEmhcvE;EkErhcI;IAEI,0BAA+D;ElEshcvE;EkExhcI;IAEI,4BAA+D;ElEyhcvE;EkE3hcI;IAEI,6BAA+D;ElE4hcvE;EkE9hcI;IAEI,8BAA+D;ElE+hcvE;EkEjicI;IAEI,+BAA+D;ElEkicvE;EkEpicI;IAEI,gCAA+D;ElEqicvE;EkEvicI;IAEI,gCAA+D;ElEwicvE;EkE1icI;IAEI,gCAA+D;ElE2icvE;EkE7icI;IAEI,gCAA+D;ElE8icvE;EkEhjcI;IAEI,2BAA+D;ElEijcvE;EkEnjcI;IAEI,4BAA+D;ElEojcvE;EkEtjcI;IAEI,6BAA+D;ElEujcvE;EkEzjcI;IAEI,2CAA+D;IAA/D,yCAA+D;ElE2jcvE;EkE7jcI;IAEI,0CAA+D;IAA/D,wCAA+D;ElE+jcvE;EkEjkcI;IAEI,qCAA+D;IAA/D,mCAA+D;ElEmkcvE;EkErkcI;IAEI,yCAA+D;IAA/D,4CAA+D;ElEukcvE;EkEzkcI;IAEI,wCAA+D;IAA/D,2CAA+D;ElE2kcvE;EkE7kcI;IAEI,mCAA+D;IAA/D,sCAA+D;ElE+kcvE;EkEjlcI;IAEI,4CAA+D;IAA/D,8CAA+D;ElEmlcvE;EkErlcI;IAEI,2CAA+D;IAA/D,6CAA+D;ElEulcvE;EkEzlcI;IAEI,sCAA+D;IAA/D,wCAA+D;ElE2lcvE;EkE7lcI;IAEI,8CAA+D;IAA/D,2CAA+D;ElE+lcvE;EkEjmcI;IAEI,6CAA+D;IAA/D,0CAA+D;ElEmmcvE;EkErmcI;IAEI,wCAA+D;IAA/D,qCAA+D;ElEumcvE;EkEzmcI;IAEI,qBAA+D;ElE0mcvE;EkE5mcI;IAEI,wBAA+D;ElE6mcvE;EkE/mcI;IAEI,uBAA+D;ElEgncvE;EkElncI;IAEI,wBAA+D;ElEmncvE;EkErncI;IAEI,wBAA+D;ElEsncvE;EkExncI;IAEI,qBAA+D;ElEyncvE;EkE3ncI;IAEI,yBAA+D;ElE4ncvE;EkE9ncI;IAEI,yBAA+D;ElE+ncvE;EkEjocI;IAEI,yBAA+D;ElEkocvE;EkEpocI;IAEI,yBAA+D;ElEqocvE;EkEvocI;IAEI,yBAA+D;ElEwocvE;EkE1ocI;IAEI,sBAA+D;ElE2ocvE;EkE7ocI;IAEI,yBAA+D;ElE8ocvE;EkEhpcI;IAEI,sBAA+D;ElEipcvE;EkEnpcI;IAEI,yBAA+D;ElEopcvE;EkEtpcI;IAEI,yBAA+D;ElEupcvE;EkEzpcI;IAEI,yBAA+D;ElE0pcvE;EkE5pcI;IAEI,yBAA+D;ElE6pcvE;EkE/pcI;IAEI,yBAA+D;ElEgqcvE;EkElqcI;IAEI,yBAA+D;ElEmqcvE;EkErqcI;IAEI,yBAA+D;ElEsqcvE;EkExqcI;IAEI,yBAA+D;ElEyqcvE;EkE3qcI;IAEI,yBAA+D;ElE4qcvE;EkE9qcI;IAEI,yBAA+D;ElE+qcvE;EkEjrcI;IAEI,yBAA+D;ElEkrcvE;EkEprcI;IAEI,sBAA+D;ElEqrcvE;EkEvrcI;IAEI,2BAA+D;ElEwrcvE;EkE1rcI;IAEI,2BAA+D;ElE2rcvE;EkE7rcI;IAEI,2BAA+D;ElE8rcvE;EkEhscI;IAEI,4BAA+D;ElEiscvE;EkEnscI;IAEI,yCAA+D;IAA/D,0CAA+D;ElEqscvE;EkEvscI;IAEI,yBAA+D;IAA/D,0BAA+D;ElEyscvE;EkE3scI;IAEI,wCAA+D;IAA/D,2CAA+D;ElE6scvE;EkE/scI;IAEI,wBAA+D;IAA/D,2BAA+D;ElEitcvE;EkEntcI;IAEI,qCAA+D;ElEotcvE;EkEttcI;IAEI,yCAA+D;ElEutcvE;EkEztcI;IAEI,2CAA+D;ElE0tcvE;EkE5tcI;IAEI,0CAA+D;ElE6tcvE;EkE/tcI;IAEI,4CAA+D;ElEgucvE;EkElucI;IAEI,0CAA+D;IAA/D,2CAA+D;ElEoucvE;EkEtucI;IAEI,yCAA+D;IAA/D,4CAA+D;ElEwucvE;EkE1ucI;IAEI,2BAA+D;ElE2ucvE;AACF;;AchucI;EoDdE;IAEI,sBAA+D;ElEivcvE;EkEnvcI;IAEI,uBAA+D;ElEovcvE;EkEtvcI;IAEI,sBAA+D;ElEuvcvE;EkEzvcI;IAEI,0BAA+D;ElE0vcvE;EkE5vcI;IAEI,gCAA+D;ElE6vcvE;EkE/vcI;IAEI,yBAA+D;ElEgwcvE;EkElwcI;IAEI,wBAA+D;ElEmwcvE;EkErwcI;IAEI,yBAA+D;ElEswcvE;EkExwcI;IAEI,6BAA+D;ElEywcvE;EkE3wcI;IAEI,8BAA+D;ElE4wcvE;EkE9wcI;IAEI,+BAA+D;IAA/D,+BAA+D;IAA/D,wBAA+D;ElE+wcvE;EkEjxcI;IAEI,sCAA+D;IAA/D,sCAA+D;IAA/D,+BAA+D;ElEkxcvE;EkEpxcI;IAEI,wBAA+D;ElEqxcvE;EkEvxcI;IAEI,2BAA+D;ElEwxcvE;EkE1xcI;IAEI,6BAA+D;ElE2xcvE;EkE7xcI;IAEI,6BAA+D;ElE8xcvE;EkEhycI;IAEI,0BAA+D;ElEiycvE;EkEnycI;IAEI,mCAA+D;IAA/D,2BAA+D;ElEoycvE;EkEtycI;IAEI,+DAA+D;IAA/D,2DAA+D;IAA/D,uDAA+D;ElEuycvE;EkEzycI;IAEI,8CAA+D;IAA/D,0CAA+D;IAA/D,sCAA+D;ElE0ycvE;EkE5ycI;IAEI,8CAA+D;IAA/D,0CAA+D;IAA/D,sCAA+D;ElE6ycvE;EkE/ycI;IAEI,oCAA+D;ElEgzcvE;EkElzcI;IAEI,oBAA+D;ElEmzcvE;EkErzcI;IAEI,wCAA+D;ElEszcvE;EkExzcI;IAEI,wBAA+D;ElEyzcvE;EkE3zcI;IAEI,0CAA+D;ElE4zcvE;EkE9zcI;IAEI,0BAA+D;ElE+zcvE;EkEj0cI;IAEI,2CAA+D;ElEk0cvE;EkEp0cI;IAEI,2BAA+D;ElEq0cvE;EkEv0cI;IAEI,yCAA+D;ElEw0cvE;EkE10cI;IAEI,yBAA+D;ElE20cvE;EkE70cI;IAEI,qBAA+D;ElE80cvE;EkEh1cI;IAEI,qBAA+D;ElEi1cvE;EkEn1cI;IAEI,qBAA+D;ElEo1cvE;EkEt1cI;IAEI,sBAA+D;ElEu1cvE;EkEz1cI;IAEI,sBAA+D;ElE01cvE;EkE51cI;IAEI,sBAA+D;ElE61cvE;EkE/1cI;IAEI,sBAA+D;ElEg2cvE;EkEl2cI;IAEI,sBAA+D;ElEm2cvE;EkEr2cI;IAEI,uBAA+D;ElEs2cvE;EkEx2cI;IAEI,sBAA+D;ElEy2cvE;EkE32cI;IAEI,sBAA+D;ElE42cvE;EkE92cI;IAEI,sBAA+D;ElE+2cvE;EkEj3cI;IAEI,uBAA+D;ElEk3cvE;EkEp3cI;IAEI,uBAA+D;ElEq3cvE;EkEv3cI;IAEI,uBAA+D;ElEw3cvE;EkE13cI;IAEI,uBAA+D;ElE23cvE;EkE73cI;IAEI,uBAA+D;ElE83cvE;EkEh4cI;IAEI,wBAA+D;ElEi4cvE;EkEn4cI;IAEI,2BAA+D;ElEo4cvE;EkEt4cI;IAEI,2BAA+D;ElEu4cvE;EkEz4cI;IAEI,2BAA+D;ElE04cvE;EkE54cI;IAEI,4BAA+D;ElE64cvE;EkE/4cI;IAEI,8BAA+D;IAA/D,6BAA+D;IAA/D,yBAA+D;ElEg5cvE;EkEl5cI;IAEI,yCAA+D;IAA/D,wCAA+D;IAA/D,kCAA+D;IAA/D,8BAA+D;ElEm5cvE;EkEr5cI;IAEI,uCAA+D;IAA/D,wCAA+D;IAA/D,qCAA+D;IAA/D,iCAA+D;ElEs5cvE;EkEx5cI;IAEI,yCAA+D;IAA/D,yCAA+D;IAA/D,0CAA+D;IAA/D,sCAA+D;ElEy5cvE;EkE35cI;IAEI,uCAA+D;IAA/D,yCAA+D;IAA/D,6CAA+D;IAA/D,yCAA+D;ElE45cvE;EkE95cI;IAEI,8BAA+D;IAA/D,+BAA+D;IAA/D,uBAA+D;ElE+5cvE;EkEj6cI;IAEI,8BAA+D;IAA/D,+BAA+D;IAA/D,uBAA+D;ElEk6cvE;EkEp6cI;IAEI,+BAA+D;IAA/D,yBAA+D;ElEq6cvE;EkEv6cI;IAEI,+BAA+D;IAA/D,yBAA+D;ElEw6cvE;EkE16cI;IAEI,8BAA+D;IAA/D,0BAA+D;ElE26cvE;EkE76cI;IAEI,gCAA+D;IAA/D,4BAA+D;ElE86cvE;EkEh7cI;IAEI,sCAA+D;IAA/D,kCAA+D;ElEi7cvE;EkEn7cI;IAEI,iBAA+D;ElEo7cvE;EkEt7cI;IAEI,uBAA+D;ElEu7cvE;EkEz7cI;IAEI,sBAA+D;ElE07cvE;EkE57cI;IAEI,oBAA+D;ElE67cvE;EkE/7cI;IAEI,sBAA+D;ElEg8cvE;EkEl8cI;IAEI,oBAA+D;ElEm8cvE;EkEr8cI;IAEI,oBAA+D;ElEs8cvE;EkEx8cI;IAEI,oBAA+D;ElEy8cvE;EkE38cI;IAEI,sBAA+D;ElE48cvE;EkE98cI;IAEI,qBAA+D;ElE+8cvE;EkEj9cI;IAEI,uBAA+D;ElEk9cvE;EkEp9cI;IAEI,qBAA+D;ElEq9cvE;EkEv9cI;IAEI,kCAA+D;IAA/D,+BAA+D;IAA/D,sCAA+D;ElEw9cvE;EkE19cI;IAEI,gCAA+D;IAA/D,6BAA+D;IAA/D,oCAA+D;ElE29cvE;EkE79cI;IAEI,mCAA+D;IAA/D,gCAA+D;IAA/D,kCAA+D;ElE89cvE;EkEh+cI;IAEI,oCAA+D;IAA/D,iCAA+D;IAA/D,yCAA+D;ElEi+cvE;EkEn+cI;IAEI,oCAA+D;IAA/D,wCAA+D;ElEo+cvE;EkEt+cI;IAEI,yCAA+D;IAA/D,sCAA+D;IAA/D,wCAA+D;ElEu+cvE;EkEz+cI;IAEI,mCAA+D;IAA/D,gCAA+D;IAA/D,kCAA+D;ElE0+cvE;EkE5+cI;IAEI,iCAA+D;IAA/D,8BAA+D;IAA/D,gCAA+D;ElE6+cvE;EkE/+cI;IAEI,oCAA+D;IAA/D,iCAA+D;IAA/D,8BAA+D;ElEg/cvE;EkEl/cI;IAEI,sCAA+D;IAA/D,mCAA+D;IAA/D,gCAA+D;ElEm/cvE;EkEr/cI;IAEI,qCAA+D;IAA/D,kCAA+D;IAA/D,+BAA+D;ElEs/cvE;EkEx/cI;IAEI,oCAA+D;IAA/D,oCAA+D;ElEy/cvE;EkE3/cI;IAEI,kCAA+D;IAA/D,kCAA+D;ElE4/cvE;EkE9/cI;IAEI,qCAA+D;IAA/D,gCAA+D;ElE+/cvE;EkEjgdI;IAEI,sCAA+D;IAA/D,uCAA+D;ElEkgdvE;EkEpgdI;IAEI,yCAA+D;IAA/D,sCAA+D;ElEqgdvE;EkEvgdI;IAEI,sCAA+D;IAA/D,iCAA+D;ElEwgdvE;EkE1gdI;IAEI,oCAA+D;IAA/D,2BAA+D;ElE2gdvE;EkE7gdI;IAEI,qCAA+D;IAA/D,iCAA+D;ElE8gdvE;EkEhhdI;IAEI,mCAA+D;IAA/D,+BAA+D;ElEihdvE;EkEnhdI;IAEI,sCAA+D;IAA/D,6BAA+D;ElEohdvE;EkEthdI;IAEI,wCAA+D;IAA/D,+BAA+D;ElEuhdvE;EkEzhdI;IAEI,uCAA+D;IAA/D,8BAA+D;ElE0hdvE;EkE5hdI;IAEI,uCAA+D;IAA/D,6BAA+D;IAA/D,oBAA+D;ElE6hdvE;EkE/hdI;IAEI,uCAA+D;IAA/D,4BAA+D;IAA/D,mBAA+D;ElEgidvE;EkElidI;IAEI,uCAA+D;IAA/D,4BAA+D;IAA/D,mBAA+D;ElEmidvE;EkEridI;IAEI,uCAA+D;IAA/D,4BAA+D;IAA/D,mBAA+D;ElEsidvE;EkExidI;IAEI,uCAA+D;IAA/D,4BAA+D;IAA/D,mBAA+D;ElEyidvE;EkE3idI;IAEI,uCAA+D;IAA/D,4BAA+D;IAA/D,mBAA+D;ElE4idvE;EkE9idI;IAEI,uCAA+D;IAA/D,4BAA+D;IAA/D,mBAA+D;ElE+idvE;EkEjjdI;IAEI,uCAA+D;IAA/D,4BAA+D;IAA/D,mBAA+D;ElEkjdvE;EkEpjdI;IAEI,oBAA+D;ElEqjdvE;EkEvjdI;IAEI,0BAA+D;ElEwjdvE;EkE1jdI;IAEI,yBAA+D;ElE2jdvE;EkE7jdI;IAEI,uBAA+D;ElE8jdvE;EkEhkdI;IAEI,yBAA+D;ElEikdvE;EkEnkdI;IAEI,uBAA+D;ElEokdvE;EkEtkdI;IAEI,uBAA+D;ElEukdvE;EkEzkdI;IAEI,uBAA+D;ElE0kdvE;EkE5kdI;IAEI,yBAA+D;ElE6kdvE;EkE/kdI;IAEI,wBAA+D;ElEgldvE;EkElldI;IAEI,0BAA+D;ElEmldvE;EkErldI;IAEI,wBAA+D;ElEsldvE;EkExldI;IAEI,uBAA+D;ElEyldvE;EkE3ldI;IAEI,0BAA+D;IAA/D,yBAA+D;ElE6ldvE;EkE/ldI;IAEI,gCAA+D;IAA/D,+BAA+D;ElEimdvE;EkEnmdI;IAEI,+BAA+D;IAA/D,8BAA+D;ElEqmdvE;EkEvmdI;IAEI,6BAA+D;IAA/D,4BAA+D;ElEymdvE;EkE3mdI;IAEI,+BAA+D;IAA/D,8BAA+D;ElE6mdvE;EkE/mdI;IAEI,6BAA+D;IAA/D,4BAA+D;ElEindvE;EkEnndI;IAEI,6BAA+D;IAA/D,4BAA+D;ElEqndvE;EkEvndI;IAEI,6BAA+D;IAA/D,4BAA+D;ElEyndvE;EkE3ndI;IAEI,+BAA+D;IAA/D,8BAA+D;ElE6ndvE;EkE/ndI;IAEI,8BAA+D;IAA/D,6BAA+D;ElEiodvE;EkEnodI;IAEI,gCAA+D;IAA/D,+BAA+D;ElEqodvE;EkEvodI;IAEI,8BAA+D;IAA/D,6BAA+D;ElEyodvE;EkE3odI;IAEI,6BAA+D;IAA/D,4BAA+D;ElE6odvE;EkE/odI;IAEI,wBAA+D;IAA/D,2BAA+D;ElEipdvE;EkEnpdI;IAEI,8BAA+D;IAA/D,iCAA+D;ElEqpdvE;EkEvpdI;IAEI,6BAA+D;IAA/D,gCAA+D;ElEypdvE;EkE3pdI;IAEI,2BAA+D;IAA/D,8BAA+D;ElE6pdvE;EkE/pdI;IAEI,6BAA+D;IAA/D,gCAA+D;ElEiqdvE;EkEnqdI;IAEI,2BAA+D;IAA/D,8BAA+D;ElEqqdvE;EkEvqdI;IAEI,2BAA+D;IAA/D,8BAA+D;ElEyqdvE;EkE3qdI;IAEI,2BAA+D;IAA/D,8BAA+D;ElE6qdvE;EkE/qdI;IAEI,6BAA+D;IAA/D,gCAA+D;ElEirdvE;EkEnrdI;IAEI,4BAA+D;IAA/D,+BAA+D;ElEqrdvE;EkEvrdI;IAEI,8BAA+D;IAA/D,iCAA+D;ElEyrdvE;EkE3rdI;IAEI,4BAA+D;IAA/D,+BAA+D;ElE6rdvE;EkE/rdI;IAEI,2BAA+D;IAA/D,8BAA+D;ElEisdvE;EkEnsdI;IAEI,wBAA+D;ElEosdvE;EkEtsdI;IAEI,8BAA+D;ElEusdvE;EkEzsdI;IAEI,6BAA+D;ElE0sdvE;EkE5sdI;IAEI,2BAA+D;ElE6sdvE;EkE/sdI;IAEI,6BAA+D;ElEgtdvE;EkEltdI;IAEI,2BAA+D;ElEmtdvE;EkErtdI;IAEI,2BAA+D;ElEstdvE;EkExtdI;IAEI,2BAA+D;ElEytdvE;EkE3tdI;IAEI,6BAA+D;ElE4tdvE;EkE9tdI;IAEI,4BAA+D;ElE+tdvE;EkEjudI;IAEI,8BAA+D;ElEkudvE;EkEpudI;IAEI,4BAA+D;ElEqudvE;EkEvudI;IAEI,2BAA+D;ElEwudvE;EkE1udI;IAEI,0BAA+D;ElE2udvE;EkE7udI;IAEI,gCAA+D;ElE8udvE;EkEhvdI;IAEI,+BAA+D;ElEivdvE;EkEnvdI;IAEI,6BAA+D;ElEovdvE;EkEtvdI;IAEI,+BAA+D;ElEuvdvE;EkEzvdI;IAEI,6BAA+D;ElE0vdvE;EkE5vdI;IAEI,6BAA+D;ElE6vdvE;EkE/vdI;IAEI,6BAA+D;ElEgwdvE;EkElwdI;IAEI,+BAA+D;ElEmwdvE;EkErwdI;IAEI,8BAA+D;ElEswdvE;EkExwdI;IAEI,gCAA+D;ElEywdvE;EkE3wdI;IAEI,8BAA+D;ElE4wdvE;EkE9wdI;IAEI,6BAA+D;ElE+wdvE;EkEjxdI;IAEI,2BAA+D;ElEkxdvE;EkEpxdI;IAEI,iCAA+D;ElEqxdvE;EkEvxdI;IAEI,gCAA+D;ElEwxdvE;EkE1xdI;IAEI,8BAA+D;ElE2xdvE;EkE7xdI;IAEI,gCAA+D;ElE8xdvE;EkEhydI;IAEI,8BAA+D;ElEiydvE;EkEnydI;IAEI,8BAA+D;ElEoydvE;EkEtydI;IAEI,8BAA+D;ElEuydvE;EkEzydI;IAEI,gCAA+D;ElE0ydvE;EkE5ydI;IAEI,+BAA+D;ElE6ydvE;EkE/ydI;IAEI,iCAA+D;ElEgzdvE;EkElzdI;IAEI,+BAA+D;ElEmzdvE;EkErzdI;IAEI,8BAA+D;ElEszdvE;EkExzdI;IAEI,yBAA+D;ElEyzdvE;EkE3zdI;IAEI,+BAA+D;ElE4zdvE;EkE9zdI;IAEI,8BAA+D;ElE+zdvE;EkEj0dI;IAEI,4BAA+D;ElEk0dvE;EkEp0dI;IAEI,8BAA+D;ElEq0dvE;EkEv0dI;IAEI,4BAA+D;ElEw0dvE;EkE10dI;IAEI,4BAA+D;ElE20dvE;EkE70dI;IAEI,4BAA+D;ElE80dvE;EkEh1dI;IAEI,8BAA+D;ElEi1dvE;EkEn1dI;IAEI,6BAA+D;ElEo1dvE;EkEt1dI;IAEI,+BAA+D;ElEu1dvE;EkEz1dI;IAEI,6BAA+D;ElE01dvE;EkE51dI;IAEI,4BAA+D;ElE61dvE;EkE/1dI;IAEI,2BAA+D;ElEg2dvE;EkEl2dI;IAEI,0BAA+D;ElEm2dvE;EkEr2dI;IAEI,wBAA+D;ElEs2dvE;EkEx2dI;IAEI,0BAA+D;ElEy2dvE;EkE32dI;IAEI,wBAA+D;ElE42dvE;EkE92dI;IAEI,wBAA+D;ElE+2dvE;EkEj3dI;IAEI,wBAA+D;ElEk3dvE;EkEp3dI;IAEI,0BAA+D;ElEq3dvE;EkEv3dI;IAEI,yBAA+D;ElEw3dvE;EkE13dI;IAEI,2BAA+D;ElE23dvE;EkE73dI;IAEI,yBAA+D;ElE83dvE;EkEh4dI;IAEI,iCAA+D;IAA/D,gCAA+D;ElEk4dvE;EkEp4dI;IAEI,gCAA+D;IAA/D,+BAA+D;ElEs4dvE;EkEx4dI;IAEI,8BAA+D;IAA/D,6BAA+D;ElE04dvE;EkE54dI;IAEI,gCAA+D;IAA/D,+BAA+D;ElE84dvE;EkEh5dI;IAEI,8BAA+D;IAA/D,6BAA+D;ElEk5dvE;EkEp5dI;IAEI,8BAA+D;IAA/D,6BAA+D;ElEs5dvE;EkEx5dI;IAEI,8BAA+D;IAA/D,6BAA+D;ElE05dvE;EkE55dI;IAEI,gCAA+D;IAA/D,+BAA+D;ElE85dvE;EkEh6dI;IAEI,+BAA+D;IAA/D,8BAA+D;ElEk6dvE;EkEp6dI;IAEI,iCAA+D;IAA/D,gCAA+D;ElEs6dvE;EkEx6dI;IAEI,+BAA+D;IAA/D,8BAA+D;ElE06dvE;EkE56dI;IAEI,+BAA+D;IAA/D,kCAA+D;ElE86dvE;EkEh7dI;IAEI,8BAA+D;IAA/D,iCAA+D;ElEk7dvE;EkEp7dI;IAEI,4BAA+D;IAA/D,+BAA+D;ElEs7dvE;EkEx7dI;IAEI,8BAA+D;IAA/D,iCAA+D;ElE07dvE;EkE57dI;IAEI,4BAA+D;IAA/D,+BAA+D;ElE87dvE;EkEh8dI;IAEI,4BAA+D;IAA/D,+BAA+D;ElEk8dvE;EkEp8dI;IAEI,4BAA+D;IAA/D,+BAA+D;ElEs8dvE;EkEx8dI;IAEI,8BAA+D;IAA/D,iCAA+D;ElE08dvE;EkE58dI;IAEI,6BAA+D;IAA/D,gCAA+D;ElE88dvE;EkEh9dI;IAEI,+BAA+D;IAA/D,kCAA+D;ElEk9dvE;EkEp9dI;IAEI,6BAA+D;IAA/D,gCAA+D;ElEs9dvE;EkEx9dI;IAEI,+BAA+D;ElEy9dvE;EkE39dI;IAEI,8BAA+D;ElE49dvE;EkE99dI;IAEI,4BAA+D;ElE+9dvE;EkEj+dI;IAEI,8BAA+D;ElEk+dvE;EkEp+dI;IAEI,4BAA+D;ElEq+dvE;EkEv+dI;IAEI,4BAA+D;ElEw+dvE;EkE1+dI;IAEI,4BAA+D;ElE2+dvE;EkE7+dI;IAEI,8BAA+D;ElE8+dvE;EkEh/dI;IAEI,6BAA+D;ElEi/dvE;EkEn/dI;IAEI,+BAA+D;ElEo/dvE;EkEt/dI;IAEI,6BAA+D;ElEu/dvE;EkEz/dI;IAEI,iCAA+D;ElE0/dvE;EkE5/dI;IAEI,gCAA+D;ElE6/dvE;EkE//dI;IAEI,8BAA+D;ElEggevE;EkElgeI;IAEI,gCAA+D;ElEmgevE;EkErgeI;IAEI,8BAA+D;ElEsgevE;EkExgeI;IAEI,8BAA+D;ElEygevE;EkE3geI;IAEI,8BAA+D;ElE4gevE;EkE9geI;IAEI,gCAA+D;ElE+gevE;EkEjheI;IAEI,+BAA+D;ElEkhevE;EkEpheI;IAEI,iCAA+D;ElEqhevE;EkEvheI;IAEI,+BAA+D;ElEwhevE;EkE1heI;IAEI,kCAA+D;ElE2hevE;EkE7heI;IAEI,iCAA+D;ElE8hevE;EkEhieI;IAEI,+BAA+D;ElEiievE;EkEnieI;IAEI,iCAA+D;ElEoievE;EkEtieI;IAEI,+BAA+D;ElEuievE;EkEzieI;IAEI,+BAA+D;ElE0ievE;EkE5ieI;IAEI,+BAA+D;ElE6ievE;EkE/ieI;IAEI,iCAA+D;ElEgjevE;EkEljeI;IAEI,gCAA+D;ElEmjevE;EkErjeI;IAEI,kCAA+D;ElEsjevE;EkExjeI;IAEI,gCAA+D;ElEyjevE;EkE3jeI;IAEI,gCAA+D;ElE4jevE;EkE9jeI;IAEI,+BAA+D;ElE+jevE;EkEjkeI;IAEI,6BAA+D;ElEkkevE;EkEpkeI;IAEI,+BAA+D;ElEqkevE;EkEvkeI;IAEI,6BAA+D;ElEwkevE;EkE1keI;IAEI,6BAA+D;ElE2kevE;EkE7keI;IAEI,6BAA+D;ElE8kevE;EkEhleI;IAEI,+BAA+D;ElEilevE;EkEnleI;IAEI,8BAA+D;ElEolevE;EkEtleI;IAEI,gCAA+D;ElEulevE;EkEzleI;IAEI,8BAA+D;ElE0levE;EkE5leI;IAEI,qBAA+D;ElE6levE;EkE/leI;IAEI,2BAA+D;ElEgmevE;EkElmeI;IAEI,0BAA+D;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","file":"theme-rtl.css","sourcesContent":["/* -------------------------------------------------------------------------- */\r\n/* Theme */\r\n/* -------------------------------------------------------------------------- */\r\n\r\n@import \"../../node_modules/bootstrap/scss/_functions.scss\";\r\n@import \"theme/functions\";\r\n\r\n@import \"../../node_modules/bootstrap/scss/mixins\";\r\n@import \"theme/mixins\";\r\n\r\n@import \"user-variables\";\r\n@import \"theme/variables\";\r\n@import 'theme/_utilities.scss';\r\n@import \"../../node_modules/bootstrap/scss/variables\";\r\n\r\n/*-----------------------------------------------\r\n| Bootstrap Styles\r\n-----------------------------------------------*/\r\n@import \"bootstrap\";\r\n\r\n/*-----------------------------------------------\r\n| Theme Styles\r\n-----------------------------------------------*/\r\n@import \"theme/theme\";\r\n\r\n/*-----------------------------------------------\r\n| User Styles\r\n-----------------------------------------------*/\r\n@import \"user\";\r\n","/* prettier-ignore */\r\n\r\n// Grid containers\r\n//\r\n// Define the maximum width of `.container` for different screen sizes.\r\n// scss-docs-start container-max-widths\r\n$container-max-widths: () !default;\r\n$container-max-widths: map-merge(\r\n (\r\n sm: 540px,\r\n md: 720px,\r\n lg: 960px,\r\n xl: 1140px,\r\n xxl: 1480px,\r\n ),\r\n $container-max-widths\r\n);\r\n\r\n$grid-breakpoints: () !default;\r\n$grid-breakpoints: map-merge(\r\n (\r\n xs: 0,\r\n sm: 576px,\r\n md: 768px,\r\n lg: 992px,\r\n xl: 1200px,\r\n xxl: 1540px,\r\n ),\r\n $grid-breakpoints\r\n);\r\n\r\n//*-----------------------------------------------\r\n//| Gutter\r\n//-----------------------------------------------*/\r\n$grid-gutter-width: 2rem !default;\r\n\r\n//*-----------------------------------------------\r\n//| Color System\r\n//-----------------------------------------------*/\r\n\r\n$white: #fff !default;\r\n$gray-100:#F5F7FA !default;\r\n$gray-200: #EBEBED !default;\r\n$gray-300: #E1E0E4 !default;\r\n$gray-400: #D7D6DA !default;\r\n$gray-500: #CDCCD1 !default;\r\n$gray-600: #C3C1C8 !default;\r\n$gray-700: #7D7987 !default;\r\n$gray-800: #616368 !default;\r\n$gray-900: #4F5665 !default;\r\n$gray-1000: #112D58 !default;\r\n$gray-1100: #1F1534 !default;\r\n$black: #000 !default;\r\n\r\n$grays: () !default;\r\n$grays: map-merge(\r\n (\r\n 'black': $black,\r\n '100': $gray-100,\r\n '200': $gray-200,\r\n '300': $gray-300,\r\n '400': $gray-400,\r\n '500': $gray-500,\r\n '600': $gray-600,\r\n '700': $gray-700,\r\n '800': $gray-800,\r\n '900': $gray-900,\r\n '1000': $gray-1000,\r\n '1100': $gray-1100,\r\n 'white': $white,\r\n ),\r\n $grays\r\n);\r\n\r\n//*-----------------------------------------------\r\n//| Solid Colors\r\n//-----------------------------------------------*/\r\n$blue: #1F3A63 !default;\r\n$indigo: #53ACF8 !default;\r\n$purple: #ad45f6 !default;\r\n$pink: #f6458e !default;\r\n$red: #F55767 !default;\r\n$orange: #f6d845 !default;\r\n$yellow: #FFA024 !default;\r\n$green: #66BB6A !default;\r\n$teal: #299EF3 !default;\r\n$cyan: #3EB8F4 !default;\r\n$light: #F9FAFD !default;\r\n\r\n//*-----------------------------------------------\r\n//| Theme Colors\r\n//-----------------------------------------------*/\r\n$primary: $blue !default;\r\n$secondary: $gray-900 !default;\r\n$success: $green !default;\r\n$info: $cyan !default;\r\n$warning: $yellow !default;\r\n$danger: $red !default;\r\n$light: $light !default;\r\n$dark: $gray-1100 !default;\r\n\r\n$theme-colors: () !default;\r\n$theme-colors: map-merge(\r\n (\r\n 'primary': $primary,\r\n 'secondary': $secondary,\r\n 'success': $success,\r\n 'info': $info,\r\n 'warning': $warning,\r\n 'danger': $danger,\r\n 'light': $light,\r\n 'dark': $dark,\r\n ),\r\n $theme-colors\r\n);\r\n$theme-color-interval: 8% !default;\r\n\r\n$theme-colors-soft: () !default;\r\n$theme-colors-soft: map-merge(\r\n (\r\n 'primary': tint-color($primary, 90),\r\n 'secondary': tint-color($secondary, 90),\r\n 'success': tint-color($success, 90),\r\n 'info': tint-color($info, 90),\r\n 'warning': tint-color($warning, 90),\r\n 'danger': tint-color($danger, 90),\r\n 'light': tint-color($light, 90),\r\n 'dark': tint-color($dark, 90),\r\n ),\r\n $theme-colors-soft\r\n);\r\n\r\n// Customize the light and dark text colors for use in our color contrast function.\r\n$color-contrast-dark: $gray-800 !default;\r\n\r\n// Min contrast ratio\r\n$min-contrast-ratio: 2 !default;\r\n\r\n//*-----------------------------------------------\r\n//| Brand colors\r\n//-----------------------------------------------*/\r\n$linkedin: #0077b5 !default;\r\n$facebook: #3c5a99 !default;\r\n$twitter: #1da1f2 !default;\r\n$google-plus: #dd4b39 !default;\r\n$github: #333 !default;\r\n$youtube: #ff0000 !default;\r\n$theme: #0BAC56 !default;\r\n\r\n$brand-colors: () !default;\r\n$brand-colors: map-merge(\r\n (\r\n 'facebook': $facebook,\r\n 'google-plus': $google-plus,\r\n 'twitter': $twitter,\r\n 'linkedin': $linkedin,\r\n 'youtube': $youtube,\r\n 'github': $github,\r\n 'theme': $theme,\r\n ),\r\n $brand-colors\r\n);\r\n\r\n//*-----------------------------------------------\r\n//| Border\r\n//-----------------------------------------------*/\r\n$border-color: $gray-300 !default;\r\n$border-width: 1px !default;\r\n\r\n// Options\r\n//\r\n// Quickly modify global styling by enabling or disabling optional features.\r\n\r\n$enable-shadows: false !default;\r\n$enable-gradients: false !default;\r\n$enable-negative-margins: true !default;\r\n\r\n\r\n\r\n//*-----------------------------------------------\r\n//| Spacing\r\n//----------------------------------------------\r\n\r\n$spacer: 1rem !default;\r\n$spacers: () !default;\r\n\r\n$spacers: map-merge(\r\n (\r\n 0: 0,\r\n 1: $spacer * 0.25,\r\n 2: $spacer * 0.5,\r\n 3: $spacer,\r\n 4: $spacer * 1.8,\r\n 5: $spacer * 3,\r\n 6: $spacer * 4,\r\n 7: $spacer * 5,\r\n 8: $spacer * 7.5,\r\n 9: $spacer * 10,\r\n 10: $spacer * 12.5,\r\n 11: $spacer * 15\r\n ),\r\n $spacers\r\n);\r\n\r\n//*-----------------------------------------------\r\n//| Body\r\n//-----------------------------------------------*/\r\n$body-bg: $white !default;\r\n$body-color: $gray-700 !default;\r\n\r\n//*-----------------------------------------------\r\n//| Link\r\n//-----------------------------------------------*/\r\n$link-decoration: none !default;\r\n$link-hover-decoration: underline !default;\r\n\r\n//*-----------------------------------------------\r\n//| Components\r\n//-----------------------------------------------*/\r\n$border-radius: 0.25rem !default;\r\n$border-radius-sm: 0.3rem !default;\r\n$border-radius-lg: .5rem !default;\r\n\r\n//*-----------------------------------------------\r\n//| Fonts Families\r\n//-----------------------------------------------*/\r\n$font-family-sans-serif: 'Chivo', 'Open Sans', -apple-system, BlinkMacSystemFont,\r\n 'Segoe UI', 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji',\r\n 'Segoe UI Emoji', 'Segoe UI Symbol' !default;\r\n$font-family-monospace: 'SFMono-Regular', Menlo, Monaco, Consolas,\r\n 'Liberation Mono', 'Courier New', monospace !default; \r\n$font-family-base: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI',\r\n 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji',\r\n 'Segoe UI Emoji', 'Segoe UI Symbol' !default;\r\n\r\n//*-----------------------------------------------\r\n//| Fonts\r\n//-----------------------------------------------*/\r\n$type-scale: 1.2;\r\n$font-size-base: 1rem !default;\r\n$font-sizes: () !default;\r\n$font-sizes: map-merge(\r\n (\r\n '-2': 1 / pow($type-scale, 2) * $font-size-base,\r\n '-1': 1 / $type-scale * $font-size-base,\r\n 0: $font-size-base,\r\n 1: pow($type-scale, 1) * $font-size-base,\r\n 2: pow($type-scale, 2) * $font-size-base,\r\n 3: pow($type-scale, 3) * $font-size-base,\r\n 4: pow($type-scale, 4) * $font-size-base,\r\n 5: pow($type-scale, 5) * $font-size-base,\r\n 6: pow($type-scale, 6) * $font-size-base,\r\n 7: pow($type-scale, 7) * $font-size-base,\r\n 8: pow($type-scale, 8) * $font-size-base,\r\n ),\r\n $font-sizes\r\n);\r\n\r\n$font-size-sm: $font-size-base * 0.875 !default;\r\n$font-size-lg: $font-size-base * 1.2 !default;\r\n$font-weight-thin: 100 !default;\r\n$font-weight-lighter: 200 !default;\r\n$font-weight-light: 300 !default;\r\n$font-weight-normal: 400 !default;\r\n$font-weight-medium: 500 !default;\r\n$font-weight-semi-bold: 600 !default;\r\n$font-weight-bold: 700 !default;\r\n$font-weight-bolder: 800 !default;\r\n$font-weight-black: 900 !default;\r\n\r\n$h1-font-size: map_get($font-sizes, 5) !default;\r\n$h2-font-size: map_get($font-sizes, 4) !default;\r\n$h3-font-size: map_get($font-sizes, 3) !default;\r\n$h4-font-size: map_get($font-sizes, 2) !default;\r\n$h5-font-size: map_get($font-sizes, 1) !default;\r\n$h6-font-size: map_get($font-sizes, '-1') !default;\r\n\r\n$headings-font-family: $font-family-sans-serif !default;\r\n$headings-font-weight: $font-weight-medium !default;\r\n$headings-color: $gray-1000 !default;\r\n\r\n// scss-docs-start display-headings\r\n$display-font-sizes: () !default;\r\n$display-font-sizes: map-merge(\r\n (\r\n 1: map_get($font-sizes, 8),\r\n 2: map_get($font-sizes, 7),\r\n 3: map_get($font-sizes, 6),\r\n 4: map_get($font-sizes, 5),\r\n 5: map_get($font-sizes, 4),\r\n 6: map_get($font-sizes, 3),\r\n ),\r\n $display-font-sizes\r\n);\r\n\r\n$display-font-weight: $font-weight-black !default;\r\n$display-line-height: 1 !default;\r\n// scss-docs-end display-headings\r\n\r\n$lead-font-size: $font-size-lg !default;\r\n$lead-font-weight: $font-weight-normal !default;\r\n\r\n$small-font-size: 75% !default;\r\n\r\n$text-muted: $gray-500 !default;\r\n\r\n$blockquote-font-size: $font-size-lg !default;\r\n\r\n\r\n\r\n//*-----------------------------------------------\r\n//| Buttons and Forms\r\n//-----------------------------------------------*/\r\n\r\n$input-btn-padding-y-sm: .10rem !default;\r\n$input-btn-padding-x-sm: 0.5rem !default;\r\n\r\n$input-btn-padding-y-lg: .6rem !default;\r\n$input-btn-padding-x-lg: 1.7rem !default;\r\n$input-btn-font-size-lg: $font-size-base !default;\r\n\r\n$btn-reveal-hover-shadow: 0 0 0 1px rgba(43, 45, 80, 0.1),\r\n 0 2px 5px 0 rgba(43, 45, 80, 0.08), 0 1px 1.5px 0 rgba($black, 0.07),\r\n 0 1px 2px 0 rgba($black, 0.08) !default;\r\n$btn-font-weight: $font-weight-medium !default;\r\n$btn-focus-width: 0 !default;\r\n\r\n// Allows for customizing button radius independently from global border radius\r\n$btn-border-radius: 0.313rem !default;\r\n\r\n\r\n//*-----------------------------------------------\r\n//| Navigation\r\n//-----------------------------------------------*/\r\n$navbar-font-size: $font-size-base * 0.8 !default;\r\n\r\n$navbar-light-color: rgba($black, 0.95) !default;\r\n$navbar-light-hover-color: rgba($black, 0.95) !default;\r\n$navbar-light-active-color: $dark !default;\r\n$navbar-light-disabled-color: rgba($black, 0.25) !default;\r\n\r\n$navbar-dark-color: rgba($white, .7) !default;\r\n$navbar-dark-hover-color: rgba($white, 0.9) !default;\r\n\r\n$navbar-padding-y: map_get($spacers, 2) !default;\r\n$navbar-padding-x: $spacer !default;\r\n$top-nav-height: 4.3125rem !default;\r\n$standard-nav-height: 3.5625rem !default;\r\n\r\n$navbar-light-toggler-icon-bg: str-replace(\r\n url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M0 6h30M0 14h30M0 22h30'/%3E%3C/svg%3E\"),\r\n '#',\r\n '%23'\r\n) !default;\r\n\r\n\r\n\r\n// /*-----------------------------------------------\r\n//| Navbar Brand\r\n//-----------------------------------------------*/\r\n$navbar-brand-font-size: map_get($font-sizes, 3) !default;\r\n$navbar-brand-font-weight: $font-weight-bolder !default;\r\n\r\n//*-----------------------------------------------\r\n//| Viewport Heights & Widths\r\n//----------------------------------------------\r\n\r\n$viewport-heights: () !default;\r\n$viewport-heights: map-merge(\r\n (\r\n 25: 25vh,\r\n 50: 50vh,\r\n 75: 75vh,\r\n 100: 100vh,\r\n ),\r\n $viewport-heights\r\n);\r\n\r\n$viewport-widths: () !default;\r\n$viewport-widths: map-merge(\r\n (\r\n 25: 25vw,\r\n 50: 50vw,\r\n 75: 75vw,\r\n 100: 100vw,\r\n ),\r\n $viewport-widths\r\n);\r\n\r\n$sizes: () !default;\r\n$sizes: map-merge(\r\n (\r\n 25: 25%,\r\n 50: 50%,\r\n 75: 75%,\r\n 100: 100%,\r\n auto: auto,\r\n ),\r\n $sizes\r\n);\r\n\r\n// /*-----------------------------------------------\r\n//| Spinner\r\n//-----------------------------------------------*/\r\n$hr-color: $border-color !default;\r\n$hr-opacity: 1 !default;\r\n\r\n// /*-----------------------------------------------\r\n//| Spinner\r\n//-----------------------------------------------*/\r\n\r\n$card-border-width: 0 !default;\r\n\r\n//*-----------------------------------------------\r\n//| carousel\r\n//-----------------------------------------------*/\r\n$carousel-control-opacity: 0.9 !default;\r\n$carousel-control-hover-opacity: 0.9 !default;\r\n$carousel-control-color: $success !default;\r\n\r\n$carousel-indicator-active-bg: $primary !default;\r\n$carousel-indicator-width: 9px !default;\r\n$carousel-indicator-height: 9px !default;\r\n$carousel-indicator-hit-area-height : 0 !default;\r\n\r\n\r\n$carousel-control-prev-icon-bg: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='#{$carousel-control-color}' class='bi bi-arrow-left-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.5 7.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5z'/%3E%3C/svg%3E\") !default;\r\n$carousel-control-next-icon-bg: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='#{$carousel-control-color}' class='bi bi-arrow-right-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z'/%3E%3C/svg%3E\") !default;\r\n\r\n\r\n// Accordion\r\n$accordion-padding-y: 1.5rem !default;\r\n$accordion-padding-x: 2.6rem !default;\r\n$accordion-bg: $gray-100 !default;\r\n$accordion-border-width: $border-width !default;\r\n$accordion-border-color: rgba($white, .125) !default;\r\n$accordion-border-radius: 0 !default;\r\n\r\n$accordion-button-active-bg: $gray-100 !default;\r\n$accordion-button-active-color: $dark !default;\r\n\r\n$accordion-button-focus-border-color: $white !default;\r\n$accordion-button-focus-box-shadow: $light !default;\r\n\r\n$accordion-icon-width: 1.8rem !default;\r\n$accordion-icon-active-color: $dark !default;\r\n\r\n$accordion-button-icon: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E\") !default;\r\n$accordion-button-active-icon: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E\") !default;","/* -------------------------------------------------------------------------- */\r\n/* Utilities */\r\n/* -------------------------------------------------------------------------- */\r\n\r\n$grays-with-brand-color: map-merge($brand-colors, $grays) !default;\r\n$theme-all-colors: map_merge($grays-with-brand-color, $theme-colors) !default;\r\n$utilities: () !default;\r\n$utilities: map_merge(\r\n (\r\n \"opacity\": (\r\n property: opacity,\r\n responsive: true,\r\n values: (\r\n 0: 0,\r\n 25: 0.25,\r\n 50: 0.5,\r\n 75: 0.75,\r\n 85: 0.85,\r\n 100: 1,\r\n ),\r\n ),\r\n \"text\": (\r\n property: color,\r\n responsive: true,\r\n class: text,\r\n values: map_merge($brand-colors, $grays),\r\n ),\r\n \"font-weight\": (\r\n property: font-weight,\r\n class: fw,\r\n values: (\r\n thin: $font-weight-thin,\r\n lighter: $font-weight-lighter,\r\n light: $font-weight-light,\r\n normal: $font-weight-normal,\r\n medium: $font-weight-medium,\r\n semi-bold: $font-weight-semi-bold,\r\n bold: $font-weight-bold,\r\n bolder: $font-weight-bolder,\r\n 'black': $font-weight-black,\r\n ),\r\n ),\r\n \"font-size\": (\r\n rfs: false,\r\n property: font-size,\r\n class: fs,\r\n responsive: true,\r\n values: $font-sizes,\r\n ),\r\n \"position\": (\r\n property: position,\r\n responsive: true,\r\n values: (\r\n static,\r\n absolute,\r\n relative,\r\n fixed,\r\n sticky,\r\n ),\r\n ),\r\n \"height\": (\r\n property: height,\r\n class: h,\r\n responsive: true,\r\n values: $sizes,\r\n ),\r\n \"width\": (\r\n property: width,\r\n responsive: true,\r\n class: w,\r\n values: (\r\n 25: 25%,\r\n 50: 50%,\r\n 75: 75%,\r\n 100: 100%,\r\n auto: auto\r\n )\r\n ),\r\n \"min-viewport-height\": (\r\n property: min-height,\r\n class: min-vh,\r\n responsive: true,\r\n values: $viewport-heights,\r\n ),\r\n \"viewport-height\": (\r\n property: height,\r\n class: vh,\r\n responsive: true,\r\n values: $viewport-heights,\r\n ),\r\n \"max-viewport-height\": (\r\n property: max-height,\r\n class: max-vh,\r\n responsive: true,\r\n values: $viewport-heights,\r\n ),\r\n \"viewport-width\": (\r\n property: width,\r\n class: vw,\r\n responsive: true,\r\n values: $viewport-widths,\r\n ),\r\n \"border\": (\r\n property: border,\r\n responsive: true,\r\n values: (\r\n null: $border-width solid $border-color,\r\n 0: 0,\r\n ),\r\n ),\r\n \"border-top\": (\r\n property: border-top,\r\n responsive: true,\r\n class: border,\r\n values: (\r\n top: $border-width solid $border-color,\r\n top-0: 0,\r\n ),\r\n ),\r\n \"border-end\": (\r\n property: border-right,\r\n responsive: true,\r\n class: border,\r\n values: (\r\n end: $border-width solid $border-color,\r\n end-0: 0,\r\n ),\r\n ),\r\n \"border-start\": (\r\n property: border-left,\r\n responsive: true,\r\n class: border,\r\n values: (\r\n start: $border-width solid $border-color,\r\n start-0: 0,\r\n ),\r\n ),\r\n \"border-bottom\": (\r\n property: border-bottom,\r\n responsive: true,\r\n class: border,\r\n values: (\r\n bottom: $border-width solid $border-color,\r\n bottom-0: 0,\r\n ),\r\n ),\r\n \"border-x\": (\r\n property: border-left border-right,\r\n responsive: true,\r\n class: border,\r\n values: (\r\n x: $border-width solid $border-color,\r\n x-0: 0,\r\n ),\r\n ),\r\n \"border-y\": (\r\n property: border-top border-bottom,\r\n responsive: true,\r\n class: border,\r\n values: (\r\n y: $border-width solid $border-color,\r\n y-0: 0,\r\n ),\r\n ),\r\n \"border-color\": (\r\n property: border-color,\r\n class: border,\r\n values: $theme-all-colors,\r\n ),\r\n \"border-dashed\": (\r\n responsive: true,\r\n property: border,\r\n class: border,\r\n values: (\r\n dashed: $border-width dashed $border-color,\r\n ),\r\n ),\r\n \"border-dashed-top\": (\r\n responsive: true,\r\n property: border-top,\r\n class: border,\r\n values: (\r\n dashed-top: $border-width dashed $border-color,\r\n ),\r\n ),\r\n \"border-dashed-end\": (\r\n responsive: true,\r\n property: border-right,\r\n class: border,\r\n values: (\r\n dashed-end: $border-width dashed $border-color,\r\n ),\r\n ),\r\n \"border-dashed-start\": (\r\n responsive: true,\r\n property: border-left,\r\n class: border,\r\n values: (\r\n dashed-start: $border-width dashed $border-color,\r\n ),\r\n ),\r\n \"border-dashed-bottom\": (\r\n responsive: true,\r\n property: border-bottom,\r\n class: border,\r\n values: (\r\n dashed-bottom: $border-width dashed $border-color,\r\n ),\r\n ),\r\n \"border-dashed-x\": (\r\n responsive: true,\r\n property: border-left border-right,\r\n class: border,\r\n values: (\r\n dashed-x: $border-width dashed $border-color,\r\n ),\r\n ),\r\n \"border-dashed-y\": (\r\n responsive: true,\r\n property: border-top border-bottom,\r\n class: border,\r\n values: (\r\n dashed-y: $border-width dashed $border-color,\r\n ),\r\n ),\r\n \"rounded-top\": (\r\n responsive: true,\r\n property: border-top-start-radius border-top-end-radius,\r\n class: rounded,\r\n values: (\r\n top: $border-radius,\r\n top-lg: $border-radius-lg,\r\n top-0: 0,\r\n ),\r\n ),\r\n \"rounded-end\": (\r\n responsive: true,\r\n property: border-top-end-radius border-bottom-end-radius,\r\n class: rounded,\r\n values: (\r\n end: $border-radius,\r\n end-lg: $border-radius-lg,\r\n end-0: 0,\r\n ),\r\n ),\r\n \"rounded-bottom\": (\r\n responsive: true,\r\n property: border-bottom-end-radius border-bottom-start-radius,\r\n class: rounded,\r\n values: (\r\n bottom: $border-radius,\r\n bottom-lg: $border-radius-lg,\r\n bottom-0: 0,\r\n ),\r\n ),\r\n \"rounded-start\": (\r\n responsive: true,\r\n property: border-bottom-start-radius border-top-start-radius,\r\n class: rounded,\r\n values: (\r\n start: $border-radius,\r\n start-lg: $border-radius-lg,\r\n start-0: 0,\r\n ),\r\n ),\r\n \"rounded-0\": (\r\n responsive: true,\r\n property: border-radius,\r\n class: rounded,\r\n values: (\r\n 0: 0,\r\n ),\r\n ),\r\n \"background-color\": (\r\n property: background-color,\r\n class: bg,\r\n values:\r\n map-merge(\r\n $theme-all-colors,\r\n (\r\n \"body\": $body-bg,\r\n \"white\": $white,\r\n \"transparent\": transparent,\r\n )\r\n ),\r\n ),\r\n \"background-soft-color\": (\r\n property: background-color,\r\n class: bg-soft,\r\n values: $theme-colors-soft\r\n ),\r\n \"translate-middle\": (\r\n property: transform,\r\n class: translate,\r\n responsive: true,\r\n values: (\r\n middle: (translateX(-50%) translateY(-50%)),\r\n middle-x: translateX(-50%),\r\n middle-y: translateY(-50%),\r\n )\r\n ),\r\n ),\r\n $utilities\r\n);","/* -------------------------------------------------------------------------- */\n/* Theme */\n/* -------------------------------------------------------------------------- */\n/* prettier-ignore */\n/* -------------------------------------------------------------------------- */\n/* Utilities */\n/* -------------------------------------------------------------------------- */\n/*-----------------------------------------------\r\n| Bootstrap Styles\r\n-----------------------------------------------*/\n/*!\r\n * Bootstrap v5.0.0-alpha1 (https://getbootstrap.com/)\r\n * Copyright 2011-2020 The Bootstrap Authors\r\n * Copyright 2011-2020 Twitter, Inc.\r\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\r\n */\n:root {\n --bs-blue: #1F3A63;\n --bs-indigo: #53ACF8;\n --bs-purple: #ad45f6;\n --bs-pink: #f6458e;\n --bs-red: #F55767;\n --bs-orange: #f6d845;\n --bs-yellow: #FFA024;\n --bs-green: #66BB6A;\n --bs-teal: #299EF3;\n --bs-cyan: #3EB8F4;\n --bs-white: #fff;\n --bs-gray: #C3C1C8;\n --bs-gray-dark: #616368;\n --bs-primary: #1F3A63;\n --bs-secondary: #4F5665;\n --bs-success: #66BB6A;\n --bs-info: #3EB8F4;\n --bs-warning: #FFA024;\n --bs-danger: #F55767;\n --bs-light: #F9FAFD;\n --bs-dark: #1F1534;\n --bs-font-sans-serif: \"Chivo\", \"Open Sans\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n --bs-font-monospace: \"SFMono-Regular\", Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n@media (prefers-reduced-motion: no-preference) {\n :root {\n scroll-behavior: smooth;\n }\n}\n\nbody {\n margin: 0;\n font-family: \"Chivo\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #7D7987;\n background-color: #fff;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\n[tabindex=\"-1\"]:focus:not(:focus-visible) {\n outline: 0 !important;\n}\n\nhr {\n margin: 1rem 0;\n color: #E1E0E4;\n background-color: currentColor;\n border: 0;\n opacity: 1;\n}\n\nhr:not([size]) {\n height: 1px;\n}\n\nh1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n font-family: \"Chivo\", \"Open Sans\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-weight: 500;\n line-height: 1.2;\n color: #112D58;\n}\n\nh1, .h1 {\n font-size: calc(1.37383rem + 1.48598vw);\n}\n\n@media (min-width: 1200px) {\n h1, .h1 {\n font-size: 2.48832rem;\n }\n}\n\nh2, .h2 {\n font-size: calc(1.33236rem + 0.98832vw);\n}\n\n@media (min-width: 1200px) {\n h2, .h2 {\n font-size: 2.0736rem;\n }\n}\n\nh3, .h3 {\n font-size: calc(1.2978rem + 0.5736vw);\n}\n\n@media (min-width: 1200px) {\n h3, .h3 {\n font-size: 1.728rem;\n }\n}\n\nh4, .h4 {\n font-size: calc(1.269rem + 0.228vw);\n}\n\n@media (min-width: 1200px) {\n h4, .h4 {\n font-size: 1.44rem;\n }\n}\n\nh5, .h5 {\n font-size: 1.2rem;\n}\n\nh6, .h6 {\n font-size: 0.83333rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title],\nabbr[data-bs-original-title] {\n text-decoration: underline;\n text-decoration: underline dotted;\n cursor: help;\n text-decoration-skip-ink: none;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: 800;\n}\n\nsmall, .small {\n font-size: 75%;\n}\n\nmark, .mark {\n padding: 0.2em;\n background-color: #fcf8e3;\n}\n\nsub,\nsup {\n position: relative;\n font-size: 0.75em;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -.25em;\n}\n\nsup {\n top: -.5em;\n}\n\na {\n color: #1F3A63;\n text-decoration: none;\n}\n\na:hover {\n color: #192e4f;\n text-decoration: underline;\n}\n\na:not([href]):not([class]), a:not([href]):not([class]):hover {\n color: inherit;\n text-decoration: none;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: var(--bs-font-monospace);\n font-size: 1em;\n direction: ltr /* rtl:ignore */;\n unicode-bidi: bidi-override;\n}\n\npre {\n display: block;\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n font-size: 75%;\n}\n\npre code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n}\n\ncode {\n font-size: 75%;\n color: #f6458e;\n word-wrap: break-word;\n}\n\na > code {\n color: inherit;\n}\n\nkbd {\n padding: 0.2rem 0.4rem;\n font-size: 75%;\n color: #fff;\n background-color: #4F5665;\n border-radius: 0.3rem;\n}\n\nkbd kbd {\n padding: 0;\n font-size: 1em;\n font-weight: 700;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n color: #CDCCD1;\n text-align: left;\n}\n\nth {\n text-align: inherit;\n text-align: -webkit-match-parent;\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\nlabel {\n display: inline-block;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\n[role=\"button\"] {\n cursor: pointer;\n}\n\nselect {\n word-wrap: normal;\n}\n\n[list]::-webkit-calendar-picker-indicator {\n display: none;\n}\n\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\nbutton:not(:disabled),\n[type=\"button\"]:not(:disabled),\n[type=\"reset\"]:not(:disabled),\n[type=\"submit\"]:not(:disabled) {\n cursor: pointer;\n}\n\n::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ntextarea {\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n float: left;\n width: 100%;\n padding: 0;\n margin-bottom: 0.5rem;\n font-size: calc(1.275rem + 0.3vw);\n line-height: inherit;\n}\n\n@media (min-width: 1200px) {\n legend {\n font-size: 1.5rem;\n }\n}\n\nlegend + * {\n clear: left;\n}\n\n::-webkit-datetime-edit-fields-wrapper,\n::-webkit-datetime-edit-text,\n::-webkit-datetime-edit-minute,\n::-webkit-datetime-edit-hour-field,\n::-webkit-datetime-edit-day-field,\n::-webkit-datetime-edit-month-field,\n::-webkit-datetime-edit-year-field {\n padding: 0;\n}\n\n::-webkit-inner-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n outline-offset: -2px;\n -webkit-appearance: textfield;\n}\n\n/* rtl:raw:\n[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}\n*/\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-color-swatch-wrapper {\n padding: 0;\n}\n\n::file-selector-button {\n font: inherit;\n}\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\niframe {\n border: 0;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[hidden] {\n display: none !important;\n}\n\n.lead {\n font-size: 1.2rem;\n font-weight: 400;\n}\n\n.display-1 {\n font-size: calc(1.55498rem + 3.65978vw);\n font-weight: 900;\n line-height: 1;\n}\n\n@media (min-width: 1200px) {\n .display-1 {\n font-size: 4.29982rem;\n }\n}\n\n.display-2 {\n font-size: calc(1.48332rem + 2.79982vw);\n font-weight: 900;\n line-height: 1;\n}\n\n@media (min-width: 1200px) {\n .display-2 {\n font-size: 3.58318rem;\n }\n}\n\n.display-3 {\n font-size: calc(1.4236rem + 2.08318vw);\n font-weight: 900;\n line-height: 1;\n}\n\n@media (min-width: 1200px) {\n .display-3 {\n font-size: 2.98598rem;\n }\n}\n\n.display-4 {\n font-size: calc(1.37383rem + 1.48598vw);\n font-weight: 900;\n line-height: 1;\n}\n\n@media (min-width: 1200px) {\n .display-4 {\n font-size: 2.48832rem;\n }\n}\n\n.display-5 {\n font-size: calc(1.33236rem + 0.98832vw);\n font-weight: 900;\n line-height: 1;\n}\n\n@media (min-width: 1200px) {\n .display-5 {\n font-size: 2.0736rem;\n }\n}\n\n.display-6 {\n font-size: calc(1.2978rem + 0.5736vw);\n font-weight: 900;\n line-height: 1;\n}\n\n@media (min-width: 1200px) {\n .display-6 {\n font-size: 1.728rem;\n }\n}\n\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline-item {\n display: inline-block;\n}\n\n.list-inline-item:not(:last-child) {\n margin-right: 0.5rem;\n}\n\n.initialism {\n font-size: 75%;\n text-transform: uppercase;\n}\n\n.blockquote {\n margin-bottom: 1rem;\n font-size: 1.2rem;\n}\n\n.blockquote > :last-child {\n margin-bottom: 0;\n}\n\n.blockquote-footer {\n margin-top: -1rem;\n margin-bottom: 1rem;\n font-size: 75%;\n color: #C3C1C8;\n}\n\n.blockquote-footer::before {\n content: \"\\2014\\00A0\";\n}\n\n.img-fluid {\n max-width: 100%;\n height: auto;\n}\n\n.img-thumbnail {\n padding: 0.25rem;\n background-color: #fff;\n border: 1px solid #E1E0E4;\n border-radius: 0.25rem;\n max-width: 100%;\n height: auto;\n}\n\n.figure {\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: 0.5rem;\n line-height: 1;\n}\n\n.figure-caption {\n font-size: 75%;\n color: #C3C1C8;\n}\n\n.container,\n.container-fluid,\n.container-sm,\n.container-md,\n.container-lg,\n.container-xl,\n.container-xxl {\n width: 100%;\n padding-right: var(--bs-gutter-x, 1rem);\n padding-left: var(--bs-gutter-x, 1rem);\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container, .container-sm {\n max-width: 540px;\n }\n}\n\n@media (min-width: 768px) {\n .container, .container-sm, .container-md {\n max-width: 720px;\n }\n}\n\n@media (min-width: 992px) {\n .container, .container-sm, .container-md, .container-lg {\n max-width: 960px;\n }\n}\n\n@media (min-width: 1200px) {\n .container, .container-sm, .container-md, .container-lg, .container-xl {\n max-width: 1140px;\n }\n}\n\n@media (min-width: 1540px) {\n .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {\n max-width: 1480px;\n }\n}\n\n.row {\n --bs-gutter-x: 2rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(var(--bs-gutter-y) * -1);\n margin-right: calc(var(--bs-gutter-x) / -2);\n margin-left: calc(var(--bs-gutter-x) / -2);\n}\n\n.row > * {\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-right: calc(var(--bs-gutter-x) / 2);\n padding-left: calc(var(--bs-gutter-x) / 2);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.33333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.66667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-left: 8.33333%;\n}\n\n.offset-2 {\n margin-left: 16.66667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.33333%;\n}\n\n.offset-5 {\n margin-left: 41.66667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.33333%;\n}\n\n.offset-8 {\n margin-left: 66.66667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.33333%;\n}\n\n.offset-11 {\n margin-left: 91.66667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.8rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.8rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n.g-6,\n.gx-6 {\n --bs-gutter-x: 4rem;\n}\n\n.g-6,\n.gy-6 {\n --bs-gutter-y: 4rem;\n}\n\n.g-7,\n.gx-7 {\n --bs-gutter-x: 5rem;\n}\n\n.g-7,\n.gy-7 {\n --bs-gutter-y: 5rem;\n}\n\n.g-8,\n.gx-8 {\n --bs-gutter-x: 7.5rem;\n}\n\n.g-8,\n.gy-8 {\n --bs-gutter-y: 7.5rem;\n}\n\n.g-9,\n.gx-9 {\n --bs-gutter-x: 10rem;\n}\n\n.g-9,\n.gy-9 {\n --bs-gutter-y: 10rem;\n}\n\n.g-10,\n.gx-10 {\n --bs-gutter-x: 12.5rem;\n}\n\n.g-10,\n.gy-10 {\n --bs-gutter-y: 12.5rem;\n}\n\n.g-11,\n.gx-11 {\n --bs-gutter-x: 15rem;\n}\n\n.g-11,\n.gy-11 {\n --bs-gutter-y: 15rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.33333%;\n }\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.66667%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333%;\n }\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66667%;\n }\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333%;\n }\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66667%;\n }\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333%;\n }\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66667%;\n }\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333%;\n }\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66667%;\n }\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.33333%;\n }\n .offset-sm-2 {\n margin-left: 16.66667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.33333%;\n }\n .offset-sm-5 {\n margin-left: 41.66667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.33333%;\n }\n .offset-sm-8 {\n margin-left: 66.66667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.33333%;\n }\n .offset-sm-11 {\n margin-left: 91.66667%;\n }\n .g-sm-0,\n .gx-sm-0 {\n --bs-gutter-x: 0;\n }\n .g-sm-0,\n .gy-sm-0 {\n --bs-gutter-y: 0;\n }\n .g-sm-1,\n .gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-sm-1,\n .gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-sm-2,\n .gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-sm-2,\n .gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-sm-3,\n .gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n .g-sm-3,\n .gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n .g-sm-4,\n .gx-sm-4 {\n --bs-gutter-x: 1.8rem;\n }\n .g-sm-4,\n .gy-sm-4 {\n --bs-gutter-y: 1.8rem;\n }\n .g-sm-5,\n .gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n .g-sm-5,\n .gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n .g-sm-6,\n .gx-sm-6 {\n --bs-gutter-x: 4rem;\n }\n .g-sm-6,\n .gy-sm-6 {\n --bs-gutter-y: 4rem;\n }\n .g-sm-7,\n .gx-sm-7 {\n --bs-gutter-x: 5rem;\n }\n .g-sm-7,\n .gy-sm-7 {\n --bs-gutter-y: 5rem;\n }\n .g-sm-8,\n .gx-sm-8 {\n --bs-gutter-x: 7.5rem;\n }\n .g-sm-8,\n .gy-sm-8 {\n --bs-gutter-y: 7.5rem;\n }\n .g-sm-9,\n .gx-sm-9 {\n --bs-gutter-x: 10rem;\n }\n .g-sm-9,\n .gy-sm-9 {\n --bs-gutter-y: 10rem;\n }\n .g-sm-10,\n .gx-sm-10 {\n --bs-gutter-x: 12.5rem;\n }\n .g-sm-10,\n .gy-sm-10 {\n --bs-gutter-y: 12.5rem;\n }\n .g-sm-11,\n .gx-sm-11 {\n --bs-gutter-x: 15rem;\n }\n .g-sm-11,\n .gy-sm-11 {\n --bs-gutter-y: 15rem;\n }\n}\n\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.33333%;\n }\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.66667%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333%;\n }\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66667%;\n }\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333%;\n }\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66667%;\n }\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333%;\n }\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66667%;\n }\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333%;\n }\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66667%;\n }\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.33333%;\n }\n .offset-md-2 {\n margin-left: 16.66667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.33333%;\n }\n .offset-md-5 {\n margin-left: 41.66667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.33333%;\n }\n .offset-md-8 {\n margin-left: 66.66667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.33333%;\n }\n .offset-md-11 {\n margin-left: 91.66667%;\n }\n .g-md-0,\n .gx-md-0 {\n --bs-gutter-x: 0;\n }\n .g-md-0,\n .gy-md-0 {\n --bs-gutter-y: 0;\n }\n .g-md-1,\n .gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-md-1,\n .gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-md-2,\n .gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-md-2,\n .gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-md-3,\n .gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n .g-md-3,\n .gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n .g-md-4,\n .gx-md-4 {\n --bs-gutter-x: 1.8rem;\n }\n .g-md-4,\n .gy-md-4 {\n --bs-gutter-y: 1.8rem;\n }\n .g-md-5,\n .gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n .g-md-5,\n .gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n .g-md-6,\n .gx-md-6 {\n --bs-gutter-x: 4rem;\n }\n .g-md-6,\n .gy-md-6 {\n --bs-gutter-y: 4rem;\n }\n .g-md-7,\n .gx-md-7 {\n --bs-gutter-x: 5rem;\n }\n .g-md-7,\n .gy-md-7 {\n --bs-gutter-y: 5rem;\n }\n .g-md-8,\n .gx-md-8 {\n --bs-gutter-x: 7.5rem;\n }\n .g-md-8,\n .gy-md-8 {\n --bs-gutter-y: 7.5rem;\n }\n .g-md-9,\n .gx-md-9 {\n --bs-gutter-x: 10rem;\n }\n .g-md-9,\n .gy-md-9 {\n --bs-gutter-y: 10rem;\n }\n .g-md-10,\n .gx-md-10 {\n --bs-gutter-x: 12.5rem;\n }\n .g-md-10,\n .gy-md-10 {\n --bs-gutter-y: 12.5rem;\n }\n .g-md-11,\n .gx-md-11 {\n --bs-gutter-x: 15rem;\n }\n .g-md-11,\n .gy-md-11 {\n --bs-gutter-y: 15rem;\n }\n}\n\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.33333%;\n }\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.66667%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333%;\n }\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66667%;\n }\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333%;\n }\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66667%;\n }\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333%;\n }\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66667%;\n }\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333%;\n }\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66667%;\n }\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.33333%;\n }\n .offset-lg-2 {\n margin-left: 16.66667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.33333%;\n }\n .offset-lg-5 {\n margin-left: 41.66667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.33333%;\n }\n .offset-lg-8 {\n margin-left: 66.66667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.33333%;\n }\n .offset-lg-11 {\n margin-left: 91.66667%;\n }\n .g-lg-0,\n .gx-lg-0 {\n --bs-gutter-x: 0;\n }\n .g-lg-0,\n .gy-lg-0 {\n --bs-gutter-y: 0;\n }\n .g-lg-1,\n .gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-lg-1,\n .gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-lg-2,\n .gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-lg-2,\n .gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-lg-3,\n .gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n .g-lg-3,\n .gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n .g-lg-4,\n .gx-lg-4 {\n --bs-gutter-x: 1.8rem;\n }\n .g-lg-4,\n .gy-lg-4 {\n --bs-gutter-y: 1.8rem;\n }\n .g-lg-5,\n .gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n .g-lg-5,\n .gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n .g-lg-6,\n .gx-lg-6 {\n --bs-gutter-x: 4rem;\n }\n .g-lg-6,\n .gy-lg-6 {\n --bs-gutter-y: 4rem;\n }\n .g-lg-7,\n .gx-lg-7 {\n --bs-gutter-x: 5rem;\n }\n .g-lg-7,\n .gy-lg-7 {\n --bs-gutter-y: 5rem;\n }\n .g-lg-8,\n .gx-lg-8 {\n --bs-gutter-x: 7.5rem;\n }\n .g-lg-8,\n .gy-lg-8 {\n --bs-gutter-y: 7.5rem;\n }\n .g-lg-9,\n .gx-lg-9 {\n --bs-gutter-x: 10rem;\n }\n .g-lg-9,\n .gy-lg-9 {\n --bs-gutter-y: 10rem;\n }\n .g-lg-10,\n .gx-lg-10 {\n --bs-gutter-x: 12.5rem;\n }\n .g-lg-10,\n .gy-lg-10 {\n --bs-gutter-y: 12.5rem;\n }\n .g-lg-11,\n .gx-lg-11 {\n --bs-gutter-x: 15rem;\n }\n .g-lg-11,\n .gy-lg-11 {\n --bs-gutter-y: 15rem;\n }\n}\n\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.33333%;\n }\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.66667%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333%;\n }\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66667%;\n }\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333%;\n }\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66667%;\n }\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333%;\n }\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66667%;\n }\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333%;\n }\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66667%;\n }\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.33333%;\n }\n .offset-xl-2 {\n margin-left: 16.66667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.33333%;\n }\n .offset-xl-5 {\n margin-left: 41.66667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.33333%;\n }\n .offset-xl-8 {\n margin-left: 66.66667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.33333%;\n }\n .offset-xl-11 {\n margin-left: 91.66667%;\n }\n .g-xl-0,\n .gx-xl-0 {\n --bs-gutter-x: 0;\n }\n .g-xl-0,\n .gy-xl-0 {\n --bs-gutter-y: 0;\n }\n .g-xl-1,\n .gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xl-1,\n .gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xl-2,\n .gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xl-2,\n .gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xl-3,\n .gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xl-3,\n .gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xl-4,\n .gx-xl-4 {\n --bs-gutter-x: 1.8rem;\n }\n .g-xl-4,\n .gy-xl-4 {\n --bs-gutter-y: 1.8rem;\n }\n .g-xl-5,\n .gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xl-5,\n .gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n .g-xl-6,\n .gx-xl-6 {\n --bs-gutter-x: 4rem;\n }\n .g-xl-6,\n .gy-xl-6 {\n --bs-gutter-y: 4rem;\n }\n .g-xl-7,\n .gx-xl-7 {\n --bs-gutter-x: 5rem;\n }\n .g-xl-7,\n .gy-xl-7 {\n --bs-gutter-y: 5rem;\n }\n .g-xl-8,\n .gx-xl-8 {\n --bs-gutter-x: 7.5rem;\n }\n .g-xl-8,\n .gy-xl-8 {\n --bs-gutter-y: 7.5rem;\n }\n .g-xl-9,\n .gx-xl-9 {\n --bs-gutter-x: 10rem;\n }\n .g-xl-9,\n .gy-xl-9 {\n --bs-gutter-y: 10rem;\n }\n .g-xl-10,\n .gx-xl-10 {\n --bs-gutter-x: 12.5rem;\n }\n .g-xl-10,\n .gy-xl-10 {\n --bs-gutter-y: 12.5rem;\n }\n .g-xl-11,\n .gx-xl-11 {\n --bs-gutter-x: 15rem;\n }\n .g-xl-11,\n .gy-xl-11 {\n --bs-gutter-y: 15rem;\n }\n}\n\n@media (min-width: 1540px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.33333%;\n }\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.66667%;\n }\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333%;\n }\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66667%;\n }\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333%;\n }\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66667%;\n }\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333%;\n }\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66667%;\n }\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333%;\n }\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66667%;\n }\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xxl-0 {\n margin-left: 0;\n }\n .offset-xxl-1 {\n margin-left: 8.33333%;\n }\n .offset-xxl-2 {\n margin-left: 16.66667%;\n }\n .offset-xxl-3 {\n margin-left: 25%;\n }\n .offset-xxl-4 {\n margin-left: 33.33333%;\n }\n .offset-xxl-5 {\n margin-left: 41.66667%;\n }\n .offset-xxl-6 {\n margin-left: 50%;\n }\n .offset-xxl-7 {\n margin-left: 58.33333%;\n }\n .offset-xxl-8 {\n margin-left: 66.66667%;\n }\n .offset-xxl-9 {\n margin-left: 75%;\n }\n .offset-xxl-10 {\n margin-left: 83.33333%;\n }\n .offset-xxl-11 {\n margin-left: 91.66667%;\n }\n .g-xxl-0,\n .gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n .g-xxl-0,\n .gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n .g-xxl-1,\n .gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xxl-1,\n .gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xxl-2,\n .gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xxl-2,\n .gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xxl-3,\n .gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xxl-3,\n .gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xxl-4,\n .gx-xxl-4 {\n --bs-gutter-x: 1.8rem;\n }\n .g-xxl-4,\n .gy-xxl-4 {\n --bs-gutter-y: 1.8rem;\n }\n .g-xxl-5,\n .gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xxl-5,\n .gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n .g-xxl-6,\n .gx-xxl-6 {\n --bs-gutter-x: 4rem;\n }\n .g-xxl-6,\n .gy-xxl-6 {\n --bs-gutter-y: 4rem;\n }\n .g-xxl-7,\n .gx-xxl-7 {\n --bs-gutter-x: 5rem;\n }\n .g-xxl-7,\n .gy-xxl-7 {\n --bs-gutter-y: 5rem;\n }\n .g-xxl-8,\n .gx-xxl-8 {\n --bs-gutter-x: 7.5rem;\n }\n .g-xxl-8,\n .gy-xxl-8 {\n --bs-gutter-y: 7.5rem;\n }\n .g-xxl-9,\n .gx-xxl-9 {\n --bs-gutter-x: 10rem;\n }\n .g-xxl-9,\n .gy-xxl-9 {\n --bs-gutter-y: 10rem;\n }\n .g-xxl-10,\n .gx-xxl-10 {\n --bs-gutter-x: 12.5rem;\n }\n .g-xxl-10,\n .gy-xxl-10 {\n --bs-gutter-y: 12.5rem;\n }\n .g-xxl-11,\n .gx-xxl-11 {\n --bs-gutter-x: 15rem;\n }\n .g-xxl-11,\n .gy-xxl-11 {\n --bs-gutter-y: 15rem;\n }\n}\n\n.table {\n --bs-table-bg: transparent;\n --bs-table-striped-color: #7D7987;\n --bs-table-striped-bg: rgba(0, 0, 0, 0.05);\n --bs-table-active-color: #7D7987;\n --bs-table-active-bg: rgba(0, 0, 0, 0.1);\n --bs-table-hover-color: #7D7987;\n --bs-table-hover-bg: rgba(0, 0, 0, 0.075);\n width: 100%;\n margin-bottom: 1rem;\n color: #7D7987;\n vertical-align: top;\n border-color: #E1E0E4;\n}\n\n.table > :not(caption) > * > * {\n padding: 0.5rem 0.5rem;\n background-color: var(--bs-table-bg);\n border-bottom-width: 1px;\n box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);\n}\n\n.table > tbody {\n vertical-align: inherit;\n}\n\n.table > thead {\n vertical-align: bottom;\n}\n\n.table > :not(:last-child) > :last-child > * {\n border-bottom-color: currentColor;\n}\n\n.caption-top {\n caption-side: top;\n}\n\n.table-sm > :not(caption) > * > * {\n padding: 0.25rem 0.25rem;\n}\n\n.table-bordered > :not(caption) > * {\n border-width: 1px 0;\n}\n\n.table-bordered > :not(caption) > * > * {\n border-width: 0 1px;\n}\n\n.table-borderless > :not(caption) > * > * {\n border-bottom-width: 0;\n}\n\n.table-striped > tbody > tr:nth-of-type(odd) {\n --bs-table-accent-bg: var(--bs-table-striped-bg);\n color: var(--bs-table-striped-color);\n}\n\n.table-active {\n --bs-table-accent-bg: var(--bs-table-active-bg);\n color: var(--bs-table-active-color);\n}\n\n.table-hover > tbody > tr:hover {\n --bs-table-accent-bg: var(--bs-table-hover-bg);\n color: var(--bs-table-hover-color);\n}\n\n.table-primary {\n --bs-table-bg: #d2d8e0;\n --bs-table-striped-bg: #ccd2da;\n --bs-table-striped-color: #616368;\n --bs-table-active-bg: #c7ccd4;\n --bs-table-active-color: #616368;\n --bs-table-hover-bg: #cacfd7;\n --bs-table-hover-color: #616368;\n color: #616368;\n border-color: #c7ccd4;\n}\n\n.table-secondary {\n --bs-table-bg: #dcdde0;\n --bs-table-striped-bg: #d6d7da;\n --bs-table-striped-color: #616368;\n --bs-table-active-bg: #d0d1d4;\n --bs-table-active-color: #616368;\n --bs-table-hover-bg: #d3d4d7;\n --bs-table-hover-color: #616368;\n color: #616368;\n border-color: #d0d1d4;\n}\n\n.table-success {\n --bs-table-bg: #e0f1e1;\n --bs-table-striped-bg: #daeadb;\n --bs-table-striped-color: #616368;\n --bs-table-active-bg: #d3e3d5;\n --bs-table-active-color: #616368;\n --bs-table-hover-bg: #d6e6d8;\n --bs-table-hover-color: #616368;\n color: #616368;\n border-color: #d3e3d5;\n}\n\n.table-info {\n --bs-table-bg: #d8f1fd;\n --bs-table-striped-bg: #d2eaf6;\n --bs-table-striped-color: #616368;\n --bs-table-active-bg: #cce3ee;\n --bs-table-active-color: #616368;\n --bs-table-hover-bg: #cfe6f2;\n --bs-table-hover-color: #616368;\n color: #616368;\n border-color: #cce3ee;\n}\n\n.table-warning {\n --bs-table-bg: #ffecd3;\n --bs-table-striped-bg: #f7e5ce;\n --bs-table-striped-color: #616368;\n --bs-table-active-bg: #efdec8;\n --bs-table-active-color: #616368;\n --bs-table-hover-bg: #f3e2cb;\n --bs-table-hover-color: #616368;\n color: #616368;\n border-color: #efdec8;\n}\n\n.table-danger {\n --bs-table-bg: #fddde1;\n --bs-table-striped-bg: #f5d7db;\n --bs-table-striped-color: #616368;\n --bs-table-active-bg: #edd1d5;\n --bs-table-active-color: #616368;\n --bs-table-hover-bg: #f1d4d8;\n --bs-table-hover-color: #616368;\n color: #616368;\n border-color: #edd1d5;\n}\n\n.table-light {\n --bs-table-bg: #F9FAFD;\n --bs-table-striped-bg: #f1f2f6;\n --bs-table-striped-color: #616368;\n --bs-table-active-bg: #eaebee;\n --bs-table-active-color: #616368;\n --bs-table-hover-bg: #eeeff2;\n --bs-table-hover-color: #616368;\n color: #616368;\n border-color: #eaebee;\n}\n\n.table-dark {\n --bs-table-bg: #1F1534;\n --bs-table-striped-bg: #2a213e;\n --bs-table-striped-color: #fff;\n --bs-table-active-bg: #352c48;\n --bs-table-active-color: #fff;\n --bs-table-hover-bg: #302743;\n --bs-table-hover-color: #fff;\n color: #fff;\n border-color: #352c48;\n}\n\n.table-responsive {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n}\n\n@media (max-width: 575.98px) {\n .table-responsive-sm {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n\n@media (max-width: 767.98px) {\n .table-responsive-md {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n\n@media (max-width: 991.98px) {\n .table-responsive-lg {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n\n@media (max-width: 1199.98px) {\n .table-responsive-xl {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n\n@media (max-width: 1539.98px) {\n .table-responsive-xxl {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n\n.form-label {\n margin-bottom: 0.5rem;\n}\n\n.col-form-label {\n padding-top: calc(0.375rem + 1px);\n padding-bottom: calc(0.375rem + 1px);\n margin-bottom: 0;\n font-size: inherit;\n line-height: 1.5;\n}\n\n.col-form-label-lg {\n padding-top: calc(0.6rem + 1px);\n padding-bottom: calc(0.6rem + 1px);\n font-size: 1rem;\n}\n\n.col-form-label-sm {\n padding-top: calc(0.1rem + 1px);\n padding-bottom: calc(0.1rem + 1px);\n font-size: 0.875rem;\n}\n\n.form-text {\n margin-top: 0.25rem;\n font-size: 75%;\n color: #CDCCD1;\n}\n\n.form-control {\n display: block;\n width: 100%;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #7D7987;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #D7D6DA;\n appearance: none;\n border-radius: 0.25rem;\n transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .form-control {\n transition: none;\n }\n}\n\n.form-control[type=\"file\"] {\n overflow: hidden;\n}\n\n.form-control[type=\"file\"]:not(:disabled):not([readonly]) {\n cursor: pointer;\n}\n\n.form-control:focus {\n color: #7D7987;\n background-color: #fff;\n border-color: #8f9db1;\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(31, 58, 99, 0.25);\n}\n\n.form-control::-webkit-date-and-time-value {\n height: 1.5em;\n}\n\n.form-control::placeholder {\n color: #C3C1C8;\n opacity: 1;\n}\n\n.form-control:disabled, .form-control[readonly] {\n background-color: #EBEBED;\n opacity: 1;\n}\n\n.form-control::file-selector-button {\n padding: 0.375rem 0.75rem;\n margin: -0.375rem -0.75rem;\n margin-inline-end: 0.75rem;\n color: #7D7987;\n background-color: #EBEBED;\n pointer-events: none;\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n border-inline-end-width: 1px;\n border-radius: 0;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .form-control::file-selector-button {\n transition: none;\n }\n}\n\n.form-control:hover:not(:disabled):not([readonly])::file-selector-button {\n background-color: #dfdfe1;\n}\n\n.form-control::-webkit-file-upload-button {\n padding: 0.375rem 0.75rem;\n margin: -0.375rem -0.75rem;\n margin-inline-end: 0.75rem;\n color: #7D7987;\n background-color: #EBEBED;\n pointer-events: none;\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n border-inline-end-width: 1px;\n border-radius: 0;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .form-control::-webkit-file-upload-button {\n transition: none;\n }\n}\n\n.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {\n background-color: #dfdfe1;\n}\n\n.form-control-plaintext {\n display: block;\n width: 100%;\n padding: 0.375rem 0;\n margin-bottom: 0;\n line-height: 1.5;\n color: #7D7987;\n background-color: transparent;\n border: solid transparent;\n border-width: 1px 0;\n}\n\n.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {\n padding-right: 0;\n padding-left: 0;\n}\n\n.form-control-sm {\n min-height: calc(1.5em + 0.2rem + 2px);\n padding: 0.1rem 0.5rem;\n font-size: 0.875rem;\n border-radius: 0.3rem;\n}\n\n.form-control-sm::file-selector-button {\n padding: 0.1rem 0.5rem;\n margin: -0.1rem -0.5rem;\n margin-inline-end: 0.5rem;\n}\n\n.form-control-sm::-webkit-file-upload-button {\n padding: 0.1rem 0.5rem;\n margin: -0.1rem -0.5rem;\n margin-inline-end: 0.5rem;\n}\n\n.form-control-lg {\n min-height: calc(1.5em + 1.2rem + 2px);\n padding: 0.6rem 1.7rem;\n font-size: 1rem;\n border-radius: 0.5rem;\n}\n\n.form-control-lg::file-selector-button {\n padding: 0.6rem 1.7rem;\n margin: -0.6rem -1.7rem;\n margin-inline-end: 1.7rem;\n}\n\n.form-control-lg::-webkit-file-upload-button {\n padding: 0.6rem 1.7rem;\n margin: -0.6rem -1.7rem;\n margin-inline-end: 1.7rem;\n}\n\ntextarea.form-control {\n min-height: calc(1.5em + 0.75rem + 2px);\n}\n\ntextarea.form-control-sm {\n min-height: calc(1.5em + 0.2rem + 2px);\n}\n\ntextarea.form-control-lg {\n min-height: calc(1.5em + 1.2rem + 2px);\n}\n\n.form-control-color {\n max-width: 3rem;\n height: auto;\n padding: 0.375rem;\n}\n\n.form-control-color:not(:disabled):not([readonly]) {\n cursor: pointer;\n}\n\n.form-control-color::-moz-color-swatch {\n height: 1.5em;\n border-radius: 0.25rem;\n}\n\n.form-control-color::-webkit-color-swatch {\n height: 1.5em;\n border-radius: 0.25rem;\n}\n\n.form-select {\n display: block;\n width: 100%;\n padding: 0.375rem 2.25rem 0.375rem 0.75rem;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #7D7987;\n background-color: #fff;\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23616368' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\");\n background-repeat: no-repeat;\n background-position: right 0.75rem center;\n background-size: 16px 12px;\n border: 1px solid #D7D6DA;\n border-radius: 0.25rem;\n appearance: none;\n}\n\n.form-select:focus {\n border-color: #8f9db1;\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(31, 58, 99, 0.25);\n}\n\n.form-select[multiple], .form-select[size]:not([size=\"1\"]) {\n padding-right: 0.75rem;\n background-image: none;\n}\n\n.form-select:disabled {\n color: #C3C1C8;\n background-color: #EBEBED;\n}\n\n.form-select:-moz-focusring {\n color: transparent;\n text-shadow: 0 0 0 #7D7987;\n}\n\n.form-select-sm {\n padding-top: 0.1rem;\n padding-bottom: 0.1rem;\n padding-left: 0.5rem;\n font-size: 0.875rem;\n}\n\n.form-select-lg {\n padding-top: 0.6rem;\n padding-bottom: 0.6rem;\n padding-left: 1.7rem;\n font-size: 1rem;\n}\n\n.form-check {\n display: block;\n min-height: 1.5rem;\n padding-left: 1.5em;\n margin-bottom: 0.125rem;\n}\n\n.form-check .form-check-input {\n float: left;\n margin-left: -1.5em;\n}\n\n.form-check-input {\n width: 1em;\n height: 1em;\n margin-top: 0.25em;\n vertical-align: top;\n background-color: #fff;\n background-repeat: no-repeat;\n background-position: center;\n background-size: contain;\n border: 1px solid rgba(0, 0, 0, 0.25);\n appearance: none;\n color-adjust: exact;\n}\n\n.form-check-input[type=\"checkbox\"] {\n border-radius: 0.25em;\n}\n\n.form-check-input[type=\"radio\"] {\n border-radius: 50%;\n}\n\n.form-check-input:active {\n filter: brightness(90%);\n}\n\n.form-check-input:focus {\n border-color: #8f9db1;\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(31, 58, 99, 0.25);\n}\n\n.form-check-input:checked {\n background-color: #1F3A63;\n border-color: #1F3A63;\n}\n\n.form-check-input:checked[type=\"checkbox\"] {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e\");\n}\n\n.form-check-input:checked[type=\"radio\"] {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e\");\n}\n\n.form-check-input[type=\"checkbox\"]:indeterminate {\n background-color: #1F3A63;\n border-color: #1F3A63;\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e\");\n}\n\n.form-check-input:disabled {\n pointer-events: none;\n filter: none;\n opacity: 0.5;\n}\n\n.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {\n opacity: 0.5;\n}\n\n.form-switch {\n padding-left: 2.5em;\n}\n\n.form-switch .form-check-input {\n width: 2em;\n margin-left: -2.5em;\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e\");\n background-position: left center;\n border-radius: 2em;\n transition: background-position 0.15s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .form-switch .form-check-input {\n transition: none;\n }\n}\n\n.form-switch .form-check-input:focus {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%238f9db1'/%3e%3c/svg%3e\");\n}\n\n.form-switch .form-check-input:checked {\n background-position: right center;\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\");\n}\n\n.form-check-inline {\n display: inline-block;\n margin-right: 1rem;\n}\n\n.btn-check {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n\n.btn-check[disabled] + .btn, .btn-check:disabled + .btn {\n pointer-events: none;\n filter: none;\n opacity: 0.65;\n}\n\n.form-range {\n width: 100%;\n height: 1.5rem;\n padding: 0;\n background-color: transparent;\n appearance: none;\n}\n\n.form-range:focus {\n outline: 0;\n}\n\n.form-range:focus::-webkit-slider-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(31, 58, 99, 0.25);\n}\n\n.form-range:focus::-moz-range-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(31, 58, 99, 0.25);\n}\n\n.form-range::-moz-focus-outer {\n border: 0;\n}\n\n.form-range::-webkit-slider-thumb {\n width: 1rem;\n height: 1rem;\n margin-top: -0.25rem;\n background-color: #1F3A63;\n border: 0;\n border-radius: 1rem;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n appearance: none;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .form-range::-webkit-slider-thumb {\n transition: none;\n }\n}\n\n.form-range::-webkit-slider-thumb:active {\n background-color: #bcc4d0;\n}\n\n.form-range::-webkit-slider-runnable-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: #E1E0E4;\n border-color: transparent;\n border-radius: 1rem;\n}\n\n.form-range::-moz-range-thumb {\n width: 1rem;\n height: 1rem;\n background-color: #1F3A63;\n border: 0;\n border-radius: 1rem;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n appearance: none;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .form-range::-moz-range-thumb {\n transition: none;\n }\n}\n\n.form-range::-moz-range-thumb:active {\n background-color: #bcc4d0;\n}\n\n.form-range::-moz-range-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: #E1E0E4;\n border-color: transparent;\n border-radius: 1rem;\n}\n\n.form-range:disabled {\n pointer-events: none;\n}\n\n.form-range:disabled::-webkit-slider-thumb {\n background-color: #CDCCD1;\n}\n\n.form-range:disabled::-moz-range-thumb {\n background-color: #CDCCD1;\n}\n\n.form-floating {\n position: relative;\n}\n\n.form-floating > .form-control,\n.form-floating > .form-select {\n height: calc(3.5rem + 2px);\n padding: 1rem 0.75rem;\n}\n\n.form-floating > label {\n position: absolute;\n top: 0;\n left: 0;\n height: 100%;\n padding: 1rem 0.75rem;\n pointer-events: none;\n border: 1px solid transparent;\n transform-origin: 0 0;\n transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .form-floating > label {\n transition: none;\n }\n}\n\n.form-floating > .form-control::placeholder {\n color: transparent;\n}\n\n.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {\n padding-top: 1.625rem;\n padding-bottom: 0.625rem;\n}\n\n.form-floating > .form-control:-webkit-autofill {\n padding-top: 1.625rem;\n padding-bottom: 0.625rem;\n}\n\n.form-floating > .form-select {\n padding-top: 1.625rem;\n padding-bottom: 0.625rem;\n}\n\n.form-floating > .form-control:focus ~ label,\n.form-floating > .form-control:not(:placeholder-shown) ~ label,\n.form-floating > .form-select ~ label {\n opacity: 0.65;\n transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);\n}\n\n.form-floating > .form-control:-webkit-autofill ~ label {\n opacity: 0.65;\n transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);\n}\n\n.input-group {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: stretch;\n width: 100%;\n}\n\n.input-group > .form-control,\n.input-group > .form-select {\n position: relative;\n flex: 1 1 auto;\n width: 1%;\n min-width: 0;\n}\n\n.input-group > .form-control:focus,\n.input-group > .form-select:focus {\n z-index: 3;\n}\n\n.input-group .btn {\n position: relative;\n z-index: 2;\n}\n\n.input-group .btn:focus {\n z-index: 3;\n}\n\n.input-group-text {\n display: flex;\n align-items: center;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #7D7987;\n text-align: center;\n white-space: nowrap;\n background-color: #EBEBED;\n border: 1px solid #D7D6DA;\n border-radius: 0.25rem;\n}\n\n.input-group-lg > .form-control,\n.input-group-lg > .form-select,\n.input-group-lg > .input-group-text,\n.input-group-lg > .btn {\n padding: 0.6rem 1.7rem;\n font-size: 1rem;\n border-radius: 0.5rem;\n}\n\n.input-group-sm > .form-control,\n.input-group-sm > .form-select,\n.input-group-sm > .input-group-text,\n.input-group-sm > .btn {\n padding: 0.1rem 0.5rem;\n font-size: 0.875rem;\n border-radius: 0.3rem;\n}\n\n.input-group-lg > .form-select,\n.input-group-sm > .form-select {\n padding-right: 3rem;\n}\n\n.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),\n.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),\n.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {\n margin-left: -1px;\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.valid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 75%;\n color: #66BB6A;\n}\n\n.valid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: 0.25rem 0.5rem;\n margin-top: .1rem;\n font-size: 0.875rem;\n color: #fff;\n background-color: rgba(102, 187, 106, 0.9);\n border-radius: 0.25rem;\n}\n\n.was-validated :valid ~ .valid-feedback,\n.was-validated :valid ~ .valid-tooltip,\n.is-valid ~ .valid-feedback,\n.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .form-control:valid, .form-control.is-valid {\n border-color: #66BB6A;\n padding-right: calc(1.5em + 0.75rem);\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2366BB6A' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\");\n background-repeat: no-repeat;\n background-position: right calc(0.375em + 0.1875rem) center;\n background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n\n.was-validated .form-control:valid:focus, .form-control.is-valid:focus {\n border-color: #66BB6A;\n box-shadow: 0 0 0 0.25rem rgba(102, 187, 106, 0.25);\n}\n\n.was-validated textarea.form-control:valid, textarea.form-control.is-valid {\n padding-right: calc(1.5em + 0.75rem);\n background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);\n}\n\n.was-validated .form-select:valid, .form-select.is-valid {\n border-color: #66BB6A;\n padding-right: 4.125rem;\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23616368' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\"), url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2366BB6A' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\");\n background-position: right 0.75rem center, center right 2.25rem;\n background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n\n.was-validated .form-select:valid:focus, .form-select.is-valid:focus {\n border-color: #66BB6A;\n box-shadow: 0 0 0 0.25rem rgba(102, 187, 106, 0.25);\n}\n\n.was-validated .form-check-input:valid, .form-check-input.is-valid {\n border-color: #66BB6A;\n}\n\n.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {\n background-color: #66BB6A;\n}\n\n.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {\n box-shadow: 0 0 0 0.25rem rgba(102, 187, 106, 0.25);\n}\n\n.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {\n color: #66BB6A;\n}\n\n.form-check-inline .form-check-input ~ .valid-feedback {\n margin-left: .5em;\n}\n\n.invalid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 75%;\n color: #F55767;\n}\n\n.invalid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: 0.25rem 0.5rem;\n margin-top: .1rem;\n font-size: 0.875rem;\n color: #fff;\n background-color: rgba(245, 87, 103, 0.9);\n border-radius: 0.25rem;\n}\n\n.was-validated :invalid ~ .invalid-feedback,\n.was-validated :invalid ~ .invalid-tooltip,\n.is-invalid ~ .invalid-feedback,\n.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .form-control:invalid, .form-control.is-invalid {\n border-color: #F55767;\n padding-right: calc(1.5em + 0.75rem);\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F55767'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23F55767' stroke='none'/%3e%3c/svg%3e\");\n background-repeat: no-repeat;\n background-position: right calc(0.375em + 0.1875rem) center;\n background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n\n.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {\n border-color: #F55767;\n box-shadow: 0 0 0 0.25rem rgba(245, 87, 103, 0.25);\n}\n\n.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {\n padding-right: calc(1.5em + 0.75rem);\n background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);\n}\n\n.was-validated .form-select:invalid, .form-select.is-invalid {\n border-color: #F55767;\n padding-right: 4.125rem;\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23616368' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\"), url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F55767'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23F55767' stroke='none'/%3e%3c/svg%3e\");\n background-position: right 0.75rem center, center right 2.25rem;\n background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n\n.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {\n border-color: #F55767;\n box-shadow: 0 0 0 0.25rem rgba(245, 87, 103, 0.25);\n}\n\n.was-validated .form-check-input:invalid, .form-check-input.is-invalid {\n border-color: #F55767;\n}\n\n.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {\n background-color: #F55767;\n}\n\n.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {\n box-shadow: 0 0 0 0.25rem rgba(245, 87, 103, 0.25);\n}\n\n.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {\n color: #F55767;\n}\n\n.form-check-inline .form-check-input ~ .invalid-feedback {\n margin-left: .5em;\n}\n\n.btn {\n display: inline-block;\n font-weight: 500;\n line-height: 1.5;\n color: #7D7987;\n text-align: center;\n vertical-align: middle;\n cursor: pointer;\n user-select: none;\n background-color: transparent;\n border: 1px solid transparent;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n border-radius: 0.313rem;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .btn {\n transition: none;\n }\n}\n\n.btn:hover {\n color: #7D7987;\n text-decoration: none;\n}\n\n.btn-check:focus + .btn, .btn:focus {\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(31, 58, 99, 0.25);\n}\n\n.btn:disabled, .btn.disabled,\nfieldset:disabled .btn {\n pointer-events: none;\n opacity: 0.65;\n}\n\n.btn-primary {\n color: #fff;\n background-color: #1F3A63;\n border-color: #1F3A63;\n}\n\n.btn-primary:hover {\n color: #fff;\n background-color: #1a3154;\n border-color: #192e4f;\n}\n\n.btn-check:focus + .btn-primary, .btn-primary:focus {\n color: #fff;\n background-color: #1a3154;\n border-color: #192e4f;\n box-shadow: 0 0 0 0 rgba(65, 88, 122, 0.5);\n}\n\n.btn-check:checked + .btn-primary,\n.btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active,\n.show > .btn-primary.dropdown-toggle {\n color: #fff;\n background-color: #192e4f;\n border-color: #172c4a;\n}\n\n.btn-check:checked + .btn-primary:focus,\n.btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus,\n.show > .btn-primary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0 rgba(65, 88, 122, 0.5);\n}\n\n.btn-primary:disabled, .btn-primary.disabled {\n color: #fff;\n background-color: #1F3A63;\n border-color: #1F3A63;\n}\n\n.btn-secondary {\n color: #fff;\n background-color: #4F5665;\n border-color: #4F5665;\n}\n\n.btn-secondary:hover {\n color: #fff;\n background-color: #434956;\n border-color: #3f4551;\n}\n\n.btn-check:focus + .btn-secondary, .btn-secondary:focus {\n color: #fff;\n background-color: #434956;\n border-color: #3f4551;\n box-shadow: 0 0 0 0 rgba(105, 111, 124, 0.5);\n}\n\n.btn-check:checked + .btn-secondary,\n.btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active,\n.show > .btn-secondary.dropdown-toggle {\n color: #fff;\n background-color: #3f4551;\n border-color: #3b414c;\n}\n\n.btn-check:checked + .btn-secondary:focus,\n.btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus,\n.show > .btn-secondary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0 rgba(105, 111, 124, 0.5);\n}\n\n.btn-secondary:disabled, .btn-secondary.disabled {\n color: #fff;\n background-color: #4F5665;\n border-color: #4F5665;\n}\n\n.btn-success {\n color: #fff;\n background-color: #66BB6A;\n border-color: #66BB6A;\n}\n\n.btn-success:hover {\n color: #fff;\n background-color: #579f5a;\n border-color: #529655;\n}\n\n.btn-check:focus + .btn-success, .btn-success:focus {\n color: #fff;\n background-color: #579f5a;\n border-color: #529655;\n box-shadow: 0 0 0 0 rgba(125, 197, 128, 0.5);\n}\n\n.btn-check:checked + .btn-success,\n.btn-check:active + .btn-success, .btn-success:active, .btn-success.active,\n.show > .btn-success.dropdown-toggle {\n color: #fff;\n background-color: #529655;\n border-color: #4d8c50;\n}\n\n.btn-check:checked + .btn-success:focus,\n.btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus,\n.show > .btn-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0 rgba(125, 197, 128, 0.5);\n}\n\n.btn-success:disabled, .btn-success.disabled {\n color: #fff;\n background-color: #66BB6A;\n border-color: #66BB6A;\n}\n\n.btn-info {\n color: #fff;\n background-color: #3EB8F4;\n border-color: #3EB8F4;\n}\n\n.btn-info:hover {\n color: #fff;\n background-color: #359ccf;\n border-color: #3293c3;\n}\n\n.btn-check:focus + .btn-info, .btn-info:focus {\n color: #fff;\n background-color: #359ccf;\n border-color: #3293c3;\n box-shadow: 0 0 0 0 rgba(91, 195, 246, 0.5);\n}\n\n.btn-check:checked + .btn-info,\n.btn-check:active + .btn-info, .btn-info:active, .btn-info.active,\n.show > .btn-info.dropdown-toggle {\n color: #fff;\n background-color: #3293c3;\n border-color: #2f8ab7;\n}\n\n.btn-check:checked + .btn-info:focus,\n.btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus,\n.show > .btn-info.dropdown-toggle:focus {\n box-shadow: 0 0 0 0 rgba(91, 195, 246, 0.5);\n}\n\n.btn-info:disabled, .btn-info.disabled {\n color: #fff;\n background-color: #3EB8F4;\n border-color: #3EB8F4;\n}\n\n.btn-warning {\n color: #fff;\n background-color: #FFA024;\n border-color: #FFA024;\n}\n\n.btn-warning:hover {\n color: #fff;\n background-color: #d9881f;\n border-color: #cc801d;\n}\n\n.btn-check:focus + .btn-warning, .btn-warning:focus {\n color: #fff;\n background-color: #d9881f;\n border-color: #cc801d;\n box-shadow: 0 0 0 0 rgba(255, 174, 69, 0.5);\n}\n\n.btn-check:checked + .btn-warning,\n.btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active,\n.show > .btn-warning.dropdown-toggle {\n color: #fff;\n background-color: #cc801d;\n border-color: #bf781b;\n}\n\n.btn-check:checked + .btn-warning:focus,\n.btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus,\n.show > .btn-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0 rgba(255, 174, 69, 0.5);\n}\n\n.btn-warning:disabled, .btn-warning.disabled {\n color: #fff;\n background-color: #FFA024;\n border-color: #FFA024;\n}\n\n.btn-danger {\n color: #fff;\n background-color: #F55767;\n border-color: #F55767;\n}\n\n.btn-danger:hover {\n color: #fff;\n background-color: #d04a58;\n border-color: #c44652;\n}\n\n.btn-check:focus + .btn-danger, .btn-danger:focus {\n color: #fff;\n background-color: #d04a58;\n border-color: #c44652;\n box-shadow: 0 0 0 0 rgba(247, 112, 126, 0.5);\n}\n\n.btn-check:checked + .btn-danger,\n.btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active,\n.show > .btn-danger.dropdown-toggle {\n color: #fff;\n background-color: #c44652;\n border-color: #b8414d;\n}\n\n.btn-check:checked + .btn-danger:focus,\n.btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus,\n.show > .btn-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0 rgba(247, 112, 126, 0.5);\n}\n\n.btn-danger:disabled, .btn-danger.disabled {\n color: #fff;\n background-color: #F55767;\n border-color: #F55767;\n}\n\n.btn-light {\n color: #616368;\n background-color: #F9FAFD;\n border-color: #F9FAFD;\n}\n\n.btn-light:hover {\n color: #616368;\n background-color: #fafbfd;\n border-color: #fafbfd;\n}\n\n.btn-check:focus + .btn-light, .btn-light:focus {\n color: #616368;\n background-color: #fafbfd;\n border-color: #fafbfd;\n box-shadow: 0 0 0 0 rgba(226, 227, 231, 0.5);\n}\n\n.btn-check:checked + .btn-light,\n.btn-check:active + .btn-light, .btn-light:active, .btn-light.active,\n.show > .btn-light.dropdown-toggle {\n color: #616368;\n background-color: #fafbfd;\n border-color: #fafbfd;\n}\n\n.btn-check:checked + .btn-light:focus,\n.btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus,\n.show > .btn-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0 rgba(226, 227, 231, 0.5);\n}\n\n.btn-light:disabled, .btn-light.disabled {\n color: #616368;\n background-color: #F9FAFD;\n border-color: #F9FAFD;\n}\n\n.btn-dark {\n color: #fff;\n background-color: #1F1534;\n border-color: #1F1534;\n}\n\n.btn-dark:hover {\n color: #fff;\n background-color: #1a122c;\n border-color: #19112a;\n}\n\n.btn-check:focus + .btn-dark, .btn-dark:focus {\n color: #fff;\n background-color: #1a122c;\n border-color: #19112a;\n box-shadow: 0 0 0 0 rgba(65, 56, 82, 0.5);\n}\n\n.btn-check:checked + .btn-dark,\n.btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active,\n.show > .btn-dark.dropdown-toggle {\n color: #fff;\n background-color: #19112a;\n border-color: #171027;\n}\n\n.btn-check:checked + .btn-dark:focus,\n.btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus,\n.show > .btn-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0 rgba(65, 56, 82, 0.5);\n}\n\n.btn-dark:disabled, .btn-dark.disabled {\n color: #fff;\n background-color: #1F1534;\n border-color: #1F1534;\n}\n\n.btn-outline-primary {\n color: #1F3A63;\n border-color: #1F3A63;\n}\n\n.btn-outline-primary:hover {\n color: #fff;\n background-color: #1F3A63;\n border-color: #1F3A63;\n}\n\n.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {\n box-shadow: 0 0 0 0 rgba(31, 58, 99, 0.5);\n}\n\n.btn-check:checked + .btn-outline-primary,\n.btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {\n color: #fff;\n background-color: #1F3A63;\n border-color: #1F3A63;\n}\n\n.btn-check:checked + .btn-outline-primary:focus,\n.btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0 rgba(31, 58, 99, 0.5);\n}\n\n.btn-outline-primary:disabled, .btn-outline-primary.disabled {\n color: #1F3A63;\n background-color: transparent;\n}\n\n.btn-outline-secondary {\n color: #4F5665;\n border-color: #4F5665;\n}\n\n.btn-outline-secondary:hover {\n color: #fff;\n background-color: #4F5665;\n border-color: #4F5665;\n}\n\n.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {\n box-shadow: 0 0 0 0 rgba(79, 86, 101, 0.5);\n}\n\n.btn-check:checked + .btn-outline-secondary,\n.btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {\n color: #fff;\n background-color: #4F5665;\n border-color: #4F5665;\n}\n\n.btn-check:checked + .btn-outline-secondary:focus,\n.btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0 rgba(79, 86, 101, 0.5);\n}\n\n.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {\n color: #4F5665;\n background-color: transparent;\n}\n\n.btn-outline-success {\n color: #66BB6A;\n border-color: #66BB6A;\n}\n\n.btn-outline-success:hover {\n color: #fff;\n background-color: #66BB6A;\n border-color: #66BB6A;\n}\n\n.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {\n box-shadow: 0 0 0 0 rgba(102, 187, 106, 0.5);\n}\n\n.btn-check:checked + .btn-outline-success,\n.btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {\n color: #fff;\n background-color: #66BB6A;\n border-color: #66BB6A;\n}\n\n.btn-check:checked + .btn-outline-success:focus,\n.btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0 rgba(102, 187, 106, 0.5);\n}\n\n.btn-outline-success:disabled, .btn-outline-success.disabled {\n color: #66BB6A;\n background-color: transparent;\n}\n\n.btn-outline-info {\n color: #3EB8F4;\n border-color: #3EB8F4;\n}\n\n.btn-outline-info:hover {\n color: #fff;\n background-color: #3EB8F4;\n border-color: #3EB8F4;\n}\n\n.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {\n box-shadow: 0 0 0 0 rgba(62, 184, 244, 0.5);\n}\n\n.btn-check:checked + .btn-outline-info,\n.btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {\n color: #fff;\n background-color: #3EB8F4;\n border-color: #3EB8F4;\n}\n\n.btn-check:checked + .btn-outline-info:focus,\n.btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0 rgba(62, 184, 244, 0.5);\n}\n\n.btn-outline-info:disabled, .btn-outline-info.disabled {\n color: #3EB8F4;\n background-color: transparent;\n}\n\n.btn-outline-warning {\n color: #FFA024;\n border-color: #FFA024;\n}\n\n.btn-outline-warning:hover {\n color: #fff;\n background-color: #FFA024;\n border-color: #FFA024;\n}\n\n.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {\n box-shadow: 0 0 0 0 rgba(255, 160, 36, 0.5);\n}\n\n.btn-check:checked + .btn-outline-warning,\n.btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {\n color: #fff;\n background-color: #FFA024;\n border-color: #FFA024;\n}\n\n.btn-check:checked + .btn-outline-warning:focus,\n.btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0 rgba(255, 160, 36, 0.5);\n}\n\n.btn-outline-warning:disabled, .btn-outline-warning.disabled {\n color: #FFA024;\n background-color: transparent;\n}\n\n.btn-outline-danger {\n color: #F55767;\n border-color: #F55767;\n}\n\n.btn-outline-danger:hover {\n color: #fff;\n background-color: #F55767;\n border-color: #F55767;\n}\n\n.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {\n box-shadow: 0 0 0 0 rgba(245, 87, 103, 0.5);\n}\n\n.btn-check:checked + .btn-outline-danger,\n.btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {\n color: #fff;\n background-color: #F55767;\n border-color: #F55767;\n}\n\n.btn-check:checked + .btn-outline-danger:focus,\n.btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0 rgba(245, 87, 103, 0.5);\n}\n\n.btn-outline-danger:disabled, .btn-outline-danger.disabled {\n color: #F55767;\n background-color: transparent;\n}\n\n.btn-outline-light {\n color: #F9FAFD;\n border-color: #F9FAFD;\n}\n\n.btn-outline-light:hover {\n color: #616368;\n background-color: #F9FAFD;\n border-color: #F9FAFD;\n}\n\n.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {\n box-shadow: 0 0 0 0 rgba(249, 250, 253, 0.5);\n}\n\n.btn-check:checked + .btn-outline-light,\n.btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {\n color: #616368;\n background-color: #F9FAFD;\n border-color: #F9FAFD;\n}\n\n.btn-check:checked + .btn-outline-light:focus,\n.btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0 rgba(249, 250, 253, 0.5);\n}\n\n.btn-outline-light:disabled, .btn-outline-light.disabled {\n color: #F9FAFD;\n background-color: transparent;\n}\n\n.btn-outline-dark {\n color: #1F1534;\n border-color: #1F1534;\n}\n\n.btn-outline-dark:hover {\n color: #fff;\n background-color: #1F1534;\n border-color: #1F1534;\n}\n\n.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {\n box-shadow: 0 0 0 0 rgba(31, 21, 52, 0.5);\n}\n\n.btn-check:checked + .btn-outline-dark,\n.btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {\n color: #fff;\n background-color: #1F1534;\n border-color: #1F1534;\n}\n\n.btn-check:checked + .btn-outline-dark:focus,\n.btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0 rgba(31, 21, 52, 0.5);\n}\n\n.btn-outline-dark:disabled, .btn-outline-dark.disabled {\n color: #1F1534;\n background-color: transparent;\n}\n\n.btn-link {\n font-weight: 400;\n color: #1F3A63;\n text-decoration: none;\n}\n\n.btn-link:hover {\n color: #192e4f;\n text-decoration: underline;\n}\n\n.btn-link:focus {\n text-decoration: underline;\n}\n\n.btn-link:disabled, .btn-link.disabled {\n color: #C3C1C8;\n}\n\n.btn-lg, .btn-group-lg > .btn {\n padding: 0.6rem 1.7rem;\n font-size: 1rem;\n border-radius: 0.5rem;\n}\n\n.btn-sm, .btn-group-sm > .btn {\n padding: 0.1rem 0.5rem;\n font-size: 0.875rem;\n border-radius: 0.3rem;\n}\n\n.fade {\n transition: opacity 0.15s linear;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fade {\n transition: none;\n }\n}\n\n.fade:not(.show) {\n opacity: 0;\n}\n\n.collapse:not(.show) {\n display: none;\n}\n\n.collapsing {\n height: 0;\n overflow: hidden;\n transition: height 0.35s ease;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .collapsing {\n transition: none;\n }\n}\n\n.dropup,\n.dropend,\n.dropdown,\n.dropstart {\n position: relative;\n}\n\n.dropdown-toggle {\n white-space: nowrap;\n}\n\n.dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid;\n border-right: 0.3em solid transparent;\n border-bottom: 0;\n border-left: 0.3em solid transparent;\n}\n\n.dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropdown-menu {\n position: absolute;\n top: 100%;\n z-index: 1000;\n display: none;\n min-width: 10rem;\n padding: 0.5rem 0;\n margin: 0;\n font-size: 1rem;\n color: #7D7987;\n text-align: left;\n list-style: none;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 0.25rem;\n}\n\n.dropdown-menu[data-bs-popper] {\n left: 0;\n margin-top: 0.125rem;\n}\n\n.dropdown-menu-start {\n --bs-position: start;\n}\n\n.dropdown-menu-start[data-bs-popper] {\n right: auto /* rtl:ignore */;\n left: 0 /* rtl:ignore */;\n}\n\n.dropdown-menu-end {\n --bs-position: end;\n}\n\n.dropdown-menu-end[data-bs-popper] {\n right: 0 /* rtl:ignore */;\n left: auto /* rtl:ignore */;\n}\n\n@media (min-width: 576px) {\n .dropdown-menu-sm-start {\n --bs-position: start;\n }\n .dropdown-menu-sm-start[data-bs-popper] {\n right: auto /* rtl:ignore */;\n left: 0 /* rtl:ignore */;\n }\n .dropdown-menu-sm-end {\n --bs-position: end;\n }\n .dropdown-menu-sm-end[data-bs-popper] {\n right: 0 /* rtl:ignore */;\n left: auto /* rtl:ignore */;\n }\n}\n\n@media (min-width: 768px) {\n .dropdown-menu-md-start {\n --bs-position: start;\n }\n .dropdown-menu-md-start[data-bs-popper] {\n right: auto /* rtl:ignore */;\n left: 0 /* rtl:ignore */;\n }\n .dropdown-menu-md-end {\n --bs-position: end;\n }\n .dropdown-menu-md-end[data-bs-popper] {\n right: 0 /* rtl:ignore */;\n left: auto /* rtl:ignore */;\n }\n}\n\n@media (min-width: 992px) {\n .dropdown-menu-lg-start {\n --bs-position: start;\n }\n .dropdown-menu-lg-start[data-bs-popper] {\n right: auto /* rtl:ignore */;\n left: 0 /* rtl:ignore */;\n }\n .dropdown-menu-lg-end {\n --bs-position: end;\n }\n .dropdown-menu-lg-end[data-bs-popper] {\n right: 0 /* rtl:ignore */;\n left: auto /* rtl:ignore */;\n }\n}\n\n@media (min-width: 1200px) {\n .dropdown-menu-xl-start {\n --bs-position: start;\n }\n .dropdown-menu-xl-start[data-bs-popper] {\n right: auto /* rtl:ignore */;\n left: 0 /* rtl:ignore */;\n }\n .dropdown-menu-xl-end {\n --bs-position: end;\n }\n .dropdown-menu-xl-end[data-bs-popper] {\n right: 0 /* rtl:ignore */;\n left: auto /* rtl:ignore */;\n }\n}\n\n@media (min-width: 1540px) {\n .dropdown-menu-xxl-start {\n --bs-position: start;\n }\n .dropdown-menu-xxl-start[data-bs-popper] {\n right: auto /* rtl:ignore */;\n left: 0 /* rtl:ignore */;\n }\n .dropdown-menu-xxl-end {\n --bs-position: end;\n }\n .dropdown-menu-xxl-end[data-bs-popper] {\n right: 0 /* rtl:ignore */;\n left: auto /* rtl:ignore */;\n }\n}\n\n.dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n}\n\n.dropup .dropdown-menu[data-bs-popper] {\n margin-top: 0;\n margin-bottom: 0.125rem;\n}\n\n.dropup .dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0;\n border-right: 0.3em solid transparent;\n border-bottom: 0.3em solid;\n border-left: 0.3em solid transparent;\n}\n\n.dropup .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropend .dropdown-menu {\n top: 0;\n right: auto;\n left: 100%;\n}\n\n.dropend .dropdown-menu[data-bs-popper] {\n margin-top: 0;\n margin-left: 0.125rem;\n}\n\n.dropend .dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0;\n border-bottom: 0.3em solid transparent;\n border-left: 0.3em solid;\n}\n\n.dropend .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropend .dropdown-toggle::after {\n vertical-align: 0;\n}\n\n.dropstart .dropdown-menu {\n top: 0;\n right: 100%;\n left: auto;\n}\n\n.dropstart .dropdown-menu[data-bs-popper] {\n margin-top: 0;\n margin-right: 0.125rem;\n}\n\n.dropstart .dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n}\n\n.dropstart .dropdown-toggle::after {\n display: none;\n}\n\n.dropstart .dropdown-toggle::before {\n display: inline-block;\n margin-right: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0.3em solid;\n border-bottom: 0.3em solid transparent;\n}\n\n.dropstart .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropstart .dropdown-toggle::before {\n vertical-align: 0;\n}\n\n.dropdown-divider {\n height: 0;\n margin: 0.5rem 0;\n overflow: hidden;\n border-top: 1px solid rgba(0, 0, 0, 0.15);\n}\n\n.dropdown-item {\n display: block;\n width: 100%;\n padding: 0.25rem 1rem;\n clear: both;\n font-weight: 400;\n color: #4F5665;\n text-align: inherit;\n white-space: nowrap;\n background-color: transparent;\n border: 0;\n}\n\n.dropdown-item:hover, .dropdown-item:focus {\n color: #474d5b;\n text-decoration: none;\n background-color: #EBEBED;\n}\n\n.dropdown-item.active, .dropdown-item:active {\n color: #fff;\n text-decoration: none;\n background-color: #1F3A63;\n}\n\n.dropdown-item.disabled, .dropdown-item:disabled {\n color: #CDCCD1;\n pointer-events: none;\n background-color: transparent;\n}\n\n.dropdown-menu.show {\n display: block;\n}\n\n.dropdown-header {\n display: block;\n padding: 0.5rem 1rem;\n margin-bottom: 0;\n font-size: 0.875rem;\n color: #C3C1C8;\n white-space: nowrap;\n}\n\n.dropdown-item-text {\n display: block;\n padding: 0.25rem 1rem;\n color: #4F5665;\n}\n\n.dropdown-menu-dark {\n color: #E1E0E4;\n background-color: #616368;\n border-color: rgba(0, 0, 0, 0.15);\n}\n\n.dropdown-menu-dark .dropdown-item {\n color: #E1E0E4;\n}\n\n.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {\n color: #fff;\n background-color: rgba(255, 255, 255, 0.15);\n}\n\n.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {\n color: #fff;\n background-color: #1F3A63;\n}\n\n.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {\n color: #CDCCD1;\n}\n\n.dropdown-menu-dark .dropdown-divider {\n border-color: rgba(0, 0, 0, 0.15);\n}\n\n.dropdown-menu-dark .dropdown-item-text {\n color: #E1E0E4;\n}\n\n.dropdown-menu-dark .dropdown-header {\n color: #CDCCD1;\n}\n\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-flex;\n vertical-align: middle;\n}\n\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n flex: 1 1 auto;\n}\n\n.btn-group > .btn-check:checked + .btn,\n.btn-group > .btn-check:focus + .btn,\n.btn-group > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn-check:checked + .btn,\n.btn-group-vertical > .btn-check:focus + .btn,\n.btn-group-vertical > .btn:hover,\n.btn-group-vertical > .btn:focus,\n.btn-group-vertical > .btn:active,\n.btn-group-vertical > .btn.active {\n z-index: 1;\n}\n\n.btn-toolbar {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start;\n}\n\n.btn-toolbar .input-group {\n width: auto;\n}\n\n.btn-group > .btn:not(:first-child),\n.btn-group > .btn-group:not(:first-child) {\n margin-left: -1px;\n}\n\n.btn-group > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group > .btn-group:not(:last-child) > .btn {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.btn-group > .btn:nth-child(n + 3),\n.btn-group > :not(.btn-check) + .btn,\n.btn-group > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.dropdown-toggle-split {\n padding-right: 0.5625rem;\n padding-left: 0.5625rem;\n}\n\n.dropdown-toggle-split::after,\n.dropup .dropdown-toggle-split::after,\n.dropend .dropdown-toggle-split::after {\n margin-left: 0;\n}\n\n.dropstart .dropdown-toggle-split::before {\n margin-right: 0;\n}\n\n.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {\n padding-right: 0.375rem;\n padding-left: 0.375rem;\n}\n\n.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {\n padding-right: 1.275rem;\n padding-left: 1.275rem;\n}\n\n.btn-group-vertical {\n flex-direction: column;\n align-items: flex-start;\n justify-content: center;\n}\n\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group {\n width: 100%;\n}\n\n.btn-group-vertical > .btn:not(:first-child),\n.btn-group-vertical > .btn-group:not(:first-child) {\n margin-top: -1px;\n}\n\n.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group-vertical > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.btn-group-vertical > .btn ~ .btn,\n.btn-group-vertical > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.nav {\n display: flex;\n flex-wrap: wrap;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.nav-link {\n display: block;\n padding: 0.5rem 1rem;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .nav-link {\n transition: none;\n }\n}\n\n.nav-link:hover, .nav-link:focus {\n text-decoration: none;\n}\n\n.nav-link.disabled {\n color: #C3C1C8;\n pointer-events: none;\n cursor: default;\n}\n\n.nav-tabs {\n border-bottom: 1px solid #E1E0E4;\n}\n\n.nav-tabs .nav-link {\n margin-bottom: -1px;\n background: none;\n border: 1px solid transparent;\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {\n border-color: #EBEBED #EBEBED #E1E0E4;\n isolation: isolate;\n}\n\n.nav-tabs .nav-link.disabled {\n color: #C3C1C8;\n background-color: transparent;\n border-color: transparent;\n}\n\n.nav-tabs .nav-link.active,\n.nav-tabs .nav-item.show .nav-link {\n color: #7D7987;\n background-color: #fff;\n border-color: #E1E0E4 #E1E0E4 #fff;\n}\n\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.nav-pills .nav-link {\n background: none;\n border: 0;\n border-radius: 0.25rem;\n}\n\n.nav-pills .nav-link.active,\n.nav-pills .show > .nav-link {\n color: #fff;\n background-color: #1F3A63;\n}\n\n.nav-fill > .nav-link,\n.nav-fill .nav-item {\n flex: 1 1 auto;\n text-align: center;\n}\n\n.nav-justified > .nav-link,\n.nav-justified .nav-item {\n flex-basis: 0;\n flex-grow: 1;\n text-align: center;\n}\n\n.tab-content > .tab-pane {\n display: none;\n}\n\n.tab-content > .active {\n display: block;\n}\n\n.navbar {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: space-between;\n padding-top: 0.5rem;\n padding-right: 1rem;\n padding-bottom: 0.5rem;\n padding-left: 1rem;\n}\n\n.navbar > .container,\n.navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl {\n display: flex;\n flex-wrap: inherit;\n align-items: center;\n justify-content: space-between;\n}\n\n.navbar-brand {\n padding-top: -0.046rem;\n padding-bottom: -0.046rem;\n margin-right: 1rem;\n font-size: calc(1.2978rem + 0.5736vw);\n white-space: nowrap;\n}\n\n@media (min-width: 1200px) {\n .navbar-brand {\n font-size: 1.728rem;\n }\n}\n\n.navbar-brand:hover, .navbar-brand:focus {\n text-decoration: none;\n}\n\n.navbar-nav {\n display: flex;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.navbar-nav .nav-link {\n padding-right: 0;\n padding-left: 0;\n}\n\n.navbar-nav .dropdown-menu {\n position: static;\n}\n\n.navbar-text {\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n}\n\n.navbar-collapse {\n flex-basis: 100%;\n flex-grow: 1;\n align-items: center;\n}\n\n.navbar-toggler {\n padding: 0.25rem 0.75rem;\n font-size: 1.2rem;\n line-height: 1;\n background-color: transparent;\n border: 1px solid transparent;\n border-radius: 0.313rem;\n transition: box-shadow 0.15s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .navbar-toggler {\n transition: none;\n }\n}\n\n.navbar-toggler:hover {\n text-decoration: none;\n}\n\n.navbar-toggler:focus {\n text-decoration: none;\n outline: 0;\n box-shadow: 0 0 0 0;\n}\n\n.navbar-toggler-icon {\n display: inline-block;\n width: 1.5em;\n height: 1.5em;\n vertical-align: middle;\n background-repeat: no-repeat;\n background-position: center;\n background-size: 100%;\n}\n\n.navbar-nav-scroll {\n max-height: var(--bs-scroll-height, 75vh);\n overflow-y: auto;\n}\n\n@media (min-width: 576px) {\n .navbar-expand-sm {\n flex-wrap: nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-sm .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-sm .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-sm .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-sm .navbar-nav-scroll {\n overflow: visible;\n }\n .navbar-expand-sm .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-sm .navbar-toggler {\n display: none;\n }\n}\n\n@media (min-width: 768px) {\n .navbar-expand-md {\n flex-wrap: nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-md .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-md .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-md .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-md .navbar-nav-scroll {\n overflow: visible;\n }\n .navbar-expand-md .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-md .navbar-toggler {\n display: none;\n }\n}\n\n@media (min-width: 992px) {\n .navbar-expand-lg {\n flex-wrap: nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-lg .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-lg .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-lg .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-lg .navbar-nav-scroll {\n overflow: visible;\n }\n .navbar-expand-lg .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-lg .navbar-toggler {\n display: none;\n }\n}\n\n@media (min-width: 1200px) {\n .navbar-expand-xl {\n flex-wrap: nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-xl .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-xl .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-xl .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-xl .navbar-nav-scroll {\n overflow: visible;\n }\n .navbar-expand-xl .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-xl .navbar-toggler {\n display: none;\n }\n}\n\n@media (min-width: 1540px) {\n .navbar-expand-xxl {\n flex-wrap: nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-xxl .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-xxl .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-xxl .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-xxl .navbar-nav-scroll {\n overflow: visible;\n }\n .navbar-expand-xxl .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-xxl .navbar-toggler {\n display: none;\n }\n}\n\n.navbar-expand {\n flex-wrap: nowrap;\n justify-content: flex-start;\n}\n\n.navbar-expand .navbar-nav {\n flex-direction: row;\n}\n\n.navbar-expand .navbar-nav .dropdown-menu {\n position: absolute;\n}\n\n.navbar-expand .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n}\n\n.navbar-expand .navbar-nav-scroll {\n overflow: visible;\n}\n\n.navbar-expand .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n}\n\n.navbar-expand .navbar-toggler {\n display: none;\n}\n\n.navbar-light .navbar-brand {\n color: #1F1534;\n}\n\n.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {\n color: #1F1534;\n}\n\n.navbar-light .navbar-nav .nav-link {\n color: rgba(0, 0, 0, 0.95);\n}\n\n.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {\n color: rgba(0, 0, 0, 0.95);\n}\n\n.navbar-light .navbar-nav .nav-link.disabled {\n color: rgba(0, 0, 0, 0.25);\n}\n\n.navbar-light .navbar-nav .show > .nav-link,\n.navbar-light .navbar-nav .nav-link.active {\n color: #1F1534;\n}\n\n.navbar-light .navbar-toggler {\n color: rgba(0, 0, 0, 0.95);\n border-color: rgba(0, 0, 0, 0.1);\n}\n\n.navbar-light .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.95%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M0 6h30M0 14h30M0 22h30'/%3E%3C/svg%3E\");\n}\n\n.navbar-light .navbar-text {\n color: rgba(0, 0, 0, 0.95);\n}\n\n.navbar-light .navbar-text a,\n.navbar-light .navbar-text a:hover,\n.navbar-light .navbar-text a:focus {\n color: #1F1534;\n}\n\n.navbar-dark .navbar-brand {\n color: #fff;\n}\n\n.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {\n color: #fff;\n}\n\n.navbar-dark .navbar-nav .nav-link {\n color: rgba(255, 255, 255, 0.7);\n}\n\n.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {\n color: rgba(255, 255, 255, 0.9);\n}\n\n.navbar-dark .navbar-nav .nav-link.disabled {\n color: rgba(255, 255, 255, 0.25);\n}\n\n.navbar-dark .navbar-nav .show > .nav-link,\n.navbar-dark .navbar-nav .nav-link.active {\n color: #fff;\n}\n\n.navbar-dark .navbar-toggler {\n color: rgba(255, 255, 255, 0.7);\n border-color: rgba(255, 255, 255, 0.1);\n}\n\n.navbar-dark .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\");\n}\n\n.navbar-dark .navbar-text {\n color: rgba(255, 255, 255, 0.7);\n}\n\n.navbar-dark .navbar-text a,\n.navbar-dark .navbar-text a:hover,\n.navbar-dark .navbar-text a:focus {\n color: #fff;\n}\n\n.card {\n position: relative;\n display: flex;\n flex-direction: column;\n min-width: 0;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: border-box;\n border: 0 solid rgba(0, 0, 0, 0.125);\n border-radius: 0.25rem;\n}\n\n.card > hr {\n margin-right: 0;\n margin-left: 0;\n}\n\n.card > .list-group {\n border-top: inherit;\n border-bottom: inherit;\n}\n\n.card > .list-group:first-child {\n border-top-width: 0;\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.card > .list-group:last-child {\n border-bottom-width: 0;\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.card > .card-header + .list-group,\n.card > .list-group + .card-footer {\n border-top: 0;\n}\n\n.card-body {\n flex: 1 1 auto;\n padding: 1rem 1rem;\n}\n\n.card-title {\n margin-bottom: 0.5rem;\n}\n\n.card-subtitle {\n margin-top: -0.25rem;\n margin-bottom: 0;\n}\n\n.card-text:last-child {\n margin-bottom: 0;\n}\n\n.card-link:hover {\n text-decoration: none;\n}\n\n.card-link + .card-link {\n margin-left: 1rem /* rtl:ignore */;\n}\n\n.card-header {\n padding: 0.5rem 1rem;\n margin-bottom: 0;\n background-color: rgba(0, 0, 0, 0.03);\n border-bottom: 0 solid rgba(0, 0, 0, 0.125);\n}\n\n.card-header:first-child {\n border-radius: 0.25rem 0.25rem 0 0;\n}\n\n.card-footer {\n padding: 0.5rem 1rem;\n background-color: rgba(0, 0, 0, 0.03);\n border-top: 0 solid rgba(0, 0, 0, 0.125);\n}\n\n.card-footer:last-child {\n border-radius: 0 0 0.25rem 0.25rem;\n}\n\n.card-header-tabs {\n margin-right: -0.5rem;\n margin-bottom: -0.5rem;\n margin-left: -0.5rem;\n border-bottom: 0;\n}\n\n.card-header-pills {\n margin-right: -0.5rem;\n margin-left: -0.5rem;\n}\n\n.card-img-overlay {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n padding: 1rem;\n border-radius: 0.25rem;\n}\n\n.card-img,\n.card-img-top,\n.card-img-bottom {\n width: 100%;\n}\n\n.card-img,\n.card-img-top {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.card-img,\n.card-img-bottom {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.card-group > .card {\n margin-bottom: 1rem;\n}\n\n@media (min-width: 576px) {\n .card-group {\n display: flex;\n flex-flow: row wrap;\n }\n .card-group > .card {\n flex: 1 0 0%;\n margin-bottom: 0;\n }\n .card-group > .card + .card {\n margin-left: 0;\n border-left: 0;\n }\n .card-group > .card:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n }\n .card-group > .card:not(:last-child) .card-img-top,\n .card-group > .card:not(:last-child) .card-header {\n border-top-right-radius: 0;\n }\n .card-group > .card:not(:last-child) .card-img-bottom,\n .card-group > .card:not(:last-child) .card-footer {\n border-bottom-right-radius: 0;\n }\n .card-group > .card:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n }\n .card-group > .card:not(:first-child) .card-img-top,\n .card-group > .card:not(:first-child) .card-header {\n border-top-left-radius: 0;\n }\n .card-group > .card:not(:first-child) .card-img-bottom,\n .card-group > .card:not(:first-child) .card-footer {\n border-bottom-left-radius: 0;\n }\n}\n\n.breadcrumb {\n display: flex;\n flex-wrap: wrap;\n padding: 0 0;\n margin-bottom: 1rem;\n list-style: none;\n}\n\n.breadcrumb-item + .breadcrumb-item {\n padding-left: 0.5rem;\n}\n\n.breadcrumb-item + .breadcrumb-item::before {\n float: left;\n padding-right: 0.5rem;\n color: #C3C1C8;\n content: var(--bs-breadcrumb-divider, \"/\") /* rtl: var(--bs-breadcrumb-divider, \"/\") */;\n}\n\n.breadcrumb-item.active {\n color: #C3C1C8;\n}\n\n.pagination {\n display: flex;\n padding-left: 0;\n list-style: none;\n}\n\n.page-link {\n position: relative;\n display: block;\n color: #1F3A63;\n background-color: #fff;\n border: 1px solid #E1E0E4;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .page-link {\n transition: none;\n }\n}\n\n.page-link:hover {\n z-index: 2;\n color: #192e4f;\n text-decoration: none;\n background-color: #EBEBED;\n border-color: #E1E0E4;\n}\n\n.page-link:focus {\n z-index: 3;\n color: #192e4f;\n background-color: #EBEBED;\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(31, 58, 99, 0.25);\n}\n\n.page-item:not(:first-child) .page-link {\n margin-left: -1px;\n}\n\n.page-item.active .page-link {\n z-index: 3;\n color: #fff;\n background-color: #1F3A63;\n border-color: #1F3A63;\n}\n\n.page-item.disabled .page-link {\n color: #C3C1C8;\n pointer-events: none;\n background-color: #fff;\n border-color: #E1E0E4;\n}\n\n.page-link {\n padding: 0.375rem 0.75rem;\n}\n\n.page-item:first-child .page-link {\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.page-item:last-child .page-link {\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n}\n\n.pagination-lg .page-link {\n padding: 0.75rem 1.5rem;\n font-size: 1.2rem;\n}\n\n.pagination-lg .page-item:first-child .page-link {\n border-top-left-radius: 0.5rem;\n border-bottom-left-radius: 0.5rem;\n}\n\n.pagination-lg .page-item:last-child .page-link {\n border-top-right-radius: 0.5rem;\n border-bottom-right-radius: 0.5rem;\n}\n\n.pagination-sm .page-link {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n}\n\n.pagination-sm .page-item:first-child .page-link {\n border-top-left-radius: 0.3rem;\n border-bottom-left-radius: 0.3rem;\n}\n\n.pagination-sm .page-item:last-child .page-link {\n border-top-right-radius: 0.3rem;\n border-bottom-right-radius: 0.3rem;\n}\n\n.badge {\n display: inline-block;\n padding: 0.35em 0.65em;\n font-size: 0.75em;\n font-weight: 700;\n line-height: 1;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: 0.25rem;\n}\n\n.badge:empty {\n display: none;\n}\n\n.btn .badge {\n position: relative;\n top: -1px;\n}\n\n.alert {\n position: relative;\n padding: 1rem 1rem;\n margin-bottom: 1rem;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n}\n\n.alert-heading {\n color: inherit;\n}\n\n.alert-link {\n font-weight: 700;\n}\n\n.alert-dismissible {\n padding-right: 3rem;\n}\n\n.alert-dismissible .btn-close {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2;\n padding: 1.25rem 1rem;\n}\n\n.alert-primary {\n color: #13233b;\n background-color: #d2d8e0;\n border-color: #bcc4d0;\n}\n\n.alert-primary .alert-link {\n color: #0f1c2f;\n}\n\n.alert-secondary {\n color: #2f343d;\n background-color: #dcdde0;\n border-color: #caccd1;\n}\n\n.alert-secondary .alert-link {\n color: #262a31;\n}\n\n.alert-success {\n color: #3d7040;\n background-color: #e0f1e1;\n border-color: #d1ebd2;\n}\n\n.alert-success .alert-link {\n color: #315a33;\n}\n\n.alert-info {\n color: #256e92;\n background-color: #d8f1fd;\n border-color: #c5eafc;\n}\n\n.alert-info .alert-link {\n color: #1e5875;\n}\n\n.alert-warning {\n color: #996016;\n background-color: #ffecd3;\n border-color: #ffe3bd;\n}\n\n.alert-warning .alert-link {\n color: #7a4d12;\n}\n\n.alert-danger {\n color: #93343e;\n background-color: #fddde1;\n border-color: #fccdd1;\n}\n\n.alert-danger .alert-link {\n color: #762a32;\n}\n\n.alert-light {\n color: #959698;\n background-color: #fefeff;\n border-color: #fdfefe;\n}\n\n.alert-light .alert-link {\n color: #77787a;\n}\n\n.alert-dark {\n color: #130d1f;\n background-color: #d2d0d6;\n border-color: #bcb9c2;\n}\n\n.alert-dark .alert-link {\n color: #0f0a19;\n}\n\n@keyframes progress-bar-stripes {\n 0% {\n background-position-x: 1rem;\n }\n}\n\n.progress {\n display: flex;\n height: 1rem;\n overflow: hidden;\n font-size: 0.75rem;\n background-color: #EBEBED;\n border-radius: 0.25rem;\n}\n\n.progress-bar {\n display: flex;\n flex-direction: column;\n justify-content: center;\n overflow: hidden;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n background-color: #1F3A63;\n transition: width 0.6s ease;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .progress-bar {\n transition: none;\n }\n}\n\n.progress-bar-striped {\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-size: 1rem 1rem;\n}\n\n.progress-bar-animated {\n animation: 1s linear infinite progress-bar-stripes;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .progress-bar-animated {\n animation: none;\n }\n}\n\n.list-group {\n display: flex;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n border-radius: 0.25rem;\n}\n\n.list-group-item-action {\n width: 100%;\n color: #7D7987;\n text-align: inherit;\n}\n\n.list-group-item-action:hover, .list-group-item-action:focus {\n z-index: 1;\n color: #7D7987;\n text-decoration: none;\n background-color: #F5F7FA;\n}\n\n.list-group-item-action:active {\n color: #7D7987;\n background-color: #EBEBED;\n}\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 0.5rem 1rem;\n background-color: #fff;\n border: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.list-group-item:first-child {\n border-top-left-radius: inherit;\n border-top-right-radius: inherit;\n}\n\n.list-group-item:last-child {\n border-bottom-right-radius: inherit;\n border-bottom-left-radius: inherit;\n}\n\n.list-group-item.disabled, .list-group-item:disabled {\n color: #C3C1C8;\n pointer-events: none;\n background-color: #fff;\n}\n\n.list-group-item.active {\n z-index: 2;\n color: #fff;\n background-color: #1F3A63;\n border-color: #1F3A63;\n}\n\n.list-group-item + .list-group-item {\n border-top-width: 0;\n}\n\n.list-group-item + .list-group-item.active {\n margin-top: -1px;\n border-top-width: 1px;\n}\n\n.list-group-horizontal {\n flex-direction: row;\n}\n\n.list-group-horizontal > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n}\n\n.list-group-horizontal > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n}\n\n.list-group-horizontal > .list-group-item.active {\n margin-top: 0;\n}\n\n.list-group-horizontal > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0;\n}\n\n.list-group-horizontal > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px;\n}\n\n@media (min-width: 576px) {\n .list-group-horizontal-sm {\n flex-direction: row;\n }\n .list-group-horizontal-sm > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-sm > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n .list-group-horizontal-sm > .list-group-item.active {\n margin-top: 0;\n }\n .list-group-horizontal-sm > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0;\n }\n .list-group-horizontal-sm > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px;\n }\n}\n\n@media (min-width: 768px) {\n .list-group-horizontal-md {\n flex-direction: row;\n }\n .list-group-horizontal-md > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-md > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n .list-group-horizontal-md > .list-group-item.active {\n margin-top: 0;\n }\n .list-group-horizontal-md > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0;\n }\n .list-group-horizontal-md > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px;\n }\n}\n\n@media (min-width: 992px) {\n .list-group-horizontal-lg {\n flex-direction: row;\n }\n .list-group-horizontal-lg > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-lg > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n .list-group-horizontal-lg > .list-group-item.active {\n margin-top: 0;\n }\n .list-group-horizontal-lg > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0;\n }\n .list-group-horizontal-lg > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px;\n }\n}\n\n@media (min-width: 1200px) {\n .list-group-horizontal-xl {\n flex-direction: row;\n }\n .list-group-horizontal-xl > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-xl > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n .list-group-horizontal-xl > .list-group-item.active {\n margin-top: 0;\n }\n .list-group-horizontal-xl > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0;\n }\n .list-group-horizontal-xl > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px;\n }\n}\n\n@media (min-width: 1540px) {\n .list-group-horizontal-xxl {\n flex-direction: row;\n }\n .list-group-horizontal-xxl > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-xxl > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n .list-group-horizontal-xxl > .list-group-item.active {\n margin-top: 0;\n }\n .list-group-horizontal-xxl > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0;\n }\n .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px;\n }\n}\n\n.list-group-flush {\n border-radius: 0;\n}\n\n.list-group-flush > .list-group-item {\n border-width: 0 0 1px;\n}\n\n.list-group-flush > .list-group-item:last-child {\n border-bottom-width: 0;\n}\n\n.list-group-item-primary {\n color: #13233b;\n background-color: #d2d8e0;\n}\n\n.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {\n color: #13233b;\n background-color: #bdc2ca;\n}\n\n.list-group-item-primary.list-group-item-action.active {\n color: #fff;\n background-color: #13233b;\n border-color: #13233b;\n}\n\n.list-group-item-secondary {\n color: #2f343d;\n background-color: #dcdde0;\n}\n\n.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {\n color: #2f343d;\n background-color: #c6c7ca;\n}\n\n.list-group-item-secondary.list-group-item-action.active {\n color: #fff;\n background-color: #2f343d;\n border-color: #2f343d;\n}\n\n.list-group-item-success {\n color: #3d7040;\n background-color: #e0f1e1;\n}\n\n.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {\n color: #3d7040;\n background-color: #cad9cb;\n}\n\n.list-group-item-success.list-group-item-action.active {\n color: #fff;\n background-color: #3d7040;\n border-color: #3d7040;\n}\n\n.list-group-item-info {\n color: #256e92;\n background-color: #d8f1fd;\n}\n\n.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {\n color: #256e92;\n background-color: #c2d9e4;\n}\n\n.list-group-item-info.list-group-item-action.active {\n color: #fff;\n background-color: #256e92;\n border-color: #256e92;\n}\n\n.list-group-item-warning {\n color: #996016;\n background-color: #ffecd3;\n}\n\n.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {\n color: #996016;\n background-color: #e6d4be;\n}\n\n.list-group-item-warning.list-group-item-action.active {\n color: #fff;\n background-color: #996016;\n border-color: #996016;\n}\n\n.list-group-item-danger {\n color: #93343e;\n background-color: #fddde1;\n}\n\n.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {\n color: #93343e;\n background-color: #e4c7cb;\n}\n\n.list-group-item-danger.list-group-item-action.active {\n color: #fff;\n background-color: #93343e;\n border-color: #93343e;\n}\n\n.list-group-item-light {\n color: #959698;\n background-color: #fefeff;\n}\n\n.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {\n color: #959698;\n background-color: #e5e5e6;\n}\n\n.list-group-item-light.list-group-item-action.active {\n color: #fff;\n background-color: #959698;\n border-color: #959698;\n}\n\n.list-group-item-dark {\n color: #130d1f;\n background-color: #d2d0d6;\n}\n\n.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {\n color: #130d1f;\n background-color: #bdbbc1;\n}\n\n.list-group-item-dark.list-group-item-action.active {\n color: #fff;\n background-color: #130d1f;\n border-color: #130d1f;\n}\n\n.btn-close {\n box-sizing: content-box;\n width: 1em;\n height: 1em;\n padding: 0.25em 0.25em;\n color: #000;\n background: transparent url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e\") center/1em auto no-repeat;\n border: 0;\n border-radius: 0.25rem;\n opacity: 0.5;\n}\n\n.btn-close:hover {\n color: #000;\n text-decoration: none;\n opacity: 0.75;\n}\n\n.btn-close:focus {\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(31, 58, 99, 0.25);\n opacity: 1;\n}\n\n.btn-close:disabled, .btn-close.disabled {\n pointer-events: none;\n user-select: none;\n opacity: 0.25;\n}\n\n.btn-close-white {\n filter: invert(1) grayscale(100%) brightness(200%);\n}\n\n.toast {\n width: 350px;\n max-width: 100%;\n font-size: 0.875rem;\n pointer-events: auto;\n background-color: rgba(255, 255, 255, 0.85);\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.1);\n box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);\n border-radius: 0.25rem;\n}\n\n.toast:not(.showing):not(.show) {\n opacity: 0;\n}\n\n.toast.hide {\n display: none;\n}\n\n.toast-container {\n width: max-content;\n max-width: 100%;\n pointer-events: none;\n}\n\n.toast-container > :not(:last-child) {\n margin-bottom: 1rem;\n}\n\n.toast-header {\n display: flex;\n align-items: center;\n padding: 0.5rem 0.75rem;\n color: #C3C1C8;\n background-color: rgba(255, 255, 255, 0.85);\n background-clip: padding-box;\n border-bottom: 1px solid rgba(0, 0, 0, 0.05);\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px);\n}\n\n.toast-header .btn-close {\n margin-right: -0.375rem;\n margin-left: 0.75rem;\n}\n\n.toast-body {\n padding: 0.75rem;\n word-wrap: break-word;\n}\n\n.modal-open {\n overflow: hidden;\n}\n\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n\n.modal {\n position: fixed;\n top: 0;\n left: 0;\n z-index: 1050;\n display: none;\n width: 100%;\n height: 100%;\n overflow: hidden;\n outline: 0;\n}\n\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 0.5rem;\n pointer-events: none;\n}\n\n.modal.fade .modal-dialog {\n transition: transform 0.3s ease-out;\n transform: translate(0, -50px);\n}\n\n@media (prefers-reduced-motion: reduce) {\n .modal.fade .modal-dialog {\n transition: none;\n }\n}\n\n.modal.show .modal-dialog {\n transform: none;\n}\n\n.modal.modal-static .modal-dialog {\n transform: scale(1.02);\n}\n\n.modal-dialog-scrollable {\n height: calc(100% - 1rem);\n}\n\n.modal-dialog-scrollable .modal-content {\n max-height: 100%;\n overflow: hidden;\n}\n\n.modal-dialog-scrollable .modal-body {\n overflow-y: auto;\n}\n\n.modal-dialog-centered {\n display: flex;\n align-items: center;\n min-height: calc(100% - 1rem);\n}\n\n.modal-content {\n position: relative;\n display: flex;\n flex-direction: column;\n width: 100%;\n pointer-events: auto;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 0.5rem;\n outline: 0;\n}\n\n.modal-backdrop {\n position: fixed;\n top: 0;\n left: 0;\n z-index: 1040;\n width: 100vw;\n height: 100vh;\n background-color: #000;\n}\n\n.modal-backdrop.fade {\n opacity: 0;\n}\n\n.modal-backdrop.show {\n opacity: 0.5;\n}\n\n.modal-header {\n display: flex;\n flex-shrink: 0;\n align-items: center;\n justify-content: space-between;\n padding: 1rem 1rem;\n border-bottom: 1px solid #E1E0E4;\n border-top-left-radius: calc(0.5rem - 1px);\n border-top-right-radius: calc(0.5rem - 1px);\n}\n\n.modal-header .btn-close {\n padding: 0.5rem 0.5rem;\n margin: -0.5rem -0.5rem -0.5rem auto;\n}\n\n.modal-title {\n margin-bottom: 0;\n line-height: 1.5;\n}\n\n.modal-body {\n position: relative;\n flex: 1 1 auto;\n padding: 1rem;\n}\n\n.modal-footer {\n display: flex;\n flex-wrap: wrap;\n flex-shrink: 0;\n align-items: center;\n justify-content: flex-end;\n padding: 0.75rem;\n border-top: 1px solid #E1E0E4;\n border-bottom-right-radius: calc(0.5rem - 1px);\n border-bottom-left-radius: calc(0.5rem - 1px);\n}\n\n.modal-footer > * {\n margin: 0.25rem;\n}\n\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n\n@media (min-width: 576px) {\n .modal-dialog {\n max-width: 500px;\n margin: 1.75rem auto;\n }\n .modal-dialog-scrollable {\n height: calc(100% - 3.5rem);\n }\n .modal-dialog-centered {\n min-height: calc(100% - 3.5rem);\n }\n .modal-sm {\n max-width: 300px;\n }\n}\n\n@media (min-width: 992px) {\n .modal-lg,\n .modal-xl {\n max-width: 800px;\n }\n}\n\n@media (min-width: 1200px) {\n .modal-xl {\n max-width: 1140px;\n }\n}\n\n.modal-fullscreen {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n}\n\n.modal-fullscreen .modal-content {\n height: 100%;\n border: 0;\n border-radius: 0;\n}\n\n.modal-fullscreen .modal-header {\n border-radius: 0;\n}\n\n.modal-fullscreen .modal-body {\n overflow-y: auto;\n}\n\n.modal-fullscreen .modal-footer {\n border-radius: 0;\n}\n\n@media (max-width: 575.98px) {\n .modal-fullscreen-sm-down {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n }\n .modal-fullscreen-sm-down .modal-content {\n height: 100%;\n border: 0;\n border-radius: 0;\n }\n .modal-fullscreen-sm-down .modal-header {\n border-radius: 0;\n }\n .modal-fullscreen-sm-down .modal-body {\n overflow-y: auto;\n }\n .modal-fullscreen-sm-down .modal-footer {\n border-radius: 0;\n }\n}\n\n@media (max-width: 767.98px) {\n .modal-fullscreen-md-down {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n }\n .modal-fullscreen-md-down .modal-content {\n height: 100%;\n border: 0;\n border-radius: 0;\n }\n .modal-fullscreen-md-down .modal-header {\n border-radius: 0;\n }\n .modal-fullscreen-md-down .modal-body {\n overflow-y: auto;\n }\n .modal-fullscreen-md-down .modal-footer {\n border-radius: 0;\n }\n}\n\n@media (max-width: 991.98px) {\n .modal-fullscreen-lg-down {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n }\n .modal-fullscreen-lg-down .modal-content {\n height: 100%;\n border: 0;\n border-radius: 0;\n }\n .modal-fullscreen-lg-down .modal-header {\n border-radius: 0;\n }\n .modal-fullscreen-lg-down .modal-body {\n overflow-y: auto;\n }\n .modal-fullscreen-lg-down .modal-footer {\n border-radius: 0;\n }\n}\n\n@media (max-width: 1199.98px) {\n .modal-fullscreen-xl-down {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n }\n .modal-fullscreen-xl-down .modal-content {\n height: 100%;\n border: 0;\n border-radius: 0;\n }\n .modal-fullscreen-xl-down .modal-header {\n border-radius: 0;\n }\n .modal-fullscreen-xl-down .modal-body {\n overflow-y: auto;\n }\n .modal-fullscreen-xl-down .modal-footer {\n border-radius: 0;\n }\n}\n\n@media (max-width: 1539.98px) {\n .modal-fullscreen-xxl-down {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n }\n .modal-fullscreen-xxl-down .modal-content {\n height: 100%;\n border: 0;\n border-radius: 0;\n }\n .modal-fullscreen-xxl-down .modal-header {\n border-radius: 0;\n }\n .modal-fullscreen-xxl-down .modal-body {\n overflow-y: auto;\n }\n .modal-fullscreen-xxl-down .modal-footer {\n border-radius: 0;\n }\n}\n\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n margin: 0;\n font-family: \"Chivo\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n opacity: 0;\n}\n\n.tooltip.show {\n opacity: 0.9;\n}\n\n.tooltip .tooltip-arrow {\n position: absolute;\n display: block;\n width: 0.8rem;\n height: 0.4rem;\n}\n\n.tooltip .tooltip-arrow::before {\n position: absolute;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n}\n\n.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=\"top\"] {\n padding: 0.4rem 0;\n}\n\n.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=\"top\"] .tooltip-arrow {\n bottom: 0;\n}\n\n.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=\"top\"] .tooltip-arrow::before {\n top: -1px;\n border-width: 0.4rem 0.4rem 0;\n border-top-color: #000;\n}\n\n.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=\"right\"] {\n padding: 0 0.4rem;\n}\n\n.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=\"right\"] .tooltip-arrow {\n left: 0;\n width: 0.4rem;\n height: 0.8rem;\n}\n\n.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=\"right\"] .tooltip-arrow::before {\n right: -1px;\n border-width: 0.4rem 0.4rem 0.4rem 0;\n border-right-color: #000;\n}\n\n.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=\"bottom\"] {\n padding: 0.4rem 0;\n}\n\n.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=\"bottom\"] .tooltip-arrow {\n top: 0;\n}\n\n.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=\"bottom\"] .tooltip-arrow::before {\n bottom: -1px;\n border-width: 0 0.4rem 0.4rem;\n border-bottom-color: #000;\n}\n\n.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=\"left\"] {\n padding: 0 0.4rem;\n}\n\n.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=\"left\"] .tooltip-arrow {\n right: 0;\n width: 0.4rem;\n height: 0.8rem;\n}\n\n.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=\"left\"] .tooltip-arrow::before {\n left: -1px;\n border-width: 0.4rem 0 0.4rem 0.4rem;\n border-left-color: #000;\n}\n\n.tooltip-inner {\n max-width: 200px;\n padding: 0.25rem 0.5rem;\n color: #fff;\n text-align: center;\n background-color: #000;\n border-radius: 0.25rem;\n}\n\n.popover {\n position: absolute;\n top: 0;\n left: 0 /* rtl:ignore */;\n z-index: 1060;\n display: block;\n max-width: 276px;\n font-family: \"Chivo\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 0.5rem;\n}\n\n.popover .popover-arrow {\n position: absolute;\n display: block;\n width: 1rem;\n height: 0.5rem;\n}\n\n.popover .popover-arrow::before, .popover .popover-arrow::after {\n position: absolute;\n display: block;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n}\n\n.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=\"top\"] > .popover-arrow {\n bottom: calc(-0.5rem - 1px);\n}\n\n.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=\"top\"] > .popover-arrow::before {\n bottom: 0;\n border-width: 0.5rem 0.5rem 0;\n border-top-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=\"top\"] > .popover-arrow::after {\n bottom: 1px;\n border-width: 0.5rem 0.5rem 0;\n border-top-color: #fff;\n}\n\n.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=\"right\"] > .popover-arrow {\n left: calc(-0.5rem - 1px);\n width: 0.5rem;\n height: 1rem;\n}\n\n.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=\"right\"] > .popover-arrow::before {\n left: 0;\n border-width: 0.5rem 0.5rem 0.5rem 0;\n border-right-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=\"right\"] > .popover-arrow::after {\n left: 1px;\n border-width: 0.5rem 0.5rem 0.5rem 0;\n border-right-color: #fff;\n}\n\n.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=\"bottom\"] > .popover-arrow {\n top: calc(-0.5rem - 1px);\n}\n\n.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=\"bottom\"] > .popover-arrow::before {\n top: 0;\n border-width: 0 0.5rem 0.5rem 0.5rem;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=\"bottom\"] > .popover-arrow::after {\n top: 1px;\n border-width: 0 0.5rem 0.5rem 0.5rem;\n border-bottom-color: #fff;\n}\n\n.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=\"bottom\"] .popover-header::before {\n position: absolute;\n top: 0;\n left: 50%;\n display: block;\n width: 1rem;\n margin-left: -0.5rem;\n content: \"\";\n border-bottom: 1px solid #f0f0f0;\n}\n\n.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=\"left\"] > .popover-arrow {\n right: calc(-0.5rem - 1px);\n width: 0.5rem;\n height: 1rem;\n}\n\n.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=\"left\"] > .popover-arrow::before {\n right: 0;\n border-width: 0.5rem 0 0.5rem 0.5rem;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=\"left\"] > .popover-arrow::after {\n right: 1px;\n border-width: 0.5rem 0 0.5rem 0.5rem;\n border-left-color: #fff;\n}\n\n.popover-header {\n padding: 0.5rem 1rem;\n margin-bottom: 0;\n font-size: 1rem;\n color: #112D58;\n background-color: #f0f0f0;\n border-bottom: 1px solid #d8d8d8;\n border-top-left-radius: calc(0.5rem - 1px);\n border-top-right-radius: calc(0.5rem - 1px);\n}\n\n.popover-header:empty {\n display: none;\n}\n\n.popover-body {\n padding: 1rem 1rem;\n color: #7D7987;\n}\n\n.carousel {\n position: relative;\n}\n\n.carousel.pointer-event {\n touch-action: pan-y;\n}\n\n.carousel-inner {\n position: relative;\n width: 100%;\n overflow: hidden;\n}\n\n.carousel-inner::after {\n display: block;\n clear: both;\n content: \"\";\n}\n\n.carousel-item {\n position: relative;\n display: none;\n float: left;\n width: 100%;\n margin-right: -100%;\n backface-visibility: hidden;\n transition: transform 0.6s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .carousel-item {\n transition: none;\n }\n}\n\n.carousel-item.active,\n.carousel-item-next,\n.carousel-item-prev {\n display: block;\n}\n\n/* rtl:begin:ignore */\n.carousel-item-next:not(.carousel-item-start),\n.active.carousel-item-end {\n transform: translateX(100%);\n}\n\n.carousel-item-prev:not(.carousel-item-end),\n.active.carousel-item-start {\n transform: translateX(-100%);\n}\n\n/* rtl:end:ignore */\n.carousel-fade .carousel-item {\n opacity: 0;\n transition-property: opacity;\n transform: none;\n}\n\n.carousel-fade .carousel-item.active,\n.carousel-fade .carousel-item-next.carousel-item-start,\n.carousel-fade .carousel-item-prev.carousel-item-end {\n z-index: 1;\n opacity: 1;\n}\n\n.carousel-fade .active.carousel-item-start,\n.carousel-fade .active.carousel-item-end {\n z-index: 0;\n opacity: 0;\n transition: opacity 0s 0.6s;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .carousel-fade .active.carousel-item-start,\n .carousel-fade .active.carousel-item-end {\n transition: none;\n }\n}\n\n.carousel-control-prev,\n.carousel-control-next {\n position: absolute;\n top: 0;\n bottom: 0;\n z-index: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 15%;\n padding: 0;\n color: #66BB6A;\n text-align: center;\n background: none;\n border: 0;\n opacity: 0.9;\n transition: opacity 0.15s ease;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .carousel-control-prev,\n .carousel-control-next {\n transition: none;\n }\n}\n\n.carousel-control-prev:hover, .carousel-control-prev:focus,\n.carousel-control-next:hover,\n.carousel-control-next:focus {\n color: #66BB6A;\n text-decoration: none;\n outline: 0;\n opacity: 0.9;\n}\n\n.carousel-control-prev {\n left: 0;\n}\n\n.carousel-control-next {\n right: 0;\n}\n\n.carousel-control-prev-icon,\n.carousel-control-next-icon {\n display: inline-block;\n width: 2rem;\n height: 2rem;\n background-repeat: no-repeat;\n background-position: 50%;\n background-size: 100% 100%;\n}\n\n/* rtl:options: {\n \"autoRename\": true,\n \"stringMap\":[ {\n \"name\" : \"prev-next\",\n \"search\" : \"prev\",\n \"replace\" : \"next\"\n } ]\n} */\n.carousel-control-prev-icon {\n background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2366BB6A' class='bi bi-arrow-left-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.5 7.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5z'/%3E%3C/svg%3E\");\n}\n\n.carousel-control-next-icon {\n background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2366BB6A' class='bi bi-arrow-right-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z'/%3E%3C/svg%3E\");\n}\n\n.carousel-indicators {\n position: absolute;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 2;\n display: flex;\n justify-content: center;\n padding: 0;\n margin-right: 15%;\n margin-bottom: 1rem;\n margin-left: 15%;\n list-style: none;\n}\n\n.carousel-indicators [data-bs-target] {\n box-sizing: content-box;\n flex: 0 1 auto;\n width: 9px;\n height: 9px;\n padding: 0;\n margin-right: 3px;\n margin-left: 3px;\n text-indent: -999px;\n cursor: pointer;\n background-color: #1F3A63;\n background-clip: padding-box;\n border: 0;\n border-top: 0 solid transparent;\n border-bottom: 0 solid transparent;\n opacity: 0.5;\n transition: opacity 0.6s ease;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .carousel-indicators [data-bs-target] {\n transition: none;\n }\n}\n\n.carousel-indicators .active {\n opacity: 1;\n}\n\n.carousel-caption {\n position: absolute;\n right: 15%;\n bottom: 1.25rem;\n left: 15%;\n padding-top: 1.25rem;\n padding-bottom: 1.25rem;\n color: #fff;\n text-align: center;\n}\n\n.carousel-dark .carousel-control-prev-icon,\n.carousel-dark .carousel-control-next-icon {\n filter: invert(1) grayscale(100);\n}\n\n.carousel-dark .carousel-indicators [data-bs-target] {\n background-color: #000;\n}\n\n.carousel-dark .carousel-caption {\n color: #000;\n}\n\n@keyframes spinner-border {\n to {\n transform: rotate(360deg) /* rtl:ignore */;\n }\n}\n\n.spinner-border {\n display: inline-block;\n width: 2rem;\n height: 2rem;\n vertical-align: text-bottom;\n border: 0.25em solid currentColor;\n border-right-color: transparent;\n border-radius: 50%;\n animation: 0.75s linear infinite spinner-border;\n}\n\n.spinner-border-sm {\n width: 1rem;\n height: 1rem;\n border-width: 0.2em;\n}\n\n@keyframes spinner-grow {\n 0% {\n transform: scale(0);\n }\n 50% {\n opacity: 1;\n transform: none;\n }\n}\n\n.spinner-grow {\n display: inline-block;\n width: 2rem;\n height: 2rem;\n vertical-align: text-bottom;\n background-color: currentColor;\n border-radius: 50%;\n opacity: 0;\n animation: 0.75s linear infinite spinner-grow;\n}\n\n.spinner-grow-sm {\n width: 1rem;\n height: 1rem;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .spinner-border,\n .spinner-grow {\n animation-duration: 1.5s;\n }\n}\n\n.accordion-button {\n position: relative;\n display: flex;\n align-items: center;\n width: 100%;\n padding: 1.5rem 2.6rem;\n font-size: 1rem;\n color: #7D7987;\n text-align: left;\n background-color: #F5F7FA;\n border: 1px solid rgba(255, 255, 255, 0.125);\n border-radius: 0;\n overflow-anchor: none;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .accordion-button {\n transition: none;\n }\n}\n\n.accordion-button.collapsed {\n border-bottom-width: 0;\n}\n\n.accordion-button:not(.collapsed) {\n color: #1F1534;\n background-color: #F5F7FA;\n}\n\n.accordion-button:not(.collapsed)::after {\n background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E\");\n transform: rotate(180deg);\n}\n\n.accordion-button::after {\n flex-shrink: 0;\n width: 1.8rem;\n height: 1.8rem;\n margin-left: auto;\n content: \"\";\n background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E\");\n background-repeat: no-repeat;\n background-size: 1.8rem;\n transition: transform 0.2s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .accordion-button::after {\n transition: none;\n }\n}\n\n.accordion-button:hover {\n z-index: 2;\n}\n\n.accordion-button:focus {\n z-index: 3;\n border-color: #fff;\n outline: 0;\n box-shadow: #F9FAFD;\n}\n\n.accordion-header {\n margin-bottom: 0;\n}\n\n.accordion-item:first-of-type .accordion-button {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.accordion-item:last-of-type .accordion-button.collapsed {\n border-bottom-width: 1px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.accordion-item:last-of-type .accordion-collapse {\n border-bottom-width: 1px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.accordion-collapse {\n border: solid rgba(255, 255, 255, 0.125);\n border-width: 0 1px;\n}\n\n.accordion-body {\n padding: 1.5rem 2.6rem;\n}\n\n.accordion-flush .accordion-button {\n border-right: 0;\n border-left: 0;\n border-radius: 0;\n}\n\n.accordion-flush .accordion-collapse {\n border-width: 0;\n}\n\n.accordion-flush .accordion-item:first-of-type .accordion-button {\n border-top-width: 0;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.accordion-flush .accordion-item:last-of-type .accordion-button.collapsed {\n border-bottom-width: 0;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.clearfix::after {\n display: block;\n clear: both;\n content: \"\";\n}\n\n.link-primary {\n color: #1F3A63;\n}\n\n.link-primary:hover, .link-primary:focus {\n color: #192e4f;\n}\n\n.link-secondary {\n color: #4F5665;\n}\n\n.link-secondary:hover, .link-secondary:focus {\n color: #3f4551;\n}\n\n.link-success {\n color: #66BB6A;\n}\n\n.link-success:hover, .link-success:focus {\n color: #529655;\n}\n\n.link-info {\n color: #3EB8F4;\n}\n\n.link-info:hover, .link-info:focus {\n color: #3293c3;\n}\n\n.link-warning {\n color: #FFA024;\n}\n\n.link-warning:hover, .link-warning:focus {\n color: #cc801d;\n}\n\n.link-danger {\n color: #F55767;\n}\n\n.link-danger:hover, .link-danger:focus {\n color: #c44652;\n}\n\n.link-light {\n color: #F9FAFD;\n}\n\n.link-light:hover, .link-light:focus {\n color: #fafbfd;\n}\n\n.link-dark {\n color: #1F1534;\n}\n\n.link-dark:hover, .link-dark:focus {\n color: #19112a;\n}\n\n.ratio {\n position: relative;\n width: 100%;\n}\n\n.ratio::before {\n display: block;\n padding-top: var(--bs-aspect-ratio);\n content: \"\";\n}\n\n.ratio > * {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n}\n\n.ratio-1x1 {\n --bs-aspect-ratio: 100%;\n}\n\n.ratio-4x3 {\n --bs-aspect-ratio: calc(3 / 4 * 100%);\n}\n\n.ratio-16x9 {\n --bs-aspect-ratio: calc(9 / 16 * 100%);\n}\n\n.ratio-21x9 {\n --bs-aspect-ratio: calc(9 / 21 * 100%);\n}\n\n.fixed-top {\n position: fixed;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n\n.fixed-bottom {\n position: fixed;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1030;\n}\n\n.sticky-top {\n position: sticky;\n top: 0;\n z-index: 1020;\n}\n\n@media (min-width: 576px) {\n .sticky-sm-top {\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n\n@media (min-width: 768px) {\n .sticky-md-top {\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n\n@media (min-width: 992px) {\n .sticky-lg-top {\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n\n@media (min-width: 1200px) {\n .sticky-xl-top {\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n\n@media (min-width: 1540px) {\n .sticky-xxl-top {\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n\n.visually-hidden,\n.visually-hidden-focusable:not(:focus):not(:focus-within) {\n position: absolute !important;\n width: 1px !important;\n height: 1px !important;\n padding: 0 !important;\n margin: -1px !important;\n overflow: hidden !important;\n clip: rect(0, 0, 0, 0) !important;\n white-space: nowrap !important;\n border: 0 !important;\n}\n\n.stretched-link::after {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1;\n content: \"\";\n}\n\n.text-truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.align-baseline {\n vertical-align: baseline !important;\n}\n\n.align-top {\n vertical-align: top !important;\n}\n\n.align-middle {\n vertical-align: middle !important;\n}\n\n.align-bottom {\n vertical-align: bottom !important;\n}\n\n.align-text-bottom {\n vertical-align: text-bottom !important;\n}\n\n.align-text-top {\n vertical-align: text-top !important;\n}\n\n.float-start {\n float: left !important;\n}\n\n.float-end {\n float: right !important;\n}\n\n.float-none {\n float: none !important;\n}\n\n.overflow-auto {\n overflow: auto !important;\n}\n\n.overflow-hidden {\n overflow: hidden !important;\n}\n\n.overflow-visible {\n overflow: visible !important;\n}\n\n.overflow-scroll {\n overflow: scroll !important;\n}\n\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.shadow {\n box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;\n}\n\n.shadow-sm {\n box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;\n}\n\n.shadow-lg {\n box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;\n}\n\n.shadow-none {\n box-shadow: none !important;\n}\n\n.position-static {\n position: static !important;\n}\n\n.position-absolute {\n position: absolute !important;\n}\n\n.position-relative {\n position: relative !important;\n}\n\n.position-fixed {\n position: fixed !important;\n}\n\n.position-sticky {\n position: sticky !important;\n}\n\n.top-0 {\n top: 0 !important;\n}\n\n.top-50 {\n top: 50% !important;\n}\n\n.top-100 {\n top: 100% !important;\n}\n\n.bottom-0 {\n bottom: 0 !important;\n}\n\n.bottom-50 {\n bottom: 50% !important;\n}\n\n.bottom-100 {\n bottom: 100% !important;\n}\n\n.start-0 {\n left: 0 !important;\n}\n\n.start-50 {\n left: 50% !important;\n}\n\n.start-100 {\n left: 100% !important;\n}\n\n.end-0 {\n right: 0 !important;\n}\n\n.end-50 {\n right: 50% !important;\n}\n\n.end-100 {\n right: 100% !important;\n}\n\n.translate-middle {\n transform: translateX(-50%) translateY(-50%) !important;\n}\n\n.translate-middle-x {\n transform: translateX(-50%) !important;\n}\n\n.translate-middle-y {\n transform: translateY(-50%) !important;\n}\n\n.border {\n border: 1px solid #E1E0E4 !important;\n}\n\n.border-0 {\n border: 0 !important;\n}\n\n.border-top {\n border-top: 1px solid #E1E0E4 !important;\n}\n\n.border-top-0 {\n border-top: 0 !important;\n}\n\n.border-end {\n border-right: 1px solid #E1E0E4 !important;\n}\n\n.border-end-0 {\n border-right: 0 !important;\n}\n\n.border-bottom {\n border-bottom: 1px solid #E1E0E4 !important;\n}\n\n.border-bottom-0 {\n border-bottom: 0 !important;\n}\n\n.border-start {\n border-left: 1px solid #E1E0E4 !important;\n}\n\n.border-start-0 {\n border-left: 0 !important;\n}\n\n.border-facebook {\n border-color: #3c5a99 !important;\n}\n\n.border-google-plus {\n border-color: #dd4b39 !important;\n}\n\n.border-twitter {\n border-color: #1da1f2 !important;\n}\n\n.border-linkedin {\n border-color: #0077b5 !important;\n}\n\n.border-youtube {\n border-color: #ff0000 !important;\n}\n\n.border-github {\n border-color: #333 !important;\n}\n\n.border-theme {\n border-color: #0BAC56 !important;\n}\n\n.border-black {\n border-color: #000 !important;\n}\n\n.border-100 {\n border-color: #F5F7FA !important;\n}\n\n.border-200 {\n border-color: #EBEBED !important;\n}\n\n.border-300 {\n border-color: #E1E0E4 !important;\n}\n\n.border-400 {\n border-color: #D7D6DA !important;\n}\n\n.border-500 {\n border-color: #CDCCD1 !important;\n}\n\n.border-600 {\n border-color: #C3C1C8 !important;\n}\n\n.border-700 {\n border-color: #7D7987 !important;\n}\n\n.border-800 {\n border-color: #616368 !important;\n}\n\n.border-900 {\n border-color: #4F5665 !important;\n}\n\n.border-1000 {\n border-color: #112D58 !important;\n}\n\n.border-1100 {\n border-color: #1F1534 !important;\n}\n\n.border-white {\n border-color: #fff !important;\n}\n\n.border-primary {\n border-color: #1F3A63 !important;\n}\n\n.border-secondary {\n border-color: #4F5665 !important;\n}\n\n.border-success {\n border-color: #66BB6A !important;\n}\n\n.border-info {\n border-color: #3EB8F4 !important;\n}\n\n.border-warning {\n border-color: #FFA024 !important;\n}\n\n.border-danger {\n border-color: #F55767 !important;\n}\n\n.border-light {\n border-color: #F9FAFD !important;\n}\n\n.border-dark {\n border-color: #1F1534 !important;\n}\n\n.border-0 {\n border-width: 0 !important;\n}\n\n.border-1 {\n border-width: 1px !important;\n}\n\n.border-2 {\n border-width: 2px !important;\n}\n\n.border-3 {\n border-width: 3px !important;\n}\n\n.border-4 {\n border-width: 4px !important;\n}\n\n.border-5 {\n border-width: 5px !important;\n}\n\n.w-25 {\n width: 25% !important;\n}\n\n.w-50 {\n width: 50% !important;\n}\n\n.w-75 {\n width: 75% !important;\n}\n\n.w-100 {\n width: 100% !important;\n}\n\n.w-auto {\n width: auto !important;\n}\n\n.mw-100 {\n max-width: 100% !important;\n}\n\n.vw-25 {\n width: 25vw !important;\n}\n\n.vw-50 {\n width: 50vw !important;\n}\n\n.vw-75 {\n width: 75vw !important;\n}\n\n.vw-100 {\n width: 100vw !important;\n}\n\n.min-vw-100 {\n min-width: 100vw !important;\n}\n\n.h-25 {\n height: 25% !important;\n}\n\n.h-50 {\n height: 50% !important;\n}\n\n.h-75 {\n height: 75% !important;\n}\n\n.h-100 {\n height: 100% !important;\n}\n\n.h-auto {\n height: auto !important;\n}\n\n.mh-100 {\n max-height: 100% !important;\n}\n\n.vh-25 {\n height: 25vh !important;\n}\n\n.vh-50 {\n height: 50vh !important;\n}\n\n.vh-75 {\n height: 75vh !important;\n}\n\n.vh-100 {\n height: 100vh !important;\n}\n\n.min-vh-25 {\n min-height: 25vh !important;\n}\n\n.min-vh-50 {\n min-height: 50vh !important;\n}\n\n.min-vh-75 {\n min-height: 75vh !important;\n}\n\n.min-vh-100 {\n min-height: 100vh !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.gap-0 {\n gap: 0 !important;\n}\n\n.gap-1 {\n gap: 0.25rem !important;\n}\n\n.gap-2 {\n gap: 0.5rem !important;\n}\n\n.gap-3 {\n gap: 1rem !important;\n}\n\n.gap-4 {\n gap: 1.8rem !important;\n}\n\n.gap-5 {\n gap: 3rem !important;\n}\n\n.gap-6 {\n gap: 4rem !important;\n}\n\n.gap-7 {\n gap: 5rem !important;\n}\n\n.gap-8 {\n gap: 7.5rem !important;\n}\n\n.gap-9 {\n gap: 10rem !important;\n}\n\n.gap-10 {\n gap: 12.5rem !important;\n}\n\n.gap-11 {\n gap: 15rem !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.8rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-6 {\n margin: 4rem !important;\n}\n\n.m-7 {\n margin: 5rem !important;\n}\n\n.m-8 {\n margin: 7.5rem !important;\n}\n\n.m-9 {\n margin: 10rem !important;\n}\n\n.m-10 {\n margin: 12.5rem !important;\n}\n\n.m-11 {\n margin: 15rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n}\n\n.mx-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n}\n\n.mx-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n}\n\n.mx-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n}\n\n.mx-4 {\n margin-right: 1.8rem !important;\n margin-left: 1.8rem !important;\n}\n\n.mx-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n}\n\n.mx-6 {\n margin-right: 4rem !important;\n margin-left: 4rem !important;\n}\n\n.mx-7 {\n margin-right: 5rem !important;\n margin-left: 5rem !important;\n}\n\n.mx-8 {\n margin-right: 7.5rem !important;\n margin-left: 7.5rem !important;\n}\n\n.mx-9 {\n margin-right: 10rem !important;\n margin-left: 10rem !important;\n}\n\n.mx-10 {\n margin-right: 12.5rem !important;\n margin-left: 12.5rem !important;\n}\n\n.mx-11 {\n margin-right: 15rem !important;\n margin-left: 15rem !important;\n}\n\n.mx-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.8rem !important;\n margin-bottom: 1.8rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-6 {\n margin-top: 4rem !important;\n margin-bottom: 4rem !important;\n}\n\n.my-7 {\n margin-top: 5rem !important;\n margin-bottom: 5rem !important;\n}\n\n.my-8 {\n margin-top: 7.5rem !important;\n margin-bottom: 7.5rem !important;\n}\n\n.my-9 {\n margin-top: 10rem !important;\n margin-bottom: 10rem !important;\n}\n\n.my-10 {\n margin-top: 12.5rem !important;\n margin-bottom: 12.5rem !important;\n}\n\n.my-11 {\n margin-top: 15rem !important;\n margin-bottom: 15rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.8rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-6 {\n margin-top: 4rem !important;\n}\n\n.mt-7 {\n margin-top: 5rem !important;\n}\n\n.mt-8 {\n margin-top: 7.5rem !important;\n}\n\n.mt-9 {\n margin-top: 10rem !important;\n}\n\n.mt-10 {\n margin-top: 12.5rem !important;\n}\n\n.mt-11 {\n margin-top: 15rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-right: 0 !important;\n}\n\n.me-1 {\n margin-right: 0.25rem !important;\n}\n\n.me-2 {\n margin-right: 0.5rem !important;\n}\n\n.me-3 {\n margin-right: 1rem !important;\n}\n\n.me-4 {\n margin-right: 1.8rem !important;\n}\n\n.me-5 {\n margin-right: 3rem !important;\n}\n\n.me-6 {\n margin-right: 4rem !important;\n}\n\n.me-7 {\n margin-right: 5rem !important;\n}\n\n.me-8 {\n margin-right: 7.5rem !important;\n}\n\n.me-9 {\n margin-right: 10rem !important;\n}\n\n.me-10 {\n margin-right: 12.5rem !important;\n}\n\n.me-11 {\n margin-right: 15rem !important;\n}\n\n.me-auto {\n margin-right: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.8rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-6 {\n margin-bottom: 4rem !important;\n}\n\n.mb-7 {\n margin-bottom: 5rem !important;\n}\n\n.mb-8 {\n margin-bottom: 7.5rem !important;\n}\n\n.mb-9 {\n margin-bottom: 10rem !important;\n}\n\n.mb-10 {\n margin-bottom: 12.5rem !important;\n}\n\n.mb-11 {\n margin-bottom: 15rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-left: 0 !important;\n}\n\n.ms-1 {\n margin-left: 0.25rem !important;\n}\n\n.ms-2 {\n margin-left: 0.5rem !important;\n}\n\n.ms-3 {\n margin-left: 1rem !important;\n}\n\n.ms-4 {\n margin-left: 1.8rem !important;\n}\n\n.ms-5 {\n margin-left: 3rem !important;\n}\n\n.ms-6 {\n margin-left: 4rem !important;\n}\n\n.ms-7 {\n margin-left: 5rem !important;\n}\n\n.ms-8 {\n margin-left: 7.5rem !important;\n}\n\n.ms-9 {\n margin-left: 10rem !important;\n}\n\n.ms-10 {\n margin-left: 12.5rem !important;\n}\n\n.ms-11 {\n margin-left: 15rem !important;\n}\n\n.ms-auto {\n margin-left: auto !important;\n}\n\n.m-n1 {\n margin: -0.25rem !important;\n}\n\n.m-n2 {\n margin: -0.5rem !important;\n}\n\n.m-n3 {\n margin: -1rem !important;\n}\n\n.m-n4 {\n margin: -1.8rem !important;\n}\n\n.m-n5 {\n margin: -3rem !important;\n}\n\n.m-n6 {\n margin: -4rem !important;\n}\n\n.m-n7 {\n margin: -5rem !important;\n}\n\n.m-n8 {\n margin: -7.5rem !important;\n}\n\n.m-n9 {\n margin: -10rem !important;\n}\n\n.m-n10 {\n margin: -12.5rem !important;\n}\n\n.m-n11 {\n margin: -15rem !important;\n}\n\n.mx-n1 {\n margin-right: -0.25rem !important;\n margin-left: -0.25rem !important;\n}\n\n.mx-n2 {\n margin-right: -0.5rem !important;\n margin-left: -0.5rem !important;\n}\n\n.mx-n3 {\n margin-right: -1rem !important;\n margin-left: -1rem !important;\n}\n\n.mx-n4 {\n margin-right: -1.8rem !important;\n margin-left: -1.8rem !important;\n}\n\n.mx-n5 {\n margin-right: -3rem !important;\n margin-left: -3rem !important;\n}\n\n.mx-n6 {\n margin-right: -4rem !important;\n margin-left: -4rem !important;\n}\n\n.mx-n7 {\n margin-right: -5rem !important;\n margin-left: -5rem !important;\n}\n\n.mx-n8 {\n margin-right: -7.5rem !important;\n margin-left: -7.5rem !important;\n}\n\n.mx-n9 {\n margin-right: -10rem !important;\n margin-left: -10rem !important;\n}\n\n.mx-n10 {\n margin-right: -12.5rem !important;\n margin-left: -12.5rem !important;\n}\n\n.mx-n11 {\n margin-right: -15rem !important;\n margin-left: -15rem !important;\n}\n\n.my-n1 {\n margin-top: -0.25rem !important;\n margin-bottom: -0.25rem !important;\n}\n\n.my-n2 {\n margin-top: -0.5rem !important;\n margin-bottom: -0.5rem !important;\n}\n\n.my-n3 {\n margin-top: -1rem !important;\n margin-bottom: -1rem !important;\n}\n\n.my-n4 {\n margin-top: -1.8rem !important;\n margin-bottom: -1.8rem !important;\n}\n\n.my-n5 {\n margin-top: -3rem !important;\n margin-bottom: -3rem !important;\n}\n\n.my-n6 {\n margin-top: -4rem !important;\n margin-bottom: -4rem !important;\n}\n\n.my-n7 {\n margin-top: -5rem !important;\n margin-bottom: -5rem !important;\n}\n\n.my-n8 {\n margin-top: -7.5rem !important;\n margin-bottom: -7.5rem !important;\n}\n\n.my-n9 {\n margin-top: -10rem !important;\n margin-bottom: -10rem !important;\n}\n\n.my-n10 {\n margin-top: -12.5rem !important;\n margin-bottom: -12.5rem !important;\n}\n\n.my-n11 {\n margin-top: -15rem !important;\n margin-bottom: -15rem !important;\n}\n\n.mt-n1 {\n margin-top: -0.25rem !important;\n}\n\n.mt-n2 {\n margin-top: -0.5rem !important;\n}\n\n.mt-n3 {\n margin-top: -1rem !important;\n}\n\n.mt-n4 {\n margin-top: -1.8rem !important;\n}\n\n.mt-n5 {\n margin-top: -3rem !important;\n}\n\n.mt-n6 {\n margin-top: -4rem !important;\n}\n\n.mt-n7 {\n margin-top: -5rem !important;\n}\n\n.mt-n8 {\n margin-top: -7.5rem !important;\n}\n\n.mt-n9 {\n margin-top: -10rem !important;\n}\n\n.mt-n10 {\n margin-top: -12.5rem !important;\n}\n\n.mt-n11 {\n margin-top: -15rem !important;\n}\n\n.me-n1 {\n margin-right: -0.25rem !important;\n}\n\n.me-n2 {\n margin-right: -0.5rem !important;\n}\n\n.me-n3 {\n margin-right: -1rem !important;\n}\n\n.me-n4 {\n margin-right: -1.8rem !important;\n}\n\n.me-n5 {\n margin-right: -3rem !important;\n}\n\n.me-n6 {\n margin-right: -4rem !important;\n}\n\n.me-n7 {\n margin-right: -5rem !important;\n}\n\n.me-n8 {\n margin-right: -7.5rem !important;\n}\n\n.me-n9 {\n margin-right: -10rem !important;\n}\n\n.me-n10 {\n margin-right: -12.5rem !important;\n}\n\n.me-n11 {\n margin-right: -15rem !important;\n}\n\n.mb-n1 {\n margin-bottom: -0.25rem !important;\n}\n\n.mb-n2 {\n margin-bottom: -0.5rem !important;\n}\n\n.mb-n3 {\n margin-bottom: -1rem !important;\n}\n\n.mb-n4 {\n margin-bottom: -1.8rem !important;\n}\n\n.mb-n5 {\n margin-bottom: -3rem !important;\n}\n\n.mb-n6 {\n margin-bottom: -4rem !important;\n}\n\n.mb-n7 {\n margin-bottom: -5rem !important;\n}\n\n.mb-n8 {\n margin-bottom: -7.5rem !important;\n}\n\n.mb-n9 {\n margin-bottom: -10rem !important;\n}\n\n.mb-n10 {\n margin-bottom: -12.5rem !important;\n}\n\n.mb-n11 {\n margin-bottom: -15rem !important;\n}\n\n.ms-n1 {\n margin-left: -0.25rem !important;\n}\n\n.ms-n2 {\n margin-left: -0.5rem !important;\n}\n\n.ms-n3 {\n margin-left: -1rem !important;\n}\n\n.ms-n4 {\n margin-left: -1.8rem !important;\n}\n\n.ms-n5 {\n margin-left: -3rem !important;\n}\n\n.ms-n6 {\n margin-left: -4rem !important;\n}\n\n.ms-n7 {\n margin-left: -5rem !important;\n}\n\n.ms-n8 {\n margin-left: -7.5rem !important;\n}\n\n.ms-n9 {\n margin-left: -10rem !important;\n}\n\n.ms-n10 {\n margin-left: -12.5rem !important;\n}\n\n.ms-n11 {\n margin-left: -15rem !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.8rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.p-6 {\n padding: 4rem !important;\n}\n\n.p-7 {\n padding: 5rem !important;\n}\n\n.p-8 {\n padding: 7.5rem !important;\n}\n\n.p-9 {\n padding: 10rem !important;\n}\n\n.p-10 {\n padding: 12.5rem !important;\n}\n\n.p-11 {\n padding: 15rem !important;\n}\n\n.px-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n}\n\n.px-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n}\n\n.px-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n}\n\n.px-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n}\n\n.px-4 {\n padding-right: 1.8rem !important;\n padding-left: 1.8rem !important;\n}\n\n.px-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n}\n\n.px-6 {\n padding-right: 4rem !important;\n padding-left: 4rem !important;\n}\n\n.px-7 {\n padding-right: 5rem !important;\n padding-left: 5rem !important;\n}\n\n.px-8 {\n padding-right: 7.5rem !important;\n padding-left: 7.5rem !important;\n}\n\n.px-9 {\n padding-right: 10rem !important;\n padding-left: 10rem !important;\n}\n\n.px-10 {\n padding-right: 12.5rem !important;\n padding-left: 12.5rem !important;\n}\n\n.px-11 {\n padding-right: 15rem !important;\n padding-left: 15rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.8rem !important;\n padding-bottom: 1.8rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.py-6 {\n padding-top: 4rem !important;\n padding-bottom: 4rem !important;\n}\n\n.py-7 {\n padding-top: 5rem !important;\n padding-bottom: 5rem !important;\n}\n\n.py-8 {\n padding-top: 7.5rem !important;\n padding-bottom: 7.5rem !important;\n}\n\n.py-9 {\n padding-top: 10rem !important;\n padding-bottom: 10rem !important;\n}\n\n.py-10 {\n padding-top: 12.5rem !important;\n padding-bottom: 12.5rem !important;\n}\n\n.py-11 {\n padding-top: 15rem !important;\n padding-bottom: 15rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.8rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pt-6 {\n padding-top: 4rem !important;\n}\n\n.pt-7 {\n padding-top: 5rem !important;\n}\n\n.pt-8 {\n padding-top: 7.5rem !important;\n}\n\n.pt-9 {\n padding-top: 10rem !important;\n}\n\n.pt-10 {\n padding-top: 12.5rem !important;\n}\n\n.pt-11 {\n padding-top: 15rem !important;\n}\n\n.pe-0 {\n padding-right: 0 !important;\n}\n\n.pe-1 {\n padding-right: 0.25rem !important;\n}\n\n.pe-2 {\n padding-right: 0.5rem !important;\n}\n\n.pe-3 {\n padding-right: 1rem !important;\n}\n\n.pe-4 {\n padding-right: 1.8rem !important;\n}\n\n.pe-5 {\n padding-right: 3rem !important;\n}\n\n.pe-6 {\n padding-right: 4rem !important;\n}\n\n.pe-7 {\n padding-right: 5rem !important;\n}\n\n.pe-8 {\n padding-right: 7.5rem !important;\n}\n\n.pe-9 {\n padding-right: 10rem !important;\n}\n\n.pe-10 {\n padding-right: 12.5rem !important;\n}\n\n.pe-11 {\n padding-right: 15rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.8rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.pb-6 {\n padding-bottom: 4rem !important;\n}\n\n.pb-7 {\n padding-bottom: 5rem !important;\n}\n\n.pb-8 {\n padding-bottom: 7.5rem !important;\n}\n\n.pb-9 {\n padding-bottom: 10rem !important;\n}\n\n.pb-10 {\n padding-bottom: 12.5rem !important;\n}\n\n.pb-11 {\n padding-bottom: 15rem !important;\n}\n\n.ps-0 {\n padding-left: 0 !important;\n}\n\n.ps-1 {\n padding-left: 0.25rem !important;\n}\n\n.ps-2 {\n padding-left: 0.5rem !important;\n}\n\n.ps-3 {\n padding-left: 1rem !important;\n}\n\n.ps-4 {\n padding-left: 1.8rem !important;\n}\n\n.ps-5 {\n padding-left: 3rem !important;\n}\n\n.ps-6 {\n padding-left: 4rem !important;\n}\n\n.ps-7 {\n padding-left: 5rem !important;\n}\n\n.ps-8 {\n padding-left: 7.5rem !important;\n}\n\n.ps-9 {\n padding-left: 10rem !important;\n}\n\n.ps-10 {\n padding-left: 12.5rem !important;\n}\n\n.ps-11 {\n padding-left: 15rem !important;\n}\n\n.fs--2 {\n font-size: 0.69444rem !important;\n}\n\n.fs--1 {\n font-size: 0.83333rem !important;\n}\n\n.fs-0 {\n font-size: 1rem !important;\n}\n\n.fs-1 {\n font-size: 1.2rem !important;\n}\n\n.fs-2 {\n font-size: 1.44rem !important;\n}\n\n.fs-3 {\n font-size: 1.728rem !important;\n}\n\n.fs-4 {\n font-size: 2.0736rem !important;\n}\n\n.fs-5 {\n font-size: 2.48832rem !important;\n}\n\n.fs-6 {\n font-size: 2.98598rem !important;\n}\n\n.fs-7 {\n font-size: 3.58318rem !important;\n}\n\n.fs-8 {\n font-size: 4.29982rem !important;\n}\n\n.fst-italic {\n font-style: italic !important;\n}\n\n.fst-normal {\n font-style: normal !important;\n}\n\n.fw-thin {\n font-weight: 100 !important;\n}\n\n.fw-lighter {\n font-weight: 200 !important;\n}\n\n.fw-light {\n font-weight: 300 !important;\n}\n\n.fw-normal {\n font-weight: 400 !important;\n}\n\n.fw-medium {\n font-weight: 500 !important;\n}\n\n.fw-semi-bold {\n font-weight: 600 !important;\n}\n\n.fw-bold {\n font-weight: 700 !important;\n}\n\n.fw-bolder {\n font-weight: 800 !important;\n}\n\n.fw-black {\n font-weight: 900 !important;\n}\n\n.text-lowercase {\n text-transform: lowercase !important;\n}\n\n.text-uppercase {\n text-transform: uppercase !important;\n}\n\n.text-capitalize {\n text-transform: capitalize !important;\n}\n\n.text-start {\n text-align: left !important;\n}\n\n.text-end {\n text-align: right !important;\n}\n\n.text-center {\n text-align: center !important;\n}\n\n.text-primary {\n color: #1F3A63 !important;\n}\n\n.text-secondary {\n color: #4F5665 !important;\n}\n\n.text-success {\n color: #66BB6A !important;\n}\n\n.text-info {\n color: #3EB8F4 !important;\n}\n\n.text-warning {\n color: #FFA024 !important;\n}\n\n.text-danger {\n color: #F55767 !important;\n}\n\n.text-light {\n color: #F9FAFD !important;\n}\n\n.text-dark {\n color: #1F1534 !important;\n}\n\n.text-white {\n color: #fff !important;\n}\n\n.text-body {\n color: #7D7987 !important;\n}\n\n.text-muted {\n color: #CDCCD1 !important;\n}\n\n.text-black-50 {\n color: rgba(0, 0, 0, 0.5) !important;\n}\n\n.text-white-50 {\n color: rgba(255, 255, 255, 0.5) !important;\n}\n\n.text-reset {\n color: inherit !important;\n}\n\n.lh-1 {\n line-height: 1 !important;\n}\n\n.lh-sm {\n line-height: 1.25 !important;\n}\n\n.lh-base {\n line-height: 1.5 !important;\n}\n\n.lh-lg {\n line-height: 2 !important;\n}\n\n.bg-facebook {\n background-color: #3c5a99 !important;\n}\n\n.bg-google-plus {\n background-color: #dd4b39 !important;\n}\n\n.bg-twitter {\n background-color: #1da1f2 !important;\n}\n\n.bg-linkedin {\n background-color: #0077b5 !important;\n}\n\n.bg-youtube {\n background-color: #ff0000 !important;\n}\n\n.bg-github {\n background-color: #333 !important;\n}\n\n.bg-theme {\n background-color: #0BAC56 !important;\n}\n\n.bg-black {\n background-color: #000 !important;\n}\n\n.bg-100 {\n background-color: #F5F7FA !important;\n}\n\n.bg-200 {\n background-color: #EBEBED !important;\n}\n\n.bg-300 {\n background-color: #E1E0E4 !important;\n}\n\n.bg-400 {\n background-color: #D7D6DA !important;\n}\n\n.bg-500 {\n background-color: #CDCCD1 !important;\n}\n\n.bg-600 {\n background-color: #C3C1C8 !important;\n}\n\n.bg-700 {\n background-color: #7D7987 !important;\n}\n\n.bg-800 {\n background-color: #616368 !important;\n}\n\n.bg-900 {\n background-color: #4F5665 !important;\n}\n\n.bg-1000 {\n background-color: #112D58 !important;\n}\n\n.bg-1100 {\n background-color: #1F1534 !important;\n}\n\n.bg-white {\n background-color: #fff !important;\n}\n\n.bg-primary {\n background-color: #1F3A63 !important;\n}\n\n.bg-secondary {\n background-color: #4F5665 !important;\n}\n\n.bg-success {\n background-color: #66BB6A !important;\n}\n\n.bg-info {\n background-color: #3EB8F4 !important;\n}\n\n.bg-warning {\n background-color: #FFA024 !important;\n}\n\n.bg-danger {\n background-color: #F55767 !important;\n}\n\n.bg-light {\n background-color: #F9FAFD !important;\n}\n\n.bg-dark {\n background-color: #1F1534 !important;\n}\n\n.bg-body {\n background-color: #fff !important;\n}\n\n.bg-transparent {\n background-color: transparent !important;\n}\n\n.bg-gradient {\n background-image: var(--bs-gradient) !important;\n}\n\n.text-wrap {\n white-space: normal !important;\n}\n\n.text-nowrap {\n white-space: nowrap !important;\n}\n\n.text-decoration-none {\n text-decoration: none !important;\n}\n\n.text-decoration-underline {\n text-decoration: underline !important;\n}\n\n.text-decoration-line-through {\n text-decoration: line-through !important;\n}\n\n/* rtl:begin:remove */\n.text-break {\n word-wrap: break-word !important;\n word-break: break-word !important;\n}\n\n/* rtl:end:remove */\n.font-monospace {\n font-family: var(--bs-font-monospace) !important;\n}\n\n.user-select-all {\n user-select: all !important;\n}\n\n.user-select-auto {\n user-select: auto !important;\n}\n\n.user-select-none {\n user-select: none !important;\n}\n\n.pe-none {\n pointer-events: none !important;\n}\n\n.pe-auto {\n pointer-events: auto !important;\n}\n\n.rounded {\n border-radius: 0.25rem !important;\n}\n\n.rounded-0 {\n border-radius: 0 !important;\n}\n\n.rounded-1 {\n border-radius: 0.3rem !important;\n}\n\n.rounded-2 {\n border-radius: 0.25rem !important;\n}\n\n.rounded-3 {\n border-radius: 0.5rem !important;\n}\n\n.rounded-circle {\n border-radius: 50% !important;\n}\n\n.rounded-pill {\n border-radius: 50rem !important;\n}\n\n.rounded-top {\n border-top-start-radius: 0.25rem !important;\n border-top-end-radius: 0.25rem !important;\n}\n\n.rounded-top-lg {\n border-top-start-radius: 0.5rem !important;\n border-top-end-radius: 0.5rem !important;\n}\n\n.rounded-top-0 {\n border-top-start-radius: 0 !important;\n border-top-end-radius: 0 !important;\n}\n\n.rounded-end {\n border-top-end-radius: 0.25rem !important;\n border-bottom-end-radius: 0.25rem !important;\n}\n\n.rounded-end-lg {\n border-top-end-radius: 0.5rem !important;\n border-bottom-end-radius: 0.5rem !important;\n}\n\n.rounded-end-0 {\n border-top-end-radius: 0 !important;\n border-bottom-end-radius: 0 !important;\n}\n\n.rounded-bottom {\n border-bottom-end-radius: 0.25rem !important;\n border-bottom-start-radius: 0.25rem !important;\n}\n\n.rounded-bottom-lg {\n border-bottom-end-radius: 0.5rem !important;\n border-bottom-start-radius: 0.5rem !important;\n}\n\n.rounded-bottom-0 {\n border-bottom-end-radius: 0 !important;\n border-bottom-start-radius: 0 !important;\n}\n\n.rounded-start {\n border-bottom-start-radius: 0.25rem !important;\n border-top-start-radius: 0.25rem !important;\n}\n\n.rounded-start-lg {\n border-bottom-start-radius: 0.5rem !important;\n border-top-start-radius: 0.5rem !important;\n}\n\n.rounded-start-0 {\n border-bottom-start-radius: 0 !important;\n border-top-start-radius: 0 !important;\n}\n\n.visible {\n visibility: visible !important;\n}\n\n.invisible {\n visibility: hidden !important;\n}\n\n.opacity-0 {\n opacity: 0 !important;\n}\n\n.opacity-25 {\n opacity: 0.25 !important;\n}\n\n.opacity-50 {\n opacity: 0.5 !important;\n}\n\n.opacity-75 {\n opacity: 0.75 !important;\n}\n\n.opacity-85 {\n opacity: 0.85 !important;\n}\n\n.opacity-100 {\n opacity: 1 !important;\n}\n\n.text-facebook {\n color: #3c5a99 !important;\n}\n\n.text-google-plus {\n color: #dd4b39 !important;\n}\n\n.text-twitter {\n color: #1da1f2 !important;\n}\n\n.text-linkedin {\n color: #0077b5 !important;\n}\n\n.text-youtube {\n color: #ff0000 !important;\n}\n\n.text-github {\n color: #333 !important;\n}\n\n.text-theme {\n color: #0BAC56 !important;\n}\n\n.text-black {\n color: #000 !important;\n}\n\n.text-100 {\n color: #F5F7FA !important;\n}\n\n.text-200 {\n color: #EBEBED !important;\n}\n\n.text-300 {\n color: #E1E0E4 !important;\n}\n\n.text-400 {\n color: #D7D6DA !important;\n}\n\n.text-500 {\n color: #CDCCD1 !important;\n}\n\n.text-600 {\n color: #C3C1C8 !important;\n}\n\n.text-700 {\n color: #7D7987 !important;\n}\n\n.text-800 {\n color: #616368 !important;\n}\n\n.text-900 {\n color: #4F5665 !important;\n}\n\n.text-1000 {\n color: #112D58 !important;\n}\n\n.text-1100 {\n color: #1F1534 !important;\n}\n\n.text-white {\n color: #fff !important;\n}\n\n.max-vh-25 {\n max-height: 25vh !important;\n}\n\n.max-vh-50 {\n max-height: 50vh !important;\n}\n\n.max-vh-75 {\n max-height: 75vh !important;\n}\n\n.max-vh-100 {\n max-height: 100vh !important;\n}\n\n.border-x {\n border-left: 1px solid #E1E0E4 !important;\n border-right: 1px solid #E1E0E4 !important;\n}\n\n.border-x-0 {\n border-left: 0 !important;\n border-right: 0 !important;\n}\n\n.border-y {\n border-top: 1px solid #E1E0E4 !important;\n border-bottom: 1px solid #E1E0E4 !important;\n}\n\n.border-y-0 {\n border-top: 0 !important;\n border-bottom: 0 !important;\n}\n\n.border-dashed {\n border: 1px dashed #E1E0E4 !important;\n}\n\n.border-dashed-top {\n border-top: 1px dashed #E1E0E4 !important;\n}\n\n.border-dashed-end {\n border-right: 1px dashed #E1E0E4 !important;\n}\n\n.border-dashed-start {\n border-left: 1px dashed #E1E0E4 !important;\n}\n\n.border-dashed-bottom {\n border-bottom: 1px dashed #E1E0E4 !important;\n}\n\n.border-dashed-x {\n border-left: 1px dashed #E1E0E4 !important;\n border-right: 1px dashed #E1E0E4 !important;\n}\n\n.border-dashed-y {\n border-top: 1px dashed #E1E0E4 !important;\n border-bottom: 1px dashed #E1E0E4 !important;\n}\n\n.rounded-0 {\n border-radius: 0 !important;\n}\n\n.bg-soft-primary {\n background-color: #e9ebef !important;\n}\n\n.bg-soft-secondary {\n background-color: #edeef0 !important;\n}\n\n.bg-soft-success {\n background-color: #f0f8f0 !important;\n}\n\n.bg-soft-info {\n background-color: #ecf8fe !important;\n}\n\n.bg-soft-warning {\n background-color: #fff6e9 !important;\n}\n\n.bg-soft-danger {\n background-color: #feeef0 !important;\n}\n\n.bg-soft-light {\n background-color: #feffff !important;\n}\n\n.bg-soft-dark {\n background-color: #e9e8eb !important;\n}\n\n@media (min-width: 576px) {\n .float-sm-start {\n float: left !important;\n }\n .float-sm-end {\n float: right !important;\n }\n .float-sm-none {\n float: none !important;\n }\n .d-sm-inline {\n display: inline !important;\n }\n .d-sm-inline-block {\n display: inline-block !important;\n }\n .d-sm-block {\n display: block !important;\n }\n .d-sm-grid {\n display: grid !important;\n }\n .d-sm-table {\n display: table !important;\n }\n .d-sm-table-row {\n display: table-row !important;\n }\n .d-sm-table-cell {\n display: table-cell !important;\n }\n .d-sm-flex {\n display: flex !important;\n }\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n .d-sm-none {\n display: none !important;\n }\n .position-sm-static {\n position: static !important;\n }\n .position-sm-absolute {\n position: absolute !important;\n }\n .position-sm-relative {\n position: relative !important;\n }\n .position-sm-fixed {\n position: fixed !important;\n }\n .position-sm-sticky {\n position: sticky !important;\n }\n .translate-sm-middle {\n transform: translateX(-50%) translateY(-50%) !important;\n }\n .translate-sm-middle-x {\n transform: translateX(-50%) !important;\n }\n .translate-sm-middle-y {\n transform: translateY(-50%) !important;\n }\n .border-sm {\n border: 1px solid #E1E0E4 !important;\n }\n .border-sm-0 {\n border: 0 !important;\n }\n .border-sm-top {\n border-top: 1px solid #E1E0E4 !important;\n }\n .border-sm-top-0 {\n border-top: 0 !important;\n }\n .border-sm-end {\n border-right: 1px solid #E1E0E4 !important;\n }\n .border-sm-end-0 {\n border-right: 0 !important;\n }\n .border-sm-bottom {\n border-bottom: 1px solid #E1E0E4 !important;\n }\n .border-sm-bottom-0 {\n border-bottom: 0 !important;\n }\n .border-sm-start {\n border-left: 1px solid #E1E0E4 !important;\n }\n .border-sm-start-0 {\n border-left: 0 !important;\n }\n .w-sm-25 {\n width: 25% !important;\n }\n .w-sm-50 {\n width: 50% !important;\n }\n .w-sm-75 {\n width: 75% !important;\n }\n .w-sm-100 {\n width: 100% !important;\n }\n .w-sm-auto {\n width: auto !important;\n }\n .vw-sm-25 {\n width: 25vw !important;\n }\n .vw-sm-50 {\n width: 50vw !important;\n }\n .vw-sm-75 {\n width: 75vw !important;\n }\n .vw-sm-100 {\n width: 100vw !important;\n }\n .h-sm-25 {\n height: 25% !important;\n }\n .h-sm-50 {\n height: 50% !important;\n }\n .h-sm-75 {\n height: 75% !important;\n }\n .h-sm-100 {\n height: 100% !important;\n }\n .h-sm-auto {\n height: auto !important;\n }\n .vh-sm-25 {\n height: 25vh !important;\n }\n .vh-sm-50 {\n height: 50vh !important;\n }\n .vh-sm-75 {\n height: 75vh !important;\n }\n .vh-sm-100 {\n height: 100vh !important;\n }\n .min-vh-sm-25 {\n min-height: 25vh !important;\n }\n .min-vh-sm-50 {\n min-height: 50vh !important;\n }\n .min-vh-sm-75 {\n min-height: 75vh !important;\n }\n .min-vh-sm-100 {\n min-height: 100vh !important;\n }\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n .flex-sm-row {\n flex-direction: row !important;\n }\n .flex-sm-column {\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .gap-sm-0 {\n gap: 0 !important;\n }\n .gap-sm-1 {\n gap: 0.25rem !important;\n }\n .gap-sm-2 {\n gap: 0.5rem !important;\n }\n .gap-sm-3 {\n gap: 1rem !important;\n }\n .gap-sm-4 {\n gap: 1.8rem !important;\n }\n .gap-sm-5 {\n gap: 3rem !important;\n }\n .gap-sm-6 {\n gap: 4rem !important;\n }\n .gap-sm-7 {\n gap: 5rem !important;\n }\n .gap-sm-8 {\n gap: 7.5rem !important;\n }\n .gap-sm-9 {\n gap: 10rem !important;\n }\n .gap-sm-10 {\n gap: 12.5rem !important;\n }\n .gap-sm-11 {\n gap: 15rem !important;\n }\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n justify-content: center !important;\n }\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n .justify-content-sm-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n align-items: center !important;\n }\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n align-content: center !important;\n }\n .align-content-sm-between {\n align-content: space-between !important;\n }\n .align-content-sm-around {\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n align-self: auto !important;\n }\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n align-self: center !important;\n }\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n .order-sm-first {\n order: -1 !important;\n }\n .order-sm-0 {\n order: 0 !important;\n }\n .order-sm-1 {\n order: 1 !important;\n }\n .order-sm-2 {\n order: 2 !important;\n }\n .order-sm-3 {\n order: 3 !important;\n }\n .order-sm-4 {\n order: 4 !important;\n }\n .order-sm-5 {\n order: 5 !important;\n }\n .order-sm-last {\n order: 6 !important;\n }\n .m-sm-0 {\n margin: 0 !important;\n }\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n .m-sm-3 {\n margin: 1rem !important;\n }\n .m-sm-4 {\n margin: 1.8rem !important;\n }\n .m-sm-5 {\n margin: 3rem !important;\n }\n .m-sm-6 {\n margin: 4rem !important;\n }\n .m-sm-7 {\n margin: 5rem !important;\n }\n .m-sm-8 {\n margin: 7.5rem !important;\n }\n .m-sm-9 {\n margin: 10rem !important;\n }\n .m-sm-10 {\n margin: 12.5rem !important;\n }\n .m-sm-11 {\n margin: 15rem !important;\n }\n .m-sm-auto {\n margin: auto !important;\n }\n .mx-sm-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-sm-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-sm-4 {\n margin-right: 1.8rem !important;\n margin-left: 1.8rem !important;\n }\n .mx-sm-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-sm-6 {\n margin-right: 4rem !important;\n margin-left: 4rem !important;\n }\n .mx-sm-7 {\n margin-right: 5rem !important;\n margin-left: 5rem !important;\n }\n .mx-sm-8 {\n margin-right: 7.5rem !important;\n margin-left: 7.5rem !important;\n }\n .mx-sm-9 {\n margin-right: 10rem !important;\n margin-left: 10rem !important;\n }\n .mx-sm-10 {\n margin-right: 12.5rem !important;\n margin-left: 12.5rem !important;\n }\n .mx-sm-11 {\n margin-right: 15rem !important;\n margin-left: 15rem !important;\n }\n .mx-sm-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-sm-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-sm-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-sm-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-sm-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-sm-4 {\n margin-top: 1.8rem !important;\n margin-bottom: 1.8rem !important;\n }\n .my-sm-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-sm-6 {\n margin-top: 4rem !important;\n margin-bottom: 4rem !important;\n }\n .my-sm-7 {\n margin-top: 5rem !important;\n margin-bottom: 5rem !important;\n }\n .my-sm-8 {\n margin-top: 7.5rem !important;\n margin-bottom: 7.5rem !important;\n }\n .my-sm-9 {\n margin-top: 10rem !important;\n margin-bottom: 10rem !important;\n }\n .my-sm-10 {\n margin-top: 12.5rem !important;\n margin-bottom: 12.5rem !important;\n }\n .my-sm-11 {\n margin-top: 15rem !important;\n margin-bottom: 15rem !important;\n }\n .my-sm-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-sm-0 {\n margin-top: 0 !important;\n }\n .mt-sm-1 {\n margin-top: 0.25rem !important;\n }\n .mt-sm-2 {\n margin-top: 0.5rem !important;\n }\n .mt-sm-3 {\n margin-top: 1rem !important;\n }\n .mt-sm-4 {\n margin-top: 1.8rem !important;\n }\n .mt-sm-5 {\n margin-top: 3rem !important;\n }\n .mt-sm-6 {\n margin-top: 4rem !important;\n }\n .mt-sm-7 {\n margin-top: 5rem !important;\n }\n .mt-sm-8 {\n margin-top: 7.5rem !important;\n }\n .mt-sm-9 {\n margin-top: 10rem !important;\n }\n .mt-sm-10 {\n margin-top: 12.5rem !important;\n }\n .mt-sm-11 {\n margin-top: 15rem !important;\n }\n .mt-sm-auto {\n margin-top: auto !important;\n }\n .me-sm-0 {\n margin-right: 0 !important;\n }\n .me-sm-1 {\n margin-right: 0.25rem !important;\n }\n .me-sm-2 {\n margin-right: 0.5rem !important;\n }\n .me-sm-3 {\n margin-right: 1rem !important;\n }\n .me-sm-4 {\n margin-right: 1.8rem !important;\n }\n .me-sm-5 {\n margin-right: 3rem !important;\n }\n .me-sm-6 {\n margin-right: 4rem !important;\n }\n .me-sm-7 {\n margin-right: 5rem !important;\n }\n .me-sm-8 {\n margin-right: 7.5rem !important;\n }\n .me-sm-9 {\n margin-right: 10rem !important;\n }\n .me-sm-10 {\n margin-right: 12.5rem !important;\n }\n .me-sm-11 {\n margin-right: 15rem !important;\n }\n .me-sm-auto {\n margin-right: auto !important;\n }\n .mb-sm-0 {\n margin-bottom: 0 !important;\n }\n .mb-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-sm-3 {\n margin-bottom: 1rem !important;\n }\n .mb-sm-4 {\n margin-bottom: 1.8rem !important;\n }\n .mb-sm-5 {\n margin-bottom: 3rem !important;\n }\n .mb-sm-6 {\n margin-bottom: 4rem !important;\n }\n .mb-sm-7 {\n margin-bottom: 5rem !important;\n }\n .mb-sm-8 {\n margin-bottom: 7.5rem !important;\n }\n .mb-sm-9 {\n margin-bottom: 10rem !important;\n }\n .mb-sm-10 {\n margin-bottom: 12.5rem !important;\n }\n .mb-sm-11 {\n margin-bottom: 15rem !important;\n }\n .mb-sm-auto {\n margin-bottom: auto !important;\n }\n .ms-sm-0 {\n margin-left: 0 !important;\n }\n .ms-sm-1 {\n margin-left: 0.25rem !important;\n }\n .ms-sm-2 {\n margin-left: 0.5rem !important;\n }\n .ms-sm-3 {\n margin-left: 1rem !important;\n }\n .ms-sm-4 {\n margin-left: 1.8rem !important;\n }\n .ms-sm-5 {\n margin-left: 3rem !important;\n }\n .ms-sm-6 {\n margin-left: 4rem !important;\n }\n .ms-sm-7 {\n margin-left: 5rem !important;\n }\n .ms-sm-8 {\n margin-left: 7.5rem !important;\n }\n .ms-sm-9 {\n margin-left: 10rem !important;\n }\n .ms-sm-10 {\n margin-left: 12.5rem !important;\n }\n .ms-sm-11 {\n margin-left: 15rem !important;\n }\n .ms-sm-auto {\n margin-left: auto !important;\n }\n .m-sm-n1 {\n margin: -0.25rem !important;\n }\n .m-sm-n2 {\n margin: -0.5rem !important;\n }\n .m-sm-n3 {\n margin: -1rem !important;\n }\n .m-sm-n4 {\n margin: -1.8rem !important;\n }\n .m-sm-n5 {\n margin: -3rem !important;\n }\n .m-sm-n6 {\n margin: -4rem !important;\n }\n .m-sm-n7 {\n margin: -5rem !important;\n }\n .m-sm-n8 {\n margin: -7.5rem !important;\n }\n .m-sm-n9 {\n margin: -10rem !important;\n }\n .m-sm-n10 {\n margin: -12.5rem !important;\n }\n .m-sm-n11 {\n margin: -15rem !important;\n }\n .mx-sm-n1 {\n margin-right: -0.25rem !important;\n margin-left: -0.25rem !important;\n }\n .mx-sm-n2 {\n margin-right: -0.5rem !important;\n margin-left: -0.5rem !important;\n }\n .mx-sm-n3 {\n margin-right: -1rem !important;\n margin-left: -1rem !important;\n }\n .mx-sm-n4 {\n margin-right: -1.8rem !important;\n margin-left: -1.8rem !important;\n }\n .mx-sm-n5 {\n margin-right: -3rem !important;\n margin-left: -3rem !important;\n }\n .mx-sm-n6 {\n margin-right: -4rem !important;\n margin-left: -4rem !important;\n }\n .mx-sm-n7 {\n margin-right: -5rem !important;\n margin-left: -5rem !important;\n }\n .mx-sm-n8 {\n margin-right: -7.5rem !important;\n margin-left: -7.5rem !important;\n }\n .mx-sm-n9 {\n margin-right: -10rem !important;\n margin-left: -10rem !important;\n }\n .mx-sm-n10 {\n margin-right: -12.5rem !important;\n margin-left: -12.5rem !important;\n }\n .mx-sm-n11 {\n margin-right: -15rem !important;\n margin-left: -15rem !important;\n }\n .my-sm-n1 {\n margin-top: -0.25rem !important;\n margin-bottom: -0.25rem !important;\n }\n .my-sm-n2 {\n margin-top: -0.5rem !important;\n margin-bottom: -0.5rem !important;\n }\n .my-sm-n3 {\n margin-top: -1rem !important;\n margin-bottom: -1rem !important;\n }\n .my-sm-n4 {\n margin-top: -1.8rem !important;\n margin-bottom: -1.8rem !important;\n }\n .my-sm-n5 {\n margin-top: -3rem !important;\n margin-bottom: -3rem !important;\n }\n .my-sm-n6 {\n margin-top: -4rem !important;\n margin-bottom: -4rem !important;\n }\n .my-sm-n7 {\n margin-top: -5rem !important;\n margin-bottom: -5rem !important;\n }\n .my-sm-n8 {\n margin-top: -7.5rem !important;\n margin-bottom: -7.5rem !important;\n }\n .my-sm-n9 {\n margin-top: -10rem !important;\n margin-bottom: -10rem !important;\n }\n .my-sm-n10 {\n margin-top: -12.5rem !important;\n margin-bottom: -12.5rem !important;\n }\n .my-sm-n11 {\n margin-top: -15rem !important;\n margin-bottom: -15rem !important;\n }\n .mt-sm-n1 {\n margin-top: -0.25rem !important;\n }\n .mt-sm-n2 {\n margin-top: -0.5rem !important;\n }\n .mt-sm-n3 {\n margin-top: -1rem !important;\n }\n .mt-sm-n4 {\n margin-top: -1.8rem !important;\n }\n .mt-sm-n5 {\n margin-top: -3rem !important;\n }\n .mt-sm-n6 {\n margin-top: -4rem !important;\n }\n .mt-sm-n7 {\n margin-top: -5rem !important;\n }\n .mt-sm-n8 {\n margin-top: -7.5rem !important;\n }\n .mt-sm-n9 {\n margin-top: -10rem !important;\n }\n .mt-sm-n10 {\n margin-top: -12.5rem !important;\n }\n .mt-sm-n11 {\n margin-top: -15rem !important;\n }\n .me-sm-n1 {\n margin-right: -0.25rem !important;\n }\n .me-sm-n2 {\n margin-right: -0.5rem !important;\n }\n .me-sm-n3 {\n margin-right: -1rem !important;\n }\n .me-sm-n4 {\n margin-right: -1.8rem !important;\n }\n .me-sm-n5 {\n margin-right: -3rem !important;\n }\n .me-sm-n6 {\n margin-right: -4rem !important;\n }\n .me-sm-n7 {\n margin-right: -5rem !important;\n }\n .me-sm-n8 {\n margin-right: -7.5rem !important;\n }\n .me-sm-n9 {\n margin-right: -10rem !important;\n }\n .me-sm-n10 {\n margin-right: -12.5rem !important;\n }\n .me-sm-n11 {\n margin-right: -15rem !important;\n }\n .mb-sm-n1 {\n margin-bottom: -0.25rem !important;\n }\n .mb-sm-n2 {\n margin-bottom: -0.5rem !important;\n }\n .mb-sm-n3 {\n margin-bottom: -1rem !important;\n }\n .mb-sm-n4 {\n margin-bottom: -1.8rem !important;\n }\n .mb-sm-n5 {\n margin-bottom: -3rem !important;\n }\n .mb-sm-n6 {\n margin-bottom: -4rem !important;\n }\n .mb-sm-n7 {\n margin-bottom: -5rem !important;\n }\n .mb-sm-n8 {\n margin-bottom: -7.5rem !important;\n }\n .mb-sm-n9 {\n margin-bottom: -10rem !important;\n }\n .mb-sm-n10 {\n margin-bottom: -12.5rem !important;\n }\n .mb-sm-n11 {\n margin-bottom: -15rem !important;\n }\n .ms-sm-n1 {\n margin-left: -0.25rem !important;\n }\n .ms-sm-n2 {\n margin-left: -0.5rem !important;\n }\n .ms-sm-n3 {\n margin-left: -1rem !important;\n }\n .ms-sm-n4 {\n margin-left: -1.8rem !important;\n }\n .ms-sm-n5 {\n margin-left: -3rem !important;\n }\n .ms-sm-n6 {\n margin-left: -4rem !important;\n }\n .ms-sm-n7 {\n margin-left: -5rem !important;\n }\n .ms-sm-n8 {\n margin-left: -7.5rem !important;\n }\n .ms-sm-n9 {\n margin-left: -10rem !important;\n }\n .ms-sm-n10 {\n margin-left: -12.5rem !important;\n }\n .ms-sm-n11 {\n margin-left: -15rem !important;\n }\n .p-sm-0 {\n padding: 0 !important;\n }\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n .p-sm-3 {\n padding: 1rem !important;\n }\n .p-sm-4 {\n padding: 1.8rem !important;\n }\n .p-sm-5 {\n padding: 3rem !important;\n }\n .p-sm-6 {\n padding: 4rem !important;\n }\n .p-sm-7 {\n padding: 5rem !important;\n }\n .p-sm-8 {\n padding: 7.5rem !important;\n }\n .p-sm-9 {\n padding: 10rem !important;\n }\n .p-sm-10 {\n padding: 12.5rem !important;\n }\n .p-sm-11 {\n padding: 15rem !important;\n }\n .px-sm-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-sm-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-sm-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-sm-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-sm-4 {\n padding-right: 1.8rem !important;\n padding-left: 1.8rem !important;\n }\n .px-sm-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .px-sm-6 {\n padding-right: 4rem !important;\n padding-left: 4rem !important;\n }\n .px-sm-7 {\n padding-right: 5rem !important;\n padding-left: 5rem !important;\n }\n .px-sm-8 {\n padding-right: 7.5rem !important;\n padding-left: 7.5rem !important;\n }\n .px-sm-9 {\n padding-right: 10rem !important;\n padding-left: 10rem !important;\n }\n .px-sm-10 {\n padding-right: 12.5rem !important;\n padding-left: 12.5rem !important;\n }\n .px-sm-11 {\n padding-right: 15rem !important;\n padding-left: 15rem !important;\n }\n .py-sm-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-sm-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-sm-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-sm-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-sm-4 {\n padding-top: 1.8rem !important;\n padding-bottom: 1.8rem !important;\n }\n .py-sm-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .py-sm-6 {\n padding-top: 4rem !important;\n padding-bottom: 4rem !important;\n }\n .py-sm-7 {\n padding-top: 5rem !important;\n padding-bottom: 5rem !important;\n }\n .py-sm-8 {\n padding-top: 7.5rem !important;\n padding-bottom: 7.5rem !important;\n }\n .py-sm-9 {\n padding-top: 10rem !important;\n padding-bottom: 10rem !important;\n }\n .py-sm-10 {\n padding-top: 12.5rem !important;\n padding-bottom: 12.5rem !important;\n }\n .py-sm-11 {\n padding-top: 15rem !important;\n padding-bottom: 15rem !important;\n }\n .pt-sm-0 {\n padding-top: 0 !important;\n }\n .pt-sm-1 {\n padding-top: 0.25rem !important;\n }\n .pt-sm-2 {\n padding-top: 0.5rem !important;\n }\n .pt-sm-3 {\n padding-top: 1rem !important;\n }\n .pt-sm-4 {\n padding-top: 1.8rem !important;\n }\n .pt-sm-5 {\n padding-top: 3rem !important;\n }\n .pt-sm-6 {\n padding-top: 4rem !important;\n }\n .pt-sm-7 {\n padding-top: 5rem !important;\n }\n .pt-sm-8 {\n padding-top: 7.5rem !important;\n }\n .pt-sm-9 {\n padding-top: 10rem !important;\n }\n .pt-sm-10 {\n padding-top: 12.5rem !important;\n }\n .pt-sm-11 {\n padding-top: 15rem !important;\n }\n .pe-sm-0 {\n padding-right: 0 !important;\n }\n .pe-sm-1 {\n padding-right: 0.25rem !important;\n }\n .pe-sm-2 {\n padding-right: 0.5rem !important;\n }\n .pe-sm-3 {\n padding-right: 1rem !important;\n }\n .pe-sm-4 {\n padding-right: 1.8rem !important;\n }\n .pe-sm-5 {\n padding-right: 3rem !important;\n }\n .pe-sm-6 {\n padding-right: 4rem !important;\n }\n .pe-sm-7 {\n padding-right: 5rem !important;\n }\n .pe-sm-8 {\n padding-right: 7.5rem !important;\n }\n .pe-sm-9 {\n padding-right: 10rem !important;\n }\n .pe-sm-10 {\n padding-right: 12.5rem !important;\n }\n .pe-sm-11 {\n padding-right: 15rem !important;\n }\n .pb-sm-0 {\n padding-bottom: 0 !important;\n }\n .pb-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-sm-3 {\n padding-bottom: 1rem !important;\n }\n .pb-sm-4 {\n padding-bottom: 1.8rem !important;\n }\n .pb-sm-5 {\n padding-bottom: 3rem !important;\n }\n .pb-sm-6 {\n padding-bottom: 4rem !important;\n }\n .pb-sm-7 {\n padding-bottom: 5rem !important;\n }\n .pb-sm-8 {\n padding-bottom: 7.5rem !important;\n }\n .pb-sm-9 {\n padding-bottom: 10rem !important;\n }\n .pb-sm-10 {\n padding-bottom: 12.5rem !important;\n }\n .pb-sm-11 {\n padding-bottom: 15rem !important;\n }\n .ps-sm-0 {\n padding-left: 0 !important;\n }\n .ps-sm-1 {\n padding-left: 0.25rem !important;\n }\n .ps-sm-2 {\n padding-left: 0.5rem !important;\n }\n .ps-sm-3 {\n padding-left: 1rem !important;\n }\n .ps-sm-4 {\n padding-left: 1.8rem !important;\n }\n .ps-sm-5 {\n padding-left: 3rem !important;\n }\n .ps-sm-6 {\n padding-left: 4rem !important;\n }\n .ps-sm-7 {\n padding-left: 5rem !important;\n }\n .ps-sm-8 {\n padding-left: 7.5rem !important;\n }\n .ps-sm-9 {\n padding-left: 10rem !important;\n }\n .ps-sm-10 {\n padding-left: 12.5rem !important;\n }\n .ps-sm-11 {\n padding-left: 15rem !important;\n }\n .fs-sm--2 {\n font-size: 0.69444rem !important;\n }\n .fs-sm--1 {\n font-size: 0.83333rem !important;\n }\n .fs-sm-0 {\n font-size: 1rem !important;\n }\n .fs-sm-1 {\n font-size: 1.2rem !important;\n }\n .fs-sm-2 {\n font-size: 1.44rem !important;\n }\n .fs-sm-3 {\n font-size: 1.728rem !important;\n }\n .fs-sm-4 {\n font-size: 2.0736rem !important;\n }\n .fs-sm-5 {\n font-size: 2.48832rem !important;\n }\n .fs-sm-6 {\n font-size: 2.98598rem !important;\n }\n .fs-sm-7 {\n font-size: 3.58318rem !important;\n }\n .fs-sm-8 {\n font-size: 4.29982rem !important;\n }\n .text-sm-start {\n text-align: left !important;\n }\n .text-sm-end {\n text-align: right !important;\n }\n .text-sm-center {\n text-align: center !important;\n }\n .rounded-sm-top {\n border-top-start-radius: 0.25rem !important;\n border-top-end-radius: 0.25rem !important;\n }\n .rounded-sm-top-lg {\n border-top-start-radius: 0.5rem !important;\n border-top-end-radius: 0.5rem !important;\n }\n .rounded-sm-top-0 {\n border-top-start-radius: 0 !important;\n border-top-end-radius: 0 !important;\n }\n .rounded-sm-end {\n border-top-end-radius: 0.25rem !important;\n border-bottom-end-radius: 0.25rem !important;\n }\n .rounded-sm-end-lg {\n border-top-end-radius: 0.5rem !important;\n border-bottom-end-radius: 0.5rem !important;\n }\n .rounded-sm-end-0 {\n border-top-end-radius: 0 !important;\n border-bottom-end-radius: 0 !important;\n }\n .rounded-sm-bottom {\n border-bottom-end-radius: 0.25rem !important;\n border-bottom-start-radius: 0.25rem !important;\n }\n .rounded-sm-bottom-lg {\n border-bottom-end-radius: 0.5rem !important;\n border-bottom-start-radius: 0.5rem !important;\n }\n .rounded-sm-bottom-0 {\n border-bottom-end-radius: 0 !important;\n border-bottom-start-radius: 0 !important;\n }\n .rounded-sm-start {\n border-bottom-start-radius: 0.25rem !important;\n border-top-start-radius: 0.25rem !important;\n }\n .rounded-sm-start-lg {\n border-bottom-start-radius: 0.5rem !important;\n border-top-start-radius: 0.5rem !important;\n }\n .rounded-sm-start-0 {\n border-bottom-start-radius: 0 !important;\n border-top-start-radius: 0 !important;\n }\n .opacity-sm-0 {\n opacity: 0 !important;\n }\n .opacity-sm-25 {\n opacity: 0.25 !important;\n }\n .opacity-sm-50 {\n opacity: 0.5 !important;\n }\n .opacity-sm-75 {\n opacity: 0.75 !important;\n }\n .opacity-sm-85 {\n opacity: 0.85 !important;\n }\n .opacity-sm-100 {\n opacity: 1 !important;\n }\n .text-sm-facebook {\n color: #3c5a99 !important;\n }\n .text-sm-google-plus {\n color: #dd4b39 !important;\n }\n .text-sm-twitter {\n color: #1da1f2 !important;\n }\n .text-sm-linkedin {\n color: #0077b5 !important;\n }\n .text-sm-youtube {\n color: #ff0000 !important;\n }\n .text-sm-github {\n color: #333 !important;\n }\n .text-sm-theme {\n color: #0BAC56 !important;\n }\n .text-sm-black {\n color: #000 !important;\n }\n .text-sm-100 {\n color: #F5F7FA !important;\n }\n .text-sm-200 {\n color: #EBEBED !important;\n }\n .text-sm-300 {\n color: #E1E0E4 !important;\n }\n .text-sm-400 {\n color: #D7D6DA !important;\n }\n .text-sm-500 {\n color: #CDCCD1 !important;\n }\n .text-sm-600 {\n color: #C3C1C8 !important;\n }\n .text-sm-700 {\n color: #7D7987 !important;\n }\n .text-sm-800 {\n color: #616368 !important;\n }\n .text-sm-900 {\n color: #4F5665 !important;\n }\n .text-sm-1000 {\n color: #112D58 !important;\n }\n .text-sm-1100 {\n color: #1F1534 !important;\n }\n .text-sm-white {\n color: #fff !important;\n }\n .max-vh-sm-25 {\n max-height: 25vh !important;\n }\n .max-vh-sm-50 {\n max-height: 50vh !important;\n }\n .max-vh-sm-75 {\n max-height: 75vh !important;\n }\n .max-vh-sm-100 {\n max-height: 100vh !important;\n }\n .border-sm-x {\n border-left: 1px solid #E1E0E4 !important;\n border-right: 1px solid #E1E0E4 !important;\n }\n .border-sm-x-0 {\n border-left: 0 !important;\n border-right: 0 !important;\n }\n .border-sm-y {\n border-top: 1px solid #E1E0E4 !important;\n border-bottom: 1px solid #E1E0E4 !important;\n }\n .border-sm-y-0 {\n border-top: 0 !important;\n border-bottom: 0 !important;\n }\n .border-sm-dashed {\n border: 1px dashed #E1E0E4 !important;\n }\n .border-sm-dashed-top {\n border-top: 1px dashed #E1E0E4 !important;\n }\n .border-sm-dashed-end {\n border-right: 1px dashed #E1E0E4 !important;\n }\n .border-sm-dashed-start {\n border-left: 1px dashed #E1E0E4 !important;\n }\n .border-sm-dashed-bottom {\n border-bottom: 1px dashed #E1E0E4 !important;\n }\n .border-sm-dashed-x {\n border-left: 1px dashed #E1E0E4 !important;\n border-right: 1px dashed #E1E0E4 !important;\n }\n .border-sm-dashed-y {\n border-top: 1px dashed #E1E0E4 !important;\n border-bottom: 1px dashed #E1E0E4 !important;\n }\n .rounded-sm-0 {\n border-radius: 0 !important;\n }\n}\n\n@media (min-width: 768px) {\n .float-md-start {\n float: left !important;\n }\n .float-md-end {\n float: right !important;\n }\n .float-md-none {\n float: none !important;\n }\n .d-md-inline {\n display: inline !important;\n }\n .d-md-inline-block {\n display: inline-block !important;\n }\n .d-md-block {\n display: block !important;\n }\n .d-md-grid {\n display: grid !important;\n }\n .d-md-table {\n display: table !important;\n }\n .d-md-table-row {\n display: table-row !important;\n }\n .d-md-table-cell {\n display: table-cell !important;\n }\n .d-md-flex {\n display: flex !important;\n }\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n .d-md-none {\n display: none !important;\n }\n .position-md-static {\n position: static !important;\n }\n .position-md-absolute {\n position: absolute !important;\n }\n .position-md-relative {\n position: relative !important;\n }\n .position-md-fixed {\n position: fixed !important;\n }\n .position-md-sticky {\n position: sticky !important;\n }\n .translate-md-middle {\n transform: translateX(-50%) translateY(-50%) !important;\n }\n .translate-md-middle-x {\n transform: translateX(-50%) !important;\n }\n .translate-md-middle-y {\n transform: translateY(-50%) !important;\n }\n .border-md {\n border: 1px solid #E1E0E4 !important;\n }\n .border-md-0 {\n border: 0 !important;\n }\n .border-md-top {\n border-top: 1px solid #E1E0E4 !important;\n }\n .border-md-top-0 {\n border-top: 0 !important;\n }\n .border-md-end {\n border-right: 1px solid #E1E0E4 !important;\n }\n .border-md-end-0 {\n border-right: 0 !important;\n }\n .border-md-bottom {\n border-bottom: 1px solid #E1E0E4 !important;\n }\n .border-md-bottom-0 {\n border-bottom: 0 !important;\n }\n .border-md-start {\n border-left: 1px solid #E1E0E4 !important;\n }\n .border-md-start-0 {\n border-left: 0 !important;\n }\n .w-md-25 {\n width: 25% !important;\n }\n .w-md-50 {\n width: 50% !important;\n }\n .w-md-75 {\n width: 75% !important;\n }\n .w-md-100 {\n width: 100% !important;\n }\n .w-md-auto {\n width: auto !important;\n }\n .vw-md-25 {\n width: 25vw !important;\n }\n .vw-md-50 {\n width: 50vw !important;\n }\n .vw-md-75 {\n width: 75vw !important;\n }\n .vw-md-100 {\n width: 100vw !important;\n }\n .h-md-25 {\n height: 25% !important;\n }\n .h-md-50 {\n height: 50% !important;\n }\n .h-md-75 {\n height: 75% !important;\n }\n .h-md-100 {\n height: 100% !important;\n }\n .h-md-auto {\n height: auto !important;\n }\n .vh-md-25 {\n height: 25vh !important;\n }\n .vh-md-50 {\n height: 50vh !important;\n }\n .vh-md-75 {\n height: 75vh !important;\n }\n .vh-md-100 {\n height: 100vh !important;\n }\n .min-vh-md-25 {\n min-height: 25vh !important;\n }\n .min-vh-md-50 {\n min-height: 50vh !important;\n }\n .min-vh-md-75 {\n min-height: 75vh !important;\n }\n .min-vh-md-100 {\n min-height: 100vh !important;\n }\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n .flex-md-row {\n flex-direction: row !important;\n }\n .flex-md-column {\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .gap-md-0 {\n gap: 0 !important;\n }\n .gap-md-1 {\n gap: 0.25rem !important;\n }\n .gap-md-2 {\n gap: 0.5rem !important;\n }\n .gap-md-3 {\n gap: 1rem !important;\n }\n .gap-md-4 {\n gap: 1.8rem !important;\n }\n .gap-md-5 {\n gap: 3rem !important;\n }\n .gap-md-6 {\n gap: 4rem !important;\n }\n .gap-md-7 {\n gap: 5rem !important;\n }\n .gap-md-8 {\n gap: 7.5rem !important;\n }\n .gap-md-9 {\n gap: 10rem !important;\n }\n .gap-md-10 {\n gap: 12.5rem !important;\n }\n .gap-md-11 {\n gap: 15rem !important;\n }\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n justify-content: center !important;\n }\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n .justify-content-md-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-md-start {\n align-items: flex-start !important;\n }\n .align-items-md-end {\n align-items: flex-end !important;\n }\n .align-items-md-center {\n align-items: center !important;\n }\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n .align-content-md-start {\n align-content: flex-start !important;\n }\n .align-content-md-end {\n align-content: flex-end !important;\n }\n .align-content-md-center {\n align-content: center !important;\n }\n .align-content-md-between {\n align-content: space-between !important;\n }\n .align-content-md-around {\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n .align-self-md-auto {\n align-self: auto !important;\n }\n .align-self-md-start {\n align-self: flex-start !important;\n }\n .align-self-md-end {\n align-self: flex-end !important;\n }\n .align-self-md-center {\n align-self: center !important;\n }\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n .order-md-first {\n order: -1 !important;\n }\n .order-md-0 {\n order: 0 !important;\n }\n .order-md-1 {\n order: 1 !important;\n }\n .order-md-2 {\n order: 2 !important;\n }\n .order-md-3 {\n order: 3 !important;\n }\n .order-md-4 {\n order: 4 !important;\n }\n .order-md-5 {\n order: 5 !important;\n }\n .order-md-last {\n order: 6 !important;\n }\n .m-md-0 {\n margin: 0 !important;\n }\n .m-md-1 {\n margin: 0.25rem !important;\n }\n .m-md-2 {\n margin: 0.5rem !important;\n }\n .m-md-3 {\n margin: 1rem !important;\n }\n .m-md-4 {\n margin: 1.8rem !important;\n }\n .m-md-5 {\n margin: 3rem !important;\n }\n .m-md-6 {\n margin: 4rem !important;\n }\n .m-md-7 {\n margin: 5rem !important;\n }\n .m-md-8 {\n margin: 7.5rem !important;\n }\n .m-md-9 {\n margin: 10rem !important;\n }\n .m-md-10 {\n margin: 12.5rem !important;\n }\n .m-md-11 {\n margin: 15rem !important;\n }\n .m-md-auto {\n margin: auto !important;\n }\n .mx-md-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-md-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-md-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-md-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-md-4 {\n margin-right: 1.8rem !important;\n margin-left: 1.8rem !important;\n }\n .mx-md-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-md-6 {\n margin-right: 4rem !important;\n margin-left: 4rem !important;\n }\n .mx-md-7 {\n margin-right: 5rem !important;\n margin-left: 5rem !important;\n }\n .mx-md-8 {\n margin-right: 7.5rem !important;\n margin-left: 7.5rem !important;\n }\n .mx-md-9 {\n margin-right: 10rem !important;\n margin-left: 10rem !important;\n }\n .mx-md-10 {\n margin-right: 12.5rem !important;\n margin-left: 12.5rem !important;\n }\n .mx-md-11 {\n margin-right: 15rem !important;\n margin-left: 15rem !important;\n }\n .mx-md-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-md-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-md-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-md-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-md-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-md-4 {\n margin-top: 1.8rem !important;\n margin-bottom: 1.8rem !important;\n }\n .my-md-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-md-6 {\n margin-top: 4rem !important;\n margin-bottom: 4rem !important;\n }\n .my-md-7 {\n margin-top: 5rem !important;\n margin-bottom: 5rem !important;\n }\n .my-md-8 {\n margin-top: 7.5rem !important;\n margin-bottom: 7.5rem !important;\n }\n .my-md-9 {\n margin-top: 10rem !important;\n margin-bottom: 10rem !important;\n }\n .my-md-10 {\n margin-top: 12.5rem !important;\n margin-bottom: 12.5rem !important;\n }\n .my-md-11 {\n margin-top: 15rem !important;\n margin-bottom: 15rem !important;\n }\n .my-md-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-md-0 {\n margin-top: 0 !important;\n }\n .mt-md-1 {\n margin-top: 0.25rem !important;\n }\n .mt-md-2 {\n margin-top: 0.5rem !important;\n }\n .mt-md-3 {\n margin-top: 1rem !important;\n }\n .mt-md-4 {\n margin-top: 1.8rem !important;\n }\n .mt-md-5 {\n margin-top: 3rem !important;\n }\n .mt-md-6 {\n margin-top: 4rem !important;\n }\n .mt-md-7 {\n margin-top: 5rem !important;\n }\n .mt-md-8 {\n margin-top: 7.5rem !important;\n }\n .mt-md-9 {\n margin-top: 10rem !important;\n }\n .mt-md-10 {\n margin-top: 12.5rem !important;\n }\n .mt-md-11 {\n margin-top: 15rem !important;\n }\n .mt-md-auto {\n margin-top: auto !important;\n }\n .me-md-0 {\n margin-right: 0 !important;\n }\n .me-md-1 {\n margin-right: 0.25rem !important;\n }\n .me-md-2 {\n margin-right: 0.5rem !important;\n }\n .me-md-3 {\n margin-right: 1rem !important;\n }\n .me-md-4 {\n margin-right: 1.8rem !important;\n }\n .me-md-5 {\n margin-right: 3rem !important;\n }\n .me-md-6 {\n margin-right: 4rem !important;\n }\n .me-md-7 {\n margin-right: 5rem !important;\n }\n .me-md-8 {\n margin-right: 7.5rem !important;\n }\n .me-md-9 {\n margin-right: 10rem !important;\n }\n .me-md-10 {\n margin-right: 12.5rem !important;\n }\n .me-md-11 {\n margin-right: 15rem !important;\n }\n .me-md-auto {\n margin-right: auto !important;\n }\n .mb-md-0 {\n margin-bottom: 0 !important;\n }\n .mb-md-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-md-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-md-3 {\n margin-bottom: 1rem !important;\n }\n .mb-md-4 {\n margin-bottom: 1.8rem !important;\n }\n .mb-md-5 {\n margin-bottom: 3rem !important;\n }\n .mb-md-6 {\n margin-bottom: 4rem !important;\n }\n .mb-md-7 {\n margin-bottom: 5rem !important;\n }\n .mb-md-8 {\n margin-bottom: 7.5rem !important;\n }\n .mb-md-9 {\n margin-bottom: 10rem !important;\n }\n .mb-md-10 {\n margin-bottom: 12.5rem !important;\n }\n .mb-md-11 {\n margin-bottom: 15rem !important;\n }\n .mb-md-auto {\n margin-bottom: auto !important;\n }\n .ms-md-0 {\n margin-left: 0 !important;\n }\n .ms-md-1 {\n margin-left: 0.25rem !important;\n }\n .ms-md-2 {\n margin-left: 0.5rem !important;\n }\n .ms-md-3 {\n margin-left: 1rem !important;\n }\n .ms-md-4 {\n margin-left: 1.8rem !important;\n }\n .ms-md-5 {\n margin-left: 3rem !important;\n }\n .ms-md-6 {\n margin-left: 4rem !important;\n }\n .ms-md-7 {\n margin-left: 5rem !important;\n }\n .ms-md-8 {\n margin-left: 7.5rem !important;\n }\n .ms-md-9 {\n margin-left: 10rem !important;\n }\n .ms-md-10 {\n margin-left: 12.5rem !important;\n }\n .ms-md-11 {\n margin-left: 15rem !important;\n }\n .ms-md-auto {\n margin-left: auto !important;\n }\n .m-md-n1 {\n margin: -0.25rem !important;\n }\n .m-md-n2 {\n margin: -0.5rem !important;\n }\n .m-md-n3 {\n margin: -1rem !important;\n }\n .m-md-n4 {\n margin: -1.8rem !important;\n }\n .m-md-n5 {\n margin: -3rem !important;\n }\n .m-md-n6 {\n margin: -4rem !important;\n }\n .m-md-n7 {\n margin: -5rem !important;\n }\n .m-md-n8 {\n margin: -7.5rem !important;\n }\n .m-md-n9 {\n margin: -10rem !important;\n }\n .m-md-n10 {\n margin: -12.5rem !important;\n }\n .m-md-n11 {\n margin: -15rem !important;\n }\n .mx-md-n1 {\n margin-right: -0.25rem !important;\n margin-left: -0.25rem !important;\n }\n .mx-md-n2 {\n margin-right: -0.5rem !important;\n margin-left: -0.5rem !important;\n }\n .mx-md-n3 {\n margin-right: -1rem !important;\n margin-left: -1rem !important;\n }\n .mx-md-n4 {\n margin-right: -1.8rem !important;\n margin-left: -1.8rem !important;\n }\n .mx-md-n5 {\n margin-right: -3rem !important;\n margin-left: -3rem !important;\n }\n .mx-md-n6 {\n margin-right: -4rem !important;\n margin-left: -4rem !important;\n }\n .mx-md-n7 {\n margin-right: -5rem !important;\n margin-left: -5rem !important;\n }\n .mx-md-n8 {\n margin-right: -7.5rem !important;\n margin-left: -7.5rem !important;\n }\n .mx-md-n9 {\n margin-right: -10rem !important;\n margin-left: -10rem !important;\n }\n .mx-md-n10 {\n margin-right: -12.5rem !important;\n margin-left: -12.5rem !important;\n }\n .mx-md-n11 {\n margin-right: -15rem !important;\n margin-left: -15rem !important;\n }\n .my-md-n1 {\n margin-top: -0.25rem !important;\n margin-bottom: -0.25rem !important;\n }\n .my-md-n2 {\n margin-top: -0.5rem !important;\n margin-bottom: -0.5rem !important;\n }\n .my-md-n3 {\n margin-top: -1rem !important;\n margin-bottom: -1rem !important;\n }\n .my-md-n4 {\n margin-top: -1.8rem !important;\n margin-bottom: -1.8rem !important;\n }\n .my-md-n5 {\n margin-top: -3rem !important;\n margin-bottom: -3rem !important;\n }\n .my-md-n6 {\n margin-top: -4rem !important;\n margin-bottom: -4rem !important;\n }\n .my-md-n7 {\n margin-top: -5rem !important;\n margin-bottom: -5rem !important;\n }\n .my-md-n8 {\n margin-top: -7.5rem !important;\n margin-bottom: -7.5rem !important;\n }\n .my-md-n9 {\n margin-top: -10rem !important;\n margin-bottom: -10rem !important;\n }\n .my-md-n10 {\n margin-top: -12.5rem !important;\n margin-bottom: -12.5rem !important;\n }\n .my-md-n11 {\n margin-top: -15rem !important;\n margin-bottom: -15rem !important;\n }\n .mt-md-n1 {\n margin-top: -0.25rem !important;\n }\n .mt-md-n2 {\n margin-top: -0.5rem !important;\n }\n .mt-md-n3 {\n margin-top: -1rem !important;\n }\n .mt-md-n4 {\n margin-top: -1.8rem !important;\n }\n .mt-md-n5 {\n margin-top: -3rem !important;\n }\n .mt-md-n6 {\n margin-top: -4rem !important;\n }\n .mt-md-n7 {\n margin-top: -5rem !important;\n }\n .mt-md-n8 {\n margin-top: -7.5rem !important;\n }\n .mt-md-n9 {\n margin-top: -10rem !important;\n }\n .mt-md-n10 {\n margin-top: -12.5rem !important;\n }\n .mt-md-n11 {\n margin-top: -15rem !important;\n }\n .me-md-n1 {\n margin-right: -0.25rem !important;\n }\n .me-md-n2 {\n margin-right: -0.5rem !important;\n }\n .me-md-n3 {\n margin-right: -1rem !important;\n }\n .me-md-n4 {\n margin-right: -1.8rem !important;\n }\n .me-md-n5 {\n margin-right: -3rem !important;\n }\n .me-md-n6 {\n margin-right: -4rem !important;\n }\n .me-md-n7 {\n margin-right: -5rem !important;\n }\n .me-md-n8 {\n margin-right: -7.5rem !important;\n }\n .me-md-n9 {\n margin-right: -10rem !important;\n }\n .me-md-n10 {\n margin-right: -12.5rem !important;\n }\n .me-md-n11 {\n margin-right: -15rem !important;\n }\n .mb-md-n1 {\n margin-bottom: -0.25rem !important;\n }\n .mb-md-n2 {\n margin-bottom: -0.5rem !important;\n }\n .mb-md-n3 {\n margin-bottom: -1rem !important;\n }\n .mb-md-n4 {\n margin-bottom: -1.8rem !important;\n }\n .mb-md-n5 {\n margin-bottom: -3rem !important;\n }\n .mb-md-n6 {\n margin-bottom: -4rem !important;\n }\n .mb-md-n7 {\n margin-bottom: -5rem !important;\n }\n .mb-md-n8 {\n margin-bottom: -7.5rem !important;\n }\n .mb-md-n9 {\n margin-bottom: -10rem !important;\n }\n .mb-md-n10 {\n margin-bottom: -12.5rem !important;\n }\n .mb-md-n11 {\n margin-bottom: -15rem !important;\n }\n .ms-md-n1 {\n margin-left: -0.25rem !important;\n }\n .ms-md-n2 {\n margin-left: -0.5rem !important;\n }\n .ms-md-n3 {\n margin-left: -1rem !important;\n }\n .ms-md-n4 {\n margin-left: -1.8rem !important;\n }\n .ms-md-n5 {\n margin-left: -3rem !important;\n }\n .ms-md-n6 {\n margin-left: -4rem !important;\n }\n .ms-md-n7 {\n margin-left: -5rem !important;\n }\n .ms-md-n8 {\n margin-left: -7.5rem !important;\n }\n .ms-md-n9 {\n margin-left: -10rem !important;\n }\n .ms-md-n10 {\n margin-left: -12.5rem !important;\n }\n .ms-md-n11 {\n margin-left: -15rem !important;\n }\n .p-md-0 {\n padding: 0 !important;\n }\n .p-md-1 {\n padding: 0.25rem !important;\n }\n .p-md-2 {\n padding: 0.5rem !important;\n }\n .p-md-3 {\n padding: 1rem !important;\n }\n .p-md-4 {\n padding: 1.8rem !important;\n }\n .p-md-5 {\n padding: 3rem !important;\n }\n .p-md-6 {\n padding: 4rem !important;\n }\n .p-md-7 {\n padding: 5rem !important;\n }\n .p-md-8 {\n padding: 7.5rem !important;\n }\n .p-md-9 {\n padding: 10rem !important;\n }\n .p-md-10 {\n padding: 12.5rem !important;\n }\n .p-md-11 {\n padding: 15rem !important;\n }\n .px-md-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-md-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-md-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-md-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-md-4 {\n padding-right: 1.8rem !important;\n padding-left: 1.8rem !important;\n }\n .px-md-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .px-md-6 {\n padding-right: 4rem !important;\n padding-left: 4rem !important;\n }\n .px-md-7 {\n padding-right: 5rem !important;\n padding-left: 5rem !important;\n }\n .px-md-8 {\n padding-right: 7.5rem !important;\n padding-left: 7.5rem !important;\n }\n .px-md-9 {\n padding-right: 10rem !important;\n padding-left: 10rem !important;\n }\n .px-md-10 {\n padding-right: 12.5rem !important;\n padding-left: 12.5rem !important;\n }\n .px-md-11 {\n padding-right: 15rem !important;\n padding-left: 15rem !important;\n }\n .py-md-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-md-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-md-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-md-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-md-4 {\n padding-top: 1.8rem !important;\n padding-bottom: 1.8rem !important;\n }\n .py-md-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .py-md-6 {\n padding-top: 4rem !important;\n padding-bottom: 4rem !important;\n }\n .py-md-7 {\n padding-top: 5rem !important;\n padding-bottom: 5rem !important;\n }\n .py-md-8 {\n padding-top: 7.5rem !important;\n padding-bottom: 7.5rem !important;\n }\n .py-md-9 {\n padding-top: 10rem !important;\n padding-bottom: 10rem !important;\n }\n .py-md-10 {\n padding-top: 12.5rem !important;\n padding-bottom: 12.5rem !important;\n }\n .py-md-11 {\n padding-top: 15rem !important;\n padding-bottom: 15rem !important;\n }\n .pt-md-0 {\n padding-top: 0 !important;\n }\n .pt-md-1 {\n padding-top: 0.25rem !important;\n }\n .pt-md-2 {\n padding-top: 0.5rem !important;\n }\n .pt-md-3 {\n padding-top: 1rem !important;\n }\n .pt-md-4 {\n padding-top: 1.8rem !important;\n }\n .pt-md-5 {\n padding-top: 3rem !important;\n }\n .pt-md-6 {\n padding-top: 4rem !important;\n }\n .pt-md-7 {\n padding-top: 5rem !important;\n }\n .pt-md-8 {\n padding-top: 7.5rem !important;\n }\n .pt-md-9 {\n padding-top: 10rem !important;\n }\n .pt-md-10 {\n padding-top: 12.5rem !important;\n }\n .pt-md-11 {\n padding-top: 15rem !important;\n }\n .pe-md-0 {\n padding-right: 0 !important;\n }\n .pe-md-1 {\n padding-right: 0.25rem !important;\n }\n .pe-md-2 {\n padding-right: 0.5rem !important;\n }\n .pe-md-3 {\n padding-right: 1rem !important;\n }\n .pe-md-4 {\n padding-right: 1.8rem !important;\n }\n .pe-md-5 {\n padding-right: 3rem !important;\n }\n .pe-md-6 {\n padding-right: 4rem !important;\n }\n .pe-md-7 {\n padding-right: 5rem !important;\n }\n .pe-md-8 {\n padding-right: 7.5rem !important;\n }\n .pe-md-9 {\n padding-right: 10rem !important;\n }\n .pe-md-10 {\n padding-right: 12.5rem !important;\n }\n .pe-md-11 {\n padding-right: 15rem !important;\n }\n .pb-md-0 {\n padding-bottom: 0 !important;\n }\n .pb-md-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-md-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-md-3 {\n padding-bottom: 1rem !important;\n }\n .pb-md-4 {\n padding-bottom: 1.8rem !important;\n }\n .pb-md-5 {\n padding-bottom: 3rem !important;\n }\n .pb-md-6 {\n padding-bottom: 4rem !important;\n }\n .pb-md-7 {\n padding-bottom: 5rem !important;\n }\n .pb-md-8 {\n padding-bottom: 7.5rem !important;\n }\n .pb-md-9 {\n padding-bottom: 10rem !important;\n }\n .pb-md-10 {\n padding-bottom: 12.5rem !important;\n }\n .pb-md-11 {\n padding-bottom: 15rem !important;\n }\n .ps-md-0 {\n padding-left: 0 !important;\n }\n .ps-md-1 {\n padding-left: 0.25rem !important;\n }\n .ps-md-2 {\n padding-left: 0.5rem !important;\n }\n .ps-md-3 {\n padding-left: 1rem !important;\n }\n .ps-md-4 {\n padding-left: 1.8rem !important;\n }\n .ps-md-5 {\n padding-left: 3rem !important;\n }\n .ps-md-6 {\n padding-left: 4rem !important;\n }\n .ps-md-7 {\n padding-left: 5rem !important;\n }\n .ps-md-8 {\n padding-left: 7.5rem !important;\n }\n .ps-md-9 {\n padding-left: 10rem !important;\n }\n .ps-md-10 {\n padding-left: 12.5rem !important;\n }\n .ps-md-11 {\n padding-left: 15rem !important;\n }\n .fs-md--2 {\n font-size: 0.69444rem !important;\n }\n .fs-md--1 {\n font-size: 0.83333rem !important;\n }\n .fs-md-0 {\n font-size: 1rem !important;\n }\n .fs-md-1 {\n font-size: 1.2rem !important;\n }\n .fs-md-2 {\n font-size: 1.44rem !important;\n }\n .fs-md-3 {\n font-size: 1.728rem !important;\n }\n .fs-md-4 {\n font-size: 2.0736rem !important;\n }\n .fs-md-5 {\n font-size: 2.48832rem !important;\n }\n .fs-md-6 {\n font-size: 2.98598rem !important;\n }\n .fs-md-7 {\n font-size: 3.58318rem !important;\n }\n .fs-md-8 {\n font-size: 4.29982rem !important;\n }\n .text-md-start {\n text-align: left !important;\n }\n .text-md-end {\n text-align: right !important;\n }\n .text-md-center {\n text-align: center !important;\n }\n .rounded-md-top {\n border-top-start-radius: 0.25rem !important;\n border-top-end-radius: 0.25rem !important;\n }\n .rounded-md-top-lg {\n border-top-start-radius: 0.5rem !important;\n border-top-end-radius: 0.5rem !important;\n }\n .rounded-md-top-0 {\n border-top-start-radius: 0 !important;\n border-top-end-radius: 0 !important;\n }\n .rounded-md-end {\n border-top-end-radius: 0.25rem !important;\n border-bottom-end-radius: 0.25rem !important;\n }\n .rounded-md-end-lg {\n border-top-end-radius: 0.5rem !important;\n border-bottom-end-radius: 0.5rem !important;\n }\n .rounded-md-end-0 {\n border-top-end-radius: 0 !important;\n border-bottom-end-radius: 0 !important;\n }\n .rounded-md-bottom {\n border-bottom-end-radius: 0.25rem !important;\n border-bottom-start-radius: 0.25rem !important;\n }\n .rounded-md-bottom-lg {\n border-bottom-end-radius: 0.5rem !important;\n border-bottom-start-radius: 0.5rem !important;\n }\n .rounded-md-bottom-0 {\n border-bottom-end-radius: 0 !important;\n border-bottom-start-radius: 0 !important;\n }\n .rounded-md-start {\n border-bottom-start-radius: 0.25rem !important;\n border-top-start-radius: 0.25rem !important;\n }\n .rounded-md-start-lg {\n border-bottom-start-radius: 0.5rem !important;\n border-top-start-radius: 0.5rem !important;\n }\n .rounded-md-start-0 {\n border-bottom-start-radius: 0 !important;\n border-top-start-radius: 0 !important;\n }\n .opacity-md-0 {\n opacity: 0 !important;\n }\n .opacity-md-25 {\n opacity: 0.25 !important;\n }\n .opacity-md-50 {\n opacity: 0.5 !important;\n }\n .opacity-md-75 {\n opacity: 0.75 !important;\n }\n .opacity-md-85 {\n opacity: 0.85 !important;\n }\n .opacity-md-100 {\n opacity: 1 !important;\n }\n .text-md-facebook {\n color: #3c5a99 !important;\n }\n .text-md-google-plus {\n color: #dd4b39 !important;\n }\n .text-md-twitter {\n color: #1da1f2 !important;\n }\n .text-md-linkedin {\n color: #0077b5 !important;\n }\n .text-md-youtube {\n color: #ff0000 !important;\n }\n .text-md-github {\n color: #333 !important;\n }\n .text-md-theme {\n color: #0BAC56 !important;\n }\n .text-md-black {\n color: #000 !important;\n }\n .text-md-100 {\n color: #F5F7FA !important;\n }\n .text-md-200 {\n color: #EBEBED !important;\n }\n .text-md-300 {\n color: #E1E0E4 !important;\n }\n .text-md-400 {\n color: #D7D6DA !important;\n }\n .text-md-500 {\n color: #CDCCD1 !important;\n }\n .text-md-600 {\n color: #C3C1C8 !important;\n }\n .text-md-700 {\n color: #7D7987 !important;\n }\n .text-md-800 {\n color: #616368 !important;\n }\n .text-md-900 {\n color: #4F5665 !important;\n }\n .text-md-1000 {\n color: #112D58 !important;\n }\n .text-md-1100 {\n color: #1F1534 !important;\n }\n .text-md-white {\n color: #fff !important;\n }\n .max-vh-md-25 {\n max-height: 25vh !important;\n }\n .max-vh-md-50 {\n max-height: 50vh !important;\n }\n .max-vh-md-75 {\n max-height: 75vh !important;\n }\n .max-vh-md-100 {\n max-height: 100vh !important;\n }\n .border-md-x {\n border-left: 1px solid #E1E0E4 !important;\n border-right: 1px solid #E1E0E4 !important;\n }\n .border-md-x-0 {\n border-left: 0 !important;\n border-right: 0 !important;\n }\n .border-md-y {\n border-top: 1px solid #E1E0E4 !important;\n border-bottom: 1px solid #E1E0E4 !important;\n }\n .border-md-y-0 {\n border-top: 0 !important;\n border-bottom: 0 !important;\n }\n .border-md-dashed {\n border: 1px dashed #E1E0E4 !important;\n }\n .border-md-dashed-top {\n border-top: 1px dashed #E1E0E4 !important;\n }\n .border-md-dashed-end {\n border-right: 1px dashed #E1E0E4 !important;\n }\n .border-md-dashed-start {\n border-left: 1px dashed #E1E0E4 !important;\n }\n .border-md-dashed-bottom {\n border-bottom: 1px dashed #E1E0E4 !important;\n }\n .border-md-dashed-x {\n border-left: 1px dashed #E1E0E4 !important;\n border-right: 1px dashed #E1E0E4 !important;\n }\n .border-md-dashed-y {\n border-top: 1px dashed #E1E0E4 !important;\n border-bottom: 1px dashed #E1E0E4 !important;\n }\n .rounded-md-0 {\n border-radius: 0 !important;\n }\n}\n\n@media (min-width: 992px) {\n .float-lg-start {\n float: left !important;\n }\n .float-lg-end {\n float: right !important;\n }\n .float-lg-none {\n float: none !important;\n }\n .d-lg-inline {\n display: inline !important;\n }\n .d-lg-inline-block {\n display: inline-block !important;\n }\n .d-lg-block {\n display: block !important;\n }\n .d-lg-grid {\n display: grid !important;\n }\n .d-lg-table {\n display: table !important;\n }\n .d-lg-table-row {\n display: table-row !important;\n }\n .d-lg-table-cell {\n display: table-cell !important;\n }\n .d-lg-flex {\n display: flex !important;\n }\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n .d-lg-none {\n display: none !important;\n }\n .position-lg-static {\n position: static !important;\n }\n .position-lg-absolute {\n position: absolute !important;\n }\n .position-lg-relative {\n position: relative !important;\n }\n .position-lg-fixed {\n position: fixed !important;\n }\n .position-lg-sticky {\n position: sticky !important;\n }\n .translate-lg-middle {\n transform: translateX(-50%) translateY(-50%) !important;\n }\n .translate-lg-middle-x {\n transform: translateX(-50%) !important;\n }\n .translate-lg-middle-y {\n transform: translateY(-50%) !important;\n }\n .border-lg {\n border: 1px solid #E1E0E4 !important;\n }\n .border-lg-0 {\n border: 0 !important;\n }\n .border-lg-top {\n border-top: 1px solid #E1E0E4 !important;\n }\n .border-lg-top-0 {\n border-top: 0 !important;\n }\n .border-lg-end {\n border-right: 1px solid #E1E0E4 !important;\n }\n .border-lg-end-0 {\n border-right: 0 !important;\n }\n .border-lg-bottom {\n border-bottom: 1px solid #E1E0E4 !important;\n }\n .border-lg-bottom-0 {\n border-bottom: 0 !important;\n }\n .border-lg-start {\n border-left: 1px solid #E1E0E4 !important;\n }\n .border-lg-start-0 {\n border-left: 0 !important;\n }\n .w-lg-25 {\n width: 25% !important;\n }\n .w-lg-50 {\n width: 50% !important;\n }\n .w-lg-75 {\n width: 75% !important;\n }\n .w-lg-100 {\n width: 100% !important;\n }\n .w-lg-auto {\n width: auto !important;\n }\n .vw-lg-25 {\n width: 25vw !important;\n }\n .vw-lg-50 {\n width: 50vw !important;\n }\n .vw-lg-75 {\n width: 75vw !important;\n }\n .vw-lg-100 {\n width: 100vw !important;\n }\n .h-lg-25 {\n height: 25% !important;\n }\n .h-lg-50 {\n height: 50% !important;\n }\n .h-lg-75 {\n height: 75% !important;\n }\n .h-lg-100 {\n height: 100% !important;\n }\n .h-lg-auto {\n height: auto !important;\n }\n .vh-lg-25 {\n height: 25vh !important;\n }\n .vh-lg-50 {\n height: 50vh !important;\n }\n .vh-lg-75 {\n height: 75vh !important;\n }\n .vh-lg-100 {\n height: 100vh !important;\n }\n .min-vh-lg-25 {\n min-height: 25vh !important;\n }\n .min-vh-lg-50 {\n min-height: 50vh !important;\n }\n .min-vh-lg-75 {\n min-height: 75vh !important;\n }\n .min-vh-lg-100 {\n min-height: 100vh !important;\n }\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n .flex-lg-row {\n flex-direction: row !important;\n }\n .flex-lg-column {\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .gap-lg-0 {\n gap: 0 !important;\n }\n .gap-lg-1 {\n gap: 0.25rem !important;\n }\n .gap-lg-2 {\n gap: 0.5rem !important;\n }\n .gap-lg-3 {\n gap: 1rem !important;\n }\n .gap-lg-4 {\n gap: 1.8rem !important;\n }\n .gap-lg-5 {\n gap: 3rem !important;\n }\n .gap-lg-6 {\n gap: 4rem !important;\n }\n .gap-lg-7 {\n gap: 5rem !important;\n }\n .gap-lg-8 {\n gap: 7.5rem !important;\n }\n .gap-lg-9 {\n gap: 10rem !important;\n }\n .gap-lg-10 {\n gap: 12.5rem !important;\n }\n .gap-lg-11 {\n gap: 15rem !important;\n }\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n justify-content: center !important;\n }\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n .justify-content-lg-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n align-items: center !important;\n }\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n align-content: center !important;\n }\n .align-content-lg-between {\n align-content: space-between !important;\n }\n .align-content-lg-around {\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n align-self: auto !important;\n }\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n align-self: center !important;\n }\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n .order-lg-first {\n order: -1 !important;\n }\n .order-lg-0 {\n order: 0 !important;\n }\n .order-lg-1 {\n order: 1 !important;\n }\n .order-lg-2 {\n order: 2 !important;\n }\n .order-lg-3 {\n order: 3 !important;\n }\n .order-lg-4 {\n order: 4 !important;\n }\n .order-lg-5 {\n order: 5 !important;\n }\n .order-lg-last {\n order: 6 !important;\n }\n .m-lg-0 {\n margin: 0 !important;\n }\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n .m-lg-3 {\n margin: 1rem !important;\n }\n .m-lg-4 {\n margin: 1.8rem !important;\n }\n .m-lg-5 {\n margin: 3rem !important;\n }\n .m-lg-6 {\n margin: 4rem !important;\n }\n .m-lg-7 {\n margin: 5rem !important;\n }\n .m-lg-8 {\n margin: 7.5rem !important;\n }\n .m-lg-9 {\n margin: 10rem !important;\n }\n .m-lg-10 {\n margin: 12.5rem !important;\n }\n .m-lg-11 {\n margin: 15rem !important;\n }\n .m-lg-auto {\n margin: auto !important;\n }\n .mx-lg-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-lg-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-lg-4 {\n margin-right: 1.8rem !important;\n margin-left: 1.8rem !important;\n }\n .mx-lg-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-lg-6 {\n margin-right: 4rem !important;\n margin-left: 4rem !important;\n }\n .mx-lg-7 {\n margin-right: 5rem !important;\n margin-left: 5rem !important;\n }\n .mx-lg-8 {\n margin-right: 7.5rem !important;\n margin-left: 7.5rem !important;\n }\n .mx-lg-9 {\n margin-right: 10rem !important;\n margin-left: 10rem !important;\n }\n .mx-lg-10 {\n margin-right: 12.5rem !important;\n margin-left: 12.5rem !important;\n }\n .mx-lg-11 {\n margin-right: 15rem !important;\n margin-left: 15rem !important;\n }\n .mx-lg-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-lg-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-lg-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-lg-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-lg-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-lg-4 {\n margin-top: 1.8rem !important;\n margin-bottom: 1.8rem !important;\n }\n .my-lg-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-lg-6 {\n margin-top: 4rem !important;\n margin-bottom: 4rem !important;\n }\n .my-lg-7 {\n margin-top: 5rem !important;\n margin-bottom: 5rem !important;\n }\n .my-lg-8 {\n margin-top: 7.5rem !important;\n margin-bottom: 7.5rem !important;\n }\n .my-lg-9 {\n margin-top: 10rem !important;\n margin-bottom: 10rem !important;\n }\n .my-lg-10 {\n margin-top: 12.5rem !important;\n margin-bottom: 12.5rem !important;\n }\n .my-lg-11 {\n margin-top: 15rem !important;\n margin-bottom: 15rem !important;\n }\n .my-lg-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-lg-0 {\n margin-top: 0 !important;\n }\n .mt-lg-1 {\n margin-top: 0.25rem !important;\n }\n .mt-lg-2 {\n margin-top: 0.5rem !important;\n }\n .mt-lg-3 {\n margin-top: 1rem !important;\n }\n .mt-lg-4 {\n margin-top: 1.8rem !important;\n }\n .mt-lg-5 {\n margin-top: 3rem !important;\n }\n .mt-lg-6 {\n margin-top: 4rem !important;\n }\n .mt-lg-7 {\n margin-top: 5rem !important;\n }\n .mt-lg-8 {\n margin-top: 7.5rem !important;\n }\n .mt-lg-9 {\n margin-top: 10rem !important;\n }\n .mt-lg-10 {\n margin-top: 12.5rem !important;\n }\n .mt-lg-11 {\n margin-top: 15rem !important;\n }\n .mt-lg-auto {\n margin-top: auto !important;\n }\n .me-lg-0 {\n margin-right: 0 !important;\n }\n .me-lg-1 {\n margin-right: 0.25rem !important;\n }\n .me-lg-2 {\n margin-right: 0.5rem !important;\n }\n .me-lg-3 {\n margin-right: 1rem !important;\n }\n .me-lg-4 {\n margin-right: 1.8rem !important;\n }\n .me-lg-5 {\n margin-right: 3rem !important;\n }\n .me-lg-6 {\n margin-right: 4rem !important;\n }\n .me-lg-7 {\n margin-right: 5rem !important;\n }\n .me-lg-8 {\n margin-right: 7.5rem !important;\n }\n .me-lg-9 {\n margin-right: 10rem !important;\n }\n .me-lg-10 {\n margin-right: 12.5rem !important;\n }\n .me-lg-11 {\n margin-right: 15rem !important;\n }\n .me-lg-auto {\n margin-right: auto !important;\n }\n .mb-lg-0 {\n margin-bottom: 0 !important;\n }\n .mb-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-lg-3 {\n margin-bottom: 1rem !important;\n }\n .mb-lg-4 {\n margin-bottom: 1.8rem !important;\n }\n .mb-lg-5 {\n margin-bottom: 3rem !important;\n }\n .mb-lg-6 {\n margin-bottom: 4rem !important;\n }\n .mb-lg-7 {\n margin-bottom: 5rem !important;\n }\n .mb-lg-8 {\n margin-bottom: 7.5rem !important;\n }\n .mb-lg-9 {\n margin-bottom: 10rem !important;\n }\n .mb-lg-10 {\n margin-bottom: 12.5rem !important;\n }\n .mb-lg-11 {\n margin-bottom: 15rem !important;\n }\n .mb-lg-auto {\n margin-bottom: auto !important;\n }\n .ms-lg-0 {\n margin-left: 0 !important;\n }\n .ms-lg-1 {\n margin-left: 0.25rem !important;\n }\n .ms-lg-2 {\n margin-left: 0.5rem !important;\n }\n .ms-lg-3 {\n margin-left: 1rem !important;\n }\n .ms-lg-4 {\n margin-left: 1.8rem !important;\n }\n .ms-lg-5 {\n margin-left: 3rem !important;\n }\n .ms-lg-6 {\n margin-left: 4rem !important;\n }\n .ms-lg-7 {\n margin-left: 5rem !important;\n }\n .ms-lg-8 {\n margin-left: 7.5rem !important;\n }\n .ms-lg-9 {\n margin-left: 10rem !important;\n }\n .ms-lg-10 {\n margin-left: 12.5rem !important;\n }\n .ms-lg-11 {\n margin-left: 15rem !important;\n }\n .ms-lg-auto {\n margin-left: auto !important;\n }\n .m-lg-n1 {\n margin: -0.25rem !important;\n }\n .m-lg-n2 {\n margin: -0.5rem !important;\n }\n .m-lg-n3 {\n margin: -1rem !important;\n }\n .m-lg-n4 {\n margin: -1.8rem !important;\n }\n .m-lg-n5 {\n margin: -3rem !important;\n }\n .m-lg-n6 {\n margin: -4rem !important;\n }\n .m-lg-n7 {\n margin: -5rem !important;\n }\n .m-lg-n8 {\n margin: -7.5rem !important;\n }\n .m-lg-n9 {\n margin: -10rem !important;\n }\n .m-lg-n10 {\n margin: -12.5rem !important;\n }\n .m-lg-n11 {\n margin: -15rem !important;\n }\n .mx-lg-n1 {\n margin-right: -0.25rem !important;\n margin-left: -0.25rem !important;\n }\n .mx-lg-n2 {\n margin-right: -0.5rem !important;\n margin-left: -0.5rem !important;\n }\n .mx-lg-n3 {\n margin-right: -1rem !important;\n margin-left: -1rem !important;\n }\n .mx-lg-n4 {\n margin-right: -1.8rem !important;\n margin-left: -1.8rem !important;\n }\n .mx-lg-n5 {\n margin-right: -3rem !important;\n margin-left: -3rem !important;\n }\n .mx-lg-n6 {\n margin-right: -4rem !important;\n margin-left: -4rem !important;\n }\n .mx-lg-n7 {\n margin-right: -5rem !important;\n margin-left: -5rem !important;\n }\n .mx-lg-n8 {\n margin-right: -7.5rem !important;\n margin-left: -7.5rem !important;\n }\n .mx-lg-n9 {\n margin-right: -10rem !important;\n margin-left: -10rem !important;\n }\n .mx-lg-n10 {\n margin-right: -12.5rem !important;\n margin-left: -12.5rem !important;\n }\n .mx-lg-n11 {\n margin-right: -15rem !important;\n margin-left: -15rem !important;\n }\n .my-lg-n1 {\n margin-top: -0.25rem !important;\n margin-bottom: -0.25rem !important;\n }\n .my-lg-n2 {\n margin-top: -0.5rem !important;\n margin-bottom: -0.5rem !important;\n }\n .my-lg-n3 {\n margin-top: -1rem !important;\n margin-bottom: -1rem !important;\n }\n .my-lg-n4 {\n margin-top: -1.8rem !important;\n margin-bottom: -1.8rem !important;\n }\n .my-lg-n5 {\n margin-top: -3rem !important;\n margin-bottom: -3rem !important;\n }\n .my-lg-n6 {\n margin-top: -4rem !important;\n margin-bottom: -4rem !important;\n }\n .my-lg-n7 {\n margin-top: -5rem !important;\n margin-bottom: -5rem !important;\n }\n .my-lg-n8 {\n margin-top: -7.5rem !important;\n margin-bottom: -7.5rem !important;\n }\n .my-lg-n9 {\n margin-top: -10rem !important;\n margin-bottom: -10rem !important;\n }\n .my-lg-n10 {\n margin-top: -12.5rem !important;\n margin-bottom: -12.5rem !important;\n }\n .my-lg-n11 {\n margin-top: -15rem !important;\n margin-bottom: -15rem !important;\n }\n .mt-lg-n1 {\n margin-top: -0.25rem !important;\n }\n .mt-lg-n2 {\n margin-top: -0.5rem !important;\n }\n .mt-lg-n3 {\n margin-top: -1rem !important;\n }\n .mt-lg-n4 {\n margin-top: -1.8rem !important;\n }\n .mt-lg-n5 {\n margin-top: -3rem !important;\n }\n .mt-lg-n6 {\n margin-top: -4rem !important;\n }\n .mt-lg-n7 {\n margin-top: -5rem !important;\n }\n .mt-lg-n8 {\n margin-top: -7.5rem !important;\n }\n .mt-lg-n9 {\n margin-top: -10rem !important;\n }\n .mt-lg-n10 {\n margin-top: -12.5rem !important;\n }\n .mt-lg-n11 {\n margin-top: -15rem !important;\n }\n .me-lg-n1 {\n margin-right: -0.25rem !important;\n }\n .me-lg-n2 {\n margin-right: -0.5rem !important;\n }\n .me-lg-n3 {\n margin-right: -1rem !important;\n }\n .me-lg-n4 {\n margin-right: -1.8rem !important;\n }\n .me-lg-n5 {\n margin-right: -3rem !important;\n }\n .me-lg-n6 {\n margin-right: -4rem !important;\n }\n .me-lg-n7 {\n margin-right: -5rem !important;\n }\n .me-lg-n8 {\n margin-right: -7.5rem !important;\n }\n .me-lg-n9 {\n margin-right: -10rem !important;\n }\n .me-lg-n10 {\n margin-right: -12.5rem !important;\n }\n .me-lg-n11 {\n margin-right: -15rem !important;\n }\n .mb-lg-n1 {\n margin-bottom: -0.25rem !important;\n }\n .mb-lg-n2 {\n margin-bottom: -0.5rem !important;\n }\n .mb-lg-n3 {\n margin-bottom: -1rem !important;\n }\n .mb-lg-n4 {\n margin-bottom: -1.8rem !important;\n }\n .mb-lg-n5 {\n margin-bottom: -3rem !important;\n }\n .mb-lg-n6 {\n margin-bottom: -4rem !important;\n }\n .mb-lg-n7 {\n margin-bottom: -5rem !important;\n }\n .mb-lg-n8 {\n margin-bottom: -7.5rem !important;\n }\n .mb-lg-n9 {\n margin-bottom: -10rem !important;\n }\n .mb-lg-n10 {\n margin-bottom: -12.5rem !important;\n }\n .mb-lg-n11 {\n margin-bottom: -15rem !important;\n }\n .ms-lg-n1 {\n margin-left: -0.25rem !important;\n }\n .ms-lg-n2 {\n margin-left: -0.5rem !important;\n }\n .ms-lg-n3 {\n margin-left: -1rem !important;\n }\n .ms-lg-n4 {\n margin-left: -1.8rem !important;\n }\n .ms-lg-n5 {\n margin-left: -3rem !important;\n }\n .ms-lg-n6 {\n margin-left: -4rem !important;\n }\n .ms-lg-n7 {\n margin-left: -5rem !important;\n }\n .ms-lg-n8 {\n margin-left: -7.5rem !important;\n }\n .ms-lg-n9 {\n margin-left: -10rem !important;\n }\n .ms-lg-n10 {\n margin-left: -12.5rem !important;\n }\n .ms-lg-n11 {\n margin-left: -15rem !important;\n }\n .p-lg-0 {\n padding: 0 !important;\n }\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n .p-lg-3 {\n padding: 1rem !important;\n }\n .p-lg-4 {\n padding: 1.8rem !important;\n }\n .p-lg-5 {\n padding: 3rem !important;\n }\n .p-lg-6 {\n padding: 4rem !important;\n }\n .p-lg-7 {\n padding: 5rem !important;\n }\n .p-lg-8 {\n padding: 7.5rem !important;\n }\n .p-lg-9 {\n padding: 10rem !important;\n }\n .p-lg-10 {\n padding: 12.5rem !important;\n }\n .p-lg-11 {\n padding: 15rem !important;\n }\n .px-lg-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-lg-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-lg-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-lg-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-lg-4 {\n padding-right: 1.8rem !important;\n padding-left: 1.8rem !important;\n }\n .px-lg-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .px-lg-6 {\n padding-right: 4rem !important;\n padding-left: 4rem !important;\n }\n .px-lg-7 {\n padding-right: 5rem !important;\n padding-left: 5rem !important;\n }\n .px-lg-8 {\n padding-right: 7.5rem !important;\n padding-left: 7.5rem !important;\n }\n .px-lg-9 {\n padding-right: 10rem !important;\n padding-left: 10rem !important;\n }\n .px-lg-10 {\n padding-right: 12.5rem !important;\n padding-left: 12.5rem !important;\n }\n .px-lg-11 {\n padding-right: 15rem !important;\n padding-left: 15rem !important;\n }\n .py-lg-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-lg-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-lg-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-lg-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-lg-4 {\n padding-top: 1.8rem !important;\n padding-bottom: 1.8rem !important;\n }\n .py-lg-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .py-lg-6 {\n padding-top: 4rem !important;\n padding-bottom: 4rem !important;\n }\n .py-lg-7 {\n padding-top: 5rem !important;\n padding-bottom: 5rem !important;\n }\n .py-lg-8 {\n padding-top: 7.5rem !important;\n padding-bottom: 7.5rem !important;\n }\n .py-lg-9 {\n padding-top: 10rem !important;\n padding-bottom: 10rem !important;\n }\n .py-lg-10 {\n padding-top: 12.5rem !important;\n padding-bottom: 12.5rem !important;\n }\n .py-lg-11 {\n padding-top: 15rem !important;\n padding-bottom: 15rem !important;\n }\n .pt-lg-0 {\n padding-top: 0 !important;\n }\n .pt-lg-1 {\n padding-top: 0.25rem !important;\n }\n .pt-lg-2 {\n padding-top: 0.5rem !important;\n }\n .pt-lg-3 {\n padding-top: 1rem !important;\n }\n .pt-lg-4 {\n padding-top: 1.8rem !important;\n }\n .pt-lg-5 {\n padding-top: 3rem !important;\n }\n .pt-lg-6 {\n padding-top: 4rem !important;\n }\n .pt-lg-7 {\n padding-top: 5rem !important;\n }\n .pt-lg-8 {\n padding-top: 7.5rem !important;\n }\n .pt-lg-9 {\n padding-top: 10rem !important;\n }\n .pt-lg-10 {\n padding-top: 12.5rem !important;\n }\n .pt-lg-11 {\n padding-top: 15rem !important;\n }\n .pe-lg-0 {\n padding-right: 0 !important;\n }\n .pe-lg-1 {\n padding-right: 0.25rem !important;\n }\n .pe-lg-2 {\n padding-right: 0.5rem !important;\n }\n .pe-lg-3 {\n padding-right: 1rem !important;\n }\n .pe-lg-4 {\n padding-right: 1.8rem !important;\n }\n .pe-lg-5 {\n padding-right: 3rem !important;\n }\n .pe-lg-6 {\n padding-right: 4rem !important;\n }\n .pe-lg-7 {\n padding-right: 5rem !important;\n }\n .pe-lg-8 {\n padding-right: 7.5rem !important;\n }\n .pe-lg-9 {\n padding-right: 10rem !important;\n }\n .pe-lg-10 {\n padding-right: 12.5rem !important;\n }\n .pe-lg-11 {\n padding-right: 15rem !important;\n }\n .pb-lg-0 {\n padding-bottom: 0 !important;\n }\n .pb-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-lg-3 {\n padding-bottom: 1rem !important;\n }\n .pb-lg-4 {\n padding-bottom: 1.8rem !important;\n }\n .pb-lg-5 {\n padding-bottom: 3rem !important;\n }\n .pb-lg-6 {\n padding-bottom: 4rem !important;\n }\n .pb-lg-7 {\n padding-bottom: 5rem !important;\n }\n .pb-lg-8 {\n padding-bottom: 7.5rem !important;\n }\n .pb-lg-9 {\n padding-bottom: 10rem !important;\n }\n .pb-lg-10 {\n padding-bottom: 12.5rem !important;\n }\n .pb-lg-11 {\n padding-bottom: 15rem !important;\n }\n .ps-lg-0 {\n padding-left: 0 !important;\n }\n .ps-lg-1 {\n padding-left: 0.25rem !important;\n }\n .ps-lg-2 {\n padding-left: 0.5rem !important;\n }\n .ps-lg-3 {\n padding-left: 1rem !important;\n }\n .ps-lg-4 {\n padding-left: 1.8rem !important;\n }\n .ps-lg-5 {\n padding-left: 3rem !important;\n }\n .ps-lg-6 {\n padding-left: 4rem !important;\n }\n .ps-lg-7 {\n padding-left: 5rem !important;\n }\n .ps-lg-8 {\n padding-left: 7.5rem !important;\n }\n .ps-lg-9 {\n padding-left: 10rem !important;\n }\n .ps-lg-10 {\n padding-left: 12.5rem !important;\n }\n .ps-lg-11 {\n padding-left: 15rem !important;\n }\n .fs-lg--2 {\n font-size: 0.69444rem !important;\n }\n .fs-lg--1 {\n font-size: 0.83333rem !important;\n }\n .fs-lg-0 {\n font-size: 1rem !important;\n }\n .fs-lg-1 {\n font-size: 1.2rem !important;\n }\n .fs-lg-2 {\n font-size: 1.44rem !important;\n }\n .fs-lg-3 {\n font-size: 1.728rem !important;\n }\n .fs-lg-4 {\n font-size: 2.0736rem !important;\n }\n .fs-lg-5 {\n font-size: 2.48832rem !important;\n }\n .fs-lg-6 {\n font-size: 2.98598rem !important;\n }\n .fs-lg-7 {\n font-size: 3.58318rem !important;\n }\n .fs-lg-8 {\n font-size: 4.29982rem !important;\n }\n .text-lg-start {\n text-align: left !important;\n }\n .text-lg-end {\n text-align: right !important;\n }\n .text-lg-center {\n text-align: center !important;\n }\n .rounded-lg-top {\n border-top-start-radius: 0.25rem !important;\n border-top-end-radius: 0.25rem !important;\n }\n .rounded-lg-top-lg {\n border-top-start-radius: 0.5rem !important;\n border-top-end-radius: 0.5rem !important;\n }\n .rounded-lg-top-0 {\n border-top-start-radius: 0 !important;\n border-top-end-radius: 0 !important;\n }\n .rounded-lg-end {\n border-top-end-radius: 0.25rem !important;\n border-bottom-end-radius: 0.25rem !important;\n }\n .rounded-lg-end-lg {\n border-top-end-radius: 0.5rem !important;\n border-bottom-end-radius: 0.5rem !important;\n }\n .rounded-lg-end-0 {\n border-top-end-radius: 0 !important;\n border-bottom-end-radius: 0 !important;\n }\n .rounded-lg-bottom {\n border-bottom-end-radius: 0.25rem !important;\n border-bottom-start-radius: 0.25rem !important;\n }\n .rounded-lg-bottom-lg {\n border-bottom-end-radius: 0.5rem !important;\n border-bottom-start-radius: 0.5rem !important;\n }\n .rounded-lg-bottom-0 {\n border-bottom-end-radius: 0 !important;\n border-bottom-start-radius: 0 !important;\n }\n .rounded-lg-start {\n border-bottom-start-radius: 0.25rem !important;\n border-top-start-radius: 0.25rem !important;\n }\n .rounded-lg-start-lg {\n border-bottom-start-radius: 0.5rem !important;\n border-top-start-radius: 0.5rem !important;\n }\n .rounded-lg-start-0 {\n border-bottom-start-radius: 0 !important;\n border-top-start-radius: 0 !important;\n }\n .opacity-lg-0 {\n opacity: 0 !important;\n }\n .opacity-lg-25 {\n opacity: 0.25 !important;\n }\n .opacity-lg-50 {\n opacity: 0.5 !important;\n }\n .opacity-lg-75 {\n opacity: 0.75 !important;\n }\n .opacity-lg-85 {\n opacity: 0.85 !important;\n }\n .opacity-lg-100 {\n opacity: 1 !important;\n }\n .text-lg-facebook {\n color: #3c5a99 !important;\n }\n .text-lg-google-plus {\n color: #dd4b39 !important;\n }\n .text-lg-twitter {\n color: #1da1f2 !important;\n }\n .text-lg-linkedin {\n color: #0077b5 !important;\n }\n .text-lg-youtube {\n color: #ff0000 !important;\n }\n .text-lg-github {\n color: #333 !important;\n }\n .text-lg-theme {\n color: #0BAC56 !important;\n }\n .text-lg-black {\n color: #000 !important;\n }\n .text-lg-100 {\n color: #F5F7FA !important;\n }\n .text-lg-200 {\n color: #EBEBED !important;\n }\n .text-lg-300 {\n color: #E1E0E4 !important;\n }\n .text-lg-400 {\n color: #D7D6DA !important;\n }\n .text-lg-500 {\n color: #CDCCD1 !important;\n }\n .text-lg-600 {\n color: #C3C1C8 !important;\n }\n .text-lg-700 {\n color: #7D7987 !important;\n }\n .text-lg-800 {\n color: #616368 !important;\n }\n .text-lg-900 {\n color: #4F5665 !important;\n }\n .text-lg-1000 {\n color: #112D58 !important;\n }\n .text-lg-1100 {\n color: #1F1534 !important;\n }\n .text-lg-white {\n color: #fff !important;\n }\n .max-vh-lg-25 {\n max-height: 25vh !important;\n }\n .max-vh-lg-50 {\n max-height: 50vh !important;\n }\n .max-vh-lg-75 {\n max-height: 75vh !important;\n }\n .max-vh-lg-100 {\n max-height: 100vh !important;\n }\n .border-lg-x {\n border-left: 1px solid #E1E0E4 !important;\n border-right: 1px solid #E1E0E4 !important;\n }\n .border-lg-x-0 {\n border-left: 0 !important;\n border-right: 0 !important;\n }\n .border-lg-y {\n border-top: 1px solid #E1E0E4 !important;\n border-bottom: 1px solid #E1E0E4 !important;\n }\n .border-lg-y-0 {\n border-top: 0 !important;\n border-bottom: 0 !important;\n }\n .border-lg-dashed {\n border: 1px dashed #E1E0E4 !important;\n }\n .border-lg-dashed-top {\n border-top: 1px dashed #E1E0E4 !important;\n }\n .border-lg-dashed-end {\n border-right: 1px dashed #E1E0E4 !important;\n }\n .border-lg-dashed-start {\n border-left: 1px dashed #E1E0E4 !important;\n }\n .border-lg-dashed-bottom {\n border-bottom: 1px dashed #E1E0E4 !important;\n }\n .border-lg-dashed-x {\n border-left: 1px dashed #E1E0E4 !important;\n border-right: 1px dashed #E1E0E4 !important;\n }\n .border-lg-dashed-y {\n border-top: 1px dashed #E1E0E4 !important;\n border-bottom: 1px dashed #E1E0E4 !important;\n }\n .rounded-lg-0 {\n border-radius: 0 !important;\n }\n}\n\n@media (min-width: 1200px) {\n .float-xl-start {\n float: left !important;\n }\n .float-xl-end {\n float: right !important;\n }\n .float-xl-none {\n float: none !important;\n }\n .d-xl-inline {\n display: inline !important;\n }\n .d-xl-inline-block {\n display: inline-block !important;\n }\n .d-xl-block {\n display: block !important;\n }\n .d-xl-grid {\n display: grid !important;\n }\n .d-xl-table {\n display: table !important;\n }\n .d-xl-table-row {\n display: table-row !important;\n }\n .d-xl-table-cell {\n display: table-cell !important;\n }\n .d-xl-flex {\n display: flex !important;\n }\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n .d-xl-none {\n display: none !important;\n }\n .position-xl-static {\n position: static !important;\n }\n .position-xl-absolute {\n position: absolute !important;\n }\n .position-xl-relative {\n position: relative !important;\n }\n .position-xl-fixed {\n position: fixed !important;\n }\n .position-xl-sticky {\n position: sticky !important;\n }\n .translate-xl-middle {\n transform: translateX(-50%) translateY(-50%) !important;\n }\n .translate-xl-middle-x {\n transform: translateX(-50%) !important;\n }\n .translate-xl-middle-y {\n transform: translateY(-50%) !important;\n }\n .border-xl {\n border: 1px solid #E1E0E4 !important;\n }\n .border-xl-0 {\n border: 0 !important;\n }\n .border-xl-top {\n border-top: 1px solid #E1E0E4 !important;\n }\n .border-xl-top-0 {\n border-top: 0 !important;\n }\n .border-xl-end {\n border-right: 1px solid #E1E0E4 !important;\n }\n .border-xl-end-0 {\n border-right: 0 !important;\n }\n .border-xl-bottom {\n border-bottom: 1px solid #E1E0E4 !important;\n }\n .border-xl-bottom-0 {\n border-bottom: 0 !important;\n }\n .border-xl-start {\n border-left: 1px solid #E1E0E4 !important;\n }\n .border-xl-start-0 {\n border-left: 0 !important;\n }\n .w-xl-25 {\n width: 25% !important;\n }\n .w-xl-50 {\n width: 50% !important;\n }\n .w-xl-75 {\n width: 75% !important;\n }\n .w-xl-100 {\n width: 100% !important;\n }\n .w-xl-auto {\n width: auto !important;\n }\n .vw-xl-25 {\n width: 25vw !important;\n }\n .vw-xl-50 {\n width: 50vw !important;\n }\n .vw-xl-75 {\n width: 75vw !important;\n }\n .vw-xl-100 {\n width: 100vw !important;\n }\n .h-xl-25 {\n height: 25% !important;\n }\n .h-xl-50 {\n height: 50% !important;\n }\n .h-xl-75 {\n height: 75% !important;\n }\n .h-xl-100 {\n height: 100% !important;\n }\n .h-xl-auto {\n height: auto !important;\n }\n .vh-xl-25 {\n height: 25vh !important;\n }\n .vh-xl-50 {\n height: 50vh !important;\n }\n .vh-xl-75 {\n height: 75vh !important;\n }\n .vh-xl-100 {\n height: 100vh !important;\n }\n .min-vh-xl-25 {\n min-height: 25vh !important;\n }\n .min-vh-xl-50 {\n min-height: 50vh !important;\n }\n .min-vh-xl-75 {\n min-height: 75vh !important;\n }\n .min-vh-xl-100 {\n min-height: 100vh !important;\n }\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xl-row {\n flex-direction: row !important;\n }\n .flex-xl-column {\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .gap-xl-0 {\n gap: 0 !important;\n }\n .gap-xl-1 {\n gap: 0.25rem !important;\n }\n .gap-xl-2 {\n gap: 0.5rem !important;\n }\n .gap-xl-3 {\n gap: 1rem !important;\n }\n .gap-xl-4 {\n gap: 1.8rem !important;\n }\n .gap-xl-5 {\n gap: 3rem !important;\n }\n .gap-xl-6 {\n gap: 4rem !important;\n }\n .gap-xl-7 {\n gap: 5rem !important;\n }\n .gap-xl-8 {\n gap: 7.5rem !important;\n }\n .gap-xl-9 {\n gap: 10rem !important;\n }\n .gap-xl-10 {\n gap: 12.5rem !important;\n }\n .gap-xl-11 {\n gap: 15rem !important;\n }\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n justify-content: center !important;\n }\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n .justify-content-xl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n align-items: center !important;\n }\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n align-content: center !important;\n }\n .align-content-xl-between {\n align-content: space-between !important;\n }\n .align-content-xl-around {\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n align-self: auto !important;\n }\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n align-self: center !important;\n }\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n .order-xl-first {\n order: -1 !important;\n }\n .order-xl-0 {\n order: 0 !important;\n }\n .order-xl-1 {\n order: 1 !important;\n }\n .order-xl-2 {\n order: 2 !important;\n }\n .order-xl-3 {\n order: 3 !important;\n }\n .order-xl-4 {\n order: 4 !important;\n }\n .order-xl-5 {\n order: 5 !important;\n }\n .order-xl-last {\n order: 6 !important;\n }\n .m-xl-0 {\n margin: 0 !important;\n }\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n .m-xl-3 {\n margin: 1rem !important;\n }\n .m-xl-4 {\n margin: 1.8rem !important;\n }\n .m-xl-5 {\n margin: 3rem !important;\n }\n .m-xl-6 {\n margin: 4rem !important;\n }\n .m-xl-7 {\n margin: 5rem !important;\n }\n .m-xl-8 {\n margin: 7.5rem !important;\n }\n .m-xl-9 {\n margin: 10rem !important;\n }\n .m-xl-10 {\n margin: 12.5rem !important;\n }\n .m-xl-11 {\n margin: 15rem !important;\n }\n .m-xl-auto {\n margin: auto !important;\n }\n .mx-xl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xl-4 {\n margin-right: 1.8rem !important;\n margin-left: 1.8rem !important;\n }\n .mx-xl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xl-6 {\n margin-right: 4rem !important;\n margin-left: 4rem !important;\n }\n .mx-xl-7 {\n margin-right: 5rem !important;\n margin-left: 5rem !important;\n }\n .mx-xl-8 {\n margin-right: 7.5rem !important;\n margin-left: 7.5rem !important;\n }\n .mx-xl-9 {\n margin-right: 10rem !important;\n margin-left: 10rem !important;\n }\n .mx-xl-10 {\n margin-right: 12.5rem !important;\n margin-left: 12.5rem !important;\n }\n .mx-xl-11 {\n margin-right: 15rem !important;\n margin-left: 15rem !important;\n }\n .mx-xl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xl-4 {\n margin-top: 1.8rem !important;\n margin-bottom: 1.8rem !important;\n }\n .my-xl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xl-6 {\n margin-top: 4rem !important;\n margin-bottom: 4rem !important;\n }\n .my-xl-7 {\n margin-top: 5rem !important;\n margin-bottom: 5rem !important;\n }\n .my-xl-8 {\n margin-top: 7.5rem !important;\n margin-bottom: 7.5rem !important;\n }\n .my-xl-9 {\n margin-top: 10rem !important;\n margin-bottom: 10rem !important;\n }\n .my-xl-10 {\n margin-top: 12.5rem !important;\n margin-bottom: 12.5rem !important;\n }\n .my-xl-11 {\n margin-top: 15rem !important;\n margin-bottom: 15rem !important;\n }\n .my-xl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xl-0 {\n margin-top: 0 !important;\n }\n .mt-xl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xl-3 {\n margin-top: 1rem !important;\n }\n .mt-xl-4 {\n margin-top: 1.8rem !important;\n }\n .mt-xl-5 {\n margin-top: 3rem !important;\n }\n .mt-xl-6 {\n margin-top: 4rem !important;\n }\n .mt-xl-7 {\n margin-top: 5rem !important;\n }\n .mt-xl-8 {\n margin-top: 7.5rem !important;\n }\n .mt-xl-9 {\n margin-top: 10rem !important;\n }\n .mt-xl-10 {\n margin-top: 12.5rem !important;\n }\n .mt-xl-11 {\n margin-top: 15rem !important;\n }\n .mt-xl-auto {\n margin-top: auto !important;\n }\n .me-xl-0 {\n margin-right: 0 !important;\n }\n .me-xl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xl-3 {\n margin-right: 1rem !important;\n }\n .me-xl-4 {\n margin-right: 1.8rem !important;\n }\n .me-xl-5 {\n margin-right: 3rem !important;\n }\n .me-xl-6 {\n margin-right: 4rem !important;\n }\n .me-xl-7 {\n margin-right: 5rem !important;\n }\n .me-xl-8 {\n margin-right: 7.5rem !important;\n }\n .me-xl-9 {\n margin-right: 10rem !important;\n }\n .me-xl-10 {\n margin-right: 12.5rem !important;\n }\n .me-xl-11 {\n margin-right: 15rem !important;\n }\n .me-xl-auto {\n margin-right: auto !important;\n }\n .mb-xl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xl-4 {\n margin-bottom: 1.8rem !important;\n }\n .mb-xl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xl-6 {\n margin-bottom: 4rem !important;\n }\n .mb-xl-7 {\n margin-bottom: 5rem !important;\n }\n .mb-xl-8 {\n margin-bottom: 7.5rem !important;\n }\n .mb-xl-9 {\n margin-bottom: 10rem !important;\n }\n .mb-xl-10 {\n margin-bottom: 12.5rem !important;\n }\n .mb-xl-11 {\n margin-bottom: 15rem !important;\n }\n .mb-xl-auto {\n margin-bottom: auto !important;\n }\n .ms-xl-0 {\n margin-left: 0 !important;\n }\n .ms-xl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xl-3 {\n margin-left: 1rem !important;\n }\n .ms-xl-4 {\n margin-left: 1.8rem !important;\n }\n .ms-xl-5 {\n margin-left: 3rem !important;\n }\n .ms-xl-6 {\n margin-left: 4rem !important;\n }\n .ms-xl-7 {\n margin-left: 5rem !important;\n }\n .ms-xl-8 {\n margin-left: 7.5rem !important;\n }\n .ms-xl-9 {\n margin-left: 10rem !important;\n }\n .ms-xl-10 {\n margin-left: 12.5rem !important;\n }\n .ms-xl-11 {\n margin-left: 15rem !important;\n }\n .ms-xl-auto {\n margin-left: auto !important;\n }\n .m-xl-n1 {\n margin: -0.25rem !important;\n }\n .m-xl-n2 {\n margin: -0.5rem !important;\n }\n .m-xl-n3 {\n margin: -1rem !important;\n }\n .m-xl-n4 {\n margin: -1.8rem !important;\n }\n .m-xl-n5 {\n margin: -3rem !important;\n }\n .m-xl-n6 {\n margin: -4rem !important;\n }\n .m-xl-n7 {\n margin: -5rem !important;\n }\n .m-xl-n8 {\n margin: -7.5rem !important;\n }\n .m-xl-n9 {\n margin: -10rem !important;\n }\n .m-xl-n10 {\n margin: -12.5rem !important;\n }\n .m-xl-n11 {\n margin: -15rem !important;\n }\n .mx-xl-n1 {\n margin-right: -0.25rem !important;\n margin-left: -0.25rem !important;\n }\n .mx-xl-n2 {\n margin-right: -0.5rem !important;\n margin-left: -0.5rem !important;\n }\n .mx-xl-n3 {\n margin-right: -1rem !important;\n margin-left: -1rem !important;\n }\n .mx-xl-n4 {\n margin-right: -1.8rem !important;\n margin-left: -1.8rem !important;\n }\n .mx-xl-n5 {\n margin-right: -3rem !important;\n margin-left: -3rem !important;\n }\n .mx-xl-n6 {\n margin-right: -4rem !important;\n margin-left: -4rem !important;\n }\n .mx-xl-n7 {\n margin-right: -5rem !important;\n margin-left: -5rem !important;\n }\n .mx-xl-n8 {\n margin-right: -7.5rem !important;\n margin-left: -7.5rem !important;\n }\n .mx-xl-n9 {\n margin-right: -10rem !important;\n margin-left: -10rem !important;\n }\n .mx-xl-n10 {\n margin-right: -12.5rem !important;\n margin-left: -12.5rem !important;\n }\n .mx-xl-n11 {\n margin-right: -15rem !important;\n margin-left: -15rem !important;\n }\n .my-xl-n1 {\n margin-top: -0.25rem !important;\n margin-bottom: -0.25rem !important;\n }\n .my-xl-n2 {\n margin-top: -0.5rem !important;\n margin-bottom: -0.5rem !important;\n }\n .my-xl-n3 {\n margin-top: -1rem !important;\n margin-bottom: -1rem !important;\n }\n .my-xl-n4 {\n margin-top: -1.8rem !important;\n margin-bottom: -1.8rem !important;\n }\n .my-xl-n5 {\n margin-top: -3rem !important;\n margin-bottom: -3rem !important;\n }\n .my-xl-n6 {\n margin-top: -4rem !important;\n margin-bottom: -4rem !important;\n }\n .my-xl-n7 {\n margin-top: -5rem !important;\n margin-bottom: -5rem !important;\n }\n .my-xl-n8 {\n margin-top: -7.5rem !important;\n margin-bottom: -7.5rem !important;\n }\n .my-xl-n9 {\n margin-top: -10rem !important;\n margin-bottom: -10rem !important;\n }\n .my-xl-n10 {\n margin-top: -12.5rem !important;\n margin-bottom: -12.5rem !important;\n }\n .my-xl-n11 {\n margin-top: -15rem !important;\n margin-bottom: -15rem !important;\n }\n .mt-xl-n1 {\n margin-top: -0.25rem !important;\n }\n .mt-xl-n2 {\n margin-top: -0.5rem !important;\n }\n .mt-xl-n3 {\n margin-top: -1rem !important;\n }\n .mt-xl-n4 {\n margin-top: -1.8rem !important;\n }\n .mt-xl-n5 {\n margin-top: -3rem !important;\n }\n .mt-xl-n6 {\n margin-top: -4rem !important;\n }\n .mt-xl-n7 {\n margin-top: -5rem !important;\n }\n .mt-xl-n8 {\n margin-top: -7.5rem !important;\n }\n .mt-xl-n9 {\n margin-top: -10rem !important;\n }\n .mt-xl-n10 {\n margin-top: -12.5rem !important;\n }\n .mt-xl-n11 {\n margin-top: -15rem !important;\n }\n .me-xl-n1 {\n margin-right: -0.25rem !important;\n }\n .me-xl-n2 {\n margin-right: -0.5rem !important;\n }\n .me-xl-n3 {\n margin-right: -1rem !important;\n }\n .me-xl-n4 {\n margin-right: -1.8rem !important;\n }\n .me-xl-n5 {\n margin-right: -3rem !important;\n }\n .me-xl-n6 {\n margin-right: -4rem !important;\n }\n .me-xl-n7 {\n margin-right: -5rem !important;\n }\n .me-xl-n8 {\n margin-right: -7.5rem !important;\n }\n .me-xl-n9 {\n margin-right: -10rem !important;\n }\n .me-xl-n10 {\n margin-right: -12.5rem !important;\n }\n .me-xl-n11 {\n margin-right: -15rem !important;\n }\n .mb-xl-n1 {\n margin-bottom: -0.25rem !important;\n }\n .mb-xl-n2 {\n margin-bottom: -0.5rem !important;\n }\n .mb-xl-n3 {\n margin-bottom: -1rem !important;\n }\n .mb-xl-n4 {\n margin-bottom: -1.8rem !important;\n }\n .mb-xl-n5 {\n margin-bottom: -3rem !important;\n }\n .mb-xl-n6 {\n margin-bottom: -4rem !important;\n }\n .mb-xl-n7 {\n margin-bottom: -5rem !important;\n }\n .mb-xl-n8 {\n margin-bottom: -7.5rem !important;\n }\n .mb-xl-n9 {\n margin-bottom: -10rem !important;\n }\n .mb-xl-n10 {\n margin-bottom: -12.5rem !important;\n }\n .mb-xl-n11 {\n margin-bottom: -15rem !important;\n }\n .ms-xl-n1 {\n margin-left: -0.25rem !important;\n }\n .ms-xl-n2 {\n margin-left: -0.5rem !important;\n }\n .ms-xl-n3 {\n margin-left: -1rem !important;\n }\n .ms-xl-n4 {\n margin-left: -1.8rem !important;\n }\n .ms-xl-n5 {\n margin-left: -3rem !important;\n }\n .ms-xl-n6 {\n margin-left: -4rem !important;\n }\n .ms-xl-n7 {\n margin-left: -5rem !important;\n }\n .ms-xl-n8 {\n margin-left: -7.5rem !important;\n }\n .ms-xl-n9 {\n margin-left: -10rem !important;\n }\n .ms-xl-n10 {\n margin-left: -12.5rem !important;\n }\n .ms-xl-n11 {\n margin-left: -15rem !important;\n }\n .p-xl-0 {\n padding: 0 !important;\n }\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n .p-xl-3 {\n padding: 1rem !important;\n }\n .p-xl-4 {\n padding: 1.8rem !important;\n }\n .p-xl-5 {\n padding: 3rem !important;\n }\n .p-xl-6 {\n padding: 4rem !important;\n }\n .p-xl-7 {\n padding: 5rem !important;\n }\n .p-xl-8 {\n padding: 7.5rem !important;\n }\n .p-xl-9 {\n padding: 10rem !important;\n }\n .p-xl-10 {\n padding: 12.5rem !important;\n }\n .p-xl-11 {\n padding: 15rem !important;\n }\n .px-xl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xl-4 {\n padding-right: 1.8rem !important;\n padding-left: 1.8rem !important;\n }\n .px-xl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .px-xl-6 {\n padding-right: 4rem !important;\n padding-left: 4rem !important;\n }\n .px-xl-7 {\n padding-right: 5rem !important;\n padding-left: 5rem !important;\n }\n .px-xl-8 {\n padding-right: 7.5rem !important;\n padding-left: 7.5rem !important;\n }\n .px-xl-9 {\n padding-right: 10rem !important;\n padding-left: 10rem !important;\n }\n .px-xl-10 {\n padding-right: 12.5rem !important;\n padding-left: 12.5rem !important;\n }\n .px-xl-11 {\n padding-right: 15rem !important;\n padding-left: 15rem !important;\n }\n .py-xl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xl-4 {\n padding-top: 1.8rem !important;\n padding-bottom: 1.8rem !important;\n }\n .py-xl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .py-xl-6 {\n padding-top: 4rem !important;\n padding-bottom: 4rem !important;\n }\n .py-xl-7 {\n padding-top: 5rem !important;\n padding-bottom: 5rem !important;\n }\n .py-xl-8 {\n padding-top: 7.5rem !important;\n padding-bottom: 7.5rem !important;\n }\n .py-xl-9 {\n padding-top: 10rem !important;\n padding-bottom: 10rem !important;\n }\n .py-xl-10 {\n padding-top: 12.5rem !important;\n padding-bottom: 12.5rem !important;\n }\n .py-xl-11 {\n padding-top: 15rem !important;\n padding-bottom: 15rem !important;\n }\n .pt-xl-0 {\n padding-top: 0 !important;\n }\n .pt-xl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xl-3 {\n padding-top: 1rem !important;\n }\n .pt-xl-4 {\n padding-top: 1.8rem !important;\n }\n .pt-xl-5 {\n padding-top: 3rem !important;\n }\n .pt-xl-6 {\n padding-top: 4rem !important;\n }\n .pt-xl-7 {\n padding-top: 5rem !important;\n }\n .pt-xl-8 {\n padding-top: 7.5rem !important;\n }\n .pt-xl-9 {\n padding-top: 10rem !important;\n }\n .pt-xl-10 {\n padding-top: 12.5rem !important;\n }\n .pt-xl-11 {\n padding-top: 15rem !important;\n }\n .pe-xl-0 {\n padding-right: 0 !important;\n }\n .pe-xl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xl-3 {\n padding-right: 1rem !important;\n }\n .pe-xl-4 {\n padding-right: 1.8rem !important;\n }\n .pe-xl-5 {\n padding-right: 3rem !important;\n }\n .pe-xl-6 {\n padding-right: 4rem !important;\n }\n .pe-xl-7 {\n padding-right: 5rem !important;\n }\n .pe-xl-8 {\n padding-right: 7.5rem !important;\n }\n .pe-xl-9 {\n padding-right: 10rem !important;\n }\n .pe-xl-10 {\n padding-right: 12.5rem !important;\n }\n .pe-xl-11 {\n padding-right: 15rem !important;\n }\n .pb-xl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xl-4 {\n padding-bottom: 1.8rem !important;\n }\n .pb-xl-5 {\n padding-bottom: 3rem !important;\n }\n .pb-xl-6 {\n padding-bottom: 4rem !important;\n }\n .pb-xl-7 {\n padding-bottom: 5rem !important;\n }\n .pb-xl-8 {\n padding-bottom: 7.5rem !important;\n }\n .pb-xl-9 {\n padding-bottom: 10rem !important;\n }\n .pb-xl-10 {\n padding-bottom: 12.5rem !important;\n }\n .pb-xl-11 {\n padding-bottom: 15rem !important;\n }\n .ps-xl-0 {\n padding-left: 0 !important;\n }\n .ps-xl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xl-3 {\n padding-left: 1rem !important;\n }\n .ps-xl-4 {\n padding-left: 1.8rem !important;\n }\n .ps-xl-5 {\n padding-left: 3rem !important;\n }\n .ps-xl-6 {\n padding-left: 4rem !important;\n }\n .ps-xl-7 {\n padding-left: 5rem !important;\n }\n .ps-xl-8 {\n padding-left: 7.5rem !important;\n }\n .ps-xl-9 {\n padding-left: 10rem !important;\n }\n .ps-xl-10 {\n padding-left: 12.5rem !important;\n }\n .ps-xl-11 {\n padding-left: 15rem !important;\n }\n .fs-xl--2 {\n font-size: 0.69444rem !important;\n }\n .fs-xl--1 {\n font-size: 0.83333rem !important;\n }\n .fs-xl-0 {\n font-size: 1rem !important;\n }\n .fs-xl-1 {\n font-size: 1.2rem !important;\n }\n .fs-xl-2 {\n font-size: 1.44rem !important;\n }\n .fs-xl-3 {\n font-size: 1.728rem !important;\n }\n .fs-xl-4 {\n font-size: 2.0736rem !important;\n }\n .fs-xl-5 {\n font-size: 2.48832rem !important;\n }\n .fs-xl-6 {\n font-size: 2.98598rem !important;\n }\n .fs-xl-7 {\n font-size: 3.58318rem !important;\n }\n .fs-xl-8 {\n font-size: 4.29982rem !important;\n }\n .text-xl-start {\n text-align: left !important;\n }\n .text-xl-end {\n text-align: right !important;\n }\n .text-xl-center {\n text-align: center !important;\n }\n .rounded-xl-top {\n border-top-start-radius: 0.25rem !important;\n border-top-end-radius: 0.25rem !important;\n }\n .rounded-xl-top-lg {\n border-top-start-radius: 0.5rem !important;\n border-top-end-radius: 0.5rem !important;\n }\n .rounded-xl-top-0 {\n border-top-start-radius: 0 !important;\n border-top-end-radius: 0 !important;\n }\n .rounded-xl-end {\n border-top-end-radius: 0.25rem !important;\n border-bottom-end-radius: 0.25rem !important;\n }\n .rounded-xl-end-lg {\n border-top-end-radius: 0.5rem !important;\n border-bottom-end-radius: 0.5rem !important;\n }\n .rounded-xl-end-0 {\n border-top-end-radius: 0 !important;\n border-bottom-end-radius: 0 !important;\n }\n .rounded-xl-bottom {\n border-bottom-end-radius: 0.25rem !important;\n border-bottom-start-radius: 0.25rem !important;\n }\n .rounded-xl-bottom-lg {\n border-bottom-end-radius: 0.5rem !important;\n border-bottom-start-radius: 0.5rem !important;\n }\n .rounded-xl-bottom-0 {\n border-bottom-end-radius: 0 !important;\n border-bottom-start-radius: 0 !important;\n }\n .rounded-xl-start {\n border-bottom-start-radius: 0.25rem !important;\n border-top-start-radius: 0.25rem !important;\n }\n .rounded-xl-start-lg {\n border-bottom-start-radius: 0.5rem !important;\n border-top-start-radius: 0.5rem !important;\n }\n .rounded-xl-start-0 {\n border-bottom-start-radius: 0 !important;\n border-top-start-radius: 0 !important;\n }\n .opacity-xl-0 {\n opacity: 0 !important;\n }\n .opacity-xl-25 {\n opacity: 0.25 !important;\n }\n .opacity-xl-50 {\n opacity: 0.5 !important;\n }\n .opacity-xl-75 {\n opacity: 0.75 !important;\n }\n .opacity-xl-85 {\n opacity: 0.85 !important;\n }\n .opacity-xl-100 {\n opacity: 1 !important;\n }\n .text-xl-facebook {\n color: #3c5a99 !important;\n }\n .text-xl-google-plus {\n color: #dd4b39 !important;\n }\n .text-xl-twitter {\n color: #1da1f2 !important;\n }\n .text-xl-linkedin {\n color: #0077b5 !important;\n }\n .text-xl-youtube {\n color: #ff0000 !important;\n }\n .text-xl-github {\n color: #333 !important;\n }\n .text-xl-theme {\n color: #0BAC56 !important;\n }\n .text-xl-black {\n color: #000 !important;\n }\n .text-xl-100 {\n color: #F5F7FA !important;\n }\n .text-xl-200 {\n color: #EBEBED !important;\n }\n .text-xl-300 {\n color: #E1E0E4 !important;\n }\n .text-xl-400 {\n color: #D7D6DA !important;\n }\n .text-xl-500 {\n color: #CDCCD1 !important;\n }\n .text-xl-600 {\n color: #C3C1C8 !important;\n }\n .text-xl-700 {\n color: #7D7987 !important;\n }\n .text-xl-800 {\n color: #616368 !important;\n }\n .text-xl-900 {\n color: #4F5665 !important;\n }\n .text-xl-1000 {\n color: #112D58 !important;\n }\n .text-xl-1100 {\n color: #1F1534 !important;\n }\n .text-xl-white {\n color: #fff !important;\n }\n .max-vh-xl-25 {\n max-height: 25vh !important;\n }\n .max-vh-xl-50 {\n max-height: 50vh !important;\n }\n .max-vh-xl-75 {\n max-height: 75vh !important;\n }\n .max-vh-xl-100 {\n max-height: 100vh !important;\n }\n .border-xl-x {\n border-left: 1px solid #E1E0E4 !important;\n border-right: 1px solid #E1E0E4 !important;\n }\n .border-xl-x-0 {\n border-left: 0 !important;\n border-right: 0 !important;\n }\n .border-xl-y {\n border-top: 1px solid #E1E0E4 !important;\n border-bottom: 1px solid #E1E0E4 !important;\n }\n .border-xl-y-0 {\n border-top: 0 !important;\n border-bottom: 0 !important;\n }\n .border-xl-dashed {\n border: 1px dashed #E1E0E4 !important;\n }\n .border-xl-dashed-top {\n border-top: 1px dashed #E1E0E4 !important;\n }\n .border-xl-dashed-end {\n border-right: 1px dashed #E1E0E4 !important;\n }\n .border-xl-dashed-start {\n border-left: 1px dashed #E1E0E4 !important;\n }\n .border-xl-dashed-bottom {\n border-bottom: 1px dashed #E1E0E4 !important;\n }\n .border-xl-dashed-x {\n border-left: 1px dashed #E1E0E4 !important;\n border-right: 1px dashed #E1E0E4 !important;\n }\n .border-xl-dashed-y {\n border-top: 1px dashed #E1E0E4 !important;\n border-bottom: 1px dashed #E1E0E4 !important;\n }\n .rounded-xl-0 {\n border-radius: 0 !important;\n }\n}\n\n@media (min-width: 1540px) {\n .float-xxl-start {\n float: left !important;\n }\n .float-xxl-end {\n float: right !important;\n }\n .float-xxl-none {\n float: none !important;\n }\n .d-xxl-inline {\n display: inline !important;\n }\n .d-xxl-inline-block {\n display: inline-block !important;\n }\n .d-xxl-block {\n display: block !important;\n }\n .d-xxl-grid {\n display: grid !important;\n }\n .d-xxl-table {\n display: table !important;\n }\n .d-xxl-table-row {\n display: table-row !important;\n }\n .d-xxl-table-cell {\n display: table-cell !important;\n }\n .d-xxl-flex {\n display: flex !important;\n }\n .d-xxl-inline-flex {\n display: inline-flex !important;\n }\n .d-xxl-none {\n display: none !important;\n }\n .position-xxl-static {\n position: static !important;\n }\n .position-xxl-absolute {\n position: absolute !important;\n }\n .position-xxl-relative {\n position: relative !important;\n }\n .position-xxl-fixed {\n position: fixed !important;\n }\n .position-xxl-sticky {\n position: sticky !important;\n }\n .translate-xxl-middle {\n transform: translateX(-50%) translateY(-50%) !important;\n }\n .translate-xxl-middle-x {\n transform: translateX(-50%) !important;\n }\n .translate-xxl-middle-y {\n transform: translateY(-50%) !important;\n }\n .border-xxl {\n border: 1px solid #E1E0E4 !important;\n }\n .border-xxl-0 {\n border: 0 !important;\n }\n .border-xxl-top {\n border-top: 1px solid #E1E0E4 !important;\n }\n .border-xxl-top-0 {\n border-top: 0 !important;\n }\n .border-xxl-end {\n border-right: 1px solid #E1E0E4 !important;\n }\n .border-xxl-end-0 {\n border-right: 0 !important;\n }\n .border-xxl-bottom {\n border-bottom: 1px solid #E1E0E4 !important;\n }\n .border-xxl-bottom-0 {\n border-bottom: 0 !important;\n }\n .border-xxl-start {\n border-left: 1px solid #E1E0E4 !important;\n }\n .border-xxl-start-0 {\n border-left: 0 !important;\n }\n .w-xxl-25 {\n width: 25% !important;\n }\n .w-xxl-50 {\n width: 50% !important;\n }\n .w-xxl-75 {\n width: 75% !important;\n }\n .w-xxl-100 {\n width: 100% !important;\n }\n .w-xxl-auto {\n width: auto !important;\n }\n .vw-xxl-25 {\n width: 25vw !important;\n }\n .vw-xxl-50 {\n width: 50vw !important;\n }\n .vw-xxl-75 {\n width: 75vw !important;\n }\n .vw-xxl-100 {\n width: 100vw !important;\n }\n .h-xxl-25 {\n height: 25% !important;\n }\n .h-xxl-50 {\n height: 50% !important;\n }\n .h-xxl-75 {\n height: 75% !important;\n }\n .h-xxl-100 {\n height: 100% !important;\n }\n .h-xxl-auto {\n height: auto !important;\n }\n .vh-xxl-25 {\n height: 25vh !important;\n }\n .vh-xxl-50 {\n height: 50vh !important;\n }\n .vh-xxl-75 {\n height: 75vh !important;\n }\n .vh-xxl-100 {\n height: 100vh !important;\n }\n .min-vh-xxl-25 {\n min-height: 25vh !important;\n }\n .min-vh-xxl-50 {\n min-height: 50vh !important;\n }\n .min-vh-xxl-75 {\n min-height: 75vh !important;\n }\n .min-vh-xxl-100 {\n min-height: 100vh !important;\n }\n .flex-xxl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xxl-row {\n flex-direction: row !important;\n }\n .flex-xxl-column {\n flex-direction: column !important;\n }\n .flex-xxl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xxl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xxl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xxl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xxl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xxl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xxl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xxl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xxl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .gap-xxl-0 {\n gap: 0 !important;\n }\n .gap-xxl-1 {\n gap: 0.25rem !important;\n }\n .gap-xxl-2 {\n gap: 0.5rem !important;\n }\n .gap-xxl-3 {\n gap: 1rem !important;\n }\n .gap-xxl-4 {\n gap: 1.8rem !important;\n }\n .gap-xxl-5 {\n gap: 3rem !important;\n }\n .gap-xxl-6 {\n gap: 4rem !important;\n }\n .gap-xxl-7 {\n gap: 5rem !important;\n }\n .gap-xxl-8 {\n gap: 7.5rem !important;\n }\n .gap-xxl-9 {\n gap: 10rem !important;\n }\n .gap-xxl-10 {\n gap: 12.5rem !important;\n }\n .gap-xxl-11 {\n gap: 15rem !important;\n }\n .justify-content-xxl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xxl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xxl-center {\n justify-content: center !important;\n }\n .justify-content-xxl-between {\n justify-content: space-between !important;\n }\n .justify-content-xxl-around {\n justify-content: space-around !important;\n }\n .justify-content-xxl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xxl-start {\n align-items: flex-start !important;\n }\n .align-items-xxl-end {\n align-items: flex-end !important;\n }\n .align-items-xxl-center {\n align-items: center !important;\n }\n .align-items-xxl-baseline {\n align-items: baseline !important;\n }\n .align-items-xxl-stretch {\n align-items: stretch !important;\n }\n .align-content-xxl-start {\n align-content: flex-start !important;\n }\n .align-content-xxl-end {\n align-content: flex-end !important;\n }\n .align-content-xxl-center {\n align-content: center !important;\n }\n .align-content-xxl-between {\n align-content: space-between !important;\n }\n .align-content-xxl-around {\n align-content: space-around !important;\n }\n .align-content-xxl-stretch {\n align-content: stretch !important;\n }\n .align-self-xxl-auto {\n align-self: auto !important;\n }\n .align-self-xxl-start {\n align-self: flex-start !important;\n }\n .align-self-xxl-end {\n align-self: flex-end !important;\n }\n .align-self-xxl-center {\n align-self: center !important;\n }\n .align-self-xxl-baseline {\n align-self: baseline !important;\n }\n .align-self-xxl-stretch {\n align-self: stretch !important;\n }\n .order-xxl-first {\n order: -1 !important;\n }\n .order-xxl-0 {\n order: 0 !important;\n }\n .order-xxl-1 {\n order: 1 !important;\n }\n .order-xxl-2 {\n order: 2 !important;\n }\n .order-xxl-3 {\n order: 3 !important;\n }\n .order-xxl-4 {\n order: 4 !important;\n }\n .order-xxl-5 {\n order: 5 !important;\n }\n .order-xxl-last {\n order: 6 !important;\n }\n .m-xxl-0 {\n margin: 0 !important;\n }\n .m-xxl-1 {\n margin: 0.25rem !important;\n }\n .m-xxl-2 {\n margin: 0.5rem !important;\n }\n .m-xxl-3 {\n margin: 1rem !important;\n }\n .m-xxl-4 {\n margin: 1.8rem !important;\n }\n .m-xxl-5 {\n margin: 3rem !important;\n }\n .m-xxl-6 {\n margin: 4rem !important;\n }\n .m-xxl-7 {\n margin: 5rem !important;\n }\n .m-xxl-8 {\n margin: 7.5rem !important;\n }\n .m-xxl-9 {\n margin: 10rem !important;\n }\n .m-xxl-10 {\n margin: 12.5rem !important;\n }\n .m-xxl-11 {\n margin: 15rem !important;\n }\n .m-xxl-auto {\n margin: auto !important;\n }\n .mx-xxl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xxl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xxl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xxl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xxl-4 {\n margin-right: 1.8rem !important;\n margin-left: 1.8rem !important;\n }\n .mx-xxl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xxl-6 {\n margin-right: 4rem !important;\n margin-left: 4rem !important;\n }\n .mx-xxl-7 {\n margin-right: 5rem !important;\n margin-left: 5rem !important;\n }\n .mx-xxl-8 {\n margin-right: 7.5rem !important;\n margin-left: 7.5rem !important;\n }\n .mx-xxl-9 {\n margin-right: 10rem !important;\n margin-left: 10rem !important;\n }\n .mx-xxl-10 {\n margin-right: 12.5rem !important;\n margin-left: 12.5rem !important;\n }\n .mx-xxl-11 {\n margin-right: 15rem !important;\n margin-left: 15rem !important;\n }\n .mx-xxl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xxl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xxl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xxl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xxl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xxl-4 {\n margin-top: 1.8rem !important;\n margin-bottom: 1.8rem !important;\n }\n .my-xxl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xxl-6 {\n margin-top: 4rem !important;\n margin-bottom: 4rem !important;\n }\n .my-xxl-7 {\n margin-top: 5rem !important;\n margin-bottom: 5rem !important;\n }\n .my-xxl-8 {\n margin-top: 7.5rem !important;\n margin-bottom: 7.5rem !important;\n }\n .my-xxl-9 {\n margin-top: 10rem !important;\n margin-bottom: 10rem !important;\n }\n .my-xxl-10 {\n margin-top: 12.5rem !important;\n margin-bottom: 12.5rem !important;\n }\n .my-xxl-11 {\n margin-top: 15rem !important;\n margin-bottom: 15rem !important;\n }\n .my-xxl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xxl-0 {\n margin-top: 0 !important;\n }\n .mt-xxl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xxl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xxl-3 {\n margin-top: 1rem !important;\n }\n .mt-xxl-4 {\n margin-top: 1.8rem !important;\n }\n .mt-xxl-5 {\n margin-top: 3rem !important;\n }\n .mt-xxl-6 {\n margin-top: 4rem !important;\n }\n .mt-xxl-7 {\n margin-top: 5rem !important;\n }\n .mt-xxl-8 {\n margin-top: 7.5rem !important;\n }\n .mt-xxl-9 {\n margin-top: 10rem !important;\n }\n .mt-xxl-10 {\n margin-top: 12.5rem !important;\n }\n .mt-xxl-11 {\n margin-top: 15rem !important;\n }\n .mt-xxl-auto {\n margin-top: auto !important;\n }\n .me-xxl-0 {\n margin-right: 0 !important;\n }\n .me-xxl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xxl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xxl-3 {\n margin-right: 1rem !important;\n }\n .me-xxl-4 {\n margin-right: 1.8rem !important;\n }\n .me-xxl-5 {\n margin-right: 3rem !important;\n }\n .me-xxl-6 {\n margin-right: 4rem !important;\n }\n .me-xxl-7 {\n margin-right: 5rem !important;\n }\n .me-xxl-8 {\n margin-right: 7.5rem !important;\n }\n .me-xxl-9 {\n margin-right: 10rem !important;\n }\n .me-xxl-10 {\n margin-right: 12.5rem !important;\n }\n .me-xxl-11 {\n margin-right: 15rem !important;\n }\n .me-xxl-auto {\n margin-right: auto !important;\n }\n .mb-xxl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xxl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xxl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xxl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xxl-4 {\n margin-bottom: 1.8rem !important;\n }\n .mb-xxl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xxl-6 {\n margin-bottom: 4rem !important;\n }\n .mb-xxl-7 {\n margin-bottom: 5rem !important;\n }\n .mb-xxl-8 {\n margin-bottom: 7.5rem !important;\n }\n .mb-xxl-9 {\n margin-bottom: 10rem !important;\n }\n .mb-xxl-10 {\n margin-bottom: 12.5rem !important;\n }\n .mb-xxl-11 {\n margin-bottom: 15rem !important;\n }\n .mb-xxl-auto {\n margin-bottom: auto !important;\n }\n .ms-xxl-0 {\n margin-left: 0 !important;\n }\n .ms-xxl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xxl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xxl-3 {\n margin-left: 1rem !important;\n }\n .ms-xxl-4 {\n margin-left: 1.8rem !important;\n }\n .ms-xxl-5 {\n margin-left: 3rem !important;\n }\n .ms-xxl-6 {\n margin-left: 4rem !important;\n }\n .ms-xxl-7 {\n margin-left: 5rem !important;\n }\n .ms-xxl-8 {\n margin-left: 7.5rem !important;\n }\n .ms-xxl-9 {\n margin-left: 10rem !important;\n }\n .ms-xxl-10 {\n margin-left: 12.5rem !important;\n }\n .ms-xxl-11 {\n margin-left: 15rem !important;\n }\n .ms-xxl-auto {\n margin-left: auto !important;\n }\n .m-xxl-n1 {\n margin: -0.25rem !important;\n }\n .m-xxl-n2 {\n margin: -0.5rem !important;\n }\n .m-xxl-n3 {\n margin: -1rem !important;\n }\n .m-xxl-n4 {\n margin: -1.8rem !important;\n }\n .m-xxl-n5 {\n margin: -3rem !important;\n }\n .m-xxl-n6 {\n margin: -4rem !important;\n }\n .m-xxl-n7 {\n margin: -5rem !important;\n }\n .m-xxl-n8 {\n margin: -7.5rem !important;\n }\n .m-xxl-n9 {\n margin: -10rem !important;\n }\n .m-xxl-n10 {\n margin: -12.5rem !important;\n }\n .m-xxl-n11 {\n margin: -15rem !important;\n }\n .mx-xxl-n1 {\n margin-right: -0.25rem !important;\n margin-left: -0.25rem !important;\n }\n .mx-xxl-n2 {\n margin-right: -0.5rem !important;\n margin-left: -0.5rem !important;\n }\n .mx-xxl-n3 {\n margin-right: -1rem !important;\n margin-left: -1rem !important;\n }\n .mx-xxl-n4 {\n margin-right: -1.8rem !important;\n margin-left: -1.8rem !important;\n }\n .mx-xxl-n5 {\n margin-right: -3rem !important;\n margin-left: -3rem !important;\n }\n .mx-xxl-n6 {\n margin-right: -4rem !important;\n margin-left: -4rem !important;\n }\n .mx-xxl-n7 {\n margin-right: -5rem !important;\n margin-left: -5rem !important;\n }\n .mx-xxl-n8 {\n margin-right: -7.5rem !important;\n margin-left: -7.5rem !important;\n }\n .mx-xxl-n9 {\n margin-right: -10rem !important;\n margin-left: -10rem !important;\n }\n .mx-xxl-n10 {\n margin-right: -12.5rem !important;\n margin-left: -12.5rem !important;\n }\n .mx-xxl-n11 {\n margin-right: -15rem !important;\n margin-left: -15rem !important;\n }\n .my-xxl-n1 {\n margin-top: -0.25rem !important;\n margin-bottom: -0.25rem !important;\n }\n .my-xxl-n2 {\n margin-top: -0.5rem !important;\n margin-bottom: -0.5rem !important;\n }\n .my-xxl-n3 {\n margin-top: -1rem !important;\n margin-bottom: -1rem !important;\n }\n .my-xxl-n4 {\n margin-top: -1.8rem !important;\n margin-bottom: -1.8rem !important;\n }\n .my-xxl-n5 {\n margin-top: -3rem !important;\n margin-bottom: -3rem !important;\n }\n .my-xxl-n6 {\n margin-top: -4rem !important;\n margin-bottom: -4rem !important;\n }\n .my-xxl-n7 {\n margin-top: -5rem !important;\n margin-bottom: -5rem !important;\n }\n .my-xxl-n8 {\n margin-top: -7.5rem !important;\n margin-bottom: -7.5rem !important;\n }\n .my-xxl-n9 {\n margin-top: -10rem !important;\n margin-bottom: -10rem !important;\n }\n .my-xxl-n10 {\n margin-top: -12.5rem !important;\n margin-bottom: -12.5rem !important;\n }\n .my-xxl-n11 {\n margin-top: -15rem !important;\n margin-bottom: -15rem !important;\n }\n .mt-xxl-n1 {\n margin-top: -0.25rem !important;\n }\n .mt-xxl-n2 {\n margin-top: -0.5rem !important;\n }\n .mt-xxl-n3 {\n margin-top: -1rem !important;\n }\n .mt-xxl-n4 {\n margin-top: -1.8rem !important;\n }\n .mt-xxl-n5 {\n margin-top: -3rem !important;\n }\n .mt-xxl-n6 {\n margin-top: -4rem !important;\n }\n .mt-xxl-n7 {\n margin-top: -5rem !important;\n }\n .mt-xxl-n8 {\n margin-top: -7.5rem !important;\n }\n .mt-xxl-n9 {\n margin-top: -10rem !important;\n }\n .mt-xxl-n10 {\n margin-top: -12.5rem !important;\n }\n .mt-xxl-n11 {\n margin-top: -15rem !important;\n }\n .me-xxl-n1 {\n margin-right: -0.25rem !important;\n }\n .me-xxl-n2 {\n margin-right: -0.5rem !important;\n }\n .me-xxl-n3 {\n margin-right: -1rem !important;\n }\n .me-xxl-n4 {\n margin-right: -1.8rem !important;\n }\n .me-xxl-n5 {\n margin-right: -3rem !important;\n }\n .me-xxl-n6 {\n margin-right: -4rem !important;\n }\n .me-xxl-n7 {\n margin-right: -5rem !important;\n }\n .me-xxl-n8 {\n margin-right: -7.5rem !important;\n }\n .me-xxl-n9 {\n margin-right: -10rem !important;\n }\n .me-xxl-n10 {\n margin-right: -12.5rem !important;\n }\n .me-xxl-n11 {\n margin-right: -15rem !important;\n }\n .mb-xxl-n1 {\n margin-bottom: -0.25rem !important;\n }\n .mb-xxl-n2 {\n margin-bottom: -0.5rem !important;\n }\n .mb-xxl-n3 {\n margin-bottom: -1rem !important;\n }\n .mb-xxl-n4 {\n margin-bottom: -1.8rem !important;\n }\n .mb-xxl-n5 {\n margin-bottom: -3rem !important;\n }\n .mb-xxl-n6 {\n margin-bottom: -4rem !important;\n }\n .mb-xxl-n7 {\n margin-bottom: -5rem !important;\n }\n .mb-xxl-n8 {\n margin-bottom: -7.5rem !important;\n }\n .mb-xxl-n9 {\n margin-bottom: -10rem !important;\n }\n .mb-xxl-n10 {\n margin-bottom: -12.5rem !important;\n }\n .mb-xxl-n11 {\n margin-bottom: -15rem !important;\n }\n .ms-xxl-n1 {\n margin-left: -0.25rem !important;\n }\n .ms-xxl-n2 {\n margin-left: -0.5rem !important;\n }\n .ms-xxl-n3 {\n margin-left: -1rem !important;\n }\n .ms-xxl-n4 {\n margin-left: -1.8rem !important;\n }\n .ms-xxl-n5 {\n margin-left: -3rem !important;\n }\n .ms-xxl-n6 {\n margin-left: -4rem !important;\n }\n .ms-xxl-n7 {\n margin-left: -5rem !important;\n }\n .ms-xxl-n8 {\n margin-left: -7.5rem !important;\n }\n .ms-xxl-n9 {\n margin-left: -10rem !important;\n }\n .ms-xxl-n10 {\n margin-left: -12.5rem !important;\n }\n .ms-xxl-n11 {\n margin-left: -15rem !important;\n }\n .p-xxl-0 {\n padding: 0 !important;\n }\n .p-xxl-1 {\n padding: 0.25rem !important;\n }\n .p-xxl-2 {\n padding: 0.5rem !important;\n }\n .p-xxl-3 {\n padding: 1rem !important;\n }\n .p-xxl-4 {\n padding: 1.8rem !important;\n }\n .p-xxl-5 {\n padding: 3rem !important;\n }\n .p-xxl-6 {\n padding: 4rem !important;\n }\n .p-xxl-7 {\n padding: 5rem !important;\n }\n .p-xxl-8 {\n padding: 7.5rem !important;\n }\n .p-xxl-9 {\n padding: 10rem !important;\n }\n .p-xxl-10 {\n padding: 12.5rem !important;\n }\n .p-xxl-11 {\n padding: 15rem !important;\n }\n .px-xxl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xxl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xxl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xxl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xxl-4 {\n padding-right: 1.8rem !important;\n padding-left: 1.8rem !important;\n }\n .px-xxl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .px-xxl-6 {\n padding-right: 4rem !important;\n padding-left: 4rem !important;\n }\n .px-xxl-7 {\n padding-right: 5rem !important;\n padding-left: 5rem !important;\n }\n .px-xxl-8 {\n padding-right: 7.5rem !important;\n padding-left: 7.5rem !important;\n }\n .px-xxl-9 {\n padding-right: 10rem !important;\n padding-left: 10rem !important;\n }\n .px-xxl-10 {\n padding-right: 12.5rem !important;\n padding-left: 12.5rem !important;\n }\n .px-xxl-11 {\n padding-right: 15rem !important;\n padding-left: 15rem !important;\n }\n .py-xxl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xxl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xxl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xxl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xxl-4 {\n padding-top: 1.8rem !important;\n padding-bottom: 1.8rem !important;\n }\n .py-xxl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .py-xxl-6 {\n padding-top: 4rem !important;\n padding-bottom: 4rem !important;\n }\n .py-xxl-7 {\n padding-top: 5rem !important;\n padding-bottom: 5rem !important;\n }\n .py-xxl-8 {\n padding-top: 7.5rem !important;\n padding-bottom: 7.5rem !important;\n }\n .py-xxl-9 {\n padding-top: 10rem !important;\n padding-bottom: 10rem !important;\n }\n .py-xxl-10 {\n padding-top: 12.5rem !important;\n padding-bottom: 12.5rem !important;\n }\n .py-xxl-11 {\n padding-top: 15rem !important;\n padding-bottom: 15rem !important;\n }\n .pt-xxl-0 {\n padding-top: 0 !important;\n }\n .pt-xxl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xxl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xxl-3 {\n padding-top: 1rem !important;\n }\n .pt-xxl-4 {\n padding-top: 1.8rem !important;\n }\n .pt-xxl-5 {\n padding-top: 3rem !important;\n }\n .pt-xxl-6 {\n padding-top: 4rem !important;\n }\n .pt-xxl-7 {\n padding-top: 5rem !important;\n }\n .pt-xxl-8 {\n padding-top: 7.5rem !important;\n }\n .pt-xxl-9 {\n padding-top: 10rem !important;\n }\n .pt-xxl-10 {\n padding-top: 12.5rem !important;\n }\n .pt-xxl-11 {\n padding-top: 15rem !important;\n }\n .pe-xxl-0 {\n padding-right: 0 !important;\n }\n .pe-xxl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xxl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xxl-3 {\n padding-right: 1rem !important;\n }\n .pe-xxl-4 {\n padding-right: 1.8rem !important;\n }\n .pe-xxl-5 {\n padding-right: 3rem !important;\n }\n .pe-xxl-6 {\n padding-right: 4rem !important;\n }\n .pe-xxl-7 {\n padding-right: 5rem !important;\n }\n .pe-xxl-8 {\n padding-right: 7.5rem !important;\n }\n .pe-xxl-9 {\n padding-right: 10rem !important;\n }\n .pe-xxl-10 {\n padding-right: 12.5rem !important;\n }\n .pe-xxl-11 {\n padding-right: 15rem !important;\n }\n .pb-xxl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xxl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xxl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xxl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xxl-4 {\n padding-bottom: 1.8rem !important;\n }\n .pb-xxl-5 {\n padding-bottom: 3rem !important;\n }\n .pb-xxl-6 {\n padding-bottom: 4rem !important;\n }\n .pb-xxl-7 {\n padding-bottom: 5rem !important;\n }\n .pb-xxl-8 {\n padding-bottom: 7.5rem !important;\n }\n .pb-xxl-9 {\n padding-bottom: 10rem !important;\n }\n .pb-xxl-10 {\n padding-bottom: 12.5rem !important;\n }\n .pb-xxl-11 {\n padding-bottom: 15rem !important;\n }\n .ps-xxl-0 {\n padding-left: 0 !important;\n }\n .ps-xxl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xxl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xxl-3 {\n padding-left: 1rem !important;\n }\n .ps-xxl-4 {\n padding-left: 1.8rem !important;\n }\n .ps-xxl-5 {\n padding-left: 3rem !important;\n }\n .ps-xxl-6 {\n padding-left: 4rem !important;\n }\n .ps-xxl-7 {\n padding-left: 5rem !important;\n }\n .ps-xxl-8 {\n padding-left: 7.5rem !important;\n }\n .ps-xxl-9 {\n padding-left: 10rem !important;\n }\n .ps-xxl-10 {\n padding-left: 12.5rem !important;\n }\n .ps-xxl-11 {\n padding-left: 15rem !important;\n }\n .fs-xxl--2 {\n font-size: 0.69444rem !important;\n }\n .fs-xxl--1 {\n font-size: 0.83333rem !important;\n }\n .fs-xxl-0 {\n font-size: 1rem !important;\n }\n .fs-xxl-1 {\n font-size: 1.2rem !important;\n }\n .fs-xxl-2 {\n font-size: 1.44rem !important;\n }\n .fs-xxl-3 {\n font-size: 1.728rem !important;\n }\n .fs-xxl-4 {\n font-size: 2.0736rem !important;\n }\n .fs-xxl-5 {\n font-size: 2.48832rem !important;\n }\n .fs-xxl-6 {\n font-size: 2.98598rem !important;\n }\n .fs-xxl-7 {\n font-size: 3.58318rem !important;\n }\n .fs-xxl-8 {\n font-size: 4.29982rem !important;\n }\n .text-xxl-start {\n text-align: left !important;\n }\n .text-xxl-end {\n text-align: right !important;\n }\n .text-xxl-center {\n text-align: center !important;\n }\n .rounded-xxl-top {\n border-top-start-radius: 0.25rem !important;\n border-top-end-radius: 0.25rem !important;\n }\n .rounded-xxl-top-lg {\n border-top-start-radius: 0.5rem !important;\n border-top-end-radius: 0.5rem !important;\n }\n .rounded-xxl-top-0 {\n border-top-start-radius: 0 !important;\n border-top-end-radius: 0 !important;\n }\n .rounded-xxl-end {\n border-top-end-radius: 0.25rem !important;\n border-bottom-end-radius: 0.25rem !important;\n }\n .rounded-xxl-end-lg {\n border-top-end-radius: 0.5rem !important;\n border-bottom-end-radius: 0.5rem !important;\n }\n .rounded-xxl-end-0 {\n border-top-end-radius: 0 !important;\n border-bottom-end-radius: 0 !important;\n }\n .rounded-xxl-bottom {\n border-bottom-end-radius: 0.25rem !important;\n border-bottom-start-radius: 0.25rem !important;\n }\n .rounded-xxl-bottom-lg {\n border-bottom-end-radius: 0.5rem !important;\n border-bottom-start-radius: 0.5rem !important;\n }\n .rounded-xxl-bottom-0 {\n border-bottom-end-radius: 0 !important;\n border-bottom-start-radius: 0 !important;\n }\n .rounded-xxl-start {\n border-bottom-start-radius: 0.25rem !important;\n border-top-start-radius: 0.25rem !important;\n }\n .rounded-xxl-start-lg {\n border-bottom-start-radius: 0.5rem !important;\n border-top-start-radius: 0.5rem !important;\n }\n .rounded-xxl-start-0 {\n border-bottom-start-radius: 0 !important;\n border-top-start-radius: 0 !important;\n }\n .opacity-xxl-0 {\n opacity: 0 !important;\n }\n .opacity-xxl-25 {\n opacity: 0.25 !important;\n }\n .opacity-xxl-50 {\n opacity: 0.5 !important;\n }\n .opacity-xxl-75 {\n opacity: 0.75 !important;\n }\n .opacity-xxl-85 {\n opacity: 0.85 !important;\n }\n .opacity-xxl-100 {\n opacity: 1 !important;\n }\n .text-xxl-facebook {\n color: #3c5a99 !important;\n }\n .text-xxl-google-plus {\n color: #dd4b39 !important;\n }\n .text-xxl-twitter {\n color: #1da1f2 !important;\n }\n .text-xxl-linkedin {\n color: #0077b5 !important;\n }\n .text-xxl-youtube {\n color: #ff0000 !important;\n }\n .text-xxl-github {\n color: #333 !important;\n }\n .text-xxl-theme {\n color: #0BAC56 !important;\n }\n .text-xxl-black {\n color: #000 !important;\n }\n .text-xxl-100 {\n color: #F5F7FA !important;\n }\n .text-xxl-200 {\n color: #EBEBED !important;\n }\n .text-xxl-300 {\n color: #E1E0E4 !important;\n }\n .text-xxl-400 {\n color: #D7D6DA !important;\n }\n .text-xxl-500 {\n color: #CDCCD1 !important;\n }\n .text-xxl-600 {\n color: #C3C1C8 !important;\n }\n .text-xxl-700 {\n color: #7D7987 !important;\n }\n .text-xxl-800 {\n color: #616368 !important;\n }\n .text-xxl-900 {\n color: #4F5665 !important;\n }\n .text-xxl-1000 {\n color: #112D58 !important;\n }\n .text-xxl-1100 {\n color: #1F1534 !important;\n }\n .text-xxl-white {\n color: #fff !important;\n }\n .max-vh-xxl-25 {\n max-height: 25vh !important;\n }\n .max-vh-xxl-50 {\n max-height: 50vh !important;\n }\n .max-vh-xxl-75 {\n max-height: 75vh !important;\n }\n .max-vh-xxl-100 {\n max-height: 100vh !important;\n }\n .border-xxl-x {\n border-left: 1px solid #E1E0E4 !important;\n border-right: 1px solid #E1E0E4 !important;\n }\n .border-xxl-x-0 {\n border-left: 0 !important;\n border-right: 0 !important;\n }\n .border-xxl-y {\n border-top: 1px solid #E1E0E4 !important;\n border-bottom: 1px solid #E1E0E4 !important;\n }\n .border-xxl-y-0 {\n border-top: 0 !important;\n border-bottom: 0 !important;\n }\n .border-xxl-dashed {\n border: 1px dashed #E1E0E4 !important;\n }\n .border-xxl-dashed-top {\n border-top: 1px dashed #E1E0E4 !important;\n }\n .border-xxl-dashed-end {\n border-right: 1px dashed #E1E0E4 !important;\n }\n .border-xxl-dashed-start {\n border-left: 1px dashed #E1E0E4 !important;\n }\n .border-xxl-dashed-bottom {\n border-bottom: 1px dashed #E1E0E4 !important;\n }\n .border-xxl-dashed-x {\n border-left: 1px dashed #E1E0E4 !important;\n border-right: 1px dashed #E1E0E4 !important;\n }\n .border-xxl-dashed-y {\n border-top: 1px dashed #E1E0E4 !important;\n border-bottom: 1px dashed #E1E0E4 !important;\n }\n .rounded-xxl-0 {\n border-radius: 0 !important;\n }\n}\n\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n .d-print-inline-block {\n display: inline-block !important;\n }\n .d-print-block {\n display: block !important;\n }\n .d-print-grid {\n display: grid !important;\n }\n .d-print-table {\n display: table !important;\n }\n .d-print-table-row {\n display: table-row !important;\n }\n .d-print-table-cell {\n display: table-cell !important;\n }\n .d-print-flex {\n display: flex !important;\n }\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n .d-print-none {\n display: none !important;\n }\n}\n\n/*-----------------------------------------------\r\n| Theme Styles\r\n-----------------------------------------------*/\n/*-----------------------------------------------\r\n| Reboot\r\n-----------------------------------------------*/\n::placeholder {\n opacity: 1;\n color: #D7D6DA !important;\n}\n\nhtml {\n scroll-behavior: smooth;\n scroll-padding-top: 6.3125rem;\n}\n\nbody {\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n position: relative;\n}\n\npre, code {\n -webkit-font-smoothing: auto;\n -moz-osx-font-smoothing: auto;\n}\n\nsection {\n position: relative;\n padding-top: 4rem;\n padding-bottom: 4rem;\n}\n\n@media (min-width: 992px) {\n section {\n padding-top: 7.5rem;\n padding-bottom: 7.5rem;\n }\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea,\nlabel,\n.alert,\n.badge,\n.blockquote-footer,\n.btn,\n.navbar,\n.pagination,\n.valid-feedback,\n.invalid-feedback {\n font-family: \"Chivo\", \"Open Sans\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n}\n\npre {\n margin: 0;\n transform: translate3d(0, 0, 0);\n}\n\nstrong {\n font-weight: 600;\n}\n\nlabel {\n font-weight: 500 !important;\n margin-bottom: 0.5rem;\n}\n\n@font-face {\n font-family: 'Circular Std';\n src: url(\"../fonts/CircularStd-MediumItalic.eot\");\n src: local(\"Circular Std Medium Italic\"), local(\"CircularStd-MediumItalic\"), url(\"../fonts/CircularStd-MediumItalic.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/CircularStd-MediumItalic.woff2\") format(\"woff2\"), url(\"../fonts/CircularStd-MediumItalic.woff\") format(\"woff\"), url(\"../fonts/CircularStd-MediumItalic.ttf\") format(\"truetype\");\n font-weight: 500;\n font-style: italic;\n}\n\n@font-face {\n font-family: 'Circular Std';\n src: url(\"../fonts/CircularStd-Black.eot\");\n src: local(\"Circular Std Black\"), local(\"CircularStd-Black\"), url(\"../fonts/CircularStd-Black.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/CircularStd-Black.woff2\") format(\"woff2\"), url(\"../fonts/CircularStd-Black.woff\") format(\"woff\"), url(\"../fonts/CircularStd-Black.ttf\") format(\"truetype\");\n font-weight: 900;\n font-style: normal;\n}\n\n@font-face {\n font-family: 'Circular Std';\n src: url(\"../fonts/CircularStd-Medium.eot\");\n src: local(\"Circular Std Medium\"), local(\"CircularStd-Medium\"), url(\"../fonts/CircularStd-Medium.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/CircularStd-Medium.woff2\") format(\"woff2\"), url(\"../fonts/CircularStd-Medium.woff\") format(\"woff\"), url(\"../fonts/CircularStd-Medium.ttf\") format(\"truetype\");\n font-weight: 500;\n font-style: normal;\n}\n\n@font-face {\n font-family: 'Circular Std';\n src: url(\"../fonts/CircularStd-Bold.eot\");\n src: local(\"Circular Std Bold\"), local(\"CircularStd-Bold\"), url(\"../fonts/CircularStd-Bold.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/CircularStd-Bold.woff2\") format(\"woff2\"), url(\"../fonts/CircularStd-Bold.woff\") format(\"woff\"), url(\"../fonts/CircularStd-Bold.ttf\") format(\"truetype\");\n font-weight: bold;\n font-style: normal;\n}\n\n@font-face {\n font-family: 'Circular Std';\n src: url(\"../fonts/CircularStd-BlackItalic.eot\");\n src: local(\"Circular Std Black Italic\"), local(\"CircularStd-BlackItalic\"), url(\"../fonts/CircularStd-BlackItalic.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/CircularStd-BlackItalic.woff2\") format(\"woff2\"), url(\"../fonts/CircularStd-BlackItalic.woff\") format(\"woff\"), url(\"../fonts/CircularStd-BlackItalic.ttf\") format(\"truetype\");\n font-weight: 900;\n font-style: italic;\n}\n\n@font-face {\n font-family: 'Circular Std Book';\n src: url(\"../fonts/CircularStd-BookItalic.eot\");\n src: local(\"Circular Std Book Italic\"), local(\"CircularStd-BookItalic\"), url(\"../fonts/CircularStd-BookItalic.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/CircularStd-BookItalic.woff2\") format(\"woff2\"), url(\"../fonts/CircularStd-BookItalic.woff\") format(\"woff\"), url(\"../fonts/CircularStd-BookItalic.ttf\") format(\"truetype\");\n font-weight: normal;\n font-style: italic;\n}\n\n@font-face {\n font-family: 'Circular Std';\n src: url(\"../fonts/CircularStd-BoldItalic.eot\");\n src: local(\"Circular Std Bold Italic\"), local(\"CircularStd-BoldItalic\"), url(\"../fonts/CircularStd-BoldItalic.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/CircularStd-BoldItalic.woff2\") format(\"woff2\"), url(\"../fonts/CircularStd-BoldItalic.woff\") format(\"woff\"), url(\"../fonts/CircularStd-BoldItalic.ttf\") format(\"truetype\");\n font-weight: bold;\n font-style: italic;\n}\n\n@font-face {\n font-family: 'Circular Std Book';\n src: url(\"../fonts/CircularStd-Book.eot\");\n src: local(\"Circular Std Book\"), local(\"CircularStd-Book\"), url(\"../fonts/CircularStd-Book.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/CircularStd-Book.woff2\") format(\"woff2\"), url(\"../fonts/CircularStd-Book.woff\") format(\"woff\"), url(\"../fonts/CircularStd-Book.ttf\") format(\"truetype\");\n font-weight: normal;\n font-style: normal;\n}\n\n/* -------------------------------------------------------------------------- */\n/* Browser Fixing */\n/* -------------------------------------------------------------------------- */\n.firefox .dropcap:first-letter {\n margin-top: 0.175em;\n}\n\n.chrome .btn-close {\n background-clip: unset;\n}\n\n/* -------------------------------------------------------------------------- */\n/* Text */\n/* -------------------------------------------------------------------------- */\n.text-smallcaps {\n font-variant: small-caps;\n}\n\n.text-superscript {\n vertical-align: super;\n}\n\n.text-word-break {\n word-break: break-word;\n}\n\n/*-----------------------------------------------\r\n| Font family\r\n-----------------------------------------------*/\n.font-sans-serif {\n font-family: \"Chivo\", \"Open Sans\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n}\n\n.font-base {\n font-family: \"Chivo\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n}\n\n/*-----------------------------------------------\r\n| Error Page\r\n-----------------------------------------------*/\n.fs-error {\n font-size: 7rem;\n}\n\n@media (min-width: 576px) {\n .fs-error {\n font-size: 10rem;\n }\n}\n\n/*-----------------------------------------------\r\n| Text alignment\r\n-----------------------------------------------*/\n.text-justify {\n text-align: justify !important;\n}\n\n.shape-up {\n margin-top: -21rem;\n}\n\n/*-----------------------------------------------\r\n| Backgrounds\r\n-----------------------------------------------*/\n.bg-holder {\n position: absolute;\n width: 100%;\n min-height: 100%;\n top: 0;\n left: 0;\n background-size: cover;\n background-position: center;\n overflow: hidden;\n will-change: transform, opacity, filter;\n backface-visibility: hidden;\n background-repeat: no-repeat;\n z-index: 0;\n}\n\n.bg-holder.bg-right {\n left: auto;\n right: 0;\n}\n\n.bg-holder.overlay:before {\n position: absolute;\n content: \"\";\n background: rgba(0, 0, 0, 0.25);\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n\n.bg-holder.overlay-0:before {\n background: rgba(0, 0, 0, 0.7);\n}\n\n.bg-holder.overlay-1:before {\n background: rgba(0, 0, 0, 0.55);\n}\n\n.bg-holder.overlay-2:before {\n background: rgba(0, 0, 0, 0.4);\n}\n\n.bg-holder .bg-video {\n position: absolute;\n display: block;\n z-index: -1;\n top: 0;\n left: 0;\n object-fit: cover;\n height: 100%;\n min-width: 100%;\n}\n\n.bg-holder .bg-youtube {\n position: absolute !important;\n top: 0;\n left: 0;\n height: 100%;\n width: 100%;\n}\n\n.bg-primary-gradient {\n background: linear-gradient(208.18deg, #51B4F7 9.05%, #5A98F2 76.74%);\n}\n\n.bg-dark-gradient {\n background: linear-gradient(181deg, rgba(113, 110, 110, 0) 15%, rgba(30, 42, 70, 0.93) 72.07%);\n}\n\n.bg-light-gradient {\n background: linear-gradient(181deg, rgba(113, 110, 110, 0) 35%, rgba(30, 45, 70, 0.93) 94.07%);\n}\n\n/* -------------------------------------------------------------------------- */\n/* Borders */\n/* -------------------------------------------------------------------------- */\n.overflow-hidden[class*='rounded'] {\n mask-image: radial-gradient(#fff, #000);\n}\n\n.border-top-2 {\n border-top-width: 0.125rem !important;\n}\n\n.border-end-2 {\n border-right-width: 0.125rem !important;\n}\n\n.border-bottom-2 {\n border-bottom-width: 0.125rem !important;\n}\n\n.border-start-2 {\n border-left-width: 0.125rem !important;\n}\n\n/* -------------------------------------------------------------------------- */\n/* Position */\n/* -------------------------------------------------------------------------- */\n.container,\n.container-fluid,\n.container-sm,\n.container-md,\n.container-lg,\n.container-xl,\n.container-xxl {\n position: relative;\n}\n\n.all-0 {\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n}\n\n/* -------------------------------------------------------------------------- */\n/* Flex */\n/* -------------------------------------------------------------------------- */\n.flex-center {\n align-items: center;\n justify-content: center;\n}\n\n.flex-between-center {\n justify-content: space-between;\n align-items: center;\n}\n\n.flex-end-center {\n justify-content: flex-end;\n align-items: center;\n}\n\n.flex-1 {\n flex: 1;\n}\n\n.link-black {\n color: #000 !important;\n}\n\n.link-black:hover, .link-black:focus {\n color: black !important;\n}\n\n.link-100 {\n color: #F5F7FA !important;\n}\n\n.link-100:hover, .link-100:focus {\n color: #c2cee1 !important;\n}\n\n.link-200 {\n color: #EBEBED !important;\n}\n\n.link-200:hover, .link-200:focus {\n color: #c3c3c9 !important;\n}\n\n.link-300 {\n color: #E1E0E4 !important;\n}\n\n.link-300:hover, .link-300:focus {\n color: #b9b7c0 !important;\n}\n\n.link-400 {\n color: #D7D6DA !important;\n}\n\n.link-400:hover, .link-400:focus {\n color: #b0aeb6 !important;\n}\n\n.link-500 {\n color: #CDCCD1 !important;\n}\n\n.link-500:hover, .link-500:focus {\n color: #a6a4ad !important;\n}\n\n.link-600 {\n color: #C3C1C8 !important;\n}\n\n.link-600:hover, .link-600:focus {\n color: #9c98a4 !important;\n}\n\n.link-700 {\n color: #7D7987 !important;\n}\n\n.link-700:hover, .link-700:focus {\n color: #58555f !important;\n}\n\n.link-800 {\n color: #616368 !important;\n}\n\n.link-800:hover, .link-800:focus {\n color: #3c3d40 !important;\n}\n\n.link-900 {\n color: #4F5665 !important;\n}\n\n.link-900:hover, .link-900:focus {\n color: #2d313a !important;\n}\n\n.link-1000 {\n color: #112D58 !important;\n}\n\n.link-1000:hover, .link-1000:focus {\n color: #050c18 !important;\n}\n\n.link-1100 {\n color: #1F1534 !important;\n}\n\n.link-1100:hover, .link-1100:focus {\n color: black !important;\n}\n\n.link-white {\n color: #fff !important;\n}\n\n.link-white:hover, .link-white:focus {\n color: #d9d9d9 !important;\n}\n\n.shadow-transition {\n box-shadow: 0 25px 45px rgba(79, 86, 101, 0.075);\n transition: box-shadow 0.4s ease;\n}\n\n/*-----------------------------------------------\r\n| Icons group\r\n-----------------------------------------------*/\n.icon-group {\n display: flex;\n}\n\n.icon-group .icon-item:not(:last-child) {\n margin-right: 0.5rem;\n}\n\n.icon-item {\n border-radius: 50%;\n display: flex;\n justify-content: center;\n align-items: center;\n color: #7D7987;\n transition: all 0.2s ease-in-out;\n height: 2.5rem;\n width: 2.5rem;\n border: 0;\n font-size: 0.875rem;\n box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);\n}\n\n.icon-item:hover, .icon-item:focus {\n background-color: #EBEBED;\n}\n\n.icon-item.icon-item-sm {\n height: 1.875rem;\n width: 1.875rem;\n}\n\n.icon-item.icon-item-lg {\n height: 2.75rem;\n width: 2.75rem;\n}\n\n.fontawesome-i2svg-active .icon-indicator {\n opacity: 1;\n}\n\n/*-----------------------------------------------\r\n| Object fit and Z-index\r\n-----------------------------------------------*/\n.fit-cover {\n object-fit: cover;\n}\n\n.z-index-1 {\n z-index: 1;\n}\n\n.z-index-2 {\n z-index: 2 !important;\n}\n\n.z-index--1 {\n z-index: -1;\n}\n\n/*-----------------------------------------------\r\n| Sidebar\r\n-----------------------------------------------*/\n.sticky-sidebar {\n position: sticky;\n z-index: 1020;\n top: 5.3125rem;\n}\n\n/*-----------------------------------------------\r\n| Custom circle\r\n-----------------------------------------------*/\n.circle-dashed {\n border: 1px dashed #1F3A63;\n display: flex;\n align-items: center;\n justify-content: center;\n border-radius: 50%;\n width: 3.5rem;\n height: 3.5rem;\n}\n\n/*-----------------------------------------------\r\n| Miscellaneous\r\n-----------------------------------------------*/\n.hover-text-decoration-none:hover, .hover-text-decoration-none:focus {\n text-decoration: none;\n}\n\n.resize-none {\n resize: none;\n}\n\n.collapsed .collapse-icon {\n transition: all 0.2s ease-in-out;\n transform: rotate(0deg);\n}\n\n.collapse-icon {\n transition: all 0.2s ease-in-out;\n transform: rotate(90deg);\n}\n\n[data-dismiss=\"dropdown\"] *,\n[data-offset-top] *,\n[data-toggle=\"collapse\"] *,\n[data-toggle=\"tooltip\"] *,\n[data-toggle=\"popover\"] * {\n pointer-events: none;\n}\n\n/*-----------------------------------------------\r\n| Outline\r\n-----------------------------------------------*/\n.outline-none {\n outline: none;\n box-shadow: none;\n}\n\n.outline-none:hover, .outline-none:focus {\n outline: none;\n box-shadow: none;\n}\n\n/*-----------------------------------------------\r\n| Vertical Line (used in kanban header)\r\n-----------------------------------------------*/\n.vertical-line:after {\n position: absolute;\n content: \"\";\n height: 75%;\n width: 1px;\n background: #E1E0E4;\n right: 0;\n top: 50%;\n transform: translateY(-50%);\n}\n\n.vertical-line.vertical-line-400:after {\n background-color: #D7D6DA;\n}\n\n/* -------------------------------------------------------------------------- */\n/* Transition */\n/* -------------------------------------------------------------------------- */\n.transition-base {\n transition: all 0.2s ease-in-out;\n}\n\n.transition-none {\n transition: none;\n}\n\n.fsp-75 {\n font-size: 75%;\n}\n\n/* -------------------------------------------------------------------------- */\n/* Width */\n/* -------------------------------------------------------------------------- */\n.min-w-0 {\n min-width: 0;\n}\n\n/* -------------------------------------------------------------------------- */\n/* Terms sidebar */\n/* -------------------------------------------------------------------------- */\n.terms-sidebar .nav-link {\n color: #CDCCD1;\n font-weight: 500;\n font-family: \"Chivo\", \"Open Sans\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n}\n\n.terms-sidebar .nav-link.active {\n color: #1F3A63;\n}\n\n.card-price {\n padding-left: .75rem;\n padding-right: .75rem;\n text-align: center;\n}\n\n.backdrop {\n backdrop-filter: blur(3px);\n}\n\n/*-----------------------------------------------\r\n| LaslesVPN glow buttons\r\n-----------------------------------------------*/\n.btn-glow {\n position: relative;\n}\n\n.btn-glow::before {\n content: '';\n height: 80%;\n width: 80%;\n position: absolute;\n top: 10%;\n left: 10%;\n display: inline-block;\n background-color: inherit;\n opacity: 0.55;\n filter: blur(26px);\n transform: translateY(45%);\n z-index: -1;\n border-radius: 10px;\n}\n\n/* Hover */\n.hover-top {\n transform: translateY(0) translateZ(0);\n transition: all 0.3s ease-out;\n}\n\n.hover-top.hover-top-shadow-lg:hover, .hover-top.hover-top-shadow-lg:focus {\n transform: translateY(-0.3125rem) translateZ(0);\n}\n\n.hover-top:hover, .hover-top:focus {\n transform: translateY(-0.125rem) translateZ(0);\n box-shadow: 0.5rem 0.5rem 1.5rem rgba(22, 28, 45, 0.1) !important;\n}\n\n/* -------------------------------------------------------------------------- */\n/* Badge */\n/* -------------------------------------------------------------------------- */\n.badge {\n line-height: 0.8125rem;\n}\n\n.badge-circle {\n height: 2rem;\n width: 2rem;\n border-radius: 50%;\n display: flex;\n align-items: center;\n padding: 0 0.5rem;\n}\n\n@media (min-width: 768px) {\n .badge-circle {\n height: 3.4rem;\n width: 3.4rem;\n border-radius: 50%;\n display: flex;\n align-items: center;\n padding: 0 1rem;\n }\n}\n\n.carousel-control-prev,\n.carousel-control-next {\n position: absolute;\n top: 0;\n bottom: 0;\n z-index: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 15%;\n color: #66BB6A;\n text-align: center;\n opacity: 0.9;\n transition: opacity 0.15s ease;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .carousel-control-prev,\n .carousel-control-next {\n transition: none;\n }\n}\n\n.carousel-control-prev:hover, .carousel-control-prev:focus,\n.carousel-control-next:hover,\n.carousel-control-next:focus {\n color: #66BB6A;\n text-decoration: none;\n outline: 0;\n opacity: 0.9;\n}\n\n.carousel-control-prev {\n left: 0;\n}\n\n.carousel-control-next {\n right: 0;\n}\n\n.carousel-indicators {\n position: static;\n justify-content: start;\n margin: 0;\n}\n\n.carousel-indicators li {\n border-radius: 50%;\n}\n\n.carousel-indicators .active {\n opacity: 1;\n background-color: #1F3A63;\n width: 9px;\n height: 9px;\n}\n\n.carousel-control-prev {\n left: auto;\n right: 45px;\n}\n\n.card-span {\n transform: translateY(0) translateZ(0);\n transition: all 0.3s ease-out;\n border: 0;\n}\n\n.card-span.hover-top-shadow-lg:hover, .card-span.hover-top-shadow-lg:focus {\n transform: translateY(-0.3125rem) translateZ(0);\n}\n\n.card-span:hover, .card-span:focus {\n transform: translateY(-0.125rem) translateZ(0);\n box-shadow: 0.5rem 0.5rem 1.5rem rgba(22, 28, 45, 0.1) !important;\n background-color: #D9EEDA;\n}\n\n.theme-tab .nav-link {\n display: flex;\n padding-left: 0;\n padding-right: 0;\n width: 100%;\n text-align: center;\n color: #fff;\n display: block;\n}\n\n.theme-tab .nav-link .nav-item-circle {\n color: #fff;\n background-color: #66BB6A;\n border: 2px solid #fff;\n height: 3rem;\n width: 3rem;\n border-radius: 50%;\n line-height: 2.75rem;\n padding: 0;\n text-align: center;\n align-self: center;\n display: block;\n transition: all 0.2s ease-in-out;\n}\n\n.theme-tab .nav-link.active {\n color: #66BB6A;\n}\n\n.theme-tab .nav-link.active .nav-item-circle {\n background-color: #fff !important;\n color: #66BB6A;\n border-color: #fff;\n}\n\n.theme-tab .nav-link .nav-item-circle .check-icon {\n display: none;\n}\n\n.theme-tab .nav-link .nav-item-circle-parent {\n display: block;\n}\n\n.theme-tab .nav-link .nav-item-circle-parent:before {\n content: \"\";\n height: 2px;\n width: 101%;\n position: absolute;\n left: 51%;\n top: 50%;\n transform: translate3d(-50%, -50%, 0);\n background: #fff;\n}\n\n.theme-tab .nav-item-circle-parent {\n position: relative;\n padding: 0 1rem;\n}\n\n.theme-tab .nav-item-circle {\n margin: 0 auto;\n z-index: 1;\n position: relative;\n}\n\n.theme-tab .nav-item {\n display: flex;\n flex-basis: auto;\n flex-grow: 1;\n max-width: 100%;\n justify-content: center;\n}\n\n.theme-tab .nav-item:first-child .nav-item-circle-parent:before, .theme-tab .nav-item:last-child .nav-item-circle-parent:before {\n width: 50%;\n}\n\n.theme-tab .nav-item:first-child .nav-item-circle-parent:before {\n transform: translate3d(0, -50%, 0);\n}\n\n.theme-tab .nav-item:last-child .nav-item-circle-parent:before {\n left: 0;\n transform: translate3d(0, -50%, 0);\n}\n\n.cta {\n margin-bottom: -21rem;\n}\n\n@media (min-width: 768px) {\n .cta {\n margin-bottom: -20rem;\n }\n}\n\n/*-----------------------------------------------\r\n| User Styles\r\n-----------------------------------------------*/\n","/*!\r\n * Bootstrap v5.0.0-alpha1 (https://getbootstrap.com/)\r\n * Copyright 2011-2020 The Bootstrap Authors\r\n * Copyright 2011-2020 Twitter, Inc.\r\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\r\n */\r\n\r\n// scss-docs-start import-stack\r\n// Configuration\r\n@import \"../../node_modules/bootstrap/scss/utilities\";\r\n\r\n// Layout & components\r\n@import \"../../node_modules/bootstrap/scss/root\";\r\n@import \"../../node_modules/bootstrap/scss/reboot\";\r\n@import \"../../node_modules/bootstrap/scss/type\";\r\n@import \"../../node_modules/bootstrap/scss/images\";\r\n@import \"../../node_modules/bootstrap/scss/containers\";\r\n@import \"../../node_modules/bootstrap/scss/grid\";\r\n@import \"../../node_modules/bootstrap/scss/tables\";\r\n@import \"../../node_modules/bootstrap/scss/forms\";\r\n@import \"../../node_modules/bootstrap/scss/buttons\";\r\n@import \"../../node_modules/bootstrap/scss/transitions\";\r\n@import \"../../node_modules/bootstrap/scss/dropdown\";\r\n@import \"../../node_modules/bootstrap/scss/button-group\";\r\n@import \"../../node_modules/bootstrap/scss/nav\";\r\n@import \"../../node_modules/bootstrap/scss/navbar\";\r\n@import \"../../node_modules/bootstrap/scss/card\";\r\n@import \"../../node_modules/bootstrap/scss/breadcrumb\";\r\n@import \"../../node_modules/bootstrap/scss/pagination\";\r\n@import \"../../node_modules/bootstrap/scss/badge\";\r\n@import \"../../node_modules/bootstrap/scss/alert\";\r\n@import \"../../node_modules/bootstrap/scss/progress\";\r\n@import \"../../node_modules/bootstrap/scss/list-group\";\r\n@import \"../../node_modules/bootstrap/scss/close\";\r\n@import \"../../node_modules/bootstrap/scss/toasts\";\r\n@import \"../../node_modules/bootstrap/scss/modal\";\r\n@import \"../../node_modules/bootstrap/scss/tooltip\";\r\n@import \"../../node_modules/bootstrap/scss/popover\";\r\n@import \"../../node_modules/bootstrap/scss/carousel\";\r\n@import \"../../node_modules/bootstrap/scss/spinners\";\r\n@import \"../../node_modules/bootstrap/scss/accordion\";\r\n\r\n// Helpers\r\n@import \"../../node_modules/bootstrap/scss/helpers\";\r\n\r\n// Utilities\r\n@import \"../../node_modules/bootstrap/scss/utilities/api\";\r\n// scss-docs-end import-stack\r\n",":root {\n // Custom variable values only support SassScript inside `#{}`.\n @each $color, $value in $colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n // Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$variable-prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$variable-prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$variable-prefix}gradient: #{$gradient};\n}\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n\n// Root\n//\n// Ability to the value of the root font sizes, affecting the value of `rem`.\n// null by default, thus nothing is generated.\n\n:root {\n font-size: $font-size-root;\n\n @if $enable-smooth-scroll {\n @media (prefers-reduced-motion: no-preference) {\n scroll-behavior: smooth;\n }\n }\n}\n\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Prevent adjustments of font size after orientation changes in iOS.\n// 4. Change the default tap highlight to be completely transparent in iOS.\n\nbody {\n margin: 0; // 1\n font-family: $font-family-base;\n @include font-size($font-size-base);\n font-weight: $font-weight-base;\n line-height: $line-height-base;\n color: $body-color;\n text-align: $body-text-align;\n background-color: $body-bg; // 2\n -webkit-text-size-adjust: 100%; // 3\n -webkit-tap-highlight-color: rgba($black, 0); // 4\n}\n\n\n// Future-proof rule: in browsers that support :focus-visible, suppress the focus outline\n// on elements that programmatically receive focus but wouldn't normally show a visible\n// focus outline. In general, this would mean that the outline is only applied if the\n// interaction that led to the element receiving programmatic focus was a keyboard interaction,\n// or the browser has somehow determined that the user is primarily a keyboard user and/or\n// wants focus outlines to always be presented.\n// See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible\n// and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/\n\n[tabindex=\"-1\"]:focus:not(:focus-visible) {\n outline: 0 !important;\n}\n\n\n// Content grouping\n//\n// 1. Reset Firefox's gray color\n// 2. Set correct height and prevent the `size` attribute to make the `hr` look like an input field\n\nhr {\n margin: $hr-margin-y 0;\n color: $hr-color; // 1\n background-color: currentColor;\n border: 0;\n opacity: $hr-opacity;\n}\n\nhr:not([size]) {\n height: $hr-height; // 2\n}\n\n\n// Typography\n//\n// 1. Remove top margins from headings\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n\n%heading {\n margin-top: 0; // 1\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-style: $headings-font-style;\n font-weight: $headings-font-weight;\n line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1 {\n @extend %heading;\n @include font-size($h1-font-size);\n}\n\nh2 {\n @extend %heading;\n @include font-size($h2-font-size);\n}\n\nh3 {\n @extend %heading;\n @include font-size($h3-font-size);\n}\n\nh4 {\n @extend %heading;\n @include font-size($h4-font-size);\n}\n\nh5 {\n @extend %heading;\n @include font-size($h5-font-size);\n}\n\nh6 {\n @extend %heading;\n @include font-size($h6-font-size);\n}\n\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\n\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-bs-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-bs-original-title] { // 1\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n text-decoration-skip-ink: none; // 4\n}\n\n\n// Address\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\n\n// Lists\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\n// 1. Undo browser default\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // 1\n}\n\n\n// Blockquote\n\nblockquote {\n margin: 0 0 1rem;\n}\n\n\n// Strong\n//\n// Add the correct font weight in Chrome, Edge, and Safari\n\nb,\nstrong {\n font-weight: $font-weight-bolder;\n}\n\n\n// Small\n//\n// Add the correct font size in all browsers\n\nsmall {\n @include font-size($small-font-size);\n}\n\n\n// Mark\n\nmark {\n padding: $mark-padding;\n background-color: $mark-bg;\n}\n\n\n// Sub and Sup\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n\nsub,\nsup {\n position: relative;\n @include font-size($sub-sup-font-size);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n// Links\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n\n &:hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n &,\n &:hover {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n// Code\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-code;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n direction: ltr #{\"/* rtl:ignore */\"};\n unicode-bidi: bidi-override;\n}\n\n// 1. Remove browser default top margin\n// 2. Reset browser default of `1em` to use `rem`s\n// 3. Don't allow content to break outside\n\npre {\n display: block;\n margin-top: 0; // 1\n margin-bottom: 1rem; // 2\n overflow: auto; // 3\n @include font-size($code-font-size);\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n @include font-size(inherit);\n color: inherit;\n word-break: normal;\n }\n}\n\ncode {\n @include font-size($code-font-size);\n color: $code-color;\n word-wrap: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n @include font-size($kbd-font-size);\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n\n kbd {\n padding: 0;\n @include font-size(1em);\n font-weight: $nested-kbd-font-weight;\n }\n}\n\n\n// Figures\n//\n// Apply a consistent margin strategy (matches our type styles).\n\nfigure {\n margin: 0 0 1rem;\n}\n\n\n// Images and content\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\n\n// Tables\n//\n// Prevent double borders\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: $table-cell-padding-y;\n padding-bottom: $table-cell-padding-y;\n color: $table-caption-color;\n text-align: left;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `` alignment by inheriting `text-align`.\n// 3. Fix alignment for Safari\n\nth {\n font-weight: $table-th-font-weight; // 1\n text-align: inherit; // 2\n text-align: -webkit-match-parent; // 3\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\n\n// Forms\n//\n// 1. Allow labels to use `margin` for spacing.\n\nlabel {\n display: inline-block; // 1\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n// See https://github.com/twbs/bootstrap/issues/24093\n\nbutton {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 0;\n}\n\n// Explicitly remove focus outline in Chromium when it shouldn't be\n// visible (e.g. as result of mouse click or touch tap). It already\n// should be doing this automatically, but seems to currently be\n// confused and applies its very visible two-tone outline anyway.\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\n// 1. Remove the margin in Firefox and Safari\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // 1\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\n// Remove the inheritance of text transform in Firefox\n\nbutton,\nselect {\n text-transform: none;\n}\n\n// Set the cursor for non-` +

+ @if(session('success')) + + + + @endif + + + @foreach ($alternatifs as $item) + + @endforeach + @foreach ($alternatifs as $item) + + @endforeach + + \ No newline at end of file diff --git a/resources/views/admin/dashboard.blade.php b/resources/views/admin/dashboard.blade.php new file mode 100644 index 0000000..50d7750 --- /dev/null +++ b/resources/views/admin/dashboard.blade.php @@ -0,0 +1,227 @@ + + {{ $title }} + + +
+ +
+ {{-- Garis vertikal di kanan --}} +
+ +
+ + + +
+ +
+

Jumlah Kriteria

+

{{ $jumlahKriteria }}

+
+
+ + +
+
+
+ + + +
+
+

Jumlah SubKriteria

+

{{ $jumlahSubkriteria }}

+
+
+ + +
+
+
+ + + +
+
+

Jumlah Alternatif

+

{{ $jumlahAlternatif }}

+
+
+ + +
+
+
+ + + +
+
+

Jumlah User

+

{{ $jumlahUser }}

+
+
+ +
+ + + + + + + + +{{--
+ + +
+
+ 📊 +
+

Apa Itu Metode SAW?

+

+ Metode SAW atau Simple Additive Weighting adalah cara gampang untuk memilih yang terbaik dari sekian banyak pilihan berdasarkan beberapa kriteria. +

+
    +
  • Menentukan bobot tiap kriteria
  • +
  • Menilai setiap alternatif berdasarkan kriteria tersebut
  • +
  • Menjumlahkan nilai yang telah dinormalisasi
  • +
  • Alternatif dengan skor tertinggi = pilihan terbaik! 🚀
  • +
+
+ Gampang, cepat, dan akurat untuk bantu kamu bikin keputusan 💡 +
+
+ + +
+

6 Kriteria Penilaian

+
    +
  • +
    + 🌧️ +
    + Curah Hujan +
  • +
  • +
    + 🌡️ +
    + Suhu Tanah +
  • +
  • +
    + 💧 +
    + Kelembapan +
  • +
  • +
    + ⚗️ +
    + pH Tanah +
  • +
  • +
    + 🧱 +
    + Tekstur Tanah +
  • +
  • +
    + 🌿 +
    + Tanaman Sebelumnya +
  • +
+
+ +
--}} +
+ {{-- Filter Periode --}} +
+ + + + Reset +
+ + {{-- Tabel Riwayat --}} +
+ + + + + + + + + + + @forelse ($historis as $index => $item) + + + + + + + @empty + + + + @endforelse + +
NoPeriodeNama LahanNilai Akhir
{{ $index + 1 }}{{ \Carbon\Carbon::parse($item->periode)->format('F Y') }}{{ $item->nama_lahan }}{{ $item->nilai_akhir }}
Tidak ada data riwayat.
+
+ + {{-- Pagination --}} +
+ {{ $historis->links() }} +
+
+ + + + \ No newline at end of file diff --git a/resources/views/admin/historis.blade.php b/resources/views/admin/historis.blade.php new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/resources/views/admin/historis.blade.php @@ -0,0 +1 @@ + diff --git a/resources/views/admin/kelompoktani.blade.php b/resources/views/admin/kelompoktani.blade.php new file mode 100644 index 0000000..22a0083 --- /dev/null +++ b/resources/views/admin/kelompoktani.blade.php @@ -0,0 +1,217 @@ + + {{ $title}} + + + + +
+
+ + + + + + + + + @forelse ($kelompokTani as $item) + + + + + @empty + + + + @endforelse + +
Nama Kelompok TaniAksi
{{ $item->nama }} + + + + + +
Tidak ada data kelompok tani.
+
+
+ + + + + + + Kembali ke Pengaturan User + + +@foreach ($kelompokTani as $item) + +@endforeach + + + + + @if(session('success')) + + + @endif + + @if ($errors->any()) +
+
    + @foreach ($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+ @endif + @foreach ($kelompokTani as $sub) + +@endforeach +
\ No newline at end of file diff --git a/resources/views/admin/kriteria.blade.php b/resources/views/admin/kriteria.blade.php new file mode 100644 index 0000000..90f0545 --- /dev/null +++ b/resources/views/admin/kriteria.blade.php @@ -0,0 +1,280 @@ + + {{ $title }} + + + {{-- Flex Container for the Table --}} +
+ {{-- Tabel Data Kriteria --}} + + +
+ + + + + + + + + + + + + + @forelse ($kriterias as $index => $item) + + + + + + + + + @empty + + + + @endforelse + +
IDKodeNama KriteriaJenisBobotAksi
{{ $index + 1 }}{{ $item->kode_kriteria }}{{ $item->nama_kriteria }}{{ $item->jenis }}{{ $item->bobot }} + + + + + + +
Tidak ada data kriteria.
+
+ +
+ @if(session('success')) + + + + @endif + + @if(session('error')) + + + + @endif + + + + + + @foreach ($kriterias as $item) + + @endforeach + @foreach ($kriterias as $item) + + @endforeach + +
\ No newline at end of file diff --git a/resources/views/admin/penilaian.blade.php b/resources/views/admin/penilaian.blade.php new file mode 100644 index 0000000..ee4e304 --- /dev/null +++ b/resources/views/admin/penilaian.blade.php @@ -0,0 +1,116 @@ + + {{ $title }} +
+ + + +
+ @csrf +
+ + + + + + @foreach ($kriterias as $kriteria) + + @endforeach + + + + @forelse ($alternatifs as $index => $alternatif) + + + + @foreach ($kriterias as $kriteria) + + @endforeach + + @empty + + + + @endforelse + +
NoNama Alternatif{{ $kriteria->nama_kriteria }}
{{ $index + 1 }}{{ $alternatif->nama_lahan }} + +
Tidak ada data alternatif.
+
+ +
+ +
+
+
+ + + + + +@if(session('success')) + + + + @endif + + + +
diff --git a/resources/views/admin/perhitungan.blade.php b/resources/views/admin/perhitungan.blade.php new file mode 100644 index 0000000..584dbee --- /dev/null +++ b/resources/views/admin/perhitungan.blade.php @@ -0,0 +1,209 @@ + + {{ $title }} +
+

Tabel Analisa

+

+ Tabel ini menunjukkan nilai bobot dari setiap subkriteria yang dipilih oleh masing-masing alternatif (lahan). Nilai ini berasal dari klasifikasi seperti Sangat Baik hingga Tidak Baik. +

+
+
+ + + + + @foreach ($kriterias as $krit) + + @endforeach + + + + @forelse ($analisa as $item) + + + @foreach ($kriterias as $krit) + + @endforeach + + @empty + + + + @endforelse + +
Alternatif{{ $krit->nama_kriteria }}
{{ $item['nama_lahan'] }}{{ $item[$krit->nama_kriteria] }}
Data analisa kosong.
+ +
+
+

Tabel Normalisasi

+

+ Tabel normalisasi digunakan untuk menyamakan skala antar kriteria, dengan cara membagi nilai setiap alternatif terhadap nilai maksimum atau minimum tergantung jenis kriterianya (benefit atau cost). +

+
+ + + + + @foreach ($kriterias as $krit) + + @endforeach + + + + @forelse ($normalisasi as $item) + + + @foreach ($kriterias as $krit) + + @endforeach + + @empty + + + + @endforelse + +
Alternatif{{ $krit->nama_kriteria }}
{{ $item['nama_lahan'] }}{{ $item[$krit->nama_kriteria] }}
Data normalisasi kosong.
+ +
+
+

Tabel Perangkingan

+

+ Tabel ini menampilkan hasil akhir berupa skor dan peringkat dari setiap alternatif berdasarkan total nilai tertimbang hasil normalisasi. +

+
+ + + + + + + + + + + + @foreach ($ranking as $index => $item) + @php + $emoji = match($item['ranking']) { + 1 => '🥇', + 2 => '🥈', + 3 => '🥉', + default => '', + }; + $modalId = 'modal-' . $index; + @endphp + + + + + + + + + + + @endforeach + +
RankingAlternatifSkorAksi
{{ $item['ranking'] }} {{ $emoji }}{{ $item['nama_lahan'] }}{{ $item['nilai_akhir'] }} + +
+ + +
+ +
+ @csrf + @foreach ($ranking as $index => $hasil) + + + @endforeach + + +
+ + + +
+ + + + + + + +
+ + + +
\ No newline at end of file diff --git a/resources/views/admin/subkriteria.blade.php b/resources/views/admin/subkriteria.blade.php new file mode 100644 index 0000000..ee18dad --- /dev/null +++ b/resources/views/admin/subkriteria.blade.php @@ -0,0 +1,251 @@ + + {{ $title}} + + +
+
+ + + + + + + + + + + @forelse ($subkriteria as $sub) + + + + + + @empty + + + + @endforelse + +
Nama SubkriteriaBobotAksi
{{ $sub->nama_sub_kriteria }}{{ $sub->bobot }} + + +
Tidak ada data kriteria.
+
+ +
+ + + + + Kembali ke Kriteria + + @foreach ($subkriteria as $item) + +@endforeach + + + + + @if(session('success')) + + + + @endif + @if ($errors->any()) +
+
    + @foreach ($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+ @endif + @foreach ($subkriteria as $sub) + +@endforeach + @if(session('error')) + + + + @endif +
diff --git a/resources/views/admin/usersetting.blade.php b/resources/views/admin/usersetting.blade.php new file mode 100644 index 0000000..8593ec7 --- /dev/null +++ b/resources/views/admin/usersetting.blade.php @@ -0,0 +1,323 @@ + +{{ $title }} + + @if(auth()->user()->role === 'super_admin') + + Tambah Kelompok Tani + + @endif + @if ($errors->any()) +
+
    + @foreach ($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+@endif +
+ {{-- Tabel Data Kriteria --}} +
+ + + + + + + + + + + + + + + @forelse ($users as $index => $user) + + + + + + + + + + @empty + + + + @endforelse + +
Kelompok TaniIDNameUsernamePasswordRoleAksi
+ {{ $user->kelompokTani->isNotEmpty() ? $user->kelompokTani->pluck('nama')->join(', ') : '-' }} + {{ $user->id }}{{ $user->name }}{{ $user->username }}••••••{{ $user->role }} + + + @php + $auth = auth()->user(); + @endphp + @if ( + $auth->id !== $user->id && // Tidak bisa hapus diri sendiri + ( + $auth->role === 'super_admin' || // super_admin bisa hapus siapa saja kecuali dirinya + ($auth->role === 'admin' && $user->role !== 'admin') // admin hanya boleh hapus user biasa + ) + ) + + + @endif +
Tidak ada data User.
+ +
+ +
+ @if(session('success')) + + + + @endif + + + + +@foreach ($users as $user) + +@endforeach + +@foreach ($users as $user) + +@endforeach + + + + + +
\ No newline at end of file diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php new file mode 100644 index 0000000..24cc983 --- /dev/null +++ b/resources/views/auth/login.blade.php @@ -0,0 +1,89 @@ + + + + + Login Form + + + + + + + + @vite('resources/css/app.css') + + Home + + + + + + + + + +
+
+

Login Sistem SPK

+ +
+ @csrf + +
+ + +
+ + +
+ +
+ + +
+
+ + +
+ +
+
+ + +
+
+ + + + + + + + + diff --git a/resources/views/components/Content.blade.php b/resources/views/components/Content.blade.php new file mode 100644 index 0000000..15f4140 --- /dev/null +++ b/resources/views/components/Content.blade.php @@ -0,0 +1,64 @@ +
+
+
+
+

+ +

+
+
+

+ +

+
+
+

+ +

+
+
+
+

+ +

+
+
+
+

+ +

+
+
+

+ +

+
+
+

+ +

+
+
+

+ +

+
+
+
+
\ No newline at end of file diff --git a/resources/views/components/headeradm.blade.php b/resources/views/components/headeradm.blade.php new file mode 100644 index 0000000..2b3efb6 --- /dev/null +++ b/resources/views/components/headeradm.blade.php @@ -0,0 +1,47 @@ + diff --git a/resources/views/components/layout.blade.php b/resources/views/components/layout.blade.php new file mode 100644 index 0000000..15d9e2f --- /dev/null +++ b/resources/views/components/layout.blade.php @@ -0,0 +1,51 @@ + + + + + + + + + + + + @vite('resources/css/app.css') + + Home + + + + + + + + + +
+ + + + + + + +
+
+ Background Hiasan +
+

+ {{ $title }} +

+
+
+ {{ $slot }} +
+ +
+
+
+ + + diff --git a/resources/views/components/side-link.blade.php b/resources/views/components/side-link.blade.php new file mode 100644 index 0000000..300ea7b --- /dev/null +++ b/resources/views/components/side-link.blade.php @@ -0,0 +1,9 @@ +@php +$classes = $active + ? 'flex items-center p-2 text-white bg-[#388E3C] rounded-lg group' + : 'flex items-center p-2 text-gray-600 bg-white hover:bg-[#388E3C] hover:text-white rounded-lg group transition duration-150'; +@endphp + +merge(['href' => $href, 'class' => $classes]) }}> + {{ $slot }} + diff --git a/resources/views/components/sidebar.blade.php b/resources/views/components/sidebar.blade.php new file mode 100644 index 0000000..26a77e8 --- /dev/null +++ b/resources/views/components/sidebar.blade.php @@ -0,0 +1,58 @@ + diff --git a/resources/views/index.blade.php b/resources/views/index.blade.php new file mode 100644 index 0000000..66c9ee6 --- /dev/null +++ b/resources/views/index.blade.php @@ -0,0 +1,528 @@ + + + + + + + + + + + + + SPK Kesesuaian Lahan Cabai + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+
+ + +
+
+
+
Tentang Aplikasi
+

Sistem Pendukung Keputusan Kesesuaian Lahan Tanaman Cabai merupakan sebuah aplikasi berbasis web yang dirancang untuk membantu petani, penyuluh pertanian, maupun pihak terkait dalam menentukan lahan yang paling sesuai untuk budidaya tanaman cabai. Sistem ini dibangun menggunakan metode Simple Additive Weighting (SAW), sebuah metode dalam pengambilan keputusan yang mampu memberikan hasil yang objektif dan terukur berdasarkan kriteria-kriteria tertentu.

+
+
+
+
Fitur Utama
+
+
+
+
+
+
+
+
+
Manajemen Data Kriteria dan Subkriteria
+

Pengguna dapat mengelola kriteria dan subkriteria sesuai kebutuhan sistem, seperti menambahkan, mengedit, atau menghapus data kriteria (misalnya: curah hujan, pH tanah, dll).

+
+
+
+
+
+
+
+
+
Input dan Manajemen Alternatif Lahan
+

Pengguna dapat memasukkan data alternatif lahan yang akan dianalisis, misalnya Lahan A, Lahan B, dll. Setiap lahan diberi nilai berdasarkan kondisi aktual terhadap setiap kriteria.

+
+
+
+
+
+
+
+
+
Perhitungan Otomatis
+

Sistem secara otomatis menghitung nilai akhir dari setiap alternatif berdasarkan bobot kriteria dan nilai preferensi subkriteria menggunakan metode Simple Additive Weighting (SAW)

+
+
+
+
+
+
+
+
+
Tampilan Hasil Perangkingan Lahan
+

Sistem menampilkan hasil akhir dalam bentuk tabel perangkingan, dari lahan dengan nilai paling sesuai hingga kurang sesuai.

+
+
+
+
+
+
+
+
+
Simpan dan Ubah Data
+

Semua data dapat disimpan dalam database dan bisa diubah kapan saja sesuai dengan data terbaru yang diperoleh dari lapangan.

+
+
+
+
+
+
+
+
+
Antarmuka Sederhana dan Responsif
+

Dirancang dengan tampilan antarmuka (UI) yang user-friendly dan dapat diakses dari berbagai perangkat (laptop, tablet, smartphone).

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + +
+
+
+
How it works
+

Aplikasi ini memandu pengguna dari proses login hingga mendapatkan rekomendasi lahan terbaik untuk budidaya cabai, melalui 4 langkah sederhana berikut:

+
+
+
+ +
+
+
+
+

Login ke Sistem

+
+
+

Pengguna masuk ke dalam sistem menggunakan akun yang telah terdaftar untuk mengakses fitur-fitur aplikasi.

+
+
+
+
+
+
+

Input Data Lahan

+
+
+

Masukkan data alternatif lahan, seperti lokasi dan nilai-nilai dari setiap kriteria yang dibutuhkan (misalnya curah hujan, pH tanah, suhu, dll).

+
+
+
+
+
+
+

Penilaian dan Proses Perhitungan

+
+
+

Sistem akan memproses data menggunakan metode SAW berdasarkan nilai preferensi subkriteria dan bobot kriteria yang telah ditentukan.

+
+
+
+
+
+
+

Lihat Hasil Rekomendasi

+
+
+

Hasil perangkingan ditampilkan untuk menunjukkan lahan terbaik yang direkomendasikan untuk budidaya tanaman cabai.

+
+
+
+
+
+
+
+
+
+ + + +
+ +
+
+
+
+
+
Wawasan & Informasi Seputar Budidaya Cabai dan Teknologi Pertanian
+

Temukan berbagai artikel menarik dan informatif tentang cara memilih lahan terbaik, pemanfaatan teknologi dalam pertanian, serta tips budidaya cabai yang sukses. Blog ini hadir untuk mendukung para petani dan pengguna dalam mengambil keputusan yang tepat berbasis data.

+
+ +
+
... +
+ +
+ +
+
+
+
+
+
+
+ + +
+ + + + + {{--
+
+
+
+
+
+ + +
What investors like you
are saying about Zou
+
+ +
+
+
--}} + + + + +
+ +
+
+
+
+
+

The future of  The Country  is You

Mulai Sekarang! +
+
+
+
+
+ + +
+ + + + +
+
+
+ + +
+
+ {{--
+
COMPANY
+ +
--}} +
+
Start
+ +
+
+
LEGAL
+ +
+
+
+
+
Contact
+

Write an email for me! : (fian9943@gmail.com)

+ {{-- --}} +
+
+
+
+
+
+
+
+

© Copyright  +  by  Moh. Alfiannur Salsabil, 2025 +

+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/views/vendor/pagination/bootstrap-4.blade.php b/resources/views/vendor/pagination/bootstrap-4.blade.php new file mode 100644 index 0000000..63c6f56 --- /dev/null +++ b/resources/views/vendor/pagination/bootstrap-4.blade.php @@ -0,0 +1,46 @@ +@if ($paginator->hasPages()) + +@endif diff --git a/resources/views/vendor/pagination/bootstrap-5.blade.php b/resources/views/vendor/pagination/bootstrap-5.blade.php new file mode 100644 index 0000000..a1795a4 --- /dev/null +++ b/resources/views/vendor/pagination/bootstrap-5.blade.php @@ -0,0 +1,88 @@ +@if ($paginator->hasPages()) + +@endif diff --git a/resources/views/vendor/pagination/default.blade.php b/resources/views/vendor/pagination/default.blade.php new file mode 100644 index 0000000..0db70b5 --- /dev/null +++ b/resources/views/vendor/pagination/default.blade.php @@ -0,0 +1,46 @@ +@if ($paginator->hasPages()) + +@endif diff --git a/resources/views/vendor/pagination/semantic-ui.blade.php b/resources/views/vendor/pagination/semantic-ui.blade.php new file mode 100644 index 0000000..ef0dbb1 --- /dev/null +++ b/resources/views/vendor/pagination/semantic-ui.blade.php @@ -0,0 +1,36 @@ +@if ($paginator->hasPages()) + +@endif diff --git a/resources/views/vendor/pagination/simple-bootstrap-4.blade.php b/resources/views/vendor/pagination/simple-bootstrap-4.blade.php new file mode 100644 index 0000000..4bb4917 --- /dev/null +++ b/resources/views/vendor/pagination/simple-bootstrap-4.blade.php @@ -0,0 +1,27 @@ +@if ($paginator->hasPages()) + +@endif diff --git a/resources/views/vendor/pagination/simple-bootstrap-5.blade.php b/resources/views/vendor/pagination/simple-bootstrap-5.blade.php new file mode 100644 index 0000000..a89005e --- /dev/null +++ b/resources/views/vendor/pagination/simple-bootstrap-5.blade.php @@ -0,0 +1,29 @@ +@if ($paginator->hasPages()) + +@endif diff --git a/resources/views/vendor/pagination/simple-default.blade.php b/resources/views/vendor/pagination/simple-default.blade.php new file mode 100644 index 0000000..36bdbc1 --- /dev/null +++ b/resources/views/vendor/pagination/simple-default.blade.php @@ -0,0 +1,19 @@ +@if ($paginator->hasPages()) + +@endif diff --git a/resources/views/vendor/pagination/simple-tailwind.blade.php b/resources/views/vendor/pagination/simple-tailwind.blade.php new file mode 100644 index 0000000..ea02400 --- /dev/null +++ b/resources/views/vendor/pagination/simple-tailwind.blade.php @@ -0,0 +1,25 @@ +@if ($paginator->hasPages()) + +@endif diff --git a/resources/views/vendor/pagination/tailwind.blade.php b/resources/views/vendor/pagination/tailwind.blade.php new file mode 100644 index 0000000..aee2ad2 --- /dev/null +++ b/resources/views/vendor/pagination/tailwind.blade.php @@ -0,0 +1,106 @@ +@if ($paginator->hasPages()) + +@endif diff --git a/routes/console.php b/routes/console.php new file mode 100644 index 0000000..19cef70 --- /dev/null +++ b/routes/console.php @@ -0,0 +1,10 @@ +comment(Inspiring::quote()); +})->purpose('Display an inspiring quote'); diff --git a/routes/web.php b/routes/web.php new file mode 100644 index 0000000..460c569 --- /dev/null +++ b/routes/web.php @@ -0,0 +1,82 @@ +name('login'); +Route::post('auth/login', [LoginController::class, 'login']); +Route::post('auth/logout', [LoginController::class, 'logout'])->name('logout'); + +// Landing page (bebas diakses) +Route::get('/', function () { + return view('index'); +}); + +// Semua route yang butuh login +Route::middleware('auth')->group(function () { + + // DASHBOARD + Route::get('/admin/dashboard', [DashboardController::class, 'index'])->name('dashboard'); + + // KRITERIA + Route::resource('/admin/kriteria', KriteriaController::class); + Route::post('/admin/kriteria', [KriteriaController::class, 'store'])->name('kriteria.store'); + Route::delete('/admin/kriteria/{id}', [KriteriaController::class, 'destroy'])->name('kriteria.destroy'); + + // SUBKRITERIA + Route::get('/admin/kriteria/{kriteria_id}/subkriteria', [SubKriteriaController::class, 'index'])->name('admin.subkriteria.index'); + Route::post('/subkriteria', [SubKriteriaController::class, 'store'])->name('subkriteria.store'); + Route::delete('/admin/subkriteria/{id}', [SubKriteriaController::class, 'destroy'])->name('subkriteria.destroy'); + Route::put('/admin/subkriteria/{id}', [SubKriteriaController::class, 'update'])->name('subkriteria.update'); + + // ALTERNATIF + Route::get('/admin/alternatif', [AlternatifController::class, 'index'])->name('alternatif.index'); + Route::post('/admin/alternatif', [AlternatifController::class, 'store'])->name('alternatif.store'); + Route::delete('/admin/alternatif/{id}', [AlternatifController::class, 'destroy'])->name('alternatif.destroy'); + Route::put('/admin/alternatif/{id}', [AlternatifController::class, 'update'])->name('alternatif.update'); + Route::delete('/alternatif/hapus-semua', [AlternatifController::class, 'destroyAll'])->name('alternatif.destroyAll'); + Route::resource('alternatif', AlternatifController::class); + + // PENILAIAN + Route::get('/admin/penilaian', [PenilaianController::class, 'index'])->name('penilaian.index'); + Route::post('/admin/penilaian', [PenilaianController::class, 'store'])->name('penilaian.store'); + + // PERHITUNGAN + Route::get('/admin/perhitungan', [PerhitunganController::class, 'index'])->name('perhitungan.index'); + Route::post('/perhitungan/simpan-historis', [PerhitunganController::class, 'simpanKeHistoris'])->name('perhitungan.simpanHistoris'); + Route::get('/perhitungan/historis', [PerhitunganController::class, 'historis'])->name('perhitungan.historis'); + + // USER SETTING + Route::get('/admin/usersetting', [UserSettingController::class, 'index'])->name('usersetting.index'); + Route::post('/admin/usersetting/store', [UserSettingController::class, 'store'])->name('usersetting.store'); + Route::put('/admin/usersetting/update/{id}', [UserSettingController::class, 'update'])->name('usersetting.update'); + Route::delete('/admin/usersetting/delete/{id}', [UserSettingController::class, 'destroy'])->name('usersetting.destroy'); + Route::delete('/admin/usersetting/destroyAll', [UserSettingController::class, 'destroyAll'])->name('usersetting.destroyAll'); + + // KELOMPOK TANI (khusus superadmin, pengecekan di controller) + Route::get('/admin/kelompoktani', [KelompokTaniController::class, 'index'])->name('kelompoktani.index'); + Route::post('/admin/kelompoktani', [KelompokTaniController::class, 'store'])->name('kelompoktani.store'); + Route::put('/admin/kelompoktani/{id}', [KelompokTaniController::class, 'update'])->name('kelompoktani.update'); + Route::delete('/admin/kelompoktani/{id}', [KelompokTaniController::class, 'destroy'])->name('kelompoktani.destroy'); + +}); + + diff --git a/sqlite_dump.sql b/sqlite_dump.sql new file mode 100644 index 0000000..479669c Binary files /dev/null and b/sqlite_dump.sql differ diff --git a/storage/app/.gitignore b/storage/app/.gitignore new file mode 100644 index 0000000..fedb287 --- /dev/null +++ b/storage/app/.gitignore @@ -0,0 +1,4 @@ +* +!private/ +!public/ +!.gitignore diff --git a/storage/app/private/.gitignore b/storage/app/private/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/app/private/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/app/public/.gitignore b/storage/app/public/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/app/public/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/debugbar/.gitignore b/storage/debugbar/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/debugbar/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/.gitignore b/storage/framework/.gitignore new file mode 100644 index 0000000..05c4471 --- /dev/null +++ b/storage/framework/.gitignore @@ -0,0 +1,9 @@ +compiled.php +config.php +down +events.scanned.php +maintenance.php +routes.php +routes.scanned.php +schedule-* +services.json diff --git a/storage/framework/cache/.gitignore b/storage/framework/cache/.gitignore new file mode 100644 index 0000000..01e4a6c --- /dev/null +++ b/storage/framework/cache/.gitignore @@ -0,0 +1,3 @@ +* +!data/ +!.gitignore diff --git a/storage/framework/cache/data/.gitignore b/storage/framework/cache/data/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/cache/data/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/sessions/.gitignore b/storage/framework/sessions/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/sessions/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/testing/.gitignore b/storage/framework/testing/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/testing/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/views/.gitignore b/storage/framework/views/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/views/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/logs/.gitignore b/storage/logs/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/logs/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..0b5e0f4 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,56 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + darkMode: 'class', + content: [ + "./resources/views/**/*.blade.php", + "./resources/js/**/*.vue", + "./resources/css/**/*.css", + './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php', + ], + theme: { + extend: { + fontFamily: { + 'body': [ + 'Inter', + 'ui-sans-serif', + 'system-ui', + '-apple-system', + 'system-ui', + 'Segoe UI', + 'Roboto', + 'Helvetica Neue', + 'Arial', + 'Noto Sans', + 'sans-serif', + 'Apple Color Emoji', + 'Segoe UI Emoji', + 'Segoe UI Symbol', + 'Noto Color Emoji' + ], + 'sans': [ + 'Inter', + 'ui-sans-serif', + 'system-ui', + '-apple-system', + 'system-ui', + 'Segoe UI', + 'Roboto', + 'Helvetica Neue', + 'Arial', + 'Noto Sans', + 'sans-serif', + 'Apple Color Emoji', + 'Segoe UI Emoji', + 'Segoe UI Symbol', + 'Noto Color Emoji' + ] + }, + colors: { + primary: {"50":"#eff6ff","100":"#dbeafe","200":"#bfdbfe","300":"#93c5fd","400":"#60a5fa","500":"#3b82f6","600":"#2563eb","700":"#1d4ed8","800":"#1e40af","900":"#1e3a8a","950":"#172554"} + } + }, + }, + plugins: [require("flowbite/plugin"), require("flowbite-typography")], + safelist: ['bg-green-100, bg-blue-100, bg-red-100, bg-purple-100, bg-yellow-100'], + }; + \ No newline at end of file diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php new file mode 100644 index 0000000..8364a84 --- /dev/null +++ b/tests/Feature/ExampleTest.php @@ -0,0 +1,19 @@ +get('/'); + + $response->assertStatus(200); + } +} diff --git a/tests/TestCase.php b/tests/TestCase.php new file mode 100644 index 0000000..fe1ffc2 --- /dev/null +++ b/tests/TestCase.php @@ -0,0 +1,10 @@ +assertTrue(true); + } +} diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..29fbfe9 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,13 @@ +import { defineConfig } from 'vite'; +import laravel from 'laravel-vite-plugin'; +import tailwindcss from '@tailwindcss/vite'; + +export default defineConfig({ + plugins: [ + laravel({ + input: ['resources/css/app.css', 'resources/js/app.js'], + refresh: true, + }), + tailwindcss(), + ], +}); diff --git a/wpu_laravel11 b/wpu_laravel11 new file mode 100644 index 0000000..3d57a6f Binary files /dev/null and b/wpu_laravel11 differ