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..ea0665b --- /dev/null +++ b/.env.example @@ -0,0 +1,59 @@ +APP_NAME=Laravel +APP_ENV=local +APP_KEY= +APP_DEBUG=true +APP_URL=http://localhost + +LOG_CHANNEL=stack +LOG_DEPRECATIONS_CHANNEL=null +LOG_LEVEL=debug + +DB_CONNECTION=mysql +DB_HOST=127.0.0.1 +DB_PORT=3306 +DB_DATABASE=laravel +DB_USERNAME=root +DB_PASSWORD= + +BROADCAST_DRIVER=log +CACHE_DRIVER=file +FILESYSTEM_DISK=local +QUEUE_CONNECTION=sync +SESSION_DRIVER=file +SESSION_LIFETIME=120 + +MEMCACHED_HOST=127.0.0.1 + +REDIS_HOST=127.0.0.1 +REDIS_PASSWORD=null +REDIS_PORT=6379 + +MAIL_MAILER=smtp +MAIL_HOST=mailpit +MAIL_PORT=1025 +MAIL_USERNAME=null +MAIL_PASSWORD=null +MAIL_ENCRYPTION=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 + +PUSHER_APP_ID= +PUSHER_APP_KEY= +PUSHER_APP_SECRET= +PUSHER_HOST= +PUSHER_PORT=443 +PUSHER_SCHEME=https +PUSHER_APP_CLUSTER=mt1 + +VITE_APP_NAME="${APP_NAME}" +VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}" +VITE_PUSHER_HOST="${PUSHER_HOST}" +VITE_PUSHER_PORT="${PUSHER_PORT}" +VITE_PUSHER_SCHEME="${PUSHER_SCHEME}" +VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7fe978f --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ +/.phpunit.cache +/node_modules +/public/build +/public/hot +/public/storage +/storage/*.key +/vendor +.env +.env.backup +.env.production +.phpunit.result.cache +Homestead.json +Homestead.yaml +auth.json +npm-debug.log +yarn-error.log +/.fleet +/.idea +/.vscode 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/Console/Kernel.php b/app/Console/Kernel.php new file mode 100644 index 0000000..e6b9960 --- /dev/null +++ b/app/Console/Kernel.php @@ -0,0 +1,27 @@ +command('inspire')->hourly(); + } + + /** + * Register the commands for the application. + */ + protected function commands(): void + { + $this->load(__DIR__.'/Commands'); + + require base_path('routes/console.php'); + } +} diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php new file mode 100644 index 0000000..56af264 --- /dev/null +++ b/app/Exceptions/Handler.php @@ -0,0 +1,30 @@ + + */ + protected $dontFlash = [ + 'current_password', + 'password', + 'password_confirmation', + ]; + + /** + * Register the exception handling callbacks for the application. + */ + public function register(): void + { + $this->reportable(function (Throwable $e) { + // + }); + } +} diff --git a/app/Http/Controllers/Admin/AlternatifController.php b/app/Http/Controllers/Admin/AlternatifController.php new file mode 100644 index 0000000..be0432f --- /dev/null +++ b/app/Http/Controllers/Admin/AlternatifController.php @@ -0,0 +1,154 @@ +get(); + + // Ambil semua kriteria + $kriteria = Kriteria::all(); + + // Ambil semua alternatif dengan relasi ke subkriteria + $query = DataAlternatif::with('subkriteria', 'penilaian'); + + // Jika ada filter jenis pakaian, gunakan filter berdasarkan subkriteria_id + if ($request->filled('jenis_pakaian')) { + $query->where('subkriteria_id', $request->jenis_pakaian); + } + + // Search + if ($request->filled('search')) { + $query->where('nama_alternatif', 'like', '%' . $request->search . '%'); + } + + // Ambil data alternatif dengan pagination (10 per halaman) + $perPage = $request->input('entries', 10); // Ambil dari URL ?entries=xx, default 10 + $alternatif = $query->paginate($perPage)->appends($request->query()); + + // Kirim data ke view + return view('admin.pages.alternatif.index', compact('subkriteria', 'alternatif', 'kriteria')); + } + + + public function store(Request $request) + { + // Validasi input + $request->validate([ + 'nama_alternatif' => 'required|string|max:255|unique:dataalternatif,nama_alternatif', + 'subkriteria_id' => 'required|exists:subkriteria,id', + 'gambar' => 'nullable|image|mimes:jpeg,png,jpg,gif|max:2048', + ]); + + $gambarPath = null; + + // Jika ada gambar yang diunggah, simpan ke folder public/assets/img + if ($request->hasFile('gambar')) { + $gambar = $request->file('gambar'); + $namaFile = time() . '_' . $gambar->getClientOriginalName(); + // simpan ke public/assets/img + $gambar->move(public_path('assets/img'), $namaFile); + $gambarPath = 'assets/img/' . $namaFile; + } + + // Simpan data alternatif ke database + $alternatif = DataAlternatif::create([ + 'nama_alternatif' => $request->nama_alternatif, + 'subkriteria_id' => $request->subkriteria_id, + 'gambar' => $gambarPath, + ]); + + // Ambil semua kriteria yang ada + $kriteria = Kriteria::all(); + + // Simpan nilai awal 0 untuk semua kriteria pada alternatif baru + foreach ($kriteria as $k) { + \App\Models\Penilaian::create([ + 'alternatif_id' => $alternatif->id, + 'kriteria_id' => $k->id, + 'nilai' => 0, // Atur nilai default + ]); + } + + // Redirect kembali ke halaman index dengan pesan sukses + return redirect()->route('admin.alternatif.index')->with('success', 'Data Alternatif berhasil ditambahkan.'); + } + + // Menampilkan form edit untuk alternatif + public function edit($id) + { + // Ambil data alternatif berdasarkan ID + $alternatif = DataAlternatif::findOrFail($id); + + // Ambil semua subkriteria (untuk pilihan dropdown misalnya) + $subkriteria = \App\Models\Subkriteria::all(); + + // Tampilkan view edit + return view('admin.pages.alternatif.edit', compact('alternatif', 'subkriteria')); + } + + public function update(Request $request, $id) + { + // Tampilkan view edit + $request->validate([ + 'nama_alternatif' => 'required|string|max:255|unique:dataalternatif,nama_alternatif,' . $id, + 'subkriteria_id' => 'required|exists:subkriteria,id', + 'gambar' => 'nullable|image|mimes:jpg,jpeg,png|max:2048', + ]); + + // Ambil data alternatif berdasarkan ID + $alternatif = DataAlternatif::findOrFail($id); + + // Update data dari input + $alternatif->nama_alternatif = $request->nama_alternatif; + $alternatif->subkriteria_id = $request->subkriteria_id; + + // Jika user mengunggah gambar baru, simpan dan update path-nya + if ($request->hasFile('gambar')) { + $file = $request->file('gambar'); + $namaFile = time() . '_' . $file->getClientOriginalName(); + + // Simpan di public/assets/img + $file->move(public_path('assets/img'), $namaFile); + + // Update path di DB + $alternatif->gambar = 'assets/img/' . $namaFile; + } + + // Simpan perubahan ke database + $alternatif->save(); + + // Jika permintaan AJAX, kirim response JSON + if ($request->ajax()) { + return response()->json(['success' => true, 'message' => 'Data Alternatif berhasil diperbarui!']); + } + + // Redirect ke halaman index dengan pesan sukses + return redirect()->route('admin.alternatif.index')->with('success', 'Data Alternatif berhasil diperbarui.'); + } + + public function destroy(Request $request, $id) + { + // Cari data berdasarkan ID dan hapus + $alternatif = DataAlternatif::findOrFail($id); + $alternatif->delete(); + + // Jika permintaan AJAX, kirim response JSON + if ($request->ajax()) { + return response()->json(['success' => true, 'message' => 'Data berhasil dihapus.']); + } + + // Redirect ke halaman index dengan pesan sukses + return redirect()->route('admin.alternatif.index')->with('success', 'Data Alternatif berhasil dihapus.'); + } +} diff --git a/app/Http/Controllers/Admin/AuthController.php b/app/Http/Controllers/Admin/AuthController.php new file mode 100644 index 0000000..e6ec0a1 --- /dev/null +++ b/app/Http/Controllers/Admin/AuthController.php @@ -0,0 +1,30 @@ +only('username', 'password'); + + if (Auth::attempt($credentials)) { + return redirect()->route('dashboard'); + } + + return back()->withErrors(['login' => 'Username atau password salah.']); + } +} diff --git a/app/Http/Controllers/Admin/DashboardController.php b/app/Http/Controllers/Admin/DashboardController.php new file mode 100644 index 0000000..60db684 --- /dev/null +++ b/app/Http/Controllers/Admin/DashboardController.php @@ -0,0 +1,36 @@ + $totalKriteria, + 'totalSubKriteria' => $totalSubKriteria, + 'totalAlternatif' => $totalAlternatif, + 'totalPenilaian' => $totalPenilaian, + 'totalPerhitungan' => $totalPenilaian, + 'totalHasilAkhir' => $totalPenilaian, + 'kriteriaId' => $kriteriaPertama ? $kriteriaPertama->id : null, + ]); + } +} diff --git a/app/Http/Controllers/Admin/DataKriteriaController.php b/app/Http/Controllers/Admin/DataKriteriaController.php new file mode 100644 index 0000000..23c689f --- /dev/null +++ b/app/Http/Controllers/Admin/DataKriteriaController.php @@ -0,0 +1,84 @@ +get(); + return view('admin.pages.kriteria.index', compact('kriteria')); + } + + // Menampilkan form tambah data + public function create() + { + return view('admin.pages.kriteria.create'); + } + + // Menyimpan data baru + public function store(Request $request) + { + // Validasi inputan dari form + $request->validate([ + 'kode_kriteria' => 'required|unique:datakriteria,kode_kriteria|max:10', + 'nama_kriteria' => 'required|max:255', + 'bobot' => 'required|numeric|min:0.01|max:1', // nilai > 0 + 'jenis' => 'required|in:Benefit,Cost', + ], [ + 'bobot.min' => 'Bobot tidak boleh 0.', + ]); + + // Simpan data kriteria baru ke database + Kriteria::create($request->only(['kode_kriteria', 'nama_kriteria', 'bobot', 'jenis'])); + + return redirect()->route('admin.kriteria.index')->with('success', 'Data Kriteria berhasil ditambahkan!'); + } + + // Menampilkan form edit data + public function edit($id) + { + // Cari data kriteria berdasarkan ID + $kriteria = Kriteria::findOrFail($id); + return view('admin.pages.kriteria.edit', compact('kriteria')); + } + + // Menyimpan perubahan data + public function update(Request $request, $id) + { + // Validasi inputan dari form edit + $request->validate([ + 'kode_kriteria' => "required|max:10|unique:datakriteria,kode_kriteria,$id,id", + 'nama_kriteria' => 'required|max:255', + 'bobot' => 'required|numeric|min:0.01|max:1', // nilai > 0 + 'jenis' => 'required|in:Benefit,Cost', + ], [ + 'bobot.min' => 'Bobot tidak boleh 0.', + ]); + + // Cari data kriteria yang akan diupdate + $kriteria = Kriteria::findOrFail($id); + // Update data dengan input yang diberikan + $kriteria->update($request->only(['kode_kriteria', 'nama_kriteria', 'bobot', 'jenis'])); + + return redirect()->route('admin.kriteria.index')->with('success', 'Data Kriteria berhasil diperbarui!'); + } + + // Menghapus data kriteria + public function destroy($id) + { + // Cari data kriteria berdasarkan ID + $kriteria = Kriteria::findOrFail($id); + // Hapus data dari database + $kriteria->delete(); + + return redirect()->route('admin.kriteria.index')->with('success', 'Data Kriteria berhasil dihapus!'); + } +} diff --git a/app/Http/Controllers/Admin/ForgotPasswordController.php b/app/Http/Controllers/Admin/ForgotPasswordController.php new file mode 100644 index 0000000..bb8d95c --- /dev/null +++ b/app/Http/Controllers/Admin/ForgotPasswordController.php @@ -0,0 +1,32 @@ +validate(['email' => 'required|email']); + + // Kirim link reset password ke email yang dimasukkan + $status = Password::sendResetLink( + $request->only('email') + ); + + // Jika berhasil mengirim link, tampilkan pesan status + // Jika gagal, kembalikan dengan pesan error pada field email + return $status === Password::RESET_LINK_SENT + ? back()->with('status', __($status)) //sukses + : back()->withErrors(['email' => __($status)]); //gagal + } +} diff --git a/app/Http/Controllers/Admin/PenilaianController.php b/app/Http/Controllers/Admin/PenilaianController.php new file mode 100644 index 0000000..503df8b --- /dev/null +++ b/app/Http/Controllers/Admin/PenilaianController.php @@ -0,0 +1,93 @@ +input('perPage', 10); // Jumlah data per halaman + $search = $request->input('search'); // Keyword pencaria + + $query = DataAlternatif::with(['penilaian.subkriteria']); // Relasi eager loading + + if ($search) { + // Jika terdapat pencarian, filter berdasarkan nama alternatif atau nama subkriteria + $query->where(function ($q) use ($search) { + $q->where('nama_alternatif', 'like', "%{$search}%") + ->orWhereHas('penilaian.subkriteria', function ($sub) use ($search) { + $sub->where('nama_subkriteria', 'like', "%{$search}%"); + }); + }); + } + + // Ambil data dengan pagination dan simpan parameter query kecuali halaman + $data = $query->paginate($perPage)->appends($request->except('page')); + + // Ambil semua data kriteria untuk ditampilkan + $kriteria = Kriteria::all(); + + return view('admin.pages.penilaian.index', compact('data', 'perPage', 'kriteria', 'search')); + } + + // Menampilkan form edit penilaian + public function edit($id) + { + $alternatif = DataAlternatif::findOrFail($id); // Ambil data alternatif berdasarkan ID + $penilaians = Penilaian::where('alternatif_id', $id)->get(); // Ambil data penilaian yang terkait + $kriteria = Kriteria::all(); // Ambil seluruh kriteria + + $nilai = []; // Menyimpan ID subkriteria per kriteria untuk ditampilkan di form + foreach ($penilaians as $penilaian) { + $nilai[$penilaian->kriteria_id] = $penilaian->subkriteria_id; + } + + return view('admin.pages.penilaian.edit', compact('alternatif', 'kriteria', 'nilai')); + } + + // Memperbarui data penilaian + public function update(Request $request, $id) + { + $alternatif = DataAlternatif::findOrFail($id); // Pastikan data alternatif ada + + // Validasi input + $request->validate([ + 'subkriteria_1' => 'required|numeric', + 'subkriteria_2' => 'required|numeric', + 'subkriteria_3' => 'required|numeric', + 'subkriteria_4' => 'required|numeric', + 'subkriteria_5' => 'required|numeric', + 'subkriteria_6' => 'required|numeric', + ]); + + // Lakukan update atau insert data penilaian untuk masing-masing kriteria + foreach (range(1, 6) as $i) { + $subkriteriaId = $request->input("subkriteria_$i"); // Ambil input subkriteria + $subkriteria = Subkriteria::find($subkriteriaId); // Cari data subkriteria + + if ($subkriteria) { + Penilaian::updateOrCreate( + [ + 'alternatif_id' => $alternatif->id, // Berdasarkan alternatif dan kriteria + 'kriteria_id' => $i, + ], + [ + 'subkriteria_id' => $subkriteria->id, // Simpan subkriteria yang dipilih + 'nilai' => $subkriteria->nilai, // Ambil nilai dari subkriteria + ] + ); + } + } + + return redirect()->route('admin.penilaian.index')->with('success', 'Penilaian berhasil diperbarui!'); + } +} diff --git a/app/Http/Controllers/Admin/PerhitunganController.php b/app/Http/Controllers/Admin/PerhitunganController.php new file mode 100644 index 0000000..d077fda --- /dev/null +++ b/app/Http/Controllers/Admin/PerhitunganController.php @@ -0,0 +1,103 @@ +showJenisPakaian('Dress'); } + public function blouse() { return $this->showJenisPakaian('Blouse'); } + public function cardigan() { return $this->showJenisPakaian('Cardigan'); } + public function rok() { return $this->showJenisPakaian('Rok'); } + public function celana() { return $this->showJenisPakaian('Celana'); } + + // Method umum untuk menampilkan data berdasarkan jenis pakaian + public function showJenisPakaian($jenis) + { + // Ambil data alternatif yang memiliki penilaian pada kriteria ke-3 (jenis pakaian), + // dan nilai subkriteria-nya sesuai dengan jenis yang dipilih (misalnya 'Dress') + $alternatif = DataAlternatif::with(['penilaian.subkriteria']) + ->whereHas('penilaian', function($query) use ($jenis) { + $query->where('kriteria_id', 3) + ->whereHas('subkriteria', function($subquery) use ($jenis) { + $subquery->where('nama_subkriteria', $jenis); + }); + }) + ->get(); + + // Ambil semua data kriteria + $kriteria = Kriteria::all(); + + // Hitung nilai maksimum dan minimum untuk tiap kriteria + $maxNilai = []; + $minNilai = []; + + foreach ($kriteria as $index => $k) { + $nilaiKriteria = []; + + foreach ($alternatif as $alt) { + $penilaian = $alt->penilaian->firstWhere('kriteria_id', $k->id); + if ($penilaian && $penilaian->subkriteria) { + $nilaiKriteria[] = $penilaian->subkriteria->nilai; + } + } + + $kode = 'C' . ($index + 1); + $maxNilai[$kode] = count($nilaiKriteria) > 0 ? max($nilaiKriteria) : 1; + $minNilai[$kode] = count($nilaiKriteria) > 0 ? min($nilaiKriteria) : 1; + } + + $normalisasi = []; + $pembobotan = []; + + foreach ($alternatif as $alt) { + $barisNormal = []; + $barisBobot = []; + + foreach ($kriteria as $index => $k) { + $penilaian = $alt->penilaian->firstWhere('kriteria_id', $k->id); + $nilai = $penilaian && $penilaian->subkriteria ? $penilaian->subkriteria->nilai : 0; + + $kode = 'C' . ($index + 1); + + if ($k->jenis == 'Cost') { + $normal = $nilai > 0 ? $minNilai[$kode] / $nilai : 0; + } else { + $normal = $maxNilai[$kode] > 0 ? $nilai / $maxNilai[$kode] : 0; + } + + $normalRounded = round($normal, 3); + $bobot = round($normalRounded * $k->bobot, 3); + + $barisNormal[$kode] = $normalRounded; + $barisBobot[$kode] = $bobot; + } + + $normalisasi[] = [ + 'nama' => $alt->nama_alternatif, + 'nilai' => $barisNormal + ]; + + $pembobotan[] = [ + 'nama' => $alt->nama_alternatif, + 'nilai' => $barisBobot + ]; + } + + $viewName = strtolower($jenis); + return view("admin.pages.perhitungan.$viewName", compact( + 'alternatif', + 'kriteria', + 'jenis', + 'normalisasi', + 'pembobotan' + )); + } +} diff --git a/app/Http/Controllers/Admin/ResetPasswordController.php b/app/Http/Controllers/Admin/ResetPasswordController.php new file mode 100644 index 0000000..d7cef7c --- /dev/null +++ b/app/Http/Controllers/Admin/ResetPasswordController.php @@ -0,0 +1,57 @@ + $token, + 'email' => $request->email + ]); + } + + public function reset(Request $request) + { + // Validasi input user + $request->validate([ + 'token' => 'required', + 'email' => 'required|email', + 'password' => 'required|min:8|confirmed', + ]); + + // Logging request untuk debugging (hindari menyimpan password di log dalam produksi) + Log::info('Reset Password Request:', $request->only('email', 'password', 'password_confirmation', 'token')); // Ganti \Log menjadi Log + + // Melakukan proses reset password menggunakan Laravel bawaan + $status = Password::reset( + $request->only('email', 'password', 'password_confirmation', 'token'), + function ($user, $password) { + // Jika berhasil, set password baru dan generate ulang remember_token + $user->forceFill([ + 'password' => Hash::make($password), + 'remember_token' => Str::random(60), + ])->save(); + } + ); + + // Logging status hasil reset + Log::info('Password Reset Status:', ['status' => $status]); // Ganti \Log menjadi Log + + // Jika berhasil reset, redirect ke halaman login dengan pesan sukses + if ($status === Password::PASSWORD_RESET) { + return redirect('/login')->with('status', 'Password berhasil direset. Silakan login.'); + } else { + // Jika gagal, kembalikan ke halaman sebelumnya dengan error message + return back()->withErrors(['email' => [__($status)]]); + } + } +} diff --git a/app/Http/Controllers/Admin/RiwayatController.php b/app/Http/Controllers/Admin/RiwayatController.php new file mode 100644 index 0000000..b7c72a9 --- /dev/null +++ b/app/Http/Controllers/Admin/RiwayatController.php @@ -0,0 +1,35 @@ +get('per_page', 5); // Ambil dari query string, default 10 + $riwayat = QuizHistory::orderBy('created_at', 'desc') + ->paginate($perPage) + ->withQueryString(); // penting agar per_page tetap ada saat klik pagination + + return view('admin.pages.riwayat.index', compact('riwayat')); + } + + public function destroy($id) + { + try { + $riwayat = QuizHistory::findOrFail($id); + $riwayat->delete(); + + return redirect()->back()->with('success', 'Riwayat berhasil dihapus.'); + } catch (\Exception $e) { + return redirect()->back()->with('error', 'Gagal menghapus riwayat.'); + } + } + +} diff --git a/app/Http/Controllers/Admin/SubKriteriaController.php b/app/Http/Controllers/Admin/SubKriteriaController.php new file mode 100644 index 0000000..abc323d --- /dev/null +++ b/app/Http/Controllers/Admin/SubKriteriaController.php @@ -0,0 +1,118 @@ +get(); // Periksa kolom yang digunakan + + // Kirim data ke view + return view('admin.pages.subkriteria.dynamic', compact('kriteria', 'subkriterias')); + } + + // Menampilkan form untuk membuat subkriteria + public function create($id) + { + // Ambil data kriteria berdasarkan ID + $kriteria = Kriteria::findOrFail($id); + + // Kirim data ke view + return view('admin.pages.subkriteria.create', compact('kriteria')); + } + + // Menyimpan data subkriteria baru + public function store(Request $request) + { + // Validasi input + $validated = $request->validate([ + 'kriteria_id' => 'required|exists:datakriteria,id', + 'name' => 'required|string|max:255', + 'nilai' => 'required|numeric|min:0.01', + ], [ + 'nilai.min' => 'Nilai tidak boleh 0.', + ]); + + // Simpan data subkriteria + SubKriteria::create([ + 'kriteria_id' => $validated['kriteria_id'], + 'nama_subkriteria' => $validated['name'], + 'nilai' => $validated['nilai'], + ]); + + // Redirect kembali ke halaman subkriteria berdasarkan kriteria_id + return redirect()->route('admin.pages.subkriteria.kriteria', ['id' => $validated['kriteria_id']]) + ->with('success', 'Subkriteria berhasil ditambahkan.'); + } + + public function edit($id) + { + // Ambil data subkriteria berdasarkan subkriteria_id + $subkriteria = SubKriteria::find($id); + + if (!$subkriteria) { + return redirect()->back()->with('error', 'Subkriteria tidak ditemukan.'); + } + + // Ambil data kriteria terkait + $kriteria = Kriteria::findOrFail($subkriteria->kriteria_id); + + // Kirim data ke view + return view('admin.pages.subkriteria.edit', compact('subkriteria', 'kriteria')); + } + + public function update(Request $request, $id) + { + // Validasi input + $validated = $request->validate([ + 'kriteria_id' => 'required|exists:datakriteria,id', + 'name' => 'required|string|max:255', + 'nilai' => 'required|numeric|min:0.01', + ], [ + 'nilai.min' => 'Nilai tidak boleh 0.', + ]); + + // Ambil data subkriteria berdasarkan ID + $subkriteria = SubKriteria::findOrFail($id); // Pastikan menggunakan subkriteria_id jika diperlukan + + // Update data subkriteria + $subkriteria->update([ + 'kriteria_id' => $validated['kriteria_id'], + 'nama_subkriteria' => $validated['name'], + 'nilai' => $validated['nilai'], + ]); + + // Redirect kembali ke halaman subkriteria berdasarkan kriteria_id + return redirect()->route('admin.pages.subkriteria.kriteria', ['id' => $validated['kriteria_id']]) + ->with('success', 'Subkriteria berhasil diperbarui.'); + } + + public function destroy($id) + { + // Cari subkriteria berdasarkan ID + $subkriteria = SubKriteria::find($id); + + // Jika tidak ditemukan, redirect balik dengan pesan error + if (!$subkriteria) { + return redirect()->back()->with('error', 'Subkriteria tidak ditemukan.'); + } + + // Hapus subkriteria + $subkriteria->delete(); + + // Redirect kembali dengan pesan sukses + return redirect()->back()->with('success', 'Subkriteria berhasil dihapus.'); + } + +} diff --git a/app/Http/Controllers/Admin/UserController.php b/app/Http/Controllers/Admin/UserController.php new file mode 100644 index 0000000..e0a80f9 --- /dev/null +++ b/app/Http/Controllers/Admin/UserController.php @@ -0,0 +1,56 @@ +validate([ + 'name' => 'required|string|max:255', + 'email' => 'required|email|unique:users,email,' . $id, + 'username' => 'required|string|unique:users,username,' . $id, + 'password' => 'nullable|string|min:6|confirmed', // validasi password + konfirmasi + ]); + + // Ambil data yang akan diperbarui + $data = $request->only(['name', 'email', 'username']); + + // Jika password diisi, enkripsi dan tambahkan ke data + if ($request->filled('password')) { + $data['password'] = Hash::make($request->password); + } + + // Update data user di database + $user->update($data); + + return redirect()->route('user.show', $user->id)->with('success', 'User berhasil diperbarui'); + } + +} diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php new file mode 100644 index 0000000..77ec359 --- /dev/null +++ b/app/Http/Controllers/Controller.php @@ -0,0 +1,12 @@ +get(); + + return view('landingpage.home', [ + 'skorAkhir' => $this->getSkorAkhirByJenis('Dress'), + 'blouseSkorAkhir' => $this->getSkorAkhirByJenis('Blouse'), + 'cardiganSkorAkhir' => $this->getSkorAkhirByJenis('Cardigan'), + 'rokSkorAkhir' => $this->getSkorAkhirByJenis('Rok'), + 'celanaSkorAkhir' => $this->getSkorAkhirByJenis('Celana'), + 'kriteria' => $kriteria + ]); + } + + public function dress() { return $this->showJenisPakaian('Dress'); } + public function blouse() { return $this->showJenisPakaian('Blouse'); } + public function cardigan() { return $this->showJenisPakaian('Cardigan'); } + public function rok() { return $this->showJenisPakaian('Rok'); } + public function celana() { return $this->showJenisPakaian('Celana'); } + + private function showJenisPakaian($jenis, $preferensi = []) + { + $skorAkhir = $this->getSkorAkhirByJenis($jenis, $preferensi); + $alternatif = DataAlternatif::whereHas('penilaian.subkriteria', fn($q) => $q->where('nama_subkriteria', $jenis))->get(); + $kriteria = Kriteria::with('subkriteria')->get(); + + return view('landingpage.rekomendasi', compact('alternatif', 'kriteria', 'jenis', 'skorAkhir', 'preferensi')); + } + + private function getSkorAkhirByJenis($jenis, $preferensi = []) + { + $alternatif = DataAlternatif::with(['penilaian.subkriteria', 'penilaian.kriteria']) + ->whereHas('penilaian.subkriteria', function ($query) use ($jenis) { + $query->where('nama_subkriteria', $jenis); + }) + ->get(); + + $kriteria = Kriteria::with('subkriteria')->get(); + $skorAkhir = []; + + foreach ($alternatif as $alt) { + $total = 0; + foreach ($kriteria as $k) { + $penilaian = $alt->penilaian->where('kriteria_id', $k->id)->first(); + if (!$penilaian) continue; + + $nilaiAlt = $penilaian->subkriteria->nilai; + $nilaiPref = $preferensi[$this->mapKriteriaKey($k->nama_kriteria)]['nilai'] ?? $nilaiAlt; + + $normalisasi = 1 - abs($nilaiAlt - $nilaiPref); + $total += $normalisasi * $k->bobot; + } + + $skorAkhir[] = [ + 'alternatif' => $alt, + 'skor' => round($total, 3), + ]; + } + + usort($skorAkhir, fn($a, $b) => $b['skor'] <=> $a['skor']); + + return $skorAkhir; + } + + private function mapKriteriaKey($nama) + { + $nama = strtolower($nama); + return match ($nama) { + 'harga', 'cost' => 'harga', + 'jenis pakaian' => 'jenis', + 'warna pakaian' => 'warna', + 'lokasi acara' => 'lokasi', + 'cuaca acara' => 'cuaca', + 'jenis acara' => 'acara', + default => str_replace(' ', '_', $nama), + }; + } + + public function simpankuisionerdanrekomendasi(Request $request) + { + try { + $validated = $request->validate([ + 'jenis_acara' => 'required|string', + 'harga' => 'required|string', + 'jenis_pakaian' => 'required|string', + 'warna' => 'required|string', + 'cuaca' => 'required|string', + 'lokasi' => 'required|string', + ]); + + // Kumpulkan preferensi untuk diproses + $jawaban = [ + 'jenis_acara' => $validated['jenis_acara'], + 'harga' => $validated['harga'], + 'warna' => $validated['warna'], + 'cuaca' => $validated['cuaca'], + 'lokasi' => $validated['lokasi'], + ]; + + $preferensi = $this->prosesPreferensiBerdasarkanSubkriteria($jawaban); + $skorAkhir = $this->getSkorAkhirByJenis($validated['jenis_pakaian'], $preferensi); + + // Simpan ke database + $quizHistory = new QuizHistory(); + $quizHistory->data_kuisioner = json_encode($jawaban); + $quizHistory->hasil_rekomendasi = json_encode($skorAkhir); + $quizHistory->save(); + + return $this->showJenisPakaian($validated['jenis_pakaian'], $preferensi); + + } catch (\Exception $e) { + Log::error('Error simpan kuis: ' . $e->getMessage()); + return back()->with('error', 'Terjadi kesalahan. Silakan coba lagi.'); + } + } + + private function prosesPreferensiBerdasarkanSubkriteria($jawaban) + { + $preferensi = []; + + foreach ($jawaban as $nama_kriteria => $nama_subkriteria) { + $kriteria = Kriteria::where('nama_kriteria', $nama_kriteria)->first(); + $subkriteria = Subkriteria::where('nama_subkriteria', $nama_subkriteria) + ->where('kriteria_id', $kriteria->id ?? null) + ->first(); + + if ($kriteria && $subkriteria) { + $key = $this->mapKriteriaKey($kriteria->nama_kriteria); + + $preferensi[$key] = [ + 'value' => $subkriteria->nama_subkriteria, + 'nilai' => $subkriteria->nilai, + 'bobot' => $kriteria->bobot + ]; + + if ($key === 'harga') { + $preferensi[$key]['range'] = $subkriteria->nama_subkriteria; + } + } + } + + return $preferensi; + } + + + // Menampilkan form kuis + public function showKuis($jenis = 'Dress') + { + $kriteria = Kriteria::with(['subkriteria' => function($query) { + $query->orderBy('nilai', 'desc'); + }])->get(); + + return view('landingpage.pilihpakaian', compact('kriteria', 'jenis')); + } +} diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php new file mode 100644 index 0000000..494c050 --- /dev/null +++ b/app/Http/Kernel.php @@ -0,0 +1,68 @@ + + */ + protected $middleware = [ + // \App\Http\Middleware\TrustHosts::class, + \App\Http\Middleware\TrustProxies::class, + \Illuminate\Http\Middleware\HandleCors::class, + \App\Http\Middleware\PreventRequestsDuringMaintenance::class, + \Illuminate\Foundation\Http\Middleware\ValidatePostSize::class, + \App\Http\Middleware\TrimStrings::class, + \Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class, + ]; + + /** + * The application's route middleware groups. + * + * @var array> + */ + protected $middlewareGroups = [ + 'web' => [ + \App\Http\Middleware\EncryptCookies::class, + \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, + \Illuminate\Session\Middleware\StartSession::class, + \Illuminate\View\Middleware\ShareErrorsFromSession::class, + \App\Http\Middleware\VerifyCsrfToken::class, + \Illuminate\Routing\Middleware\SubstituteBindings::class, + ], + + 'api' => [ + // \Laravel\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful::class, + \Illuminate\Routing\Middleware\ThrottleRequests::class.':api', + \Illuminate\Routing\Middleware\SubstituteBindings::class, + ], + ]; + + /** + * The application's middleware aliases. + * + * Aliases may be used instead of class names to conveniently assign middleware to routes and groups. + * + * @var array + */ + protected $middlewareAliases = [ + 'auth' => \App\Http\Middleware\Authenticate::class, + 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class, + 'auth.session' => \Illuminate\Session\Middleware\AuthenticateSession::class, + 'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class, + 'can' => \Illuminate\Auth\Middleware\Authorize::class, + 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, + 'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class, + 'precognitive' => \Illuminate\Foundation\Http\Middleware\HandlePrecognitiveRequests::class, + 'signed' => \App\Http\Middleware\ValidateSignature::class, + 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, + 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class, + ]; +} diff --git a/app/Http/Middleware/Authenticate.php b/app/Http/Middleware/Authenticate.php new file mode 100644 index 0000000..d4ef644 --- /dev/null +++ b/app/Http/Middleware/Authenticate.php @@ -0,0 +1,17 @@ +expectsJson() ? null : route('login'); + } +} diff --git a/app/Http/Middleware/EncryptCookies.php b/app/Http/Middleware/EncryptCookies.php new file mode 100644 index 0000000..867695b --- /dev/null +++ b/app/Http/Middleware/EncryptCookies.php @@ -0,0 +1,17 @@ + + */ + protected $except = [ + // + ]; +} diff --git a/app/Http/Middleware/PreventRequestsDuringMaintenance.php b/app/Http/Middleware/PreventRequestsDuringMaintenance.php new file mode 100644 index 0000000..74cbd9a --- /dev/null +++ b/app/Http/Middleware/PreventRequestsDuringMaintenance.php @@ -0,0 +1,17 @@ + + */ + protected $except = [ + // + ]; +} diff --git a/app/Http/Middleware/RedirectIfAuthenticated.php b/app/Http/Middleware/RedirectIfAuthenticated.php new file mode 100644 index 0000000..afc78c4 --- /dev/null +++ b/app/Http/Middleware/RedirectIfAuthenticated.php @@ -0,0 +1,30 @@ +check()) { + return redirect(RouteServiceProvider::HOME); + } + } + + return $next($request); + } +} diff --git a/app/Http/Middleware/TrimStrings.php b/app/Http/Middleware/TrimStrings.php new file mode 100644 index 0000000..88cadca --- /dev/null +++ b/app/Http/Middleware/TrimStrings.php @@ -0,0 +1,19 @@ + + */ + protected $except = [ + 'current_password', + 'password', + 'password_confirmation', + ]; +} diff --git a/app/Http/Middleware/TrustHosts.php b/app/Http/Middleware/TrustHosts.php new file mode 100644 index 0000000..c9c58bd --- /dev/null +++ b/app/Http/Middleware/TrustHosts.php @@ -0,0 +1,20 @@ + + */ + public function hosts(): array + { + return [ + $this->allSubdomainsOfApplicationUrl(), + ]; + } +} diff --git a/app/Http/Middleware/TrustProxies.php b/app/Http/Middleware/TrustProxies.php new file mode 100644 index 0000000..3391630 --- /dev/null +++ b/app/Http/Middleware/TrustProxies.php @@ -0,0 +1,28 @@ +|string|null + */ + protected $proxies; + + /** + * The headers that should be used to detect proxies. + * + * @var int + */ + protected $headers = + Request::HEADER_X_FORWARDED_FOR | + Request::HEADER_X_FORWARDED_HOST | + Request::HEADER_X_FORWARDED_PORT | + Request::HEADER_X_FORWARDED_PROTO | + Request::HEADER_X_FORWARDED_AWS_ELB; +} diff --git a/app/Http/Middleware/ValidateSignature.php b/app/Http/Middleware/ValidateSignature.php new file mode 100644 index 0000000..093bf64 --- /dev/null +++ b/app/Http/Middleware/ValidateSignature.php @@ -0,0 +1,22 @@ + + */ + protected $except = [ + // 'fbclid', + // 'utm_campaign', + // 'utm_content', + // 'utm_medium', + // 'utm_source', + // 'utm_term', + ]; +} diff --git a/app/Http/Middleware/VerifyCsrfToken.php b/app/Http/Middleware/VerifyCsrfToken.php new file mode 100644 index 0000000..9e86521 --- /dev/null +++ b/app/Http/Middleware/VerifyCsrfToken.php @@ -0,0 +1,17 @@ + + */ + protected $except = [ + // + ]; +} diff --git a/app/Models/DataAlternatif.php b/app/Models/DataAlternatif.php new file mode 100644 index 0000000..2c6908c --- /dev/null +++ b/app/Models/DataAlternatif.php @@ -0,0 +1,29 @@ +hasMany(Penilaian::class, 'alternatif_id'); + } + + public function subkriteria() + { + return $this->belongsTo(Subkriteria::class, 'subkriteria_id'); + } + + public function nilai() + { + return $this->hasMany(Penilaian::class, 'alternatif_id', 'id'); + } + +} diff --git a/app/Models/Kriteria.php b/app/Models/Kriteria.php new file mode 100644 index 0000000..b561caf --- /dev/null +++ b/app/Models/Kriteria.php @@ -0,0 +1,25 @@ +hasMany(Subkriteria::class, 'kriteria_id'); // Pastikan foreign key sesuai dengan tabel subkriteria + } + + public function penilaian() + { + return $this->hasMany(Penilaian::class, 'kriteria_id'); + } + +} diff --git a/app/Models/NilaiAlternatif.php b/app/Models/NilaiAlternatif.php new file mode 100644 index 0000000..1d56261 --- /dev/null +++ b/app/Models/NilaiAlternatif.php @@ -0,0 +1,30 @@ +belongsTo(DataAlternatif::class, 'alternatif_id'); + } + + public function kriteria() + { + return $this->belongsTo(Kriteria::class, 'kriteria_id'); + } + + public function nilai() + { + return $this->hasMany(Penilaian::class, 'alternatif_id'); // Hubungkan ke Penilaian + } +} diff --git a/app/Models/Pakaian.php b/app/Models/Pakaian.php new file mode 100644 index 0000000..0101229 --- /dev/null +++ b/app/Models/Pakaian.php @@ -0,0 +1,24 @@ + 'array', // Pastikan nilai disimpan sebagai array dalam database + ]; + + public function alternatif() + { + return $this->belongsTo(DataAlternatif::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/QuizHistory.php b/app/Models/QuizHistory.php new file mode 100644 index 0000000..ee1839d --- /dev/null +++ b/app/Models/QuizHistory.php @@ -0,0 +1,23 @@ + 'array', + 'hasil_rekomendasi' => 'array', + ]; +} diff --git a/app/Models/Subkriteria.php b/app/Models/Subkriteria.php new file mode 100644 index 0000000..76db3e0 --- /dev/null +++ b/app/Models/Subkriteria.php @@ -0,0 +1,30 @@ +belongsTo(Kriteria::class, 'kriteria_id'); + } + + public function penilaian() + { + return $this->hasMany(Penilaian::class, 'subkriteria_id'); + } + + public function dataAlternatif() + { + return $this->hasMany(DataAlternatif::class, 'subkriteria_id'); + } +} diff --git a/app/Models/User.php b/app/Models/User.php new file mode 100644 index 0000000..2318164 --- /dev/null +++ b/app/Models/User.php @@ -0,0 +1,44 @@ + + */ + protected $fillable = [ + 'name', + 'username', // Ganti 'email' jadi 'username' + 'email', + 'password', + ]; + + /** + * The attributes that should be hidden for serialization. + * + * @var array + */ + protected $hidden = [ + 'password', + 'remember_token', + ]; + + /** + * The attributes that should be cast. + * + * @var array + */ + protected $casts = [ + 'password' => 'hashed', + ]; +} diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php new file mode 100644 index 0000000..b62b8d0 --- /dev/null +++ b/app/Providers/AppServiceProvider.php @@ -0,0 +1,28 @@ +composer('*', function ($view) { + $view->with('semua_kriteria', Kriteria::all()); + }); + } +} diff --git a/app/Providers/AuthServiceProvider.php b/app/Providers/AuthServiceProvider.php new file mode 100644 index 0000000..54756cd --- /dev/null +++ b/app/Providers/AuthServiceProvider.php @@ -0,0 +1,26 @@ + + */ + protected $policies = [ + // + ]; + + /** + * Register any authentication / authorization services. + */ + public function boot(): void + { + // + } +} diff --git a/app/Providers/BroadcastServiceProvider.php b/app/Providers/BroadcastServiceProvider.php new file mode 100644 index 0000000..2be04f5 --- /dev/null +++ b/app/Providers/BroadcastServiceProvider.php @@ -0,0 +1,19 @@ +> + */ + protected $listen = [ + Registered::class => [ + SendEmailVerificationNotification::class, + ], + ]; + + /** + * Register any events for your application. + */ + public function boot(): void + { + // + } + + /** + * Determine if events and listeners should be automatically discovered. + */ + public function shouldDiscoverEvents(): bool + { + return false; + } +} diff --git a/app/Providers/RouteServiceProvider.php b/app/Providers/RouteServiceProvider.php new file mode 100644 index 0000000..1cf5f15 --- /dev/null +++ b/app/Providers/RouteServiceProvider.php @@ -0,0 +1,40 @@ +by($request->user()?->id ?: $request->ip()); + }); + + $this->routes(function () { + Route::middleware('api') + ->prefix('api') + ->group(base_path('routes/api.php')); + + Route::middleware('web') + ->group(base_path('routes/web.php')); + }); + } +} diff --git a/artisan b/artisan new file mode 100644 index 0000000..67a3329 --- /dev/null +++ b/artisan @@ -0,0 +1,53 @@ +#!/usr/bin/env php +make(Illuminate\Contracts\Console\Kernel::class); + +$status = $kernel->handle( + $input = new Symfony\Component\Console\Input\ArgvInput, + new Symfony\Component\Console\Output\ConsoleOutput +); + +/* +|-------------------------------------------------------------------------- +| Shutdown The Application +|-------------------------------------------------------------------------- +| +| Once Artisan has finished running, we will fire off the shutdown events +| so that any final work may be done by the application before we shut +| down the process. This is the last thing to happen to the request. +| +*/ + +$kernel->terminate($input, $status); + +exit($status); diff --git a/bootstrap/app.php b/bootstrap/app.php new file mode 100644 index 0000000..037e17d --- /dev/null +++ b/bootstrap/app.php @@ -0,0 +1,55 @@ +singleton( + Illuminate\Contracts\Http\Kernel::class, + App\Http\Kernel::class +); + +$app->singleton( + Illuminate\Contracts\Console\Kernel::class, + App\Console\Kernel::class +); + +$app->singleton( + Illuminate\Contracts\Debug\ExceptionHandler::class, + App\Exceptions\Handler::class +); + +/* +|-------------------------------------------------------------------------- +| Return The Application +|-------------------------------------------------------------------------- +| +| This script returns the application instance. The instance is given to +| the calling script so we can separate the building of the instances +| from the actual running of the application and sending responses. +| +*/ + +return $app; 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/composer.json b/composer.json new file mode 100644 index 0000000..d33723b --- /dev/null +++ b/composer.json @@ -0,0 +1,67 @@ +{ + "name": "laravel/laravel", + "type": "project", + "description": "The skeleton application for the Laravel framework.", + "keywords": ["laravel", "framework"], + "license": "MIT", + "require": { + "php": "^8.1", + "barryvdh/laravel-dompdf": "^3.1", + "guzzlehttp/guzzle": "^7.2", + "laravel/framework": "^10.10", + "laravel/sanctum": "^3.3", + "laravel/tinker": "^2.8" + }, + "require-dev": { + "fakerphp/faker": "^1.9.1", + "laravel/pint": "^1.0", + "laravel/sail": "^1.18", + "mockery/mockery": "^1.4.4", + "nunomaduro/collision": "^7.0", + "phpunit/phpunit": "^10.1", + "spatie/laravel-ignition": "^2.0" + }, + "autoload": { + "psr-4": { + "App\\": "app/", + "Database\\Factories\\": "database/factories/", + "Database\\Seeders\\": "database/seeders/" + } + }, + "autoload-dev": { + "psr-4": { + "Tests\\": "tests/" + } + }, + "scripts": { + "post-autoload-dump": [ + "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", + "@php artisan package:discover --ansi" + ], + "post-update-cmd": [ + "@php artisan vendor:publish --tag=laravel-assets --ansi --force" + ], + "post-root-package-install": [ + "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" + ], + "post-create-project-cmd": [ + "@php artisan key:generate --ansi" + ] + }, + "extra": { + "laravel": { + "dont-discover": [] + } + }, + "config": { + "optimize-autoloader": true, + "preferred-install": "dist", + "sort-packages": true, + "allow-plugins": { + "pestphp/pest-plugin": true, + "php-http/discovery": true + } + }, + "minimum-stability": "stable", + "prefer-stable": true +} diff --git a/composer.lock b/composer.lock new file mode 100644 index 0000000..9d3c240 --- /dev/null +++ b/composer.lock @@ -0,0 +1,8501 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "50a9cf43c3c522104b200bfdbe2e0e54", + "packages": [ + { + "name": "barryvdh/laravel-dompdf", + "version": "v3.1.1", + "source": { + "type": "git", + "url": "https://github.com/barryvdh/laravel-dompdf.git", + "reference": "8e71b99fc53bb8eb77f316c3c452dd74ab7cb25d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/8e71b99fc53bb8eb77f316c3c452dd74ab7cb25d", + "reference": "8e71b99fc53bb8eb77f316c3c452dd74ab7cb25d", + "shasum": "" + }, + "require": { + "dompdf/dompdf": "^3.0", + "illuminate/support": "^9|^10|^11|^12", + "php": "^8.1" + }, + "require-dev": { + "larastan/larastan": "^2.7|^3.0", + "orchestra/testbench": "^7|^8|^9|^10", + "phpro/grumphp": "^2.5", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "extra": { + "laravel": { + "aliases": { + "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf", + "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf" + }, + "providers": [ + "Barryvdh\\DomPDF\\ServiceProvider" + ] + }, + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "psr-4": { + "Barryvdh\\DomPDF\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Barry vd. Heuvel", + "email": "barryvdh@gmail.com" + } + ], + "description": "A DOMPDF Wrapper for Laravel", + "keywords": [ + "dompdf", + "laravel", + "pdf" + ], + "support": { + "issues": "https://github.com/barryvdh/laravel-dompdf/issues", + "source": "https://github.com/barryvdh/laravel-dompdf/tree/v3.1.1" + }, + "funding": [ + { + "url": "https://fruitcake.nl", + "type": "custom" + }, + { + "url": "https://github.com/barryvdh", + "type": "github" + } + ], + "time": "2025-02-13T15:07:54+00:00" + }, + { + "name": "brick/math", + "version": "0.12.1", + "source": { + "type": "git", + "url": "https://github.com/brick/math.git", + "reference": "f510c0a40911935b77b86859eb5223d58d660df1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1", + "reference": "f510c0a40911935b77b86859eb5223d58d660df1", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.2", + "phpunit/phpunit": "^10.1", + "vimeo/psalm": "5.16.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Brick\\Math\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Arbitrary-precision arithmetic library", + "keywords": [ + "Arbitrary-precision", + "BigInteger", + "BigRational", + "arithmetic", + "bigdecimal", + "bignum", + "bignumber", + "brick", + "decimal", + "integer", + "math", + "mathematics", + "rational" + ], + "support": { + "issues": "https://github.com/brick/math/issues", + "source": "https://github.com/brick/math/tree/0.12.1" + }, + "funding": [ + { + "url": "https://github.com/BenMorel", + "type": "github" + } + ], + "time": "2023-11-29T23:19:16+00:00" + }, + { + "name": "carbonphp/carbon-doctrine-types", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git", + "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb", + "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "conflict": { + "doctrine/dbal": "<3.7.0 || >=4.0.0" + }, + "require-dev": { + "doctrine/dbal": "^3.7.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/2.1.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": "2023-12-11T17:09:12+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": "dompdf/dompdf", + "version": "v3.1.0", + "source": { + "type": "git", + "url": "https://github.com/dompdf/dompdf.git", + "reference": "a51bd7a063a65499446919286fb18b518177155a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dompdf/dompdf/zipball/a51bd7a063a65499446919286fb18b518177155a", + "reference": "a51bd7a063a65499446919286fb18b518177155a", + "shasum": "" + }, + "require": { + "dompdf/php-font-lib": "^1.0.0", + "dompdf/php-svg-lib": "^1.0.0", + "ext-dom": "*", + "ext-mbstring": "*", + "masterminds/html5": "^2.0", + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "ext-gd": "*", + "ext-json": "*", + "ext-zip": "*", + "mockery/mockery": "^1.3", + "phpunit/phpunit": "^7.5 || ^8 || ^9 || ^10 || ^11", + "squizlabs/php_codesniffer": "^3.5", + "symfony/process": "^4.4 || ^5.4 || ^6.2 || ^7.0" + }, + "suggest": { + "ext-gd": "Needed to process images", + "ext-gmagick": "Improves image processing performance", + "ext-imagick": "Improves image processing performance", + "ext-zlib": "Needed for pdf stream compression" + }, + "type": "library", + "autoload": { + "psr-4": { + "Dompdf\\": "src/" + }, + "classmap": [ + "lib/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1" + ], + "authors": [ + { + "name": "The Dompdf Community", + "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md" + } + ], + "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter", + "homepage": "https://github.com/dompdf/dompdf", + "support": { + "issues": "https://github.com/dompdf/dompdf/issues", + "source": "https://github.com/dompdf/dompdf/tree/v3.1.0" + }, + "time": "2025-01-15T14:09:04+00:00" + }, + { + "name": "dompdf/php-font-lib", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/dompdf/php-font-lib.git", + "reference": "6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d", + "reference": "6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6" + }, + "type": "library", + "autoload": { + "psr-4": { + "FontLib\\": "src/FontLib" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1-or-later" + ], + "authors": [ + { + "name": "The FontLib Community", + "homepage": "https://github.com/dompdf/php-font-lib/blob/master/AUTHORS.md" + } + ], + "description": "A library to read, parse, export and make subsets of different types of font files.", + "homepage": "https://github.com/dompdf/php-font-lib", + "support": { + "issues": "https://github.com/dompdf/php-font-lib/issues", + "source": "https://github.com/dompdf/php-font-lib/tree/1.0.1" + }, + "time": "2024-12-02T14:37:59+00:00" + }, + { + "name": "dompdf/php-svg-lib", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/dompdf/php-svg-lib.git", + "reference": "eb045e518185298eb6ff8d80d0d0c6b17aecd9af" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/eb045e518185298eb6ff8d80d0d0c6b17aecd9af", + "reference": "eb045e518185298eb6ff8d80d0d0c6b17aecd9af", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": "^7.1 || ^8.0", + "sabberworm/php-css-parser": "^8.4" + }, + "require-dev": { + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Svg\\": "src/Svg" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-3.0-or-later" + ], + "authors": [ + { + "name": "The SvgLib Community", + "homepage": "https://github.com/dompdf/php-svg-lib/blob/master/AUTHORS.md" + } + ], + "description": "A library to read, parse and export to PDF SVG files.", + "homepage": "https://github.com/dompdf/php-svg-lib", + "support": { + "issues": "https://github.com/dompdf/php-svg-lib/issues", + "source": "https://github.com/dompdf/php-svg-lib/tree/1.0.0" + }, + "time": "2024-04-29T13:26:35+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": "v10.48.28", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "e714e7e0c1ae51bf747e3df5b10fa60c54e3e0e1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/e714e7e0c1ae51bf747e3df5b10fa60c54e3e0e1", + "reference": "e714e7e0c1ae51bf747e3df5b10fa60c54e3e0e1", + "shasum": "" + }, + "require": { + "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12", + "composer-runtime-api": "^2.2", + "doctrine/inflector": "^2.0.5", + "dragonmantank/cron-expression": "^3.3.2", + "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.2", + "guzzlehttp/uri-template": "^1.0", + "laravel/prompts": "^0.1.9", + "laravel/serializable-closure": "^1.3", + "league/commonmark": "^2.2.1", + "league/flysystem": "^3.8.0", + "monolog/monolog": "^3.0", + "nesbot/carbon": "^2.67", + "nunomaduro/termwind": "^1.13", + "php": "^8.1", + "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": "^6.2", + "symfony/error-handler": "^6.2", + "symfony/finder": "^6.2", + "symfony/http-foundation": "^6.4", + "symfony/http-kernel": "^6.2", + "symfony/mailer": "^6.2", + "symfony/mime": "^6.2", + "symfony/process": "^6.2", + "symfony/routing": "^6.2", + "symfony/uid": "^6.2", + "symfony/var-dumper": "^6.2", + "tijsverkoyen/css-to-inline-styles": "^2.2.5", + "vlucas/phpdotenv": "^5.4.1", + "voku/portable-ascii": "^2.0" + }, + "conflict": { + "carbonphp/carbon-doctrine-types": ">=3.0", + "doctrine/dbal": ">=4.0", + "mockery/mockery": "1.6.8", + "phpunit/phpunit": ">=11.0.0", + "tightenco/collect": "<5.5.33" + }, + "provide": { + "psr/container-implementation": "1.1|2.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/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" + }, + "require-dev": { + "ably/ably-php": "^1.0", + "aws/aws-sdk-php": "^3.235.5", + "doctrine/dbal": "^3.5.1", + "ext-gmp": "*", + "fakerphp/faker": "^1.21", + "guzzlehttp/guzzle": "^7.5", + "league/flysystem-aws-s3-v3": "^3.0", + "league/flysystem-ftp": "^3.0", + "league/flysystem-path-prefixing": "^3.3", + "league/flysystem-read-only": "^3.3", + "league/flysystem-sftp-v3": "^3.0", + "mockery/mockery": "^1.5.1", + "nyholm/psr7": "^1.2", + "orchestra/testbench-core": "^8.23.4", + "pda/pheanstalk": "^4.0", + "phpstan/phpstan": "~1.11.11", + "phpunit/phpunit": "^10.0.7", + "predis/predis": "^2.0.2", + "symfony/cache": "^6.2", + "symfony/http-client": "^6.2.4", + "symfony/psr-http-message-bridge": "^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.235.5).", + "brianium/paratest": "Required to run tests in parallel (^6.0).", + "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).", + "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).", + "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", + "filp/whoops": "Required for friendly error pages in development (^2.14.3).", + "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).", + "laravel/tinker": "Required to use the tinker console command (^2.0).", + "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).", + "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).", + "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).", + "league/flysystem-read-only": "Required to use read-only disks (^3.3)", + "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).", + "mockery/mockery": "Required to use mocking (^1.5.1).", + "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", + "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).", + "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8|^10.0.7).", + "predis/predis": "Required to use the predis connector (^2.0.2).", + "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", + "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).", + "symfony/cache": "Required to PSR-6 cache bridge (^6.2).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).", + "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.2).", + "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.2).", + "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.2).", + "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "10.x-dev" + } + }, + "autoload": { + "files": [ + "src/Illuminate/Collections/helpers.php", + "src/Illuminate/Events/functions.php", + "src/Illuminate/Filesystem/functions.php", + "src/Illuminate/Foundation/helpers.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-01-31T10:04:17+00:00" + }, + { + "name": "laravel/prompts", + "version": "v0.1.25", + "source": { + "type": "git", + "url": "https://github.com/laravel/prompts.git", + "reference": "7b4029a84c37cb2725fc7f011586e2997040bc95" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/prompts/zipball/7b4029a84c37cb2725fc7f011586e2997040bc95", + "reference": "7b4029a84c37cb2725fc7f011586e2997040bc95", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "illuminate/collections": "^10.0|^11.0", + "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": { + "mockery/mockery": "^1.5", + "pestphp/pest": "^2.3", + "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.1.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.1.25" + }, + "time": "2024-08-12T22:06:33+00:00" + }, + { + "name": "laravel/sanctum", + "version": "v3.3.3", + "source": { + "type": "git", + "url": "https://github.com/laravel/sanctum.git", + "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sanctum/zipball/8c104366459739f3ada0e994bcd3e6fd681ce3d5", + "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5", + "shasum": "" + }, + "require": { + "ext-json": "*", + "illuminate/console": "^9.21|^10.0", + "illuminate/contracts": "^9.21|^10.0", + "illuminate/database": "^9.21|^10.0", + "illuminate/support": "^9.21|^10.0", + "php": "^8.0.2" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "orchestra/testbench": "^7.28.2|^8.8.3", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.6" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Sanctum\\SanctumServiceProvider" + ] + }, + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\Sanctum\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.", + "keywords": [ + "auth", + "laravel", + "sanctum" + ], + "support": { + "issues": "https://github.com/laravel/sanctum/issues", + "source": "https://github.com/laravel/sanctum" + }, + "time": "2023-12-19T18:44:48+00:00" + }, + { + "name": "laravel/serializable-closure", + "version": "v1.3.7", + "source": { + "type": "git", + "url": "https://github.com/laravel/serializable-closure.git", + "reference": "4f48ade902b94323ca3be7646db16209ec76be3d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d", + "reference": "4f48ade902b94323ca3be7646db16209ec76be3d", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "illuminate/support": "^8.0|^9.0|^10.0|^11.0", + "nesbot/carbon": "^2.61|^3.0", + "pestphp/pest": "^1.21.3", + "phpstan/phpstan": "^1.8.2", + "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.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": "2024-11-14T18:34:49+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": "masterminds/html5", + "version": "2.9.0", + "source": { + "type": "git", + "url": "https://github.com/Masterminds/html5-php.git", + "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", + "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7-dev" + } + }, + "autoload": { + "psr-4": { + "Masterminds\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Matt Butcher", + "email": "technosophos@gmail.com" + }, + { + "name": "Matt Farina", + "email": "matt@mattfarina.com" + }, + { + "name": "Asmir Mustafic", + "email": "goetas@gmail.com" + } + ], + "description": "An HTML5 parser and serializer.", + "homepage": "http://masterminds.github.io/html5-php", + "keywords": [ + "HTML5", + "dom", + "html", + "parser", + "querypath", + "serializer", + "xml" + ], + "support": { + "issues": "https://github.com/Masterminds/html5-php/issues", + "source": "https://github.com/Masterminds/html5-php/tree/2.9.0" + }, + "time": "2024-03-31T07:05:07+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": "2.73.0", + "source": { + "type": "git", + "url": "https://github.com/CarbonPHP/carbon.git", + "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075", + "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075", + "shasum": "" + }, + "require": { + "carbonphp/carbon-doctrine-types": "*", + "ext-json": "*", + "php": "^7.1.8 || ^8.0", + "psr/clock": "^1.0", + "symfony/polyfill-mbstring": "^1.0", + "symfony/polyfill-php80": "^1.16", + "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "require-dev": { + "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0", + "doctrine/orm": "^2.7 || ^3.0", + "friendsofphp/php-cs-fixer": "^3.0", + "kylekatarnls/multi-tester": "^2.0", + "ondrejmirtes/better-reflection": "<6", + "phpmd/phpmd": "^2.9", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^0.12.99 || ^1.7.14", + "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6", + "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20", + "squizlabs/php_codesniffer": "^3.4" + }, + "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/briannesbitt/Carbon/issues", + "source": "https://github.com/briannesbitt/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-01-08T20:10:23+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": "v1.17.0", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/termwind.git", + "reference": "5369ef84d8142c1d87e4ec278711d4ece3cbf301" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/5369ef84d8142c1d87e4ec278711d4ece3cbf301", + "reference": "5369ef84d8142c1d87e4ec278711d4ece3cbf301", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": "^8.1", + "symfony/console": "^6.4.15" + }, + "require-dev": { + "illuminate/console": "^10.48.24", + "illuminate/support": "^10.48.24", + "laravel/pint": "^1.18.2", + "pestphp/pest": "^2.36.0", + "pestphp/pest-plugin-mock": "2.0.0", + "phpstan/phpstan": "^1.12.11", + "phpstan/phpstan-strict-rules": "^1.6.1", + "symfony/var-dumper": "^6.4.15", + "thecodingmachine/phpstan-strict-rules": "^1.0.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Termwind\\Laravel\\TermwindServiceProvider" + ] + } + }, + "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/v1.17.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:36:35+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.0.0", + "source": { + "type": "git", + "url": "https://github.com/ramsey/collection.git", + "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", + "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "captainhook/plugin-composer": "^5.3", + "ergebnis/composer-normalize": "^2.28.3", + "fakerphp/faker": "^1.21", + "hamcrest/hamcrest-php": "^2.0", + "jangregor/phpstan-prophecy": "^1.0", + "mockery/mockery": "^1.5", + "php-parallel-lint/php-console-highlighter": "^1.0", + "php-parallel-lint/php-parallel-lint": "^1.3", + "phpcsstandards/phpcsutils": "^1.0.0-rc1", + "phpspec/prophecy-phpunit": "^2.0", + "phpstan/extension-installer": "^1.2", + "phpstan/phpstan": "^1.9", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^9.5", + "psalm/plugin-mockery": "^1.1", + "psalm/plugin-phpunit": "^0.18.4", + "ramsey/coding-standard": "^2.0.3", + "ramsey/conventional-commits": "^1.3", + "vimeo/psalm": "^5.4" + }, + "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.0.0" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/collection", + "type": "tidelift" + } + ], + "time": "2022-12-31T21:50:55+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": "sabberworm/php-css-parser", + "version": "v8.8.0", + "source": { + "type": "git", + "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git", + "reference": "3de493bdddfd1f051249af725c7e0d2c38fed740" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/3de493bdddfd1f051249af725c7e0d2c38fed740", + "reference": "3de493bdddfd1f051249af725c7e0d2c38fed740", + "shasum": "" + }, + "require": { + "ext-iconv": "*", + "php": "^5.6.20 || ^7.0.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" + }, + "require-dev": { + "phpunit/phpunit": "5.7.27 || 6.5.14 || 7.5.20 || 8.5.41" + }, + "suggest": { + "ext-mbstring": "for parsing UTF-8 CSS" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "9.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Sabberworm\\CSS\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Raphael Schweikert" + }, + { + "name": "Oliver Klee", + "email": "github@oliverklee.de" + }, + { + "name": "Jake Hotson", + "email": "jake.github@qzdesign.co.uk" + } + ], + "description": "Parser for CSS Files written in PHP", + "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser", + "keywords": [ + "css", + "parser", + "stylesheet" + ], + "support": { + "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues", + "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v8.8.0" + }, + "time": "2025-03-23T17:59:05+00:00" + }, + { + "name": "symfony/console", + "version": "v6.4.17", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "799445db3f15768ecc382ac5699e6da0520a0a04" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/799445db3f15768ecc382ac5699e6da0520a0a04", + "reference": "799445db3f15768ecc382ac5699e6da0520a0a04", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^5.4|^6.0|^7.0" + }, + "conflict": { + "symfony/dependency-injection": "<5.4", + "symfony/dotenv": "<5.4", + "symfony/event-dispatcher": "<5.4", + "symfony/lock": "<5.4", + "symfony/process": "<5.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/lock": "^5.4|^6.0|^7.0", + "symfony/messenger": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/stopwatch": "^5.4|^6.0|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^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/v6.4.17" + }, + "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-07T12:07:30+00:00" + }, + { + "name": "symfony/css-selector", + "version": "v6.4.13", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/cb23e97813c5837a041b73a6d63a9ddff0778f5e", + "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "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/v6.4.13" + }, + "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:18:03+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": "v6.4.18", + "source": { + "type": "git", + "url": "https://github.com/symfony/error-handler.git", + "reference": "e8d3b5b1975e67812a54388b1ba8e9ec28eb770e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/e8d3b5b1975e67812a54388b1ba8e9ec28eb770e", + "reference": "e8d3b5b1975e67812a54388b1ba8e9ec28eb770e", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^1|^2|^3", + "symfony/var-dumper": "^5.4|^6.0|^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": "^5.4|^6.0|^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/v6.4.18" + }, + "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-06T09:38:16+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v6.4.13", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e", + "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/event-dispatcher-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/dependency-injection": "<5.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": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/error-handler": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^5.4|^6.0|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^5.4|^6.0|^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/v6.4.13" + }, + "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:18:03+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": "v6.4.17", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7", + "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "symfony/filesystem": "^6.0|^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/v6.4.17" + }, + "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-29T13:51:37+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v6.4.18", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "d0492d6217e5ab48f51fca76f64cf8e78919d0db" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d0492d6217e5ab48f51fca76f64cf8e78919d0db", + "reference": "d0492d6217e5ab48f51fca76f64cf8e78919d0db", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php83": "^1.27" + }, + "conflict": { + "symfony/cache": "<6.4.12|>=7.0,<7.1.5" + }, + "require-dev": { + "doctrine/dbal": "^2.13.1|^3|^4", + "predis/predis": "^1.1|^2.0", + "symfony/cache": "^6.4.12|^7.1.5", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0", + "symfony/mime": "^5.4|^6.0|^7.0", + "symfony/rate-limiter": "^5.4|^6.0|^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/v6.4.18" + }, + "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-09T15:48:56+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v6.4.18", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "fca7197bfe9e99dfae7fb1ad3f7f5bd9ef80e1b7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/fca7197bfe9e99dfae7fb1ad3f7f5bd9ef80e1b7", + "reference": "fca7197bfe9e99dfae7fb1ad3f7f5bd9ef80e1b7", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^1|^2|^3", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/error-handler": "^6.4|^7.0", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/browser-kit": "<5.4", + "symfony/cache": "<5.4", + "symfony/config": "<6.1", + "symfony/console": "<5.4", + "symfony/dependency-injection": "<6.4", + "symfony/doctrine-bridge": "<5.4", + "symfony/form": "<5.4", + "symfony/http-client": "<5.4", + "symfony/http-client-contracts": "<2.5", + "symfony/mailer": "<5.4", + "symfony/messenger": "<5.4", + "symfony/translation": "<5.4", + "symfony/translation-contracts": "<2.5", + "symfony/twig-bridge": "<5.4", + "symfony/validator": "<6.4", + "symfony/var-dumper": "<6.3", + "twig/twig": "<2.13" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^5.4|^6.0|^7.0", + "symfony/clock": "^6.2|^7.0", + "symfony/config": "^6.1|^7.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/css-selector": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/dom-crawler": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/finder": "^5.4|^6.0|^7.0", + "symfony/http-client-contracts": "^2.5|^3", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/property-access": "^5.4.5|^6.0.5|^7.0", + "symfony/routing": "^5.4|^6.0|^7.0", + "symfony/serializer": "^6.4.4|^7.0.4", + "symfony/stopwatch": "^5.4|^6.0|^7.0", + "symfony/translation": "^5.4|^6.0|^7.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/uid": "^5.4|^6.0|^7.0", + "symfony/validator": "^6.4|^7.0", + "symfony/var-dumper": "^5.4|^6.4|^7.0", + "symfony/var-exporter": "^6.2|^7.0", + "twig/twig": "^2.13|^3.0.4" + }, + "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/v6.4.18" + }, + "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-29T07:25:58+00:00" + }, + { + "name": "symfony/mailer", + "version": "v6.4.18", + "source": { + "type": "git", + "url": "https://github.com/symfony/mailer.git", + "reference": "e93a6ae2767d7f7578c2b7961d9d8e27580b2b11" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mailer/zipball/e93a6ae2767d7f7578c2b7961d9d8e27580b2b11", + "reference": "e93a6ae2767d7f7578c2b7961d9d8e27580b2b11", + "shasum": "" + }, + "require": { + "egulias/email-validator": "^2.1.10|^3|^4", + "php": ">=8.1", + "psr/event-dispatcher": "^1", + "psr/log": "^1|^2|^3", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/mime": "^6.2|^7.0", + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<5.4", + "symfony/messenger": "<6.2", + "symfony/mime": "<6.2", + "symfony/twig-bridge": "<6.2.1" + }, + "require-dev": { + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/http-client": "^5.4|^6.0|^7.0", + "symfony/messenger": "^6.2|^7.0", + "symfony/twig-bridge": "^6.2|^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/v6.4.18" + }, + "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-24T15:27:15+00:00" + }, + { + "name": "symfony/mime", + "version": "v6.4.18", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "917d77981eb1ea963608d5cda4d9c0cf72eaa68e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/917d77981eb1ea963608d5cda4d9c0cf72eaa68e", + "reference": "917d77981eb1ea963608d5cda4d9c0cf72eaa68e", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "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": "<5.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": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.4|^7.0", + "symfony/property-access": "^5.4|^6.0|^7.0", + "symfony/property-info": "^5.4|^6.0|^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/v6.4.18" + }, + "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-23T13:10:52+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": "v6.4.15", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "3cb242f059c14ae08591c5c4087d1fe443564392" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392", + "reference": "3cb242f059c14ae08591c5c4087d1fe443564392", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "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/v6.4.15" + }, + "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-06T14:19:14+00:00" + }, + { + "name": "symfony/routing", + "version": "v6.4.18", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "e9bfc94953019089acdfb9be51c1b9142c4afa68" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/e9bfc94953019089acdfb9be51c1b9142c4afa68", + "reference": "e9bfc94953019089acdfb9be51c1b9142c4afa68", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "doctrine/annotations": "<1.12", + "symfony/config": "<6.2", + "symfony/dependency-injection": "<5.4", + "symfony/yaml": "<5.4" + }, + "require-dev": { + "doctrine/annotations": "^1.12|^2", + "psr/log": "^1|^2|^3", + "symfony/config": "^6.2|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^5.4|^6.0|^7.0", + "symfony/yaml": "^5.4|^6.0|^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/v6.4.18" + }, + "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-09T08:51:02+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": "v6.4.15", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f", + "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "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/error-handler": "^5.4|^6.0|^7.0", + "symfony/http-client": "^5.4|^6.0|^7.0", + "symfony/intl": "^6.2|^7.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^5.4|^6.0|^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/v6.4.15" + }, + "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:12+00:00" + }, + { + "name": "symfony/translation", + "version": "v6.4.13", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66", + "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation-contracts": "^2.5|^3.0" + }, + "conflict": { + "symfony/config": "<5.4", + "symfony/console": "<5.4", + "symfony/dependency-injection": "<5.4", + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<5.4", + "symfony/service-contracts": "<2.5", + "symfony/twig-bundle": "<5.4", + "symfony/yaml": "<5.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": "^5.4|^6.0|^7.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/finder": "^5.4|^6.0|^7.0", + "symfony/http-client-contracts": "^2.5|^3.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/intl": "^5.4|^6.0|^7.0", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/routing": "^5.4|^6.0|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^5.4|^6.0|^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/v6.4.13" + }, + "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-27T18:14:25+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": "v6.4.13", + "source": { + "type": "git", + "url": "https://github.com/symfony/uid.git", + "reference": "18eb207f0436a993fffbdd811b5b8fa35fa5e007" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/uid/zipball/18eb207f0436a993fffbdd811b5b8fa35fa5e007", + "reference": "18eb207f0436a993fffbdd811b5b8fa35fa5e007", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/polyfill-uuid": "^1.15" + }, + "require-dev": { + "symfony/console": "^5.4|^6.0|^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/v6.4.13" + }, + "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:18:03+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v6.4.18", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "4ad10cf8b020e77ba665305bb7804389884b4837" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4ad10cf8b020e77ba665305bb7804389884b4837", + "reference": "4ad10cf8b020e77ba665305bb7804389884b4837", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/console": "<5.4" + }, + "require-dev": { + "ext-iconv": "*", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/error-handler": "^6.3|^7.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/uid": "^5.4|^6.0|^7.0", + "twig/twig": "^2.13|^3.0.4" + }, + "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/v6.4.18" + }, + "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:26:11+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": "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/pint", + "version": "v1.20.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/pint.git", + "reference": "53072e8ea22213a7ed168a8a15b96fbb8b82d44b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pint/zipball/53072e8ea22213a7ed168a8a15b96fbb8b82d44b", + "reference": "53072e8ea22213a7ed168a8a15b96fbb8b82d44b", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "php": "^8.1.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.66.0", + "illuminate/view": "^10.48.25", + "larastan/larastan": "^2.9.12", + "laravel-zero/framework": "^10.48.25", + "mockery/mockery": "^1.6.12", + "nunomaduro/termwind": "^1.17.0", + "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-01-14T16:20:53+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": "v7.11.0", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/collision.git", + "reference": "994ea93df5d4132f69d3f1bd74730509df6e8a05" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/994ea93df5d4132f69d3f1bd74730509df6e8a05", + "reference": "994ea93df5d4132f69d3f1bd74730509df6e8a05", + "shasum": "" + }, + "require": { + "filp/whoops": "^2.16.0", + "nunomaduro/termwind": "^1.15.1", + "php": "^8.1.0", + "symfony/console": "^6.4.12" + }, + "conflict": { + "laravel/framework": ">=11.0.0" + }, + "require-dev": { + "brianium/paratest": "^7.3.1", + "laravel/framework": "^10.48.22", + "laravel/pint": "^1.18.1", + "laravel/sail": "^1.36.0", + "laravel/sanctum": "^3.3.3", + "laravel/tinker": "^2.10.0", + "nunomaduro/larastan": "^2.9.8", + "orchestra/testbench-core": "^8.28.3", + "pestphp/pest": "^2.35.1", + "phpunit/phpunit": "^10.5.36", + "sebastian/environment": "^6.1.0", + "spatie/laravel-ignition": "^2.8.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" + ] + } + }, + "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", + "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": "2024-10-15T15:12: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": "phpunit/php-code-coverage", + "version": "10.1.16", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "7e308268858ed6baedc8704a304727d20bc07c77" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77", + "reference": "7e308268858ed6baedc8704a304727d20bc07c77", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^4.19.1 || ^5.1.0", + "php": ">=8.1", + "phpunit/php-file-iterator": "^4.1.0", + "phpunit/php-text-template": "^3.0.1", + "sebastian/code-unit-reverse-lookup": "^3.0.0", + "sebastian/complexity": "^3.2.0", + "sebastian/environment": "^6.1.0", + "sebastian/lines-of-code": "^2.0.2", + "sebastian/version": "^4.0.1", + "theseer/tokenizer": "^1.2.3" + }, + "require-dev": { + "phpunit/phpunit": "^10.1" + }, + "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": "10.1.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/10.1.16" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-08-22T04:31:57+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "4.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c", + "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.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": "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/4.1.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-08-31T06:24:48+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", + "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^10.0" + }, + "suggest": { + "ext-pcntl": "*" + }, + "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": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:56:09+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748", + "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.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": "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/3.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-08-31T14:07:24+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "6.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d", + "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.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", + "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", + "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:57:52+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "10.5.45", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "bd68a781d8e30348bc297449f5234b3458267ae8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bd68a781d8e30348bc297449f5234b3458267ae8", + "reference": "bd68a781d8e30348bc297449f5234b3458267ae8", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.12.1", + "phar-io/manifest": "^2.0.4", + "phar-io/version": "^3.2.1", + "php": ">=8.1", + "phpunit/php-code-coverage": "^10.1.16", + "phpunit/php-file-iterator": "^4.1.0", + "phpunit/php-invoker": "^4.0.0", + "phpunit/php-text-template": "^3.0.1", + "phpunit/php-timer": "^6.0.0", + "sebastian/cli-parser": "^2.0.1", + "sebastian/code-unit": "^2.0.0", + "sebastian/comparator": "^5.0.3", + "sebastian/diff": "^5.1.1", + "sebastian/environment": "^6.1.0", + "sebastian/exporter": "^5.1.2", + "sebastian/global-state": "^6.0.2", + "sebastian/object-enumerator": "^5.0.0", + "sebastian/recursion-context": "^5.0.0", + "sebastian/type": "^4.0.0", + "sebastian/version": "^4.0.1" + }, + "suggest": { + "ext-soap": "To be able to generate mocks based on WSDL files" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "10.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/10.5.45" + }, + "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-02-06T16:08:12+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084", + "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.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/2.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:12:49+00:00" + }, + { + "name": "sebastian/code-unit", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "a81fee9eef0b7a76af11d121767abc44c104e503" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503", + "reference": "a81fee9eef0b7a76af11d121767abc44c104e503", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.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", + "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:58:43+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", + "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.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" + } + ], + "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", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:59:15+00:00" + }, + { + "name": "sebastian/comparator", + "version": "5.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e", + "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.1", + "sebastian/diff": "^5.0", + "sebastian/exporter": "^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.5" + }, + "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" + }, + { + "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/5.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-10-18T14:56:07+00:00" + }, + { + "name": "sebastian/complexity", + "version": "3.2.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "68ff824baeae169ec9f2137158ee529584553799" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799", + "reference": "68ff824baeae169ec9f2137158ee529584553799", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.18 || ^5.0", + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.2-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/3.2.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-12-21T08:37:17+00:00" + }, + { + "name": "sebastian/diff", + "version": "5.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e", + "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0", + "symfony/process": "^6.4" + }, + "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" + }, + { + "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/5.1.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:15:17+00:00" + }, + { + "name": "sebastian/environment", + "version": "6.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "8074dbcd93529b357029f5cc5058fd3e43666984" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984", + "reference": "8074dbcd93529b357029f5cc5058fd3e43666984", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "suggest": { + "ext-posix": "*" + }, + "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" + } + ], + "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/6.1.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-23T08:47:14+00:00" + }, + { + "name": "sebastian/exporter", + "version": "5.1.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "955288482d97c19a372d3f31006ab3f37da47adf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf", + "reference": "955288482d97c19a372d3f31006ab3f37da47adf", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=8.1", + "sebastian/recursion-context": "^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "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" + }, + { + "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/5.1.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:17:12+00:00" + }, + { + "name": "sebastian/global-state", + "version": "6.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9", + "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "sebastian/object-reflector": "^3.0", + "sebastian/recursion-context": "^5.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^10.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": "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/6.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:19:19+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0", + "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.18 || ^5.0", + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.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/2.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-12-21T08:38:20+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906", + "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "sebastian/object-reflector": "^3.0", + "sebastian/recursion-context": "^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.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" + } + ], + "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", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:08:32+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "24ed13d98130f0e7122df55d06c5c4942a577957" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957", + "reference": "24ed13d98130f0e7122df55d06c5c4942a577957", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.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" + } + ], + "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", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:06:18+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "05909fb5bc7df4c52992396d0116aed689f93712" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712", + "reference": "05909fb5bc7df4c52992396d0116aed689f93712", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.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" + }, + { + "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", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:05:40+00:00" + }, + { + "name": "sebastian/type", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf", + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.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": "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", + "source": "https://github.com/sebastianbergmann/type/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:10:45+00:00" + }, + { + "name": "sebastian/version", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17", + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "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 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", + "source": "https://github.com/sebastianbergmann/version/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-07T11:34:05+00:00" + }, + { + "name": "spatie/backtrace", + "version": "1.7.1", + "source": { + "type": "git", + "url": "https://github.com/spatie/backtrace.git", + "reference": "0f2477c520e3729de58e061b8192f161c99f770b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/backtrace/zipball/0f2477c520e3729de58e061b8192f161c99f770b", + "reference": "0f2477c520e3729de58e061b8192f161c99f770b", + "shasum": "" + }, + "require": { + "php": "^7.3 || ^8.0" + }, + "require-dev": { + "ext-json": "*", + "laravel/serializable-closure": "^1.3 || ^2.0", + "phpunit/phpunit": "^9.3 || ^11.4.3", + "spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1.6", + "symfony/var-dumper": "^5.1 || ^6.0 || ^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\Backtrace\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van de Herten", + "email": "freek@spatie.be", + "homepage": "https://spatie.be", + "role": "Developer" + } + ], + "description": "A better backtrace", + "homepage": "https://github.com/spatie/backtrace", + "keywords": [ + "Backtrace", + "spatie" + ], + "support": { + "source": "https://github.com/spatie/backtrace/tree/1.7.1" + }, + "funding": [ + { + "url": "https://github.com/sponsors/spatie", + "type": "github" + }, + { + "url": "https://spatie.be/open-source/support-us", + "type": "other" + } + ], + "time": "2024-12-02T13:28:15+00:00" + }, + { + "name": "spatie/error-solutions", + "version": "1.1.2", + "source": { + "type": "git", + "url": "https://github.com/spatie/error-solutions.git", + "reference": "d239a65235a1eb128dfa0a4e4c4ef032ea11b541" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/error-solutions/zipball/d239a65235a1eb128dfa0a4e4c4ef032ea11b541", + "reference": "d239a65235a1eb128dfa0a4e4c4ef032ea11b541", + "shasum": "" + }, + "require": { + "php": "^8.0" + }, + "require-dev": { + "illuminate/broadcasting": "^10.0|^11.0", + "illuminate/cache": "^10.0|^11.0", + "illuminate/support": "^10.0|^11.0", + "livewire/livewire": "^2.11|^3.3.5", + "openai-php/client": "^0.10.1", + "orchestra/testbench": "^7.0|8.22.3|^9.0", + "pestphp/pest": "^2.20", + "phpstan/phpstan": "^1.11", + "psr/simple-cache": "^3.0", + "psr/simple-cache-implementation": "^3.0", + "spatie/ray": "^1.28", + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "simple-cache-implementation": "To cache solutions from OpenAI" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\Ignition\\": "legacy/ignition", + "Spatie\\ErrorSolutions\\": "src", + "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ruben Van Assche", + "email": "ruben@spatie.be", + "role": "Developer" + } + ], + "description": "This is my package error-solutions", + "homepage": "https://github.com/spatie/error-solutions", + "keywords": [ + "error-solutions", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/error-solutions/issues", + "source": "https://github.com/spatie/error-solutions/tree/1.1.2" + }, + "funding": [ + { + "url": "https://github.com/Spatie", + "type": "github" + } + ], + "time": "2024-12-11T09:51:56+00:00" + }, + { + "name": "spatie/flare-client-php", + "version": "1.10.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/flare-client-php.git", + "reference": "140a42b2c5d59ac4ecf8f5b493386a4f2eb28272" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/140a42b2c5d59ac4ecf8f5b493386a4f2eb28272", + "reference": "140a42b2c5d59ac4ecf8f5b493386a4f2eb28272", + "shasum": "" + }, + "require": { + "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0", + "php": "^8.0", + "spatie/backtrace": "^1.6.1", + "symfony/http-foundation": "^5.2|^6.0|^7.0", + "symfony/mime": "^5.2|^6.0|^7.0", + "symfony/process": "^5.2|^6.0|^7.0", + "symfony/var-dumper": "^5.2|^6.0|^7.0" + }, + "require-dev": { + "dms/phpunit-arraysubset-asserts": "^0.5.0", + "pestphp/pest": "^1.20|^2.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", + "spatie/pest-plugin-snapshots": "^1.0|^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.3.x-dev" + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Spatie\\FlareClient\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Send PHP errors to Flare", + "homepage": "https://github.com/spatie/flare-client-php", + "keywords": [ + "exception", + "flare", + "reporting", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/flare-client-php/issues", + "source": "https://github.com/spatie/flare-client-php/tree/1.10.0" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-12-02T14:30:06+00:00" + }, + { + "name": "spatie/ignition", + "version": "1.15.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/ignition.git", + "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/ignition/zipball/e3a68e137371e1eb9edc7f78ffa733f3b98991d2", + "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "php": "^8.0", + "spatie/error-solutions": "^1.0", + "spatie/flare-client-php": "^1.7", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0" + }, + "require-dev": { + "illuminate/cache": "^9.52|^10.0|^11.0", + "mockery/mockery": "^1.4", + "pestphp/pest": "^1.20|^2.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", + "psr/simple-cache-implementation": "*", + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "simple-cache-implementation": "To cache solutions from OpenAI" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.5.x-dev" + } + }, + "autoload": { + "psr-4": { + "Spatie\\Ignition\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Spatie", + "email": "info@spatie.be", + "role": "Developer" + } + ], + "description": "A beautiful error page for PHP applications.", + "homepage": "https://flareapp.io/ignition", + "keywords": [ + "error", + "flare", + "laravel", + "page" + ], + "support": { + "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", + "forum": "https://twitter.com/flareappio", + "issues": "https://github.com/spatie/ignition/issues", + "source": "https://github.com/spatie/ignition" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-06-12T14:55:22+00:00" + }, + { + "name": "spatie/laravel-ignition", + "version": "2.9.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/laravel-ignition.git", + "reference": "62042df15314b829d0f26e02108f559018e2aad0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/62042df15314b829d0f26e02108f559018e2aad0", + "reference": "62042df15314b829d0f26e02108f559018e2aad0", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "ext-json": "*", + "ext-mbstring": "*", + "illuminate/support": "^10.0|^11.0", + "php": "^8.1", + "spatie/ignition": "^1.15", + "symfony/console": "^6.2.3|^7.0", + "symfony/var-dumper": "^6.2.3|^7.0" + }, + "require-dev": { + "livewire/livewire": "^2.11|^3.3.5", + "mockery/mockery": "^1.5.1", + "openai-php/client": "^0.8.1", + "orchestra/testbench": "8.22.3|^9.0", + "pestphp/pest": "^2.34", + "phpstan/extension-installer": "^1.3.1", + "phpstan/phpstan-deprecation-rules": "^1.1.1", + "phpstan/phpstan-phpunit": "^1.3.16", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI" + }, + "type": "library", + "extra": { + "laravel": { + "aliases": { + "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare" + }, + "providers": [ + "Spatie\\LaravelIgnition\\IgnitionServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Spatie\\LaravelIgnition\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Spatie", + "email": "info@spatie.be", + "role": "Developer" + } + ], + "description": "A beautiful error page for Laravel applications.", + "homepage": "https://flareapp.io/ignition", + "keywords": [ + "error", + "flare", + "laravel", + "page" + ], + "support": { + "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", + "forum": "https://twitter.com/flareappio", + "issues": "https://github.com/spatie/laravel-ignition/issues", + "source": "https://github.com/spatie/laravel-ignition" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-12-02T08:43:31+00:00" + }, + { + "name": "symfony/yaml", + "version": "v6.4.18", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "bf598c9d9bb4a22f495a4e26e4c4fce2f8ecefc5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/bf598c9d9bb4a22f495a4e26e4c4fce2f8ecefc5", + "reference": "bf598c9d9bb4a22f495a4e26e4c4fce2f8ecefc5", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/console": "<5.4" + }, + "require-dev": { + "symfony/console": "^5.4|^6.0|^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/v6.4.18" + }, + "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-07T09:44:41+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.1" + }, + "platform-dev": [], + "plugin-api-version": "2.6.0" +} diff --git a/config/app.php b/config/app.php new file mode 100644 index 0000000..9207160 --- /dev/null +++ b/config/app.php @@ -0,0 +1,188 @@ + 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 + | your application so that it is used when running Artisan tasks. + | + */ + + 'url' => env('APP_URL', 'http://localhost'), + + 'asset_url' => env('ASSET_URL'), + + /* + |-------------------------------------------------------------------------- + | Application Timezone + |-------------------------------------------------------------------------- + | + | Here you may specify the default timezone for your application, which + | will be used by the PHP date and date-time functions. We have gone + | ahead and set this to a sensible default for you out of the box. + | + */ + + 'timezone' => 'UTC', + + /* + |-------------------------------------------------------------------------- + | Application Locale Configuration + |-------------------------------------------------------------------------- + | + | The application locale determines the default locale that will be used + | by the translation service provider. You are free to set this value + | to any of the locales which will be supported by the application. + | + */ + + 'locale' => 'en', + + /* + |-------------------------------------------------------------------------- + | Application Fallback Locale + |-------------------------------------------------------------------------- + | + | The fallback locale determines the locale to use when the current one + | is not available. You may change the value to correspond to any of + | the language folders that are provided through your application. + | + */ + + 'fallback_locale' => 'en', + + /* + |-------------------------------------------------------------------------- + | Faker Locale + |-------------------------------------------------------------------------- + | + | This locale will be used by the Faker PHP library when generating fake + | data for your database seeds. For example, this will be used to get + | localized telephone numbers, street address information and more. + | + */ + + 'faker_locale' => 'en_US', + + /* + |-------------------------------------------------------------------------- + | Encryption Key + |-------------------------------------------------------------------------- + | + | This key is used by the Illuminate encrypter service and should be set + | to a random, 32 character string, otherwise these encrypted strings + | will not be safe. Please do this before deploying an application! + | + */ + + 'key' => env('APP_KEY'), + + 'cipher' => 'AES-256-CBC', + + /* + |-------------------------------------------------------------------------- + | 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' => 'file', + // 'store' => 'redis', + ], + + /* + |-------------------------------------------------------------------------- + | Autoloaded Service Providers + |-------------------------------------------------------------------------- + | + | The service providers listed here will be automatically loaded on the + | request to your application. Feel free to add your own services to + | this array to grant expanded functionality to your applications. + | + */ + + 'providers' => ServiceProvider::defaultProviders()->merge([ + /* + * Package Service Providers... + */ + + /* + * Application Service Providers... + */ + App\Providers\AppServiceProvider::class, + App\Providers\AuthServiceProvider::class, + // App\Providers\BroadcastServiceProvider::class, + App\Providers\EventServiceProvider::class, + App\Providers\RouteServiceProvider::class, + ])->toArray(), + + /* + |-------------------------------------------------------------------------- + | Class Aliases + |-------------------------------------------------------------------------- + | + | This array of class aliases will be registered when this application + | is started. However, feel free to register as many as you wish as + | the aliases are "lazy" loaded so they don't hinder performance. + | + */ + + 'aliases' => Facade::defaultAliases()->merge([ + // 'Example' => App\Facades\Example::class, + ])->toArray(), + +]; diff --git a/config/auth.php b/config/auth.php new file mode 100644 index 0000000..9548c15 --- /dev/null +++ b/config/auth.php @@ -0,0 +1,115 @@ + [ + 'guard' => 'web', + 'passwords' => 'users', + ], + + /* + |-------------------------------------------------------------------------- + | Authentication Guards + |-------------------------------------------------------------------------- + | + | Next, you may define every authentication guard for your application. + | Of course, a great default configuration has been defined for you + | here which uses session storage and the Eloquent user provider. + | + | All authentication drivers have a user provider. This defines how the + | users are actually retrieved out of your database or other storage + | mechanisms used by this application to persist your user's data. + | + | Supported: "session" + | + */ + + 'guards' => [ + 'web' => [ + 'driver' => 'session', + 'provider' => 'users', + ], + ], + + /* + |-------------------------------------------------------------------------- + | User Providers + |-------------------------------------------------------------------------- + | + | All authentication drivers have a user provider. This defines how the + | users are actually retrieved out of your database or other storage + | mechanisms used by this application to persist your user's data. + | + | If you have multiple user tables or models you may configure multiple + | sources which represent each model / table. These sources may then + | be assigned to any extra authentication guards you have defined. + | + | Supported: "database", "eloquent" + | + */ + + 'providers' => [ + 'users' => [ + 'driver' => 'eloquent', + 'model' => App\Models\User::class, + ], + + // 'users' => [ + // 'driver' => 'database', + // 'table' => 'users', + // ], + ], + + /* + |-------------------------------------------------------------------------- + | Resetting Passwords + |-------------------------------------------------------------------------- + | + | You may specify multiple password reset configurations if you have more + | than one user table or model in the application and you want to have + | separate password reset settings based on the specific user types. + | + | 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' => 'password_reset_tokens', + 'expire' => 60, + 'throttle' => 60, + ], + ], + + /* + |-------------------------------------------------------------------------- + | Password Confirmation Timeout + |-------------------------------------------------------------------------- + | + | Here you may define the amount of seconds before a password confirmation + | times out and the user is prompted to re-enter their password via the + | confirmation screen. By default, the timeout lasts for three hours. + | + */ + + 'password_timeout' => 10800, + +]; diff --git a/config/broadcasting.php b/config/broadcasting.php new file mode 100644 index 0000000..2410485 --- /dev/null +++ b/config/broadcasting.php @@ -0,0 +1,71 @@ + env('BROADCAST_DRIVER', 'null'), + + /* + |-------------------------------------------------------------------------- + | Broadcast Connections + |-------------------------------------------------------------------------- + | + | Here you may define all of the broadcast connections that will be used + | to broadcast events to other systems or over websockets. Samples of + | each available type of connection are provided inside this array. + | + */ + + 'connections' => [ + + 'pusher' => [ + 'driver' => 'pusher', + 'key' => env('PUSHER_APP_KEY'), + 'secret' => env('PUSHER_APP_SECRET'), + 'app_id' => env('PUSHER_APP_ID'), + 'options' => [ + 'cluster' => env('PUSHER_APP_CLUSTER'), + 'host' => env('PUSHER_HOST') ?: 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com', + 'port' => env('PUSHER_PORT', 443), + 'scheme' => env('PUSHER_SCHEME', 'https'), + 'encrypted' => true, + 'useTLS' => env('PUSHER_SCHEME', 'https') === 'https', + ], + 'client_options' => [ + // Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html + ], + ], + + 'ably' => [ + 'driver' => 'ably', + 'key' => env('ABLY_KEY'), + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'default', + ], + + 'log' => [ + 'driver' => 'log', + ], + + 'null' => [ + 'driver' => 'null', + ], + + ], + +]; diff --git a/config/cache.php b/config/cache.php new file mode 100644 index 0000000..d4171e2 --- /dev/null +++ b/config/cache.php @@ -0,0 +1,111 @@ + env('CACHE_DRIVER', 'file'), + + /* + |-------------------------------------------------------------------------- + | 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: "apc", "array", "database", "file", + | "memcached", "redis", "dynamodb", "octane", "null" + | + */ + + 'stores' => [ + + 'apc' => [ + 'driver' => 'apc', + ], + + 'array' => [ + 'driver' => 'array', + 'serialize' => false, + ], + + 'database' => [ + 'driver' => 'database', + 'table' => 'cache', + 'connection' => null, + 'lock_connection' => null, + ], + + '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' => '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, or 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/cors.php b/config/cors.php new file mode 100644 index 0000000..8a39e6d --- /dev/null +++ b/config/cors.php @@ -0,0 +1,34 @@ + ['api/*', 'sanctum/csrf-cookie'], + + 'allowed_methods' => ['*'], + + 'allowed_origins' => ['*'], + + 'allowed_origins_patterns' => [], + + 'allowed_headers' => ['*'], + + 'exposed_headers' => [], + + 'max_age' => 0, + + 'supports_credentials' => false, + +]; diff --git a/config/database.php b/config/database.php new file mode 100644 index 0000000..137ad18 --- /dev/null +++ b/config/database.php @@ -0,0 +1,151 @@ + env('DB_CONNECTION', 'mysql'), + + /* + |-------------------------------------------------------------------------- + | Database Connections + |-------------------------------------------------------------------------- + | + | Here are each of the database connections setup for your application. + | Of course, examples of configuring each database platform that is + | supported by Laravel is shown below to make development simple. + | + | + | All database work in Laravel is done through the PHP PDO facilities + | so make sure you have the driver for your particular database of + | choice installed on your machine before you begin development. + | + */ + + 'connections' => [ + + 'sqlite' => [ + 'driver' => 'sqlite', + 'url' => env('DATABASE_URL'), + 'database' => env('DB_DATABASE', database_path('database.sqlite')), + 'prefix' => '', + 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), + ], + + 'mysql' => [ + 'driver' => 'mysql', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => 'utf8mb4', + '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('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '5432'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => 'utf8', + 'prefix' => '', + 'prefix_indexes' => true, + 'search_path' => 'public', + 'sslmode' => 'prefer', + ], + + 'sqlsrv' => [ + 'driver' => 'sqlsrv', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', 'localhost'), + 'port' => env('DB_PORT', '1433'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + '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 in the database. + | + */ + + 'migrations' => 'migrations', + + /* + |-------------------------------------------------------------------------- + | 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 APC or Memcached. Laravel makes it easy to dig right in. + | + */ + + 'redis' => [ + + 'client' => env('REDIS_CLIENT', 'phpredis'), + + 'options' => [ + 'cluster' => env('REDIS_CLUSTER', 'redis'), + 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), + ], + + '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..e9d9dbd --- /dev/null +++ b/config/filesystems.php @@ -0,0 +1,76 @@ + env('FILESYSTEM_DISK', 'local'), + + /* + |-------------------------------------------------------------------------- + | Filesystem Disks + |-------------------------------------------------------------------------- + | + | Here you may configure as many filesystem "disks" as you wish, and you + | may even configure multiple disks of the same driver. Defaults have + | been set up for each driver as an example of the required values. + | + | Supported Drivers: "local", "ftp", "sftp", "s3" + | + */ + + 'disks' => [ + + 'local' => [ + 'driver' => 'local', + 'root' => storage_path('app'), + 'throw' => false, + ], + + 'public' => [ + 'driver' => 'local', + 'root' => storage_path('app/public'), + 'url' => env('APP_URL').'/storage', + 'visibility' => 'public', + 'throw' => 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, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | 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/hashing.php b/config/hashing.php new file mode 100644 index 0000000..0e8a0bb --- /dev/null +++ b/config/hashing.php @@ -0,0 +1,54 @@ + 'bcrypt', + + /* + |-------------------------------------------------------------------------- + | Bcrypt Options + |-------------------------------------------------------------------------- + | + | Here you may specify the configuration options that should be used when + | passwords are hashed using the Bcrypt algorithm. This will allow you + | to control the amount of time it takes to hash the given password. + | + */ + + 'bcrypt' => [ + 'rounds' => env('BCRYPT_ROUNDS', 12), + 'verify' => true, + ], + + /* + |-------------------------------------------------------------------------- + | Argon Options + |-------------------------------------------------------------------------- + | + | Here you may specify the configuration options that should be used when + | passwords are hashed using the Argon algorithm. These will allow you + | to control the amount of time it takes to hash the given password. + | + */ + + 'argon' => [ + 'memory' => 65536, + 'threads' => 1, + 'time' => 4, + 'verify' => true, + ], + +]; diff --git a/config/logging.php b/config/logging.php new file mode 100644 index 0000000..c44d276 --- /dev/null +++ b/config/logging.php @@ -0,0 +1,131 @@ + 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' => false, + ], + + /* + |-------------------------------------------------------------------------- + | Log Channels + |-------------------------------------------------------------------------- + | + | Here you may configure the log channels for your application. Out of + | the box, Laravel uses the Monolog PHP logging library. This gives + | you a variety of powerful log handlers / formatters to utilize. + | + | Available Drivers: "single", "daily", "slack", "syslog", + | "errorlog", "monolog", + | "custom", "stack" + | + */ + + 'channels' => [ + 'stack' => [ + 'driver' => 'stack', + 'channels' => ['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' => 14, + 'replace_placeholders' => true, + ], + + 'slack' => [ + 'driver' => 'slack', + 'url' => env('LOG_SLACK_WEBHOOK_URL'), + 'username' => 'Laravel Log', + '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' => 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..e894b2e --- /dev/null +++ b/config/mail.php @@ -0,0 +1,134 @@ + env('MAIL_MAILER', 'smtp'), + + /* + |-------------------------------------------------------------------------- + | 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 to be used while + | sending an e-mail. You will specify which one you are using for your + | mailers below. You are free to add additional mailers as required. + | + | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2", + | "postmark", "log", "array", "failover", "roundrobin" + | + */ + + 'mailers' => [ + 'smtp' => [ + 'transport' => 'smtp', + 'url' => env('MAIL_URL'), + 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), + 'port' => env('MAIL_PORT', 587), + 'encryption' => env('MAIL_ENCRYPTION', 'tls'), + 'username' => env('MAIL_USERNAME'), + 'password' => env('MAIL_PASSWORD'), + 'timeout' => null, + 'local_domain' => env('MAIL_EHLO_DOMAIN'), + ], + + 'ses' => [ + 'transport' => 'ses', + ], + + 'postmark' => [ + 'transport' => 'postmark', + // 'message_stream_id' => null, + // 'client' => [ + // 'timeout' => 5, + // ], + ], + + 'mailgun' => [ + 'transport' => 'mailgun', + // 'client' => [ + // 'timeout' => 5, + // ], + ], + + '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 e-mails 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 e-mails that are sent by your application. + | + */ + + 'from' => [ + 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), + 'name' => env('MAIL_FROM_NAME', 'Example'), + ], + + /* + |-------------------------------------------------------------------------- + | Markdown Mail Settings + |-------------------------------------------------------------------------- + | + | If you are using Markdown based email rendering, you may configure your + | theme and component paths here, allowing you to customize the design + | of the emails. Or, you may simply stick with the Laravel defaults! + | + */ + + 'markdown' => [ + 'theme' => 'default', + + 'paths' => [ + resource_path('views/vendor/mail'), + ], + ], + +]; diff --git a/config/queue.php b/config/queue.php new file mode 100644 index 0000000..01c6b05 --- /dev/null +++ b/config/queue.php @@ -0,0 +1,109 @@ + env('QUEUE_CONNECTION', 'sync'), + + /* + |-------------------------------------------------------------------------- + | Queue Connections + |-------------------------------------------------------------------------- + | + | Here you may configure the connection information for each server that + | is used by your application. A default configuration has been added + | for each back-end shipped with Laravel. You are free to add more. + | + | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" + | + */ + + 'connections' => [ + + 'sync' => [ + 'driver' => 'sync', + ], + + 'database' => [ + 'driver' => 'database', + 'table' => 'jobs', + 'queue' => 'default', + 'retry_after' => 90, + 'after_commit' => false, + ], + + 'beanstalkd' => [ + 'driver' => 'beanstalkd', + 'host' => 'localhost', + 'queue' => 'default', + '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' => 'default', + 'queue' => env('REDIS_QUEUE', 'default'), + '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', 'mysql'), + 'table' => 'job_batches', + ], + + /* + |-------------------------------------------------------------------------- + | Failed Queue Jobs + |-------------------------------------------------------------------------- + | + | These options configure the behavior of failed queue job logging so you + | can control which database and table are used to store the jobs that + | have failed. You may change them to any database / table you wish. + | + */ + + 'failed' => [ + 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), + 'database' => env('DB_CONNECTION', 'mysql'), + 'table' => 'failed_jobs', + ], + +]; diff --git a/config/sanctum.php b/config/sanctum.php new file mode 100644 index 0000000..35d75b3 --- /dev/null +++ b/config/sanctum.php @@ -0,0 +1,83 @@ + explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf( + '%s%s', + 'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1', + Sanctum::currentApplicationUrlWithPort() + ))), + + /* + |-------------------------------------------------------------------------- + | Sanctum Guards + |-------------------------------------------------------------------------- + | + | This array contains the authentication guards that will be checked when + | Sanctum is trying to authenticate a request. If none of these guards + | are able to authenticate the request, Sanctum will use the bearer + | token that's present on an incoming request for authentication. + | + */ + + 'guard' => ['web'], + + /* + |-------------------------------------------------------------------------- + | Expiration Minutes + |-------------------------------------------------------------------------- + | + | This value controls the number of minutes until an issued token will be + | considered expired. This will override any values set in the token's + | "expires_at" attribute, but first-party sessions are not affected. + | + */ + + 'expiration' => null, + + /* + |-------------------------------------------------------------------------- + | Token Prefix + |-------------------------------------------------------------------------- + | + | Sanctum can prefix new tokens in order to take advantage of numerous + | security scanning initiatives maintained by open source platforms + | that notify developers if they commit tokens into repositories. + | + | See: https://docs.github.com/en/code-security/secret-scanning/about-secret-scanning + | + */ + + 'token_prefix' => env('SANCTUM_TOKEN_PREFIX', ''), + + /* + |-------------------------------------------------------------------------- + | Sanctum Middleware + |-------------------------------------------------------------------------- + | + | When authenticating your first-party SPA with Sanctum you may need to + | customize some of the middleware Sanctum uses while processing the + | request. You may change the middleware listed below as required. + | + */ + + 'middleware' => [ + 'authenticate_session' => Laravel\Sanctum\Http\Middleware\AuthenticateSession::class, + 'encrypt_cookies' => App\Http\Middleware\EncryptCookies::class, + 'verify_csrf_token' => App\Http\Middleware\VerifyCsrfToken::class, + ], + +]; diff --git a/config/services.php b/config/services.php new file mode 100644 index 0000000..0ace530 --- /dev/null +++ b/config/services.php @@ -0,0 +1,34 @@ + [ + 'domain' => env('MAILGUN_DOMAIN'), + 'secret' => env('MAILGUN_SECRET'), + 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), + 'scheme' => 'https', + ], + + 'postmark' => [ + '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'), + ], + +]; diff --git a/config/session.php b/config/session.php new file mode 100644 index 0000000..e738cb3 --- /dev/null +++ b/config/session.php @@ -0,0 +1,214 @@ + env('SESSION_DRIVER', 'file'), + + /* + |-------------------------------------------------------------------------- + | 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 immediately expire on the browser closing, set that option. + | + */ + + 'lifetime' => env('SESSION_LIFETIME', 120), + + 'expire_on_close' => false, + + /* + |-------------------------------------------------------------------------- + | Session Encryption + |-------------------------------------------------------------------------- + | + | This option allows you to easily specify that all of your session data + | should be encrypted before it is stored. All encryption will be run + | automatically by Laravel and you can use the Session like normal. + | + */ + + 'encrypt' => false, + + /* + |-------------------------------------------------------------------------- + | Session File Location + |-------------------------------------------------------------------------- + | + | When using the native session driver, we need a location where session + | files may be stored. A default has been set for you but a different + | location may be specified. This is only needed for file sessions. + | + */ + + '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 we + | should use to manage the sessions. Of course, a sensible default is + | provided for you; however, you are free to change this as needed. + | + */ + + 'table' => 'sessions', + + /* + |-------------------------------------------------------------------------- + | Session Cache Store + |-------------------------------------------------------------------------- + | + | While using one of the framework's cache driven session backends you may + | list a cache store that should be used for these sessions. This value + | must match with one of the application's configured 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 cookie used to identify a session + | instance by ID. The name specified here will get used every time a + | new session cookie is created by the framework for every driver. + | + */ + + '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 are free to change this when necessary. + | + */ + + 'path' => '/', + + /* + |-------------------------------------------------------------------------- + | Session Cookie Domain + |-------------------------------------------------------------------------- + | + | Here you may change the domain of the cookie used to identify a session + | in your application. This will determine which domains the cookie is + | available to in your application. A sensible default has been set. + | + */ + + '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. You are free to modify this option if needed. + | + */ + + '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" since this is a secure default value. + | + | Supported: "lax", "strict", "none", null + | + */ + + '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' => false, + +]; diff --git a/config/view.php b/config/view.php new file mode 100644 index 0000000..22b8a18 --- /dev/null +++ b/config/view.php @@ -0,0 +1,36 @@ + [ + resource_path('views'), + ], + + /* + |-------------------------------------------------------------------------- + | Compiled View Path + |-------------------------------------------------------------------------- + | + | This option determines where all the compiled Blade templates will be + | stored for your application. Typically, this is within the storage + | directory. However, as usual, you are free to change this value. + | + */ + + 'compiled' => env( + 'VIEW_COMPILED_PATH', + realpath(storage_path('framework/views')) + ), + +]; 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/UserFactory.php b/database/factories/UserFactory.php new file mode 100644 index 0000000..584104c --- /dev/null +++ b/database/factories/UserFactory.php @@ -0,0 +1,44 @@ + + */ +class UserFactory extends Factory +{ + /** + * The current password being used by the factory. + */ + protected static ?string $password; + + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + 'name' => fake()->name(), + 'email' => fake()->unique()->safeEmail(), + 'email_verified_at' => now(), + 'password' => static::$password ??= Hash::make('password'), + 'remember_token' => Str::random(10), + ]; + } + + /** + * Indicate that the model's email address should be unverified. + */ + public function unverified(): static + { + return $this->state(fn (array $attributes) => [ + 'email_verified_at' => null, + ]); + } +} diff --git a/database/migrations/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php new file mode 100644 index 0000000..ee10912 --- /dev/null +++ b/database/migrations/2014_10_12_000000_create_users_table.php @@ -0,0 +1,33 @@ +id(); + $table->string('name'); + $table->string('username')->unique(); // Ganti email jadi username + $table->string('email', 255)->unique(); + $table->string('password'); + $table->string('role'); + $table->rememberToken(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('users'); + } +}; diff --git a/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php b/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php new file mode 100644 index 0000000..81a7229 --- /dev/null +++ b/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php @@ -0,0 +1,28 @@ +string('email')->primary(); + $table->string('token'); + $table->timestamp('created_at')->nullable(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('password_reset_tokens'); + } +}; diff --git a/database/migrations/2019_08_19_000000_create_failed_jobs_table.php b/database/migrations/2019_08_19_000000_create_failed_jobs_table.php new file mode 100644 index 0000000..249da81 --- /dev/null +++ b/database/migrations/2019_08_19_000000_create_failed_jobs_table.php @@ -0,0 +1,32 @@ +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('failed_jobs'); + } +}; diff --git a/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php b/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php new file mode 100644 index 0000000..e828ad8 --- /dev/null +++ b/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php @@ -0,0 +1,33 @@ +id(); + $table->morphs('tokenable'); + $table->string('name'); + $table->string('token', 64)->unique(); + $table->text('abilities')->nullable(); + $table->timestamp('last_used_at')->nullable(); + $table->timestamp('expires_at')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('personal_access_tokens'); + } +}; diff --git a/database/migrations/2025_02_14_103354_create_datakriteria_table.php b/database/migrations/2025_02_14_103354_create_datakriteria_table.php new file mode 100644 index 0000000..0168155 --- /dev/null +++ b/database/migrations/2025_02_14_103354_create_datakriteria_table.php @@ -0,0 +1,24 @@ +id(); // ID auto-increment + $table->string('kode_kriteria', 10)->unique(); // Kode kriteria (VARCHAR 10) + $table->string('nama_kriteria', 255); // Nama kriteria (VARCHAR 255) + $table->decimal('bobot', 5, 2); // Bobot (DECIMAL 5,2) + $table->enum('jenis', ['Benefit', 'Cost']); // Jenis (Benefit atau Cost) + $table->timestamps(); // Kolom created_at & updated_at + }); + } + + public function down() + { + Schema::dropIfExists('datakriteria'); + } +}; diff --git a/database/migrations/2025_02_21_035239_create_subkriteria_table.php b/database/migrations/2025_02_21_035239_create_subkriteria_table.php new file mode 100644 index 0000000..b5f7b35 --- /dev/null +++ b/database/migrations/2025_02_21_035239_create_subkriteria_table.php @@ -0,0 +1,28 @@ +id(); + $table->string('nama_subkriteria'); + $table->integer('nilai'); + $table->foreignId('kriteria_id')->nullable()->constrained('datakriteria')->onDelete('set null'); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::table('subkriteria', function (Blueprint $table) { + $table->dropForeign(['kriteria_id']); + }); + + Schema::dropIfExists('subkriteria'); + } +}; \ No newline at end of file diff --git a/database/migrations/2025_03_05_040712_create_dataalternatif_table.php b/database/migrations/2025_03_05_040712_create_dataalternatif_table.php new file mode 100644 index 0000000..b711588 --- /dev/null +++ b/database/migrations/2025_03_05_040712_create_dataalternatif_table.php @@ -0,0 +1,29 @@ +id(); + $table->string('nama_alternatif'); + $table->foreignId('subkriteria_id')->nullable()->constrained('subkriteria')->onDelete('set null'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('dataalternatif'); + } +}; diff --git a/database/migrations/2025_03_05_040748_create_penilaian_table.php b/database/migrations/2025_03_05_040748_create_penilaian_table.php new file mode 100644 index 0000000..17c166f --- /dev/null +++ b/database/migrations/2025_03_05_040748_create_penilaian_table.php @@ -0,0 +1,36 @@ +id(); + $table->foreignId('alternatif_id')->constrained('dataalternatif')->onDelete('cascade'); + $table->foreignId('kriteria_id')->constrained('datakriteria')->onDelete('cascade'); + $table->foreignId('subkriteria_id')->nullable()->constrained('subkriteria')->onDelete('cascade'); // ✅ Tambahkan ini + $table->float('nilai_c1')->nullable(); // Menyimpan nilai C1 + $table->float('nilai_c2')->nullable(); // Menyimpan nilai C2 + $table->float('nilai_c3')->nullable(); // Menyimpan nilai C3 + $table->float('nilai_c4')->nullable(); // Menyimpan nilai C4 + $table->float('nilai_c5')->nullable(); // Menyimpan nilai C5 + $table->float('nilai_c6')->nullable(); // Menyimpan nilai C6 + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('penilaian'); + } +}; diff --git a/database/migrations/2025_03_20_115444_create_pakaian_table.php b/database/migrations/2025_03_20_115444_create_pakaian_table.php new file mode 100644 index 0000000..27db7cd --- /dev/null +++ b/database/migrations/2025_03_20_115444_create_pakaian_table.php @@ -0,0 +1,28 @@ +id(); // ID otomatis + $table->string('nama'); // Nama pakaian + $table->string('jenis_acara'); // Kasual, Formal, Pesta, Santai + $table->string('jenis_pakaian'); // Kemeja, Blouse, Celana, Rok, Dress, Cardigan + $table->integer('harga'); // Harga pakaian + $table->string('warna'); // Warna pakaian + $table->string('lokasi'); // Indoor / Outdoor + $table->string('cuaca'); // Cerah / Berawan + $table->decimal('rating', 3, 2)->default(0); // Contoh: 4.5 + $table->timestamps(); // Tanggal dibuat & diperbarui + }); + } + + public function down() + { + Schema::dropIfExists('pakaian'); + } +}; diff --git a/database/migrations/2025_03_29_080255_create_nilai_alternatif_table.php b/database/migrations/2025_03_29_080255_create_nilai_alternatif_table.php new file mode 100644 index 0000000..6420adb --- /dev/null +++ b/database/migrations/2025_03_29_080255_create_nilai_alternatif_table.php @@ -0,0 +1,29 @@ +id(); + $table->foreignId('alternatif_id')->constrained('dataalternatif')->onDelete('cascade'); + $table->json('nilai')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('nilai_alternatif'); + } +}; diff --git a/database/migrations/2025_04_22_053717_add_nilai_columns_to_penilaian_table.php b/database/migrations/2025_04_22_053717_add_nilai_columns_to_penilaian_table.php new file mode 100644 index 0000000..efe9fc2 --- /dev/null +++ b/database/migrations/2025_04_22_053717_add_nilai_columns_to_penilaian_table.php @@ -0,0 +1,36 @@ +float('nilai_c1')->nullable(); + $table->float('nilai_c2')->nullable(); + $table->float('nilai_c3')->nullable(); + $table->float('nilai_c4')->nullable(); + $table->float('nilai_c5')->nullable(); + $table->float('nilai_c6')->nullable(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('penilaian', function (Blueprint $table) { + $table->dropColumn([ + 'nilai_c1', 'nilai_c2', 'nilai_c3', + 'nilai_c4', 'nilai_c5', 'nilai_c6' + ]); + }); + } +}; diff --git a/database/migrations/2025_05_17_033206_add_gambar_to_dataalternatif_table.php b/database/migrations/2025_05_17_033206_add_gambar_to_dataalternatif_table.php new file mode 100644 index 0000000..46b4741 --- /dev/null +++ b/database/migrations/2025_05_17_033206_add_gambar_to_dataalternatif_table.php @@ -0,0 +1,28 @@ +string('gambar')->nullable()->after('nama_alternatif'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('dataalternatif', function (Blueprint $table) { + $table->dropColumn('gambar'); + }); + } +}; diff --git a/database/migrations/2025_05_22_111608_create_quiz_history_table.php b/database/migrations/2025_05_22_111608_create_quiz_history_table.php new file mode 100644 index 0000000..144c42b --- /dev/null +++ b/database/migrations/2025_05_22_111608_create_quiz_history_table.php @@ -0,0 +1,29 @@ +id(); + $table->json('data_kuisioner'); + $table->json('hasil_rekomendasi'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('quiz_history'); + } +}; diff --git a/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php new file mode 100644 index 0000000..a9f4519 --- /dev/null +++ b/database/seeders/DatabaseSeeder.php @@ -0,0 +1,22 @@ +create(); + + // \App\Models\User::factory()->create([ + // 'name' => 'Test User', + // 'email' => 'test@example.com', + // ]); + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..56f5ddc --- /dev/null +++ b/package.json @@ -0,0 +1,13 @@ +{ + "private": true, + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build" + }, + "devDependencies": { + "axios": "^1.6.4", + "laravel-vite-plugin": "^1.0.0", + "vite": "^5.0.0" + } +} diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 0000000..bc86714 --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,32 @@ + + + + + tests/Unit + + + tests/Feature + + + + + app + + + + + + + + + + + + + + + diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..3aec5e2 --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,21 @@ + + + Options -MultiViews -Indexes + + + RewriteEngine On + + # Handle Authorization Header + RewriteCond %{HTTP:Authorization} . + RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + + # 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/sb-admin-2.css b/public/assets/css/sb-admin-2.css new file mode 100644 index 0000000..fb96fb4 --- /dev/null +++ b/public/assets/css/sb-admin-2.css @@ -0,0 +1,11281 @@ +/*! + * Start Bootstrap - SB Admin 2 v4.1.3 (https://startbootstrap.com/theme/sb-admin-2) + * Copyright 2013-2021 Start Bootstrap + * Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-sb-admin-2/blob/master/LICENSE) + */ + +/*! + * Bootstrap v4.6.0 (https://getbootstrap.com/) + * Copyright 2011-2021 The Bootstrap Authors + * Copyright 2011-2021 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +:root { + --blue: #4e73df; + --indigo: #6610f2; + --purple: #6f42c1; + --pink: #e83e8c; + --red: #e74a3b; + --orange: #fd7e14; + --yellow: #f6c23e; + --green: #1cc88a; + --teal: #20c9a6; + --cyan: #36b9cc; + --white: #fff; + --gray: #858796; + --gray-dark: #5a5c69; + --primary: #4e73df; + --secondary: #858796; + --success: #1cc88a; + --info: #36b9cc; + --warning: #f6c23e; + --danger: #e74a3b; + --light: #f8f9fc; + --dark: #5a5c69; + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +*, +*::before, +*::after { + box-sizing: border-box; +} + +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} + +article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { + display: block; +} + +body { + margin: 0; + font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #858796; + text-align: left; + background-color: #fff; +} + +[tabindex="-1"]:focus:not(:focus-visible) { + outline: 0 !important; +} + +hr { + box-sizing: content-box; + height: 0; + overflow: visible; +} + +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 0.5rem; +} + +p { + margin-top: 0; + margin-bottom: 1rem; +} + +abbr[title], +abbr[data-original-title] { + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0; + -webkit-text-decoration-skip-ink: none; + text-decoration-skip-ink: none; +} + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; +} + +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-left: 0; +} + +blockquote { + margin: 0 0 1rem; +} + +b, +strong { + font-weight: bolder; +} + +small { + font-size: 80%; +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +sub { + bottom: -.25em; +} + +sup { + top: -.5em; +} + +a { + color: #4e73df; + text-decoration: none; + background-color: transparent; +} + +a:hover { + color: #224abe; + text-decoration: underline; +} + +a:not([href]):not([class]) { + color: inherit; + text-decoration: none; +} + +a:not([href]):not([class]):hover { + color: inherit; + text-decoration: none; +} + +pre, +code, +kbd, +samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-size: 1em; +} + +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + -ms-overflow-style: scrollbar; +} + +figure { + margin: 0 0 1rem; +} + +img { + vertical-align: middle; + border-style: none; +} + +svg { + overflow: hidden; + vertical-align: middle; +} + +table { + border-collapse: collapse; +} + +caption { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + color: #858796; + text-align: left; + caption-side: bottom; +} + +th { + text-align: inherit; + text-align: -webkit-match-parent; +} + +label { + display: inline-block; + margin-bottom: 0.5rem; +} + +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, +input { + overflow: visible; +} + +button, +select { + text-transform: none; +} + +[role="button"] { + cursor: pointer; +} + +select { + word-wrap: normal; +} + +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; +} + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + padding: 0; + border-style: none; +} + +input[type="radio"], +input[type="checkbox"] { + box-sizing: border-box; + padding: 0; +} + +textarea { + overflow: auto; + resize: vertical; +} + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} + +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: .5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal; +} + +progress { + vertical-align: baseline; +} + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +[type="search"] { + outline-offset: -2px; + -webkit-appearance: none; +} + +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; +} + +output { + display: inline-block; +} + +summary { + display: list-item; + cursor: pointer; +} + +template { + display: none; +} + +[hidden] { + display: none !important; +} + +h1, h2, h3, h4, h5, h6, +.h1, .h2, .h3, .h4, .h5, .h6 { + margin-bottom: 0.5rem; + font-weight: 400; + line-height: 1.2; +} + +h1, .h1 { + font-size: 2.5rem; +} + +h2, .h2 { + font-size: 2rem; +} + +h3, .h3 { + font-size: 1.75rem; +} + +h4, .h4 { + font-size: 1.5rem; +} + +h5, .h5 { + font-size: 1.25rem; +} + +h6, .h6 { + font-size: 1rem; +} + +.lead { + font-size: 1.25rem; + font-weight: 300; +} + +.display-1 { + font-size: 6rem; + font-weight: 300; + line-height: 1.2; +} + +.display-2 { + font-size: 5.5rem; + font-weight: 300; + line-height: 1.2; +} + +.display-3 { + font-size: 4.5rem; + font-weight: 300; + line-height: 1.2; +} + +.display-4 { + font-size: 3.5rem; + font-weight: 300; + line-height: 1.2; +} + +hr { + margin-top: 1rem; + margin-bottom: 1rem; + border: 0; + border-top: 1px solid rgba(0, 0, 0, 0.1); +} + +small, +.small { + font-size: 80%; + font-weight: 400; +} + +mark, +.mark { + padding: 0.2em; + background-color: #fcf8e3; +} + +.list-unstyled { + padding-left: 0; + list-style: none; +} + +.list-inline { + padding-left: 0; + list-style: none; +} + +.list-inline-item { + display: inline-block; +} + +.list-inline-item:not(:last-child) { + margin-right: 0.5rem; +} + +.initialism { + font-size: 90%; + text-transform: uppercase; +} + +.blockquote { + margin-bottom: 1rem; + font-size: 1.25rem; +} + +.blockquote-footer { + display: block; + font-size: 80%; + color: #858796; +} + +.blockquote-footer::before { + content: "\2014\00A0"; +} + +.img-fluid { + max-width: 100%; + height: auto; +} + +.img-thumbnail { + padding: 0.25rem; + background-color: #fff; + border: 1px solid #dddfeb; + border-radius: 0.35rem; + max-width: 100%; + height: auto; +} + +.figure { + display: inline-block; +} + +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; +} + +.figure-caption { + font-size: 90%; + color: #858796; +} + +code { + font-size: 87.5%; + color: #e83e8c; + word-wrap: break-word; +} + +a > code { + color: inherit; +} + +kbd { + padding: 0.2rem 0.4rem; + font-size: 87.5%; + color: #fff; + background-color: #3a3b45; + border-radius: 0.2rem; +} + +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; +} + +pre { + display: block; + font-size: 87.5%; + color: #3a3b45; +} + +pre code { + font-size: inherit; + color: inherit; + word-break: normal; +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +.container, +.container-fluid, +.container-sm, +.container-md, +.container-lg, +.container-xl { + width: 100%; + padding-right: 0.75rem; + padding-left: 0.75rem; + margin-right: auto; + margin-left: 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; + } +} + +.row { + display: flex; + flex-wrap: wrap; + margin-right: -0.75rem; + margin-left: -0.75rem; +} + +.no-gutters { + margin-right: 0; + margin-left: 0; +} + +.no-gutters > .col, +.no-gutters > [class*="col-"] { + padding-right: 0; + padding-left: 0; +} + +.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, +.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, +.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, +.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, +.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, +.col-xl-auto { + position: relative; + width: 100%; + padding-right: 0.75rem; + padding-left: 0.75rem; +} + +.col { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; +} + +.row-cols-1 > * { + flex: 0 0 100%; + max-width: 100%; +} + +.row-cols-2 > * { + flex: 0 0 50%; + max-width: 50%; +} + +.row-cols-3 > * { + flex: 0 0 33.33333%; + max-width: 33.33333%; +} + +.row-cols-4 > * { + flex: 0 0 25%; + max-width: 25%; +} + +.row-cols-5 > * { + flex: 0 0 20%; + max-width: 20%; +} + +.row-cols-6 > * { + flex: 0 0 16.66667%; + max-width: 16.66667%; +} + +.col-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; +} + +.col-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; +} + +.col-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; +} + +.col-3 { + flex: 0 0 25%; + max-width: 25%; +} + +.col-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; +} + +.col-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; +} + +.col-6 { + flex: 0 0 50%; + max-width: 50%; +} + +.col-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; +} + +.col-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; +} + +.col-9 { + flex: 0 0 75%; + max-width: 75%; +} + +.col-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; +} + +.col-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; +} + +.col-12 { + flex: 0 0 100%; + max-width: 100%; +} + +.order-first { + order: -1; +} + +.order-last { + order: 13; +} + +.order-0 { + order: 0; +} + +.order-1 { + order: 1; +} + +.order-2 { + order: 2; +} + +.order-3 { + order: 3; +} + +.order-4 { + order: 4; +} + +.order-5 { + order: 5; +} + +.order-6 { + order: 6; +} + +.order-7 { + order: 7; +} + +.order-8 { + order: 8; +} + +.order-9 { + order: 9; +} + +.order-10 { + order: 10; +} + +.order-11 { + order: 11; +} + +.order-12 { + order: 12; +} + +.offset-1 { + margin-left: 8.33333%; +} + +.offset-2 { + margin-left: 16.66667%; +} + +.offset-3 { + margin-left: 25%; +} + +.offset-4 { + margin-left: 33.33333%; +} + +.offset-5 { + margin-left: 41.66667%; +} + +.offset-6 { + margin-left: 50%; +} + +.offset-7 { + margin-left: 58.33333%; +} + +.offset-8 { + margin-left: 66.66667%; +} + +.offset-9 { + margin-left: 75%; +} + +.offset-10 { + margin-left: 83.33333%; +} + +.offset-11 { + margin-left: 91.66667%; +} + +@media (min-width: 576px) { + .col-sm { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; + } + .row-cols-sm-1 > * { + flex: 0 0 100%; + max-width: 100%; + } + .row-cols-sm-2 > * { + flex: 0 0 50%; + max-width: 50%; + } + .row-cols-sm-3 > * { + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + .row-cols-sm-4 > * { + flex: 0 0 25%; + max-width: 25%; + } + .row-cols-sm-5 > * { + flex: 0 0 20%; + max-width: 20%; + } + .row-cols-sm-6 > * { + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + .col-sm-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + .col-sm-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; + } + .col-sm-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + .col-sm-3 { + flex: 0 0 25%; + max-width: 25%; + } + .col-sm-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + .col-sm-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; + } + .col-sm-6 { + flex: 0 0 50%; + max-width: 50%; + } + .col-sm-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; + } + .col-sm-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; + } + .col-sm-9 { + flex: 0 0 75%; + max-width: 75%; + } + .col-sm-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; + } + .col-sm-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; + } + .col-sm-12 { + flex: 0 0 100%; + max-width: 100%; + } + .order-sm-first { + order: -1; + } + .order-sm-last { + order: 13; + } + .order-sm-0 { + order: 0; + } + .order-sm-1 { + order: 1; + } + .order-sm-2 { + order: 2; + } + .order-sm-3 { + order: 3; + } + .order-sm-4 { + order: 4; + } + .order-sm-5 { + order: 5; + } + .order-sm-6 { + order: 6; + } + .order-sm-7 { + order: 7; + } + .order-sm-8 { + order: 8; + } + .order-sm-9 { + order: 9; + } + .order-sm-10 { + order: 10; + } + .order-sm-11 { + order: 11; + } + .order-sm-12 { + order: 12; + } + .offset-sm-0 { + margin-left: 0; + } + .offset-sm-1 { + margin-left: 8.33333%; + } + .offset-sm-2 { + margin-left: 16.66667%; + } + .offset-sm-3 { + margin-left: 25%; + } + .offset-sm-4 { + margin-left: 33.33333%; + } + .offset-sm-5 { + margin-left: 41.66667%; + } + .offset-sm-6 { + margin-left: 50%; + } + .offset-sm-7 { + margin-left: 58.33333%; + } + .offset-sm-8 { + margin-left: 66.66667%; + } + .offset-sm-9 { + margin-left: 75%; + } + .offset-sm-10 { + margin-left: 83.33333%; + } + .offset-sm-11 { + margin-left: 91.66667%; + } +} + +@media (min-width: 768px) { + .col-md { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; + } + .row-cols-md-1 > * { + flex: 0 0 100%; + max-width: 100%; + } + .row-cols-md-2 > * { + flex: 0 0 50%; + max-width: 50%; + } + .row-cols-md-3 > * { + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + .row-cols-md-4 > * { + flex: 0 0 25%; + max-width: 25%; + } + .row-cols-md-5 > * { + flex: 0 0 20%; + max-width: 20%; + } + .row-cols-md-6 > * { + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + .col-md-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + .col-md-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; + } + .col-md-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + .col-md-3 { + flex: 0 0 25%; + max-width: 25%; + } + .col-md-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + .col-md-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; + } + .col-md-6 { + flex: 0 0 50%; + max-width: 50%; + } + .col-md-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; + } + .col-md-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; + } + .col-md-9 { + flex: 0 0 75%; + max-width: 75%; + } + .col-md-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; + } + .col-md-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; + } + .col-md-12 { + flex: 0 0 100%; + max-width: 100%; + } + .order-md-first { + order: -1; + } + .order-md-last { + order: 13; + } + .order-md-0 { + order: 0; + } + .order-md-1 { + order: 1; + } + .order-md-2 { + order: 2; + } + .order-md-3 { + order: 3; + } + .order-md-4 { + order: 4; + } + .order-md-5 { + order: 5; + } + .order-md-6 { + order: 6; + } + .order-md-7 { + order: 7; + } + .order-md-8 { + order: 8; + } + .order-md-9 { + order: 9; + } + .order-md-10 { + order: 10; + } + .order-md-11 { + order: 11; + } + .order-md-12 { + order: 12; + } + .offset-md-0 { + margin-left: 0; + } + .offset-md-1 { + margin-left: 8.33333%; + } + .offset-md-2 { + margin-left: 16.66667%; + } + .offset-md-3 { + margin-left: 25%; + } + .offset-md-4 { + margin-left: 33.33333%; + } + .offset-md-5 { + margin-left: 41.66667%; + } + .offset-md-6 { + margin-left: 50%; + } + .offset-md-7 { + margin-left: 58.33333%; + } + .offset-md-8 { + margin-left: 66.66667%; + } + .offset-md-9 { + margin-left: 75%; + } + .offset-md-10 { + margin-left: 83.33333%; + } + .offset-md-11 { + margin-left: 91.66667%; + } +} + +@media (min-width: 992px) { + .col-lg { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; + } + .row-cols-lg-1 > * { + flex: 0 0 100%; + max-width: 100%; + } + .row-cols-lg-2 > * { + flex: 0 0 50%; + max-width: 50%; + } + .row-cols-lg-3 > * { + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + .row-cols-lg-4 > * { + flex: 0 0 25%; + max-width: 25%; + } + .row-cols-lg-5 > * { + flex: 0 0 20%; + max-width: 20%; + } + .row-cols-lg-6 > * { + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + .col-lg-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + .col-lg-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; + } + .col-lg-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + .col-lg-3 { + flex: 0 0 25%; + max-width: 25%; + } + .col-lg-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + .col-lg-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; + } + .col-lg-6 { + flex: 0 0 50%; + max-width: 50%; + } + .col-lg-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; + } + .col-lg-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; + } + .col-lg-9 { + flex: 0 0 75%; + max-width: 75%; + } + .col-lg-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; + } + .col-lg-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; + } + .col-lg-12 { + flex: 0 0 100%; + max-width: 100%; + } + .order-lg-first { + order: -1; + } + .order-lg-last { + order: 13; + } + .order-lg-0 { + order: 0; + } + .order-lg-1 { + order: 1; + } + .order-lg-2 { + order: 2; + } + .order-lg-3 { + order: 3; + } + .order-lg-4 { + order: 4; + } + .order-lg-5 { + order: 5; + } + .order-lg-6 { + order: 6; + } + .order-lg-7 { + order: 7; + } + .order-lg-8 { + order: 8; + } + .order-lg-9 { + order: 9; + } + .order-lg-10 { + order: 10; + } + .order-lg-11 { + order: 11; + } + .order-lg-12 { + order: 12; + } + .offset-lg-0 { + margin-left: 0; + } + .offset-lg-1 { + margin-left: 8.33333%; + } + .offset-lg-2 { + margin-left: 16.66667%; + } + .offset-lg-3 { + margin-left: 25%; + } + .offset-lg-4 { + margin-left: 33.33333%; + } + .offset-lg-5 { + margin-left: 41.66667%; + } + .offset-lg-6 { + margin-left: 50%; + } + .offset-lg-7 { + margin-left: 58.33333%; + } + .offset-lg-8 { + margin-left: 66.66667%; + } + .offset-lg-9 { + margin-left: 75%; + } + .offset-lg-10 { + margin-left: 83.33333%; + } + .offset-lg-11 { + margin-left: 91.66667%; + } +} + +@media (min-width: 1200px) { + .col-xl { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; + } + .row-cols-xl-1 > * { + flex: 0 0 100%; + max-width: 100%; + } + .row-cols-xl-2 > * { + flex: 0 0 50%; + max-width: 50%; + } + .row-cols-xl-3 > * { + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + .row-cols-xl-4 > * { + flex: 0 0 25%; + max-width: 25%; + } + .row-cols-xl-5 > * { + flex: 0 0 20%; + max-width: 20%; + } + .row-cols-xl-6 > * { + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + .col-xl-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + .col-xl-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; + } + .col-xl-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + .col-xl-3 { + flex: 0 0 25%; + max-width: 25%; + } + .col-xl-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + .col-xl-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; + } + .col-xl-6 { + flex: 0 0 50%; + max-width: 50%; + } + .col-xl-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; + } + .col-xl-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; + } + .col-xl-9 { + flex: 0 0 75%; + max-width: 75%; + } + .col-xl-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; + } + .col-xl-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; + } + .col-xl-12 { + flex: 0 0 100%; + max-width: 100%; + } + .order-xl-first { + order: -1; + } + .order-xl-last { + order: 13; + } + .order-xl-0 { + order: 0; + } + .order-xl-1 { + order: 1; + } + .order-xl-2 { + order: 2; + } + .order-xl-3 { + order: 3; + } + .order-xl-4 { + order: 4; + } + .order-xl-5 { + order: 5; + } + .order-xl-6 { + order: 6; + } + .order-xl-7 { + order: 7; + } + .order-xl-8 { + order: 8; + } + .order-xl-9 { + order: 9; + } + .order-xl-10 { + order: 10; + } + .order-xl-11 { + order: 11; + } + .order-xl-12 { + order: 12; + } + .offset-xl-0 { + margin-left: 0; + } + .offset-xl-1 { + margin-left: 8.33333%; + } + .offset-xl-2 { + margin-left: 16.66667%; + } + .offset-xl-3 { + margin-left: 25%; + } + .offset-xl-4 { + margin-left: 33.33333%; + } + .offset-xl-5 { + margin-left: 41.66667%; + } + .offset-xl-6 { + margin-left: 50%; + } + .offset-xl-7 { + margin-left: 58.33333%; + } + .offset-xl-8 { + margin-left: 66.66667%; + } + .offset-xl-9 { + margin-left: 75%; + } + .offset-xl-10 { + margin-left: 83.33333%; + } + .offset-xl-11 { + margin-left: 91.66667%; + } +} + +.table { + width: 100%; + margin-bottom: 1rem; + color: #858796; +} + +.table th, +.table td { + padding: 0.75rem; + vertical-align: top; + border-top: 1px solid #e3e6f0; +} + +.table thead th { + vertical-align: bottom; + border-bottom: 2px solid #e3e6f0; +} + +.table tbody + tbody { + border-top: 2px solid #e3e6f0; +} + +.table-sm th, +.table-sm td { + padding: 0.3rem; +} + +.table-bordered { + border: 1px solid #e3e6f0; +} + +.table-bordered th, +.table-bordered td { + border: 1px solid #e3e6f0; +} + +.table-bordered thead th, +.table-bordered thead td { + border-bottom-width: 2px; +} + +.table-borderless th, +.table-borderless td, +.table-borderless thead th, +.table-borderless tbody + tbody { + border: 0; +} + +.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(0, 0, 0, 0.05); +} + +.table-hover tbody tr:hover { + color: #858796; + background-color: rgba(0, 0, 0, 0.075); +} + +.table-primary, +.table-primary > th, +.table-primary > td { + background-color: #cdd8f6; +} + +.table-primary th, +.table-primary td, +.table-primary thead th, +.table-primary tbody + tbody { + border-color: #a3b6ee; +} + +.table-hover .table-primary:hover { + background-color: #b7c7f2; +} + +.table-hover .table-primary:hover > td, +.table-hover .table-primary:hover > th { + background-color: #b7c7f2; +} + +.table-secondary, +.table-secondary > th, +.table-secondary > td { + background-color: #dddde2; +} + +.table-secondary th, +.table-secondary td, +.table-secondary thead th, +.table-secondary tbody + tbody { + border-color: #c0c1c8; +} + +.table-hover .table-secondary:hover { + background-color: #cfcfd6; +} + +.table-hover .table-secondary:hover > td, +.table-hover .table-secondary:hover > th { + background-color: #cfcfd6; +} + +.table-success, +.table-success > th, +.table-success > td { + background-color: #bff0de; +} + +.table-success th, +.table-success td, +.table-success thead th, +.table-success tbody + tbody { + border-color: #89e2c2; +} + +.table-hover .table-success:hover { + background-color: #aaebd3; +} + +.table-hover .table-success:hover > td, +.table-hover .table-success:hover > th { + background-color: #aaebd3; +} + +.table-info, +.table-info > th, +.table-info > td { + background-color: #c7ebf1; +} + +.table-info th, +.table-info td, +.table-info thead th, +.table-info tbody + tbody { + border-color: #96dbe4; +} + +.table-hover .table-info:hover { + background-color: #b3e4ec; +} + +.table-hover .table-info:hover > td, +.table-hover .table-info:hover > th { + background-color: #b3e4ec; +} + +.table-warning, +.table-warning > th, +.table-warning > td { + background-color: #fceec9; +} + +.table-warning th, +.table-warning td, +.table-warning thead th, +.table-warning tbody + tbody { + border-color: #fadf9b; +} + +.table-hover .table-warning:hover { + background-color: #fbe6b1; +} + +.table-hover .table-warning:hover > td, +.table-hover .table-warning:hover > th { + background-color: #fbe6b1; +} + +.table-danger, +.table-danger > th, +.table-danger > td { + background-color: #f8ccc8; +} + +.table-danger th, +.table-danger td, +.table-danger thead th, +.table-danger tbody + tbody { + border-color: #f3a199; +} + +.table-hover .table-danger:hover { + background-color: #f5b7b1; +} + +.table-hover .table-danger:hover > td, +.table-hover .table-danger:hover > th { + background-color: #f5b7b1; +} + +.table-light, +.table-light > th, +.table-light > td { + background-color: #fdfdfe; +} + +.table-light th, +.table-light td, +.table-light thead th, +.table-light tbody + tbody { + border-color: #fbfcfd; +} + +.table-hover .table-light:hover { + background-color: #ececf6; +} + +.table-hover .table-light:hover > td, +.table-hover .table-light:hover > th { + background-color: #ececf6; +} + +.table-dark, +.table-dark > th, +.table-dark > td { + background-color: #d1d1d5; +} + +.table-dark th, +.table-dark td, +.table-dark thead th, +.table-dark tbody + tbody { + border-color: #a9aab1; +} + +.table-hover .table-dark:hover { + background-color: #c4c4c9; +} + +.table-hover .table-dark:hover > td, +.table-hover .table-dark:hover > th { + background-color: #c4c4c9; +} + +.table-active, +.table-active > th, +.table-active > td { + background-color: rgba(0, 0, 0, 0.075); +} + +.table-hover .table-active:hover { + background-color: rgba(0, 0, 0, 0.075); +} + +.table-hover .table-active:hover > td, +.table-hover .table-active:hover > th { + background-color: rgba(0, 0, 0, 0.075); +} + +.table .thead-dark th { + color: #fff; + background-color: #5a5c69; + border-color: #6c6e7e; +} + +.table .thead-light th { + color: #6e707e; + background-color: #eaecf4; + border-color: #e3e6f0; +} + +.table-dark { + color: #fff; + background-color: #5a5c69; +} + +.table-dark th, +.table-dark td, +.table-dark thead th { + border-color: #6c6e7e; +} + +.table-dark.table-bordered { + border: 0; +} + +.table-dark.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(255, 255, 255, 0.05); +} + +.table-dark.table-hover tbody tr:hover { + color: #fff; + background-color: rgba(255, 255, 255, 0.075); +} + +@media (max-width: 575.98px) { + .table-responsive-sm { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + .table-responsive-sm > .table-bordered { + border: 0; + } +} + +@media (max-width: 767.98px) { + .table-responsive-md { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + .table-responsive-md > .table-bordered { + border: 0; + } +} + +@media (max-width: 991.98px) { + .table-responsive-lg { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + .table-responsive-lg > .table-bordered { + border: 0; + } +} + +@media (max-width: 1199.98px) { + .table-responsive-xl { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + .table-responsive-xl > .table-bordered { + border: 0; + } +} + +.table-responsive { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; +} + +.table-responsive > .table-bordered { + border: 0; +} + +.form-control { + display: block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #6e707e; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #d1d3e2; + border-radius: 0.35rem; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .form-control { + transition: none; + } +} + +.form-control::-ms-expand { + background-color: transparent; + border: 0; +} + +.form-control:-moz-focusring { + color: transparent; + text-shadow: 0 0 0 #6e707e; +} + +.form-control:focus { + color: #6e707e; + background-color: #fff; + border-color: #bac8f3; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25); +} + +.form-control::-webkit-input-placeholder { + color: #858796; + opacity: 1; +} + +.form-control::-moz-placeholder { + color: #858796; + opacity: 1; +} + +.form-control:-ms-input-placeholder { + color: #858796; + opacity: 1; +} + +.form-control::-ms-input-placeholder { + color: #858796; + opacity: 1; +} + +.form-control::placeholder { + color: #858796; + opacity: 1; +} + +.form-control:disabled, .form-control[readonly] { + background-color: #eaecf4; + opacity: 1; +} + +input[type="date"].form-control, +input[type="time"].form-control, +input[type="datetime-local"].form-control, +input[type="month"].form-control { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +select.form-control:focus::-ms-value { + color: #6e707e; + background-color: #fff; +} + +.form-control-file, +.form-control-range { + display: block; + width: 100%; +} + +.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.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 1.25rem; + line-height: 1.5; +} + +.col-form-label-sm { + padding-top: calc(0.25rem + 1px); + padding-bottom: calc(0.25rem + 1px); + font-size: 0.875rem; + line-height: 1.5; +} + +.form-control-plaintext { + display: block; + width: 100%; + padding: 0.375rem 0; + margin-bottom: 0; + font-size: 1rem; + line-height: 1.5; + color: #858796; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; +} + +.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { + padding-right: 0; + padding-left: 0; +} + +.form-control-sm { + height: calc(1.5em + 0.5rem + 2px); + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +.form-control-lg { + height: calc(1.5em + 1rem + 2px); + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +select.form-control[size], select.form-control[multiple] { + height: auto; +} + +textarea.form-control { + height: auto; +} + +.form-group { + margin-bottom: 1rem; +} + +.form-text { + display: block; + margin-top: 0.25rem; +} + +.form-row { + display: flex; + flex-wrap: wrap; + margin-right: -5px; + margin-left: -5px; +} + +.form-row > .col, +.form-row > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; +} + +.form-check { + position: relative; + display: block; + padding-left: 1.25rem; +} + +.form-check-input { + position: absolute; + margin-top: 0.3rem; + margin-left: -1.25rem; +} + +.form-check-input[disabled] ~ .form-check-label, +.form-check-input:disabled ~ .form-check-label { + color: #858796; +} + +.form-check-label { + margin-bottom: 0; +} + +.form-check-inline { + display: inline-flex; + align-items: center; + padding-left: 0; + margin-right: 0.75rem; +} + +.form-check-inline .form-check-input { + position: static; + margin-top: 0; + margin-right: 0.3125rem; + margin-left: 0; +} + +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #1cc88a; +} + +.valid-tooltip { + position: absolute; + top: 100%; + left: 0; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(28, 200, 138, 0.9); + border-radius: 0.35rem; +} + +.form-row > .col > .valid-tooltip, +.form-row > [class*="col-"] > .valid-tooltip { + left: 5px; +} + +.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: #1cc88a; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%231cc88a' 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: right 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: #1cc88a; + box-shadow: 0 0 0 0.2rem rgba(28, 200, 138, 0.25); +} + +.was-validated textarea.form-control:valid, textarea.form-control.is-valid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); +} + +.was-validated .custom-select:valid, .custom-select.is-valid { + border-color: #1cc88a; + padding-right: calc(0.75em + 2.3125rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%235a5c69' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%231cc88a' 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") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat; +} + +.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { + border-color: #1cc88a; + box-shadow: 0 0 0 0.2rem rgba(28, 200, 138, 0.25); +} + +.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: #1cc88a; +} + +.was-validated .form-check-input:valid ~ .valid-feedback, +.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, +.form-check-input.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { + color: #1cc88a; +} + +.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { + border-color: #1cc88a; +} + +.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { + border-color: #34e3a4; + background-color: #34e3a4; +} + +.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(28, 200, 138, 0.25); +} + +.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { + border-color: #1cc88a; +} + +.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { + border-color: #1cc88a; +} + +.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { + border-color: #1cc88a; + box-shadow: 0 0 0 0.2rem rgba(28, 200, 138, 0.25); +} + +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #e74a3b; +} + +.invalid-tooltip { + position: absolute; + top: 100%; + left: 0; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(231, 74, 59, 0.9); + border-radius: 0.35rem; +} + +.form-row > .col > .invalid-tooltip, +.form-row > [class*="col-"] > .invalid-tooltip { + left: 5px; +} + +.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: #e74a3b; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e74a3b' viewBox='0 0 12 12'%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='%23e74a3b' stroke='none'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: right 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: #e74a3b; + box-shadow: 0 0 0 0.2rem rgba(231, 74, 59, 0.25); +} + +.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); +} + +.was-validated .custom-select:invalid, .custom-select.is-invalid { + border-color: #e74a3b; + padding-right: calc(0.75em + 2.3125rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%235a5c69' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e74a3b' viewBox='0 0 12 12'%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='%23e74a3b' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat; +} + +.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { + border-color: #e74a3b; + box-shadow: 0 0 0 0.2rem rgba(231, 74, 59, 0.25); +} + +.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: #e74a3b; +} + +.was-validated .form-check-input:invalid ~ .invalid-feedback, +.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, +.form-check-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { + color: #e74a3b; +} + +.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { + border-color: #e74a3b; +} + +.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { + border-color: #ed7468; + background-color: #ed7468; +} + +.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(231, 74, 59, 0.25); +} + +.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { + border-color: #e74a3b; +} + +.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { + border-color: #e74a3b; +} + +.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { + border-color: #e74a3b; + box-shadow: 0 0 0 0.2rem rgba(231, 74, 59, 0.25); +} + +.form-inline { + display: flex; + flex-flow: row wrap; + align-items: center; +} + +.form-inline .form-check { + width: 100%; +} + +@media (min-width: 576px) { + .form-inline label { + display: flex; + align-items: center; + justify-content: center; + margin-bottom: 0; + } + .form-inline .form-group { + display: flex; + flex: 0 0 auto; + flex-flow: row wrap; + align-items: center; + margin-bottom: 0; + } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .form-inline .form-control-plaintext { + display: inline-block; + } + .form-inline .input-group, + .form-inline .custom-select { + width: auto; + } + .form-inline .form-check { + display: flex; + align-items: center; + justify-content: center; + width: auto; + padding-left: 0; + } + .form-inline .form-check-input { + position: relative; + flex-shrink: 0; + margin-top: 0; + margin-right: 0.25rem; + margin-left: 0; + } + .form-inline .custom-control { + align-items: center; + justify-content: center; + } + .form-inline .custom-control-label { + margin-bottom: 0; + } +} + +.btn { + display: inline-block; + font-weight: 400; + color: #858796; + text-align: center; + vertical-align: middle; + -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; + line-height: 1.5; + border-radius: 0.35rem; + 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; +} + +@media (prefers-reduced-motion: reduce) { + .btn { + transition: none; + } +} + +.btn:hover { + color: #858796; + text-decoration: none; +} + +.btn:focus, .btn.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25); +} + +.btn.disabled, .btn:disabled { + opacity: 0.65; +} + +.btn:not(:disabled):not(.disabled) { + cursor: pointer; +} + +a.btn.disabled, +fieldset:disabled a.btn { + pointer-events: none; +} + +.btn-primary { + color: #fff; + background-color: #4e73df; + border-color: #4e73df; +} + +.btn-primary:hover { + color: #fff; + background-color: #2e59d9; + border-color: #2653d4; +} + +.btn-primary:focus, .btn-primary.focus { + color: #fff; + background-color: #2e59d9; + border-color: #2653d4; + box-shadow: 0 0 0 0.2rem rgba(105, 136, 228, 0.5); +} + +.btn-primary.disabled, .btn-primary:disabled { + color: #fff; + background-color: #4e73df; + border-color: #4e73df; +} + +.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, +.show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #2653d4; + border-color: #244ec9; +} + +.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, +.show > .btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(105, 136, 228, 0.5); +} + +.btn-secondary { + color: #fff; + background-color: #858796; + border-color: #858796; +} + +.btn-secondary:hover { + color: #fff; + background-color: #717384; + border-color: #6b6d7d; +} + +.btn-secondary:focus, .btn-secondary.focus { + color: #fff; + background-color: #717384; + border-color: #6b6d7d; + box-shadow: 0 0 0 0.2rem rgba(151, 153, 166, 0.5); +} + +.btn-secondary.disabled, .btn-secondary:disabled { + color: #fff; + background-color: #858796; + border-color: #858796; +} + +.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, +.show > .btn-secondary.dropdown-toggle { + color: #fff; + background-color: #6b6d7d; + border-color: #656776; +} + +.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, +.show > .btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(151, 153, 166, 0.5); +} + +.btn-success { + color: #fff; + background-color: #1cc88a; + border-color: #1cc88a; +} + +.btn-success:hover { + color: #fff; + background-color: #17a673; + border-color: #169b6b; +} + +.btn-success:focus, .btn-success.focus { + color: #fff; + background-color: #17a673; + border-color: #169b6b; + box-shadow: 0 0 0 0.2rem rgba(62, 208, 156, 0.5); +} + +.btn-success.disabled, .btn-success:disabled { + color: #fff; + background-color: #1cc88a; + border-color: #1cc88a; +} + +.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, +.show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #169b6b; + border-color: #149063; +} + +.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, +.show > .btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(62, 208, 156, 0.5); +} + +.btn-info { + color: #fff; + background-color: #36b9cc; + border-color: #36b9cc; +} + +.btn-info:hover { + color: #fff; + background-color: #2c9faf; + border-color: #2a96a5; +} + +.btn-info:focus, .btn-info.focus { + color: #fff; + background-color: #2c9faf; + border-color: #2a96a5; + box-shadow: 0 0 0 0.2rem rgba(84, 196, 212, 0.5); +} + +.btn-info.disabled, .btn-info:disabled { + color: #fff; + background-color: #36b9cc; + border-color: #36b9cc; +} + +.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, +.show > .btn-info.dropdown-toggle { + color: #fff; + background-color: #2a96a5; + border-color: #278c9b; +} + +.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, +.show > .btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(84, 196, 212, 0.5); +} + +.btn-warning { + color: #fff; + background-color: #f6c23e; + border-color: #f6c23e; +} + +.btn-warning:hover { + color: #fff; + background-color: #f4b619; + border-color: #f4b30d; +} + +.btn-warning:focus, .btn-warning.focus { + color: #fff; + background-color: #f4b619; + border-color: #f4b30d; + box-shadow: 0 0 0 0.2rem rgba(247, 203, 91, 0.5); +} + +.btn-warning.disabled, .btn-warning:disabled { + color: #fff; + background-color: #f6c23e; + border-color: #f6c23e; +} + +.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, +.show > .btn-warning.dropdown-toggle { + color: #fff; + background-color: #f4b30d; + border-color: #e9aa0b; +} + +.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, +.show > .btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(247, 203, 91, 0.5); +} + +.btn-danger { + color: #fff; + background-color: #e74a3b; + border-color: #e74a3b; +} + +.btn-danger:hover { + color: #fff; + background-color: #e02d1b; + border-color: #d52a1a; +} + +.btn-danger:focus, .btn-danger.focus { + color: #fff; + background-color: #e02d1b; + border-color: #d52a1a; + box-shadow: 0 0 0 0.2rem rgba(235, 101, 88, 0.5); +} + +.btn-danger.disabled, .btn-danger:disabled { + color: #fff; + background-color: #e74a3b; + border-color: #e74a3b; +} + +.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, +.show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #d52a1a; + border-color: #ca2819; +} + +.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, +.show > .btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(235, 101, 88, 0.5); +} + +.btn-light { + color: #3a3b45; + background-color: #f8f9fc; + border-color: #f8f9fc; +} + +.btn-light:hover { + color: #3a3b45; + background-color: #dde2f1; + border-color: #d4daed; +} + +.btn-light:focus, .btn-light.focus { + color: #3a3b45; + background-color: #dde2f1; + border-color: #d4daed; + box-shadow: 0 0 0 0.2rem rgba(220, 221, 225, 0.5); +} + +.btn-light.disabled, .btn-light:disabled { + color: #3a3b45; + background-color: #f8f9fc; + border-color: #f8f9fc; +} + +.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, +.show > .btn-light.dropdown-toggle { + color: #3a3b45; + background-color: #d4daed; + border-color: #cbd3e9; +} + +.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, +.show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(220, 221, 225, 0.5); +} + +.btn-dark { + color: #fff; + background-color: #5a5c69; + border-color: #5a5c69; +} + +.btn-dark:hover { + color: #fff; + background-color: #484a54; + border-color: #42444e; +} + +.btn-dark:focus, .btn-dark.focus { + color: #fff; + background-color: #484a54; + border-color: #42444e; + box-shadow: 0 0 0 0.2rem rgba(115, 116, 128, 0.5); +} + +.btn-dark.disabled, .btn-dark:disabled { + color: #fff; + background-color: #5a5c69; + border-color: #5a5c69; +} + +.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, +.show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #42444e; + border-color: #3d3e47; +} + +.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, +.show > .btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(115, 116, 128, 0.5); +} + +.btn-outline-primary { + color: #4e73df; + border-color: #4e73df; +} + +.btn-outline-primary:hover { + color: #fff; + background-color: #4e73df; + border-color: #4e73df; +} + +.btn-outline-primary:focus, .btn-outline-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.5); +} + +.btn-outline-primary.disabled, .btn-outline-primary:disabled { + color: #4e73df; + background-color: transparent; +} + +.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, +.show > .btn-outline-primary.dropdown-toggle { + color: #fff; + background-color: #4e73df; + border-color: #4e73df; +} + +.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.5); +} + +.btn-outline-secondary { + color: #858796; + border-color: #858796; +} + +.btn-outline-secondary:hover { + color: #fff; + background-color: #858796; + border-color: #858796; +} + +.btn-outline-secondary:focus, .btn-outline-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(133, 135, 150, 0.5); +} + +.btn-outline-secondary.disabled, .btn-outline-secondary:disabled { + color: #858796; + background-color: transparent; +} + +.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, +.show > .btn-outline-secondary.dropdown-toggle { + color: #fff; + background-color: #858796; + border-color: #858796; +} + +.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(133, 135, 150, 0.5); +} + +.btn-outline-success { + color: #1cc88a; + border-color: #1cc88a; +} + +.btn-outline-success:hover { + color: #fff; + background-color: #1cc88a; + border-color: #1cc88a; +} + +.btn-outline-success:focus, .btn-outline-success.focus { + box-shadow: 0 0 0 0.2rem rgba(28, 200, 138, 0.5); +} + +.btn-outline-success.disabled, .btn-outline-success:disabled { + color: #1cc88a; + background-color: transparent; +} + +.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, +.show > .btn-outline-success.dropdown-toggle { + color: #fff; + background-color: #1cc88a; + border-color: #1cc88a; +} + +.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(28, 200, 138, 0.5); +} + +.btn-outline-info { + color: #36b9cc; + border-color: #36b9cc; +} + +.btn-outline-info:hover { + color: #fff; + background-color: #36b9cc; + border-color: #36b9cc; +} + +.btn-outline-info:focus, .btn-outline-info.focus { + box-shadow: 0 0 0 0.2rem rgba(54, 185, 204, 0.5); +} + +.btn-outline-info.disabled, .btn-outline-info:disabled { + color: #36b9cc; + background-color: transparent; +} + +.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, +.show > .btn-outline-info.dropdown-toggle { + color: #fff; + background-color: #36b9cc; + border-color: #36b9cc; +} + +.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(54, 185, 204, 0.5); +} + +.btn-outline-warning { + color: #f6c23e; + border-color: #f6c23e; +} + +.btn-outline-warning:hover { + color: #fff; + background-color: #f6c23e; + border-color: #f6c23e; +} + +.btn-outline-warning:focus, .btn-outline-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(246, 194, 62, 0.5); +} + +.btn-outline-warning.disabled, .btn-outline-warning:disabled { + color: #f6c23e; + background-color: transparent; +} + +.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, +.show > .btn-outline-warning.dropdown-toggle { + color: #fff; + background-color: #f6c23e; + border-color: #f6c23e; +} + +.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(246, 194, 62, 0.5); +} + +.btn-outline-danger { + color: #e74a3b; + border-color: #e74a3b; +} + +.btn-outline-danger:hover { + color: #fff; + background-color: #e74a3b; + border-color: #e74a3b; +} + +.btn-outline-danger:focus, .btn-outline-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(231, 74, 59, 0.5); +} + +.btn-outline-danger.disabled, .btn-outline-danger:disabled { + color: #e74a3b; + background-color: transparent; +} + +.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, +.show > .btn-outline-danger.dropdown-toggle { + color: #fff; + background-color: #e74a3b; + border-color: #e74a3b; +} + +.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(231, 74, 59, 0.5); +} + +.btn-outline-light { + color: #f8f9fc; + border-color: #f8f9fc; +} + +.btn-outline-light:hover { + color: #3a3b45; + background-color: #f8f9fc; + border-color: #f8f9fc; +} + +.btn-outline-light:focus, .btn-outline-light.focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 252, 0.5); +} + +.btn-outline-light.disabled, .btn-outline-light:disabled { + color: #f8f9fc; + background-color: transparent; +} + +.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, +.show > .btn-outline-light.dropdown-toggle { + color: #3a3b45; + background-color: #f8f9fc; + border-color: #f8f9fc; +} + +.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 252, 0.5); +} + +.btn-outline-dark { + color: #5a5c69; + border-color: #5a5c69; +} + +.btn-outline-dark:hover { + color: #fff; + background-color: #5a5c69; + border-color: #5a5c69; +} + +.btn-outline-dark:focus, .btn-outline-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(90, 92, 105, 0.5); +} + +.btn-outline-dark.disabled, .btn-outline-dark:disabled { + color: #5a5c69; + background-color: transparent; +} + +.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, +.show > .btn-outline-dark.dropdown-toggle { + color: #fff; + background-color: #5a5c69; + border-color: #5a5c69; +} + +.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(90, 92, 105, 0.5); +} + +.btn-link { + font-weight: 400; + color: #4e73df; + text-decoration: none; +} + +.btn-link:hover { + color: #224abe; + text-decoration: underline; +} + +.btn-link:focus, .btn-link.focus { + text-decoration: underline; +} + +.btn-link:disabled, .btn-link.disabled { + color: #858796; + pointer-events: none; +} + +.btn-lg, .btn-group-lg > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +.btn-sm, .btn-group-sm > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +.btn-block { + display: block; + width: 100%; +} + +.btn-block + .btn-block { + margin-top: 0.5rem; +} + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} + +.fade { + transition: opacity 0.15s linear; +} + +@media (prefers-reduced-motion: reduce) { + .fade { + transition: none; + } +} + +.fade:not(.show) { + opacity: 0; +} + +.collapse:not(.show) { + display: none; +} + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + transition: height 0.15s ease; +} + +@media (prefers-reduced-motion: reduce) { + .collapsing { + transition: none; + } +} + +.dropup, +.dropright, +.dropdown, +.dropleft { + position: relative; +} + +.dropdown-toggle { + white-space: nowrap; +} + +.dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; +} + +.dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0.125rem 0 0; + font-size: 0.85rem; + color: #858796; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #e3e6f0; + border-radius: 0.35rem; +} + +.dropdown-menu-left { + right: auto; + left: 0; +} + +.dropdown-menu-right { + right: 0; + left: auto; +} + +@media (min-width: 576px) { + .dropdown-menu-sm-left { + right: auto; + left: 0; + } + .dropdown-menu-sm-right { + right: 0; + left: auto; + } +} + +@media (min-width: 768px) { + .dropdown-menu-md-left { + right: auto; + left: 0; + } + .dropdown-menu-md-right { + right: 0; + left: auto; + } +} + +@media (min-width: 992px) { + .dropdown-menu-lg-left { + right: auto; + left: 0; + } + .dropdown-menu-lg-right { + right: 0; + left: auto; + } +} + +@media (min-width: 1200px) { + .dropdown-menu-xl-left { + right: auto; + left: 0; + } + .dropdown-menu-xl-right { + right: 0; + left: auto; + } +} + +.dropup .dropdown-menu { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: 0.125rem; +} + +.dropup .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; +} + +.dropup .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropright .dropdown-menu { + top: 0; + right: auto; + left: 100%; + margin-top: 0; + margin-left: 0.125rem; +} + +.dropright .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; +} + +.dropright .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropright .dropdown-toggle::after { + vertical-align: 0; +} + +.dropleft .dropdown-menu { + top: 0; + right: 100%; + left: auto; + margin-top: 0; + margin-right: 0.125rem; +} + +.dropleft .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; +} + +.dropleft .dropdown-toggle::after { + display: none; +} + +.dropleft .dropdown-toggle::before { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; +} + +.dropleft .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropleft .dropdown-toggle::before { + vertical-align: 0; +} + +.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] { + right: auto; + bottom: auto; +} + +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid #eaecf4; +} + +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1.5rem; + clear: both; + font-weight: 400; + color: #3a3b45; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0; +} + +.dropdown-item:hover, .dropdown-item:focus { + color: #2e2f37; + text-decoration: none; + background-color: #eaecf4; +} + +.dropdown-item.active, .dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #4e73df; +} + +.dropdown-item.disabled, .dropdown-item:disabled { + color: #b7b9cc; + pointer-events: none; + background-color: transparent; +} + +.dropdown-menu.show { + display: block; +} + +.dropdown-header { + display: block; + padding: 0.5rem 1.5rem; + margin-bottom: 0; + font-size: 0.875rem; + color: #858796; + white-space: nowrap; +} + +.dropdown-item-text { + display: block; + padding: 0.25rem 1.5rem; + color: #3a3b45; +} + +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-flex; + vertical-align: middle; +} + +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + flex: 1 1 auto; +} + +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover { + z-index: 1; +} + +.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, +.btn-group-vertical > .btn:focus, +.btn-group-vertical > .btn:active, +.btn-group-vertical > .btn.active { + z-index: 1; +} + +.btn-toolbar { + display: flex; + flex-wrap: wrap; + justify-content: flex-start; +} + +.btn-toolbar .input-group { + width: auto; +} + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) { + margin-left: -1px; +} + +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.dropdown-toggle-split { + padding-right: 0.5625rem; + padding-left: 0.5625rem; +} + +.dropdown-toggle-split::after, +.dropup .dropdown-toggle-split::after, +.dropright .dropdown-toggle-split::after { + margin-left: 0; +} + +.dropleft .dropdown-toggle-split::before { + margin-right: 0; +} + +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; +} + +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { + padding-right: 0.75rem; + padding-left: 0.75rem; +} + +.btn-group-vertical { + flex-direction: column; + align-items: flex-start; + 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-right-radius: 0; + border-bottom-left-radius: 0; +} + +.btn-group-vertical > .btn:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.btn-group-toggle > .btn, +.btn-group-toggle > .btn-group > .btn { + margin-bottom: 0; +} + +.btn-group-toggle > .btn input[type="radio"], +.btn-group-toggle > .btn input[type="checkbox"], +.btn-group-toggle > .btn-group > .btn input[type="radio"], +.btn-group-toggle > .btn-group > .btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} + +.input-group { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: stretch; + width: 100%; +} + +.input-group > .form-control, +.input-group > .form-control-plaintext, +.input-group > .custom-select, +.input-group > .custom-file { + position: relative; + flex: 1 1 auto; + width: 1%; + min-width: 0; + margin-bottom: 0; +} + +.input-group > .form-control + .form-control, +.input-group > .form-control + .custom-select, +.input-group > .form-control + .custom-file, +.input-group > .form-control-plaintext + .form-control, +.input-group > .form-control-plaintext + .custom-select, +.input-group > .form-control-plaintext + .custom-file, +.input-group > .custom-select + .form-control, +.input-group > .custom-select + .custom-select, +.input-group > .custom-select + .custom-file, +.input-group > .custom-file + .form-control, +.input-group > .custom-file + .custom-select, +.input-group > .custom-file + .custom-file { + margin-left: -1px; +} + +.input-group > .form-control:focus, +.input-group > .custom-select:focus, +.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { + z-index: 3; +} + +.input-group > .custom-file .custom-file-input:focus { + z-index: 4; +} + +.input-group > .form-control:not(:first-child), +.input-group > .custom-select:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.input-group > .custom-file { + display: flex; + align-items: center; +} + +.input-group > .custom-file:not(:last-child) .custom-file-label, +.input-group > .custom-file:not(:first-child) .custom-file-label { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.input-group:not(.has-validation) > .form-control:not(:last-child), +.input-group:not(.has-validation) > .custom-select:not(:last-child), +.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group.has-validation > .form-control:nth-last-child(n + 3), +.input-group.has-validation > .custom-select:nth-last-child(n + 3), +.input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label::after { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group-prepend, +.input-group-append { + display: flex; +} + +.input-group-prepend .btn, +.input-group-append .btn { + position: relative; + z-index: 2; +} + +.input-group-prepend .btn:focus, +.input-group-append .btn:focus { + z-index: 3; +} + +.input-group-prepend .btn + .btn, +.input-group-prepend .btn + .input-group-text, +.input-group-prepend .input-group-text + .input-group-text, +.input-group-prepend .input-group-text + .btn, +.input-group-append .btn + .btn, +.input-group-append .btn + .input-group-text, +.input-group-append .input-group-text + .input-group-text, +.input-group-append .input-group-text + .btn { + margin-left: -1px; +} + +.input-group-prepend { + margin-right: -1px; +} + +.input-group-append { + margin-left: -1px; +} + +.input-group-text { + display: flex; + align-items: center; + padding: 0.375rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #6e707e; + text-align: center; + white-space: nowrap; + background-color: #eaecf4; + border: 1px solid #d1d3e2; + border-radius: 0.35rem; +} + +.input-group-text input[type="radio"], +.input-group-text input[type="checkbox"] { + margin-top: 0; +} + +.input-group-lg > .form-control:not(textarea), +.input-group-lg > .custom-select { + height: calc(1.5em + 1rem + 2px); +} + +.input-group-lg > .form-control, +.input-group-lg > .custom-select, +.input-group-lg > .input-group-prepend > .input-group-text, +.input-group-lg > .input-group-append > .input-group-text, +.input-group-lg > .input-group-prepend > .btn, +.input-group-lg > .input-group-append > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +.input-group-sm > .form-control:not(textarea), +.input-group-sm > .custom-select { + height: calc(1.5em + 0.5rem + 2px); +} + +.input-group-sm > .form-control, +.input-group-sm > .custom-select, +.input-group-sm > .input-group-prepend > .input-group-text, +.input-group-sm > .input-group-append > .input-group-text, +.input-group-sm > .input-group-prepend > .btn, +.input-group-sm > .input-group-append > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +.input-group-lg > .custom-select, +.input-group-sm > .custom-select { + padding-right: 1.75rem; +} + +.input-group > .input-group-prepend > .btn, +.input-group > .input-group-prepend > .input-group-text, +.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn, +.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text, +.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .btn, +.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .input-group-text, +.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group > .input-group-append > .btn, +.input-group > .input-group-append > .input-group-text, +.input-group > .input-group-prepend:not(:first-child) > .btn, +.input-group > .input-group-prepend:not(:first-child) > .input-group-text, +.input-group > .input-group-prepend:first-child > .btn:not(:first-child), +.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.custom-control { + position: relative; + z-index: 1; + display: block; + min-height: 1.5rem; + padding-left: 1.5rem; + -webkit-print-color-adjust: exact; + color-adjust: exact; +} + +.custom-control-inline { + display: inline-flex; + margin-right: 1rem; +} + +.custom-control-input { + position: absolute; + left: 0; + z-index: -1; + width: 1rem; + height: 1.25rem; + opacity: 0; +} + +.custom-control-input:checked ~ .custom-control-label::before { + color: #fff; + border-color: #4e73df; + background-color: #4e73df; +} + +.custom-control-input:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25); +} + +.custom-control-input:focus:not(:checked) ~ .custom-control-label::before { + border-color: #bac8f3; +} + +.custom-control-input:not(:disabled):active ~ .custom-control-label::before { + color: #fff; + background-color: #e5ebfa; + border-color: #e5ebfa; +} + +.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label { + color: #858796; +} + +.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before { + background-color: #eaecf4; +} + +.custom-control-label { + position: relative; + margin-bottom: 0; + vertical-align: top; +} + +.custom-control-label::before { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + content: ""; + background-color: #fff; + border: #b7b9cc solid 1px; +} + +.custom-control-label::after { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + content: ""; + background: 50% / 50% 50% no-repeat; +} + +.custom-checkbox .custom-control-label::before { + border-radius: 0.35rem; +} + +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e"); +} + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { + border-color: #4e73df; + background-color: #4e73df; +} + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); +} + +.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(78, 115, 223, 0.5); +} + +.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { + background-color: rgba(78, 115, 223, 0.5); +} + +.custom-radio .custom-control-label::before { + border-radius: 50%; +} + +.custom-radio .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); +} + +.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(78, 115, 223, 0.5); +} + +.custom-switch { + padding-left: 2.25rem; +} + +.custom-switch .custom-control-label::before { + left: -2.25rem; + width: 1.75rem; + pointer-events: all; + border-radius: 0.5rem; +} + +.custom-switch .custom-control-label::after { + top: calc(0.25rem + 2px); + left: calc(-2.25rem + 2px); + width: calc(1rem - 4px); + height: calc(1rem - 4px); + background-color: #b7b9cc; + border-radius: 0.5rem; + transition: transform 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; +} + +@media (prefers-reduced-motion: reduce) { + .custom-switch .custom-control-label::after { + transition: none; + } +} + +.custom-switch .custom-control-input:checked ~ .custom-control-label::after { + background-color: #fff; + transform: translateX(0.75rem); +} + +.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(78, 115, 223, 0.5); +} + +.custom-select { + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 1.75rem 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #6e707e; + vertical-align: middle; + background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%235a5c69' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat; + border: 1px solid #d1d3e2; + border-radius: 0.35rem; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +.custom-select:focus { + border-color: #bac8f3; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25); +} + +.custom-select:focus::-ms-value { + color: #6e707e; + background-color: #fff; +} + +.custom-select[multiple], .custom-select[size]:not([size="1"]) { + height: auto; + padding-right: 0.75rem; + background-image: none; +} + +.custom-select:disabled { + color: #858796; + background-color: #eaecf4; +} + +.custom-select::-ms-expand { + display: none; +} + +.custom-select:-moz-focusring { + color: transparent; + text-shadow: 0 0 0 #6e707e; +} + +.custom-select-sm { + height: calc(1.5em + 0.5rem + 2px); + padding-top: 0.25rem; + padding-bottom: 0.25rem; + padding-left: 0.5rem; + font-size: 0.875rem; +} + +.custom-select-lg { + height: calc(1.5em + 1rem + 2px); + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1rem; + font-size: 1.25rem; +} + +.custom-file { + position: relative; + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin-bottom: 0; +} + +.custom-file-input { + position: relative; + z-index: 2; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin: 0; + overflow: hidden; + opacity: 0; +} + +.custom-file-input:focus ~ .custom-file-label { + border-color: #bac8f3; + box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25); +} + +.custom-file-input[disabled] ~ .custom-file-label, +.custom-file-input:disabled ~ .custom-file-label { + background-color: #eaecf4; +} + +.custom-file-input:lang(en) ~ .custom-file-label::after { + content: "Browse"; +} + +.custom-file-input ~ .custom-file-label[data-browse]::after { + content: attr(data-browse); +} + +.custom-file-label { + position: absolute; + top: 0; + right: 0; + left: 0; + z-index: 1; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + overflow: hidden; + font-weight: 400; + line-height: 1.5; + color: #6e707e; + background-color: #fff; + border: 1px solid #d1d3e2; + border-radius: 0.35rem; +} + +.custom-file-label::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + z-index: 3; + display: block; + height: calc(1.5em + 0.75rem); + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #6e707e; + content: "Browse"; + background-color: #eaecf4; + border-left: inherit; + border-radius: 0 0.35rem 0.35rem 0; +} + +.custom-range { + width: 100%; + height: 1.4rem; + padding: 0; + background-color: transparent; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +.custom-range:focus { + outline: 0; +} + +.custom-range:focus::-webkit-slider-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(78, 115, 223, 0.25); +} + +.custom-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(78, 115, 223, 0.25); +} + +.custom-range:focus::-ms-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(78, 115, 223, 0.25); +} + +.custom-range::-moz-focus-outer { + border: 0; +} + +.custom-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + background-color: #4e73df; + border: 0; + border-radius: 1rem; + -webkit-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-appearance: none; + appearance: none; +} + +@media (prefers-reduced-motion: reduce) { + .custom-range::-webkit-slider-thumb { + -webkit-transition: none; + transition: none; + } +} + +.custom-range::-webkit-slider-thumb:active { + background-color: #e5ebfa; +} + +.custom-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dddfeb; + border-color: transparent; + border-radius: 1rem; +} + +.custom-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #4e73df; + 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) { + .custom-range::-moz-range-thumb { + -moz-transition: none; + transition: none; + } +} + +.custom-range::-moz-range-thumb:active { + background-color: #e5ebfa; +} + +.custom-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dddfeb; + border-color: transparent; + border-radius: 1rem; +} + +.custom-range::-ms-thumb { + width: 1rem; + height: 1rem; + margin-top: 0; + margin-right: 0.2rem; + margin-left: 0.2rem; + background-color: #4e73df; + border: 0; + border-radius: 1rem; + -ms-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; + appearance: none; +} + +@media (prefers-reduced-motion: reduce) { + .custom-range::-ms-thumb { + -ms-transition: none; + transition: none; + } +} + +.custom-range::-ms-thumb:active { + background-color: #e5ebfa; +} + +.custom-range::-ms-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: transparent; + border-color: transparent; + border-width: 0.5rem; +} + +.custom-range::-ms-fill-lower { + background-color: #dddfeb; + border-radius: 1rem; +} + +.custom-range::-ms-fill-upper { + margin-right: 15px; + background-color: #dddfeb; + border-radius: 1rem; +} + +.custom-range:disabled::-webkit-slider-thumb { + background-color: #b7b9cc; +} + +.custom-range:disabled::-webkit-slider-runnable-track { + cursor: default; +} + +.custom-range:disabled::-moz-range-thumb { + background-color: #b7b9cc; +} + +.custom-range:disabled::-moz-range-track { + cursor: default; +} + +.custom-range:disabled::-ms-thumb { + background-color: #b7b9cc; +} + +.custom-control-label::before, +.custom-file-label, +.custom-select { + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .custom-control-label::before, + .custom-file-label, + .custom-select { + transition: none; + } +} + +.nav { + display: flex; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +.nav-link { + display: block; + padding: 0.5rem 1rem; +} + +.nav-link:hover, .nav-link:focus { + text-decoration: none; +} + +.nav-link.disabled { + color: #858796; + pointer-events: none; + cursor: default; +} + +.nav-tabs { + border-bottom: 1px solid #dddfeb; +} + +.nav-tabs .nav-link { + margin-bottom: -1px; + border: 1px solid transparent; + border-top-left-radius: 0.35rem; + border-top-right-radius: 0.35rem; +} + +.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + border-color: #eaecf4 #eaecf4 #dddfeb; +} + +.nav-tabs .nav-link.disabled { + color: #858796; + background-color: transparent; + border-color: transparent; +} + +.nav-tabs .nav-link.active, +.nav-tabs .nav-item.show .nav-link { + color: #6e707e; + background-color: #fff; + border-color: #dddfeb #dddfeb #fff; +} + +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.nav-pills .nav-link { + border-radius: 0.35rem; +} + +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #4e73df; +} + +.nav-fill > .nav-link, +.nav-fill .nav-item { + flex: 1 1 auto; + text-align: center; +} + +.nav-justified > .nav-link, +.nav-justified .nav-item { + flex-basis: 0; + flex-grow: 1; + text-align: center; +} + +.tab-content > .tab-pane { + display: none; +} + +.tab-content > .active { + display: block; +} + +.navbar { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: space-between; + padding: 0.5rem 1rem; +} + +.navbar .container, +.navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl { + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: space-between; +} + +.navbar-brand { + display: inline-block; + padding-top: 0.3125rem; + padding-bottom: 0.3125rem; + margin-right: 1rem; + font-size: 1.25rem; + line-height: inherit; + white-space: nowrap; +} + +.navbar-brand:hover, .navbar-brand:focus { + text-decoration: none; +} + +.navbar-nav { + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +.navbar-nav .nav-link { + padding-right: 0; + padding-left: 0; +} + +.navbar-nav .dropdown-menu { + position: static; + float: none; +} + +.navbar-text { + display: inline-block; + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + +.navbar-collapse { + flex-basis: 100%; + flex-grow: 1; + align-items: center; +} + +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.25rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 0.35rem; +} + +.navbar-toggler:hover, .navbar-toggler:focus { + text-decoration: none; +} + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + content: ""; + background: 50% / 100% 100% no-repeat; +} + +.navbar-nav-scroll { + max-height: 75vh; + overflow-y: auto; +} + +@media (max-width: 575.98px) { + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 576px) { + .navbar-expand-sm { + flex-flow: row nowrap; + justify-content: flex-start; + } + .navbar-expand-sm .navbar-nav { + flex-direction: row; + } + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl { + flex-wrap: nowrap; + } + .navbar-expand-sm .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-sm .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-sm .navbar-toggler { + display: none; + } +} + +@media (max-width: 767.98px) { + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 768px) { + .navbar-expand-md { + flex-flow: row nowrap; + justify-content: flex-start; + } + .navbar-expand-md .navbar-nav { + flex-direction: row; + } + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-md .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl { + flex-wrap: nowrap; + } + .navbar-expand-md .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-md .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-md .navbar-toggler { + display: none; + } +} + +@media (max-width: 991.98px) { + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 992px) { + .navbar-expand-lg { + flex-flow: row nowrap; + justify-content: flex-start; + } + .navbar-expand-lg .navbar-nav { + flex-direction: row; + } + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl { + flex-wrap: nowrap; + } + .navbar-expand-lg .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-lg .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-lg .navbar-toggler { + display: none; + } +} + +@media (max-width: 1199.98px) { + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 1200px) { + .navbar-expand-xl { + flex-flow: row nowrap; + justify-content: flex-start; + } + .navbar-expand-xl .navbar-nav { + flex-direction: row; + } + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl { + flex-wrap: nowrap; + } + .navbar-expand-xl .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-xl .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-xl .navbar-toggler { + display: none; + } +} + +.navbar-expand { + flex-flow: row nowrap; + justify-content: flex-start; +} + +.navbar-expand > .container, +.navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl { + padding-right: 0; + padding-left: 0; +} + +.navbar-expand .navbar-nav { + flex-direction: row; +} + +.navbar-expand .navbar-nav .dropdown-menu { + position: absolute; +} + +.navbar-expand .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; +} + +.navbar-expand > .container, +.navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl { + flex-wrap: nowrap; +} + +.navbar-expand .navbar-nav-scroll { + overflow: visible; +} + +.navbar-expand .navbar-collapse { + display: flex !important; + flex-basis: auto; +} + +.navbar-expand .navbar-toggler { + display: none; +} + +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, 0.5); +} + +.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { + color: rgba(0, 0, 0, 0.7); +} + +.navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.3); +} + +.navbar-light .navbar-nav .show > .nav-link, +.navbar-light .navbar-nav .active > .nav-link, +.navbar-light .navbar-nav .nav-link.show, +.navbar-light .navbar-nav .nav-link.active { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.5); + border-color: rgba(0, 0, 0, 0.1); +} + +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} + +.navbar-light .navbar-text { + color: rgba(0, 0, 0, 0.5); +} + +.navbar-light .navbar-text a { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { + color: rgba(0, 0, 0, 0.9); +} + +.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.5); +} + +.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { + color: rgba(255, 255, 255, 0.75); +} + +.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 .active > .nav-link, +.navbar-dark .navbar-nav .nav-link.show, +.navbar-dark .navbar-nav .nav-link.active { + color: #fff; +} + +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.5); + 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' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%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.5); +} + +.navbar-dark .navbar-text a { + color: #fff; +} + +.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { + color: #fff; +} + +.card { + position: relative; + display: flex; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid #e3e6f0; + border-radius: 0.35rem; +} + +.card > hr { + margin-right: 0; + margin-left: 0; +} + +.card > .list-group { + border-top: inherit; + border-bottom: inherit; +} + +.card > .list-group:first-child { + border-top-width: 0; + border-top-left-radius: calc(0.35rem - 1px); + border-top-right-radius: calc(0.35rem - 1px); +} + +.card > .list-group:last-child { + border-bottom-width: 0; + border-bottom-right-radius: calc(0.35rem - 1px); + border-bottom-left-radius: calc(0.35rem - 1px); +} + +.card > .card-header + .list-group, +.card > .list-group + .card-footer { + border-top: 0; +} + +.card-body { + flex: 1 1 auto; + min-height: 1px; + padding: 1.25rem; +} + +.card-title { + margin-bottom: 0.75rem; +} + +.card-subtitle { + margin-top: -0.375rem; + margin-bottom: 0; +} + +.card-text:last-child { + margin-bottom: 0; +} + +.card-link:hover { + text-decoration: none; +} + +.card-link + .card-link { + margin-left: 1.25rem; +} + +.card-header { + padding: 0.75rem 1.25rem; + margin-bottom: 0; + background-color: #f8f9fc; + border-bottom: 1px solid #e3e6f0; +} + +.card-header:first-child { + border-radius: calc(0.35rem - 1px) calc(0.35rem - 1px) 0 0; +} + +.card-footer { + padding: 0.75rem 1.25rem; + background-color: #f8f9fc; + border-top: 1px solid #e3e6f0; +} + +.card-footer:last-child { + border-radius: 0 0 calc(0.35rem - 1px) calc(0.35rem - 1px); +} + +.card-header-tabs { + margin-right: -0.625rem; + margin-bottom: -0.75rem; + margin-left: -0.625rem; + border-bottom: 0; +} + +.card-header-pills { + margin-right: -0.625rem; + margin-left: -0.625rem; +} + +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1.25rem; + border-radius: calc(0.35rem - 1px); +} + +.card-img, +.card-img-top, +.card-img-bottom { + flex-shrink: 0; + width: 100%; +} + +.card-img, +.card-img-top { + border-top-left-radius: calc(0.35rem - 1px); + border-top-right-radius: calc(0.35rem - 1px); +} + +.card-img, +.card-img-bottom { + border-bottom-right-radius: calc(0.35rem - 1px); + border-bottom-left-radius: calc(0.35rem - 1px); +} + +.card-deck .card { + margin-bottom: 0.75rem; +} + +@media (min-width: 576px) { + .card-deck { + display: flex; + flex-flow: row wrap; + margin-right: -0.75rem; + margin-left: -0.75rem; + } + .card-deck .card { + flex: 1 0 0%; + margin-right: 0.75rem; + margin-bottom: 0; + margin-left: 0.75rem; + } +} + +.card-group > .card { + margin-bottom: 0.75rem; +} + +@media (min-width: 576px) { + .card-group { + display: flex; + flex-flow: row wrap; + } + .card-group > .card { + flex: 1 0 0%; + margin-bottom: 0; + } + .card-group > .card + .card { + margin-left: 0; + border-left: 0; + } + .card-group > .card:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + .card-group > .card:not(:last-child) .card-img-top, + .card-group > .card:not(:last-child) .card-header { + border-top-right-radius: 0; + } + .card-group > .card:not(:last-child) .card-img-bottom, + .card-group > .card:not(:last-child) .card-footer { + border-bottom-right-radius: 0; + } + .card-group > .card:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + .card-group > .card:not(:first-child) .card-img-top, + .card-group > .card:not(:first-child) .card-header { + border-top-left-radius: 0; + } + .card-group > .card:not(:first-child) .card-img-bottom, + .card-group > .card:not(:first-child) .card-footer { + border-bottom-left-radius: 0; + } +} + +.card-columns .card { + margin-bottom: 0.75rem; +} + +@media (min-width: 576px) { + .card-columns { + -moz-column-count: 3; + column-count: 3; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + orphans: 1; + widows: 1; + } + .card-columns .card { + display: inline-block; + width: 100%; + } +} + +.accordion { + overflow-anchor: none; +} + +.accordion > .card { + overflow: hidden; +} + +.accordion > .card:not(:last-of-type) { + border-bottom: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +.accordion > .card:not(:first-of-type) { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.accordion > .card > .card-header { + border-radius: 0; + margin-bottom: -1px; +} + +.breadcrumb { + display: flex; + flex-wrap: wrap; + padding: 0.75rem 1rem; + margin-bottom: 1rem; + list-style: none; + background-color: #eaecf4; + border-radius: 0.35rem; +} + +.breadcrumb-item + .breadcrumb-item { + padding-left: 0.5rem; +} + +.breadcrumb-item + .breadcrumb-item::before { + float: left; + padding-right: 0.5rem; + color: #858796; + content: "/"; +} + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: underline; +} + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: none; +} + +.breadcrumb-item.active { + color: #858796; +} + +.pagination { + display: flex; + padding-left: 0; + list-style: none; + border-radius: 0.35rem; +} + +.page-link { + position: relative; + display: block; + padding: 0.5rem 0.75rem; + margin-left: -1px; + line-height: 1.25; + color: #4e73df; + background-color: #fff; + border: 1px solid #dddfeb; +} + +.page-link:hover { + z-index: 2; + color: #224abe; + text-decoration: none; + background-color: #eaecf4; + border-color: #dddfeb; +} + +.page-link:focus { + z-index: 3; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25); +} + +.page-item:first-child .page-link { + margin-left: 0; + border-top-left-radius: 0.35rem; + border-bottom-left-radius: 0.35rem; +} + +.page-item:last-child .page-link { + border-top-right-radius: 0.35rem; + border-bottom-right-radius: 0.35rem; +} + +.page-item.active .page-link { + z-index: 3; + color: #fff; + background-color: #4e73df; + border-color: #4e73df; +} + +.page-item.disabled .page-link { + color: #858796; + pointer-events: none; + cursor: auto; + background-color: #fff; + border-color: #dddfeb; +} + +.pagination-lg .page-link { + padding: 0.75rem 1.5rem; + font-size: 1.25rem; + line-height: 1.5; +} + +.pagination-lg .page-item:first-child .page-link { + border-top-left-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; +} + +.pagination-lg .page-item:last-child .page-link { + border-top-right-radius: 0.3rem; + border-bottom-right-radius: 0.3rem; +} + +.pagination-sm .page-link { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; +} + +.pagination-sm .page-item:first-child .page-link { + border-top-left-radius: 0.2rem; + border-bottom-left-radius: 0.2rem; +} + +.pagination-sm .page-item:last-child .page-link { + border-top-right-radius: 0.2rem; + border-bottom-right-radius: 0.2rem; +} + +.badge { + display: inline-block; + padding: 0.25em 0.4em; + font-size: 75%; + font-weight: 700; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.35rem; + 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; +} + +@media (prefers-reduced-motion: reduce) { + .badge { + transition: none; + } +} + +a.badge:hover, a.badge:focus { + text-decoration: none; +} + +.badge:empty { + display: none; +} + +.btn .badge { + position: relative; + top: -1px; +} + +.badge-pill { + padding-right: 0.6em; + padding-left: 0.6em; + border-radius: 10rem; +} + +.badge-primary { + color: #fff; + background-color: #4e73df; +} + +a.badge-primary:hover, a.badge-primary:focus { + color: #fff; + background-color: #2653d4; +} + +a.badge-primary:focus, a.badge-primary.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.5); +} + +.badge-secondary { + color: #fff; + background-color: #858796; +} + +a.badge-secondary:hover, a.badge-secondary:focus { + color: #fff; + background-color: #6b6d7d; +} + +a.badge-secondary:focus, a.badge-secondary.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(133, 135, 150, 0.5); +} + +.badge-success { + color: #fff; + background-color: #1cc88a; +} + +a.badge-success:hover, a.badge-success:focus { + color: #fff; + background-color: #169b6b; +} + +a.badge-success:focus, a.badge-success.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(28, 200, 138, 0.5); +} + +.badge-info { + color: #fff; + background-color: #36b9cc; +} + +a.badge-info:hover, a.badge-info:focus { + color: #fff; + background-color: #2a96a5; +} + +a.badge-info:focus, a.badge-info.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(54, 185, 204, 0.5); +} + +.badge-warning { + color: #fff; + background-color: #f6c23e; +} + +a.badge-warning:hover, a.badge-warning:focus { + color: #fff; + background-color: #f4b30d; +} + +a.badge-warning:focus, a.badge-warning.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(246, 194, 62, 0.5); +} + +.badge-danger { + color: #fff; + background-color: #e74a3b; +} + +a.badge-danger:hover, a.badge-danger:focus { + color: #fff; + background-color: #d52a1a; +} + +a.badge-danger:focus, a.badge-danger.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(231, 74, 59, 0.5); +} + +.badge-light { + color: #3a3b45; + background-color: #f8f9fc; +} + +a.badge-light:hover, a.badge-light:focus { + color: #3a3b45; + background-color: #d4daed; +} + +a.badge-light:focus, a.badge-light.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(248, 249, 252, 0.5); +} + +.badge-dark { + color: #fff; + background-color: #5a5c69; +} + +a.badge-dark:hover, a.badge-dark:focus { + color: #fff; + background-color: #42444e; +} + +a.badge-dark:focus, a.badge-dark.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(90, 92, 105, 0.5); +} + +.jumbotron { + padding: 2rem 1rem; + margin-bottom: 2rem; + background-color: #eaecf4; + border-radius: 0.3rem; +} + +@media (min-width: 576px) { + .jumbotron { + padding: 4rem 2rem; + } +} + +.jumbotron-fluid { + padding-right: 0; + padding-left: 0; + border-radius: 0; +} + +.alert { + position: relative; + padding: 0.75rem 1.25rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: 0.35rem; +} + +.alert-heading { + color: inherit; +} + +.alert-link { + font-weight: 700; +} + +.alert-dismissible { + padding-right: 4rem; +} + +.alert-dismissible .close { + position: absolute; + top: 0; + right: 0; + z-index: 2; + padding: 0.75rem 1.25rem; + color: inherit; +} + +.alert-primary { + color: #293c74; + background-color: #dce3f9; + border-color: #cdd8f6; +} + +.alert-primary hr { + border-top-color: #b7c7f2; +} + +.alert-primary .alert-link { + color: #1c294e; +} + +.alert-secondary { + color: #45464e; + background-color: #e7e7ea; + border-color: #dddde2; +} + +.alert-secondary hr { + border-top-color: #cfcfd6; +} + +.alert-secondary .alert-link { + color: #2d2e33; +} + +.alert-success { + color: #0f6848; + background-color: #d2f4e8; + border-color: #bff0de; +} + +.alert-success hr { + border-top-color: #aaebd3; +} + +.alert-success .alert-link { + color: #093b29; +} + +.alert-info { + color: #1c606a; + background-color: #d7f1f5; + border-color: #c7ebf1; +} + +.alert-info hr { + border-top-color: #b3e4ec; +} + +.alert-info .alert-link { + color: #113b42; +} + +.alert-warning { + color: #806520; + background-color: #fdf3d8; + border-color: #fceec9; +} + +.alert-warning hr { + border-top-color: #fbe6b1; +} + +.alert-warning .alert-link { + color: #574516; +} + +.alert-danger { + color: #78261f; + background-color: #fadbd8; + border-color: #f8ccc8; +} + +.alert-danger hr { + border-top-color: #f5b7b1; +} + +.alert-danger .alert-link { + color: #4f1915; +} + +.alert-light { + color: #818183; + background-color: #fefefe; + border-color: #fdfdfe; +} + +.alert-light hr { + border-top-color: #ececf6; +} + +.alert-light .alert-link { + color: #686869; +} + +.alert-dark { + color: #2f3037; + background-color: #dedee1; + border-color: #d1d1d5; +} + +.alert-dark hr { + border-top-color: #c4c4c9; +} + +.alert-dark .alert-link { + color: #18181c; +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} + +.progress { + display: flex; + height: 1rem; + overflow: hidden; + line-height: 0; + font-size: 0.75rem; + background-color: #eaecf4; + border-radius: 0.35rem; +} + +.progress-bar { + display: flex; + flex-direction: column; + justify-content: center; + overflow: hidden; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #4e73df; + transition: width 0.6s ease; +} + +@media (prefers-reduced-motion: reduce) { + .progress-bar { + transition: none; + } +} + +.progress-bar-striped { + 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; + } +} + +.media { + display: flex; + align-items: flex-start; +} + +.media-body { + flex: 1; +} + +.list-group { + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + border-radius: 0.35rem; +} + +.list-group-item-action { + width: 100%; + color: #6e707e; + text-align: inherit; +} + +.list-group-item-action:hover, .list-group-item-action:focus { + z-index: 1; + color: #6e707e; + text-decoration: none; + background-color: #f8f9fc; +} + +.list-group-item-action:active { + color: #858796; + background-color: #eaecf4; +} + +.list-group-item { + position: relative; + display: block; + padding: 0.75rem 1.25rem; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); +} + +.list-group-item:first-child { + border-top-left-radius: inherit; + border-top-right-radius: inherit; +} + +.list-group-item:last-child { + border-bottom-right-radius: inherit; + border-bottom-left-radius: inherit; +} + +.list-group-item.disabled, .list-group-item:disabled { + color: #858796; + pointer-events: none; + background-color: #fff; +} + +.list-group-item.active { + z-index: 2; + color: #fff; + background-color: #4e73df; + border-color: #4e73df; +} + +.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 { + flex-direction: row; +} + +.list-group-horizontal > .list-group-item:first-child { + border-bottom-left-radius: 0.35rem; + border-top-right-radius: 0; +} + +.list-group-horizontal > .list-group-item:last-child { + border-top-right-radius: 0.35rem; + border-bottom-left-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-left-width: 0; +} + +.list-group-horizontal > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; +} + +@media (min-width: 576px) { + .list-group-horizontal-sm { + flex-direction: row; + } + .list-group-horizontal-sm > .list-group-item:first-child { + border-bottom-left-radius: 0.35rem; + border-top-right-radius: 0; + } + .list-group-horizontal-sm > .list-group-item:last-child { + border-top-right-radius: 0.35rem; + border-bottom-left-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-left-width: 0; + } + .list-group-horizontal-sm > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; + } +} + +@media (min-width: 768px) { + .list-group-horizontal-md { + flex-direction: row; + } + .list-group-horizontal-md > .list-group-item:first-child { + border-bottom-left-radius: 0.35rem; + border-top-right-radius: 0; + } + .list-group-horizontal-md > .list-group-item:last-child { + border-top-right-radius: 0.35rem; + border-bottom-left-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-left-width: 0; + } + .list-group-horizontal-md > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; + } +} + +@media (min-width: 992px) { + .list-group-horizontal-lg { + flex-direction: row; + } + .list-group-horizontal-lg > .list-group-item:first-child { + border-bottom-left-radius: 0.35rem; + border-top-right-radius: 0; + } + .list-group-horizontal-lg > .list-group-item:last-child { + border-top-right-radius: 0.35rem; + border-bottom-left-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-left-width: 0; + } + .list-group-horizontal-lg > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; + } +} + +@media (min-width: 1200px) { + .list-group-horizontal-xl { + flex-direction: row; + } + .list-group-horizontal-xl > .list-group-item:first-child { + border-bottom-left-radius: 0.35rem; + border-top-right-radius: 0; + } + .list-group-horizontal-xl > .list-group-item:last-child { + border-top-right-radius: 0.35rem; + border-bottom-left-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-left-width: 0; + } + .list-group-horizontal-xl > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-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: #293c74; + background-color: #cdd8f6; +} + +.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { + color: #293c74; + background-color: #b7c7f2; +} + +.list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #293c74; + border-color: #293c74; +} + +.list-group-item-secondary { + color: #45464e; + background-color: #dddde2; +} + +.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { + color: #45464e; + background-color: #cfcfd6; +} + +.list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #45464e; + border-color: #45464e; +} + +.list-group-item-success { + color: #0f6848; + background-color: #bff0de; +} + +.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { + color: #0f6848; + background-color: #aaebd3; +} + +.list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #0f6848; + border-color: #0f6848; +} + +.list-group-item-info { + color: #1c606a; + background-color: #c7ebf1; +} + +.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { + color: #1c606a; + background-color: #b3e4ec; +} + +.list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #1c606a; + border-color: #1c606a; +} + +.list-group-item-warning { + color: #806520; + background-color: #fceec9; +} + +.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { + color: #806520; + background-color: #fbe6b1; +} + +.list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #806520; + border-color: #806520; +} + +.list-group-item-danger { + color: #78261f; + background-color: #f8ccc8; +} + +.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { + color: #78261f; + background-color: #f5b7b1; +} + +.list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #78261f; + border-color: #78261f; +} + +.list-group-item-light { + color: #818183; + background-color: #fdfdfe; +} + +.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { + color: #818183; + background-color: #ececf6; +} + +.list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #818183; + border-color: #818183; +} + +.list-group-item-dark { + color: #2f3037; + background-color: #d1d1d5; +} + +.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { + color: #2f3037; + background-color: #c4c4c9; +} + +.list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #2f3037; + border-color: #2f3037; +} + +.close { + float: right; + font-size: 1.5rem; + font-weight: 700; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + opacity: .5; +} + +.close:hover { + color: #000; + text-decoration: none; +} + +.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { + opacity: .75; +} + +button.close { + padding: 0; + background-color: transparent; + border: 0; +} + +a.close.disabled { + pointer-events: none; +} + +.toast { + flex-basis: 350px; + max-width: 350px; + font-size: 0.875rem; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.1); + box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); + opacity: 0; + border-radius: 0.25rem; +} + +.toast:not(:last-child) { + margin-bottom: 0.75rem; +} + +.toast.showing { + opacity: 1; +} + +.toast.show { + display: block; + opacity: 1; +} + +.toast.hide { + display: none; +} + +.toast-header { + display: flex; + align-items: center; + padding: 0.25rem 0.75rem; + color: #858796; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border-bottom: 1px solid rgba(0, 0, 0, 0.05); + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} + +.toast-body { + padding: 0.75rem; +} + +.modal-open { + overflow: hidden; +} + +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto; +} + +.modal { + position: fixed; + top: 0; + left: 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 { + transition: transform 0.3s ease-out; + transform: translate(0, -50px); +} + +@media (prefers-reduced-motion: reduce) { + .modal.fade .modal-dialog { + transition: none; + } +} + +.modal.show .modal-dialog { + transform: none; +} + +.modal.modal-static .modal-dialog { + transform: scale(1.02); +} + +.modal-dialog-scrollable { + display: flex; + max-height: calc(100% - 1rem); +} + +.modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 1rem); + overflow: hidden; +} + +.modal-dialog-scrollable .modal-header, +.modal-dialog-scrollable .modal-footer { + flex-shrink: 0; +} + +.modal-dialog-scrollable .modal-body { + overflow-y: auto; +} + +.modal-dialog-centered { + display: flex; + align-items: center; + min-height: calc(100% - 1rem); +} + +.modal-dialog-centered::before { + display: block; + height: calc(100vh - 1rem); + height: -webkit-min-content; + height: -moz-min-content; + height: min-content; + content: ""; +} + +.modal-dialog-centered.modal-dialog-scrollable { + flex-direction: column; + justify-content: center; + height: 100%; +} + +.modal-dialog-centered.modal-dialog-scrollable .modal-content { + max-height: none; +} + +.modal-dialog-centered.modal-dialog-scrollable::before { + content: none; +} + +.modal-content { + position: relative; + display: flex; + 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.3rem; + outline: 0; +} + +.modal-backdrop { + position: fixed; + top: 0; + left: 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: flex; + align-items: flex-start; + justify-content: space-between; + padding: 1rem 1rem; + border-bottom: 1px solid #e3e6f0; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); +} + +.modal-header .close { + padding: 1rem 1rem; + margin: -1rem -1rem -1rem auto; +} + +.modal-title { + margin-bottom: 0; + line-height: 1.5; +} + +.modal-body { + position: relative; + flex: 1 1 auto; + padding: 1rem; +} + +.modal-footer { + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: flex-end; + padding: 0.75rem; + border-top: 1px solid #e3e6f0; + border-bottom-right-radius: calc(0.3rem - 1px); + border-bottom-left-radius: calc(0.3rem - 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 { + max-height: calc(100% - 3.5rem); + } + .modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 3.5rem); + } + .modal-dialog-centered { + min-height: calc(100% - 3.5rem); + } + .modal-dialog-centered::before { + height: calc(100vh - 3.5rem); + height: -webkit-min-content; + height: -moz-min-content; + height: min-content; + } + .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; + } +} + +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + 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 .arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; +} + +.tooltip .arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; +} + +.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { + padding: 0.4rem 0; +} + +.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { + bottom: 0; +} + +.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { + top: 0; + border-width: 0.4rem 0.4rem 0; + border-top-color: #000; +} + +.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { + padding: 0 0.4rem; +} + +.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; +} + +.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { + right: 0; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000; +} + +.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { + padding: 0.4rem 0; +} + +.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { + top: 0; +} + +.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + bottom: 0; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #000; +} + +.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { + padding: 0 0.4rem; +} + +.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; +} + +.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { + left: 0; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #000; +} + +.tooltip-inner { + max-width: 200px; + padding: 0.25rem 0.5rem; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 0.35rem; +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: block; + max-width: 276px; + font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + 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.3rem; +} + +.popover .arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; + margin: 0 0.3rem; +} + +.popover .arrow::before, .popover .arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; +} + +.bs-popover-top, .bs-popover-auto[x-placement^="top"] { + margin-bottom: 0.5rem; +} + +.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow { + bottom: calc(-0.5rem - 1px); +} + +.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before { + bottom: 0; + border-width: 0.5rem 0.5rem 0; + border-top-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after { + bottom: 1px; + border-width: 0.5rem 0.5rem 0; + border-top-color: #fff; +} + +.bs-popover-right, .bs-popover-auto[x-placement^="right"] { + margin-left: 0.5rem; +} + +.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow { + left: calc(-0.5rem - 1px); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} + +.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before { + left: 0; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after { + left: 1px; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: #fff; +} + +.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { + margin-top: 0.5rem; +} + +.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow { + top: calc(-0.5rem - 1px); +} + +.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .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 > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .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[x-placement^="bottom"] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #f7f7f7; +} + +.bs-popover-left, .bs-popover-auto[x-placement^="left"] { + margin-right: 0.5rem; +} + +.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow { + right: calc(-0.5rem - 1px); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} + +.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before { + right: 0; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after { + right: 1px; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: #fff; +} + +.popover-header { + padding: 0.5rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); +} + +.popover-header:empty { + display: none; +} + +.popover-body { + padding: 0.5rem 0.75rem; + color: #858796; +} + +.carousel { + position: relative; +} + +.carousel.pointer-event { + 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: left; + width: 100%; + margin-right: -100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + transition: transform 0.6s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .carousel-item { + transition: none; + } +} + +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; +} + +.carousel-item-next:not(.carousel-item-left), +.active.carousel-item-right { + transform: translateX(100%); +} + +.carousel-item-prev:not(.carousel-item-right), +.active.carousel-item-left { + transform: translateX(-100%); +} + +.carousel-fade .carousel-item { + opacity: 0; + transition-property: opacity; + transform: none; +} + +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-left, +.carousel-fade .carousel-item-prev.carousel-item-right { + z-index: 1; + opacity: 1; +} + +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-right { + z-index: 0; + opacity: 0; + transition: opacity 0s 0.6s; +} + +@media (prefers-reduced-motion: reduce) { + .carousel-fade .active.carousel-item-left, + .carousel-fade .active.carousel-item-right { + transition: none; + } +} + +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: flex; + align-items: center; + justify-content: center; + width: 15%; + color: #fff; + text-align: center; + opacity: 0.5; + transition: opacity 0.15s ease; +} + +@media (prefers-reduced-motion: reduce) { + .carousel-control-prev, + .carousel-control-next { + transition: none; + } +} + +.carousel-control-prev:hover, .carousel-control-prev:focus, +.carousel-control-next:hover, +.carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: 0.9; +} + +.carousel-control-prev { + left: 0; +} + +.carousel-control-next { + right: 0; +} + +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 20px; + height: 20px; + background: 50% / 100% 100% no-repeat; +} + +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e"); +} + +.carousel-control-next-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e"); +} + +.carousel-indicators { + position: absolute; + right: 0; + bottom: 0; + left: 0; + z-index: 15; + display: flex; + justify-content: center; + padding-left: 0; + margin-right: 15%; + margin-left: 15%; + list-style: none; +} + +.carousel-indicators li { + box-sizing: content-box; + flex: 0 1 auto; + width: 30px; + height: 3px; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #fff; + background-clip: padding-box; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: .5; + transition: opacity 0.6s ease; +} + +@media (prefers-reduced-motion: reduce) { + .carousel-indicators li { + transition: none; + } +} + +.carousel-indicators .active { + opacity: 1; +} + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; +} + +@-webkit-keyframes spinner-border { + to { + transform: rotate(360deg); + } +} + +@keyframes spinner-border { + to { + transform: rotate(360deg); + } +} + +.spinner-border { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + border: 0.25em solid currentColor; + border-right-color: transparent; + border-radius: 50%; + -webkit-animation: .75s linear infinite spinner-border; + animation: .75s linear infinite spinner-border; +} + +.spinner-border-sm { + width: 1rem; + height: 1rem; + border-width: 0.2em; +} + +@-webkit-keyframes spinner-grow { + 0% { + transform: scale(0); + } + 50% { + opacity: 1; + transform: none; + } +} + +@keyframes spinner-grow { + 0% { + transform: scale(0); + } + 50% { + opacity: 1; + 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: .75s linear infinite spinner-grow; + animation: .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; + } +} + +.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; +} + +.bg-primary { + background-color: #4e73df !important; +} + +a.bg-primary:hover, a.bg-primary:focus, +button.bg-primary:hover, +button.bg-primary:focus { + background-color: #2653d4 !important; +} + +.bg-secondary { + background-color: #858796 !important; +} + +a.bg-secondary:hover, a.bg-secondary:focus, +button.bg-secondary:hover, +button.bg-secondary:focus { + background-color: #6b6d7d !important; +} + +.bg-success { + background-color: #1cc88a !important; +} + +a.bg-success:hover, a.bg-success:focus, +button.bg-success:hover, +button.bg-success:focus { + background-color: #169b6b !important; +} + +.bg-info { + background-color: #36b9cc !important; +} + +a.bg-info:hover, a.bg-info:focus, +button.bg-info:hover, +button.bg-info:focus { + background-color: #2a96a5 !important; +} + +.bg-warning { + background-color: #f6c23e !important; +} + +a.bg-warning:hover, a.bg-warning:focus, +button.bg-warning:hover, +button.bg-warning:focus { + background-color: #f4b30d !important; +} + +.bg-danger { + background-color: #e74a3b !important; +} + +a.bg-danger:hover, a.bg-danger:focus, +button.bg-danger:hover, +button.bg-danger:focus { + background-color: #d52a1a !important; +} + +.bg-light { + background-color: #f8f9fc !important; +} + +a.bg-light:hover, a.bg-light:focus, +button.bg-light:hover, +button.bg-light:focus { + background-color: #d4daed !important; +} + +.bg-dark { + background-color: #5a5c69 !important; +} + +a.bg-dark:hover, a.bg-dark:focus, +button.bg-dark:hover, +button.bg-dark:focus { + background-color: #42444e !important; +} + +.bg-white { + background-color: #fff !important; +} + +.bg-transparent { + background-color: transparent !important; +} + +.border { + border: 1px solid #e3e6f0 !important; +} + +.border-top { + border-top: 1px solid #e3e6f0 !important; +} + +.border-right { + border-right: 1px solid #e3e6f0 !important; +} + +.border-bottom { + border-bottom: 1px solid #e3e6f0 !important; +} + +.border-left { + border-left: 1px solid #e3e6f0 !important; +} + +.border-0 { + border: 0 !important; +} + +.border-top-0 { + border-top: 0 !important; +} + +.border-right-0 { + border-right: 0 !important; +} + +.border-bottom-0 { + border-bottom: 0 !important; +} + +.border-left-0 { + border-left: 0 !important; +} + +.border-primary { + border-color: #4e73df !important; +} + +.border-secondary { + border-color: #858796 !important; +} + +.border-success { + border-color: #1cc88a !important; +} + +.border-info { + border-color: #36b9cc !important; +} + +.border-warning { + border-color: #f6c23e !important; +} + +.border-danger { + border-color: #e74a3b !important; +} + +.border-light { + border-color: #f8f9fc !important; +} + +.border-dark { + border-color: #5a5c69 !important; +} + +.border-white { + border-color: #fff !important; +} + +.rounded-sm { + border-radius: 0.2rem !important; +} + +.rounded { + border-radius: 0.35rem !important; +} + +.rounded-top { + border-top-left-radius: 0.35rem !important; + border-top-right-radius: 0.35rem !important; +} + +.rounded-right { + border-top-right-radius: 0.35rem !important; + border-bottom-right-radius: 0.35rem !important; +} + +.rounded-bottom { + border-bottom-right-radius: 0.35rem !important; + border-bottom-left-radius: 0.35rem !important; +} + +.rounded-left { + border-top-left-radius: 0.35rem !important; + border-bottom-left-radius: 0.35rem !important; +} + +.rounded-lg { + border-radius: 0.3rem !important; +} + +.rounded-circle { + border-radius: 50% !important; +} + +.rounded-pill { + border-radius: 50rem !important; +} + +.rounded-0 { + border-radius: 0 !important; +} + +.clearfix::after { + display: block; + clear: both; + content: ""; +} + +.d-none { + display: none !important; +} + +.d-inline { + display: inline !important; +} + +.d-inline-block { + display: inline-block !important; +} + +.d-block { + display: block !important; +} + +.d-table { + display: table !important; +} + +.d-table-row { + display: table-row !important; +} + +.d-table-cell { + display: table-cell !important; +} + +.d-flex { + display: flex !important; +} + +.d-inline-flex { + display: inline-flex !important; +} + +@media (min-width: 576px) { + .d-sm-none { + display: none !important; + } + .d-sm-inline { + display: inline !important; + } + .d-sm-inline-block { + display: inline-block !important; + } + .d-sm-block { + display: block !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: flex !important; + } + .d-sm-inline-flex { + display: inline-flex !important; + } +} + +@media (min-width: 768px) { + .d-md-none { + display: none !important; + } + .d-md-inline { + display: inline !important; + } + .d-md-inline-block { + display: inline-block !important; + } + .d-md-block { + display: block !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: flex !important; + } + .d-md-inline-flex { + display: inline-flex !important; + } +} + +@media (min-width: 992px) { + .d-lg-none { + display: none !important; + } + .d-lg-inline { + display: inline !important; + } + .d-lg-inline-block { + display: inline-block !important; + } + .d-lg-block { + display: block !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: flex !important; + } + .d-lg-inline-flex { + display: inline-flex !important; + } +} + +@media (min-width: 1200px) { + .d-xl-none { + display: none !important; + } + .d-xl-inline { + display: inline !important; + } + .d-xl-inline-block { + display: inline-block !important; + } + .d-xl-block { + display: block !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: flex !important; + } + .d-xl-inline-flex { + display: inline-flex !important; + } +} + +@media print { + .d-print-none { + display: none !important; + } + .d-print-inline { + display: inline !important; + } + .d-print-inline-block { + display: inline-block !important; + } + .d-print-block { + display: block !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: flex !important; + } + .d-print-inline-flex { + display: inline-flex !important; + } +} + +.embed-responsive { + position: relative; + display: block; + width: 100%; + padding: 0; + overflow: hidden; +} + +.embed-responsive::before { + display: block; + content: ""; +} + +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; +} + +.embed-responsive-21by9::before { + padding-top: 42.85714%; +} + +.embed-responsive-16by9::before { + padding-top: 56.25%; +} + +.embed-responsive-4by3::before { + padding-top: 75%; +} + +.embed-responsive-1by1::before { + padding-top: 100%; +} + +.flex-row { + flex-direction: row !important; +} + +.flex-column { + flex-direction: column !important; +} + +.flex-row-reverse { + flex-direction: row-reverse !important; +} + +.flex-column-reverse { + flex-direction: column-reverse !important; +} + +.flex-wrap { + flex-wrap: wrap !important; +} + +.flex-nowrap { + flex-wrap: nowrap !important; +} + +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; +} + +.flex-fill { + flex: 1 1 auto !important; +} + +.flex-grow-0 { + flex-grow: 0 !important; +} + +.flex-grow-1 { + flex-grow: 1 !important; +} + +.flex-shrink-0 { + flex-shrink: 0 !important; +} + +.flex-shrink-1 { + flex-shrink: 1 !important; +} + +.justify-content-start { + justify-content: flex-start !important; +} + +.justify-content-end { + justify-content: flex-end !important; +} + +.justify-content-center { + justify-content: center !important; +} + +.justify-content-between { + justify-content: space-between !important; +} + +.justify-content-around { + justify-content: space-around !important; +} + +.align-items-start { + align-items: flex-start !important; +} + +.align-items-end { + align-items: flex-end !important; +} + +.align-items-center { + align-items: center !important; +} + +.align-items-baseline { + align-items: baseline !important; +} + +.align-items-stretch { + align-items: stretch !important; +} + +.align-content-start { + align-content: flex-start !important; +} + +.align-content-end { + align-content: flex-end !important; +} + +.align-content-center { + align-content: center !important; +} + +.align-content-between { + align-content: space-between !important; +} + +.align-content-around { + align-content: space-around !important; +} + +.align-content-stretch { + align-content: stretch !important; +} + +.align-self-auto { + align-self: auto !important; +} + +.align-self-start { + align-self: flex-start !important; +} + +.align-self-end { + align-self: flex-end !important; +} + +.align-self-center { + align-self: center !important; +} + +.align-self-baseline { + align-self: baseline !important; +} + +.align-self-stretch { + align-self: stretch !important; +} + +@media (min-width: 576px) { + .flex-sm-row { + flex-direction: row !important; + } + .flex-sm-column { + flex-direction: column !important; + } + .flex-sm-row-reverse { + flex-direction: row-reverse !important; + } + .flex-sm-column-reverse { + flex-direction: column-reverse !important; + } + .flex-sm-wrap { + flex-wrap: wrap !important; + } + .flex-sm-nowrap { + flex-wrap: nowrap !important; + } + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .flex-sm-fill { + flex: 1 1 auto !important; + } + .flex-sm-grow-0 { + flex-grow: 0 !important; + } + .flex-sm-grow-1 { + flex-grow: 1 !important; + } + .flex-sm-shrink-0 { + flex-shrink: 0 !important; + } + .flex-sm-shrink-1 { + flex-shrink: 1 !important; + } + .justify-content-sm-start { + justify-content: flex-start !important; + } + .justify-content-sm-end { + justify-content: flex-end !important; + } + .justify-content-sm-center { + justify-content: center !important; + } + .justify-content-sm-between { + justify-content: space-between !important; + } + .justify-content-sm-around { + justify-content: space-around !important; + } + .align-items-sm-start { + align-items: flex-start !important; + } + .align-items-sm-end { + align-items: flex-end !important; + } + .align-items-sm-center { + align-items: center !important; + } + .align-items-sm-baseline { + align-items: baseline !important; + } + .align-items-sm-stretch { + align-items: stretch !important; + } + .align-content-sm-start { + align-content: flex-start !important; + } + .align-content-sm-end { + align-content: flex-end !important; + } + .align-content-sm-center { + align-content: center !important; + } + .align-content-sm-between { + align-content: space-between !important; + } + .align-content-sm-around { + align-content: space-around !important; + } + .align-content-sm-stretch { + align-content: stretch !important; + } + .align-self-sm-auto { + align-self: auto !important; + } + .align-self-sm-start { + align-self: flex-start !important; + } + .align-self-sm-end { + align-self: flex-end !important; + } + .align-self-sm-center { + align-self: center !important; + } + .align-self-sm-baseline { + align-self: baseline !important; + } + .align-self-sm-stretch { + align-self: stretch !important; + } +} + +@media (min-width: 768px) { + .flex-md-row { + flex-direction: row !important; + } + .flex-md-column { + flex-direction: column !important; + } + .flex-md-row-reverse { + flex-direction: row-reverse !important; + } + .flex-md-column-reverse { + flex-direction: column-reverse !important; + } + .flex-md-wrap { + flex-wrap: wrap !important; + } + .flex-md-nowrap { + flex-wrap: nowrap !important; + } + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .flex-md-fill { + flex: 1 1 auto !important; + } + .flex-md-grow-0 { + flex-grow: 0 !important; + } + .flex-md-grow-1 { + flex-grow: 1 !important; + } + .flex-md-shrink-0 { + flex-shrink: 0 !important; + } + .flex-md-shrink-1 { + flex-shrink: 1 !important; + } + .justify-content-md-start { + justify-content: flex-start !important; + } + .justify-content-md-end { + justify-content: flex-end !important; + } + .justify-content-md-center { + justify-content: center !important; + } + .justify-content-md-between { + justify-content: space-between !important; + } + .justify-content-md-around { + justify-content: space-around !important; + } + .align-items-md-start { + align-items: flex-start !important; + } + .align-items-md-end { + align-items: flex-end !important; + } + .align-items-md-center { + align-items: center !important; + } + .align-items-md-baseline { + align-items: baseline !important; + } + .align-items-md-stretch { + align-items: stretch !important; + } + .align-content-md-start { + align-content: flex-start !important; + } + .align-content-md-end { + align-content: flex-end !important; + } + .align-content-md-center { + align-content: center !important; + } + .align-content-md-between { + align-content: space-between !important; + } + .align-content-md-around { + align-content: space-around !important; + } + .align-content-md-stretch { + align-content: stretch !important; + } + .align-self-md-auto { + align-self: auto !important; + } + .align-self-md-start { + align-self: flex-start !important; + } + .align-self-md-end { + align-self: flex-end !important; + } + .align-self-md-center { + align-self: center !important; + } + .align-self-md-baseline { + align-self: baseline !important; + } + .align-self-md-stretch { + align-self: stretch !important; + } +} + +@media (min-width: 992px) { + .flex-lg-row { + flex-direction: row !important; + } + .flex-lg-column { + flex-direction: column !important; + } + .flex-lg-row-reverse { + flex-direction: row-reverse !important; + } + .flex-lg-column-reverse { + flex-direction: column-reverse !important; + } + .flex-lg-wrap { + flex-wrap: wrap !important; + } + .flex-lg-nowrap { + flex-wrap: nowrap !important; + } + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .flex-lg-fill { + flex: 1 1 auto !important; + } + .flex-lg-grow-0 { + flex-grow: 0 !important; + } + .flex-lg-grow-1 { + flex-grow: 1 !important; + } + .flex-lg-shrink-0 { + flex-shrink: 0 !important; + } + .flex-lg-shrink-1 { + flex-shrink: 1 !important; + } + .justify-content-lg-start { + justify-content: flex-start !important; + } + .justify-content-lg-end { + justify-content: flex-end !important; + } + .justify-content-lg-center { + justify-content: center !important; + } + .justify-content-lg-between { + justify-content: space-between !important; + } + .justify-content-lg-around { + justify-content: space-around !important; + } + .align-items-lg-start { + align-items: flex-start !important; + } + .align-items-lg-end { + align-items: flex-end !important; + } + .align-items-lg-center { + align-items: center !important; + } + .align-items-lg-baseline { + align-items: baseline !important; + } + .align-items-lg-stretch { + align-items: stretch !important; + } + .align-content-lg-start { + align-content: flex-start !important; + } + .align-content-lg-end { + align-content: flex-end !important; + } + .align-content-lg-center { + align-content: center !important; + } + .align-content-lg-between { + align-content: space-between !important; + } + .align-content-lg-around { + align-content: space-around !important; + } + .align-content-lg-stretch { + align-content: stretch !important; + } + .align-self-lg-auto { + align-self: auto !important; + } + .align-self-lg-start { + align-self: flex-start !important; + } + .align-self-lg-end { + align-self: flex-end !important; + } + .align-self-lg-center { + align-self: center !important; + } + .align-self-lg-baseline { + align-self: baseline !important; + } + .align-self-lg-stretch { + align-self: stretch !important; + } +} + +@media (min-width: 1200px) { + .flex-xl-row { + flex-direction: row !important; + } + .flex-xl-column { + flex-direction: column !important; + } + .flex-xl-row-reverse { + flex-direction: row-reverse !important; + } + .flex-xl-column-reverse { + flex-direction: column-reverse !important; + } + .flex-xl-wrap { + flex-wrap: wrap !important; + } + .flex-xl-nowrap { + flex-wrap: nowrap !important; + } + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .flex-xl-fill { + flex: 1 1 auto !important; + } + .flex-xl-grow-0 { + flex-grow: 0 !important; + } + .flex-xl-grow-1 { + flex-grow: 1 !important; + } + .flex-xl-shrink-0 { + flex-shrink: 0 !important; + } + .flex-xl-shrink-1 { + flex-shrink: 1 !important; + } + .justify-content-xl-start { + justify-content: flex-start !important; + } + .justify-content-xl-end { + justify-content: flex-end !important; + } + .justify-content-xl-center { + justify-content: center !important; + } + .justify-content-xl-between { + justify-content: space-between !important; + } + .justify-content-xl-around { + justify-content: space-around !important; + } + .align-items-xl-start { + align-items: flex-start !important; + } + .align-items-xl-end { + align-items: flex-end !important; + } + .align-items-xl-center { + align-items: center !important; + } + .align-items-xl-baseline { + align-items: baseline !important; + } + .align-items-xl-stretch { + align-items: stretch !important; + } + .align-content-xl-start { + align-content: flex-start !important; + } + .align-content-xl-end { + align-content: flex-end !important; + } + .align-content-xl-center { + align-content: center !important; + } + .align-content-xl-between { + align-content: space-between !important; + } + .align-content-xl-around { + align-content: space-around !important; + } + .align-content-xl-stretch { + align-content: stretch !important; + } + .align-self-xl-auto { + align-self: auto !important; + } + .align-self-xl-start { + align-self: flex-start !important; + } + .align-self-xl-end { + align-self: flex-end !important; + } + .align-self-xl-center { + align-self: center !important; + } + .align-self-xl-baseline { + align-self: baseline !important; + } + .align-self-xl-stretch { + align-self: stretch !important; + } +} + +.float-left { + float: left !important; +} + +.float-right { + float: right !important; +} + +.float-none { + float: none !important; +} + +@media (min-width: 576px) { + .float-sm-left { + float: left !important; + } + .float-sm-right { + float: right !important; + } + .float-sm-none { + float: none !important; + } +} + +@media (min-width: 768px) { + .float-md-left { + float: left !important; + } + .float-md-right { + float: right !important; + } + .float-md-none { + float: none !important; + } +} + +@media (min-width: 992px) { + .float-lg-left { + float: left !important; + } + .float-lg-right { + float: right !important; + } + .float-lg-none { + float: none !important; + } +} + +@media (min-width: 1200px) { + .float-xl-left { + float: left !important; + } + .float-xl-right { + float: right !important; + } + .float-xl-none { + float: none !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; +} + +.overflow-auto { + overflow: auto !important; +} + +.overflow-hidden { + overflow: hidden !important; +} + +.position-static { + position: static !important; +} + +.position-relative { + position: relative !important; +} + +.position-absolute { + position: absolute !important; +} + +.position-fixed { + position: fixed !important; +} + +.position-sticky { + position: -webkit-sticky !important; + position: sticky !important; +} + +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; +} + +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; +} + +@supports ((position: -webkit-sticky) or (position: sticky)) { + .sticky-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border: 0; +} + +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + overflow: visible; + clip: auto; + white-space: normal; +} + +.shadow-sm { + box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important; +} + +.shadow { + box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important; +} + +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; +} + +.shadow-none { + box-shadow: none !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; +} + +.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; +} + +.mw-100 { + max-width: 100% !important; +} + +.mh-100 { + max-height: 100% !important; +} + +.min-vw-100 { + min-width: 100vw !important; +} + +.min-vh-100 { + min-height: 100vh !important; +} + +.vw-100 { + width: 100vw !important; +} + +.vh-100 { + height: 100vh !important; +} + +.m-0 { + margin: 0 !important; +} + +.mt-0, +.my-0 { + margin-top: 0 !important; +} + +.mr-0, +.mx-0 { + margin-right: 0 !important; +} + +.mb-0, +.my-0 { + margin-bottom: 0 !important; +} + +.ml-0, +.mx-0 { + margin-left: 0 !important; +} + +.m-1 { + margin: 0.25rem !important; +} + +.mt-1, +.my-1 { + margin-top: 0.25rem !important; +} + +.mr-1, +.mx-1 { + margin-right: 0.25rem !important; +} + +.mb-1, +.my-1 { + margin-bottom: 0.25rem !important; +} + +.ml-1, +.mx-1 { + margin-left: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem !important; +} + +.mt-2, +.my-2 { + margin-top: 0.5rem !important; +} + +.mr-2, +.mx-2 { + margin-right: 0.5rem !important; +} + +.mb-2, +.my-2 { + margin-bottom: 0.5rem !important; +} + +.ml-2, +.mx-2 { + margin-left: 0.5rem !important; +} + +.m-3 { + margin: 1rem !important; +} + +.mt-3, +.my-3 { + margin-top: 1rem !important; +} + +.mr-3, +.mx-3 { + margin-right: 1rem !important; +} + +.mb-3, +.my-3 { + margin-bottom: 1rem !important; +} + +.ml-3, +.mx-3 { + margin-left: 1rem !important; +} + +.m-4 { + margin: 1.5rem !important; +} + +.mt-4, +.my-4 { + margin-top: 1.5rem !important; +} + +.mr-4, +.mx-4 { + margin-right: 1.5rem !important; +} + +.mb-4, +.my-4 { + margin-bottom: 1.5rem !important; +} + +.ml-4, +.mx-4 { + margin-left: 1.5rem !important; +} + +.m-5 { + margin: 3rem !important; +} + +.mt-5, +.my-5 { + margin-top: 3rem !important; +} + +.mr-5, +.mx-5 { + margin-right: 3rem !important; +} + +.mb-5, +.my-5 { + margin-bottom: 3rem !important; +} + +.ml-5, +.mx-5 { + margin-left: 3rem !important; +} + +.p-0 { + padding: 0 !important; +} + +.pt-0, +.py-0 { + padding-top: 0 !important; +} + +.pr-0, +.px-0 { + padding-right: 0 !important; +} + +.pb-0, +.py-0 { + padding-bottom: 0 !important; +} + +.pl-0, +.px-0 { + padding-left: 0 !important; +} + +.p-1 { + padding: 0.25rem !important; +} + +.pt-1, +.py-1 { + padding-top: 0.25rem !important; +} + +.pr-1, +.px-1 { + padding-right: 0.25rem !important; +} + +.pb-1, +.py-1 { + padding-bottom: 0.25rem !important; +} + +.pl-1, +.px-1 { + padding-left: 0.25rem !important; +} + +.p-2 { + padding: 0.5rem !important; +} + +.pt-2, +.py-2 { + padding-top: 0.5rem !important; +} + +.pr-2, +.px-2 { + padding-right: 0.5rem !important; +} + +.pb-2, +.py-2 { + padding-bottom: 0.5rem !important; +} + +.pl-2, +.px-2 { + padding-left: 0.5rem !important; +} + +.p-3 { + padding: 1rem !important; +} + +.pt-3, +.py-3 { + padding-top: 1rem !important; +} + +.pr-3, +.px-3 { + padding-right: 1rem !important; +} + +.pb-3, +.py-3 { + padding-bottom: 1rem !important; +} + +.pl-3, +.px-3 { + padding-left: 1rem !important; +} + +.p-4 { + padding: 1.5rem !important; +} + +.pt-4, +.py-4 { + padding-top: 1.5rem !important; +} + +.pr-4, +.px-4 { + padding-right: 1.5rem !important; +} + +.pb-4, +.py-4 { + padding-bottom: 1.5rem !important; +} + +.pl-4, +.px-4 { + padding-left: 1.5rem !important; +} + +.p-5 { + padding: 3rem !important; +} + +.pt-5, +.py-5 { + padding-top: 3rem !important; +} + +.pr-5, +.px-5 { + padding-right: 3rem !important; +} + +.pb-5, +.py-5 { + padding-bottom: 3rem !important; +} + +.pl-5, +.px-5 { + padding-left: 3rem !important; +} + +.m-n1 { + margin: -0.25rem !important; +} + +.mt-n1, +.my-n1 { + margin-top: -0.25rem !important; +} + +.mr-n1, +.mx-n1 { + margin-right: -0.25rem !important; +} + +.mb-n1, +.my-n1 { + margin-bottom: -0.25rem !important; +} + +.ml-n1, +.mx-n1 { + margin-left: -0.25rem !important; +} + +.m-n2 { + margin: -0.5rem !important; +} + +.mt-n2, +.my-n2 { + margin-top: -0.5rem !important; +} + +.mr-n2, +.mx-n2 { + margin-right: -0.5rem !important; +} + +.mb-n2, +.my-n2 { + margin-bottom: -0.5rem !important; +} + +.ml-n2, +.mx-n2 { + margin-left: -0.5rem !important; +} + +.m-n3 { + margin: -1rem !important; +} + +.mt-n3, +.my-n3 { + margin-top: -1rem !important; +} + +.mr-n3, +.mx-n3 { + margin-right: -1rem !important; +} + +.mb-n3, +.my-n3 { + margin-bottom: -1rem !important; +} + +.ml-n3, +.mx-n3 { + margin-left: -1rem !important; +} + +.m-n4 { + margin: -1.5rem !important; +} + +.mt-n4, +.my-n4 { + margin-top: -1.5rem !important; +} + +.mr-n4, +.mx-n4 { + margin-right: -1.5rem !important; +} + +.mb-n4, +.my-n4 { + margin-bottom: -1.5rem !important; +} + +.ml-n4, +.mx-n4 { + margin-left: -1.5rem !important; +} + +.m-n5 { + margin: -3rem !important; +} + +.mt-n5, +.my-n5 { + margin-top: -3rem !important; +} + +.mr-n5, +.mx-n5 { + margin-right: -3rem !important; +} + +.mb-n5, +.my-n5 { + margin-bottom: -3rem !important; +} + +.ml-n5, +.mx-n5 { + margin-left: -3rem !important; +} + +.m-auto { + margin: auto !important; +} + +.mt-auto, +.my-auto { + margin-top: auto !important; +} + +.mr-auto, +.mx-auto { + margin-right: auto !important; +} + +.mb-auto, +.my-auto { + margin-bottom: auto !important; +} + +.ml-auto, +.mx-auto { + margin-left: auto !important; +} + +@media (min-width: 576px) { + .m-sm-0 { + margin: 0 !important; + } + .mt-sm-0, + .my-sm-0 { + margin-top: 0 !important; + } + .mr-sm-0, + .mx-sm-0 { + margin-right: 0 !important; + } + .mb-sm-0, + .my-sm-0 { + margin-bottom: 0 !important; + } + .ml-sm-0, + .mx-sm-0 { + margin-left: 0 !important; + } + .m-sm-1 { + margin: 0.25rem !important; + } + .mt-sm-1, + .my-sm-1 { + margin-top: 0.25rem !important; + } + .mr-sm-1, + .mx-sm-1 { + margin-right: 0.25rem !important; + } + .mb-sm-1, + .my-sm-1 { + margin-bottom: 0.25rem !important; + } + .ml-sm-1, + .mx-sm-1 { + margin-left: 0.25rem !important; + } + .m-sm-2 { + margin: 0.5rem !important; + } + .mt-sm-2, + .my-sm-2 { + margin-top: 0.5rem !important; + } + .mr-sm-2, + .mx-sm-2 { + margin-right: 0.5rem !important; + } + .mb-sm-2, + .my-sm-2 { + margin-bottom: 0.5rem !important; + } + .ml-sm-2, + .mx-sm-2 { + margin-left: 0.5rem !important; + } + .m-sm-3 { + margin: 1rem !important; + } + .mt-sm-3, + .my-sm-3 { + margin-top: 1rem !important; + } + .mr-sm-3, + .mx-sm-3 { + margin-right: 1rem !important; + } + .mb-sm-3, + .my-sm-3 { + margin-bottom: 1rem !important; + } + .ml-sm-3, + .mx-sm-3 { + margin-left: 1rem !important; + } + .m-sm-4 { + margin: 1.5rem !important; + } + .mt-sm-4, + .my-sm-4 { + margin-top: 1.5rem !important; + } + .mr-sm-4, + .mx-sm-4 { + margin-right: 1.5rem !important; + } + .mb-sm-4, + .my-sm-4 { + margin-bottom: 1.5rem !important; + } + .ml-sm-4, + .mx-sm-4 { + margin-left: 1.5rem !important; + } + .m-sm-5 { + margin: 3rem !important; + } + .mt-sm-5, + .my-sm-5 { + margin-top: 3rem !important; + } + .mr-sm-5, + .mx-sm-5 { + margin-right: 3rem !important; + } + .mb-sm-5, + .my-sm-5 { + margin-bottom: 3rem !important; + } + .ml-sm-5, + .mx-sm-5 { + margin-left: 3rem !important; + } + .p-sm-0 { + padding: 0 !important; + } + .pt-sm-0, + .py-sm-0 { + padding-top: 0 !important; + } + .pr-sm-0, + .px-sm-0 { + padding-right: 0 !important; + } + .pb-sm-0, + .py-sm-0 { + padding-bottom: 0 !important; + } + .pl-sm-0, + .px-sm-0 { + padding-left: 0 !important; + } + .p-sm-1 { + padding: 0.25rem !important; + } + .pt-sm-1, + .py-sm-1 { + padding-top: 0.25rem !important; + } + .pr-sm-1, + .px-sm-1 { + padding-right: 0.25rem !important; + } + .pb-sm-1, + .py-sm-1 { + padding-bottom: 0.25rem !important; + } + .pl-sm-1, + .px-sm-1 { + padding-left: 0.25rem !important; + } + .p-sm-2 { + padding: 0.5rem !important; + } + .pt-sm-2, + .py-sm-2 { + padding-top: 0.5rem !important; + } + .pr-sm-2, + .px-sm-2 { + padding-right: 0.5rem !important; + } + .pb-sm-2, + .py-sm-2 { + padding-bottom: 0.5rem !important; + } + .pl-sm-2, + .px-sm-2 { + padding-left: 0.5rem !important; + } + .p-sm-3 { + padding: 1rem !important; + } + .pt-sm-3, + .py-sm-3 { + padding-top: 1rem !important; + } + .pr-sm-3, + .px-sm-3 { + padding-right: 1rem !important; + } + .pb-sm-3, + .py-sm-3 { + padding-bottom: 1rem !important; + } + .pl-sm-3, + .px-sm-3 { + padding-left: 1rem !important; + } + .p-sm-4 { + padding: 1.5rem !important; + } + .pt-sm-4, + .py-sm-4 { + padding-top: 1.5rem !important; + } + .pr-sm-4, + .px-sm-4 { + padding-right: 1.5rem !important; + } + .pb-sm-4, + .py-sm-4 { + padding-bottom: 1.5rem !important; + } + .pl-sm-4, + .px-sm-4 { + padding-left: 1.5rem !important; + } + .p-sm-5 { + padding: 3rem !important; + } + .pt-sm-5, + .py-sm-5 { + padding-top: 3rem !important; + } + .pr-sm-5, + .px-sm-5 { + padding-right: 3rem !important; + } + .pb-sm-5, + .py-sm-5 { + padding-bottom: 3rem !important; + } + .pl-sm-5, + .px-sm-5 { + padding-left: 3rem !important; + } + .m-sm-n1 { + margin: -0.25rem !important; + } + .mt-sm-n1, + .my-sm-n1 { + margin-top: -0.25rem !important; + } + .mr-sm-n1, + .mx-sm-n1 { + margin-right: -0.25rem !important; + } + .mb-sm-n1, + .my-sm-n1 { + margin-bottom: -0.25rem !important; + } + .ml-sm-n1, + .mx-sm-n1 { + margin-left: -0.25rem !important; + } + .m-sm-n2 { + margin: -0.5rem !important; + } + .mt-sm-n2, + .my-sm-n2 { + margin-top: -0.5rem !important; + } + .mr-sm-n2, + .mx-sm-n2 { + margin-right: -0.5rem !important; + } + .mb-sm-n2, + .my-sm-n2 { + margin-bottom: -0.5rem !important; + } + .ml-sm-n2, + .mx-sm-n2 { + margin-left: -0.5rem !important; + } + .m-sm-n3 { + margin: -1rem !important; + } + .mt-sm-n3, + .my-sm-n3 { + margin-top: -1rem !important; + } + .mr-sm-n3, + .mx-sm-n3 { + margin-right: -1rem !important; + } + .mb-sm-n3, + .my-sm-n3 { + margin-bottom: -1rem !important; + } + .ml-sm-n3, + .mx-sm-n3 { + margin-left: -1rem !important; + } + .m-sm-n4 { + margin: -1.5rem !important; + } + .mt-sm-n4, + .my-sm-n4 { + margin-top: -1.5rem !important; + } + .mr-sm-n4, + .mx-sm-n4 { + margin-right: -1.5rem !important; + } + .mb-sm-n4, + .my-sm-n4 { + margin-bottom: -1.5rem !important; + } + .ml-sm-n4, + .mx-sm-n4 { + margin-left: -1.5rem !important; + } + .m-sm-n5 { + margin: -3rem !important; + } + .mt-sm-n5, + .my-sm-n5 { + margin-top: -3rem !important; + } + .mr-sm-n5, + .mx-sm-n5 { + margin-right: -3rem !important; + } + .mb-sm-n5, + .my-sm-n5 { + margin-bottom: -3rem !important; + } + .ml-sm-n5, + .mx-sm-n5 { + margin-left: -3rem !important; + } + .m-sm-auto { + margin: auto !important; + } + .mt-sm-auto, + .my-sm-auto { + margin-top: auto !important; + } + .mr-sm-auto, + .mx-sm-auto { + margin-right: auto !important; + } + .mb-sm-auto, + .my-sm-auto { + margin-bottom: auto !important; + } + .ml-sm-auto, + .mx-sm-auto { + margin-left: auto !important; + } +} + +@media (min-width: 768px) { + .m-md-0 { + margin: 0 !important; + } + .mt-md-0, + .my-md-0 { + margin-top: 0 !important; + } + .mr-md-0, + .mx-md-0 { + margin-right: 0 !important; + } + .mb-md-0, + .my-md-0 { + margin-bottom: 0 !important; + } + .ml-md-0, + .mx-md-0 { + margin-left: 0 !important; + } + .m-md-1 { + margin: 0.25rem !important; + } + .mt-md-1, + .my-md-1 { + margin-top: 0.25rem !important; + } + .mr-md-1, + .mx-md-1 { + margin-right: 0.25rem !important; + } + .mb-md-1, + .my-md-1 { + margin-bottom: 0.25rem !important; + } + .ml-md-1, + .mx-md-1 { + margin-left: 0.25rem !important; + } + .m-md-2 { + margin: 0.5rem !important; + } + .mt-md-2, + .my-md-2 { + margin-top: 0.5rem !important; + } + .mr-md-2, + .mx-md-2 { + margin-right: 0.5rem !important; + } + .mb-md-2, + .my-md-2 { + margin-bottom: 0.5rem !important; + } + .ml-md-2, + .mx-md-2 { + margin-left: 0.5rem !important; + } + .m-md-3 { + margin: 1rem !important; + } + .mt-md-3, + .my-md-3 { + margin-top: 1rem !important; + } + .mr-md-3, + .mx-md-3 { + margin-right: 1rem !important; + } + .mb-md-3, + .my-md-3 { + margin-bottom: 1rem !important; + } + .ml-md-3, + .mx-md-3 { + margin-left: 1rem !important; + } + .m-md-4 { + margin: 1.5rem !important; + } + .mt-md-4, + .my-md-4 { + margin-top: 1.5rem !important; + } + .mr-md-4, + .mx-md-4 { + margin-right: 1.5rem !important; + } + .mb-md-4, + .my-md-4 { + margin-bottom: 1.5rem !important; + } + .ml-md-4, + .mx-md-4 { + margin-left: 1.5rem !important; + } + .m-md-5 { + margin: 3rem !important; + } + .mt-md-5, + .my-md-5 { + margin-top: 3rem !important; + } + .mr-md-5, + .mx-md-5 { + margin-right: 3rem !important; + } + .mb-md-5, + .my-md-5 { + margin-bottom: 3rem !important; + } + .ml-md-5, + .mx-md-5 { + margin-left: 3rem !important; + } + .p-md-0 { + padding: 0 !important; + } + .pt-md-0, + .py-md-0 { + padding-top: 0 !important; + } + .pr-md-0, + .px-md-0 { + padding-right: 0 !important; + } + .pb-md-0, + .py-md-0 { + padding-bottom: 0 !important; + } + .pl-md-0, + .px-md-0 { + padding-left: 0 !important; + } + .p-md-1 { + padding: 0.25rem !important; + } + .pt-md-1, + .py-md-1 { + padding-top: 0.25rem !important; + } + .pr-md-1, + .px-md-1 { + padding-right: 0.25rem !important; + } + .pb-md-1, + .py-md-1 { + padding-bottom: 0.25rem !important; + } + .pl-md-1, + .px-md-1 { + padding-left: 0.25rem !important; + } + .p-md-2 { + padding: 0.5rem !important; + } + .pt-md-2, + .py-md-2 { + padding-top: 0.5rem !important; + } + .pr-md-2, + .px-md-2 { + padding-right: 0.5rem !important; + } + .pb-md-2, + .py-md-2 { + padding-bottom: 0.5rem !important; + } + .pl-md-2, + .px-md-2 { + padding-left: 0.5rem !important; + } + .p-md-3 { + padding: 1rem !important; + } + .pt-md-3, + .py-md-3 { + padding-top: 1rem !important; + } + .pr-md-3, + .px-md-3 { + padding-right: 1rem !important; + } + .pb-md-3, + .py-md-3 { + padding-bottom: 1rem !important; + } + .pl-md-3, + .px-md-3 { + padding-left: 1rem !important; + } + .p-md-4 { + padding: 1.5rem !important; + } + .pt-md-4, + .py-md-4 { + padding-top: 1.5rem !important; + } + .pr-md-4, + .px-md-4 { + padding-right: 1.5rem !important; + } + .pb-md-4, + .py-md-4 { + padding-bottom: 1.5rem !important; + } + .pl-md-4, + .px-md-4 { + padding-left: 1.5rem !important; + } + .p-md-5 { + padding: 3rem !important; + } + .pt-md-5, + .py-md-5 { + padding-top: 3rem !important; + } + .pr-md-5, + .px-md-5 { + padding-right: 3rem !important; + } + .pb-md-5, + .py-md-5 { + padding-bottom: 3rem !important; + } + .pl-md-5, + .px-md-5 { + padding-left: 3rem !important; + } + .m-md-n1 { + margin: -0.25rem !important; + } + .mt-md-n1, + .my-md-n1 { + margin-top: -0.25rem !important; + } + .mr-md-n1, + .mx-md-n1 { + margin-right: -0.25rem !important; + } + .mb-md-n1, + .my-md-n1 { + margin-bottom: -0.25rem !important; + } + .ml-md-n1, + .mx-md-n1 { + margin-left: -0.25rem !important; + } + .m-md-n2 { + margin: -0.5rem !important; + } + .mt-md-n2, + .my-md-n2 { + margin-top: -0.5rem !important; + } + .mr-md-n2, + .mx-md-n2 { + margin-right: -0.5rem !important; + } + .mb-md-n2, + .my-md-n2 { + margin-bottom: -0.5rem !important; + } + .ml-md-n2, + .mx-md-n2 { + margin-left: -0.5rem !important; + } + .m-md-n3 { + margin: -1rem !important; + } + .mt-md-n3, + .my-md-n3 { + margin-top: -1rem !important; + } + .mr-md-n3, + .mx-md-n3 { + margin-right: -1rem !important; + } + .mb-md-n3, + .my-md-n3 { + margin-bottom: -1rem !important; + } + .ml-md-n3, + .mx-md-n3 { + margin-left: -1rem !important; + } + .m-md-n4 { + margin: -1.5rem !important; + } + .mt-md-n4, + .my-md-n4 { + margin-top: -1.5rem !important; + } + .mr-md-n4, + .mx-md-n4 { + margin-right: -1.5rem !important; + } + .mb-md-n4, + .my-md-n4 { + margin-bottom: -1.5rem !important; + } + .ml-md-n4, + .mx-md-n4 { + margin-left: -1.5rem !important; + } + .m-md-n5 { + margin: -3rem !important; + } + .mt-md-n5, + .my-md-n5 { + margin-top: -3rem !important; + } + .mr-md-n5, + .mx-md-n5 { + margin-right: -3rem !important; + } + .mb-md-n5, + .my-md-n5 { + margin-bottom: -3rem !important; + } + .ml-md-n5, + .mx-md-n5 { + margin-left: -3rem !important; + } + .m-md-auto { + margin: auto !important; + } + .mt-md-auto, + .my-md-auto { + margin-top: auto !important; + } + .mr-md-auto, + .mx-md-auto { + margin-right: auto !important; + } + .mb-md-auto, + .my-md-auto { + margin-bottom: auto !important; + } + .ml-md-auto, + .mx-md-auto { + margin-left: auto !important; + } +} + +@media (min-width: 992px) { + .m-lg-0 { + margin: 0 !important; + } + .mt-lg-0, + .my-lg-0 { + margin-top: 0 !important; + } + .mr-lg-0, + .mx-lg-0 { + margin-right: 0 !important; + } + .mb-lg-0, + .my-lg-0 { + margin-bottom: 0 !important; + } + .ml-lg-0, + .mx-lg-0 { + margin-left: 0 !important; + } + .m-lg-1 { + margin: 0.25rem !important; + } + .mt-lg-1, + .my-lg-1 { + margin-top: 0.25rem !important; + } + .mr-lg-1, + .mx-lg-1 { + margin-right: 0.25rem !important; + } + .mb-lg-1, + .my-lg-1 { + margin-bottom: 0.25rem !important; + } + .ml-lg-1, + .mx-lg-1 { + margin-left: 0.25rem !important; + } + .m-lg-2 { + margin: 0.5rem !important; + } + .mt-lg-2, + .my-lg-2 { + margin-top: 0.5rem !important; + } + .mr-lg-2, + .mx-lg-2 { + margin-right: 0.5rem !important; + } + .mb-lg-2, + .my-lg-2 { + margin-bottom: 0.5rem !important; + } + .ml-lg-2, + .mx-lg-2 { + margin-left: 0.5rem !important; + } + .m-lg-3 { + margin: 1rem !important; + } + .mt-lg-3, + .my-lg-3 { + margin-top: 1rem !important; + } + .mr-lg-3, + .mx-lg-3 { + margin-right: 1rem !important; + } + .mb-lg-3, + .my-lg-3 { + margin-bottom: 1rem !important; + } + .ml-lg-3, + .mx-lg-3 { + margin-left: 1rem !important; + } + .m-lg-4 { + margin: 1.5rem !important; + } + .mt-lg-4, + .my-lg-4 { + margin-top: 1.5rem !important; + } + .mr-lg-4, + .mx-lg-4 { + margin-right: 1.5rem !important; + } + .mb-lg-4, + .my-lg-4 { + margin-bottom: 1.5rem !important; + } + .ml-lg-4, + .mx-lg-4 { + margin-left: 1.5rem !important; + } + .m-lg-5 { + margin: 3rem !important; + } + .mt-lg-5, + .my-lg-5 { + margin-top: 3rem !important; + } + .mr-lg-5, + .mx-lg-5 { + margin-right: 3rem !important; + } + .mb-lg-5, + .my-lg-5 { + margin-bottom: 3rem !important; + } + .ml-lg-5, + .mx-lg-5 { + margin-left: 3rem !important; + } + .p-lg-0 { + padding: 0 !important; + } + .pt-lg-0, + .py-lg-0 { + padding-top: 0 !important; + } + .pr-lg-0, + .px-lg-0 { + padding-right: 0 !important; + } + .pb-lg-0, + .py-lg-0 { + padding-bottom: 0 !important; + } + .pl-lg-0, + .px-lg-0 { + padding-left: 0 !important; + } + .p-lg-1 { + padding: 0.25rem !important; + } + .pt-lg-1, + .py-lg-1 { + padding-top: 0.25rem !important; + } + .pr-lg-1, + .px-lg-1 { + padding-right: 0.25rem !important; + } + .pb-lg-1, + .py-lg-1 { + padding-bottom: 0.25rem !important; + } + .pl-lg-1, + .px-lg-1 { + padding-left: 0.25rem !important; + } + .p-lg-2 { + padding: 0.5rem !important; + } + .pt-lg-2, + .py-lg-2 { + padding-top: 0.5rem !important; + } + .pr-lg-2, + .px-lg-2 { + padding-right: 0.5rem !important; + } + .pb-lg-2, + .py-lg-2 { + padding-bottom: 0.5rem !important; + } + .pl-lg-2, + .px-lg-2 { + padding-left: 0.5rem !important; + } + .p-lg-3 { + padding: 1rem !important; + } + .pt-lg-3, + .py-lg-3 { + padding-top: 1rem !important; + } + .pr-lg-3, + .px-lg-3 { + padding-right: 1rem !important; + } + .pb-lg-3, + .py-lg-3 { + padding-bottom: 1rem !important; + } + .pl-lg-3, + .px-lg-3 { + padding-left: 1rem !important; + } + .p-lg-4 { + padding: 1.5rem !important; + } + .pt-lg-4, + .py-lg-4 { + padding-top: 1.5rem !important; + } + .pr-lg-4, + .px-lg-4 { + padding-right: 1.5rem !important; + } + .pb-lg-4, + .py-lg-4 { + padding-bottom: 1.5rem !important; + } + .pl-lg-4, + .px-lg-4 { + padding-left: 1.5rem !important; + } + .p-lg-5 { + padding: 3rem !important; + } + .pt-lg-5, + .py-lg-5 { + padding-top: 3rem !important; + } + .pr-lg-5, + .px-lg-5 { + padding-right: 3rem !important; + } + .pb-lg-5, + .py-lg-5 { + padding-bottom: 3rem !important; + } + .pl-lg-5, + .px-lg-5 { + padding-left: 3rem !important; + } + .m-lg-n1 { + margin: -0.25rem !important; + } + .mt-lg-n1, + .my-lg-n1 { + margin-top: -0.25rem !important; + } + .mr-lg-n1, + .mx-lg-n1 { + margin-right: -0.25rem !important; + } + .mb-lg-n1, + .my-lg-n1 { + margin-bottom: -0.25rem !important; + } + .ml-lg-n1, + .mx-lg-n1 { + margin-left: -0.25rem !important; + } + .m-lg-n2 { + margin: -0.5rem !important; + } + .mt-lg-n2, + .my-lg-n2 { + margin-top: -0.5rem !important; + } + .mr-lg-n2, + .mx-lg-n2 { + margin-right: -0.5rem !important; + } + .mb-lg-n2, + .my-lg-n2 { + margin-bottom: -0.5rem !important; + } + .ml-lg-n2, + .mx-lg-n2 { + margin-left: -0.5rem !important; + } + .m-lg-n3 { + margin: -1rem !important; + } + .mt-lg-n3, + .my-lg-n3 { + margin-top: -1rem !important; + } + .mr-lg-n3, + .mx-lg-n3 { + margin-right: -1rem !important; + } + .mb-lg-n3, + .my-lg-n3 { + margin-bottom: -1rem !important; + } + .ml-lg-n3, + .mx-lg-n3 { + margin-left: -1rem !important; + } + .m-lg-n4 { + margin: -1.5rem !important; + } + .mt-lg-n4, + .my-lg-n4 { + margin-top: -1.5rem !important; + } + .mr-lg-n4, + .mx-lg-n4 { + margin-right: -1.5rem !important; + } + .mb-lg-n4, + .my-lg-n4 { + margin-bottom: -1.5rem !important; + } + .ml-lg-n4, + .mx-lg-n4 { + margin-left: -1.5rem !important; + } + .m-lg-n5 { + margin: -3rem !important; + } + .mt-lg-n5, + .my-lg-n5 { + margin-top: -3rem !important; + } + .mr-lg-n5, + .mx-lg-n5 { + margin-right: -3rem !important; + } + .mb-lg-n5, + .my-lg-n5 { + margin-bottom: -3rem !important; + } + .ml-lg-n5, + .mx-lg-n5 { + margin-left: -3rem !important; + } + .m-lg-auto { + margin: auto !important; + } + .mt-lg-auto, + .my-lg-auto { + margin-top: auto !important; + } + .mr-lg-auto, + .mx-lg-auto { + margin-right: auto !important; + } + .mb-lg-auto, + .my-lg-auto { + margin-bottom: auto !important; + } + .ml-lg-auto, + .mx-lg-auto { + margin-left: auto !important; + } +} + +@media (min-width: 1200px) { + .m-xl-0 { + margin: 0 !important; + } + .mt-xl-0, + .my-xl-0 { + margin-top: 0 !important; + } + .mr-xl-0, + .mx-xl-0 { + margin-right: 0 !important; + } + .mb-xl-0, + .my-xl-0 { + margin-bottom: 0 !important; + } + .ml-xl-0, + .mx-xl-0 { + margin-left: 0 !important; + } + .m-xl-1 { + margin: 0.25rem !important; + } + .mt-xl-1, + .my-xl-1 { + margin-top: 0.25rem !important; + } + .mr-xl-1, + .mx-xl-1 { + margin-right: 0.25rem !important; + } + .mb-xl-1, + .my-xl-1 { + margin-bottom: 0.25rem !important; + } + .ml-xl-1, + .mx-xl-1 { + margin-left: 0.25rem !important; + } + .m-xl-2 { + margin: 0.5rem !important; + } + .mt-xl-2, + .my-xl-2 { + margin-top: 0.5rem !important; + } + .mr-xl-2, + .mx-xl-2 { + margin-right: 0.5rem !important; + } + .mb-xl-2, + .my-xl-2 { + margin-bottom: 0.5rem !important; + } + .ml-xl-2, + .mx-xl-2 { + margin-left: 0.5rem !important; + } + .m-xl-3 { + margin: 1rem !important; + } + .mt-xl-3, + .my-xl-3 { + margin-top: 1rem !important; + } + .mr-xl-3, + .mx-xl-3 { + margin-right: 1rem !important; + } + .mb-xl-3, + .my-xl-3 { + margin-bottom: 1rem !important; + } + .ml-xl-3, + .mx-xl-3 { + margin-left: 1rem !important; + } + .m-xl-4 { + margin: 1.5rem !important; + } + .mt-xl-4, + .my-xl-4 { + margin-top: 1.5rem !important; + } + .mr-xl-4, + .mx-xl-4 { + margin-right: 1.5rem !important; + } + .mb-xl-4, + .my-xl-4 { + margin-bottom: 1.5rem !important; + } + .ml-xl-4, + .mx-xl-4 { + margin-left: 1.5rem !important; + } + .m-xl-5 { + margin: 3rem !important; + } + .mt-xl-5, + .my-xl-5 { + margin-top: 3rem !important; + } + .mr-xl-5, + .mx-xl-5 { + margin-right: 3rem !important; + } + .mb-xl-5, + .my-xl-5 { + margin-bottom: 3rem !important; + } + .ml-xl-5, + .mx-xl-5 { + margin-left: 3rem !important; + } + .p-xl-0 { + padding: 0 !important; + } + .pt-xl-0, + .py-xl-0 { + padding-top: 0 !important; + } + .pr-xl-0, + .px-xl-0 { + padding-right: 0 !important; + } + .pb-xl-0, + .py-xl-0 { + padding-bottom: 0 !important; + } + .pl-xl-0, + .px-xl-0 { + padding-left: 0 !important; + } + .p-xl-1 { + padding: 0.25rem !important; + } + .pt-xl-1, + .py-xl-1 { + padding-top: 0.25rem !important; + } + .pr-xl-1, + .px-xl-1 { + padding-right: 0.25rem !important; + } + .pb-xl-1, + .py-xl-1 { + padding-bottom: 0.25rem !important; + } + .pl-xl-1, + .px-xl-1 { + padding-left: 0.25rem !important; + } + .p-xl-2 { + padding: 0.5rem !important; + } + .pt-xl-2, + .py-xl-2 { + padding-top: 0.5rem !important; + } + .pr-xl-2, + .px-xl-2 { + padding-right: 0.5rem !important; + } + .pb-xl-2, + .py-xl-2 { + padding-bottom: 0.5rem !important; + } + .pl-xl-2, + .px-xl-2 { + padding-left: 0.5rem !important; + } + .p-xl-3 { + padding: 1rem !important; + } + .pt-xl-3, + .py-xl-3 { + padding-top: 1rem !important; + } + .pr-xl-3, + .px-xl-3 { + padding-right: 1rem !important; + } + .pb-xl-3, + .py-xl-3 { + padding-bottom: 1rem !important; + } + .pl-xl-3, + .px-xl-3 { + padding-left: 1rem !important; + } + .p-xl-4 { + padding: 1.5rem !important; + } + .pt-xl-4, + .py-xl-4 { + padding-top: 1.5rem !important; + } + .pr-xl-4, + .px-xl-4 { + padding-right: 1.5rem !important; + } + .pb-xl-4, + .py-xl-4 { + padding-bottom: 1.5rem !important; + } + .pl-xl-4, + .px-xl-4 { + padding-left: 1.5rem !important; + } + .p-xl-5 { + padding: 3rem !important; + } + .pt-xl-5, + .py-xl-5 { + padding-top: 3rem !important; + } + .pr-xl-5, + .px-xl-5 { + padding-right: 3rem !important; + } + .pb-xl-5, + .py-xl-5 { + padding-bottom: 3rem !important; + } + .pl-xl-5, + .px-xl-5 { + padding-left: 3rem !important; + } + .m-xl-n1 { + margin: -0.25rem !important; + } + .mt-xl-n1, + .my-xl-n1 { + margin-top: -0.25rem !important; + } + .mr-xl-n1, + .mx-xl-n1 { + margin-right: -0.25rem !important; + } + .mb-xl-n1, + .my-xl-n1 { + margin-bottom: -0.25rem !important; + } + .ml-xl-n1, + .mx-xl-n1 { + margin-left: -0.25rem !important; + } + .m-xl-n2 { + margin: -0.5rem !important; + } + .mt-xl-n2, + .my-xl-n2 { + margin-top: -0.5rem !important; + } + .mr-xl-n2, + .mx-xl-n2 { + margin-right: -0.5rem !important; + } + .mb-xl-n2, + .my-xl-n2 { + margin-bottom: -0.5rem !important; + } + .ml-xl-n2, + .mx-xl-n2 { + margin-left: -0.5rem !important; + } + .m-xl-n3 { + margin: -1rem !important; + } + .mt-xl-n3, + .my-xl-n3 { + margin-top: -1rem !important; + } + .mr-xl-n3, + .mx-xl-n3 { + margin-right: -1rem !important; + } + .mb-xl-n3, + .my-xl-n3 { + margin-bottom: -1rem !important; + } + .ml-xl-n3, + .mx-xl-n3 { + margin-left: -1rem !important; + } + .m-xl-n4 { + margin: -1.5rem !important; + } + .mt-xl-n4, + .my-xl-n4 { + margin-top: -1.5rem !important; + } + .mr-xl-n4, + .mx-xl-n4 { + margin-right: -1.5rem !important; + } + .mb-xl-n4, + .my-xl-n4 { + margin-bottom: -1.5rem !important; + } + .ml-xl-n4, + .mx-xl-n4 { + margin-left: -1.5rem !important; + } + .m-xl-n5 { + margin: -3rem !important; + } + .mt-xl-n5, + .my-xl-n5 { + margin-top: -3rem !important; + } + .mr-xl-n5, + .mx-xl-n5 { + margin-right: -3rem !important; + } + .mb-xl-n5, + .my-xl-n5 { + margin-bottom: -3rem !important; + } + .ml-xl-n5, + .mx-xl-n5 { + margin-left: -3rem !important; + } + .m-xl-auto { + margin: auto !important; + } + .mt-xl-auto, + .my-xl-auto { + margin-top: auto !important; + } + .mr-xl-auto, + .mx-xl-auto { + margin-right: auto !important; + } + .mb-xl-auto, + .my-xl-auto { + margin-bottom: auto !important; + } + .ml-xl-auto, + .mx-xl-auto { + margin-left: auto !important; + } +} + +.stretched-link::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + pointer-events: auto; + content: ""; + background-color: rgba(0, 0, 0, 0); +} + +.text-monospace { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; +} + +.text-justify { + text-align: justify !important; +} + +.text-wrap { + white-space: normal !important; +} + +.text-nowrap { + white-space: nowrap !important; +} + +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.text-left { + text-align: left !important; +} + +.text-right { + text-align: right !important; +} + +.text-center { + text-align: center !important; +} + +@media (min-width: 576px) { + .text-sm-left { + text-align: left !important; + } + .text-sm-right { + text-align: right !important; + } + .text-sm-center { + text-align: center !important; + } +} + +@media (min-width: 768px) { + .text-md-left { + text-align: left !important; + } + .text-md-right { + text-align: right !important; + } + .text-md-center { + text-align: center !important; + } +} + +@media (min-width: 992px) { + .text-lg-left { + text-align: left !important; + } + .text-lg-right { + text-align: right !important; + } + .text-lg-center { + text-align: center !important; + } +} + +@media (min-width: 1200px) { + .text-xl-left { + text-align: left !important; + } + .text-xl-right { + text-align: right !important; + } + .text-xl-center { + text-align: center !important; + } +} + +.text-lowercase { + text-transform: lowercase !important; +} + +.text-uppercase, .dropdown .dropdown-menu .dropdown-header, .sidebar .sidebar-heading { + text-transform: uppercase !important; +} + +.text-capitalize { + text-transform: capitalize !important; +} + +.font-weight-light { + font-weight: 300 !important; +} + +.font-weight-lighter { + font-weight: lighter !important; +} + +.font-weight-normal { + font-weight: 400 !important; +} + +.font-weight-bold { + font-weight: 700 !important; +} + +.font-weight-bolder { + font-weight: bolder !important; +} + +.font-italic { + font-style: italic !important; +} + +.text-white { + color: #fff !important; +} + +.text-primary { + color: #4e73df !important; +} + +a.text-primary:hover, a.text-primary:focus { + color: #224abe !important; +} + +.text-secondary { + color: #858796 !important; +} + +a.text-secondary:hover, a.text-secondary:focus { + color: #60616f !important; +} + +.text-success { + color: #1cc88a !important; +} + +a.text-success:hover, a.text-success:focus { + color: #13855c !important; +} + +.text-info { + color: #36b9cc !important; +} + +a.text-info:hover, a.text-info:focus { + color: #258391 !important; +} + +.text-warning { + color: #f6c23e !important; +} + +a.text-warning:hover, a.text-warning:focus { + color: #dda20a !important; +} + +.text-danger { + color: #e74a3b !important; +} + +a.text-danger:hover, a.text-danger:focus { + color: #be2617 !important; +} + +.text-light { + color: #f8f9fc !important; +} + +a.text-light:hover, a.text-light:focus { + color: #c2cbe5 !important; +} + +.text-dark { + color: #5a5c69 !important; +} + +a.text-dark:hover, a.text-dark:focus { + color: #373840 !important; +} + +.text-body { + color: #858796 !important; +} + +.text-muted { + color: #858796 !important; +} + +.text-black-50 { + color: rgba(0, 0, 0, 0.5) !important; +} + +.text-white-50 { + color: rgba(255, 255, 255, 0.5) !important; +} + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.text-decoration-none { + text-decoration: none !important; +} + +.text-break { + word-break: break-word !important; + word-wrap: break-word !important; +} + +.text-reset { + color: inherit !important; +} + +.visible { + visibility: visible !important; +} + +.invisible { + visibility: hidden !important; +} + +@media print { + *, + *::before, + *::after { + text-shadow: none !important; + box-shadow: none !important; + } + a:not(.btn) { + text-decoration: underline; + } + abbr[title]::after { + content: " (" attr(title) ")"; + } + pre { + white-space: pre-wrap !important; + } + pre, + blockquote { + border: 1px solid #b7b9cc; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } + @page { + size: a3; + } + body { + min-width: 992px !important; + } + .container { + min-width: 992px !important; + } + .navbar { + display: none; + } + .badge { + border: 1px solid #000; + } + .table { + border-collapse: collapse !important; + } + .table td, + .table th { + background-color: #fff !important; + } + .table-bordered th, + .table-bordered td { + border: 1px solid #dddfeb !important; + } + .table-dark { + color: inherit; + } + .table-dark th, + .table-dark td, + .table-dark thead th, + .table-dark tbody + tbody { + border-color: #e3e6f0; + } + .table .thead-dark th { + color: inherit; + border-color: #e3e6f0; + } +} + +html { + position: relative; + min-height: 100%; +} + +body { + height: 100%; +} + +a:focus { + outline: none; +} + +#wrapper { + display: flex; +} + +#wrapper #content-wrapper { + background-color: #f8f9fc; + width: 100%; + overflow-x: hidden; +} + +#wrapper #content-wrapper #content { + flex: 1 0 auto; +} + +.container, +.container-fluid, +.container-sm, +.container-md, +.container-lg, +.container-xl { + padding-left: 1.5rem; + padding-right: 1.5rem; +} + +.scroll-to-top { + position: fixed; + right: 1rem; + bottom: 1rem; + display: none; + width: 2.75rem; + height: 2.75rem; + text-align: center; + color: #fff; + background: rgba(90, 92, 105, 0.5); + line-height: 46px; +} + +.scroll-to-top:focus, .scroll-to-top:hover { + color: white; +} + +.scroll-to-top:hover { + background: #5a5c69; +} + +.scroll-to-top i { + font-weight: 800; +} + +@-webkit-keyframes growIn { + 0% { + transform: scale(0.9); + opacity: 0; + } + 100% { + transform: scale(1); + opacity: 1; + } +} + +@keyframes growIn { + 0% { + transform: scale(0.9); + opacity: 0; + } + 100% { + transform: scale(1); + opacity: 1; + } +} + +.animated--grow-in, .sidebar .nav-item .collapse { + -webkit-animation-name: growIn; + animation-name: growIn; + -webkit-animation-duration: 200ms; + animation-duration: 200ms; + -webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1); + animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1); +} + +@-webkit-keyframes fadeIn { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} + +@keyframes fadeIn { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} + +.animated--fade-in { + -webkit-animation-name: fadeIn; + animation-name: fadeIn; + -webkit-animation-duration: 200ms; + animation-duration: 200ms; + -webkit-animation-timing-function: opacity cubic-bezier(0, 1, 0.4, 1); + animation-timing-function: opacity cubic-bezier(0, 1, 0.4, 1); +} + +.bg-gradient-primary { + background-color: #4e73df; + background-image: linear-gradient(180deg, #4e73df 10%, #224abe 100%); + background-size: cover; +} + +.bg-gradient-secondary { + background-color: #858796; + background-image: linear-gradient(180deg, #858796 10%, #60616f 100%); + background-size: cover; +} + +.bg-gradient-success { + background-color: #1cc88a; + background-image: linear-gradient(180deg, #1cc88a 10%, #13855c 100%); + background-size: cover; +} + +.bg-gradient-info { + background-color: #36b9cc; + background-image: linear-gradient(180deg, #36b9cc 10%, #258391 100%); + background-size: cover; +} + +.bg-gradient-warning { + background-color: #f6c23e; + background-image: linear-gradient(180deg, #f6c23e 10%, #dda20a 100%); + background-size: cover; +} + +.bg-gradient-danger { + background-color: #e74a3b; + background-image: linear-gradient(180deg, #e74a3b 10%, #be2617 100%); + background-size: cover; +} + +.bg-gradient-light { + background-color: #f8f9fc; + background-image: linear-gradient(180deg, #f8f9fc 10%, #c2cbe5 100%); + background-size: cover; +} + +.bg-gradient-dark { + background-color: #5a5c69; + background-image: linear-gradient(180deg, #5a5c69 10%, #373840 100%); + background-size: cover; +} + +.bg-gray-100 { + background-color: #f8f9fc !important; +} + +.bg-gray-200 { + background-color: #eaecf4 !important; +} + +.bg-gray-300 { + background-color: #dddfeb !important; +} + +.bg-gray-400 { + background-color: #d1d3e2 !important; +} + +.bg-gray-500 { + background-color: #b7b9cc !important; +} + +.bg-gray-600 { + background-color: #858796 !important; +} + +.bg-gray-700 { + background-color: #6e707e !important; +} + +.bg-gray-800 { + background-color: #5a5c69 !important; +} + +.bg-gray-900 { + background-color: #3a3b45 !important; +} + +.o-hidden { + overflow: hidden !important; +} + +.text-xs { + font-size: .7rem; +} + +.text-lg { + font-size: 1.2rem; +} + +.text-gray-100 { + color: #f8f9fc !important; +} + +.text-gray-200 { + color: #eaecf4 !important; +} + +.text-gray-300 { + color: #dddfeb !important; +} + +.text-gray-400 { + color: #d1d3e2 !important; +} + +.text-gray-500 { + color: #b7b9cc !important; +} + +.text-gray-600 { + color: #858796 !important; +} + +.text-gray-700 { + color: #6e707e !important; +} + +.text-gray-800 { + color: #5a5c69 !important; +} + +.text-gray-900 { + color: #3a3b45 !important; +} + +.icon-circle { + height: 2.5rem; + width: 2.5rem; + border-radius: 100%; + display: flex; + align-items: center; + justify-content: center; +} + +.border-left-primary { + border-left: 0.25rem solid #4e73df !important; +} + +.border-bottom-primary { + border-bottom: 0.25rem solid #4e73df !important; +} + +.border-left-secondary { + border-left: 0.25rem solid #858796 !important; +} + +.border-bottom-secondary { + border-bottom: 0.25rem solid #858796 !important; +} + +.border-left-success { + border-left: 0.25rem solid #1cc88a !important; +} + +.border-bottom-success { + border-bottom: 0.25rem solid #1cc88a !important; +} + +.border-left-info { + border-left: 0.25rem solid #36b9cc !important; +} + +.border-bottom-info { + border-bottom: 0.25rem solid #36b9cc !important; +} + +.border-left-warning { + border-left: 0.25rem solid #f6c23e !important; +} + +.border-bottom-warning { + border-bottom: 0.25rem solid #f6c23e !important; +} + +.border-left-danger { + border-left: 0.25rem solid #e74a3b !important; +} + +.border-bottom-danger { + border-bottom: 0.25rem solid #e74a3b !important; +} + +.border-left-light { + border-left: 0.25rem solid #f8f9fc !important; +} + +.border-bottom-light { + border-bottom: 0.25rem solid #f8f9fc !important; +} + +.border-left-dark { + border-left: 0.25rem solid #5a5c69 !important; +} + +.border-bottom-dark { + border-bottom: 0.25rem solid #5a5c69 !important; +} + +.progress-sm { + height: .5rem; +} + +.rotate-15 { + transform: rotate(15deg); +} + +.rotate-n-15 { + transform: rotate(-15deg); +} + +.dropdown .dropdown-menu { + font-size: 0.85rem; +} + +.dropdown .dropdown-menu .dropdown-header { + font-weight: 800; + font-size: 0.65rem; + color: #b7b9cc; +} + +.dropdown.no-arrow .dropdown-toggle::after { + display: none; +} + +.sidebar .nav-item.dropdown .dropdown-toggle::after, +.topbar .nav-item.dropdown .dropdown-toggle::after { + width: 1rem; + text-align: center; + float: right; + vertical-align: 0; + border: 0; + font-weight: 900; + content: '\f105'; + font-family: 'Font Awesome 5 Free'; +} + +.sidebar .nav-item.dropdown.show .dropdown-toggle::after, +.topbar .nav-item.dropdown.show .dropdown-toggle::after { + content: '\f107'; +} + +.sidebar .nav-item .nav-link, +.topbar .nav-item .nav-link { + position: relative; +} + +.sidebar .nav-item .nav-link .badge-counter, +.topbar .nav-item .nav-link .badge-counter { + position: absolute; + transform: scale(0.7); + transform-origin: top right; + right: .25rem; + margin-top: -.25rem; +} + +.sidebar .nav-item .nav-link .img-profile, +.topbar .nav-item .nav-link .img-profile { + height: 2rem; + width: 2rem; +} + +.topbar { + height: 4.375rem; +} + +.topbar #sidebarToggleTop { + height: 2.5rem; + width: 2.5rem; +} + +.topbar #sidebarToggleTop:hover { + background-color: #eaecf4; +} + +.topbar #sidebarToggleTop:active { + background-color: #dddfeb; +} + +.topbar .navbar-search { + width: 25rem; +} + +.topbar .navbar-search input { + font-size: 0.85rem; + height: auto; +} + +.topbar .topbar-divider { + width: 0; + border-right: 1px solid #e3e6f0; + height: calc(4.375rem - 2rem); + margin: auto 1rem; +} + +.topbar .nav-item .nav-link { + height: 4.375rem; + display: flex; + align-items: center; + padding: 0 0.75rem; +} + +.topbar .nav-item .nav-link:focus { + outline: none; +} + +.topbar .nav-item:focus { + outline: none; +} + +.topbar .dropdown { + position: static; +} + +.topbar .dropdown .dropdown-menu { + width: calc(100% - 1.5rem); + right: 0.75rem; +} + +.topbar .dropdown-list { + padding: 0; + border: none; + overflow: hidden; +} + +.topbar .dropdown-list .dropdown-header { + background-color: #4e73df; + border: 1px solid #4e73df; + padding-top: 0.75rem; + padding-bottom: 0.75rem; + color: #fff; +} + +.topbar .dropdown-list .dropdown-item { + white-space: normal; + padding-top: 0.5rem; + padding-bottom: 0.5rem; + border-left: 1px solid #e3e6f0; + border-right: 1px solid #e3e6f0; + border-bottom: 1px solid #e3e6f0; + line-height: 1.3rem; +} + +.topbar .dropdown-list .dropdown-item .dropdown-list-image { + position: relative; + height: 2.5rem; + width: 2.5rem; +} + +.topbar .dropdown-list .dropdown-item .dropdown-list-image img { + height: 2.5rem; + width: 2.5rem; +} + +.topbar .dropdown-list .dropdown-item .dropdown-list-image .status-indicator { + background-color: #eaecf4; + height: 0.75rem; + width: 0.75rem; + border-radius: 100%; + position: absolute; + bottom: 0; + right: 0; + border: 0.125rem solid #fff; +} + +.topbar .dropdown-list .dropdown-item .text-truncate { + max-width: 10rem; +} + +.topbar .dropdown-list .dropdown-item:active { + background-color: #eaecf4; + color: #3a3b45; +} + +@media (min-width: 576px) { + .topbar .dropdown { + position: relative; + } + .topbar .dropdown .dropdown-menu { + width: auto; + right: 0; + } + .topbar .dropdown-list { + width: 20rem !important; + } + .topbar .dropdown-list .dropdown-item .text-truncate { + max-width: 13.375rem; + } +} + +.topbar.navbar-dark .navbar-nav .nav-item .nav-link { + color: rgba(255, 255, 255, 0.8); +} + +.topbar.navbar-dark .navbar-nav .nav-item .nav-link:hover { + color: #fff; +} + +.topbar.navbar-dark .navbar-nav .nav-item .nav-link:active { + color: #fff; +} + +.topbar.navbar-light .navbar-nav .nav-item .nav-link { + color: #d1d3e2; +} + +.topbar.navbar-light .navbar-nav .nav-item .nav-link:hover { + color: #b7b9cc; +} + +.topbar.navbar-light .navbar-nav .nav-item .nav-link:active { + color: #858796; +} + +.sidebar { + width: 6.5rem; + min-height: 100vh; +} + +.sidebar .nav-item { + position: relative; +} + +.sidebar .nav-item:last-child { + margin-bottom: 1rem; +} + +.sidebar .nav-item .nav-link { + text-align: center; + padding: 0.75rem 1rem; + width: 6.5rem; +} + +.sidebar .nav-item .nav-link span { + font-size: 0.65rem; + display: block; +} + +.sidebar .nav-item.active .nav-link { + font-weight: 700; +} + +.sidebar .nav-item .collapse { + position: absolute; + left: calc(6.5rem + 1.5rem / 2); + z-index: 1; + top: 2px; +} + +.sidebar .nav-item .collapse .collapse-inner { + border-radius: 0.35rem; + box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15); +} + +.sidebar .nav-item .collapsing { + display: none; + transition: none; +} + +.sidebar .nav-item .collapse .collapse-inner, +.sidebar .nav-item .collapsing .collapse-inner { + padding: .5rem 0; + min-width: 10rem; + font-size: 0.85rem; + margin: 0 0 1rem 0; +} + +.sidebar .nav-item .collapse .collapse-inner .collapse-header, +.sidebar .nav-item .collapsing .collapse-inner .collapse-header { + margin: 0; + white-space: nowrap; + padding: .5rem 1.5rem; + text-transform: uppercase; + font-weight: 800; + font-size: 0.65rem; + color: #b7b9cc; +} + +.sidebar .nav-item .collapse .collapse-inner .collapse-item, +.sidebar .nav-item .collapsing .collapse-inner .collapse-item { + padding: 0.5rem 1rem; + margin: 0 0.5rem; + display: block; + color: #3a3b45; + text-decoration: none; + border-radius: 0.35rem; + white-space: nowrap; +} + +.sidebar .nav-item .collapse .collapse-inner .collapse-item:hover, +.sidebar .nav-item .collapsing .collapse-inner .collapse-item:hover { + background-color: #eaecf4; +} + +.sidebar .nav-item .collapse .collapse-inner .collapse-item:active, +.sidebar .nav-item .collapsing .collapse-inner .collapse-item:active { + background-color: #dddfeb; +} + +.sidebar .nav-item .collapse .collapse-inner .collapse-item.active, +.sidebar .nav-item .collapsing .collapse-inner .collapse-item.active { + color: #4e73df; + font-weight: 700; +} + +.sidebar #sidebarToggle { + width: 2.5rem; + height: 2.5rem; + text-align: center; + margin-bottom: 1rem; + cursor: pointer; +} + +.sidebar #sidebarToggle::after { + font-weight: 900; + content: '\f104'; + font-family: 'Font Awesome 5 Free'; + margin-right: 0.1rem; +} + +.sidebar #sidebarToggle:hover { + text-decoration: none; +} + +.sidebar #sidebarToggle:focus { + outline: none; +} + +.sidebar.toggled { + width: 0 !important; + overflow: hidden; +} + +.sidebar.toggled #sidebarToggle::after { + content: '\f105'; + font-family: 'Font Awesome 5 Free'; + margin-left: 0.25rem; +} + +.sidebar.toggled .sidebar-card { + display: none; +} + +.sidebar .sidebar-brand { + height: 4.375rem; + text-decoration: none; + font-size: 1rem; + font-weight: 800; + padding: 1.5rem 1rem; + text-align: center; + text-transform: uppercase; + letter-spacing: 0.05rem; + z-index: 1; +} + +.sidebar .sidebar-brand .sidebar-brand-icon i { + font-size: 2rem; +} + +.sidebar .sidebar-brand .sidebar-brand-text { + display: none; +} + +.sidebar hr.sidebar-divider { + margin: 0 1rem 1rem; +} + +.sidebar .sidebar-heading { + text-align: center; + padding: 0 1rem; + font-weight: 800; + font-size: 0.65rem; +} + +.sidebar .sidebar-card { + display: flex; + flex-direction: column; + align-items: center; + font-size: 0.875rem; + border-radius: 0.35rem; + color: rgba(255, 255, 255, 0.8); + margin-left: 1rem; + margin-right: 1rem; + margin-bottom: 1rem; + padding: 1rem; + background-color: rgba(0, 0, 0, 0.1); +} + +.sidebar .sidebar-card .sidebar-card-illustration { + height: 3rem; + display: block; +} + +.sidebar .sidebar-card .sidebar-card-title { + font-weight: bold; +} + +.sidebar .sidebar-card p { + font-size: 0.75rem; + color: rgba(255, 255, 255, 0.5); +} + +@media (min-width: 768px) { + .sidebar { + width: 14rem !important; + } + .sidebar .nav-item .collapse { + position: relative; + left: 0; + z-index: 1; + top: 0; + -webkit-animation: none; + animation: none; + } + .sidebar .nav-item .collapse .collapse-inner { + border-radius: 0; + box-shadow: none; + } + .sidebar .nav-item .collapsing { + display: block; + transition: height 0.15s ease; + } + .sidebar .nav-item .collapse, + .sidebar .nav-item .collapsing { + margin: 0 1rem; + } + .sidebar .nav-item .nav-link { + display: block; + width: 100%; + text-align: left; + padding: 1rem; + width: 14rem; + } + .sidebar .nav-item .nav-link i { + font-size: 0.85rem; + margin-right: 0.25rem; + } + .sidebar .nav-item .nav-link span { + font-size: 0.85rem; + display: inline; + } + .sidebar .nav-item .nav-link[data-toggle="collapse"]::after { + width: 1rem; + text-align: center; + float: right; + vertical-align: 0; + border: 0; + font-weight: 900; + content: '\f107'; + font-family: 'Font Awesome 5 Free'; + } + .sidebar .nav-item .nav-link[data-toggle="collapse"].collapsed::after { + content: '\f105'; + } + .sidebar .sidebar-brand .sidebar-brand-icon i { + font-size: 2rem; + } + .sidebar .sidebar-brand .sidebar-brand-text { + display: inline; + } + .sidebar .sidebar-heading { + text-align: left; + } + .sidebar.toggled { + overflow: visible; + width: 6.5rem !important; + } + .sidebar.toggled .nav-item .collapse { + position: absolute; + left: calc(6.5rem + 1.5rem / 2); + z-index: 1; + top: 2px; + -webkit-animation-name: growIn; + animation-name: growIn; + -webkit-animation-duration: 200ms; + animation-duration: 200ms; + -webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1); + animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1); + } + .sidebar.toggled .nav-item .collapse .collapse-inner { + box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15); + border-radius: 0.35rem; + } + .sidebar.toggled .nav-item .collapsing { + display: none; + transition: none; + } + .sidebar.toggled .nav-item .collapse, + .sidebar.toggled .nav-item .collapsing { + margin: 0; + } + .sidebar.toggled .nav-item:last-child { + margin-bottom: 1rem; + } + .sidebar.toggled .nav-item .nav-link { + text-align: center; + padding: 0.75rem 1rem; + width: 6.5rem; + } + .sidebar.toggled .nav-item .nav-link span { + font-size: 0.65rem; + display: block; + } + .sidebar.toggled .nav-item .nav-link i { + margin-right: 0; + } + .sidebar.toggled .nav-item .nav-link[data-toggle="collapse"]::after { + display: none; + } + .sidebar.toggled .sidebar-brand .sidebar-brand-icon i { + font-size: 2rem; + } + .sidebar.toggled .sidebar-brand .sidebar-brand-text { + display: none; + } + .sidebar.toggled .sidebar-heading { + text-align: center; + } +} + +.sidebar-light .sidebar-brand { + color: #6e707e; +} + +.sidebar-light hr.sidebar-divider { + border-top: 1px solid #eaecf4; +} + +.sidebar-light .sidebar-heading { + color: #b7b9cc; +} + +.sidebar-light .nav-item .nav-link { + color: #858796; +} + +.sidebar-light .nav-item .nav-link i { + color: #d1d3e2; +} + +.sidebar-light .nav-item .nav-link:active, .sidebar-light .nav-item .nav-link:focus, .sidebar-light .nav-item .nav-link:hover { + color: #6e707e; +} + +.sidebar-light .nav-item .nav-link:active i, .sidebar-light .nav-item .nav-link:focus i, .sidebar-light .nav-item .nav-link:hover i { + color: #6e707e; +} + +.sidebar-light .nav-item .nav-link[data-toggle="collapse"]::after { + color: #b7b9cc; +} + +.sidebar-light .nav-item.active .nav-link { + color: #6e707e; +} + +.sidebar-light .nav-item.active .nav-link i { + color: #6e707e; +} + +.sidebar-light #sidebarToggle { + background-color: #eaecf4; +} + +.sidebar-light #sidebarToggle::after { + color: #b7b9cc; +} + +.sidebar-light #sidebarToggle:hover { + background-color: #dddfeb; +} + +.sidebar-dark .sidebar-brand { + color: #fff; +} + +.sidebar-dark hr.sidebar-divider { + border-top: 1px solid rgba(255, 255, 255, 0.15); +} + +.sidebar-dark .sidebar-heading { + color: rgba(255, 255, 255, 0.4); +} + +.sidebar-dark .nav-item .nav-link { + color: rgba(255, 255, 255, 0.8); +} + +.sidebar-dark .nav-item .nav-link i { + color: rgba(255, 255, 255, 0.3); +} + +.sidebar-dark .nav-item .nav-link:active, .sidebar-dark .nav-item .nav-link:focus, .sidebar-dark .nav-item .nav-link:hover { + color: #fff; +} + +.sidebar-dark .nav-item .nav-link:active i, .sidebar-dark .nav-item .nav-link:focus i, .sidebar-dark .nav-item .nav-link:hover i { + color: #fff; +} + +.sidebar-dark .nav-item .nav-link[data-toggle="collapse"]::after { + color: rgba(255, 255, 255, 0.5); +} + +.sidebar-dark .nav-item.active .nav-link { + color: #fff; +} + +.sidebar-dark .nav-item.active .nav-link i { + color: #fff; +} + +.sidebar-dark #sidebarToggle { + background-color: rgba(255, 255, 255, 0.2); +} + +.sidebar-dark #sidebarToggle::after { + color: rgba(255, 255, 255, 0.5); +} + +.sidebar-dark #sidebarToggle:hover { + background-color: rgba(255, 255, 255, 0.25); +} + +.sidebar-dark.toggled #sidebarToggle::after { + color: rgba(255, 255, 255, 0.5); +} + +.btn-circle { + border-radius: 100%; + height: 2.5rem; + width: 2.5rem; + font-size: 1rem; + display: inline-flex; + align-items: center; + justify-content: center; +} + +.btn-circle.btn-sm, .btn-group-sm > .btn-circle.btn { + height: 1.8rem; + width: 1.8rem; + font-size: 0.75rem; +} + +.btn-circle.btn-lg, .btn-group-lg > .btn-circle.btn { + height: 3.5rem; + width: 3.5rem; + font-size: 1.35rem; +} + +.btn-icon-split { + padding: 0; + overflow: hidden; + display: inline-flex; + align-items: stretch; + justify-content: center; +} + +.btn-icon-split .icon { + background: rgba(0, 0, 0, 0.15); + display: inline-block; + padding: 0.375rem 0.75rem; +} + +.btn-icon-split .text { + display: inline-block; + padding: 0.375rem 0.75rem; +} + +.btn-icon-split.btn-sm .icon, .btn-group-sm > .btn-icon-split.btn .icon { + padding: 0.25rem 0.5rem; +} + +.btn-icon-split.btn-sm .text, .btn-group-sm > .btn-icon-split.btn .text { + padding: 0.25rem 0.5rem; +} + +.btn-icon-split.btn-lg .icon, .btn-group-lg > .btn-icon-split.btn .icon { + padding: 0.5rem 1rem; +} + +.btn-icon-split.btn-lg .text, .btn-group-lg > .btn-icon-split.btn .text { + padding: 0.5rem 1rem; +} + +.card .card-header .dropdown { + line-height: 1; +} + +.card .card-header .dropdown .dropdown-menu { + line-height: 1.5; +} + +.card .card-header[data-toggle="collapse"] { + text-decoration: none; + position: relative; + padding: 0.75rem 3.25rem 0.75rem 1.25rem; +} + +.card .card-header[data-toggle="collapse"]::after { + position: absolute; + right: 0; + top: 0; + padding-right: 1.725rem; + line-height: 51px; + font-weight: 900; + content: '\f107'; + font-family: 'Font Awesome 5 Free'; + color: #d1d3e2; +} + +.card .card-header[data-toggle="collapse"].collapsed { + border-radius: 0.35rem; +} + +.card .card-header[data-toggle="collapse"].collapsed::after { + content: '\f105'; +} + +.chart-area { + position: relative; + height: 10rem; + width: 100%; +} + +@media (min-width: 768px) { + .chart-area { + height: 20rem; + } +} + +.chart-bar { + position: relative; + height: 10rem; + width: 100%; +} + +@media (min-width: 768px) { + .chart-bar { + height: 20rem; + } +} + +.chart-pie { + position: relative; + height: 15rem; + width: 100%; +} + +@media (min-width: 768px) { + .chart-pie { + height: calc(20rem - 43px) !important; + } +} + +.bg-login-image { + background: url("https://source.unsplash.com/K4mSJ7kc0As/600x800"); + background-position: center; + background-size: cover; +} + +.bg-register-image { + background: url("https://source.unsplash.com/Mv9hjnEUHR4/600x800"); + background-position: center; + background-size: cover; +} + +.bg-password-image { + background: url("https://source.unsplash.com/oWTW-jNGl9I/600x800"); + background-position: center; + background-size: cover; +} + +form.user .custom-checkbox.small label { + line-height: 1.5rem; +} + +form.user .form-control-user { + font-size: 0.8rem; + border-radius: 10rem; + padding: 1.5rem 1rem; +} + +form.user .btn-user { + font-size: 0.8rem; + border-radius: 10rem; + padding: 0.75rem 1rem; +} + +.btn-google { + color: #fff; + background-color: #ea4335; + border-color: #fff; +} + +.btn-google:hover { + color: #fff; + background-color: #e12717; + border-color: #e6e6e6; +} + +.btn-google:focus, .btn-google.focus { + color: #fff; + background-color: #e12717; + border-color: #e6e6e6; + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); +} + +.btn-google.disabled, .btn-google:disabled { + color: #fff; + background-color: #ea4335; + border-color: #fff; +} + +.btn-google:not(:disabled):not(.disabled):active, .btn-google:not(:disabled):not(.disabled).active, +.show > .btn-google.dropdown-toggle { + color: #fff; + background-color: #d62516; + border-color: #dfdfdf; +} + +.btn-google:not(:disabled):not(.disabled):active:focus, .btn-google:not(:disabled):not(.disabled).active:focus, +.show > .btn-google.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); +} + +.btn-facebook { + color: #fff; + background-color: #3b5998; + border-color: #fff; +} + +.btn-facebook:hover { + color: #fff; + background-color: #30497c; + border-color: #e6e6e6; +} + +.btn-facebook:focus, .btn-facebook.focus { + color: #fff; + background-color: #30497c; + border-color: #e6e6e6; + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); +} + +.btn-facebook.disabled, .btn-facebook:disabled { + color: #fff; + background-color: #3b5998; + border-color: #fff; +} + +.btn-facebook:not(:disabled):not(.disabled):active, .btn-facebook:not(:disabled):not(.disabled).active, +.show > .btn-facebook.dropdown-toggle { + color: #fff; + background-color: #2d4373; + border-color: #dfdfdf; +} + +.btn-facebook:not(:disabled):not(.disabled):active:focus, .btn-facebook:not(:disabled):not(.disabled).active:focus, +.show > .btn-facebook.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); +} + +.error { + color: #5a5c69; + font-size: 7rem; + position: relative; + line-height: 1; + width: 12.5rem; +} + +@-webkit-keyframes noise-anim { + 0% { + clip: rect(49px, 9999px, 40px, 0); + } + 5% { + clip: rect(75px, 9999px, 72px, 0); + } + 10% { + clip: rect(97px, 9999px, 93px, 0); + } + 15% { + clip: rect(15px, 9999px, 9px, 0); + } + 20% { + clip: rect(14px, 9999px, 92px, 0); + } + 25% { + clip: rect(18px, 9999px, 94px, 0); + } + 30% { + clip: rect(17px, 9999px, 20px, 0); + } + 35% { + clip: rect(71px, 9999px, 59px, 0); + } + 40% { + clip: rect(42px, 9999px, 84px, 0); + } + 45% { + clip: rect(56px, 9999px, 25px, 0); + } + 50% { + clip: rect(46px, 9999px, 14px, 0); + } + 55% { + clip: rect(47px, 9999px, 1px, 0); + } + 60% { + clip: rect(64px, 9999px, 58px, 0); + } + 65% { + clip: rect(89px, 9999px, 92px, 0); + } + 70% { + clip: rect(56px, 9999px, 39px, 0); + } + 75% { + clip: rect(80px, 9999px, 71px, 0); + } + 80% { + clip: rect(8px, 9999px, 13px, 0); + } + 85% { + clip: rect(66px, 9999px, 68px, 0); + } + 90% { + clip: rect(68px, 9999px, 4px, 0); + } + 95% { + clip: rect(56px, 9999px, 14px, 0); + } + 100% { + clip: rect(28px, 9999px, 53px, 0); + } +} + +@keyframes noise-anim { + 0% { + clip: rect(49px, 9999px, 40px, 0); + } + 5% { + clip: rect(75px, 9999px, 72px, 0); + } + 10% { + clip: rect(97px, 9999px, 93px, 0); + } + 15% { + clip: rect(15px, 9999px, 9px, 0); + } + 20% { + clip: rect(14px, 9999px, 92px, 0); + } + 25% { + clip: rect(18px, 9999px, 94px, 0); + } + 30% { + clip: rect(17px, 9999px, 20px, 0); + } + 35% { + clip: rect(71px, 9999px, 59px, 0); + } + 40% { + clip: rect(42px, 9999px, 84px, 0); + } + 45% { + clip: rect(56px, 9999px, 25px, 0); + } + 50% { + clip: rect(46px, 9999px, 14px, 0); + } + 55% { + clip: rect(47px, 9999px, 1px, 0); + } + 60% { + clip: rect(64px, 9999px, 58px, 0); + } + 65% { + clip: rect(89px, 9999px, 92px, 0); + } + 70% { + clip: rect(56px, 9999px, 39px, 0); + } + 75% { + clip: rect(80px, 9999px, 71px, 0); + } + 80% { + clip: rect(8px, 9999px, 13px, 0); + } + 85% { + clip: rect(66px, 9999px, 68px, 0); + } + 90% { + clip: rect(68px, 9999px, 4px, 0); + } + 95% { + clip: rect(56px, 9999px, 14px, 0); + } + 100% { + clip: rect(28px, 9999px, 53px, 0); + } +} + +.error:after { + content: attr(data-text); + position: absolute; + left: 2px; + text-shadow: -1px 0 #e74a3b; + top: 0; + color: #5a5c69; + background: #f8f9fc; + overflow: hidden; + clip: rect(0, 900px, 0, 0); + animation: noise-anim 2s infinite linear alternate-reverse; +} + +@-webkit-keyframes noise-anim-2 { + 0% { + clip: rect(16px, 9999px, 10px, 0); + } + 5% { + clip: rect(22px, 9999px, 29px, 0); + } + 10% { + clip: rect(6px, 9999px, 68px, 0); + } + 15% { + clip: rect(85px, 9999px, 95px, 0); + } + 20% { + clip: rect(65px, 9999px, 91px, 0); + } + 25% { + clip: rect(93px, 9999px, 68px, 0); + } + 30% { + clip: rect(10px, 9999px, 27px, 0); + } + 35% { + clip: rect(37px, 9999px, 25px, 0); + } + 40% { + clip: rect(12px, 9999px, 23px, 0); + } + 45% { + clip: rect(40px, 9999px, 18px, 0); + } + 50% { + clip: rect(19px, 9999px, 71px, 0); + } + 55% { + clip: rect(2px, 9999px, 35px, 0); + } + 60% { + clip: rect(16px, 9999px, 69px, 0); + } + 65% { + clip: rect(8px, 9999px, 65px, 0); + } + 70% { + clip: rect(30px, 9999px, 57px, 0); + } + 75% { + clip: rect(14px, 9999px, 4px, 0); + } + 80% { + clip: rect(39px, 9999px, 30px, 0); + } + 85% { + clip: rect(22px, 9999px, 35px, 0); + } + 90% { + clip: rect(58px, 9999px, 71px, 0); + } + 95% { + clip: rect(34px, 9999px, 90px, 0); + } + 100% { + clip: rect(67px, 9999px, 68px, 0); + } +} + +@keyframes noise-anim-2 { + 0% { + clip: rect(16px, 9999px, 10px, 0); + } + 5% { + clip: rect(22px, 9999px, 29px, 0); + } + 10% { + clip: rect(6px, 9999px, 68px, 0); + } + 15% { + clip: rect(85px, 9999px, 95px, 0); + } + 20% { + clip: rect(65px, 9999px, 91px, 0); + } + 25% { + clip: rect(93px, 9999px, 68px, 0); + } + 30% { + clip: rect(10px, 9999px, 27px, 0); + } + 35% { + clip: rect(37px, 9999px, 25px, 0); + } + 40% { + clip: rect(12px, 9999px, 23px, 0); + } + 45% { + clip: rect(40px, 9999px, 18px, 0); + } + 50% { + clip: rect(19px, 9999px, 71px, 0); + } + 55% { + clip: rect(2px, 9999px, 35px, 0); + } + 60% { + clip: rect(16px, 9999px, 69px, 0); + } + 65% { + clip: rect(8px, 9999px, 65px, 0); + } + 70% { + clip: rect(30px, 9999px, 57px, 0); + } + 75% { + clip: rect(14px, 9999px, 4px, 0); + } + 80% { + clip: rect(39px, 9999px, 30px, 0); + } + 85% { + clip: rect(22px, 9999px, 35px, 0); + } + 90% { + clip: rect(58px, 9999px, 71px, 0); + } + 95% { + clip: rect(34px, 9999px, 90px, 0); + } + 100% { + clip: rect(67px, 9999px, 68px, 0); + } +} + +.error:before { + content: attr(data-text); + position: absolute; + left: -2px; + text-shadow: 1px 0 #4e73df; + top: 0; + color: #5a5c69; + background: #f8f9fc; + overflow: hidden; + clip: rect(0, 900px, 0, 0); + animation: noise-anim-2 3s infinite linear alternate-reverse; +} + +footer.sticky-footer { + padding: 2rem 0; + flex-shrink: 0; +} + +footer.sticky-footer .copyright { + line-height: 1; + font-size: 0.8rem; +} + +body.sidebar-toggled footer.sticky-footer { + width: 100%; +} diff --git a/public/assets/css/sb-admin-2.min.css b/public/assets/css/sb-admin-2.min.css new file mode 100644 index 0000000..903c9d1 --- /dev/null +++ b/public/assets/css/sb-admin-2.min.css @@ -0,0 +1,10 @@ +/*! + * Start Bootstrap - SB Admin 2 v4.1.3 (https://startbootstrap.com/theme/sb-admin-2) + * Copyright 2013-2021 Start Bootstrap + * Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-sb-admin-2/blob/master/LICENSE) + *//*! + * Bootstrap v4.6.0 (https://getbootstrap.com/) + * Copyright 2011-2021 The Bootstrap Authors + * Copyright 2011-2021 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */:root{--blue:#4e73df;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#e74a3b;--orange:#fd7e14;--yellow:#f6c23e;--green:#1cc88a;--teal:#20c9a6;--cyan:#36b9cc;--white:#fff;--gray:#858796;--gray-dark:#5a5c69;--primary:#4e73df;--secondary:#858796;--success:#1cc88a;--info:#36b9cc;--warning:#f6c23e;--danger:#e74a3b;--light:#f8f9fc;--dark:#5a5c69;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:"Nunito",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:Nunito,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#858796;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#4e73df;text-decoration:none;background-color:transparent}a:hover{color:#224abe;text-decoration:underline}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#858796;text-align:left;caption-side:bottom}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:400;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#858796}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dddfeb;border-radius:.35rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#858796}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#3a3b45;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#3a3b45}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:.75rem;padding-left:.75rem;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:flex;flex-wrap:wrap;margin-right:-.75rem;margin-left:-.75rem}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:.75rem;padding-left:.75rem}.col{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.33333%;max-width:33.33333%}.row-cols-4>*{flex:0 0 25%;max-width:25%}.row-cols-5>*{flex:0 0 20%;max-width:20%}.row-cols-6>*{flex:0 0 16.66667%;max-width:16.66667%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.33333%;max-width:8.33333%}.col-2{flex:0 0 16.66667%;max-width:16.66667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.33333%;max-width:33.33333%}.col-5{flex:0 0 41.66667%;max-width:41.66667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.33333%;max-width:58.33333%}.col-8{flex:0 0 66.66667%;max-width:66.66667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.33333%;max-width:83.33333%}.col-11{flex:0 0 91.66667%;max-width:91.66667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.33333%}.offset-2{margin-left:16.66667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333%}.offset-5{margin-left:41.66667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333%}.offset-8{margin-left:66.66667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333%}.offset-11{margin-left:91.66667%}@media (min-width:576px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.33333%;max-width:33.33333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.66667%;max-width:16.66667%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{flex:0 0 8.33333%;max-width:8.33333%}.col-sm-2{flex:0 0 16.66667%;max-width:16.66667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.33333%;max-width:33.33333%}.col-sm-5{flex:0 0 41.66667%;max-width:41.66667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.33333%;max-width:58.33333%}.col-sm-8{flex:0 0 66.66667%;max-width:66.66667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.33333%;max-width:83.33333%}.col-sm-11{flex:0 0 91.66667%;max-width:91.66667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333%}.offset-sm-2{margin-left:16.66667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333%}.offset-sm-5{margin-left:41.66667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333%}.offset-sm-8{margin-left:66.66667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333%}.offset-sm-11{margin-left:91.66667%}}@media (min-width:768px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.33333%;max-width:33.33333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.66667%;max-width:16.66667%}.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-1{flex:0 0 8.33333%;max-width:8.33333%}.col-md-2{flex:0 0 16.66667%;max-width:16.66667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.33333%;max-width:33.33333%}.col-md-5{flex:0 0 41.66667%;max-width:41.66667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.33333%;max-width:58.33333%}.col-md-8{flex:0 0 66.66667%;max-width:66.66667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.33333%;max-width:83.33333%}.col-md-11{flex:0 0 91.66667%;max-width:91.66667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333%}.offset-md-2{margin-left:16.66667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333%}.offset-md-5{margin-left:41.66667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333%}.offset-md-8{margin-left:66.66667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333%}.offset-md-11{margin-left:91.66667%}}@media (min-width:992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.33333%;max-width:33.33333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.66667%;max-width:16.66667%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{flex:0 0 8.33333%;max-width:8.33333%}.col-lg-2{flex:0 0 16.66667%;max-width:16.66667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.33333%;max-width:33.33333%}.col-lg-5{flex:0 0 41.66667%;max-width:41.66667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.33333%;max-width:58.33333%}.col-lg-8{flex:0 0 66.66667%;max-width:66.66667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.33333%;max-width:83.33333%}.col-lg-11{flex:0 0 91.66667%;max-width:91.66667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333%}.offset-lg-2{margin-left:16.66667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333%}.offset-lg-5{margin-left:41.66667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333%}.offset-lg-8{margin-left:66.66667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333%}.offset-lg-11{margin-left:91.66667%}}@media (min-width:1200px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.33333%;max-width:33.33333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.66667%;max-width:16.66667%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{flex:0 0 8.33333%;max-width:8.33333%}.col-xl-2{flex:0 0 16.66667%;max-width:16.66667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.33333%;max-width:33.33333%}.col-xl-5{flex:0 0 41.66667%;max-width:41.66667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.33333%;max-width:58.33333%}.col-xl-8{flex:0 0 66.66667%;max-width:66.66667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.33333%;max-width:83.33333%}.col-xl-11{flex:0 0 91.66667%;max-width:91.66667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333%}.offset-xl-2{margin-left:16.66667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333%}.offset-xl-5{margin-left:41.66667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333%}.offset-xl-8{margin-left:66.66667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333%}.offset-xl-11{margin-left:91.66667%}}.table{width:100%;margin-bottom:1rem;color:#858796}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #e3e6f0}.table thead th{vertical-align:bottom;border-bottom:2px solid #e3e6f0}.table tbody+tbody{border-top:2px solid #e3e6f0}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #e3e6f0}.table-bordered td,.table-bordered th{border:1px solid #e3e6f0}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#858796;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#cdd8f6}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#a3b6ee}.table-hover .table-primary:hover{background-color:#b7c7f2}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#b7c7f2}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#dddde2}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#c0c1c8}.table-hover .table-secondary:hover{background-color:#cfcfd6}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#cfcfd6}.table-success,.table-success>td,.table-success>th{background-color:#bff0de}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#89e2c2}.table-hover .table-success:hover{background-color:#aaebd3}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#aaebd3}.table-info,.table-info>td,.table-info>th{background-color:#c7ebf1}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#96dbe4}.table-hover .table-info:hover{background-color:#b3e4ec}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#b3e4ec}.table-warning,.table-warning>td,.table-warning>th{background-color:#fceec9}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#fadf9b}.table-hover .table-warning:hover{background-color:#fbe6b1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#fbe6b1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f8ccc8}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#f3a199}.table-hover .table-danger:hover{background-color:#f5b7b1}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f5b7b1}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfd}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#d1d1d5}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#a9aab1}.table-hover .table-dark:hover{background-color:#c4c4c9}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#c4c4c9}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#5a5c69;border-color:#6c6e7e}.table .thead-light th{color:#6e707e;background-color:#eaecf4;border-color:#e3e6f0}.table-dark{color:#fff;background-color:#5a5c69}.table-dark td,.table-dark th,.table-dark thead th{border-color:#6c6e7e}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#6e707e;background-color:#fff;background-clip:padding-box;border:1px solid #d1d3e2;border-radius:.35rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #6e707e}.form-control:focus{color:#6e707e;background-color:#fff;border-color:#bac8f3;outline:0;box-shadow:0 0 0 .2rem rgba(78,115,223,.25)}.form-control::-webkit-input-placeholder{color:#858796;opacity:1}.form-control::-moz-placeholder{color:#858796;opacity:1}.form-control:-ms-input-placeholder{color:#858796;opacity:1}.form-control::-ms-input-placeholder{color:#858796;opacity:1}.form-control::placeholder{color:#858796;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#eaecf4;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#6e707e;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#858796;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#858796}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#1cc88a}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(28,200,138,.9);border-radius:.35rem}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:5px}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#1cc88a;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%231cc88a' 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:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#1cc88a;box-shadow:0 0 0 .2rem rgba(28,200,138,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#1cc88a;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%235a5c69' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%231cc88a' 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") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#1cc88a;box-shadow:0 0 0 .2rem rgba(28,200,138,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#1cc88a}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#1cc88a}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#1cc88a}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34e3a4;background-color:#34e3a4}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(28,200,138,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#1cc88a}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#1cc88a}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#1cc88a;box-shadow:0 0 0 .2rem rgba(28,200,138,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#e74a3b}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(231,74,59,.9);border-radius:.35rem}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:5px}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#e74a3b;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e74a3b' viewBox='0 0 12 12'%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='%23e74a3b' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#e74a3b;box-shadow:0 0 0 .2rem rgba(231,74,59,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#e74a3b;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%235a5c69' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e74a3b' viewBox='0 0 12 12'%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='%23e74a3b' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#e74a3b;box-shadow:0 0 0 .2rem rgba(231,74,59,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#e74a3b}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#e74a3b}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#e74a3b}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#ed7468;background-color:#ed7468}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(231,74,59,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#e74a3b}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#e74a3b}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#e74a3b;box-shadow:0 0 0 .2rem rgba(231,74,59,.25)}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#858796;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.35rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#858796;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(78,115,223,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#4e73df;border-color:#4e73df}.btn-primary:hover{color:#fff;background-color:#2e59d9;border-color:#2653d4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#2e59d9;border-color:#2653d4;box-shadow:0 0 0 .2rem rgba(105,136,228,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#4e73df;border-color:#4e73df}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#2653d4;border-color:#244ec9}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(105,136,228,.5)}.btn-secondary{color:#fff;background-color:#858796;border-color:#858796}.btn-secondary:hover{color:#fff;background-color:#717384;border-color:#6b6d7d}.btn-secondary.focus,.btn-secondary:focus{color:#fff;background-color:#717384;border-color:#6b6d7d;box-shadow:0 0 0 .2rem rgba(151,153,166,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#858796;border-color:#858796}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#6b6d7d;border-color:#656776}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(151,153,166,.5)}.btn-success{color:#fff;background-color:#1cc88a;border-color:#1cc88a}.btn-success:hover{color:#fff;background-color:#17a673;border-color:#169b6b}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#17a673;border-color:#169b6b;box-shadow:0 0 0 .2rem rgba(62,208,156,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#1cc88a;border-color:#1cc88a}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#169b6b;border-color:#149063}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(62,208,156,.5)}.btn-info{color:#fff;background-color:#36b9cc;border-color:#36b9cc}.btn-info:hover{color:#fff;background-color:#2c9faf;border-color:#2a96a5}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#2c9faf;border-color:#2a96a5;box-shadow:0 0 0 .2rem rgba(84,196,212,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#36b9cc;border-color:#36b9cc}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#2a96a5;border-color:#278c9b}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(84,196,212,.5)}.btn-warning{color:#fff;background-color:#f6c23e;border-color:#f6c23e}.btn-warning:hover{color:#fff;background-color:#f4b619;border-color:#f4b30d}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#f4b619;border-color:#f4b30d;box-shadow:0 0 0 .2rem rgba(247,203,91,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#fff;background-color:#f6c23e;border-color:#f6c23e}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#f4b30d;border-color:#e9aa0b}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(247,203,91,.5)}.btn-danger{color:#fff;background-color:#e74a3b;border-color:#e74a3b}.btn-danger:hover{color:#fff;background-color:#e02d1b;border-color:#d52a1a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#e02d1b;border-color:#d52a1a;box-shadow:0 0 0 .2rem rgba(235,101,88,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#e74a3b;border-color:#e74a3b}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#d52a1a;border-color:#ca2819}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(235,101,88,.5)}.btn-light{color:#3a3b45;background-color:#f8f9fc;border-color:#f8f9fc}.btn-light:hover{color:#3a3b45;background-color:#dde2f1;border-color:#d4daed}.btn-light.focus,.btn-light:focus{color:#3a3b45;background-color:#dde2f1;border-color:#d4daed;box-shadow:0 0 0 .2rem rgba(220,221,225,.5)}.btn-light.disabled,.btn-light:disabled{color:#3a3b45;background-color:#f8f9fc;border-color:#f8f9fc}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#3a3b45;background-color:#d4daed;border-color:#cbd3e9}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,221,225,.5)}.btn-dark{color:#fff;background-color:#5a5c69;border-color:#5a5c69}.btn-dark:hover{color:#fff;background-color:#484a54;border-color:#42444e}.btn-dark.focus,.btn-dark:focus{color:#fff;background-color:#484a54;border-color:#42444e;box-shadow:0 0 0 .2rem rgba(115,116,128,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#5a5c69;border-color:#5a5c69}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#42444e;border-color:#3d3e47}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(115,116,128,.5)}.btn-outline-primary{color:#4e73df;border-color:#4e73df}.btn-outline-primary:hover{color:#fff;background-color:#4e73df;border-color:#4e73df}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(78,115,223,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#4e73df;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#4e73df;border-color:#4e73df}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(78,115,223,.5)}.btn-outline-secondary{color:#858796;border-color:#858796}.btn-outline-secondary:hover{color:#fff;background-color:#858796;border-color:#858796}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(133,135,150,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#858796;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#858796;border-color:#858796}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(133,135,150,.5)}.btn-outline-success{color:#1cc88a;border-color:#1cc88a}.btn-outline-success:hover{color:#fff;background-color:#1cc88a;border-color:#1cc88a}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(28,200,138,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#1cc88a;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#1cc88a;border-color:#1cc88a}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(28,200,138,.5)}.btn-outline-info{color:#36b9cc;border-color:#36b9cc}.btn-outline-info:hover{color:#fff;background-color:#36b9cc;border-color:#36b9cc}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(54,185,204,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#36b9cc;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#36b9cc;border-color:#36b9cc}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(54,185,204,.5)}.btn-outline-warning{color:#f6c23e;border-color:#f6c23e}.btn-outline-warning:hover{color:#fff;background-color:#f6c23e;border-color:#f6c23e}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(246,194,62,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#f6c23e;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#fff;background-color:#f6c23e;border-color:#f6c23e}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(246,194,62,.5)}.btn-outline-danger{color:#e74a3b;border-color:#e74a3b}.btn-outline-danger:hover{color:#fff;background-color:#e74a3b;border-color:#e74a3b}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(231,74,59,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#e74a3b;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#e74a3b;border-color:#e74a3b}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(231,74,59,.5)}.btn-outline-light{color:#f8f9fc;border-color:#f8f9fc}.btn-outline-light:hover{color:#3a3b45;background-color:#f8f9fc;border-color:#f8f9fc}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,252,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fc;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#3a3b45;background-color:#f8f9fc;border-color:#f8f9fc}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,252,.5)}.btn-outline-dark{color:#5a5c69;border-color:#5a5c69}.btn-outline-dark:hover{color:#fff;background-color:#5a5c69;border-color:#5a5c69}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(90,92,105,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#5a5c69;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#5a5c69;border-color:#5a5c69}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(90,92,105,.5)}.btn-link{font-weight:400;color:#4e73df;text-decoration:none}.btn-link:hover{color:#224abe;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#858796;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .15s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:.85rem;color:#858796;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #e3e6f0;border-radius:.35rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #eaecf4}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#3a3b45;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#2e2f37;text-decoration:none;background-color:#eaecf4}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#4e73df}.dropdown-item.disabled,.dropdown-item:disabled{color:#b7b9cc;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#858796;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#3a3b45}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:flex;align-items:center}.input-group>.custom-file:not(:first-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after,.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after,.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.form-control:nth-last-child(n+3){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-append,.input-group-prepend{display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#6e707e;text-align:center;white-space:nowrap;background-color:#eaecf4;border:1px solid #d1d3e2;border-radius:.35rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;z-index:1;display:block;min-height:1.5rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;color-adjust:exact}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#4e73df;background-color:#4e73df}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(78,115,223,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#bac8f3}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#e5ebfa;border-color:#e5ebfa}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#858796}.custom-control-input:disabled~.custom-control-label::before,.custom-control-input[disabled]~.custom-control-label::before{background-color:#eaecf4}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#b7b9cc solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50%/50% 50% no-repeat}.custom-checkbox .custom-control-label::before{border-radius:.35rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#4e73df;background-color:#4e73df}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(78,115,223,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(78,115,223,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(78,115,223,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#b7b9cc;border-radius:.5rem;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(78,115,223,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#6e707e;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%235a5c69' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat;border:1px solid #d1d3e2;border-radius:.35rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#bac8f3;outline:0;box-shadow:0 0 0 .2rem rgba(78,115,223,.25)}.custom-select:focus::-ms-value{color:#6e707e;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#858796;background-color:#eaecf4}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #6e707e}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;overflow:hidden;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#bac8f3;box-shadow:0 0 0 .2rem rgba(78,115,223,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#eaecf4}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;overflow:hidden;font-weight:400;line-height:1.5;color:#6e707e;background-color:#fff;border:1px solid #d1d3e2;border-radius:.35rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#6e707e;content:"Browse";background-color:#eaecf4;border-left:inherit;border-radius:0 .35rem .35rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(78,115,223,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(78,115,223,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(78,115,223,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#4e73df;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#e5ebfa}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dddfeb;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#4e73df;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#e5ebfa}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dddfeb;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#4e73df;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#e5ebfa}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dddfeb;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dddfeb;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#b7b9cc}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#b7b9cc}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#b7b9cc}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#858796;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dddfeb}.nav-tabs .nav-link{margin-bottom:-1px;border:1px solid transparent;border-top-left-radius:.35rem;border-top-right-radius:.35rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#eaecf4 #eaecf4 #dddfeb}.nav-tabs .nav-link.disabled{color:#858796;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#6e707e;background-color:#fff;border-color:#dddfeb #dddfeb #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.35rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#4e73df}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.35rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50%/100% 100% no-repeat}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%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,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid #e3e6f0;border-radius:.35rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.35rem - 1px);border-top-right-radius:calc(.35rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.35rem - 1px);border-bottom-left-radius:calc(.35rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:#f8f9fc;border-bottom:1px solid #e3e6f0}.card-header:first-child{border-radius:calc(.35rem - 1px) calc(.35rem - 1px) 0 0}.card-footer{padding:.75rem 1.25rem;background-color:#f8f9fc;border-top:1px solid #e3e6f0}.card-footer:last-child{border-radius:0 0 calc(.35rem - 1px) calc(.35rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(.35rem - 1px)}.card-img,.card-img-bottom,.card-img-top{flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.35rem - 1px);border-top-right-radius:calc(.35rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.35rem - 1px);border-bottom-left-radius:calc(.35rem - 1px)}.card-deck .card{margin-bottom:.75rem}@media (min-width:576px){.card-deck{display:flex;flex-flow:row wrap;margin-right:-.75rem;margin-left:-.75rem}.card-deck .card{flex:1 0 0%;margin-right:.75rem;margin-bottom:0;margin-left:.75rem}}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-moz-column-count:3;column-count:3;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#eaecf4;border-radius:.35rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#858796;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#858796}.pagination{display:flex;padding-left:0;list-style:none;border-radius:.35rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#4e73df;background-color:#fff;border:1px solid #dddfeb}.page-link:hover{z-index:2;color:#224abe;text-decoration:none;background-color:#eaecf4;border-color:#dddfeb}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(78,115,223,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.35rem;border-bottom-left-radius:.35rem}.page-item:last-child .page-link{border-top-right-radius:.35rem;border-bottom-right-radius:.35rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#4e73df;border-color:#4e73df}.page-item.disabled .page-link{color:#858796;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dddfeb}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.35rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#4e73df}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#2653d4}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(78,115,223,.5)}.badge-secondary{color:#fff;background-color:#858796}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#6b6d7d}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(133,135,150,.5)}.badge-success{color:#fff;background-color:#1cc88a}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#169b6b}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(28,200,138,.5)}.badge-info{color:#fff;background-color:#36b9cc}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#2a96a5}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(54,185,204,.5)}.badge-warning{color:#fff;background-color:#f6c23e}a.badge-warning:focus,a.badge-warning:hover{color:#fff;background-color:#f4b30d}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(246,194,62,.5)}.badge-danger{color:#fff;background-color:#e74a3b}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#d52a1a}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(231,74,59,.5)}.badge-light{color:#3a3b45;background-color:#f8f9fc}a.badge-light:focus,a.badge-light:hover{color:#3a3b45;background-color:#d4daed}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,252,.5)}.badge-dark{color:#fff;background-color:#5a5c69}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#42444e}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(90,92,105,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#eaecf4;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.35rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#293c74;background-color:#dce3f9;border-color:#cdd8f6}.alert-primary hr{border-top-color:#b7c7f2}.alert-primary .alert-link{color:#1c294e}.alert-secondary{color:#45464e;background-color:#e7e7ea;border-color:#dddde2}.alert-secondary hr{border-top-color:#cfcfd6}.alert-secondary .alert-link{color:#2d2e33}.alert-success{color:#0f6848;background-color:#d2f4e8;border-color:#bff0de}.alert-success hr{border-top-color:#aaebd3}.alert-success .alert-link{color:#093b29}.alert-info{color:#1c606a;background-color:#d7f1f5;border-color:#c7ebf1}.alert-info hr{border-top-color:#b3e4ec}.alert-info .alert-link{color:#113b42}.alert-warning{color:#806520;background-color:#fdf3d8;border-color:#fceec9}.alert-warning hr{border-top-color:#fbe6b1}.alert-warning .alert-link{color:#574516}.alert-danger{color:#78261f;background-color:#fadbd8;border-color:#f8ccc8}.alert-danger hr{border-top-color:#f5b7b1}.alert-danger .alert-link{color:#4f1915}.alert-light{color:#818183;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686869}.alert-dark{color:#2f3037;background-color:#dedee1;border-color:#d1d1d5}.alert-dark hr{border-top-color:#c4c4c9}.alert-dark .alert-link{color:#18181c}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#eaecf4;border-radius:.35rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#4e73df;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.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}}.media{display:flex;align-items:flex-start}.media-body{flex:1}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.35rem}.list-group-item-action{width:100%;color:#6e707e;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#6e707e;text-decoration:none;background-color:#f8f9fc}.list-group-item-action:active{color:#858796;background-color:#eaecf4}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#858796;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#4e73df;border-color:#4e73df}.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{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.35rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.35rem;border-bottom-left-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-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.35rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.35rem;border-bottom-left-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-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.35rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.35rem;border-bottom-left-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-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.35rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.35rem;border-bottom-left-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-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.35rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.35rem;border-bottom-left-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-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-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:#293c74;background-color:#cdd8f6}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#293c74;background-color:#b7c7f2}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#293c74;border-color:#293c74}.list-group-item-secondary{color:#45464e;background-color:#dddde2}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#45464e;background-color:#cfcfd6}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#45464e;border-color:#45464e}.list-group-item-success{color:#0f6848;background-color:#bff0de}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f6848;background-color:#aaebd3}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f6848;border-color:#0f6848}.list-group-item-info{color:#1c606a;background-color:#c7ebf1}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#1c606a;background-color:#b3e4ec}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#1c606a;border-color:#1c606a}.list-group-item-warning{color:#806520;background-color:#fceec9}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#806520;background-color:#fbe6b1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#806520;border-color:#806520}.list-group-item-danger{color:#78261f;background-color:#f8ccc8}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#78261f;background-color:#f5b7b1}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#78261f;border-color:#78261f}.list-group-item-light{color:#818183;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818183;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818183;border-color:#818183}.list-group-item-dark{color:#2f3037;background-color:#d1d1d5}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#2f3037;background-color:#c4c4c9}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#2f3037;border-color:#2f3037}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{flex-basis:350px;max-width:350px;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#858796;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #e3e6f0;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #e3e6f0;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.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{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.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}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:Nunito,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;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:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.35rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:Nunito,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;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:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#858796}.carousel{position:relative}.carousel.pointer-event{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:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:50%/100% 100% no-repeat}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;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:.75s linear infinite spinner-grow;animation:.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}}.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}.bg-primary{background-color:#4e73df!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#2653d4!important}.bg-secondary{background-color:#858796!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#6b6d7d!important}.bg-success{background-color:#1cc88a!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#169b6b!important}.bg-info{background-color:#36b9cc!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#2a96a5!important}.bg-warning{background-color:#f6c23e!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#f4b30d!important}.bg-danger{background-color:#e74a3b!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#d52a1a!important}.bg-light{background-color:#f8f9fc!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#d4daed!important}.bg-dark{background-color:#5a5c69!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#42444e!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #e3e6f0!important}.border-top{border-top:1px solid #e3e6f0!important}.border-right{border-right:1px solid #e3e6f0!important}.border-bottom{border-bottom:1px solid #e3e6f0!important}.border-left{border-left:1px solid #e3e6f0!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#4e73df!important}.border-secondary{border-color:#858796!important}.border-success{border-color:#1cc88a!important}.border-info{border-color:#36b9cc!important}.border-warning{border-color:#f6c23e!important}.border-danger{border-color:#e74a3b!important}.border-light{border-color:#f8f9fc!important}.border-dark{border-color:#5a5c69!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.35rem!important}.rounded-top{border-top-left-radius:.35rem!important;border-top-right-radius:.35rem!important}.rounded-right{border-top-right-radius:.35rem!important;border-bottom-right-radius:.35rem!important}.rounded-bottom{border-bottom-right-radius:.35rem!important;border-bottom-left-radius:.35rem!important}.rounded-left{border-top-left-radius:.35rem!important;border-bottom-left-radius:.35rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!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:flex!important}.d-sm-inline-flex{display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!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:flex!important}.d-md-inline-flex{display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!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:flex!important}.d-lg-inline-flex{display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!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:flex!important}.d-xl-inline-flex{display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!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:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.85714%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}@media (min-width:576px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}}@media (min-width:768px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!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}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem 0 rgba(58,59,69,.2)!important}.shadow{box-shadow:0 .15rem 1.75rem 0 rgba(58,59,69,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!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}.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}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.dropdown .dropdown-menu .dropdown-header,.sidebar .sidebar-heading,.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#4e73df!important}a.text-primary:focus,a.text-primary:hover{color:#224abe!important}.text-secondary{color:#858796!important}a.text-secondary:focus,a.text-secondary:hover{color:#60616f!important}.text-success{color:#1cc88a!important}a.text-success:focus,a.text-success:hover{color:#13855c!important}.text-info{color:#36b9cc!important}a.text-info:focus,a.text-info:hover{color:#258391!important}.text-warning{color:#f6c23e!important}a.text-warning:focus,a.text-warning:hover{color:#dda20a!important}.text-danger{color:#e74a3b!important}a.text-danger:focus,a.text-danger:hover{color:#be2617!important}.text-light{color:#f8f9fc!important}a.text-light:focus,a.text-light:hover{color:#c2cbe5!important}.text-dark{color:#5a5c69!important}a.text-dark:focus,a.text-dark:hover{color:#373840!important}.text-body{color:#858796!important}.text-muted{color:#858796!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;word-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #b7b9cc;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dddfeb!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#e3e6f0}.table .thead-dark th{color:inherit;border-color:#e3e6f0}}html{position:relative;min-height:100%}body{height:100%}a:focus{outline:0}#wrapper{display:flex}#wrapper #content-wrapper{background-color:#f8f9fc;width:100%;overflow-x:hidden}#wrapper #content-wrapper #content{flex:1 0 auto}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{padding-left:1.5rem;padding-right:1.5rem}.scroll-to-top{position:fixed;right:1rem;bottom:1rem;display:none;width:2.75rem;height:2.75rem;text-align:center;color:#fff;background:rgba(90,92,105,.5);line-height:46px}.scroll-to-top:focus,.scroll-to-top:hover{color:#fff}.scroll-to-top:hover{background:#5a5c69}.scroll-to-top i{font-weight:800}@-webkit-keyframes growIn{0%{transform:scale(.9);opacity:0}100%{transform:scale(1);opacity:1}}@keyframes growIn{0%{transform:scale(.9);opacity:0}100%{transform:scale(1);opacity:1}}.animated--grow-in,.sidebar .nav-item .collapse{-webkit-animation-name:growIn;animation-name:growIn;-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-timing-function:transform cubic-bezier(.18,1.25,.4,1),opacity cubic-bezier(0,1,.4,1);animation-timing-function:transform cubic-bezier(.18,1.25,.4,1),opacity cubic-bezier(0,1,.4,1)}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.animated--fade-in{-webkit-animation-name:fadeIn;animation-name:fadeIn;-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-timing-function:opacity cubic-bezier(0,1,.4,1);animation-timing-function:opacity cubic-bezier(0,1,.4,1)}.bg-gradient-primary{background-color:#4e73df;background-image:linear-gradient(180deg,#4e73df 10%,#224abe 100%);background-size:cover}.bg-gradient-secondary{background-color:#858796;background-image:linear-gradient(180deg,#858796 10%,#60616f 100%);background-size:cover}.bg-gradient-success{background-color:#1cc88a;background-image:linear-gradient(180deg,#1cc88a 10%,#13855c 100%);background-size:cover}.bg-gradient-info{background-color:#36b9cc;background-image:linear-gradient(180deg,#36b9cc 10%,#258391 100%);background-size:cover}.bg-gradient-warning{background-color:#f6c23e;background-image:linear-gradient(180deg,#f6c23e 10%,#dda20a 100%);background-size:cover}.bg-gradient-danger{background-color:#e74a3b;background-image:linear-gradient(180deg,#e74a3b 10%,#be2617 100%);background-size:cover}.bg-gradient-light{background-color:#f8f9fc;background-image:linear-gradient(180deg,#f8f9fc 10%,#c2cbe5 100%);background-size:cover}.bg-gradient-dark{background-color:#5a5c69;background-image:linear-gradient(180deg,#5a5c69 10%,#373840 100%);background-size:cover}.bg-gray-100{background-color:#f8f9fc!important}.bg-gray-200{background-color:#eaecf4!important}.bg-gray-300{background-color:#dddfeb!important}.bg-gray-400{background-color:#d1d3e2!important}.bg-gray-500{background-color:#b7b9cc!important}.bg-gray-600{background-color:#858796!important}.bg-gray-700{background-color:#6e707e!important}.bg-gray-800{background-color:#5a5c69!important}.bg-gray-900{background-color:#3a3b45!important}.o-hidden{overflow:hidden!important}.text-xs{font-size:.7rem}.text-lg{font-size:1.2rem}.text-gray-100{color:#f8f9fc!important}.text-gray-200{color:#eaecf4!important}.text-gray-300{color:#dddfeb!important}.text-gray-400{color:#d1d3e2!important}.text-gray-500{color:#b7b9cc!important}.text-gray-600{color:#858796!important}.text-gray-700{color:#6e707e!important}.text-gray-800{color:#5a5c69!important}.text-gray-900{color:#3a3b45!important}.icon-circle{height:2.5rem;width:2.5rem;border-radius:100%;display:flex;align-items:center;justify-content:center}.border-left-primary{border-left:.25rem solid #4e73df!important}.border-bottom-primary{border-bottom:.25rem solid #4e73df!important}.border-left-secondary{border-left:.25rem solid #858796!important}.border-bottom-secondary{border-bottom:.25rem solid #858796!important}.border-left-success{border-left:.25rem solid #1cc88a!important}.border-bottom-success{border-bottom:.25rem solid #1cc88a!important}.border-left-info{border-left:.25rem solid #36b9cc!important}.border-bottom-info{border-bottom:.25rem solid #36b9cc!important}.border-left-warning{border-left:.25rem solid #f6c23e!important}.border-bottom-warning{border-bottom:.25rem solid #f6c23e!important}.border-left-danger{border-left:.25rem solid #e74a3b!important}.border-bottom-danger{border-bottom:.25rem solid #e74a3b!important}.border-left-light{border-left:.25rem solid #f8f9fc!important}.border-bottom-light{border-bottom:.25rem solid #f8f9fc!important}.border-left-dark{border-left:.25rem solid #5a5c69!important}.border-bottom-dark{border-bottom:.25rem solid #5a5c69!important}.progress-sm{height:.5rem}.rotate-15{transform:rotate(15deg)}.rotate-n-15{transform:rotate(-15deg)}.dropdown .dropdown-menu{font-size:.85rem}.dropdown .dropdown-menu .dropdown-header{font-weight:800;font-size:.65rem;color:#b7b9cc}.dropdown.no-arrow .dropdown-toggle::after{display:none}.sidebar .nav-item.dropdown .dropdown-toggle::after,.topbar .nav-item.dropdown .dropdown-toggle::after{width:1rem;text-align:center;float:right;vertical-align:0;border:0;font-weight:900;content:'\f105';font-family:'Font Awesome 5 Free'}.sidebar .nav-item.dropdown.show .dropdown-toggle::after,.topbar .nav-item.dropdown.show .dropdown-toggle::after{content:'\f107'}.sidebar .nav-item .nav-link,.topbar .nav-item .nav-link{position:relative}.sidebar .nav-item .nav-link .badge-counter,.topbar .nav-item .nav-link .badge-counter{position:absolute;transform:scale(.7);transform-origin:top right;right:.25rem;margin-top:-.25rem}.sidebar .nav-item .nav-link .img-profile,.topbar .nav-item .nav-link .img-profile{height:2rem;width:2rem}.topbar{height:4.375rem}.topbar #sidebarToggleTop{height:2.5rem;width:2.5rem}.topbar #sidebarToggleTop:hover{background-color:#eaecf4}.topbar #sidebarToggleTop:active{background-color:#dddfeb}.topbar .navbar-search{width:25rem}.topbar .navbar-search input{font-size:.85rem;height:auto}.topbar .topbar-divider{width:0;border-right:1px solid #e3e6f0;height:calc(4.375rem - 2rem);margin:auto 1rem}.topbar .nav-item .nav-link{height:4.375rem;display:flex;align-items:center;padding:0 .75rem}.topbar .nav-item .nav-link:focus{outline:0}.topbar .nav-item:focus{outline:0}.topbar .dropdown{position:static}.topbar .dropdown .dropdown-menu{width:calc(100% - 1.5rem);right:.75rem}.topbar .dropdown-list{padding:0;border:none;overflow:hidden}.topbar .dropdown-list .dropdown-header{background-color:#4e73df;border:1px solid #4e73df;padding-top:.75rem;padding-bottom:.75rem;color:#fff}.topbar .dropdown-list .dropdown-item{white-space:normal;padding-top:.5rem;padding-bottom:.5rem;border-left:1px solid #e3e6f0;border-right:1px solid #e3e6f0;border-bottom:1px solid #e3e6f0;line-height:1.3rem}.topbar .dropdown-list .dropdown-item .dropdown-list-image{position:relative;height:2.5rem;width:2.5rem}.topbar .dropdown-list .dropdown-item .dropdown-list-image img{height:2.5rem;width:2.5rem}.topbar .dropdown-list .dropdown-item .dropdown-list-image .status-indicator{background-color:#eaecf4;height:.75rem;width:.75rem;border-radius:100%;position:absolute;bottom:0;right:0;border:.125rem solid #fff}.topbar .dropdown-list .dropdown-item .text-truncate{max-width:10rem}.topbar .dropdown-list .dropdown-item:active{background-color:#eaecf4;color:#3a3b45}@media (min-width:576px){.topbar .dropdown{position:relative}.topbar .dropdown .dropdown-menu{width:auto;right:0}.topbar .dropdown-list{width:20rem!important}.topbar .dropdown-list .dropdown-item .text-truncate{max-width:13.375rem}}.topbar.navbar-dark .navbar-nav .nav-item .nav-link{color:rgba(255,255,255,.8)}.topbar.navbar-dark .navbar-nav .nav-item .nav-link:hover{color:#fff}.topbar.navbar-dark .navbar-nav .nav-item .nav-link:active{color:#fff}.topbar.navbar-light .navbar-nav .nav-item .nav-link{color:#d1d3e2}.topbar.navbar-light .navbar-nav .nav-item .nav-link:hover{color:#b7b9cc}.topbar.navbar-light .navbar-nav .nav-item .nav-link:active{color:#858796}.sidebar{width:6.5rem;min-height:100vh}.sidebar .nav-item{position:relative}.sidebar .nav-item:last-child{margin-bottom:1rem}.sidebar .nav-item .nav-link{text-align:center;padding:.75rem 1rem;width:6.5rem}.sidebar .nav-item .nav-link span{font-size:.65rem;display:block}.sidebar .nav-item.active .nav-link{font-weight:700}.sidebar .nav-item .collapse{position:absolute;left:calc(6.5rem + 1.5rem / 2);z-index:1;top:2px}.sidebar .nav-item .collapse .collapse-inner{border-radius:.35rem;box-shadow:0 .15rem 1.75rem 0 rgba(58,59,69,.15)}.sidebar .nav-item .collapsing{display:none;transition:none}.sidebar .nav-item .collapse .collapse-inner,.sidebar .nav-item .collapsing .collapse-inner{padding:.5rem 0;min-width:10rem;font-size:.85rem;margin:0 0 1rem 0}.sidebar .nav-item .collapse .collapse-inner .collapse-header,.sidebar .nav-item .collapsing .collapse-inner .collapse-header{margin:0;white-space:nowrap;padding:.5rem 1.5rem;text-transform:uppercase;font-weight:800;font-size:.65rem;color:#b7b9cc}.sidebar .nav-item .collapse .collapse-inner .collapse-item,.sidebar .nav-item .collapsing .collapse-inner .collapse-item{padding:.5rem 1rem;margin:0 .5rem;display:block;color:#3a3b45;text-decoration:none;border-radius:.35rem;white-space:nowrap}.sidebar .nav-item .collapse .collapse-inner .collapse-item:hover,.sidebar .nav-item .collapsing .collapse-inner .collapse-item:hover{background-color:#eaecf4}.sidebar .nav-item .collapse .collapse-inner .collapse-item:active,.sidebar .nav-item .collapsing .collapse-inner .collapse-item:active{background-color:#dddfeb}.sidebar .nav-item .collapse .collapse-inner .collapse-item.active,.sidebar .nav-item .collapsing .collapse-inner .collapse-item.active{color:#4e73df;font-weight:700}.sidebar #sidebarToggle{width:2.5rem;height:2.5rem;text-align:center;margin-bottom:1rem;cursor:pointer}.sidebar #sidebarToggle::after{font-weight:900;content:'\f104';font-family:'Font Awesome 5 Free';margin-right:.1rem}.sidebar #sidebarToggle:hover{text-decoration:none}.sidebar #sidebarToggle:focus{outline:0}.sidebar.toggled{width:0!important;overflow:hidden}.sidebar.toggled #sidebarToggle::after{content:'\f105';font-family:'Font Awesome 5 Free';margin-left:.25rem}.sidebar.toggled .sidebar-card{display:none}.sidebar .sidebar-brand{height:4.375rem;text-decoration:none;font-size:1rem;font-weight:800;padding:1.5rem 1rem;text-align:center;text-transform:uppercase;letter-spacing:.05rem;z-index:1}.sidebar .sidebar-brand .sidebar-brand-icon i{font-size:2rem}.sidebar .sidebar-brand .sidebar-brand-text{display:none}.sidebar hr.sidebar-divider{margin:0 1rem 1rem}.sidebar .sidebar-heading{text-align:center;padding:0 1rem;font-weight:800;font-size:.65rem}.sidebar .sidebar-card{display:flex;flex-direction:column;align-items:center;font-size:.875rem;border-radius:.35rem;color:rgba(255,255,255,.8);margin-left:1rem;margin-right:1rem;margin-bottom:1rem;padding:1rem;background-color:rgba(0,0,0,.1)}.sidebar .sidebar-card .sidebar-card-illustration{height:3rem;display:block}.sidebar .sidebar-card .sidebar-card-title{font-weight:700}.sidebar .sidebar-card p{font-size:.75rem;color:rgba(255,255,255,.5)}@media (min-width:768px){.sidebar{width:14rem!important}.sidebar .nav-item .collapse{position:relative;left:0;z-index:1;top:0;-webkit-animation:none;animation:none}.sidebar .nav-item .collapse .collapse-inner{border-radius:0;box-shadow:none}.sidebar .nav-item .collapsing{display:block;transition:height .15s ease}.sidebar .nav-item .collapse,.sidebar .nav-item .collapsing{margin:0 1rem}.sidebar .nav-item .nav-link{display:block;width:100%;text-align:left;padding:1rem;width:14rem}.sidebar .nav-item .nav-link i{font-size:.85rem;margin-right:.25rem}.sidebar .nav-item .nav-link span{font-size:.85rem;display:inline}.sidebar .nav-item .nav-link[data-toggle=collapse]::after{width:1rem;text-align:center;float:right;vertical-align:0;border:0;font-weight:900;content:'\f107';font-family:'Font Awesome 5 Free'}.sidebar .nav-item .nav-link[data-toggle=collapse].collapsed::after{content:'\f105'}.sidebar .sidebar-brand .sidebar-brand-icon i{font-size:2rem}.sidebar .sidebar-brand .sidebar-brand-text{display:inline}.sidebar .sidebar-heading{text-align:left}.sidebar.toggled{overflow:visible;width:6.5rem!important}.sidebar.toggled .nav-item .collapse{position:absolute;left:calc(6.5rem + 1.5rem / 2);z-index:1;top:2px;-webkit-animation-name:growIn;animation-name:growIn;-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-timing-function:transform cubic-bezier(.18,1.25,.4,1),opacity cubic-bezier(0,1,.4,1);animation-timing-function:transform cubic-bezier(.18,1.25,.4,1),opacity cubic-bezier(0,1,.4,1)}.sidebar.toggled .nav-item .collapse .collapse-inner{box-shadow:0 .15rem 1.75rem 0 rgba(58,59,69,.15);border-radius:.35rem}.sidebar.toggled .nav-item .collapsing{display:none;transition:none}.sidebar.toggled .nav-item .collapse,.sidebar.toggled .nav-item .collapsing{margin:0}.sidebar.toggled .nav-item:last-child{margin-bottom:1rem}.sidebar.toggled .nav-item .nav-link{text-align:center;padding:.75rem 1rem;width:6.5rem}.sidebar.toggled .nav-item .nav-link span{font-size:.65rem;display:block}.sidebar.toggled .nav-item .nav-link i{margin-right:0}.sidebar.toggled .nav-item .nav-link[data-toggle=collapse]::after{display:none}.sidebar.toggled .sidebar-brand .sidebar-brand-icon i{font-size:2rem}.sidebar.toggled .sidebar-brand .sidebar-brand-text{display:none}.sidebar.toggled .sidebar-heading{text-align:center}}.sidebar-light .sidebar-brand{color:#6e707e}.sidebar-light hr.sidebar-divider{border-top:1px solid #eaecf4}.sidebar-light .sidebar-heading{color:#b7b9cc}.sidebar-light .nav-item .nav-link{color:#858796}.sidebar-light .nav-item .nav-link i{color:#d1d3e2}.sidebar-light .nav-item .nav-link:active,.sidebar-light .nav-item .nav-link:focus,.sidebar-light .nav-item .nav-link:hover{color:#6e707e}.sidebar-light .nav-item .nav-link:active i,.sidebar-light .nav-item .nav-link:focus i,.sidebar-light .nav-item .nav-link:hover i{color:#6e707e}.sidebar-light .nav-item .nav-link[data-toggle=collapse]::after{color:#b7b9cc}.sidebar-light .nav-item.active .nav-link{color:#6e707e}.sidebar-light .nav-item.active .nav-link i{color:#6e707e}.sidebar-light #sidebarToggle{background-color:#eaecf4}.sidebar-light #sidebarToggle::after{color:#b7b9cc}.sidebar-light #sidebarToggle:hover{background-color:#dddfeb}.sidebar-dark .sidebar-brand{color:#fff}.sidebar-dark hr.sidebar-divider{border-top:1px solid rgba(255,255,255,.15)}.sidebar-dark .sidebar-heading{color:rgba(255,255,255,.4)}.sidebar-dark .nav-item .nav-link{color:rgba(255,255,255,.8)}.sidebar-dark .nav-item .nav-link i{color:rgba(255,255,255,.3)}.sidebar-dark .nav-item .nav-link:active,.sidebar-dark .nav-item .nav-link:focus,.sidebar-dark .nav-item .nav-link:hover{color:#fff}.sidebar-dark .nav-item .nav-link:active i,.sidebar-dark .nav-item .nav-link:focus i,.sidebar-dark .nav-item .nav-link:hover i{color:#fff}.sidebar-dark .nav-item .nav-link[data-toggle=collapse]::after{color:rgba(255,255,255,.5)}.sidebar-dark .nav-item.active .nav-link{color:#fff}.sidebar-dark .nav-item.active .nav-link i{color:#fff}.sidebar-dark #sidebarToggle{background-color:rgba(255,255,255,.2)}.sidebar-dark #sidebarToggle::after{color:rgba(255,255,255,.5)}.sidebar-dark #sidebarToggle:hover{background-color:rgba(255,255,255,.25)}.sidebar-dark.toggled #sidebarToggle::after{color:rgba(255,255,255,.5)}.btn-circle{border-radius:100%;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center}.btn-circle.btn-sm,.btn-group-sm>.btn-circle.btn{height:1.8rem;width:1.8rem;font-size:.75rem}.btn-circle.btn-lg,.btn-group-lg>.btn-circle.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.btn-icon-split{padding:0;overflow:hidden;display:inline-flex;align-items:stretch;justify-content:center}.btn-icon-split .icon{background:rgba(0,0,0,.15);display:inline-block;padding:.375rem .75rem}.btn-icon-split .text{display:inline-block;padding:.375rem .75rem}.btn-group-sm>.btn-icon-split.btn .icon,.btn-icon-split.btn-sm .icon{padding:.25rem .5rem}.btn-group-sm>.btn-icon-split.btn .text,.btn-icon-split.btn-sm .text{padding:.25rem .5rem}.btn-group-lg>.btn-icon-split.btn .icon,.btn-icon-split.btn-lg .icon{padding:.5rem 1rem}.btn-group-lg>.btn-icon-split.btn .text,.btn-icon-split.btn-lg .text{padding:.5rem 1rem}.card .card-header .dropdown{line-height:1}.card .card-header .dropdown .dropdown-menu{line-height:1.5}.card .card-header[data-toggle=collapse]{text-decoration:none;position:relative;padding:.75rem 3.25rem .75rem 1.25rem}.card .card-header[data-toggle=collapse]::after{position:absolute;right:0;top:0;padding-right:1.725rem;line-height:51px;font-weight:900;content:'\f107';font-family:'Font Awesome 5 Free';color:#d1d3e2}.card .card-header[data-toggle=collapse].collapsed{border-radius:.35rem}.card .card-header[data-toggle=collapse].collapsed::after{content:'\f105'}.chart-area{position:relative;height:10rem;width:100%}@media (min-width:768px){.chart-area{height:20rem}}.chart-bar{position:relative;height:10rem;width:100%}@media (min-width:768px){.chart-bar{height:20rem}}.chart-pie{position:relative;height:15rem;width:100%}@media (min-width:768px){.chart-pie{height:calc(20rem - 43px)!important}}.bg-login-image{background:url(https://source.unsplash.com/K4mSJ7kc0As/600x800);background-position:center;background-size:cover}.bg-register-image{background:url(https://source.unsplash.com/Mv9hjnEUHR4/600x800);background-position:center;background-size:cover}.bg-password-image{background:url(https://source.unsplash.com/oWTW-jNGl9I/600x800);background-position:center;background-size:cover}form.user .custom-checkbox.small label{line-height:1.5rem}form.user .form-control-user{font-size:.8rem;border-radius:10rem;padding:1.5rem 1rem}form.user .btn-user{font-size:.8rem;border-radius:10rem;padding:.75rem 1rem}.btn-google{color:#fff;background-color:#ea4335;border-color:#fff}.btn-google:hover{color:#fff;background-color:#e12717;border-color:#e6e6e6}.btn-google.focus,.btn-google:focus{color:#fff;background-color:#e12717;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,.5)}.btn-google.disabled,.btn-google:disabled{color:#fff;background-color:#ea4335;border-color:#fff}.btn-google:not(:disabled):not(.disabled).active,.btn-google:not(:disabled):not(.disabled):active,.show>.btn-google.dropdown-toggle{color:#fff;background-color:#d62516;border-color:#dfdfdf}.btn-google:not(:disabled):not(.disabled).active:focus,.btn-google:not(:disabled):not(.disabled):active:focus,.show>.btn-google.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,.5)}.btn-facebook{color:#fff;background-color:#3b5998;border-color:#fff}.btn-facebook:hover{color:#fff;background-color:#30497c;border-color:#e6e6e6}.btn-facebook.focus,.btn-facebook:focus{color:#fff;background-color:#30497c;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,.5)}.btn-facebook.disabled,.btn-facebook:disabled{color:#fff;background-color:#3b5998;border-color:#fff}.btn-facebook:not(:disabled):not(.disabled).active,.btn-facebook:not(:disabled):not(.disabled):active,.show>.btn-facebook.dropdown-toggle{color:#fff;background-color:#2d4373;border-color:#dfdfdf}.btn-facebook:not(:disabled):not(.disabled).active:focus,.btn-facebook:not(:disabled):not(.disabled):active:focus,.show>.btn-facebook.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,.5)}.error{color:#5a5c69;font-size:7rem;position:relative;line-height:1;width:12.5rem}@-webkit-keyframes noise-anim{0%{clip:rect(49px,9999px,40px,0)}5%{clip:rect(75px,9999px,72px,0)}10%{clip:rect(97px,9999px,93px,0)}15%{clip:rect(15px,9999px,9px,0)}20%{clip:rect(14px,9999px,92px,0)}25%{clip:rect(18px,9999px,94px,0)}30%{clip:rect(17px,9999px,20px,0)}35%{clip:rect(71px,9999px,59px,0)}40%{clip:rect(42px,9999px,84px,0)}45%{clip:rect(56px,9999px,25px,0)}50%{clip:rect(46px,9999px,14px,0)}55%{clip:rect(47px,9999px,1px,0)}60%{clip:rect(64px,9999px,58px,0)}65%{clip:rect(89px,9999px,92px,0)}70%{clip:rect(56px,9999px,39px,0)}75%{clip:rect(80px,9999px,71px,0)}80%{clip:rect(8px,9999px,13px,0)}85%{clip:rect(66px,9999px,68px,0)}90%{clip:rect(68px,9999px,4px,0)}95%{clip:rect(56px,9999px,14px,0)}100%{clip:rect(28px,9999px,53px,0)}}@keyframes noise-anim{0%{clip:rect(49px,9999px,40px,0)}5%{clip:rect(75px,9999px,72px,0)}10%{clip:rect(97px,9999px,93px,0)}15%{clip:rect(15px,9999px,9px,0)}20%{clip:rect(14px,9999px,92px,0)}25%{clip:rect(18px,9999px,94px,0)}30%{clip:rect(17px,9999px,20px,0)}35%{clip:rect(71px,9999px,59px,0)}40%{clip:rect(42px,9999px,84px,0)}45%{clip:rect(56px,9999px,25px,0)}50%{clip:rect(46px,9999px,14px,0)}55%{clip:rect(47px,9999px,1px,0)}60%{clip:rect(64px,9999px,58px,0)}65%{clip:rect(89px,9999px,92px,0)}70%{clip:rect(56px,9999px,39px,0)}75%{clip:rect(80px,9999px,71px,0)}80%{clip:rect(8px,9999px,13px,0)}85%{clip:rect(66px,9999px,68px,0)}90%{clip:rect(68px,9999px,4px,0)}95%{clip:rect(56px,9999px,14px,0)}100%{clip:rect(28px,9999px,53px,0)}}.error:after{content:attr(data-text);position:absolute;left:2px;text-shadow:-1px 0 #e74a3b;top:0;color:#5a5c69;background:#f8f9fc;overflow:hidden;clip:rect(0,900px,0,0);animation:noise-anim 2s infinite linear alternate-reverse}@-webkit-keyframes noise-anim-2{0%{clip:rect(16px,9999px,10px,0)}5%{clip:rect(22px,9999px,29px,0)}10%{clip:rect(6px,9999px,68px,0)}15%{clip:rect(85px,9999px,95px,0)}20%{clip:rect(65px,9999px,91px,0)}25%{clip:rect(93px,9999px,68px,0)}30%{clip:rect(10px,9999px,27px,0)}35%{clip:rect(37px,9999px,25px,0)}40%{clip:rect(12px,9999px,23px,0)}45%{clip:rect(40px,9999px,18px,0)}50%{clip:rect(19px,9999px,71px,0)}55%{clip:rect(2px,9999px,35px,0)}60%{clip:rect(16px,9999px,69px,0)}65%{clip:rect(8px,9999px,65px,0)}70%{clip:rect(30px,9999px,57px,0)}75%{clip:rect(14px,9999px,4px,0)}80%{clip:rect(39px,9999px,30px,0)}85%{clip:rect(22px,9999px,35px,0)}90%{clip:rect(58px,9999px,71px,0)}95%{clip:rect(34px,9999px,90px,0)}100%{clip:rect(67px,9999px,68px,0)}}@keyframes noise-anim-2{0%{clip:rect(16px,9999px,10px,0)}5%{clip:rect(22px,9999px,29px,0)}10%{clip:rect(6px,9999px,68px,0)}15%{clip:rect(85px,9999px,95px,0)}20%{clip:rect(65px,9999px,91px,0)}25%{clip:rect(93px,9999px,68px,0)}30%{clip:rect(10px,9999px,27px,0)}35%{clip:rect(37px,9999px,25px,0)}40%{clip:rect(12px,9999px,23px,0)}45%{clip:rect(40px,9999px,18px,0)}50%{clip:rect(19px,9999px,71px,0)}55%{clip:rect(2px,9999px,35px,0)}60%{clip:rect(16px,9999px,69px,0)}65%{clip:rect(8px,9999px,65px,0)}70%{clip:rect(30px,9999px,57px,0)}75%{clip:rect(14px,9999px,4px,0)}80%{clip:rect(39px,9999px,30px,0)}85%{clip:rect(22px,9999px,35px,0)}90%{clip:rect(58px,9999px,71px,0)}95%{clip:rect(34px,9999px,90px,0)}100%{clip:rect(67px,9999px,68px,0)}}.error:before{content:attr(data-text);position:absolute;left:-2px;text-shadow:1px 0 #4e73df;top:0;color:#5a5c69;background:#f8f9fc;overflow:hidden;clip:rect(0,900px,0,0);animation:noise-anim-2 3s infinite linear alternate-reverse}footer.sticky-footer{padding:2rem 0;flex-shrink:0}footer.sticky-footer .copyright{line-height:1;font-size:.8rem}body.sidebar-toggled footer.sticky-footer{width:100%} \ No newline at end of file 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;;Ac9kBI;EF5CE;IACE,iBdRM;EEsoBZ;AACF;;AcplBI;EF5CE;IACE,iBdPO;EE2oBb;AACF;;AeppBE;ECAA,mBAAwC;EACxC,gBAAwC;EACxC,oBAAa;EAAb,oBAAa;EAAb,aAAa;EACb,mBAAe;EAAf,eAAe;EACf,yCAAmE;EACnE,2CAAqE;EACrE,0CAAoE;AhBwpBtE;;Ae9pBE;ECeA,oBAAc;EAAd,cAAc;EACd,WAAW;EACX,eAAe;EACf,2CAAqE;EACrE,0CAAoE;EACpE,8BAAwD;AhBmpB1D;;AgB1mBM;EACE,mBAAY;EAAZ,gBAAY;EAAZ,YAAY;AhB6mBpB;;AgB1mBM;EApCJ,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,WAAW;AhBkpBb;;AgBpoBE;EACE,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,WAAoB;AhBuoBxB;;AgBzoBE;EACE,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,UAAoB;AhB4oBxB;;AgB9oBE;EACE,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,gBAAoB;AhBipBxB;;AgBnpBE;EACE,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,UAAoB;AhBspBxB;;AgBxpBE;EACE,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,UAAoB;AhB2pBxB;;AgB7pBE;EACE,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,gBAAoB;AhBgqBxB;;AgBjoBM;EAhDJ,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,WAAW;AhBqrBb;;AgBhoBU;EA3DR,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,eAAmC;AhB+rBrC;;AgBroBU;EA3DR,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,gBAAmC;AhBosBrC;;AgB1oBU;EA3DR,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,UAAmC;AhBysBrC;;AgB/oBU;EA3DR,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,gBAAmC;AhB8sBrC;;AgBppBU;EA3DR,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,gBAAmC;AhBmtBrC;;AgBzpBU;EA3DR,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,UAAmC;AhBwtBrC;;AgB9pBU;EA3DR,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,gBAAmC;AhB6tBrC;;AgBnqBU;EA3DR,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,gBAAmC;AhBkuBrC;;AgBxqBU;EA3DR,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,UAAmC;AhBuuBrC;;AgB7qBU;EA3DR,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,gBAAmC;AhB4uBrC;;AgBlrBU;EA3DR,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,gBAAmC;AhBivBrC;;AgBvrBU;EA3DR,mBAAc;EAAd,kBAAc;EAAd,cAAc;EACd,WAAmC;AhBsvBrC;;AgBprBY;EAxDV,qBAA8C;AhBgvBhD;;AgBxrBY;EAxDV,sBAA8C;AhBovBhD;;AgB5rBY;EAxDV,gBAA8C;AhBwvBhD;;AgBhsBY;EAxDV,sBAA8C;AhB4vBhD;;AgBpsBY;EAxDV,sBAA8C;AhBgwBhD;;AgBxsBY;EAxDV,gBAA8C;AhBowBhD;;AgB5sBY;EAxDV,sBAA8C;AhBwwBhD;;AgBhtBY;EAxDV,sBAA8C;AhB4wBhD;;AgBptBY;EAxDV,gBAA8C;AhBgxBhD;;AgBxtBY;EAxDV,sBAA8C;AhBoxBhD;;AgB5tBY;EAxDV,sBAA8C;AhBwxBhD;;AgBrtBQ;;EAEE,gBAAwC;AhBwtBlD;;AgBrtBQ;;EAEE,gBAAwC;AhBwtBlD;;AgB/tBQ;;EAEE,sBAAwC;AhBkuBlD;;AgB/tBQ;;EAEE,sBAAwC;AhBkuBlD;;AgBzuBQ;;EAEE,qBAAwC;AhB4uBlD;;AgBzuBQ;;EAEE,qBAAwC;AhB4uBlD;;AgBnvBQ;;EAEE,mBAAwC;AhBsvBlD;;AgBnvBQ;;EAEE,mBAAwC;AhBsvBlD;;AgB7vBQ;;EAEE,qBAAwC;AhBgwBlD;;AgB7vBQ;;EAEE,qBAAwC;AhBgwBlD;;AgBvwBQ;;EAEE,mBAAwC;AhB0wBlD;;AgBvwBQ;;EAEE,mBAAwC;AhB0wBlD;;AgBjxBQ;;EAEE,mBAAwC;AhBoxBlD;;AgBjxBQ;;EAEE,mBAAwC;AhBoxBlD;;AgB3xBQ;;EAEE,mBAAwC;AhB8xBlD;;AgB3xBQ;;EAEE,mBAAwC;AhB8xBlD;;AgBryBQ;;EAEE,qBAAwC;AhBwyBlD;;AgBryBQ;;EAEE,qBAAwC;AhBwyBlD;;AgB/yBQ;;EAEE,oBAAwC;AhBkzBlD;;AgB/yBQ;;EAEE,oBAAwC;AhBkzBlD;;AgBzzBQ;;EAEE,sBAAwC;AhB4zBlD;;AgBzzBQ;;EAEE,sBAAwC;AhB4zBlD;;AgBn0BQ;;EAEE,oBAAwC;AhBs0BlD;;AgBn0BQ;;EAEE,oBAAwC;AhBs0BlD;;Acz3BI;EEGE;IACE,mBAAY;IAAZ,gBAAY;IAAZ,YAAY;EhB03BlB;EgBv3BI;IApCJ,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAW;EhB85BX;EgBh5BA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAoB;EhBk5BtB;EgBp5BA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAoB;EhBs5BtB;EgBx5BA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAoB;EhB05BtB;EgB55BA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAoB;EhB85BtB;EgBh6BA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAoB;EhBk6BtB;EgBp6BA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAoB;EhBs6BtB;EgBv4BI;IAhDJ,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAW;EhB07BX;EgBr4BQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,eAAmC;EhBm8BnC;EgBz4BQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhBu8BnC;EgB74BQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAmC;EhB28BnC;EgBj5BQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhB+8BnC;EgBr5BQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhBm9BnC;EgBz5BQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAmC;EhBu9BnC;EgB75BQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhB29BnC;EgBj6BQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhB+9BnC;EgBr6BQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAmC;EhBm+BnC;EgBz6BQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhBu+BnC;EgB76BQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhB2+BnC;EgBj7BQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAmC;EhB++BnC;EgB76BU;IAxDV,cAA4B;EhBw+B5B;EgBh7BU;IAxDV,qBAA8C;EhB2+B9C;EgBn7BU;IAxDV,sBAA8C;EhB8+B9C;EgBt7BU;IAxDV,gBAA8C;EhBi/B9C;EgBz7BU;IAxDV,sBAA8C;EhBo/B9C;EgB57BU;IAxDV,sBAA8C;EhBu/B9C;EgB/7BU;IAxDV,gBAA8C;EhB0/B9C;EgBl8BU;IAxDV,sBAA8C;EhB6/B9C;EgBr8BU;IAxDV,sBAA8C;EhBggC9C;EgBx8BU;IAxDV,gBAA8C;EhBmgC9C;EgB38BU;IAxDV,sBAA8C;EhBsgC9C;EgB98BU;IAxDV,sBAA8C;EhBygC9C;EgBt8BM;;IAEE,gBAAwC;EhBw8BhD;EgBr8BM;;IAEE,gBAAwC;EhBu8BhD;EgB98BM;;IAEE,sBAAwC;EhBg9BhD;EgB78BM;;IAEE,sBAAwC;EhB+8BhD;EgBt9BM;;IAEE,qBAAwC;EhBw9BhD;EgBr9BM;;IAEE,qBAAwC;EhBu9BhD;EgB99BM;;IAEE,mBAAwC;EhBg+BhD;EgB79BM;;IAEE,mBAAwC;EhB+9BhD;EgBt+BM;;IAEE,qBAAwC;EhBw+BhD;EgBr+BM;;IAEE,qBAAwC;EhBu+BhD;EgB9+BM;;IAEE,mBAAwC;EhBg/BhD;EgB7+BM;;IAEE,mBAAwC;EhB++BhD;EgBt/BM;;IAEE,mBAAwC;EhBw/BhD;EgBr/BM;;IAEE,mBAAwC;EhBu/BhD;EgB9/BM;;IAEE,mBAAwC;EhBggChD;EgB7/BM;;IAEE,mBAAwC;EhB+/BhD;EgBtgCM;;IAEE,qBAAwC;EhBwgChD;EgBrgCM;;IAEE,qBAAwC;EhBugChD;EgB9gCM;;IAEE,oBAAwC;EhBghChD;EgB7gCM;;IAEE,oBAAwC;EhB+gChD;EgBthCM;;IAEE,sBAAwC;EhBwhChD;EgBrhCM;;IAEE,sBAAwC;EhBuhChD;EgB9hCM;;IAEE,oBAAwC;EhBgiChD;EgB7hCM;;IAEE,oBAAwC;EhB+hChD;AACF;;AcnlCI;EEGE;IACE,mBAAY;IAAZ,gBAAY;IAAZ,YAAY;EhBolClB;EgBjlCI;IApCJ,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAW;EhBwnCX;EgB1mCA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAoB;EhB4mCtB;EgB9mCA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAoB;EhBgnCtB;EgBlnCA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAoB;EhBonCtB;EgBtnCA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAoB;EhBwnCtB;EgB1nCA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAoB;EhB4nCtB;EgB9nCA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAoB;EhBgoCtB;EgBjmCI;IAhDJ,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAW;EhBopCX;EgB/lCQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,eAAmC;EhB6pCnC;EgBnmCQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhBiqCnC;EgBvmCQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAmC;EhBqqCnC;EgB3mCQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhByqCnC;EgB/mCQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhB6qCnC;EgBnnCQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAmC;EhBirCnC;EgBvnCQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhBqrCnC;EgB3nCQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhByrCnC;EgB/nCQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAmC;EhB6rCnC;EgBnoCQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhBisCnC;EgBvoCQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhBqsCnC;EgB3oCQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAmC;EhBysCnC;EgBvoCU;IAxDV,cAA4B;EhBksC5B;EgB1oCU;IAxDV,qBAA8C;EhBqsC9C;EgB7oCU;IAxDV,sBAA8C;EhBwsC9C;EgBhpCU;IAxDV,gBAA8C;EhB2sC9C;EgBnpCU;IAxDV,sBAA8C;EhB8sC9C;EgBtpCU;IAxDV,sBAA8C;EhBitC9C;EgBzpCU;IAxDV,gBAA8C;EhBotC9C;EgB5pCU;IAxDV,sBAA8C;EhButC9C;EgB/pCU;IAxDV,sBAA8C;EhB0tC9C;EgBlqCU;IAxDV,gBAA8C;EhB6tC9C;EgBrqCU;IAxDV,sBAA8C;EhBguC9C;EgBxqCU;IAxDV,sBAA8C;EhBmuC9C;EgBhqCM;;IAEE,gBAAwC;EhBkqChD;EgB/pCM;;IAEE,gBAAwC;EhBiqChD;EgBxqCM;;IAEE,sBAAwC;EhB0qChD;EgBvqCM;;IAEE,sBAAwC;EhByqChD;EgBhrCM;;IAEE,qBAAwC;EhBkrChD;EgB/qCM;;IAEE,qBAAwC;EhBirChD;EgBxrCM;;IAEE,mBAAwC;EhB0rChD;EgBvrCM;;IAEE,mBAAwC;EhByrChD;EgBhsCM;;IAEE,qBAAwC;EhBksChD;EgB/rCM;;IAEE,qBAAwC;EhBisChD;EgBxsCM;;IAEE,mBAAwC;EhB0sChD;EgBvsCM;;IAEE,mBAAwC;EhBysChD;EgBhtCM;;IAEE,mBAAwC;EhBktChD;EgB/sCM;;IAEE,mBAAwC;EhBitChD;EgBxtCM;;IAEE,mBAAwC;EhB0tChD;EgBvtCM;;IAEE,mBAAwC;EhBytChD;EgBhuCM;;IAEE,qBAAwC;EhBkuChD;EgB/tCM;;IAEE,qBAAwC;EhBiuChD;EgBxuCM;;IAEE,oBAAwC;EhB0uChD;EgBvuCM;;IAEE,oBAAwC;EhByuChD;EgBhvCM;;IAEE,sBAAwC;EhBkvChD;EgB/uCM;;IAEE,sBAAwC;EhBivChD;EgBxvCM;;IAEE,oBAAwC;EhB0vChD;EgBvvCM;;IAEE,oBAAwC;EhByvChD;AACF;;Ac7yCI;EEGE;IACE,mBAAY;IAAZ,gBAAY;IAAZ,YAAY;EhB8yClB;EgB3yCI;IApCJ,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAW;EhBk1CX;EgBp0CA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAoB;EhBs0CtB;EgBx0CA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAoB;EhB00CtB;EgB50CA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAoB;EhB80CtB;EgBh1CA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAoB;EhBk1CtB;EgBp1CA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAoB;EhBs1CtB;EgBx1CA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAoB;EhB01CtB;EgB3zCI;IAhDJ,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAW;EhB82CX;EgBzzCQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,eAAmC;EhBu3CnC;EgB7zCQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhB23CnC;EgBj0CQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAmC;EhB+3CnC;EgBr0CQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhBm4CnC;EgBz0CQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhBu4CnC;EgB70CQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAmC;EhB24CnC;EgBj1CQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhB+4CnC;EgBr1CQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhBm5CnC;EgBz1CQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAmC;EhBu5CnC;EgB71CQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhB25CnC;EgBj2CQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhB+5CnC;EgBr2CQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAmC;EhBm6CnC;EgBj2CU;IAxDV,cAA4B;EhB45C5B;EgBp2CU;IAxDV,qBAA8C;EhB+5C9C;EgBv2CU;IAxDV,sBAA8C;EhBk6C9C;EgB12CU;IAxDV,gBAA8C;EhBq6C9C;EgB72CU;IAxDV,sBAA8C;EhBw6C9C;EgBh3CU;IAxDV,sBAA8C;EhB26C9C;EgBn3CU;IAxDV,gBAA8C;EhB86C9C;EgBt3CU;IAxDV,sBAA8C;EhBi7C9C;EgBz3CU;IAxDV,sBAA8C;EhBo7C9C;EgB53CU;IAxDV,gBAA8C;EhBu7C9C;EgB/3CU;IAxDV,sBAA8C;EhB07C9C;EgBl4CU;IAxDV,sBAA8C;EhB67C9C;EgB13CM;;IAEE,gBAAwC;EhB43ChD;EgBz3CM;;IAEE,gBAAwC;EhB23ChD;EgBl4CM;;IAEE,sBAAwC;EhBo4ChD;EgBj4CM;;IAEE,sBAAwC;EhBm4ChD;EgB14CM;;IAEE,qBAAwC;EhB44ChD;EgBz4CM;;IAEE,qBAAwC;EhB24ChD;EgBl5CM;;IAEE,mBAAwC;EhBo5ChD;EgBj5CM;;IAEE,mBAAwC;EhBm5ChD;EgB15CM;;IAEE,qBAAwC;EhB45ChD;EgBz5CM;;IAEE,qBAAwC;EhB25ChD;EgBl6CM;;IAEE,mBAAwC;EhBo6ChD;EgBj6CM;;IAEE,mBAAwC;EhBm6ChD;EgB16CM;;IAEE,mBAAwC;EhB46ChD;EgBz6CM;;IAEE,mBAAwC;EhB26ChD;EgBl7CM;;IAEE,mBAAwC;EhBo7ChD;EgBj7CM;;IAEE,mBAAwC;EhBm7ChD;EgB17CM;;IAEE,qBAAwC;EhB47ChD;EgBz7CM;;IAEE,qBAAwC;EhB27ChD;EgBl8CM;;IAEE,oBAAwC;EhBo8ChD;EgBj8CM;;IAEE,oBAAwC;EhBm8ChD;EgB18CM;;IAEE,sBAAwC;EhB48ChD;EgBz8CM;;IAEE,sBAAwC;EhB28ChD;EgBl9CM;;IAEE,oBAAwC;EhBo9ChD;EgBj9CM;;IAEE,oBAAwC;EhBm9ChD;AACF;;AcvgDI;EEGE;IACE,mBAAY;IAAZ,gBAAY;IAAZ,YAAY;EhBwgDlB;EgBrgDI;IApCJ,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAW;EhB4iDX;EgB9hDA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAoB;EhBgiDtB;EgBliDA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAoB;EhBoiDtB;EgBtiDA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAoB;EhBwiDtB;EgB1iDA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAoB;EhB4iDtB;EgB9iDA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAoB;EhBgjDtB;EgBljDA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAoB;EhBojDtB;EgBrhDI;IAhDJ,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAW;EhBwkDX;EgBnhDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,eAAmC;EhBilDnC;EgBvhDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhBqlDnC;EgB3hDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAmC;EhBylDnC;EgB/hDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhB6lDnC;EgBniDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhBimDnC;EgBviDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAmC;EhBqmDnC;EgB3iDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhBymDnC;EgB/iDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhB6mDnC;EgBnjDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAmC;EhBinDnC;EgBvjDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhBqnDnC;EgB3jDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhBynDnC;EgB/jDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAmC;EhB6nDnC;EgB3jDU;IAxDV,cAA4B;EhBsnD5B;EgB9jDU;IAxDV,qBAA8C;EhBynD9C;EgBjkDU;IAxDV,sBAA8C;EhB4nD9C;EgBpkDU;IAxDV,gBAA8C;EhB+nD9C;EgBvkDU;IAxDV,sBAA8C;EhBkoD9C;EgB1kDU;IAxDV,sBAA8C;EhBqoD9C;EgB7kDU;IAxDV,gBAA8C;EhBwoD9C;EgBhlDU;IAxDV,sBAA8C;EhB2oD9C;EgBnlDU;IAxDV,sBAA8C;EhB8oD9C;EgBtlDU;IAxDV,gBAA8C;EhBipD9C;EgBzlDU;IAxDV,sBAA8C;EhBopD9C;EgB5lDU;IAxDV,sBAA8C;EhBupD9C;EgBplDM;;IAEE,gBAAwC;EhBslDhD;EgBnlDM;;IAEE,gBAAwC;EhBqlDhD;EgB5lDM;;IAEE,sBAAwC;EhB8lDhD;EgB3lDM;;IAEE,sBAAwC;EhB6lDhD;EgBpmDM;;IAEE,qBAAwC;EhBsmDhD;EgBnmDM;;IAEE,qBAAwC;EhBqmDhD;EgB5mDM;;IAEE,mBAAwC;EhB8mDhD;EgB3mDM;;IAEE,mBAAwC;EhB6mDhD;EgBpnDM;;IAEE,qBAAwC;EhBsnDhD;EgBnnDM;;IAEE,qBAAwC;EhBqnDhD;EgB5nDM;;IAEE,mBAAwC;EhB8nDhD;EgB3nDM;;IAEE,mBAAwC;EhB6nDhD;EgBpoDM;;IAEE,mBAAwC;EhBsoDhD;EgBnoDM;;IAEE,mBAAwC;EhBqoDhD;EgB5oDM;;IAEE,mBAAwC;EhB8oDhD;EgB3oDM;;IAEE,mBAAwC;EhB6oDhD;EgBppDM;;IAEE,qBAAwC;EhBspDhD;EgBnpDM;;IAEE,qBAAwC;EhBqpDhD;EgB5pDM;;IAEE,oBAAwC;EhB8pDhD;EgB3pDM;;IAEE,oBAAwC;EhB6pDhD;EgBpqDM;;IAEE,sBAAwC;EhBsqDhD;EgBnqDM;;IAEE,sBAAwC;EhBqqDhD;EgB5qDM;;IAEE,oBAAwC;EhB8qDhD;EgB3qDM;;IAEE,oBAAwC;EhB6qDhD;AACF;;AcjuDI;EEGE;IACE,mBAAY;IAAZ,gBAAY;IAAZ,YAAY;EhBkuDlB;EgB/tDI;IApCJ,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAW;EhBswDX;EgBxvDA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAoB;EhB0vDtB;EgB5vDA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAoB;EhB8vDtB;EgBhwDA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAoB;EhBkwDtB;EgBpwDA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAoB;EhBswDtB;EgBxwDA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAoB;EhB0wDtB;EgB5wDA;IACE,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAoB;EhB8wDtB;EgB/uDI;IAhDJ,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAW;EhBkyDX;EgB7uDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,eAAmC;EhB2yDnC;EgBjvDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhB+yDnC;EgBrvDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAmC;EhBmzDnC;EgBzvDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhBuzDnC;EgB7vDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhB2zDnC;EgBjwDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAmC;EhB+zDnC;EgBrwDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhBm0DnC;EgBzwDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhBu0DnC;EgB7wDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,UAAmC;EhB20DnC;EgBjxDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhB+0DnC;EgBrxDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,gBAAmC;EhBm1DnC;EgBzxDQ;IA3DR,mBAAc;IAAd,kBAAc;IAAd,cAAc;IACd,WAAmC;EhBu1DnC;EgBrxDU;IAxDV,cAA4B;EhBg1D5B;EgBxxDU;IAxDV,qBAA8C;EhBm1D9C;EgB3xDU;IAxDV,sBAA8C;EhBs1D9C;EgB9xDU;IAxDV,gBAA8C;EhBy1D9C;EgBjyDU;IAxDV,sBAA8C;EhB41D9C;EgBpyDU;IAxDV,sBAA8C;EhB+1D9C;EgBvyDU;IAxDV,gBAA8C;EhBk2D9C;EgB1yDU;IAxDV,sBAA8C;EhBq2D9C;EgB7yDU;IAxDV,sBAA8C;EhBw2D9C;EgBhzDU;IAxDV,gBAA8C;EhB22D9C;EgBnzDU;IAxDV,sBAA8C;EhB82D9C;EgBtzDU;IAxDV,sBAA8C;EhBi3D9C;EgB9yDM;;IAEE,gBAAwC;EhBgzDhD;EgB7yDM;;IAEE,gBAAwC;EhB+yDhD;EgBtzDM;;IAEE,sBAAwC;EhBwzDhD;EgBrzDM;;IAEE,sBAAwC;EhBuzDhD;EgB9zDM;;IAEE,qBAAwC;EhBg0DhD;EgB7zDM;;IAEE,qBAAwC;EhB+zDhD;EgBt0DM;;IAEE,mBAAwC;EhBw0DhD;EgBr0DM;;IAEE,mBAAwC;EhBu0DhD;EgB90DM;;IAEE,qBAAwC;EhBg1DhD;EgB70DM;;IAEE,qBAAwC;EhB+0DhD;EgBt1DM;;IAEE,mBAAwC;EhBw1DhD;EgBr1DM;;IAEE,mBAAwC;EhBu1DhD;EgB91DM;;IAEE,mBAAwC;EhBg2DhD;EgB71DM;;IAEE,mBAAwC;EhB+1DhD;EgBt2DM;;IAEE,mBAAwC;EhBw2DhD;EgBr2DM;;IAEE,mBAAwC;EhBu2DhD;EgB92DM;;IAEE,qBAAwC;EhBg3DhD;EgB72DM;;IAEE,qBAAwC;EhB+2DhD;EgBt3DM;;IAEE,oBAAwC;EhBw3DhD;EgBr3DM;;IAEE,oBAAwC;EhBu3DhD;EgB93DM;;IAEE,sBAAwC;EhBg4DhD;EgB73DM;;IAEE,sBAAwC;EhB+3DhD;EgBt4DM;;IAEE,oBAAwC;EhBw4DhD;EgBr4DM;;IAEE,oBAAwC;EhBu4DhD;AACF;;AiBt/DA;EACE,0BAAwC;EACxC,iCAA8D;EAC9D,0CAAwD;EACxD,gCAA4D;EAC5D,wCAAsD;EACtD,+BAA0D;EAC1D,yCAAoD;EAEpD,WAAW;EACX,mBnByKW;EmBxKX,cnBgCiB;EmB/BjB,mBZmf+B;EYlf/B,qBnB0BgB;AE89DlB;;AiBrgEA;EAqBI,sBZse+B;EYre/B,oCAA8D;EAC9D,wBnB4Ic;EmB3Id,gEAAyF;EAAzF,wDAAyF;AjBo/D7F;;AiB5gEA;EA4BI,uBAAuB;AjBo/D3B;;AiBhhEA;EAgCI,sBAAsB;AjBo/D1B;;AiBphEA;EAqCI,iCZmfsC;ALggD1C;;AiB1+DA;EACE,iBAAiB;AjB6+DnB;;AiBr+DA;EAGI,wBZmcgC;ALmiDpC;;AiBx9DA;EAEI,mBAAmC;AjB09DvC;;AiB59DA;EAMM,mBnBqFY;AEq4DlB;;AiBr9DA;EAGI,sBAAsB;AjBs9D1B;;AiB98DA;EAEI,gDAAsD;EACtD,oCAAyE;AjBg9D7E;;AiBx8DA;EACE,+CAAsD;EACtD,mCAAuE;AjB28DzE;;AiBp8DA;EAEI,8CAAsD;EACtD,kCAAqE;AjBs8DzE;;AkB7jEE;EAME,sBAAwC;EACxC,8BAAwD;EACxD,iCAA8D;EAC9D,6BAAsD;EACtD,gCAA4D;EAC5D,4BAAoD;EACpD,+BAA0D;EAE1D,cpBgCc;EoB/Bd,qBAAwE;AlB0jE5E;;AkBzkEE;EAME,sBAAwC;EACxC,8BAAwD;EACxD,iCAA8D;EAC9D,6BAAsD;EACtD,gCAA4D;EAC5D,4BAAoD;EACpD,+BAA0D;EAE1D,cpBgCc;EoB/Bd,qBAAwE;AlBskE5E;;AkBrlEE;EAME,sBAAwC;EACxC,8BAAwD;EACxD,iCAA8D;EAC9D,6BAAsD;EACtD,gCAA4D;EAC5D,4BAAoD;EACpD,+BAA0D;EAE1D,cpBgCc;EoB/Bd,qBAAwE;AlBklE5E;;AkBjmEE;EAME,sBAAwC;EACxC,8BAAwD;EACxD,iCAA8D;EAC9D,6BAAsD;EACtD,gCAA4D;EAC5D,4BAAoD;EACpD,+BAA0D;EAE1D,cpBgCc;EoB/Bd,qBAAwE;AlB8lE5E;;AkB7mEE;EAME,sBAAwC;EACxC,8BAAwD;EACxD,iCAA8D;EAC9D,6BAAsD;EACtD,gCAA4D;EAC5D,4BAAoD;EACpD,+BAA0D;EAE1D,cpBgCc;EoB/Bd,qBAAwE;AlB0mE5E;;AkBznEE;EAME,sBAAwC;EACxC,8BAAwD;EACxD,iCAA8D;EAC9D,6BAAsD;EACtD,gCAA4D;EAC5D,4BAAoD;EACpD,+BAA0D;EAE1D,cpBgCc;EoB/Bd,qBAAwE;AlBsnE5E;;AkBroEE;EAME,sBAAwC;EACxC,8BAAwD;EACxD,iCAA8D;EAC9D,6BAAsD;EACtD,gCAA4D;EAC5D,4BAAoD;EACpD,+BAA0D;EAE1D,cpBgCc;EoB/Bd,qBAAwE;AlBkoE5E;;AkBjpEE;EAME,sBAAwC;EACxC,8BAAwD;EACxD,8BAA8D;EAC9D,6BAAsD;EACtD,6BAA4D;EAC5D,4BAAoD;EACpD,4BAA0D;EAE1D,WpBwBQ;EoBvBR,qBAAwE;AlB8oE5E;;AiB/gEI;EACE,gBAAgB;EAChB,iCAAiC;AjBkhEvC;;AcxlEI;EGoEA;IACE,gBAAgB;IAChB,iCAAiC;EjBwhErC;AACF;;Ac/lEI;EGoEA;IACE,gBAAgB;IAChB,iCAAiC;EjB+hErC;AACF;;ActmEI;EGoEA;IACE,gBAAgB;IAChB,iCAAiC;EjBsiErC;AACF;;Ac7mEI;EGoEA;IACE,gBAAgB;IAChB,iCAAiC;EjB6iErC;AACF;;AcpnEI;EGoEA;IACE,gBAAgB;IAChB,iCAAiC;EjBojErC;AACF;;AmBnsEA;EACE,qBd6nB2C;ALykD7C;;AmB7rEA;EACE,iCbwK8D;EavK9D,oCbuK8D;EatK9D,gBAAgB;Ef0OZ,kBAvE+B;Ee/JnC,gBdqZ+B;ALyyDjC;;AmB1rEA;EACE,+Bb6J8D;Ea5J9D,kCb4J8D;EFoE1D,eAvE+B;AJqiErC;;AmB1rEA;EACE,+BbuJ8D;EatJ9D,kCbsJ8D;EFoE1D,mBAvE+B;AJ2iErC;;AoB3tEA;EACE,mBfunB4C;EDjYxC,cAvE+B;EgB3KnC,ctBoCgB;AEwrElB;;AqBjuEA;EACE,cAAc;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-` + + + + + + +

+ + +
+ + + + + + +
+ + + @yield('content') + +
+ + +
+ + + +
+
+ +
+
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/views/admin/pages/alternatif/index.blade.php b/resources/views/admin/pages/alternatif/index.blade.php new file mode 100644 index 0000000..d5dfce1 --- /dev/null +++ b/resources/views/admin/pages/alternatif/index.blade.php @@ -0,0 +1,677 @@ +@extends('admin.layouts.base') + +@section('title', 'Data Alternatif') + +@section('content') + +
+

+ Data Alternatif +

+
+ +
+
+
+ Daftar Data Alternatif +
+ +
+ + + +
+
+
+
+ {{-- Kiri: Dropdown jumlah data --}} +
+ + + entries +
+ + {{-- Kanan: Search input --}} +
+ + + +
+ + {{-- Hidden --}} + @if(request('jenis_pakaian')) + + @endif +
+
+
+
+
+ + + + + + + + + + + + @php + $no = ($alternatif->currentPage() - 1) * $alternatif->perPage() + 1; + @endphp + @foreach ($alternatif as $key => $item) + + + + + + + + @endforeach + +
NoGambarNama AlternatifJenis PakaianAksi
{{ $no++ }} + @if($item->gambar) + Gambar + @else + Tidak ada gambar + @endif + {{ $item->nama_alternatif }}{{ $item->subkriteria?->nama_subkriteria ?? '-' }} +
+ + +
+ @csrf + @method('DELETE') + +
+
+
+
+ {{ $alternatif->appends(['entries' => request('entries')])->links('vendor.pagination.bootstrap-5') }} +
+
+
+
+
+ + + + + + +@endsection diff --git a/resources/views/landingpage/master.blade.php b/resources/views/landingpage/master.blade.php new file mode 100644 index 0000000..4b1f947 --- /dev/null +++ b/resources/views/landingpage/master.blade.php @@ -0,0 +1,223 @@ + + + + + + + + + + + + + Edmee Outfit + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ + @include('landingpage.pilihpakaian') + + +
+ + @include('landingpage.daftarpakaian') + +
+ + @include('landingpage.contact') + + + + + + +
+ + @yield('footer') + +
+ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/views/landingpage/pilihpakaian.blade.php b/resources/views/landingpage/pilihpakaian.blade.php new file mode 100644 index 0000000..c592ffe --- /dev/null +++ b/resources/views/landingpage/pilihpakaian.blade.php @@ -0,0 +1,196 @@ +
+
+ +
+
+ @csrf +
+
+
+
Pilih Pakaian Anda
+

Untuk mendapatkan rekomendasi pakaian yang paling sesuai dengan gaya dan kebutuhan Anda, silakan isi beberapa pertanyaan berikut.

+
+ +
+
+ +
+
+
+ + +
+
Pilih jenis acara yang akan kamu hadiri...
+
+ + +
+
+ + +
+
+ + +
+ +
+ + +
+
Tentukan rentang harga pakaian...
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + +
+ + +
+
Pilih jenis pakaian...
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + +
+ + +
+
Pilih warna pakaian...
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + +
+ + +
+
Pilih kondisi cuaca...
+
+ + +
+
+ + +
+ + +
+ + +
+
Pilih lokasi acara...
+
+ + +
+
+ + +
+ + +
+ +
+
+
+
+
+
+ + + +
+
diff --git a/resources/views/landingpage/rekomendasi.blade.php b/resources/views/landingpage/rekomendasi.blade.php new file mode 100644 index 0000000..cc4bde7 --- /dev/null +++ b/resources/views/landingpage/rekomendasi.blade.php @@ -0,0 +1,54 @@ + + + + + + Rekomendasi {{ $jenis }} + + + +
+

Rekomendasi {{ $jenis }}

+ + @if(isset($skorAkhir) && count($skorAkhir) > 0) +
+ @foreach($skorAkhir as $index => $item) +
+
+
+
+ #{{ $index + 1 }} - {{ $item['alternatif']->nama_alternatif ?? 'Produk ' . ($index + 1) }} +
+ +

+ Skor: {{ number_format($item['skor_akhir'] * 100, 1) }}% +

+ + @if(isset($item['alternatif']->harga)) +

+ Harga: Rp {{ number_format($item['alternatif']->harga, 0, ',', '.') }} +

+ @endif + + @if(isset($item['alternatif']->deskripsi)) +

{{ $item['alternatif']->deskripsi }}

+ @endif +
+
+
+ @endforeach +
+ @else +
+

Tidak ada rekomendasi {{ strtolower($jenis) }} yang tersedia.

+
+ @endif + + +
+ + + + \ 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/resources/views/welcome.blade.php b/resources/views/welcome.blade.php new file mode 100644 index 0000000..3353350 --- /dev/null +++ b/resources/views/welcome.blade.php @@ -0,0 +1,133 @@ + + + + + + + Laravel + + + + + + + + + + + + diff --git a/routes/api.php b/routes/api.php new file mode 100644 index 0000000..889937e --- /dev/null +++ b/routes/api.php @@ -0,0 +1,19 @@ +get('/user', function (Request $request) { + return $request->user(); +}); diff --git a/routes/channels.php b/routes/channels.php new file mode 100644 index 0000000..5d451e1 --- /dev/null +++ b/routes/channels.php @@ -0,0 +1,18 @@ +id === (int) $id; +}); diff --git a/routes/console.php b/routes/console.php new file mode 100644 index 0000000..e05f4c9 --- /dev/null +++ b/routes/console.php @@ -0,0 +1,19 @@ +comment(Inspiring::quote()); +})->purpose('Display an inspiring quote'); diff --git a/routes/web.php b/routes/web.php new file mode 100644 index 0000000..5e76df9 --- /dev/null +++ b/routes/web.php @@ -0,0 +1,115 @@ +name('home'); + +Route::post('/proses-rekomendasi', [HomeController::class, 'simpankuisionerdanrekomendasi'])->name('proses.rekomendasi'); + + +// Jika user sudah login, arahkan ke dashboard +Route::get('/dashboard', function () { + if (!Auth::check()) { + return redirect()->route('login'); + } + return view('admin.pages.dashboard.index'); +})->name('dashboard'); + +// Login & Register Routes +Route::get('/login', [AuthController::class, 'showLogin'])->name('login'); +Route::post('/login', [AuthController::class, 'login']); + +// Menampilkan form lupa password +Route::get('/forgot-password', [\App\Http\Controllers\Admin\ForgotPasswordController::class, 'showForm'])->name('forgot.password.form'); + +// Mengirim email reset link +Route::post('/forgot-password', [\App\Http\Controllers\Admin\ForgotPasswordController::class, 'sendResetLink'])->name('forgot.password.send'); + +// Menampilkan form reset password (dari email) +Route::get('/reset-password/{token}', [ResetPasswordController::class, 'showResetForm'])->name('password.reset'); + +// Menyimpan password baru +Route::post('/reset-password', [ResetPasswordController::class, 'reset'])->name('password.update'); + +// Logout +Route::post('/logout', function () { + Auth::logout(); + return redirect()->route('login'); +})->name('logout'); + +// Dashboard +Route::get('/dashboard', [DashboardController::class, 'indexPage'])->name('dashboard'); + +// Kriteria +Route::get('/kriteria', [DataKriteriaController::class, 'indexPage'])->name('admin.kriteria.index'); +Route::get('/kriteria/create', [DataKriteriaController::class, 'create'])->name('admin.kriteria.create'); +Route::post('/kriteria/store', [DataKriteriaController::class, 'store'])->name('admin.kriteria.store'); +Route::get('/kriteria/{id}/edit', [DataKriteriaController::class, 'edit'])->name('admin.kriteria.edit'); +Route::put('/kriteria/{id}/update', [DataKriteriaController::class, 'update'])->name('admin.kriteria.update'); +Route::delete('/kriteria/{id}/delete', [DataKriteriaController::class, 'destroy'])->name('admin.kriteria.destroy'); + +// Sub Kriteria +Route::get('/admin/subkriteria/kriteria/{id}', [SubkriteriaController::class, 'showByKriteria'])->name('admin.pages.subkriteria.kriteria'); +Route::get('/admin/subkriteria/kriteria/{id}/create', [SubkriteriaController::class, 'create'])->name('admin.subkriteria.create'); +Route::post('/admin/subkriteria/store', [SubKriteriaController::class, 'store'])->name('admin.subkriteria.store'); +Route::get('/admin/subkriteria/{id}/edit', [SubkriteriaController::class, 'edit'])->name('admin.subkriteria.edit'); +Route::put('/admin/subkriteria/{id}', [SubkriteriaController::class, 'update'])->name('admin.pages.subkriteria.update'); +Route::delete('/admin/subkriteria/{id}', [SubkriteriaController::class, 'destroy'])->name('subkriteria.destroy'); + +// Data alternatif +Route::get('/alternatif', [AlternatifController::class, 'indexPage'])->name('admin.alternatif.index'); +Route::post('/admin/alternatif', [AlternatifController::class, 'store'])->name('admin.alternatif.store'); +Route::get('/alternatif/{id}/edit', [AlternatifController::class, 'edit'])->name('admin.alternatif.edit'); +Route::put('/alternatif/{id}', [AlternatifController::class, 'update'])->name('admin.alternatif.update'); +Route::delete('/alternatif/{id}', [AlternatifController::class, 'destroy'])->name('admin.alternatif.destroy'); + +// Penilaian alternatif +Route::get('/penilaian', [PenilaianController::class, 'indexPage'])->name('admin.penilaian.index'); +Route::get('/penilaian/create', [PenilaianController::class, 'create'])->name('admin.penilaian.create'); +Route::get('/penilaian/{id}/edit', [PenilaianController::class, 'edit'])->name('admin.penilaian.edit'); +Route::put('/penilaian/{id}', [PenilaianController::class, 'update'])->name('admin.penilaian.update'); + +// Data user +// Route::get('/user', [UserController::class, 'index'])->name('users.index'); +Route::get('/user/{id}', [UserController::class, 'show'])->name('user.show'); +Route::get('/user/{id}/edit', [UserController::class, 'edit'])->name('user.edit'); +Route::put('/user/{id}', [UserController::class, 'update'])->name('user.update'); +// Route::delete('/user/{id}', [UserController::class, 'destroy'])->name('user.destroy'); + +// Data perhitungan +Route::get('/perhitungan/dress', [PerhitunganController::class, 'dress'])->name('admin.perhitungan.dress'); +Route::get('/perhitungan/blouse', [PerhitunganController::class, 'blouse'])->name('admin.perhitungan.blouse'); +Route::get('/perhitungan/cardigan', [PerhitunganController::class, 'cardigan'])->name('admin.perhitungan.cardigan'); +Route::get('/perhitungan/rok', [PerhitunganController::class, 'rok'])->name('admin.perhitungan.rok'); +Route::get('/perhitungan/celana', [PerhitunganController::class, 'celana'])->name('admin.perhitungan.celana'); + +// Riwayat +Route::get('/riwayat', [RiwayatController::class, 'index'])->name('admin.riwayat.index'); +Route::delete('/riwayat/{id}', [RiwayatController::class, 'destroy'])->name('admin.riwayat.destroy'); diff --git a/storage/app/.gitignore b/storage/app/.gitignore new file mode 100644 index 0000000..8f4803c --- /dev/null +++ b/storage/app/.gitignore @@ -0,0 +1,3 @@ +* +!public/ +!.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/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/tests/CreatesApplication.php b/tests/CreatesApplication.php new file mode 100644 index 0000000..cc68301 --- /dev/null +++ b/tests/CreatesApplication.php @@ -0,0 +1,21 @@ +make(Kernel::class)->bootstrap(); + + return $app; + } +} 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..2932d4a --- /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..421b569 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,11 @@ +import { defineConfig } from 'vite'; +import laravel from 'laravel-vite-plugin'; + +export default defineConfig({ + plugins: [ + laravel({ + input: ['resources/css/app.css', 'resources/js/app.js'], + refresh: true, + }), + ], +});