diff --git a/.gitignore b/.gitignore index 1806749..6140d1a 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,4 @@ Homestead.json /.vagrant .phpunit.result.cache +site/.yarn/releases/yarn-1.22.19.cjs diff --git a/site/.yarnrc b/site/.yarnrc new file mode 100644 index 0000000..5ef1bed --- /dev/null +++ b/site/.yarnrc @@ -0,0 +1,5 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +yarn-path ".yarn/releases/yarn-1.22.19.cjs" diff --git a/site/app/Http/Controllers/PageController.php b/site/app/Http/Controllers/PageController.php new file mode 100644 index 0000000..7d5ae4f --- /dev/null +++ b/site/app/Http/Controllers/PageController.php @@ -0,0 +1,15 @@ +user(); + return view('home.page'); + } +} diff --git a/site/config/app.php b/site/config/app.php index 4c231b4..8f4a37a 100644 --- a/site/config/app.php +++ b/site/config/app.php @@ -59,6 +59,8 @@ 'asset_url' => env('ASSET_URL'), + 'static_asset_url' => env('STATIC_ASSET_URL'), + /* |-------------------------------------------------------------------------- | Application Timezone diff --git a/site/database/factories/ArtistFactory.php b/site/database/factories/ArtistFactory.php index 39900da..031b943 100644 --- a/site/database/factories/ArtistFactory.php +++ b/site/database/factories/ArtistFactory.php @@ -2,10 +2,19 @@ namespace Database\Factories; +use App\Models\Artist; +use App\Models\User; use Illuminate\Database\Eloquent\Factories\Factory; class ArtistFactory extends Factory { + /** + * The name of the factory's corresponding model + * + * @var string + */ + protected $model = Artist::class; + /** * Define the model's default state. * @@ -14,7 +23,13 @@ class ArtistFactory extends Factory public function definition() { return [ - // + 'user_id' => User::factory(), + 'name' => fake()->name(), + 'avatar' => fake()->imageUrl(512, 512), + 'header' => fake()->imageUrl(270, 185), + 'location' => fake()->city() . ', ' . fake()->state(), + 'website' => rand(0, 1) ? fake()->url : null, + 'bio' => fake()->paragraphs(rand(1,3, true)), ]; } } diff --git a/site/database/factories/ArtworkFactory.php b/site/database/factories/ArtworkFactory.php index cf2806a..71321fc 100644 --- a/site/database/factories/ArtworkFactory.php +++ b/site/database/factories/ArtworkFactory.php @@ -3,9 +3,23 @@ namespace Database\Factories; use Illuminate\Database\Eloquent\Factories\Factory; +use Illuminate\Support\Str; +use App\Models\Artist; +use App\Models\Artwork; +use App\Models\Episode; +use App\Models\Podcast; +use App\Models\Overlay; class ArtworkFactory extends Factory { + + /** + * The name of the factory's corresponding model + * + * @var string + */ + protected $model = Artwork::class; + /** * Define the model's default state. * @@ -14,7 +28,13 @@ class ArtworkFactory extends Factory public function definition() { return [ - // + 'title' => fake()->name(), + 'description' => rand(0, 1) ? fake()->paragraphs(rand((1, 3, true))) : null, + 'artist_id' => Artist::factory(), + 'podcast_id' => Podcast::factory(), + 'episode_id' => Episode::factory(), + 'overlay_id' => rand(0, 1) ? Overlay::factory() : null, + 'filename' => fake()->imageUrl(3000, 3000), ]; } } diff --git a/site/database/factories/EpisodeFactory.php b/site/database/factories/EpisodeFactory.php index 4ca3066..66a1907 100644 --- a/site/database/factories/EpisodeFactory.php +++ b/site/database/factories/EpisodeFactory.php @@ -2,10 +2,21 @@ namespace Database\Factories; +use App\Models\Episode; +use App\Models\Podcast; +use App\Models\Artwork; use Illuminate\Database\Eloquent\Factories\Factory; + class EpisodeFactory extends Factory { + /** + * The name of the factory's corresponding model + * + * @var string + */ + protected $model = Episode::class; + /** * Define the model's default state. * @@ -14,7 +25,10 @@ class EpisodeFactory extends Factory public function definition() { return [ - // + 'podcast_id' => Podcast::factory(), + 'artwork_id' => Artwork::factory(), + 'published' => fake()->boolean(), + 'title' => fake()->name() ]; } } diff --git a/site/database/factories/OverlayFactory.php b/site/database/factories/OverlayFactory.php index 3921098..b499373 100644 --- a/site/database/factories/OverlayFactory.php +++ b/site/database/factories/OverlayFactory.php @@ -3,6 +3,10 @@ namespace Database\Factories; use Illuminate\Database\Eloquent\Factories\Factory; +use Illuminate\Support\Str; +use App\Models\Podcast; +use App\Models\Artist; + class OverlayFactory extends Factory { @@ -13,8 +17,14 @@ class OverlayFactory extends Factory */ public function definition() { + $name = fake()->name(); + $slug = Str::slug($name); return [ - // + 'name' => $name, + 'artist_id' => Artist::factory(), + 'podcast_id' => Podcast::factory(), + 'available' => fake()->boolean(), + 'filename' => fake()->imageUrl(3000, 3000), ]; } } diff --git a/site/database/factories/PodcastFactory.php b/site/database/factories/PodcastFactory.php index beea4da..5dffb79 100644 --- a/site/database/factories/PodcastFactory.php +++ b/site/database/factories/PodcastFactory.php @@ -4,6 +4,7 @@ use Illuminate\Database\Eloquent\Factories\Factory; use Illuminate\Support\Str; +use App\Models\Podcast; class PodcastFactory extends Factory { @@ -14,12 +15,14 @@ class PodcastFactory extends Factory */ public function definition() { + $name = fake()->name(); + $slug = Str::slug($name); return [ - 'name' => fake()->name(), + 'name' => $name, 'description' => fake()->paragraphs(rand(1,3), true), 'website' => 'https://' . fake()->domainName(), - 'feed' => fake()->url(), - 'slug' => fake()->slug(), + 'feed' => 'podcast/' . $slug, + 'slug' => $slug, 'published' => fake()->boolean(), 'added_at' => fake()->dateTimeThisDecade(), ]; diff --git a/site/database/factories/UserFactory.php b/site/database/factories/UserFactory.php index a3eb239..d76bbb2 100644 --- a/site/database/factories/UserFactory.php +++ b/site/database/factories/UserFactory.php @@ -4,6 +4,7 @@ use Illuminate\Database\Eloquent\Factories\Factory; use Illuminate\Support\Str; +use Illuminate\Support\Facades\Hash; class UserFactory extends Factory { @@ -14,11 +15,12 @@ class UserFactory extends Factory */ public function definition() { + $password = Hash::make(Str::random(rand(8, 16))); return [ 'name' => $this->faker->name(), 'email' => $this->faker->unique()->safeEmail(), 'email_verified_at' => now(), - 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password + 'password' => $password, 'remember_token' => Str::random(10), ]; } diff --git a/site/database/migrations/2022_01_22_212210_create_artists_table.php b/site/database/migrations/2022_01_22_212210_create_artists_table.php index 59c5373..8c4d449 100644 --- a/site/database/migrations/2022_01_22_212210_create_artists_table.php +++ b/site/database/migrations/2022_01_22_212210_create_artists_table.php @@ -15,7 +15,10 @@ public function up() { Schema::create('artists', function (Blueprint $table) { $table->id(); - $table->foreignId('user_id')->constrained(); + $table->foreignIdFor(User::class) + ->constrained() + ->cascadeOnUpdate() + ->cascadeOnDelete(); $table->string('name')->unique(); $table->string('avatar')->nullable(); $table->string('header')->nullable(); diff --git a/site/package-lock.json b/site/package-lock.json deleted file mode 100644 index b81b365..0000000 --- a/site/package-lock.json +++ /dev/null @@ -1,1779 +0,0 @@ -{ - "name": "html", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "devDependencies": { - "@tailwindcss/forms": "^0.5.2", - "alpinejs": "^3.4.2", - "autoprefixer": "^10.4.2", - "axios": "^1.1.2", - "laravel-vite-plugin": "^0.7.5", - "postcss": "^8.4.6", - "tailwindcss": "^3.1.0", - "vite": "^4.0.0" - } - }, - "node_modules/@alloc/quick-lru": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", - "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@esbuild/android-arm": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.19.tgz", - "integrity": "sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz", - "integrity": "sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.19.tgz", - "integrity": "sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz", - "integrity": "sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz", - "integrity": "sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz", - "integrity": "sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz", - "integrity": "sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz", - "integrity": "sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz", - "integrity": "sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz", - "integrity": "sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz", - "integrity": "sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==", - "cpu": [ - "loong64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz", - "integrity": "sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==", - "cpu": [ - "mips64el" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz", - "integrity": "sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz", - "integrity": "sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz", - "integrity": "sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz", - "integrity": "sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz", - "integrity": "sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz", - "integrity": "sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz", - "integrity": "sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz", - "integrity": "sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz", - "integrity": "sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz", - "integrity": "sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", - "dev": true, - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", - "dev": true, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "dev": true, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", - "dev": true - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", - "dev": true, - "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - } - }, - "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@tailwindcss/forms": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.3.tgz", - "integrity": "sha512-y5mb86JUoiUgBjY/o6FJSFZSEttfb3Q5gllE4xoKjAAD+vBrnIhE4dViwUuow3va8mpH4s9jyUbUbrRGoRdc2Q==", - "dev": true, - "dependencies": { - "mini-svg-data-uri": "^1.2.3" - }, - "peerDependencies": { - "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1" - } - }, - "node_modules/@vue/reactivity": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.1.5.tgz", - "integrity": "sha512-1tdfLmNjWG6t/CsPldh+foumYFo3cpyCHgBYQ34ylaMsJ+SNHQ1kApMIa8jN+i593zQuaw3AdWH0nJTARzCFhg==", - "dev": true, - "dependencies": { - "@vue/shared": "3.1.5" - } - }, - "node_modules/@vue/shared": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.1.5.tgz", - "integrity": "sha512-oJ4F3TnvpXaQwZJNF3ZK+kLPHKarDmJjJ6jyzVNDKH9md1dptjC7lWR//jrGuLdek/U6iltWxqAnYOu8gCiOvA==", - "dev": true - }, - "node_modules/alpinejs": { - "version": "3.12.2", - "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.12.2.tgz", - "integrity": "sha512-wrUZULm9w6DYwWcUtB/anFLgRaF4riSuPgIJ3gcPUS8st9luAJnAxoIgro/Al97d2McSSz/JypWg/NlmKFIJJA==", - "dev": true, - "dependencies": { - "@vue/reactivity": "~3.1.1" - } - }, - "node_modules/any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", - "dev": true - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", - "dev": true - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true - }, - "node_modules/autoprefixer": { - "version": "10.4.14", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", - "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - } - ], - "dependencies": { - "browserslist": "^4.21.5", - "caniuse-lite": "^1.0.30001464", - "fraction.js": "^4.2.0", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" - }, - "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/axios": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.4.0.tgz", - "integrity": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==", - "dev": true, - "dependencies": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browserslist": { - "version": "4.21.9", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", - "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001503", - "electron-to-chromium": "^1.4.431", - "node-releases": "^2.0.12", - "update-browserslist-db": "^1.0.11" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/camelcase-css": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001506", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001506.tgz", - "integrity": "sha512-6XNEcpygZMCKaufIcgpQNZNf00GEqc7VQON+9Rd0K1bMYo8xhMZRAo5zpbnbMNizi4YNgIDAFrdykWsvY3H4Hw==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/commander": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true, - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/didyoumean": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", - "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", - "dev": true - }, - "node_modules/dlv": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", - "dev": true - }, - "node_modules/electron-to-chromium": { - "version": "1.4.435", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.435.tgz", - "integrity": "sha512-B0CBWVFhvoQCW/XtjRzgrmqcgVWg6RXOEM/dK59+wFV93BFGR6AeNKc4OyhM+T3IhJaOOG8o/V+33Y2mwJWtzw==", - "dev": true - }, - "node_modules/esbuild": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.19.tgz", - "integrity": "sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==", - "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.17.19", - "@esbuild/android-arm64": "0.17.19", - "@esbuild/android-x64": "0.17.19", - "@esbuild/darwin-arm64": "0.17.19", - "@esbuild/darwin-x64": "0.17.19", - "@esbuild/freebsd-arm64": "0.17.19", - "@esbuild/freebsd-x64": "0.17.19", - "@esbuild/linux-arm": "0.17.19", - "@esbuild/linux-arm64": "0.17.19", - "@esbuild/linux-ia32": "0.17.19", - "@esbuild/linux-loong64": "0.17.19", - "@esbuild/linux-mips64el": "0.17.19", - "@esbuild/linux-ppc64": "0.17.19", - "@esbuild/linux-riscv64": "0.17.19", - "@esbuild/linux-s390x": "0.17.19", - "@esbuild/linux-x64": "0.17.19", - "@esbuild/netbsd-x64": "0.17.19", - "@esbuild/openbsd-x64": "0.17.19", - "@esbuild/sunos-x64": "0.17.19", - "@esbuild/win32-arm64": "0.17.19", - "@esbuild/win32-ia32": "0.17.19", - "@esbuild/win32-x64": "0.17.19" - } - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/fast-glob": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", - "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dev": true, - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fraction.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", - "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", - "dev": true, - "engines": { - "node": "*" - }, - "funding": { - "type": "patreon", - "url": "https://www.patreon.com/infusion" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "node_modules/glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-core-module": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", - "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", - "dev": true, - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/jiti": { - "version": "1.18.2", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.18.2.tgz", - "integrity": "sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==", - "dev": true, - "bin": { - "jiti": "bin/jiti.js" - } - }, - "node_modules/laravel-vite-plugin": { - "version": "0.7.8", - "resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-0.7.8.tgz", - "integrity": "sha512-HWYqpQYHR3kEQ1LsHX7gHJoNNf0bz5z5mDaHBLzS+PGLCTmYqlU5/SZyeEgObV7z7bC/cnStYcY9H1DI1D5Udg==", - "dev": true, - "dependencies": { - "picocolors": "^1.0.0", - "vite-plugin-full-reload": "^1.0.5" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "vite": "^3.0.0 || ^4.0.0" - } - }, - "node_modules/lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dev": true, - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mini-svg-data-uri": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz", - "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==", - "dev": true, - "bin": { - "mini-svg-data-uri": "cli.js" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/mz": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", - "dev": true, - "dependencies": { - "any-promise": "^1.0.0", - "object-assign": "^4.0.1", - "thenify-all": "^1.0.0" - } - }, - "node_modules/nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/node-releases": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", - "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", - "dev": true - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-hash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", - "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pirates": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", - "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/postcss": { - "version": "8.4.24", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", - "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-import": { - "version": "15.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", - "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "postcss": "^8.0.0" - } - }, - "node_modules/postcss-js": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", - "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", - "dev": true, - "dependencies": { - "camelcase-css": "^2.0.1" - }, - "engines": { - "node": "^12 || ^14 || >= 16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.4.21" - } - }, - "node_modules/postcss-load-config": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", - "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", - "dev": true, - "dependencies": { - "lilconfig": "^2.0.5", - "yaml": "^2.1.1" - }, - "engines": { - "node": ">= 14" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": ">=8.0.9", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "postcss": { - "optional": true - }, - "ts-node": { - "optional": true - } - } - }, - "node_modules/postcss-nested": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", - "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", - "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.11" - }, - "engines": { - "node": ">=12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.2.14" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.0.13", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", - "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", - "dev": true, - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true - }, - "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", - "dev": true - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", - "dev": true, - "dependencies": { - "pify": "^2.3.0" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", - "dev": true, - "dependencies": { - "is-core-module": "^2.11.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rollup": { - "version": "3.25.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.25.1.tgz", - "integrity": "sha512-tywOR+rwIt5m2ZAWSe5AIJcTat8vGlnPFAv15ycCrw33t6iFsXZ6mzHVFh2psSjxQPmI+xgzMZZizUAukBI4aQ==", - "dev": true, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=14.18.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sucrase": { - "version": "3.32.0", - "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.32.0.tgz", - "integrity": "sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==", - "dev": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.2", - "commander": "^4.0.0", - "glob": "7.1.6", - "lines-and-columns": "^1.1.6", - "mz": "^2.7.0", - "pirates": "^4.0.1", - "ts-interface-checker": "^0.1.9" - }, - "bin": { - "sucrase": "bin/sucrase", - "sucrase-node": "bin/sucrase-node" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/tailwindcss": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.2.tgz", - "integrity": "sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==", - "dev": true, - "dependencies": { - "@alloc/quick-lru": "^5.2.0", - "arg": "^5.0.2", - "chokidar": "^3.5.3", - "didyoumean": "^1.2.2", - "dlv": "^1.1.3", - "fast-glob": "^3.2.12", - "glob-parent": "^6.0.2", - "is-glob": "^4.0.3", - "jiti": "^1.18.2", - "lilconfig": "^2.1.0", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "object-hash": "^3.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.4.23", - "postcss-import": "^15.1.0", - "postcss-js": "^4.0.1", - "postcss-load-config": "^4.0.1", - "postcss-nested": "^6.0.1", - "postcss-selector-parser": "^6.0.11", - "postcss-value-parser": "^4.2.0", - "resolve": "^1.22.2", - "sucrase": "^3.32.0" - }, - "bin": { - "tailwind": "lib/cli.js", - "tailwindcss": "lib/cli.js" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/thenify": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", - "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", - "dev": true, - "dependencies": { - "any-promise": "^1.0.0" - } - }, - "node_modules/thenify-all": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", - "dev": true, - "dependencies": { - "thenify": ">= 3.1.0 < 4" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/ts-interface-checker": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", - "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", - "dev": true - }, - "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "node_modules/vite": { - "version": "4.3.9", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.3.9.tgz", - "integrity": "sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==", - "dev": true, - "dependencies": { - "esbuild": "^0.17.5", - "postcss": "^8.4.23", - "rollup": "^3.21.0" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - }, - "peerDependencies": { - "@types/node": ">= 14", - "less": "*", - "sass": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "sass": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } - } - }, - "node_modules/vite-plugin-full-reload": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/vite-plugin-full-reload/-/vite-plugin-full-reload-1.0.5.tgz", - "integrity": "sha512-kVZFDFWr0DxiHn6MuDVTQf7gnWIdETGlZh0hvTiMXzRN80vgF4PKbONSq8U1d0WtHsKaFODTQgJeakLacoPZEQ==", - "dev": true, - "dependencies": { - "picocolors": "^1.0.0", - "picomatch": "^2.3.1" - }, - "peerDependencies": { - "vite": "^2 || ^3 || ^4" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "node_modules/yaml": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", - "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", - "dev": true, - "engines": { - "node": ">= 14" - } - } - } -} diff --git a/site/package.json b/site/package.json index b2823e6..7a25721 100644 --- a/site/package.json +++ b/site/package.json @@ -14,7 +14,17 @@ "postcss": "^8.4.6", "sass": "^1.63.6", "tailwindcss": "^3.1.0", - "vite": "^4.0.0" + "vite": "^4.0.0", + "wolfy87-eventemitter": "4.2.0" }, - "version": "0.0.0" + "version": "0.0.0", + "dependencies": { + "aos": "^3.0.0-beta.6", + "isotope-layout": "^3.0.6", + "jquery": "^3.7.0", + "jquery-nice-select": "^1.1.0", + "js.cookie": "^0.0.4", + "slick-carousel": "^1.8.1", + "waypoints": "^4.0.1" + } } diff --git a/site/public/robots.txt b/site/public/robots.txt index eb05362..1f53798 100644 --- a/site/public/robots.txt +++ b/site/public/robots.txt @@ -1,2 +1,2 @@ User-agent: * -Disallow: +Disallow: / diff --git a/site/resources/css/style.css b/site/resources/css/style.css new file mode 100644 index 0000000..79deee5 --- /dev/null +++ b/site/resources/css/style.css @@ -0,0 +1,7038 @@ +/* CSS Document */ +/* +Created on : 04/03/2022. +Theme Name : Banu NFT Marketplace HTML Template +Version : 1.0. +Developed by : (ib-themes21@gmail.com) / (https://themeforest.net/user/ib-themes) +Primary use: ib-themes +*/ +/** +01 - Font Import +02 - Dafault Base CSS +03 - All Component Base CSS +**/ +@import url("https://fonts.googleapis.com/css2?family=Poppins&Bakbak+One&family=Chakra+Petch:wght@500;600;700&family=Inter:wght@200;300;400;500;600;700;800&display=swap"); +/* -- For screens 1264px to 1903px */ +/* -- For screens 960px to 1263px */ +/* -- For screens 600px to 959px */ +/* -- For For screens 0 to 600px */ +/* -- For For screens 0 to 360 */ +@import "./../css/vendor/nice-select.css"; +body { + background: #101010; + font-weight: 400; + font-size: 15px; + line-height: 24px; + font-family: "Inter", sans-serif; + color: rgba(255, 255, 255, 0.75); +} + +h1, +.aw-h1 { + font-size: 75px; +} +h2, +.aw-h2 { + font-size: 45px; +} +@media (max-width: 991px) { + h2, +.aw-h2 { + font-size: 35px; + } +} +@media (max-width: 575px) { + h2, +.aw-h2 { + font-size: 28px; + } +} + +h3, +.aw-h3 { + font-size: 24px; +} +h4, +.aw-h4 { + font-size: 18px; +} +h1, +h2, +h3, +h4, +h5, +h6, +.aw-h1, +.aw-h2, +.aw-h3, +.aw-h4, +.aw-h5, +.aw-h6 { + font-family: "Poppins", "Chakra Petch", sans-serif; + color: #fff; + margin-bottom: 0; + font-weight: 800; +} + +b, +strong { + font-weight: 800; + font-family: "Poppins", "Chakra Petch", sans-serif; + color: #fff; +} + +p { + font-size: 16px; + color: rgba(255, 255, 255, 0.8); + line-height: 26px; +} +@media (max-width: 575px) { + p { + font-size: 16px; + } +} + +input:-webkit-autofill { + -webkit-animation-name: autofill; + -webkit-animation-fill-mode: both; +} + +::placeholder { + /* Chrome, Firefox, Opera, Safari 10.1+ */ + opacity: 1; + /* Firefox */ +} + +:-ms-input-placeholder { + /* Internet Explorer 10-11 */ +} + +::-ms-input-placeholder { + /* Microsoft Edge */ +} + +label { + font-size: 15px; + padding-bottom: 0; + display: block; + font-weight: 500; + font-family: "Poppins", "Chakra Petch", sans-serif; + color: rgba(255, 255, 255, 0.9); +} + +hr { + margin-top: 0; + margin-bottom: 0; + border-top: 2px solid #101010; +} + +h5 span, +.aw-h5 span { + font-size: 15px; + padding-left: 30px; + font-weight: 400; +} + +ul li, +ol li { + font-size: 16px; + line-height: 24px; +} + +/* -- Base css +-------------------------------------------- -- */ +a, +img, +i { + transition: 0.3s; +} + +a { + text-decoration: none; + color: rgba(255, 255, 255, 0.75); +} +a:hover { + text-decoration: none; + color: #ff512f; +} + +h4 a:hover, +a.text-white:hover { + color: #ff512f !important; +} + +hr { + border-top: 1px solid #515151; +} + +.btn, +button { + transition: 0.5s; +} + +ul, +li { + list-style: none; + padding-left: 0; +} + +dl, +ol, +ul { + padding-left: 0; + margin-top: 0; + margin-bottom: 15px; +} + +.breadcrumb { + margin-bottom: 0; + margin-top: 0; +} +.breadcrumb li { + font-weight: 500; +} + +::-moz-selection { + background: #323da5; + color: #fff; + text-shadow: none; +} + +.theme--light.v-btn.v-btn--icon { + color: #767695; +} + +::selection { + background: #323da5; + color: #fff; + text-shadow: none; +} + +@media (max-width: 575px) { + br { + display: none; + } +} + +.dropdown-menu li { + font-size: 14px; +} + +.dropdown-menu-dark .dropdown-item.active, +.dropdown-menu-dark .dropdown-item:active { + color: #fff; + background: linear-gradient(97.3deg, #ff512f 0%, #dd2476 100%); +} + +.container, +.container-fluid, +.container-xxl, +.container-xl, +.container-lg, +.container-md, +.container-sm { + padding-right: 15px; + padding-left: 15px; +} + +.row { + margin-left: -15px; + margin-right: -15px; +} + +.row > * { + padding-left: 15px; + padding-right: 15px; +} + +@media (max-width: 575px) { + body { + overflow-x: hidden; + } +} + +@media (max-width: 991px) { + br { + display: none; + } +} + +/* -- Print Media query +---------------------------------------- -- */ +@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) { + /* Style adjustments for high resolution devices */ +} +/* -- Print styles- Inlined to avoid the additional HTTP request: +----------------------------------------------------------------------------- */ +@media print { + *, +*:before, +*:after { + background: transparent !important; + /* Black prints faster */ + -webkit-box-shadow: none !important; + box-shadow: none !important; + text-shadow: none !important; + } + + a, +a:visited { + text-decoration: underline; + } + + a[href]:after { + content: " (" attr(href) ")"; + } + + abbr[title]:after { + content: " (" attr(title) ")"; + } + + /* -- Don't show links that are fragment identifiers -- */ + a[href^="#"]:after, +a[href^="javascript:"]:after { + content: ""; + } + + pre { + white-space: pre-wrap !important; + } + + pre, +blockquote { + page-break-inside: avoid; + } + + /* -- Printing Tables -- */ + thead { + display: table-header-group; + } + + tr, +img { + page-break-inside: avoid; + } + + p, +h2, +h3 { + orphans: 3; + widows: 3; + } + + h2, +h3 { + page-break-after: avoid; + } +} +.pt-0 { + padding-top: 0 !important; +} + +.pt-1 { + padding-top: 5px !important; +} + +.pt-2 { + padding-top: 10px !important; +} + +.pt-3 { + padding-top: 15px !important; +} + +.pt-4 { + padding-top: 20px !important; +} + +.pt-5 { + padding-top: 25px !important; +} + +.pt-6 { + padding-top: 30px !important; +} + +.pt-7 { + padding-top: 35px !important; +} + +.pt-8 { + padding-top: 40px !important; +} + +.pt-9 { + padding-top: 45px !important; +} + +.pt-10 { + padding-top: 50px !important; +} + +.pt-11 { + padding-top: 55px !important; +} + +.pt-12 { + padding-top: 60px !important; +} + +.pt-13 { + padding-top: 65px !important; +} + +.pt-14 { + padding-top: 70px !important; +} + +.pt-15 { + padding-top: 75px !important; +} + +.pt-16 { + padding-top: 80px !important; +} + +.pt-17 { + padding-top: 85px !important; +} + +.pt-18 { + padding-top: 90px !important; +} + +.pt-19 { + padding-top: 95px !important; +} + +.pt-20 { + padding-top: 100px !important; +} + +.pb-0 { + padding-bottom: 0 !important; +} + +.pb-1 { + padding-bottom: 5px !important; +} + +.pb-2 { + padding-bottom: 10px !important; +} + +.pb-3 { + padding-bottom: 15px !important; +} + +.pb-4 { + padding-bottom: 20px !important; +} + +.pb-5 { + padding-bottom: 25px !important; +} + +.pb-6 { + padding-bottom: 30px !important; +} + +.pb-7 { + padding-bottom: 35px !important; +} + +.pb-8 { + padding-bottom: 40px !important; +} + +.pb-9 { + padding-bottom: 45px !important; +} + +.pb-10 { + padding-bottom: 50px !important; +} + +.pb-11 { + padding-bottom: 55px !important; +} + +.pb-12 { + padding-bottom: 60px !important; +} + +.pb-13 { + padding-bottom: 65px !important; +} + +.pb-14 { + padding-bottom: 70px !important; +} + +.pb-15 { + padding-bottom: 75px !important; +} + +.pb-16 { + padding-bottom: 80px !important; +} + +.pb-17 { + padding-bottom: 85px !important; +} + +.pb-18 { + padding-bottom: 90px !important; +} + +.pb-19 { + padding-bottom: 95px !important; +} + +.pb-20 { + padding-bottom: 100px !important; +} + +.py-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; +} + +.py-1 { + padding-top: 5px !important; + padding-bottom: 5px !important; +} + +.py-2 { + padding-top: 10px !important; + padding-bottom: 10px !important; +} + +.py-3 { + padding-top: 15px !important; + padding-bottom: 15px !important; +} + +.py-4 { + padding-top: 20px !important; + padding-bottom: 20px !important; +} + +.py-5 { + padding-top: 25px !important; + padding-bottom: 25px !important; +} + +.py-6 { + padding-top: 30px !important; + padding-bottom: 30px !important; +} + +.py-7 { + padding-top: 35px !important; + padding-bottom: 35px !important; +} + +.py-8 { + padding-top: 40px !important; + padding-bottom: 40px !important; +} + +.py-9 { + padding-top: 45px !important; + padding-bottom: 45px !important; +} + +.py-10 { + padding-top: 50px !important; + padding-bottom: 50px !important; +} + +.py-11 { + padding-top: 55px !important; + padding-bottom: 55px !important; +} + +.py-12 { + padding-top: 60px !important; + padding-bottom: 60px !important; +} + +.py-13 { + padding-top: 65px !important; + padding-bottom: 65px !important; +} + +.py-14 { + padding-top: 70px !important; + padding-bottom: 70px !important; +} + +.py-15 { + padding-top: 75px !important; + padding-bottom: 75px !important; +} + +.py-16 { + padding-top: 80px !important; + padding-bottom: 80px !important; +} + +.py-17 { + padding-top: 85px !important; + padding-bottom: 85px !important; +} + +.py-18 { + padding-top: 90px !important; + padding-bottom: 90px !important; +} + +.py-19 { + padding-top: 95px !important; + padding-bottom: 95px !important; +} + +.py-20 { + padding-top: 100px !important; + padding-bottom: 100px !important; +} + +.pl-0 { + padding-left: 0 !important; +} + +.pl-1 { + padding-left: 5px !important; +} + +.pl-2 { + padding-left: 10px !important; +} + +.pl-3 { + padding-left: 15px !important; +} + +.pl-4 { + padding-left: 20px !important; +} + +.pl-5 { + padding-left: 25px !important; +} + +.pl-6 { + padding-left: 30px !important; +} + +.pl-7 { + padding-left: 35px !important; +} + +.pl-8 { + padding-left: 40px !important; +} + +.pl-9 { + padding-left: 45px !important; +} + +.pl-10 { + padding-left: 50px !important; +} + +.pl-11 { + padding-left: 55px !important; +} + +.pl-12 { + padding-left: 60px !important; +} + +.pl-13 { + padding-left: 65px !important; +} + +.pl-14 { + padding-left: 70px !important; +} + +.pl-15 { + padding-left: 75px !important; +} + +.pl-16 { + padding-left: 80px !important; +} + +.pl-17 { + padding-left: 85px !important; +} + +.pl-18 { + padding-left: 90px !important; +} + +.pl-19 { + padding-left: 95px !important; +} + +.pl-20 { + padding-left: 100px !important; +} + +.pr-0 { + padding-right: 0 !important; +} + +.pr-1 { + padding-right: 5px !important; +} + +.pr-2 { + padding-right: 10px !important; +} + +.pr-3 { + padding-right: 15px !important; +} + +.pr-4 { + padding-right: 20px !important; +} + +.pr-5 { + padding-right: 25px !important; +} + +.pr-6 { + padding-right: 30px !important; +} + +.pr-7 { + padding-right: 35px !important; +} + +.pr-8 { + padding-right: 40px !important; +} + +.pr-9 { + padding-right: 45px !important; +} + +.pr-10 { + padding-right: 50px !important; +} + +.pr-11 { + padding-right: 55px !important; +} + +.pr-12 { + padding-right: 60px !important; +} + +.pr-13 { + padding-right: 65px !important; +} + +.pr-14 { + padding-right: 70px !important; +} + +.pr-15 { + padding-right: 75px !important; +} + +.pr-16 { + padding-right: 80px !important; +} + +.pr-17 { + padding-right: 85px !important; +} + +.pr-18 { + padding-right: 90px !important; +} + +.pr-19 { + padding-right: 95px !important; +} + +.pr-20 { + padding-right: 100px !important; +} + +.px-0 { + padding-left: 0 !important; + padding-right: 0 !important; +} + +.px-1 { + padding-left: 5px !important; + padding-right: 5px !important; +} + +.px-2 { + padding-left: 10px !important; + padding-right: 10px !important; +} + +.px-3 { + padding-left: 15px !important; + padding-right: 15px !important; +} + +.px-4 { + padding-left: 20px !important; + padding-right: 20px !important; +} + +.px-5 { + padding-left: 25px !important; + padding-right: 25px !important; +} + +.px-6 { + padding-left: 30px !important; + padding-right: 30px !important; +} + +.px-7 { + padding-left: 35px !important; + padding-right: 35px !important; +} + +.px-8 { + padding-left: 40px !important; + padding-right: 40px !important; +} + +.px-9 { + padding-left: 45px !important; + padding-right: 45px !important; +} + +.px-10 { + padding-left: 50px !important; + padding-right: 50px !important; +} + +.px-11 { + padding-left: 55px !important; + padding-right: 55px !important; +} + +.px-12 { + padding-left: 60px !important; + padding-right: 60px !important; +} + +.px-13 { + padding-left: 65px !important; + padding-right: 65px !important; +} + +.px-14 { + padding-left: 70px !important; + padding-right: 70px !important; +} + +.px-15 { + padding-left: 75px !important; + padding-right: 75px !important; +} + +.px-16 { + padding-left: 80px !important; + padding-right: 80px !important; +} + +.px-17 { + padding-left: 85px !important; + padding-right: 85px !important; +} + +.px-18 { + padding-left: 90px !important; + padding-right: 90px !important; +} + +.px-19 { + padding-left: 95px !important; + padding-right: 95px !important; +} + +.px-20 { + padding-left: 100px !important; + padding-right: 100px !important; +} + +.pa-0 { + padding: 0 !important; +} + +.pa-1 { + padding: 5px !important; +} + +.pa-2 { + padding: 10px !important; +} + +.pa-3 { + padding: 15px !important; +} + +.pa-4 { + padding: 20px !important; +} + +.pa-5 { + padding: 25px !important; +} + +.pa-6 { + padding: 30px !important; +} + +.pa-7 { + padding: 35px !important; +} + +.pa-8 { + padding: 40px !important; +} + +.pa-9 { + padding: 45px !important; +} + +.pa-10 { + padding: 50px !important; +} + +.pa-11 { + padding: 55px !important; +} + +.pa-12 { + padding: 60px !important; +} + +.pa-13 { + padding: 65px !important; +} + +.pa-14 { + padding: 70px !important; +} + +.pa-15 { + padding: 75px !important; +} + +.pa-16 { + padding: 80px !important; +} + +.pa-17 { + padding: 85px !important; +} + +.pa-18 { + padding: 90px !important; +} + +.pa-19 { + padding: 95px !important; +} + +.pa-20 { + padding: 100px !important; +} + +.mt-0 { + margin-top: 0 !important; +} + +.mt-1 { + margin-top: 5px !important; +} + +.mt-2 { + margin-top: 10px !important; +} + +.mt-3 { + margin-top: 15px !important; +} + +.mt-4 { + margin-top: 20px !important; +} + +.mt-5 { + margin-top: 25px !important; +} + +.mt-6 { + margin-top: 30px !important; +} + +.mt-7 { + margin-top: 35px !important; +} + +.mt-8 { + margin-top: 40px !important; +} + +.mt-9 { + margin-top: 45px !important; +} + +.mt-10 { + margin-top: 50px !important; +} + +.mt-11 { + margin-top: 55px !important; +} + +.mt-12 { + margin-top: 60px !important; +} + +.mt-13 { + margin-top: 65px !important; +} + +.mt-14 { + margin-top: 70px !important; +} + +.mt-15 { + margin-top: 75px !important; +} + +.mt-16 { + margin-top: 80px !important; +} + +.mt-17 { + margin-top: 85px !important; +} + +.mt-18 { + margin-top: 90px !important; +} + +.mt-19 { + margin-top: 95px !important; +} + +.mt-20 { + margin-top: 100px !important; +} + +.mb-0 { + margin-bottom: 0 !important; +} + +.mb-1 { + margin-bottom: 5px !important; +} + +.mb-2 { + margin-bottom: 10px !important; +} + +.mb-3 { + margin-bottom: 15px !important; +} + +.mb-4 { + margin-bottom: 20px !important; +} + +.mb-5 { + margin-bottom: 25px !important; +} + +.mb-6 { + margin-bottom: 30px !important; +} + +.mb-7 { + margin-bottom: 35px !important; +} + +.mb-8 { + margin-bottom: 40px !important; +} + +.mb-9 { + margin-bottom: 45px !important; +} + +.mb-10 { + margin-bottom: 50px !important; +} + +.mb-11 { + margin-bottom: 55px !important; +} + +.mb-12 { + margin-bottom: 60px !important; +} + +.mb-13 { + margin-bottom: 65px !important; +} + +.mb-14 { + margin-bottom: 70px !important; +} + +.mb-15 { + margin-bottom: 75px !important; +} + +.mb-16 { + margin-bottom: 80px !important; +} + +.mb-17 { + margin-bottom: 85px !important; +} + +.mb-18 { + margin-bottom: 90px !important; +} + +.mb-19 { + margin-bottom: 95px !important; +} + +.mb-20 { + margin-bottom: 100px !important; +} + +.my-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; +} + +.my-1 { + margin-top: 5px !important; + margin-bottom: 5px !important; +} + +.my-2 { + margin-top: 10px !important; + margin-bottom: 10px !important; +} + +.my-3 { + margin-top: 15px !important; + margin-bottom: 15px !important; +} + +.my-4 { + margin-top: 20px !important; + margin-bottom: 20px !important; +} + +.my-5 { + margin-top: 25px !important; + margin-bottom: 25px !important; +} + +.my-6 { + margin-top: 30px !important; + margin-bottom: 30px !important; +} + +.my-7 { + margin-top: 35px !important; + margin-bottom: 35px !important; +} + +.my-8 { + margin-top: 40px !important; + margin-bottom: 40px !important; +} + +.my-9 { + margin-top: 45px !important; + margin-bottom: 45px !important; +} + +.my-10 { + margin-top: 50px !important; + margin-bottom: 50px !important; +} + +.my-11 { + margin-top: 55px !important; + margin-bottom: 55px !important; +} + +.my-12 { + margin-top: 60px !important; + margin-bottom: 60px !important; +} + +.my-13 { + margin-top: 65px !important; + margin-bottom: 65px !important; +} + +.my-14 { + margin-top: 70px !important; + margin-bottom: 70px !important; +} + +.my-15 { + margin-top: 75px !important; + margin-bottom: 75px !important; +} + +.my-16 { + margin-top: 80px !important; + margin-bottom: 80px !important; +} + +.my-17 { + margin-top: 85px !important; + margin-bottom: 85px !important; +} + +.my-18 { + margin-top: 90px !important; + margin-bottom: 90px !important; +} + +.my-19 { + margin-top: 95px !important; + margin-bottom: 95px !important; +} + +.my-20 { + margin-top: 100px !important; + margin-bottom: 100px !important; +} + +.ml-0 { + margin-left: 0 !important; +} + +.ml-1 { + margin-left: 5px !important; +} + +.ml-2 { + margin-left: 10px !important; +} + +.ml-3 { + margin-left: 15px !important; +} + +.ml-4 { + margin-left: 20px !important; +} + +.ml-5 { + margin-left: 25px !important; +} + +.ml-6 { + margin-left: 30px !important; +} + +.ml-7 { + margin-left: 35px !important; +} + +.ml-8 { + margin-left: 40px !important; +} + +.ml-9 { + margin-left: 45px !important; +} + +.ml-10 { + margin-left: 50px !important; +} + +.ml-11 { + margin-left: 55px !important; +} + +.ml-12 { + margin-left: 60px !important; +} + +.ml-13 { + margin-left: 65px !important; +} + +.ml-14 { + margin-left: 70px !important; +} + +.ml-15 { + margin-left: 75px !important; +} + +.ml-16 { + margin-left: 80px !important; +} + +.ml-17 { + margin-left: 85px !important; +} + +.ml-18 { + margin-left: 90px !important; +} + +.ml-19 { + margin-left: 95px !important; +} + +.ml-20 { + margin-left: 100px !important; +} + +.mr-0 { + margin-right: 0 !important; +} + +.mr-1 { + margin-right: 5px !important; +} + +.mr-2 { + margin-right: 10px !important; +} + +.mr-3 { + margin-right: 15px !important; +} + +.mr-4 { + margin-right: 20px !important; +} + +.mr-5 { + margin-right: 25px !important; +} + +.mr-6 { + margin-right: 30px !important; +} + +.mr-7 { + margin-right: 35px !important; +} + +.mr-8 { + margin-right: 40px !important; +} + +.mr-9 { + margin-right: 45px !important; +} + +.mr-10 { + margin-right: 50px !important; +} + +.mr-11 { + margin-right: 55px !important; +} + +.mr-12 { + margin-right: 60px !important; +} + +.mr-13 { + margin-right: 65px !important; +} + +.mr-14 { + margin-right: 70px !important; +} + +.mr-15 { + margin-right: 75px !important; +} + +.mr-16 { + margin-right: 80px !important; +} + +.mr-17 { + margin-right: 85px !important; +} + +.mr-18 { + margin-right: 90px !important; +} + +.mr-19 { + margin-right: 95px !important; +} + +.mr-20 { + margin-right: 100px !important; +} + +.mx-0 { + margin-left: 0 !important; + margin-right: 0 !important; +} + +.mx-1 { + margin-left: 5px !important; + margin-right: 5px !important; +} + +.mx-2 { + margin-left: 10px !important; + margin-right: 10px !important; +} + +.mx-3 { + margin-left: 15px !important; + margin-right: 15px !important; +} + +.mx-4 { + margin-left: 20px !important; + margin-right: 20px !important; +} + +.mx-5 { + margin-left: 25px !important; + margin-right: 25px !important; +} + +.mx-6 { + margin-left: 30px !important; + margin-right: 30px !important; +} + +.mx-7 { + margin-left: 35px !important; + margin-right: 35px !important; +} + +.mx-8 { + margin-left: 40px !important; + margin-right: 40px !important; +} + +.mx-9 { + margin-left: 45px !important; + margin-right: 45px !important; +} + +.mx-10 { + margin-left: 50px !important; + margin-right: 50px !important; +} + +.mx-11 { + margin-left: 55px !important; + margin-right: 55px !important; +} + +.mx-12 { + margin-left: 60px !important; + margin-right: 60px !important; +} + +.mx-13 { + margin-left: 65px !important; + margin-right: 65px !important; +} + +.mx-14 { + margin-left: 70px !important; + margin-right: 70px !important; +} + +.mx-15 { + margin-left: 75px !important; + margin-right: 75px !important; +} + +.mx-16 { + margin-left: 80px !important; + margin-right: 80px !important; +} + +.mx-17 { + margin-left: 85px !important; + margin-right: 85px !important; +} + +.mx-18 { + margin-left: 90px !important; + margin-right: 90px !important; +} + +.mx-19 { + margin-left: 95px !important; + margin-right: 95px !important; +} + +.mx-20 { + margin-left: 100px !important; + margin-right: 100px !important; +} + +.ma-0 { + margin: 0 !important; +} + +.ma-1 { + margin: 5px !important; +} + +.ma-2 { + margin: 10px !important; +} + +.ma-3 { + margin: 15px !important; +} + +.ma-4 { + margin: 20px !important; +} + +.ma-5 { + margin: 25px !important; +} + +.ma-6 { + margin: 30px !important; +} + +.ma-7 { + margin: 35px !important; +} + +.ma-8 { + margin: 40px !important; +} + +.ma-9 { + margin: 45px !important; +} + +.ma-10 { + margin: 50px !important; +} + +.ma-11 { + margin: 55px !important; +} + +.ma-12 { + margin: 60px !important; +} + +.ma-13 { + margin: 65px !important; +} + +.ma-14 { + margin: 70px !important; +} + +.ma-15 { + margin: 75px !important; +} + +.ma-16 { + margin: 80px !important; +} + +.ma-17 { + margin: 85px !important; +} + +.ma-18 { + margin: 90px !important; +} + +.ma-19 { + margin: 95px !important; +} + +.ma-20 { + margin: 100px !important; +} + +.p-t-8 { + padding-top: 8px; +} + +.section-bg-separation { + background: #202027; +} + +.section-bg-separation-2 { + background: #000; +} + +.d-flex-center { + display: flex; + align-items: center; +} + +.d-flex-start { + display: flex; + align-items: flex-start; +} + +.d-flex-between { + display: flex; + align-items: center; + justify-content: space-between; +} + +.medium { + font-size: 16px; + line-height: 24px; +} + +.bg-overlay { + position: relative; +} +.bg-overlay::before { + content: ""; + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + background: rgba(0, 0, 0, 0.67); +} + +.pt-120 { + padding-top: 120px; +} +@media (max-width: 991px) { + .pt-120 { + padding-top: 100px; + } +} + +.pb-120 { + padding-bottom: 120px; +} +@media (max-width: 991px) { + .pb-120 { + padding-bottom: 100px; + } +} + +.ptb-120 { + padding: 120px 0; +} +@media (max-width: 991px) { + .ptb-120 { + padding: 100px 0; + } +} + +.pt-90 { + padding-top: 90px; +} +@media (max-width: 991px) { + .pt-90 { + padding-top: 70px; + } +} + +.pb-90 { + padding-bottom: 90px; +} +@media (max-width: 991px) { + .pb-90 { + padding-bottom: 70px; + } +} + +.pb-80 { + padding-bottom: 80px; +} +@media (max-width: 991px) { + .pb-80 { + padding-bottom: 40px; + } +} + +.color-primary { + color: #ff512f; +} + +.fw-500 { + font-weight: 500 !important; +} + +.section-bg-separation-3 { + background: #161726; +} + +input:focus, +textarea:focus { + box-shadow: none; + outline: none; +} + +input[type=text], +input[type=password], +input[type=email], +input[type=number], +textarea { + width: 100%; + border: none; + background: transparent; + padding: 10px 15px; + border-radius: 8px; + border: 2px solid #656565; + transition: 0.3s; + color: #fff; +} +input[type=text]:focus, +input[type=password]:focus, +input[type=email]:focus, +input[type=number]:focus, +textarea:focus { + border-color: #ff512f; +} + +.form-check-input:checked { + background-color: #ff512f; + border-color: #ff512f; +} + +.form-check-input { + margin-top: 0.2em; +} +.form-check-input:focus { + box-shadow: none; +} + +/* Chrome, Safari, Edge, Opera */ +input::-webkit-outer-spin-button, +input::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} + +.form-check-input { + width: 1.2em; + height: 1.2em; + border: 2px solid #65676b; + background: transparent; +} + +/* Firefox */ +input[type=number] { + -moz-appearance: textfield; +} + +.modal-dialog { + max-width: 450px; +} + +::placeholder { + /* Chrome, Firefox, Opera, Safari 10.1+ */ + color: rgba(255, 255, 255, 0.75); + opacity: 1; + /* Firefox */ +} + +:-ms-input-placeholder { + /* Internet Explorer 10-11 */ + color: rgba(255, 255, 255, 0.75); +} + +::-ms-input-placeholder { + /* Microsoft Edge */ + color: rgba(255, 255, 255, 0.75); +} + +.nice-select { + background-color: #20202d; + border: solid 2px #656565; + font-size: 16px; + color: #dedede; + height: 47px; + line-height: 45px; + padding-right: 45px; + font-weight: 600; +} +.nice-select.open { + color: #fff; +} +.nice-select .current { + font-size: 15px; +} + +.nice-select:after { + border-bottom: 2px solid #efefef; + border-right: 2px solid #efefef; + height: 7px; + width: 7px; + right: 15px; +} + +.nice-select .list { + background: #111; + width: 100%; +} +.nice-select .list li { + font-size: 14px; +} + +.nice-select .option:hover, +.nice-select .option.focus, +.nice-select .option.selected.focus { + background-color: #323232; +} + +.nice-select:active, +.nice-select.open, +.nice-select:focus, +.nice-select:hover { + border-color: #ff512f; +} + +.nice-select .option.selected { + font-weight: 500; +} + +input, +select, +textarea { + width: 100%; +} + +.form-check-input:checked[type=checkbox] { + border-color: #ff512f; +} + +.btn { + position: relative; + overflow: hidden; + font-size: 16px; + padding: 9px 35px; + display: inline-flex; + align-items: center; + color: #fff; + border-radius: 50px; + height: 50px; + min-height: 50px; + font-weight: 600; +} +@media (max-width: 575px) { + .btn { + font-size: 14px; + padding: 7px 35px; + height: 42px; + min-height: 42px; + } +} +@media (max-width: 360px) { + .btn { + padding: 7px 25px; + } +} +.btn span { + display: inline-flex; + z-index: 1; + line-height: 1; + font-family: "Poppins", "Chakra Petch", sans-serif; +} +.btn:focus { + box-shadow: none; +} +.btn i { + padding-right: 8px; +} +.btn:hover { + color: #fff; + transform: translateY(-1px); +} + +.btn-medium { + font-size: 15px; + padding: 8px 30px; + height: 46px; + min-height: 46px; +} +@media (max-width: 575px) { + .btn-medium { + font-size: 14px; + } +} + +.btn-small { + font-size: 14px; + padding: 6px 25px; + height: 40px; + min-height: 40px; +} +@media (max-width: 360px) { + .btn-small { + font-size: 15px; + height: 36px; + min-height: 36px; + } +} + +.btn-outline, .btn-black { + border: 2px solid rgba(255, 255, 255, 0.7); + padding-top: 9px; + padding-bottom: 9px; +} +.btn-outline::before, .btn-black::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: linear-gradient(97.3deg, #dd2476 0%, #ff512f 100%); + transition: transform 0.5s; + transform-origin: right; + transform: scaleX(0); + z-index: 0; + border-radius: inherit; +} +.btn-outline:hover, .btn-black:hover { + border-color: #dd2476; + background: #ff512f; +} +.btn-outline:hover::before, .btn-black:hover::before { + transform: scaleX(1); + transform-origin: left; + transition: transform 0.5s; +} +.btn-outline i, .btn-black i { + transition: 0.1s; +} +.btn-outline.no-hover::before, .no-hover.btn-black::before { + display: none; +} +.btn-outline.btn-medium, .btn-medium.btn-black { + padding-top: 8px; + padding-bottom: 8px; +} + +.btn-gradient { + background: linear-gradient(97.3deg, #ff512f 0%, #dd2476 100%); +} +.btn-gradient::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: linear-gradient(97.3deg, #dd2476 0%, #ff512f 100%); + transition: transform 0.5s; + transform-origin: right; + transform: scaleX(0); + z-index: 0; + border-radius: inherit; +} +.btn-gradient:hover::before { + transform: scaleX(1); + transform-origin: left; + transition: transform 0.5s; +} + +.btn-prime { + background: #ff512f; +} + +.btn-black { + background: transparent; +} +.btn-black::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: linear-gradient(97.3deg, #dd2476 0%, #ff512f 100%); + transition: transform 0.5s; + transform-origin: right; + transform: scaleX(0); + z-index: 0; + border-radius: inherit; +} +.btn-black:hover::before { + transform: scaleX(1); + transform-origin: left; + transition: transform 0.5s; +} + +.btn-play { + padding: 0; +} +.btn-play:hover { + color: #ff512f; +} +.btn-play span { + text-decoration: underline; +} +.btn-play i { + font-size: 40px; + color: #ff512f; +} +@media (max-width: 575px) { + .btn-play i { + font-size: 35px; + } +} + +.rn-progress-parent { + position: fixed; + right: 30px; + bottom: 30px; + height: 46px; + width: 46px; + cursor: pointer; + display: block; + border-radius: 50px; + box-shadow: inset 0 0 0 2px #0d0d12; + z-index: 10000; + opacity: 0; + visibility: hidden; + transform: translateY(15px); + -webkit-transition: all 200ms linear; + transition: all 200ms linear; +} + +.rn-progress-parent.rn-backto-top-active { + opacity: 1; + visibility: visible; + transform: translateY(0); +} + +.rn-progress-parent::after { + position: absolute; + font-family: "remixicon" !important; + content: "\ea76"; + text-align: center; + line-height: 46px; + font-size: 24px; + color: #ff512f; + left: 0; + top: 0; + height: 46px; + width: 46px; + cursor: pointer; + display: block; + z-index: 2; + -webkit-transition: all 200ms linear; + transition: all 200ms linear; +} + +.rn-progress-parent:hover::after { + color: #ff512f; +} + +.rn-progress-parent::before { + position: absolute; + font-family: "remixicon" !important; + content: "\ea76"; + text-align: center; + line-height: 46px; + font-size: 24px; + opacity: 0; + background: #0d0d12; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + left: 0; + top: 0; + height: 46px; + width: 46px; + cursor: pointer; + display: block; + z-index: 2; + -webkit-transition: all 200ms linear; + transition: all 200ms linear; +} + +.rn-progress-parent:hover::before { + opacity: 1; +} + +.rn-progress-parent svg path { + fill: none; +} + +.rn-progress-parent svg.rn-back-circle path { + stroke: #ff512f; + stroke-width: 4; + box-sizing: border-box; + -webkit-transition: all 200ms linear; + transition: all 200ms linear; +} + +/* -- Chrome hacks -- */ +/* -- Firefox hacks -- */ +@-moz-document url-prefix() {} +/* -- IE hacks -- */ +.ctn-preloader { + align-items: center; + -webkit-align-items: center; + display: flex; + display: -ms-flexbox; + height: 100%; + justify-content: center; + -webkit-justify-content: center; + position: fixed; + left: 0; + top: 0; + width: 100%; + z-index: 999999; + background: #20202d; +} + +.ctn-preloader .animation-preloader { + position: absolute; + z-index: 100; + text-align: center; +} + +.ctn-preloader .animation-preloader .icon { + display: inline-block; + position: relative; + width: 80px; + height: 80px; +} +.ctn-preloader .animation-preloader .icon img { + width: 100%; + border-radius: 50%; +} + +.ctn-preloader .animation-preloader .icon span { + animation: spinner 1.5s infinite linear; + border-radius: 50%; + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; + z-index: 1; +} + +.ctn-preloader .animation-preloader .icon span:after { + content: ""; + position: absolute; + width: 9px; + height: 9px; + top: 12px; + left: 0; + box-shadow: 0 0 10px #dd2476; + border-radius: 50%; + background: -webkit-linear-gradient(#ff512f, #dd2476); +} + +@keyframes spinner { + to { + transform: rotateZ(360deg); + } +} +.slick-dotted.slick-slider { + margin-bottom: 0; +} + +.slick-dots { + display: inline-block !important; + position: static; + z-index: 2; + margin-top: 20px; +} +.slick-dots li button { + font-size: 0; + line-height: 0; + display: block; + width: 7px; + height: 7px; + padding: 5px; + cursor: pointer; + color: transparent; + border: 0; + outline: none; + background: transparent !important; + border-radius: 50%; + border: 2px solid rgba(255, 255, 255, 0.75); +} +.slick-dots li.slick-active button { + background: #ff512f !important; + border-color: #ff512f; +} + +.slick-gutter-15 .slick-list { + margin-left: -15px; + margin-right: -15px; +} +.slick-gutter-15 .slick-slide { + margin-left: 15px; + margin-right: 15px; +} + +.slick-activation-01.slick-gutter-15 .slick-list { + margin-left: 0; + margin-right: 0; +} + +button.slide-arrow { + height: 50px; + width: 50px; + line-height: 48px; + border-radius: 50%; + position: absolute; + z-index: 2; + opacity: 0; + transition: 0.3s; + color: #fff; + background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0.29%, rgba(255, 255, 255, 0.1) 99.71%, rgba(0, 0, 0, 0.5) 99.71%); + backdrop-filter: blur(40px); + border: none; + transform: translateY(-50%) scale(1); + top: 50%; +} +button.slide-arrow::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: linear-gradient(97.3deg, #ff512f 0%, #dd2476 100%); + transition: 0.5s; + z-index: -1; + opacity: 0; + border-radius: inherit; +} +button.slide-arrow:hover::before { + transition: 0.5s; + opacity: 1; +} +button.slide-arrow:hover i { + z-index: 1; +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + button.slide-arrow { + opacity: 1; + } +} +@media only screen and (min-width: 768px) and (max-width: 991px) { + button.slide-arrow { + opacity: 1; + } +} +@media only screen and (max-width: 767px) { + button.slide-arrow { + opacity: 1; + } +} +button.slide-arrow i { + font-size: 22px; + color: #fff; +} + +button.slide-arrow.slide-arrow { + top: -85px !important; + opacity: 1; + border-radius: 50%; +} + +button.slide-arrow.prev-arrow { + right: 65px !important; +} + +button.slide-arrow.next-arrow { + right: 0 !important; +} + +button.slide-arrow:hover.slide-arrow i { + color: #fff !important; +} + +.slick-dots li button:before { + font-size: 0; +} + +.slick-arrow-top button.slide-arrow.prev-arrow { + right: 19% !important; +} +@media (max-width: 1499px) { + .slick-arrow-top button.slide-arrow.prev-arrow { + right: 14% !important; + } +} +@media (max-width: 1199px) { + .slick-arrow-top button.slide-arrow.prev-arrow { + right: 9% !important; + } +} +.slick-arrow-top button.slide-arrow.next-arrow { + right: 15.7% !important; +} +@media (max-width: 1919px) { + .slick-arrow-top button.slide-arrow.next-arrow { + right: 14.7% !important; + } +} +@media (max-width: 1499px) { + .slick-arrow-top button.slide-arrow.next-arrow { + right: 9% !important; + } +} + +.slick-arrow-between { + position: relative; +} + +.slick-arrow-between button.slide-arrow.prev-arrow { + top: 50% !important; + left: -20px !important; +} + +.slick-arrow-between button.slide-arrow.next-arrow { + top: 50% !important; + right: -20px !important; +} + +.slick-arrow-none button.slide-arrow { + display: none !important; +} + +.rotate-360 { + animation: loading 20s linear infinite; +} +@keyframes loading { + 0% { + transform: rotate(0); + } + 100% { + transform: rotate(360deg); + } +} + +@keyframes jumpTwo { + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + 40% { + -webkit-transform: translate3d(0, 20px, 0); + transform: translate3d(0, 20px, 0); + } + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.jump { + animation: jumpTwo 8s linear infinite; +} +@keyframes jumpTwo { + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + 40% { + -webkit-transform: translate3d(0, 20px, 0); + transform: translate3d(0, 20px, 0); + } + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.section-title { + margin-bottom: 60px; +} +@media (max-width: 575px) { + .section-title { + margin-bottom: 50px; + } +} +.section-title .subtitle { + color: #ff512f; + font-weight: 500; + font-size: 20px; + text-decoration: underline; + letter-spacing: 0.2em; + display: inline-block; + margin-bottom: 10px; + font-family: "Inter", sans-serif; +} + +.theme-switcher-label { + cursor: pointer; + position: relative; + width: 46px; + height: 46px; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + background-color: rgba(255, 255, 255, 0.2); +} +@media (max-width: 575px) { + .theme-switcher-label { + width: 35px; + height: 35px; + } +} +.theme-switcher-label .switch-handle { + border-radius: 50%; + position: relative; + display: flex; + align-items: center; + justify-content: center; + transition: all 0.3s ease-in-out; +} +.theme-switcher-label .switch-handle i { + position: absolute; + font-size: 22px; + transition: 0.3s; +} +.theme-switcher-label .theme-switcher { + display: none; +} +.theme-switcher-label .light-text { + color: #fff; +} +.theme-switcher-label .dark-text { + color: #000; +} +.theme-switcher-label.active { + background-color: rgba(0, 0, 0, 0.1); +} +.theme-switcher-label.active .light-text { + visibility: hidden; + opacity: 0; +} +.theme-switcher-label.active .dark-text { + visibility: visible; + opacity: 1; +} +.theme-switcher-label .dark-text { + visibility: hidden; + opacity: 0; +} + +.mainmenu-nav .mainmenu { + display: flex; + list-style: none; + padding: 0; + margin: 0 0 0 20px; + justify-content: flex-start; + flex-wrap: wrap; +} +@media (min-width: 1200px) and (max-width: 1280px) { + .mainmenu-nav .mainmenu { + margin: 0; + } +} + +.mainmenu-nav .mainmenu li { + position: relative; + margin: 0 10px; +} +@media (min-width: 1200px) and (max-width: 1280px) { + .mainmenu-nav .mainmenu li { + margin: 0 7px; + } +} + +.mainmenu-nav .mainmenu li a { + color: rgba(255, 255, 255, 0.9); + font-weight: 500; + padding: 28px 12px; + font-size: 18px; + display: block; + border-radius: 3px; + font-family: "Poppins", "Chakra Petch", sans-serif; +} +@media (min-width: 1200px) and (max-width: 1280px) { + .mainmenu-nav .mainmenu li a { + font-size: 15px; + } +} +.mainmenu-nav .mainmenu li a.active { + color: #ff512f; +} + +@media only screen and (min-width: 1200px) and (max-width: 1599px) { + .mainmenu-nav .mainmenu li a { + padding: 28px 6px; + } +} +.mainmenu-nav .mainmenu li .submenu { + min-width: 230px; + height: auto; + position: absolute; + z-index: 99; + top: 90%; + left: 0; + z-index: 90; + opacity: 0; + visibility: hidden; + text-align: left; + padding: 12px 0; + transition: 0.3s; + background-color: #111; + border-radius: 10px; + border: 1px solid #333; +} +.mainmenu-nav .mainmenu li .submenu::after { + content: ""; + position: absolute; + left: 15px; + top: -8px; + width: 15px; + height: 15px; + background: #111; + transform: rotate(45deg); + z-index: -1; +} + +.mainmenu-nav .mainmenu li .submenu li { + margin: 0; +} +.mainmenu-nav .mainmenu li .submenu li a { + font-weight: 600; + padding: 6px 14px; + font-size: 15px; + color: #dadada; + margin: 0 10px; + border-radius: 4px; + transition: 0.3s; + display: inline-flex; + align-items: center; + justify-content: space-between; +} +.mainmenu-nav .mainmenu li .submenu li a.active { + color: #ff512f; +} + +.mainmenu-nav .mainmenu li .submenu li a svg, +.mainmenu-nav .mainmenu li .submenu li a i { + stroke-width: 2px; + width: 22px; + height: auto; + background: transparent; + padding: 2px; + border-radius: 2px; + transition: 0.3s; + width: 22px; + left: -10px; + position: relative; + opacity: 0; + margin: 0 -3px; +} + +.mainmenu-nav .mainmenu li .submenu li a:hover { + color: #ff512f; + margin-left: 5px; +} + +.mainmenu-nav .mainmenu li .submenu li a:hover svg, +.mainmenu-nav .mainmenu li .submenu li a:hover i { + opacity: 1; + left: 0; +} + +.mainmenu-nav .mainmenu li:hover .submenu { + opacity: 1; + visibility: visible; + top: 100%; +} + +.has-dropdown > a { + position: relative; +} + +.has-dropdown > a::after { + content: "\ea4e"; + position: absolute; + top: 50%; + font-family: "remixicon" !important; + right: -12px; + font-size: 22px; + transform: translateY(-50%); +} + +@media only screen and (min-width: 1200px) and (max-width: 1599px) { + .has-dropdown > a::after { + right: -11px; + } +} +.rn-header.header--fixed.position-absolute { + background: #00000042; + backdrop-filter: blur(1px); +} + +.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.nav-item .submenu { + background: #00000042 !important; +} + +.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.nav-item .submenu li a { + color: #c7c7cf; +} + +.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.nav-item .submenu li a svg, +.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.nav-item .submenu li a i { + color: #c7c7cf; +} + +.rn-header.header--fixed.sticky { + background: transparent; + backdrop-filter: blur(15px); +} + +span.rn-badge-card { + margin-left: 7px; + padding: 1px 7px; + font-weight: 400; + position: relative; + z-index: 2; + font-size: 14px; +} + +span.rn-badge-card::before { + content: ""; + width: 100%; + height: 100%; + left: 0; + top: 0; + position: absolute; + background: linear-gradient(95deg, #000000 15%, #0074b9 45%, #0400ff 75%, #2a1b95) 95%/200% 100%; + z-index: -1; + border-radius: 100px; + opacity: 0.5; +} + +.popup-mobile-menu { + z-index: 9999; + position: fixed; + content: ""; + width: 100%; + height: 100%; + position: fixed; + top: 0; + bottom: 0; + left: 0; + right: 0; + background-color: rgba(0, 0, 0, 0.8); + visibility: hidden; + opacity: 0; + transition: opacity 0.5s ease-out; +} + +.popup-mobile-menu .inner { + width: 320px; + z-index: 999; + position: absolute; + background-color: #212e48; + height: 100%; + height: 100vh; + display: flex; + flex-direction: column; + opacity: 0; + left: -150px; + transition: all 0.5s ease-out; +} + +.popup-mobile-menu .inner .header-top { + display: flex; + border-bottom: 1px solid #444; + align-items: center; + justify-content: space-between; + padding: 15px 20px; +} + +.popup-mobile-menu .inner .header-top .logo a img { + max-height: 36px; +} + +.popup-mobile-menu .inner .header-top .close-menu .close-button { + background: linear-gradient(97.3deg, #ff512f 0%, #dd2476 100%); + border: 1px solid #dd2476; + color: #fff; + width: 38px; + height: 38px; + font-size: 21px; + display: flex; + align-items: center; + justify-content: center; + border-radius: 4px; +} + +.popup-mobile-menu.active { + visibility: visible; + opacity: 1; +} + +.popup-mobile-menu.active .inner { + opacity: 1; + left: 0; + overflow-y: auto; +} + +.popup-mobile-menu .mainmenu { + list-style: none; + padding: 0; + margin: 0; + padding: 15px 20px; +} + +.popup-mobile-menu .mainmenu li { + margin: 0; +} + +.popup-mobile-menu .mainmenu li a { + padding: 10px 0; + display: block; + font-size: 18px; + font-weight: 400; + color: #ddd; + display: flex; + justify-content: space-between; + font-family: "Poppins", "Chakra Petch", sans-serif; +} + +.popup-mobile-menu .mainmenu li a svg { + width: 19px; + height: auto; +} + +.popup-mobile-menu .mainmenu li a.active { + color: #ff512f !important; +} + +.popup-mobile-menu .mainmenu .has-dropdown .submenu { + padding: 0; + max-width: 100%; + list-style: none; + padding-left: 14px; + display: none; + font-size: 16px; +} + +.popup-mobile-menu .mainmenu .has-dropdown .submenu li a { + font-size: 16px; + padding: 7px 0; +} + +.popup-mobile-menu .mainmenu .has-dropdown .submenu li a.active { + color: #ff512f !important; +} + +.popup-mobile-menu .mainmenu .rn-megamenu { + padding: 0; + max-width: 100%; + list-style: none; + padding-left: 14px; + display: none; +} + +.popup-mobile-menu .mainmenu .mega-menu-item { + list-style: none; + padding: 0; + margin: 0; + padding-left: 0; +} + +.popup-mobile-menu .mainmenu .mega-menu-item li a { + font-size: 15px; +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .popup-mobile-menu .mainmenu .single-mega-item { + width: 100%; + } +} +.popup-mobile-menu .mainmenu .single-mega-item:last-child .mega-menu-item li:last-child { + border-bottom-color: transparent; +} + +.popup-mobile-menu .has-dropdown > a::after { + right: 0; +} + +.hamburger-button { + background: transparent; + color: #fff; + border: none; + font-size: 24px; +} + +.mainmenu-nav .mainmenu li.has-menu-child-item > a { + padding-right: 12px; +} + +.dropdown-menu { + border-radius: 10px; +} +@media (max-width: 575px) { + .dropdown-menu { + inset: 0px 0px auto auto !important; + margin: 0px !important; + transform: translate3d(-35px, 0px, 0px) !important; + } +} + +@media (min-width: 1920px) { + .fluid-header { + padding: 15px 172px; + } +} +@media (max-width: 1919px) { + .fluid-header { + padding: 15px 118px; + } +} +@media (max-width: 1499px) { + .fluid-header { + padding: 20px 15px; + } +} + +.header-fixed { + background: transparent; + position: fixed; + width: 100%; + left: 0; + top: 0; + z-index: 9999; + transition: 0.3s; + border-bottom: 2px solid transparent; +} +.header-fixed.sticky { + background: #000; + border-color: #1a1a1a; +} + +.header-right-inner { + display: flex; + align-items: center; + margin-bottom: 0; +} +.header-right-inner .btn-gradient i { + color: #fff; +} +.header-right-inner .avatar-info > a { + width: 46px; + height: 46px; + border-radius: 50%; + overflow: hidden; + display: inline-flex; +} +.header-right-inner .avatar-info > a img { + width: 100%; +} +@media (max-width: 575px) { + .header-right-inner .avatar-info > a { + width: 35px; + height: 35px; + } +} +.header-right-inner > li { + position: relative; + margin-right: 15px; + display: flex; +} +@media (max-width: 575px) { + .header-right-inner > li { + margin-right: 10px; + } +} +@media (max-width: 360px) { + .header-right-inner > li { + margin-right: 5px; + } +} +.header-right-inner > li .list-group.submenu { + width: 320px; + padding: 0; +} +.header-right-inner > li .list-group.submenu .list-group-item { + position: relative; + display: block; + padding: 20px 24px; + color: #fff; + text-decoration: none; + background-color: #09080d; +} +.header-right-inner > li .list-group.submenu .list-group-item.active, .header-right-inner > li .list-group.submenu .list-group-item:hover { + border-color: #1a1a1a; + background-color: #1a1a1a; +} +.header-right-inner > li .list-group.submenu .list-group-item:not(:last-child) { + border-bottom: 1px solid rgba(255, 255, 255, 0.125); +} +.header-right-inner > li .list-group.submenu .list-group-item h5 { + font-size: 16px; +} +.header-right-inner > li .list-group.submenu .list-group-item p { + font-size: 12px; + line-height: 18px; + margin-bottom: 0; +} +.header-right-inner > li .submenu { + min-width: 230px; + height: auto; + position: absolute; + z-index: 99; + top: 90%; + right: 0; + z-index: 90; + opacity: 0; + visibility: hidden; + text-align: left; + padding: 12px 0; + transition: 0.3s; + background-color: #111; + border-radius: 10px; + border: 1px solid #333; +} +.header-right-inner > li .submenu li a { + font-weight: 500; + padding: 8px 14px; + font-size: 15px; + color: #dadada; + margin: 0 10px; + border-radius: 4px; + transition: 0.3s; + display: inline-flex; + align-items: center; +} +.header-right-inner > li .submenu li a.active, .header-right-inner > li .submenu li a:hover { + color: #ff512f; +} +.header-right-inner > li .submenu li a:hover { + padding-left: 5px; +} +.header-right-inner > li .submenu li a i { + padding-right: 8px; +} +.header-right-inner > li:last-child { + margin-right: 0; +} +.header-right-inner > li:hover .submenu { + opacity: 1; + visibility: visible; + top: 100%; +} +@media (max-width: 575px) { + .header-right-inner .wallet-button span { + font-size: 0; + } + .header-right-inner .wallet-button .btn { + padding: 0; + width: 35px; + height: 35px; + min-height: auto; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50%; + } + .header-right-inner .wallet-button .btn i { + padding: 0; + font-size: 18px; + } +} +@media (max-width: 575px) { + .header-right-inner .wallet-button .btn { + width: 35px; + height: 35px; + } +} + +.new { + color: #fff; + margin-left: 5px; + font-size: 14px; +} + +.notification-bar > a { + width: 46px; + height: 46px; + border: 2px solid rgba(255, 255, 255, 0.75); + display: flex; + align-items: center; + justify-content: center; + border-radius: 50%; + position: relative; +} +.notification-bar > a .ni-badge { + font-size: 14px; + font-weight: 500; + background: #ff512f; + color: #fff; + position: absolute; + right: -15px; + top: 0; + z-index: 3; + min-width: 30px; + line-height: 20px; + display: flex; + align-items: center; + justify-content: center; + border-radius: 10px; +} +.notification-bar > a i { + font-size: 20px; +} + +.search-bar { + border: 2px solid #c1c1c1; + border-radius: 10px; + position: relative; + max-width: 260px; +} +.search-bar input { + width: 100%; + background: transparent; + border: none; + padding: 0 15px; + font-size: 15px; + color: rgba(255, 255, 255, 0.75); + height: 42px; + padding-left: 55px; + font-weight: 500; + color: #fff; +} +.search-bar .search-btn { + position: absolute; + left: 10px; + top: 5px; + font-size: 20px; + color: #efefef; + background: transparent; + width: 32px; + height: 32px; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + cursor: pointer; + border: none; +} +.search-bar:hover i { + background: transparent; +} + +@media (max-width: 991px) { + .large-mobile-blog-search { + position: absolute; + top: 100%; + width: 300px; + right: 0; + margin-bottom: 0; + z-index: 3; + opacity: 0; + visibility: hidden; + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + } + .large-mobile-blog-search.active { + opacity: 1; + visibility: visible; + } +} +@media (max-width: 575px) { + .large-mobile-blog-search { + right: auto; + left: -122px; + top: 45px; + } +} +@media (max-width: 360px) { + .large-mobile-blog-search { + width: 290px; + } +} +.large-mobile-blog-search input { + background: #000; +} + +.search-mobile-icon button { + background: transparent; + color: #fff; + font-size: 22px; + border: none; + cursor: pointer; +} + +.wallet-button .btn { + padding-left: 15px; + padding-right: 15px; +} + +.logo-dark { + display: none; +} + +.bg-1 { + background-image: url(.../../img/bg/bg-1.jpg); +} + +.bg-2 { + background-image: url(.../../img/bg/bg-3.jpg); +} + +.bg-3 { + background-image: url(.../../img/bg/bg-3.jpg); +} + +.bg-4 { + background-image: url(.../../img/bg/bg-4.jpg); +} + +.bg-5 { + background-image: url(.../../img/bg/bg-5.jpg); +} + +.bg-6 { + background-image: url(.../../img/bg/bg-6.jpg); +} + +.bg-7 { + background-image: url(.../../img/bg/bg-7.jpg); +} + +.bg-image { + background-repeat: no-repeat; + background-position: center center; + background-size: cover; +} + +.hero-banner-style .banner-content { + position: relative; + z-index: 1; +} +.hero-banner-style .banner-content .title { + color: #fff; + font-family: "Poppins", "Chakra Petch", sans-serif; +} +.hero-banner-style .banner-content .title span { + color: #14141f; + background: #fff; + background-size: 100% 100%; + -webkit-background-clip: text; + -webkit-text-stroke: 3px transparent; +} +@media (max-width: 1499px) { + .hero-banner-style .banner-content .title { + font-size: 70px; + } +} +@media (max-width: 1199px) { + .hero-banner-style .banner-content .title { + font-size: 55px; + } +} +@media (max-width: 575px) { + .hero-banner-style .banner-content .title { + font-size: 35px; + margin-bottom: 20px !important; + } +} +.hero-banner-style .banner-content p { + font-size: 19px; + line-height: 30px; +} +@media (max-width: 575px) { + .hero-banner-style .banner-content p { + font-size: 16px; + } +} +.hero-banner-style .hero-banner_inner { + display: flex; + align-items: center; + min-height: 100vh; + padding-top: 50px; +} +@media (max-width: 1499px) { + .hero-banner-style .hero-banner_inner { + padding: 180px 0 170px; + min-height: auto; + } +} +@media (max-width: 1199px) { + .hero-banner-style .hero-banner_inner { + min-height: auto; + } +} +@media (max-width: 575px) { + .hero-banner-style .hero-banner_inner { + padding: 90px 0; + } +} +@media (max-width: 991px) { + .hero-banner-style .col-xxl-8 { + order: 2; + } +} +@media (max-width: 991px) { + .hero-banner-style .col-xxl-4 { + order: 1; + margin-bottom: 80px; + } +} +@media (max-width: 575px) { + .hero-banner-style { + overflow-x: hidden; + } +} +.hero-banner-style.hero-banner-style-one .banner-content .title { + font-family: "Poppins", "Chakra Petch", sans-serif; + font-weight: 700; +} + +.group-btn { + margin-left: -7px; + margin-right: -7px; +} +@media (max-width: 575px) { + .group-btn { + margin-left: -5px; + margin-right: -5px; + } +} +.group-btn a { + margin: 0 7px; +} +@media (max-width: 575px) { + .group-btn a { + margin: 0 5px; + } +} +@media (max-width: 575px) { + .group-btn.mt-8 { + margin-top: 30px !important; + } +} + +.shape { + position: absolute; +} +@media (max-width: 575px) { + .shape { + display: none; + } +} + +.shape-2 { + right: 22%; + bottom: 5%; +} + +.shape-3 { + top: -28%; + left: 33%; +} + +.slider-wrapper { + position: relative; +} + +@media (max-width: 1919px) { + .top-section-gap { + padding-top: 30px; + } +} + +.hero-banner-style-2 .banner-content { + z-index: 1; +} +.hero-banner-style-2 .banner-content .shape-4 { + top: 88px; + left: -21px; + max-width: 185px; + z-index: -1; +} +.hero-banner-style-2 .banner-content .title { + font-weight: 500; +} +@media (max-width: 1199px) { + .hero-banner-style-2 .banner-content .title br, +.hero-banner-style-2 .banner-content .title .shape { + display: none; + } +} +.hero-banner-style-2 .shape-7 { + top: 100px; + right: 0; +} +.hero-banner-style-2 .thumb-wrapper { + position: relative; +} +.hero-banner-style-2 .thumb-wrapper .large { + border-radius: 185px; +} +.hero-banner-style-2 .thumb-wrapper .shape-5 { + bottom: 0; + left: 0; +} +.hero-banner-style-2 .thumb-wrapper .shape-6 { + top: 0; + right: 0; +} + +.hero-banner-style.hero-banner-style-6 .title { + font-family: "Poppins", "Chakra Petch", sans-serif; + font-weight: 700; +} +.hero-banner-style.hero-banner-style-6 .banner-content p { + color: rgba(255, 255, 255, 0.8); + padding: 0 13%; +} +@media (max-width: 991px) { + .hero-banner-style.hero-banner-style-6 .banner-content p { + padding: 0; + } +} +.hero-banner-style.hero-banner-style-6 .banner-content .color_primary { + background: -webkit-linear-gradient(#ff512f, #dd2476); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + -webkit-text-stroke: 0; +} +.hero-banner-style.hero-banner-style-3 .title { + font-weight: 600; +} +.hero-banner-style.hero-banner-style-5 .title, .hero-banner-style.hero-banner-style-6 .title { + line-height: 85px; +} +@media (max-width: 1919px) { + .hero-banner-style.hero-banner-style-5 .title, .hero-banner-style.hero-banner-style-6 .title { + font-size: 65px; + } +} +@media (max-width: 1199px) { + .hero-banner-style.hero-banner-style-5 .title, .hero-banner-style.hero-banner-style-6 .title { + font-size: 55px; + line-height: 1.5; + } +} +@media (max-width: 575px) { + .hero-banner-style.hero-banner-style-5 .title, .hero-banner-style.hero-banner-style-6 .title { + font-size: 35px; + } +} +@media (max-width: 575px) { + .hero-banner-style.hero-banner-style-5 .hero-banner_inner, .hero-banner-style.hero-banner-style-6 .hero-banner_inner { + padding-top: 25px; + } +} +.hero-banner-style.hero-banner-style-5 .banner-content p, .hero-banner-style.hero-banner-style-6 .banner-content p { + padding: 0; +} +.hero-banner-style.hero-banner-style-5 .sub-title, .hero-banner-style.hero-banner-style-6 .sub-title { + font-size: 60px; + font-weight: 200; + display: inline-block; +} +.hero-banner-style.hero-banner-style-6 .title { + line-height: 90px; +} +@media (max-width: 1919px) { + .hero-banner-style.hero-banner-style-6 .title { + line-height: 90px; + } +} +@media (max-width: 1199px) { + .hero-banner-style.hero-banner-style-6 .title { + font-size: 55px; + line-height: 1.5; + } +} +@media (max-width: 575px) { + .hero-banner-style.hero-banner-style-6 .title { + font-size: 35px; + line-height: 1.3; + } +} +.hero-banner-style.hero-banner-style-6 .sub-title { + font-size: 45px; +} + +.hero-banner-style-4 { + padding: 0 8%; +} +@media (max-width: 1199px) { + .hero-banner-style-4 { + padding: 0 15px; + } +} +@media (max-width: 575px) { + .hero-banner-style-4 { + padding: 0; + } +} +.hero-banner-style-4 .slick-list { + padding-top: 60px; +} +.hero-banner-style-4 .slick-current { + transition: transform 0.3s !important; +} +.hero-banner-style-4 .banner-content { + padding-right: 20px; +} +@media (max-width: 1919px) { + .hero-banner-style-4 .banner-content .title { + font-size: 60px; + } +} +@media (max-width: 575px) { + .hero-banner-style-4 .banner-content .title { + font-size: 35px; + } +} +@media (max-width: 575px) { + .hero-banner-style-4 .banner-content { + padding-right: 0; + } +} +.hero-banner-style-4 .banner-content .color_primary { + background: -webkit-linear-gradient(#ff512f, #dd2476); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + -webkit-text-stroke: 0; +} +@media (max-width: 1919px) { + .hero-banner-style-4 { + padding-top: 30px; + } + .hero-banner-style-4 .slick-list { + padding-top: 0; + } + .hero-banner-style-4 .slick-current.slick-active + .slick-active { + margin-top: 0 !important; + } + .hero-banner-style-4 .col-xl-7, +.hero-banner-style-4 .col-xl-5 { + width: 50%; + } +} +@media (max-width: 1199px) { + .hero-banner-style-4 .col-xl-7 { + width: 60%; + } + .hero-banner-style-4 .col-xl-5 { + width: 40%; + } +} +@media (max-width: 1199px) { + .hero-banner-style-4 .col-xl-7, +.hero-banner-style-4 .col-xl-5 { + width: 100%; + } + .hero-banner-style-4 .counter-wrapper-style-two { + margin-left: -20px; + margin-right: -20px; + } + .hero-banner-style-4 .counter-wrapper-style-two .counter-style-1 { + padding: 0 20px; + } + .hero-banner-style-4 .counter-style-1 .number { + font-size: 28px; + } + .hero-banner-style-4 .counter-style-1 .counter-title { + font-size: 16px; + } +} + +.hero-banner-style-6 .top-0 { + top: -60px !important; + z-index: -1; +} +.hero-banner-style-6 .left-0 { + left: -35px; +} +@media (max-width: 767px) { + .hero-banner-style-6.top-section-gap { + padding-top: 105px; + } +} + +.hero-banner-style-2.hero-banner-style .banner-content .title span.color_primary { + background: -webkit-linear-gradient(#ff512f, #dd2476); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + -webkit-text-stroke: 0; +} + +.trendy-banner .hero-banner_inner { + padding: 150px 0; +} +@media (max-width: 1700px) { + .trendy-banner .hero-banner_inner { + min-height: auto; + padding: 100px 0; + } +} +@media (max-width: 575px) { + .trendy-banner .hero-banner_inner { + padding: 50px 0 65px; + } +} + +.thumb-wrapper { + position: relative; +} +.thumb-wrapper .thumb { + position: relative; + overflow: hidden; + border-radius: 20px; +} +.thumb-wrapper .thumb .title { + font-size: 16px; + line-height: 24px; +} +.thumb-wrapper .thumb .title a { + color: #fff; +} +.thumb-wrapper .thumb .title a:hover { + color: #ff512f; +} +.thumb-wrapper .thumb .btn { + position: relative; + left: 20px; + pointer-events: none; +} +.thumb-wrapper .over-content { + position: absolute; + left: 50%; + bottom: 10px; + background: #000; + transform: translateX(-50%); + width: 350px; + border-radius: 12px; + padding: 5px 0 5px 20px; +} +@media (max-width: 991px) { + .thumb-wrapper .over-content { + width: 260px; + } +} +.thumb-wrapper .countdown { + transform: none !important; +} +.thumb-wrapper .reaction-btn i { + display: flex; + align-items: center; + justify-content: center; + width: 38px; + height: 38px; + background: #fff; + border-radius: 50%; + padding: 0; +} +.thumb-wrapper:hover img { + transform: scale(1.2); + opacity: 0.85; +} + +.explore-style-one { + background: #20202d; + padding: 15px; + border-radius: 10px; + transition: 0.3s; + transition: 0.3s; +} +.explore-style-one .thumb { + position: relative; + overflow: hidden; + display: block; + border-radius: 10px; +} + +.explore-style-one .thumb img { + display: block; + width: 100%; + height: auto; + object-fit: cover; + transition: 0.5s; +} +.explore-style-one.selected-item { + background: #686349; +} +.explore-style-one .content .title { + font-size: 20px; + padding-right: 10px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} +.explore-style-one .content .title a { + color: #fff; +} +.explore-style-one .content .title a:hover { + color: #ff512f; +} +.explore-style-one .profile-share a { + position: relative; + z-index: 1; + display: block; +} +.explore-style-one .profile-share a:nth-child(2), .explore-style-one .profile-share a:nth-child(3) { + margin-left: -15px; +} +.explore-style-one .profile-share a.more-author-text { + padding-left: 7px; +} +.explore-style-one .profile-share a:hover:not(.more-author-text) { + z-index: 2; + transform: translateY(-5px); +} +.explore-style-one .profile-share a:not(.more-author-text) { + width: 30px; + height: 30px; + overflow: hidden; + border-radius: 50%; +} +.explore-style-one .product-owner .bid-owner { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + padding-right: 10px; + flex-basis: 174px; +} +.explore-style-one .product-owner strong a { + color: #fff; + font-weight: 500; +} +.explore-style-one .product-owner strong a:hover { + color: #ff512f; +} +.explore-style-one .product-owner .biding-price { + color: #fff; + font-weight: 600; +} +.explore-style-one .product-owner .biding-price i { + color: #ff512f; + padding-right: 5px; +} +.explore-style-one .btn-small { + padding: 6px 15px; +} +.explore-style-one .history { + font-weight: 600; + font-size: 14px; +} +.explore-style-one .history i { + font-size: 20px; + padding-right: 5px; + font-weight: 500; +} +.explore-style-one .action-wrapper { + border-top: 1px dashed #515151; +} +.explore-style-one:hover .thumb img { + transform: scale(1.21); +} + +.reaction-btn { + border: none; + font-size: 14px; + font-weight: 500; + position: absolute; + top: 15px; + right: 15px; + color: #fff; + background: #343444; + border-radius: 6px; + padding: 5px 6px; + min-width: 45px; + height: 24px; + display: flex; + align-items: center; + justify-content: space-between; +} +.reaction-btn i { + color: #ff512f; + font-size: 20px; + padding-right: 5px; +} +.reaction-btn.left { + right: auto; + left: 15px; +} + +.more-dropdown { + color: #fff; + cursor: pointer; + padding: 0 5px; + text-align: right; + position: relative; + left: 5px; + font-size: 20px; +} +.more-dropdown i { + color: rgba(255, 255, 255, 0.75); + transition: 0.3s; +} +.more-dropdown i:hover { + color: #fff; +} + +.countdown { + width: 190px; + position: absolute; + display: flex; + justify-content: center; + bottom: 0; + left: 50%; + transform: translate(-50%); + bottom: 12px; + cursor: pointer; + padding: 5px 8px; + border-radius: 5px; + z-index: 2; +} +.countdown.btn:hover { + transform: translateY(0); + transform: translate(-50%); +} +.countdown .countdown-value { + font-size: 16px; + font-weight: 400; + color: #fff; +} +.countdown .countdown-heading { + padding: 0 10px; +} +.countdown .seconds .countdown-heading { + padding: 0; +} +.countdown.btn-gradient { + cursor: default; +} +.countdown.btn-gradient::before { + display: none; +} + +.explore-style-two { + background-color: #000000; + background-image: linear-gradient(147deg, #000000 0%, #2c3e50 74%); + padding: 30px; + border-radius: 35px; + position: relative; +} +.explore-style-two .thumb img { + border-radius: 30px; + width: 100%; +} +.explore-style-two .slick-list { + border-radius: 30px; +} +.explore-style-two .explore-content { + background: #ffffff; + padding: 17px; + backdrop-filter: blur(25px); + border-radius: 10px; + display: flex; + align-items: center; + justify-content: space-between; + max-width: 301px; + position: absolute; + bottom: 60px; + right: -35px; + animation: jumpTwo 5.5s linear infinite; +} +@media (max-width: 1199px) { + .explore-style-two .explore-content { + right: 0; + } +} +@media (max-width: 991px) { + .explore-style-two .explore-content { + right: auto; + left: 50%; + transform: translate(-50%); + width: 95%; + max-width: 420px; + bottom: 20px; + animation: none; + } +} +@media (max-width: 575px) { + .explore-style-two .explore-content { + width: 83%; + padding: 10px; + bottom: 30px; + } +} +@media (max-width: 360px) { + .explore-style-two .explore-content { + padding: 10px; + } + .explore-style-two .explore-content .btn { + font-size: 12px; + } +} +.explore-style-two .explore-content .btn { + padding-left: 18px; + padding-right: 18px; +} +@media (max-width: 360px) { + .explore-style-two .explore-content .btn { + padding-left: 8px; + padding-right: 8px; + } +} +.explore-style-two .explore-content .price { + padding-right: 28px; +} +.explore-style-two .explore-content .price span { + font-size: 12px; + line-height: 18px; + font-weight: 500; + margin-bottom: 5px; + color: #a1a1a1; + display: inline-block; +} +.explore-style-two .explore-content .price h6 { + font-size: 16px; + font-weight: 500; + line-height: 23px; + font-family: "Poppins", "Chakra Petch", sans-serif; + margin: 0; + color: #343444; +} + +@media (max-width: 575px) { + .explore-style-two { + padding: 15px; + } +} +@media (max-width: 360px) { + .explore-style-two { + padding: 10px; + } + .explore-style-two .explore-content { + width: 85%; + bottom: 22px; + } +} + +.sticker { + font-size: 14px; + background: #ff512f; + color: #fff; + padding: 4px 10px; + border-radius: 4px; + position: absolute; + top: 50px; + left: 50px; +} + +.explore-style-three { + margin-left: -20px; + margin-right: -20px; +} +.explore-style-three .thumb-wrapper, +.explore-style-three .counter-wrapper { + padding: 0 20px; +} +@media (max-width: 1199px) { + .explore-style-three { + justify-content: center; + margin-bottom: 40px; + } +} +@media (max-width: 991px) { + .explore-style-three { + flex-wrap: wrap; + } + .explore-style-three .shape { + display: block; + max-width: 100%; + } + .explore-style-three .shape.shape-6 { + right: 20px; + } + .explore-style-three .shape.shape-5 { + bottom: 10px; + left: 22px; + } + .explore-style-three .counter-wrapper { + display: flex; + } + .explore-style-three .counter-style-1 { + margin: 15px; + } + .explore-style-three .counter-style-1 .counter-title { + font-size: 20px; + } + .explore-style-three .counter-style-1 .count-kilo { + font-size: 20px; + } + .explore-style-three .counter-style-1 .number { + font-size: 35px; + } +} + +@media (max-width: 991px) { + .filter-style-one { + flex-wrap: wrap; + margin: -10px; + } +} +.filter-style-one .filter-left-cate { + flex: 0 0 50%; + max-width: 50%; + margin: -10px; +} +@media (max-width: 1199px) { + .filter-style-one .filter-left-cate { + flex: 0 0 58%; + max-width: 58%; + } +} +@media (max-width: 991px) { + .filter-style-one .filter-left-cate { + flex: 0 0 100%; + max-width: 100%; + margin: 0; + flex-wrap: wrap; + } +} +.filter-style-one .filter-right-cate { + flex: 0 0 35%; + max-width: 35%; + margin: -10px; +} +@media (max-width: 1199px) { + .filter-style-one .filter-right-cate { + flex: 0 0 42%; + max-width: 42%; + } +} +@media (max-width: 991px) { + .filter-style-one .filter-right-cate { + flex: 0 0 100%; + max-width: 100%; + margin: 0; + } +} +@media (max-width: 575px) { + .filter-style-one .filter-right-cate { + flex-wrap: wrap; + } +} + +.filter-left-cate .nice-select { + width: 100%; +} +.filter-left-cate .filter-select-option { + flex-basis: 33.333333%; + padding: 10px; +} +@media (max-width: 991px) { + .filter-left-cate .filter-select-option { + flex-basis: 100%; + } +} + +.filter-right-cate .nice-select { + width: 100%; +} +.filter-right-cate .filter-select-option { + flex-basis: 50%; + padding: 10px; +} +@media (max-width: 575px) { + .filter-right-cate .filter-select-option { + flex-basis: 100%; + } +} + +.slider-activation-banner-3 .slick-dots { + position: absolute; + bottom: -65px; +} + +.top-seller-style-one { + background: #20202d; + padding: 25px 20px; + border-radius: 20px; + text-align: center; +} +.top-seller-style-one h4 { + font-size: 80%; +} +@media (max-width: 575px) { + .top-seller-style-one { + padding: 20px 10px; + } +} +.top-seller-style-one .thumb { + display: block; + position: relative; + width: 70px; + height: 70px; + border-radius: 50px; + margin: 0 auto; + transition: 0.3s; +} +.top-seller-style-one .thumb img { + border-radius: 50%; + width: 100%; +} +.top-seller-style-one .title { + line-height: 1; +} +.top-seller-style-one .title a { + color: #fff; +} +@media (max-width: 360px) { + .top-seller-style-one .title { + font-size: 14px; + padding-bottom: 0 !important; + } +} +.top-seller-style-one .price { + font-weight: 400; + color: rgba(255, 255, 255, 0.75); + line-height: 27px; +} +.top-seller-style-one:hover .thumb { + transform: scale(1.1); +} + +@media (max-width: 575px) { + .top-seller-activation-1.slick-gutter-15 .slick-list { + margin-left: -6px; + margin-right: -6px; + } + .top-seller-activation-1.slick-gutter-15 .slick-slide { + margin-left: 6px; + margin-right: 6px; + } +} + +.ri-check-line { + width: 20px; + height: 20px; + display: flex; + align-items: center; + justify-content: center; + background: #ff512f; + color: #fff; + border-radius: 50%; + position: absolute; + right: 0; + bottom: 0; +} + +.seller-group-vertical .top-seller-style-one { + margin-bottom: 30px; +} +@media (max-width: 575px) { + .seller-group-vertical .top-seller-style-one { + margin-bottom: 15px; + } +} + +.top-seller-style-two { + background: #20202d; + border-radius: 10px; + padding: 28px 26px 28px 30px; + transition: 0.3s; +} +@media (max-width: 575px) { + .top-seller-style-two { + padding: 15px; + } +} +.top-seller-style-two .thumb-wrapper { + position: relative; + margin-right: 20px; +} +@media (max-width: 575px) { + .top-seller-style-two .thumb-wrapper { + margin-right: 10px; + } +} +.top-seller-style-two .thumb { + display: block; + border: 2px solid #3a3a3a; + width: 70px; + height: 70px; + border-radius: 50%; + position: relative; + overflow: hidden; +} +@media (max-width: 575px) { + .top-seller-style-two .thumb { + width: 50px; + height: 50px; + } +} +.top-seller-style-two .thumb img { + width: 100%; +} +.top-seller-style-two .items-number { + font-size: 30px; + position: relative; +} +@media (max-width: 575px) { + .top-seller-style-two .items-number { + font-size: 20px; + } +} +.top-seller-style-two .items-number::before { + content: ""; + position: absolute; + left: -26px; + top: -15px; + height: 80px; + width: 2px; + background: #3a3a3a; +} +@media (max-width: 575px) { + .top-seller-style-two .items-number::before { + top: -7px; + height: 65px; + } +} +.top-seller-style-two .items-number strong { + color: #fff; +} +.top-seller-style-two .items-number span { + font-size: 16px; +} +@media (max-width: 575px) { + .top-seller-style-two .items-number span { + font-size: 14px; + } +} +.top-seller-style-two .price { + font-size: 15px; +} +@media (max-width: 575px) { + .top-seller-style-two .price { + font-size: 14px; + } +} +@media (max-width: 575px) { + .top-seller-style-two .title { + margin-bottom: 0; + font-size: 15px; + } +} +.top-seller-style-two .title a { + color: #fff; +} +.top-seller-style-two:hover { + transform: translateY(-4px); +} +.top-seller-style-two:hover .thumb { + border-color: #ff512f; +} +.top-seller-style-two:hover .thumb img { + transform: scale(1.2); +} + +.text-large { + font-size: 20px; + text-decoration: underline; + font-family: "Poppins", "Chakra Petch", sans-serif; + word-spacing: 2px; +} +@media (max-width: 575px) { + .text-large { + font-size: 17px; + } +} +.text-large a { + color: #eee; +} +.text-large a:hover { + color: #ff512f; +} + +.popular-collection-style-one { + background: #20202d; + border-radius: 20px; + padding: 20px; +} +.popular-collection-style-one a { + display: block; +} +.popular-collection-style-one img { + border-radius: 10px; + width: 100%; +} +.popular-collection-style-one .large-thumbnail { + border-radius: 20px; + position: relative; + overflow: hidden; +} +.popular-collection-style-one .large-thumbnail img { + width: 100%; +} +.popular-collection-style-one .small-thumb-group { + display: flex; + margin-left: -10px; + margin-right: -10px; +} +.popular-collection-style-one .small-thumb-group img { + flex-basis: 33.333333%; + max-width: 33.333333%; + margin: 20px 10px 0; +} +@media (max-width: 991px) { + .popular-collection-style-one .small-thumb-group img { + flex-basis: 27.333333%; + max-width: 27.333333%; + } +} +.popular-collection-style-one .title { + margin-bottom: 3px; +} +.popular-collection-style-one .title a { + color: #fff; +} +.popular-collection-style-one:hover .large-thumbnail img { + transform: scale(1.1); +} + +@media (max-width: 575px) { + .popular-collection-active .slick-dots { + bottom: -35px; + } +} + +.popular-collection-style-two { + position: relative; + overflow: hidden; + border-radius: 10px; + padding: 10px; + background: #20202d; +} +.popular-collection-style-two .thumb { + display: block; + position: relative; + overflow: hidden; +} +.popular-collection-style-two .thumb img { + transition: 0.3s linear; + width: 100%; +} +.popular-collection-style-two .content { + background: #20202d; + padding: 20px 25px 10px; +} +.popular-collection-style-two .content .title { + font-size: 16px; +} +.popular-collection-style-two .content .title a { + color: #fff; +} +.popular-collection-style-two .content .item-code { + font-size: 16px; + line-height: 20px; + font-weight: 500; +} +.popular-collection-style-two:hover .title { + font-size: 16px; +} +.popular-collection-style-two:hover .title a { + color: #ff512f; +} +.popular-collection-style-two:hover .thumb img { + transform: scale(1.2); +} + +.card-block-style-one { + background: #20202d; + padding: 40px; + border-radius: 10px; +} +@media (max-width: 575px) { + .card-block-style-one { + padding: 25px; + } +} +.card-block-style-one .title { + text-transform: capitalize; + font-weight: 600; +} +@media (max-width: 575px) { + .card-block-style-one .title { + font-size: 20px; + } +} +.card-block-style-one p { + font-size: 17px; + margin-bottom: 0; + line-height: 30px; +} +@media (max-width: 575px) { + .card-block-style-one p { + font-size: 16px; + } +} + +.default-tab-list { + margin: 0 -7.5px; +} +.default-tab-list button { + border: 2px solid #dadce0; + font-size: 15px; + font-weight: 500; + line-height: 20px; + text-transform: capitalize; + color: rgba(255, 255, 255, 0.75); + padding: 10px 18px; + margin: 0 7.5px; + background: transparent; + border-radius: 30px; + margin-bottom: 20px; +} +@media (max-width: 575px) { + .default-tab-list button { + margin-bottom: 15px; + } +} +.default-tab-list button:hover { + border-color: #ff512f; + color: #ff512f; +} +.default-tab-list button.is-checked { + background: #ff512f; + border-color: #ff512f; + color: #fff; +} + +.grid-filter-wrapper { + margin-left: -15px; + margin-right: -15px; +} +.grid-filter-wrapper .resizer { + width: 25%; +} +@media (max-width: 1499px) { + .grid-filter-wrapper .resizer { + width: 33.33%; + } +} +@media (max-width: 991px) { + .grid-filter-wrapper .resizer { + width: 50%; + } +} +@media (max-width: 575px) { + .grid-filter-wrapper .resizer { + width: 100%; + } +} +.grid-filter-wrapper .grid-item { + width: 25%; + padding: 0 15px; + margin-bottom: 30px; +} +@media (max-width: 1499px) { + .grid-filter-wrapper .grid-item { + width: 33.33%; + } +} +@media (max-width: 991px) { + .grid-filter-wrapper .grid-item { + width: 50%; + } +} +@media (max-width: 575px) { + .grid-filter-wrapper .grid-item { + width: 100%; + } +} + +.modal-content { + position: relative; + display: flex; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #202027; + background-clip: padding-box; + border: none; + border-radius: 10px; + outline: 0; +} +.modal-content label { + margin-bottom: 10px; + color: #fff; +} +.modal-content input { + color: #fff; + height: 46px; + border-color: #65676b; +} +.modal-content .modal-title { + font-family: "Poppins", "Chakra Petch", sans-serif; + font-size: 22px; +} + +.btn-custom-closer { + background: #fff; + border: none; + border-radius: 20px; + width: 35px; + height: 35px; + font-size: 20px; + line-height: 35px; + position: absolute; + right: -12px; + top: -12px; + transition: 0.3s; + z-index: 3; +} +@media (max-width: 991px) { + .btn-custom-closer { + right: -5px; + } +} +.btn-custom-closer:hover { + background: #ff512f; +} +.btn-custom-closer:hover i { + color: #fff; +} + +.modal-footer { + border-top-color: #333; +} + +.modal-header { + border-bottom-color: #333; +} + +.bidding-list { + margin: 0; + padding-top: 20px; +} +.bidding-list li { + display: flex; + align-items: center; + justify-content: space-between; + flex-wrap: wrap; + color: #ccc; +} +.bidding-list li:not(:last-child) { + margin-bottom: 10px; +} +.bidding-list li strong { + color: #fff; + font-weight: 500; + padding-left: 15px; +} + +.bid-success-content h3 { + font-size: 22px; +} +.bid-success-content p { + font-size: 14px; +} +.bid-success-content strong { + color: #fff; + font-weight: 500; +} + +.single-item-history { + margin-top: 15px; +} +.single-item-history:not(:last-child) { + border-bottom: 1px solid #414141; + padding-bottom: 15px; +} +.single-item-history .avatar { + width: 80px; + height: 80px; + display: flex; + align-items: center; + position: relative; + overflow: hidden; + padding-right: 7.5px; + border-radius: 6px; +} +.single-item-history .avatar i { + width: 20px; + height: 20px; + background: #ff512f; + color: #fff; + border-radius: 50%; + position: absolute; + right: 6px; + bottom: 10px; + display: flex; + align-items: center; + justify-content: center; +} +.single-item-history .avatar img { + width: 100%; + border-radius: 50%; +} +.single-item-history .content { + flex: auto; + padding-left: 7.5px; +} +.single-item-history .content p { + margin-bottom: 0; +} +.single-item-history .content span { + font-size: 15px; +} +@media (max-width: 575px) { + .single-item-history .content span.time { + display: block; + margin-left: 0 !important; + } +} + +.modal { + z-index: 9999; +} + +.inner-page-banner { + padding: 150px 0 90px; + background-image: url(../img/dark-inner.jpg); +} +@media (max-width: 575px) { + .inner-page-banner { + padding: 100px 0 55px; + } +} +.inner-page-banner .title { + font-size: 30px; + font-family: "Poppins", "Chakra Petch", sans-serif; + line-height: 1; +} +@media (max-width: 575px) { + .inner-page-banner .title { + font-size: 28px; + margin-bottom: 10px; + } +} +.inner-page-banner .inner { + padding: 20px; + display: flex; + align-items: center; + justify-content: space-between; + flex-wrap: wrap; + background: rgba(0, 0, 0, 0.25); + border-radius: 10px; +} +@media (max-width: 575px) { + .inner-page-banner .inner { + flex-direction: column; + padding: 15px; + } +} +.inner-page-banner nav.mt-4 { + margin-top: 0 !important; +} + +.breadcrumb-item.active { + color: #fff; +} + +.counter-style-1 { + font-family: "Poppins", "Chakra Petch", sans-serif; + color: #fff; + margin-bottom: 40px; +} +.counter-style-1:last-child { + margin-bottom: 0; +} +.counter-style-1 .number { + font-size: 50px; + font-weight: 400; + line-height: 1.3; + text-transform: uppercase; +} +@media (max-width: 1919px) { + .counter-style-1 .number { + font-size: 40px; + } +} +.counter-style-1 .counter-title { + font-size: 18px; + line-height: 1.3; + font-family: "Inter", sans-serif; + text-transform: capitalize; +} +@media (max-width: 1919px) { + .counter-style-1 .counter-title { + font-size: 20px; + } +} +.counter-style-1 .count-kilo { + font-size: 20px; + display: flex; + align-self: center; + padding-top: 5px; + position: relative; + top: -3px; +} + +.counter-wrapper-style-two { + display: flex; + align-items: center; + flex-wrap: wrap; + margin-left: -30px; + margin-right: -30px; + margin-top: 40px; +} +.counter-wrapper-style-two .counter-style-1 { + margin-bottom: 40px; + padding: 0 30px; +} + +.countdown.countdown-style-two { + background: transparent; + left: 0; + transform: none; + width: 100%; + padding: 0; + justify-content: flex-start; + margin-bottom: 10px; + height: auto; +} +@media (max-width: 991px) { + .countdown.countdown-style-two { + justify-content: center; + width: auto; + } +} +.countdown.countdown-style-two > div .countdown-heading { + display: none; +} +.countdown.countdown-style-two .countdown-value { + font-weight: 600; + font-size: 18px; + background: #343434; + height: 40px; + width: 35px; + border-radius: 4px; + display: flex; + align-items: center; + justify-content: center; + margin: 5px; + padding: 5px; +} +@media (max-width: 991px) { + .countdown.countdown-style-two .countdown-value { + margin: 0 3px; + font-size: 14px; + } +} + +.product-style-trendy .over-content-2 { + width: 210px; + right: 10px; + left: auto; + transform: none; + padding: 11px 15px 15px 15px; + display: flex; + flex-direction: column; + align-items: center; +} +@media (max-width: 991px) { + .product-style-trendy .over-content-2 { + width: 175px; + } + .product-style-trendy .over-content-2 .btn { + padding: 6px 20px; + } +} +.product-style-trendy .content-left { + transform: none; + left: 10px; + display: flex; + flex-direction: column; + width: 170px; + padding: 12px 15px; +} +@media (max-width: 991px) { + .product-style-trendy .content-left { + width: 125px; + } +} +.product-style-trendy .content-left .title { + font-size: 16px; + line-height: 26px; + margin-bottom: 5px; +} +.product-style-trendy .content-left .title a { + color: #fff; +} +.product-style-trendy .content-left .title a:hover { + color: #ff512f; +} +.product-style-trendy .content-left small { + font-size: 12px; + font-weight: 300; +} +.product-style-trendy .content-left strong { + color: #ff512f; +} +.product-style-trendy .reaction-btn { + height: 30px; + border-radius: 20px; +} +.product-style-trendy .reaction-btn i { + position: relative; + left: -6px; +} + +.accordion-button, +.accordion-button:not(.collapsed) { + color: #fff; + background-color: #30303d; + box-shadow: none; + border-radius: 6px; + margin-bottom: 15px; + padding: 7px 15px; + cursor: pointer; +} + +.filter-item-list { + padding-left: 15px; +} + +.filter-wrapper { + background: #20202d; + padding: 20px; + border: none; + border-radius: 10px; + margin-right: 25px; +} +@media (max-width: 1499px) { + .filter-wrapper { + margin-right: 0; + } +} +@media (max-width: 991px) { + .filter-wrapper { + margin-bottom: 40px; + } +} +.filter-wrapper .filter-custom-item:not(:last-child) { + margin-bottom: 30px; +} +.filter-wrapper .form-check { + margin-bottom: 12px; + cursor: pointer; +} +.filter-wrapper .form-check label { + color: #ddd; + padding-left: 5px; +} +.filter-wrapper .form-check input, +.filter-wrapper .form-check label { + cursor: pointer; +} +.filter-wrapper .form-check input:checked { + background-color: #ff512f; + border-color: #ff512f; +} +.filter-wrapper .form-check input:focus { + box-shadow: rgba(255, 81, 47, 0.25) 0px 0px 0px 0; +} + +.accordion-button::after { + content: "\ea4e"; + font-family: remixicon !important; + font-size: 22px; + background-image: none; + width: auto; + height: auto; +} + +.accordion-button:not(.collapsed)::after { + background-image: none; +} + +.custom-tabs { + background: #20202d; + color: rgba(255, 255, 255, 0.75); + padding: 10px 20px; + font-size: 16px; + font-weight: 500; + border-radius: 30px; + display: inline-flex; +} +.custom-tabs li:not(:last-of-type) { + margin-right: 25px; +} +.custom-tabs li a { + border-radius: 30px !important; +} +.custom-tabs li a.active { + color: #ff512f; +} + +.custom-tab-content { + background: #20202d; + padding: 15px 25px; + border-radius: 6px; +} +@media (max-width: 575px) { + .custom-tab-content { + padding: 10px; + } +} +.custom-tab-content .tab-pane { + padding: 0; +} +.custom-tab-content .tab-pane .single-item-history:first-child { + margin-top: 0; +} +.custom-tab-content .tab-pane .single-item-history .avatar { + width: 55px; + height: 55px; + display: flex; + align-items: center; +} +.custom-tab-content .tab-pane .notification-history .avatar { + width: 75px; + height: 75px; +} +@media (max-width: 1199px) { + .custom-tab-content .tab-pane .notification-history .avatar { + width: 55px; + height: 55px; + } +} +.custom-tab-content .tab-pane p { + font-size: 15px; + line-height: 24px; +} +.custom-tab-content .tab-pane .content p a { + font-weight: 400; +} +.custom-tab-content .tab-pane p:last-child { + margin-bottom: 0; +} + +.details-content { + padding-left: 35px; +} +@media (max-width: 1199px) { + .details-content { + padding-left: 0; + } +} +.details-content .main_title { + font-size: 32px; + line-height: 48px; + margin-bottom: 20px; +} +@media (max-width: 575px) { + .details-content .main_title { + font-size: 23px; + line-height: 36px; + } +} +.details-content .subtitle { + font-size: 15px; + line-height: 25px; + margin-bottom: 30px; +} +.details-content .custom-tabs li a { + color: #fff; + font-weight: 400; + font-family: "Poppins", "Chakra Petch", sans-serif; +} +.details-content .custom-tabs li a.active { + color: #ff512f; +} +.details-content .custom-history { + height: 230px; + overflow-y: auto; + padding-right: 30px; + /* Track */ + /* Handle */ + /* Handle on hover */ +} +@media (max-width: 575px) { + .details-content .custom-history { + padding-right: 10px; + } +} +.details-content .custom-history::-webkit-scrollbar { + width: 6px; +} +.details-content .custom-history::-webkit-scrollbar-track { + background: #555; + border-radius: 6px; +} +.details-content .custom-history::-webkit-scrollbar-thumb { + background: #999; + border-radius: 6px; +} +.details-content .custom-history::-webkit-scrollbar-thumb:hover { + background: #555; +} +.details-content .custom-history .single-item-history .content span { + font-size: 13px; +} +.details-content .custom-tab-content { + padding-right: 10px; +} +.details-content .owner { + font-size: 14px; +} +.details-content .avatar-info .thumb { + min-width: 50px; + height: 50px; + border: none; +} + +@media (max-width: 575px) { + .avatar-info-wrapper { + flex-direction: column; + align-items: flex-start; + } + .avatar-info-wrapper .avatar-info { + margin-bottom: 20px; + } +} + +.bidder { + background: #20202d; + padding: 6px 15px; + border-radius: 5px; + border: 1px solid #3e3e3e; + min-width: 248px; + min-height: 40px; +} +.bidder .text-white { + padding-right: 10px; +} +.bidder > span { + font-weight: 500; +} + +.biding-block { + background: #20202d; + padding: 10px 20px; + border-radius: 10px; + margin-bottom: 20px; +} +.biding-block span { + display: inline-block; + margin-bottom: 8px; +} +.biding-block h3 { + color: #ff512f; +} +.biding-block .countdown { + position: static; + transform: none; + width: auto; + padding: 0; + justify-content: flex-start; + height: 28px; +} +.biding-block .countdown .countdown-value { + color: #ff512f; + font-size: 24px; +} + +.avatar-info .thumb { + border: 2px solid #ff512f; + overflow: hidden; + min-width: 60px; + height: 60px; + display: flex; + border-radius: 50%; +} +.avatar-info .thumb img { + width: 100%; +} +.avatar-info .content { + margin-left: 10px; +} +.avatar-info .content .title a { + color: #fff; +} +.avatar-info .content .title { + font-weight: 400; +} + +.details-dropdown .ri-more-fill { + background: #20202d; + width: 35px; + height: 35px; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50%; + cursor: pointer; + color: #fff; +} + +.product-details .explore-style-one:hover { + transform: translateY(0); +} +.product-details .explore-style-one .thumb img { + transform: scale(1); +} + +.price-history { + display: flex; + flex-direction: column; + color: #fff; + font-family: "Poppins", "Chakra Petch", sans-serif; +} +@media (max-width: 575px) { + .price-history { + flex-basis: 100px; + } +} +.price-history span { + color: rgba(255, 255, 255, 0.65); + font-family: "Inter", sans-serif; + font-size: 14px; +} + +@media (max-width: 1199px) { + .zoomWindowContainer, +.zoomLens { + display: none !important; + } +} +.bar-title { + position: relative; +} +.bar-title::before { + content: ""; + position: absolute; + left: 0; + bottom: 0; + width: 50px; + height: 2px; + background: #ff512f; +} + +.filter-tag-wrapper .bar-title { + padding-bottom: 8px; + margin-bottom: 16px; +} + +.filter-group { + display: flex; + flex-wrap: wrap; + margin: 0 -8px; +} +.filter-group .btn { + margin: 8px; + border-radius: 6px; + padding: 6px 15px; + color: rgba(255, 255, 255, 0.75); +} +.filter-group .btn:hover { + color: #fff; +} + +.activity-wrapper .custom-tab-content { + background: transparent; + padding: 0; +} +.activity-wrapper .custom-history { + margin-right: 60px; +} +@media (max-width: 575px) { + .activity-wrapper .custom-history { + margin-right: 0; + } +} +.activity-wrapper .custom-history:not(:last-child) { + margin-bottom: 20px; +} +.activity-wrapper .custom-history .single-item-history { + background: #20202d; + padding: 15px; + border-radius: 10px; + border: none; + display: flex; + align-items: center; +} +.activity-wrapper .custom-history .single-item-history h3 { + font-size: 20px; + margin-bottom: 5px; +} +.activity-wrapper .custom-history .single-item-history h3 a { + color: #fff; +} +.activity-wrapper .custom-history .single-item-history h3 a:hover { + color: #ff512f; +} +.activity-wrapper .custom-history .single-item-history .avatar { + width: 80px; + height: 80px; +} +.activity-wrapper .custom-history .single-item-history .date { + font-weight: 500; + color: #999; + font-size: 16px; +} +.activity-wrapper .custom-history.notification-history h4 { + margin-bottom: 5px; +} +.activity-wrapper .custom-history.notification-history h4 a { + color: #fff; +} +.activity-wrapper .custom-history.notification-history .reaction { + font-size: 22px; + cursor: pointer; + width: 55px; + height: 55px; + background: rgba(255, 255, 255, 0.1); + align-items: center; + justify-content: center; + border-radius: 50%; + display: flex; +} +.activity-wrapper .custom-history.notification-history .reaction i { + transition: 0.3s; +} +.activity-wrapper .custom-history.notification-history .reaction:hover i { + color: #ff512f; +} +.activity-wrapper .custom-history.notification-history .single-item-history { + background: #20202d; +} +@media (max-width: 360px) { + .activity-wrapper .custom-history.notification-history .single-item-history { + padding: 15px 10px; + } + .activity-wrapper .custom-history.notification-history .single-item-history .reaction { + width: auto; + height: auto; + background: transparent; + } +} + +@media (max-width: 575px) { + .flex-md-wrap { + align-items: flex-start; + flex-direction: column; + } +} + +.single-blog { + background: #20202d; + padding: 20px; + border-radius: 8px; +} +.single-blog .title { + font-size: 20px; + line-height: 28px; + padding-right: 20%; +} +.single-blog .title a { + color: #fff; +} +.single-blog .content { + padding-top: 30px; + padding-bottom: 15px; +} +.single-blog .thumb { + position: relative; + display: block; + overflow: hidden; + border-radius: 8px; +} +.single-blog .thumb img { + width: 100%; + min-height: 260px; + object-fit: cover; + transition: 0.5s; +} +.single-blog:hover .thumb img { + transform: scale(1.2); +} +.single-blog:hover .title a { + color: #ff512f; +} + +.meta { + display: inline-flex; + align-items: center; + flex-wrap: wrap; + margin-bottom: 0; + margin-left: -8px; + margin-right: -8px; + padding-left: 0 !important; +} +.meta li { + padding: 0 8px; + margin-bottom: 10px; + position: relative; + list-style: none !important; + font-size: 15px; +} +.meta li i { + padding-right: 5px; +} +.meta .date { + display: inline-flex; + align-items: center; +} + +.blog-details-wrapper h2 { + font-size: 36px; + line-height: 52px; +} +@media (max-width: 991px) { + .blog-details-wrapper h2 { + font-size: 32px; + line-height: 48px; + } +} +@media (max-width: 575px) { + .blog-details-wrapper h2 { + font-size: 24px; + line-height: 36px; + } +} +.blog-details-wrapper h3, +.blog-details-wrapper h2 { + margin-bottom: 20px; +} +.blog-details-wrapper p { + margin-bottom: 30px; + line-height: 30px; +} +.blog-details-wrapper img { + margin-bottom: 30px; + border-radius: 8px; +} +.blog-details-wrapper ul { + margin-bottom: 30px; + padding-left: 20px; +} +.blog-details-wrapper ul li { + margin-bottom: 10px; + list-style: disc; + font-size: 16px; +} +@media (max-width: 991px) { + .blog-details-wrapper ul li { + font-size: 16px; + } +} +.blog-details-wrapper figure { + margin-bottom: 30px; +} +.blog-details-wrapper blockquote { + background: #393939; + padding: 25px 25px 25px 40px; + color: #fff; + font-size: 20px; + line-height: 32px; + border-radius: 4px; + font-family: "Poppins", "Chakra Petch", sans-serif; + border-left: 6px solid #ff512f; + margin-bottom: 30px; +} +@media (max-width: 575px) { + .blog-details-wrapper blockquote { + padding: 25px 25px 25px 25px; + font-size: 17px; + } +} + +.blog-content { + background: #20202d; + padding: 25px; + border-radius: 6px; +} + +.post-media { + background: #dadce0; + padding: 10px; + border-radius: 6px; +} + +.styler-1 { + background: #20202d; + padding: 40px; + border-radius: 6px; + margin-top: 40px; +} +@media (max-width: 575px) { + .styler-1 { + padding: 40px 15px; + } +} + +.comment-box-wrapper ul { + padding-left: 0; +} +.comment-box-wrapper ul li p { + margin-bottom: 0; +} +.comment-box-wrapper ul li:not(:last-child) { + margin-bottom: 45px; +} +.comment-box-wrapper ul li:nth-child(3) { + margin-left: 40px; +} +@media (max-width: 575px) { + .comment-box-wrapper ul li:nth-child(3) { + margin-left: 0; + } +} + +@media (max-width: 575px) { + .single-comment-box { + flex-direction: column; + align-items: flex-end; + } +} +.single-comment-box .inner .avatar { + width: 60px; + height: 60px; + overflow: hidden; + position: relative; + border-radius: 50%; + margin-right: 16px; +} +@media (max-width: 991px) { + .single-comment-box .inner .avatar { + width: 45px; + height: 45px; + margin-right: 10px; + } +} +.single-comment-box .inner .avatar img { + width: 100%; + border-radius: 0; +} +.single-comment-box .content { + flex: 1; +} +.single-comment-box .content .title { + display: inline-flex; + align-items: center; + margin-bottom: 7px; +} +.single-comment-box .content .title a { + color: #fff; +} +.single-comment-box .content .title a:hover { + color: #ff512f; +} +.single-comment-box .content .title span { + padding-left: 10px; + color: rgba(255, 255, 255, 0.75); + position: relative; + margin-left: 5px; +} +.single-comment-box .content .title span::before { + content: "|"; + position: absolute; + left: 0; + color: #d1d1d1; +} +.single-comment-box .content p { + padding-right: 190px; +} +@media (max-width: 1199px) { + .single-comment-box .content p { + padding-right: 40px; + } +} +@media (max-width: 575px) { + .single-comment-box .content p { + padding-right: 20px; + font-size: 16px; + } +} +.single-comment-box .reply { + height: 36px; + border: 2px solid #a1a1a1; + border-radius: 50%; + min-width: 36px; + display: flex; + align-items: center; + justify-content: center; + font-size: 20px; + cursor: pointer; + transition: 0.3s; +} +.single-comment-box .reply i { + transition: 0.3s; +} +.single-comment-box .reply:hover { + border-color: #ff512f; + transform: translateX(5px); +} +.single-comment-box .reply:hover i { + color: #ff512f; +} + +@media (max-width: 575px) { + .wallet-activation, +.related-blog-activation { + padding-bottom: 25px; + } +} + +.contact-form-wrapper input, +.contact-form-wrapper textarea { + background: #09080d; + border: none; + color: #fff; +} +.contact-form-wrapper input { + min-height: 50px; +} + +.sidebar { + margin-left: 25px; +} +@media (max-width: 1199px) { + .sidebar { + margin-left: 0; + } +} +.sidebar .category-list li { + list-style: none; + margin-bottom: 10px; +} +.sidebar .category-list li a { + display: flex; + justify-content: space-between; +} +.sidebar .category-list li a:hover { + color: #ff512f; +} +.sidebar .category-list li:hover .count-text { + color: #ff512f; +} +.sidebar .category-list li:not(:last-child) a { + border-bottom: 1px solid #323232; + padding-bottom: 10px; +} + +.single-widget { + background: #20202d; + padding: 25px 20px; + border-radius: 8px; +} +.single-widget .title { + position: relative; + padding-bottom: 10px; + font-family: "Poppins", "Chakra Petch", sans-serif; +} +.single-widget .title::before { + content: ""; + position: absolute; + left: 0; + bottom: 0; + height: 2px; + background: #ff512f; + width: 80px; +} +.single-widget ul { + margin-bottom: 0; + padding-left: 0; +} +.single-widget ul li { + list-style: none; +} +.single-widget ul li a { + font-size: 17px; +} + +.category-list .count-text { + background: #3d3d3d; + padding: 2px 15px; + border-radius: 20px; + color: #fff; + transition: 0.3s; + font-size: 15px; + font-family: "Poppins", "Chakra Petch", sans-serif; +} + +.recent-post ul li { + color: #dedede; +} +.recent-post ul li:not(:last-child) { + padding-bottom: 10px; + border-bottom: 1px solid #323232; +} +.recent-post ul li a { + color: #fff; +} +.recent-post ul li a:hover { + color: #ff512f; +} +.recent-post ul li .cate { + color: rgba(255, 255, 255, 0.75); + font-size: 14px; + display: inline-block; + margin-top: 5px; +} + +.widget-tag .filter-group .btn { + color: #bbb; +} +.widget-tag .filter-group .btn:hover { + color: #fff; +} + +.single-author { + background: #20202d; + padding: 15px 15px 25px 15px; + border-radius: 8px; + transition: 0.3s; +} +.single-author .thumb { + position: relative; + overflow: hidden; + border-radius: 8px; +} +.single-author .thumb img { + width: 100%; +} +.single-author .content { + text-align: center; + position: relative; + z-index: 2; + margin-top: -35px; +} +.single-author .content .btn-small { + padding-left: 25px; + padding-right: 25px; + min-width: 104px; + justify-content: center; +} +.single-author .content .btn-small:hover { + transform: none; + color: #fff; +} +.single-author .content .author-thumb { + width: 65px; + height: 65px; + position: relative; + overflow: hidden; + border-radius: 50%; + border: 2px solid rgba(255, 255, 255, 0.75); + display: block; + margin: 0 auto 10px; + transition: 0.3s; +} +.single-author .content .author-thumb img { + transition: 0.5s; +} +.single-author .content .title { + margin-bottom: 15px; +} +.single-author .content .title a { + color: #fff; +} +.single-author .content .btn-inner i { + display: none; + font-size: 22px; +} +.single-author .content .btn-inner.active .btn-text { + display: none; +} +.single-author .content .btn-inner.active i { + display: block; + color: #ff512f; +} +.single-author:hover { + transform: translateY(-5px); +} +.single-author:hover .content .author-thumb { + border-color: #ff512f; +} +.single-author:hover .content .author-thumb img { + transform: scale(1.1); +} +.single-author.profile .author-thumb { + border-color: #ff512f; +} +.single-author.profile .title { + margin-bottom: 8px; + text-transform: capitalize; +} +.single-author.profile .title a { + color: #fff; +} +.single-author.profile p { + font-weight: 400; + font-size: 16px; +} +.single-author.profile .social a { + width: 35px; + height: 35px; + font-size: 18px; +} +.single-author.profile .content .author-thumb { + width: 70px; + height: 70px; + margin-bottom: 15px; +} + +.custom-tabs.author-tabs { + padding: 15px 15px 5px 15px; +} +.custom-tabs.author-tabs .btn { + border-radius: 6px; + padding: 8px 16px; + color: rgba(255, 255, 255, 0.75); +} +.custom-tabs.author-tabs .btn::before { + display: none; +} +.custom-tabs.author-tabs .btn:hover { + transform: none; + border-color: #ff512f; + color: #ff512f; + background: transparent; +} +.custom-tabs.author-tabs .btn.active { + background: #ff512f; + border-color: #ff512f; + color: #fff; +} +.custom-tabs.author-tabs li { + margin-bottom: 10px; +} +.custom-tabs.author-tabs li:not(:last-of-type) { + margin-right: 15px; +} + +.author-profile-wrapper { + padding-left: 30px; +} +@media (max-width: 1199px) { + .author-profile-wrapper { + padding-left: 0; + } +} + +.wallet-block { + background: #20202d; + padding: 30px 24px; + border-radius: 10px; + display: block; + text-align: center; + transition: 0.3s; +} +.wallet-block .thumb { + width: 80px; + height: 80px; + position: relative; + overflow: hidden; + border-radius: 50%; + margin: 0 auto 15px; +} +.wallet-block .title { + font-size: 22px; + font-weight: 600; + margin-bottom: 10px; + text-transform: capitalize; +} +.wallet-block p { + margin-bottom: 0; + font-size: 16px; + line-height: 26px; +} +.wallet-block:hover { + background: #20202d; + transform: translateY(-5px); +} + +.create-item-wrapper { + background: #20202d; + padding: 50px; + border-radius: 10px; +} +@media (max-width: 991px) { + .create-item-wrapper { + padding: 50px 15px; + } +} + +.upload-area label { + border: 2px solid #4a4a4a; + width: 100%; + height: 250px; + border-radius: 5px; + display: flex; + justify-content: center; + align-items: center; + cursor: pointer; + flex-direction: column; + margin-bottom: 15px; +} + +.upload-area label i { + font-size: 40px; + stroke-width: 1px; + color: #ff512f; + margin-bottom: 10px; +} + +.upload-area label .file-type { + font-size: 14px; + font-family: "Inter", sans-serif; +} + +.upload-area label span { + font-size: 20px; +} + +.upload-area .upload-formate h6.title { + font-size: 16px; + font-weight: 400; + margin-bottom: 10px; +} + +.upload-area .upload-formate p.formate { + font-size: 16px; + font-weight: 400; +} + +.upload-area .brows-file-wrapper { + position: relative; + background: #1a1a1a; + border-radius: 10px; + transition: 0.3s; +} +.upload-area .brows-file-wrapper:hover { + background: #000; +} + +.upload-area .brows-file-wrapper input { + position: absolute; + height: 100%; + width: 100%; + opacity: 0; + cursor: pointer; +} + +.upload-btn-wrapper { + padding: 20px 30px 10px; + border-radius: 10px; + background: #20202d; + margin-top: 30px; +} +.upload-btn-wrapper .btn { + margin-bottom: 10px; +} +@media (max-width: 575px) { + .upload-btn-wrapper { + padding: 20px 15px 10px; + } + .upload-btn-wrapper .input-box { + width: 100%; + } + .upload-btn-wrapper .input-box .btn { + width: 100%; + } + .upload-btn-wrapper .d-flex-center { + justify-content: center; + width: 100%; + margin-bottom: 10px; + } +} + +.form-field-wrapper { + background: #1a1a1a; + border-radius: 10px; + padding: 20px 40px 0 40px; +} +@media (max-width: 575px) { + .form-field-wrapper { + padding: 20px 15px 0 15px; + } +} +.form-field-wrapper .nice-select { + width: 100%; + background: #1a1a1a; + border-color: #4a4a4a; +} +.form-field-wrapper input, +.form-field-wrapper textarea { + border-color: #4a4a4a; + color: #fff; +} +.form-field-wrapper input:focus, +.form-field-wrapper textarea:focus { + border-color: #ff512f; +} + +.signup-wrapper { + background: #20202d; + position: relative; + overflow: hidden; + height: 100%; +} +.signup-wrapper.signin-wrapper { + background: #111; +} +.signup-wrapper.header-free-signin { + height: 100vh; + display: flex; + justify-content: center; + flex-direction: column; + background: #111; +} +.signup-wrapper.header-free-signin .signin-form-2 { + background: #20202d; +} +.signup-wrapper.header-free-signin .signin-content { + max-width: 550px; + margin: 0 auto; +} +@media (max-width: 1700px) { + .signup-wrapper.header-free-signin .signin-content .signin-form { + padding: 30px; + } +} +@media (max-width: 1700px) { + .signup-wrapper.header-free-signin { + height: auto; + margin: 50px 0; + } +} +@media (max-width: 575px) { + .signup-wrapper.header-free-signin { + height: auto; + margin: 30px 0; + } +} +@media (max-width: 575px) { + .signup-wrapper { + padding: 2px; + } +} +.signup-wrapper .register-with { + border: 2px solid #65676b; + padding: 10px 15px; + justify-content: center; + border-radius: 30px; + font-weight: 500; +} +.signup-wrapper .register-with i { + font-size: 18px; + padding-right: 8px; +} +.signup-wrapper .register-with i.ri-facebook-fill { + color: #4267b2; +} +.signup-wrapper .register-with i.ri-google-fill { + color: #db4437; +} +.signup-wrapper .register-with.metamask-btn:hover { + background: #ee811a; + border-color: #ee811a; + color: #fff; +} +.signup-wrapper .register-with.metamask-btn:hover i { + color: #fff; +} +.signup-wrapper .register-with.google-btn:hover { + background: #db4437; + border-color: #db4437; + color: #fff; +} +.signup-wrapper .register-with.google-btn:hover i { + color: #fff; +} +.signup-wrapper .register-with.fb-btn:hover { + background: #4267b2; + border-color: #4267b2; + color: #fff; +} +.signup-wrapper .register-with.fb-btn:hover i { + color: #fff; +} + +.checkbox { + cursor: pointer; + font-family: "Inter", sans-serif; + font-weight: 400; +} + +.signup-content, +.contact-inner-contnet { + display: flex; + flex-direction: column; + justify-content: center; + height: 100%; +} +@media (max-width: 575px) { + .signup-content, +.contact-inner-contnet { + padding: 40px 15px; + } +} + +@media (max-width: 1919px) { + .signin-content.w-50 { + width: 60% !important; + } +} +@media (max-width: 767px) { + .signin-content.w-50 { + width: 100% !important; + padding: 0 15px; + } +} +.signin-content h2 { + font-size: 32px; +} + +.medium { + color: rgba(255, 255, 255, 0.7); +} + +.contact-inner-contnet .nice-select { + background: transparent; +} + +.row.gutter-0 { + margin-left: 0; + margin-right: 0; +} +.row.gutter-0 > [class*=col-] { + padding-left: 0; + padding-right: 0; +} + +.contact-wrapper { + box-shadow: 0px 3px 16px rgba(47, 83, 109, 0.12); +} +.contact-wrapper .contact-inner-contnet { + padding: 40px; +} + +.signin-form { + background: #20202d; + border-radius: 10px; + padding: 50px; +} +@media (max-width: 575px) { + .signin-form { + padding: 25px 15px; + } +} + +.sign-wrapeer h2 { + font-size: 32px; +} + +.signup { + padding: 50px; + border-radius: 10px; +} +@media (max-width: 575px) { + .signup { + padding: 25px 15px; + } +} + +.rounded { + border-radius: 10px !important; +} + +@media (max-width: 1199px) { + .signin-wrapper { + height: 100vh; + display: flex; + } +} +@media (max-width: 575px) { + .signin-wrapper { + padding: 100px 0; + height: auto; + } +} + +.not-found-inner { + padding-top: 100px; +} +@media (max-width: 575px) { + .not-found-inner { + padding-top: 20px; + } +} +.not-found-inner .title { + margin-bottom: 35px; +} +@media screen and (min-width: 1200px) { + .not-found-inner .title { + font-size: 75px; + } +} +@media (max-width: 1199px) { + .not-found-inner .title { + font-size: 60px; + } +} +@media (max-width: 991px) { + .not-found-inner .title { + font-size: 40px; + margin-bottom: 20px; + } +} +@media (max-width: 575px) { + .not-found-inner .title { + font-size: 30px; + margin-bottom: 20px; + } +} +.not-found-inner p { + font-size: 20px; + margin-bottom: 35px; + line-height: 32px; +} +@media (max-width: 1199px) { + .not-found-inner p { + margin-bottom: 20px; + } +} +@media (max-width: 575px) { + .not-found-inner p { + font-size: 16px; + line-height: 28px; + } +} +.not-found-inner .not-found-content { + padding-left: 20px; +} +@media (max-width: 575px) { + .not-found-inner .not-found-content { + padding-left: 0; + } +} + +.footer-inner { + background: #000; +} + +.copyright { + padding-top: 40px; + padding-bottom: 40px; +} +.copyright p { + margin: 0; + font-size: 16px; + line-height: 24px; + color: rgba(255, 255, 255, 0.75); + font-family: "Poppins", "Chakra Petch", sans-serif; +} + +.footer-widget.first-block { + padding-right: 27%; +} +@media (max-width: 991px) { + .footer-widget.first-block { + padding-right: 0; + } +} +.footer-widget p { + font-size: 16px; + line-height: 27px; + color: rgba(255, 255, 255, 0.75); +} +.footer-widget h4 { + margin-bottom: 30px; + text-transform: capitalize; + position: relative; +} +.footer-widget h4::after { + content: ""; + position: absolute; + left: 0; + bottom: -10px; + background: linear-gradient(97.3deg, #ff512f 0%, #dd2476 100%); + width: 50px; + height: 3px; +} +.footer-widget ul li, +.footer-widget ol li { + font-size: 16px; + line-height: 26px; +} +.footer-widget ul li a, +.footer-widget ol li a { + color: rgba(255, 255, 255, 0.75); +} +.footer-widget ul li a:hover, +.footer-widget ol li a:hover { + color: #ff512f; + margin-left: -6px; +} +.footer-widget ul li:not(:last-child), +.footer-widget ol li:not(:last-child) { + margin-bottom: 14px; +} + +.social { + display: flex; + align-items: center; + margin: 0 -8px; +} +.social a { + width: 42px; + height: 42px; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50%; + border: 2px solid rgba(255, 255, 255, 0.75); + margin: 0 8px; + font-size: 20px; + color: rgba(255, 255, 255, 0.9); +} +.social a:hover { + background: #ff512f; + border-color: #ff512f; + color: #fff; + transform: translateY(-3px); +} + +.subscribe-mail { + position: relative; +} +.subscribe-mail input { + width: 100%; + border: 2px solid #656565; + height: 52px; + border-radius: 10px; + padding: 20px 75px 20px 15px; + background: transparent; + font-weight: 500; + font-size: 14px; + color: rgba(255, 255, 255, 0.75); +} +.subscribe-mail input:focus { + border-color: #ff512f; +} +.subscribe-mail button { + padding: 0; + justify-content: center; + border: none; + position: absolute; + right: 5px; + top: 5px; + background: linear-gradient(97.3deg, #ff512f 0%, #dd2476 100%); + width: 61px; + height: 42px; + border-radius: 10px; + font-size: 20px; + color: #fff; + line-height: 42px; +} +.subscribe-mail button i { + padding-right: 0; + transition: 0.5s; +} +.subscribe-mail button:hover i { + transform: rotate(45deg); +} + +.icon-facebook:hover { + background: #3b5998 !important; + border-color: #3b5998 !important; +} + +.icon-twitter:hover { + background: #1da1f2 !important; + border-color: #1da1f2 !important; +} + +.icon-instagram:hover { + background: #c32aa3 !important; + border-color: #c32aa3 !important; +} + +.icon-linkedin:hover { + background: #0a66c2 !important; + border-color: #0a66c2 !important; +} + +.nft-gallery-activation .slick-dots { + margin-top: 0; +} + +.gallery-thumb .thumb { + position: relative; + border-radius: 10px; + background: #20202d; + padding: 15px; + margin: 50px 15px 50px; +} +@media (max-width: 575px) { + .gallery-thumb .thumb { + margin: 40px 10px 40px; + } +} +.gallery-thumb .thumb:nth-child(2) { + transform: translateX(140px); +} +.gallery-thumb .thumb img { + width: 100%; +} +.gallery-thumb .thumb .inner { + overflow: hidden; + border-radius: 10px; +} +.gallery-thumb .thumb::before, .gallery-thumb .thumb::after { + content: ""; + position: absolute; + left: 0; + bottom: -14px; + z-index: -1; + background: #20202d; + width: 70%; + height: 100%; + border-radius: 10px; +} +@media (max-width: 991px) { + .gallery-thumb .thumb::before, .gallery-thumb .thumb::after { + width: 50px; + } +} +.gallery-thumb .thumb::after { + left: auto; + bottom: auto; + top: -14px; + right: 0; +} +.gallery-thumb .thumb:hover img { + opacity: 0.8; + transform: scale(1.2); +} + +body .shape.light { + display: none; +} +@media (max-width: 575px) { + body .shape.light { + display: none; + } +} +body.theme-dark .logo-light { + display: block; +} +body.theme-dark .logo-dark { + display: none; +} +body.theme-dark .shape.light { + display: none; +} +body.theme-light { + color: rgba(0, 0, 0, 0.7); + background: #fff; +} +body.theme-light .shape.light { + display: block; +} +@media (max-width: 575px) { + body.theme-light .shape.light { + display: none; + } +} +body.theme-light .search-mobile-icon button, +body.theme-light .hamburger-button { + color: #393939; +} +body.theme-light .slick-dots { + margin-top: 10px; +} +@media (max-width: 575px) { + body.theme-light .slick-dots { + margin-top: 0; + } +} +body.theme-light .large-mobile-blog-search input { + background: #fff; +} +body.theme-light .footer-inner, +body.theme-light .section-bg-separation-2 { + background: #f9f9fc; +} +body.theme-light ::placeholder { + /* Chrome, Firefox, Opera, Safari 10.1+ */ + color: rgba(0, 0, 0, 0.7); +} +body.theme-light :-ms-input-placeholder { + /* Internet Explorer 10-11 */ + color: rgba(0, 0, 0, 0.7); +} +body.theme-light ::-ms-input-placeholder { + /* Microsoft Edge */ + color: #393939; +} +body.theme-light p { + color: rgba(0, 0, 0, 0.68); +} +body.theme-light .btn-outline, +body.theme-light .btn-black { + border: 2px solid rgba(0, 0, 0, 0.35); + color: #393939; +} +body.theme-light .btn-outline:hover, +body.theme-light .btn-black:hover { + border-color: #dd2476; + color: #fff; +} +body.theme-light .default-tab-list button { + border-color: #dadce0; +} +body.theme-light .default-tab-list button.is-checked { + border-color: #ff512f; +} +body.theme-light .default-tab-list button:hover { + color: #ff512f; + border-color: #ff512f; +} +body.theme-light .mainmenu-nav .mainmenu li a, +body.theme-light .single-comment-box .content .title a { + color: #393939; +} +body.theme-light .mainmenu-nav .mainmenu li a.active, body.theme-light .mainmenu-nav .mainmenu li a:hover, +body.theme-light .single-comment-box .content .title a.active, +body.theme-light .single-comment-box .content .title a:hover { + color: #ff512f; +} +body.theme-light .search-bar { + border-color: rgba(0, 0, 0, 0.5); +} +body.theme-light .search-bar input, +body.theme-light .search-bar .search-btn { + color: #393939; +} +body.theme-light .subscribe-mail input { + border-color: rgba(0, 0, 0, 0.5); +} +body.theme-light .logo-light { + display: none; +} +body.theme-light .logo-dark { + display: block; +} +body.theme-light .theme-swithcher-wrap .theme-switcher-label .mode span, +body.theme-light .single-comment-box .content .title span { + color: rgba(0, 0, 0, 0.7); +} +body.theme-light .mainmenu-nav .mainmenu li .submenu, +body.theme-light .header-right-inner > li .submenu { + background-color: #fff; + border: 1px none; + box-shadow: 0px 3px 16px rgba(47, 83, 109, 0.12); +} +body.theme-light .header-right-inner > li .submenu li a, +body.theme-light .single-blog .title a, +body.theme-light .avatar-info .content .title a { + color: #393939; +} +body.theme-light .header-right-inner > li .submenu li a:hover, +body.theme-light .single-blog .title a:hover, +body.theme-light .avatar-info .content .title a:hover { + color: #ff512f; +} +body.theme-light .mainmenu-nav .mainmenu li .submenu::after { + background: #fff; +} +body.theme-light h1, +body.theme-light h2, +body.theme-light h3, +body.theme-light h4, +body.theme-light h5, +body.theme-light h6, +body.theme-light .aw-h1, +body.theme-light .aw-h2, +body.theme-light .aw-h3, +body.theme-light .aw-h4, +body.theme-light .aw-h5, +body.theme-light .aw-h6 { + color: #393939; +} +body.theme-light h1 a:hover, +body.theme-light h2 a:hover, +body.theme-light h3 a:hover, +body.theme-light h4 a:hover, +body.theme-light h5 a:hover, +body.theme-light h6 a:hover, +body.theme-light .aw-h1 a:hover, +body.theme-light .aw-h2 a:hover, +body.theme-light .aw-h3 a:hover, +body.theme-light .aw-h4 a:hover, +body.theme-light .aw-h5 a:hover, +body.theme-light .aw-h6 a:hover { + color: #ff512f; +} +body.theme-light a { + color: rgba(0, 0, 0, 0.75); +} +body.theme-light a:hover { + color: #ff512f; +} +body.theme-light a.btn-gradient { + color: #fff; +} +body.theme-light a.color-primary { + color: #ff512f; + font-weight: 500; +} +body.theme-light .breadcrumb-item { + color: rgba(0, 0, 0, 0.75); +} +body.theme-light .breadcrumb-item a:hover { + color: #ff512f; +} +body.theme-light .breadcrumb-item.active { + color: #ff512f; +} +body.theme-light .header-fixed.sticky { + background: #fff; + border-color: #fff; + box-shadow: 0px 3px 16px rgba(47, 83, 109, 0.12); +} +body.theme-light .bg-1, +body.theme-light .bg-4, +body.theme-light .bg-3, +body.theme-light .bg-5 { + background-image: url(../img/headerbg.jpg); + background-color: #f9f9fc; +} +body.theme-light .bg-6 { + background-image: url(../img/headerbg.jpg); +} +body.theme-light .bg-7 { + background-image: url(../img/headerbg.jpg); +} +body.theme-light .hero-banner-style .banner-content p { + font-weight: 400; +} +body.theme-light .hero-banner-style .banner-content .title { + color: #393939; +} +body.theme-light .slick-dots li button { + border-color: #ff512f; +} +body.theme-light .hero-banner-style .banner-content .title span { + background: linear-gradient(-45deg, #ff512f, #dd2476, #ff512f, #dd2476); + background-size: 100% 100%; + -webkit-background-clip: text; + -webkit-text-stroke: 3px transparent; + -webkit-text-fill-color: #fff; +} +body.theme-light .hero-banner-style-3.hero-banner-style .banner-content .title span, +body.theme-light .hero-banner-style-4.hero-banner-style .banner-content .title span { + background: linear-gradient(-45deg, #ff512f, #dd2476, #ff512f, #dd2476); + background-size: 100% 100%; + -webkit-background-clip: text; + -webkit-text-stroke: 3px transparent; + -webkit-text-fill-color: #fff; +} +body.theme-light .hero-banner-style-6.hero-banner-style .banner-content .title span, +body.theme-light .hero-banner-style-2.hero-banner-style .banner-content .title span { + -webkit-text-stroke: 0; + -webkit-text-fill-color: transparent; +} +body.theme-light .default-tab-list button { + color: #555; +} +body.theme-light .default-tab-list button.is-checked { + color: #fff; +} +body.theme-light .explore-style-one .content .title a, +body.theme-light .explore-style-one .product-owner strong a, +body.theme-light .explore-style-one .product-owner .biding-price, +body.theme-light .more-dropdown i, +body.theme-light .popular-collection-style-one .title a, +body.theme-light .popular-collection-style-two .content .title a, +body.theme-light .single-author .content .title a, +body.theme-light .activity-wrapper .custom-history.notification-history h4 a, +body.theme-light .activity-wrapper .custom-history .single-item-history h3 a { + color: #393939; +} +body.theme-light .explore-style-one .content .title a:hover, +body.theme-light .explore-style-one .product-owner strong a:hover, +body.theme-light .explore-style-one .product-owner .biding-price:hover, +body.theme-light .more-dropdown i:hover, +body.theme-light .popular-collection-style-one .title a:hover, +body.theme-light .popular-collection-style-two .content .title a:hover, +body.theme-light .single-author .content .title a:hover, +body.theme-light .activity-wrapper .custom-history.notification-history h4 a:hover, +body.theme-light .activity-wrapper .custom-history .single-item-history h3 a:hover { + color: #ff512f; +} +body.theme-light .explore-style-one.selected-item { + background: #ffef95; +} +body.theme-light .explore-style-two, +body.theme-light .signin-form, +body.theme-light .signup-wrapper.header-free-signin .signin-form-2 { + background: #ffffff; + box-shadow: 0px 3px 16px rgba(47, 83, 109, 0.12); +} +body.theme-light .signin-form-2 { + box-shadow: none; +} +body.theme-light .explore-style-one { + background: #fff; + border: 1px solid #efefef; + box-shadow: 0px 3px 16px rgba(47, 83, 109, 0.12); +} +body.theme-light .slick-list { + margin-top: -25px; + margin-bottom: -25px; +} +@media (max-width: 575px) { + body.theme-light .slick-list { + margin-top: 15px; + margin-bottom: 15px; + } +} +body.theme-light .slider .explore-style-one, +body.theme-light .slider .single-blog, +body.theme-light .slider .card-block-style-one, +body.theme-light .slider .popular-collection-style-one { + margin-top: 25px; + margin-bottom: 25px; +} +@media (max-width: 575px) { + body.theme-light .slider .explore-style-one, +body.theme-light .slider .single-blog, +body.theme-light .slider .card-block-style-one, +body.theme-light .slider .popular-collection-style-one { + margin-top: 15px; + margin-bottom: 15px; + } +} +body.theme-light .hero-banner-style-4 .slider .explore-style-one { + margin-top: 0; +} +body.theme-light .hero-banner_inner .slick-list { + margin-top: 0; + margin-bottom: 0; +} +body.theme-light .slick-pagination-50 .slick-dots { + bottom: -10px; +} +body.theme-light button.slide-arrow { + background: #fff; + box-shadow: 0px 3px 16px rgba(47, 83, 109, 0.12); +} +body.theme-light button.slide-arrow i { + color: #393939; +} +body.theme-light .top-seller-style-one, +body.theme-light .popular-collection-style-one, +body.theme-light .top-seller-style-two, +body.theme-light .dropdown-menu-dark, +body.theme-light .filter-wrapper, +body.theme-light .custom-tabs, +body.theme-light .custom-tab-content, +body.theme-light .blog-content, +body.theme-light .single-widget, +body.theme-light .styler-1, +body.theme-light .blog-details-wrapper blockquote, +body.theme-light .contact-form-wrapper input, +body.theme-light .contact-form-wrapper textarea, +body.theme-light .post-media { + background: #fff; + box-shadow: 0px 3px 16px rgba(47, 83, 109, 0.12); +} +body.theme-light .custom-tab-content { + box-shadow: none; +} +body.theme-light .top-seller-style-one .title a, +body.theme-light .top-seller-style-two .title a { + color: #393939; +} +body.theme-light .top-seller-style-one .price { + color: rgba(0, 0, 0, 0.65); +} +body.theme-light .slick-activation-01 .slick-track { + padding-bottom: 15px; +} +body.theme-light .card-block-style-one { + background: #fff; + box-shadow: 0px 3px 16px rgba(47, 83, 109, 0.12); +} +body.theme-light .reaction-btn { + box-shadow: 0px 3px 16px rgba(47, 83, 109, 0.12); + background: #fff; + color: #393939; + border: 1px solid #dadce0; +} +body.theme-light .footer-widget ul li a, +body.theme-light .footer-widget ol li a { + color: rgba(0, 0, 0, 0.75); +} +body.theme-light .footer-widget ul li a:hover, +body.theme-light .footer-widget ol li a:hover { + color: #ff512f; +} +body.theme-light .social a { + border-color: rgba(0, 0, 0, 0.5); +} +body.theme-light .social a:hover { + color: #fff; +} +body.theme-light .explore-style-one .action-wrapper { + border-top: 1px dashed #999; +} +body.theme-light .modal-content { + background-color: #fff; + box-shadow: 0px 3px 16px rgba(47, 83, 109, 0.12); +} +body.theme-light .btn-custom-closer { + box-shadow: 0px 3px 16px rgba(47, 83, 109, 0.12); +} +body.theme-light .modal-header { + border-bottom-color: #dadce0; +} +body.theme-light .modal-footer { + border-top-color: #dadce0; +} +body.theme-light .single-item-history:not(:last-child) { + border-bottom-color: #dadce0; +} +body.theme-light .modal-content label, +body.theme-light .bidding-list li strong, +body.theme-light .modal-content input, +body.theme-light .blog-details-wrapper blockquote { + color: #393939; +} +body.theme-light .bidding-list li { + color: #555; + font-weight: 400; +} +body.theme-light .bid-success-content strong { + color: #393939; +} +body.theme-light .modal-content input { + border-color: #dadce0; +} +body.theme-light .shape.dark { + display: none; +} +body.theme-light .single-blog, +body.theme-light .popular-collection-style-two .content, +body.theme-light .single-author, +body.theme-light .top-seller-style-two, +body.theme-light .top-seller-style-one, +body.theme-light .popular-collection-style-one, +body.theme-light .popular-collection-style-two, +body.theme-light .wallet-block, +body.theme-light .form-field-wrapper, +body.theme-light .upload-area .brows-file-wrapper, +body.theme-light .signup-content, +body.theme-light .contact-inner-contnet { + background: #fff; + box-shadow: 0px 3px 16px rgba(47, 83, 109, 0.12); +} +body.theme-light .signup-content .medium { + color: rgba(0, 0, 0, 0.7); +} +body.theme-light label { + color: #393939; +} +body.theme-light b, +body.theme-light strong { + color: #393939; +} +body.theme-light .upload-area label { + border: none; +} +body.theme-light .upload-area label span { + color: #393939; +} +body.theme-light .form-field-wrapper input, +body.theme-light .form-field-wrapper textarea { + border-color: #dadce0; + color: #393939; +} +body.theme-light .top-seller-style-one { + margin-top: 25px; + margin-bottom: 25px; +} +body.theme-light .counter-style-1, +body.theme-light .top-seller-style-two .items-number strong, +body.theme-light .dropdown-menu-dark .dropdown-item { + color: #393939; +} +body.theme-light .hero-banner-style-2 .shape-7 { + display: none; +} +body.theme-light .top-seller-style-two .items-number::before { + background: #f5f8fa; +} +body.theme-light .top-seller-style-two .thumb { + border-color: #ff512f; +} +body.theme-light .dropdown-menu-dark .dropdown-item:focus, +body.theme-light .dropdown-menu-dark .dropdown-item:hover { + color: #fff; + background-color: #ff512f; +} +body.theme-light .card-block-style-one p { + font-weight: 400; +} +body.theme-light .nice-select { + background-color: #fff; + border-color: #dadce0; + color: #393939; +} +body.theme-light .nice-select:after { + border-bottom-color: #65676b; + border-right-color: #65676b; +} +body.theme-light .nice-select .list, +body.theme-light .biding-block { + background: #fff; + box-shadow: 0px 3px 16px rgba(47, 83, 109, 0.12); +} +body.theme-light .biding-block h3 { + color: #ff512f; +} +body.theme-light .details-content .custom-tabs li a.active { + color: #ff512f; +} +body.theme-light .details-content .subtitle, +body.theme-light .custom-tab-content .tab-pane .content p, +body.theme-light .details-content .custom-history .single-item-history .content span, +body.theme-light .custom-tab-content .tab-pane p, +body.theme-light .details-content .owner, +body.theme-light .biding-block span { + font-weight: 400; +} +body.theme-light .price-history, +body.theme-light .avatar-info .content .title { + font-weight: 500; +} +body.theme-light .custom-history { + /* Track */ + /* Handle */ +} +body.theme-light .custom-history::-webkit-scrollbar-track { + background: #ddd; + border-radius: 6px; +} +body.theme-light .custom-history::-webkit-scrollbar-thumb { + background: #999; + border-radius: 6px; +} +body.theme-light .price-history, +body.theme-light .price-history span, +body.theme-light .details-content .custom-tabs li a { + color: #393939; +} +body.theme-light .nice-select .list .option.selected, +body.theme-light .filter-wrapper .form-check label, +body.theme-light .widget-tag .filter-group .btn { + color: #393939; +} +body.theme-light .hero-banner-style.hero-banner-style-6 .sub-title { + color: #393939 !important; +} +body.theme-light .custom-tabs, +body.theme-light .custom-tab-content, +body.theme-light .details-dropdown .ri-more-fill, +body.theme-light .bidder { + background: #fff; +} +body.theme-light .nice-select .option:hover, +body.theme-light .nice-select .option.focus, +body.theme-light .nice-select .option.selected.focus { + background: #efefef; +} +body.theme-light .bidder { + border: none; + box-shadow: 0px 3px 16px rgba(47, 83, 109, 0.12); +} +body.theme-light .bidder .text-white { + color: #393939 !important; + font-weight: 500; +} +body.theme-light .form-check-input { + border: 2px solid #dadce0; +} +body.theme-light .filter-wrapper { + box-shadow: 0px 3px 16px rgba(47, 83, 109, 0.12); +} +body.theme-light .accordion-button, +body.theme-light .accordion-button:not(.collapsed) { + background: #efefef; + color: #393939; +} +body.theme-light .bg-overlay::before { + background: transparent; +} +body.theme-light .hero-banner-style.hero-banner-style-3 .banner-content p, +body.theme-light .hero-banner-style.hero-banner-style-5 .banner-content p, +body.theme-light .hero-banner-style.hero-banner-style-6 .banner-content p { + color: rgba(0, 0, 0, 0.6); +} +body.theme-light .btn-play { + font-weight: 500; + color: #393939; +} +body.theme-light .dropdown-menu-dark { + border: none; +} +body.theme-light .nice-select:active, +body.theme-light .nice-select.open, +body.theme-light .nice-select:focus, +body.theme-light .nice-select:hover { + border-color: #ff512f; +} +body.theme-light .single-item-history a.text-white { + font-weight: 500; + color: #393939 !important; +} +body.theme-light .single-item-history a.text-white:hover { + color: #ff512f !important; +} +body.theme-light .blog-content, +body.theme-light .single-widget, +body.theme-light .styler-1, +body.theme-light .upload-btn-wrapper, +body.theme-light .create-item-wrapper, +body.theme-light .signup-wrapper { + background: #fff; + color: #393939; +} +body.theme-light .create-item-wrapper, +body.theme-light .upload-btn-wrapper { + box-shadow: 0px 3px 16px rgba(47, 83, 109, 0.12); +} +body.theme-light .category-list .count-text, +body.theme-light .post-media, +body.theme-light .contact-form-wrapper input, +body.theme-light .contact-form-wrapper textarea, +body.theme-light .blog-details-wrapper blockquote { + background: #fff; + color: #393939; +} +body.theme-light .sidebar .category-list li:not(:last-child) a, +body.theme-light .recent-post ul li:not(:last-child) { + border-bottom-color: #dadce0; +} +body.theme-light .recent-post ul li a { + color: #65676b; +} +body.theme-light .recent-post ul li a:hover { + color: #ff512f; +} +body.theme-light .recent-post ul li .cate { + color: rgba(0, 0, 0, 0.65); +} +body.theme-light .widget-tag .filter-group .btn:hover { + color: #fff; +} +body.theme-light .title.text-white { + color: #393939 !important; +} +body.theme-light .single-comment-box .content .title span::before { + color: #65676b; +} +body.theme-light hr { + border-top-color: #dadce0; +} +body.theme-light .custom-tabs.author-tabs .btn:not(.active) { + color: rgba(0, 0, 0, 0.75); +} +body.theme-light .custom-tabs.author-tabs .btn:not(.active):hover { + color: #ff512f; +} +body.theme-light input[type=text], +body.theme-light input[type=password], +body.theme-light input[type=email], +body.theme-light input[type=number], +body.theme-light textarea { + border-color: #dadce0; +} +body.theme-light input[type=text]:focus, +body.theme-light input[type=password]:focus, +body.theme-light input[type=email]:focus, +body.theme-light input[type=number]:focus, +body.theme-light textarea:focus { + border-color: #ff512f; +} +body.theme-light .signup-wrapper .register-with { + border-color: #dadce0; +} +body.theme-light .popup-mobile-menu { + background-color: rgba(255, 255, 255, 0.8); +} +body.theme-light .popup-mobile-menu .inner, +body.theme-light .activity-wrapper .custom-history .single-item-history, +body.theme-light .signup { + background: #fff; + box-shadow: 0px 3px 16px rgba(47, 83, 109, 0.12); +} +body.theme-light .popup-mobile-menu .mainmenu li a { + color: #393939; +} +body.theme-light .popup-mobile-menu .inner .header-top { + border-bottom-color: #dadce0; +} +body.theme-light .activity-wrapper .custom-history .single-item-history .date { + color: #7b7b7b; +} +body.theme-light .activity-wrapper .custom-history.notification-history .reaction { + background: rgba(0, 0, 0, 0.1); +} +body.theme-light input[type=text], +body.theme-light input[type=password], +body.theme-light input[type=email], +body.theme-light input[type=number], +body.theme-light textarea { + color: #393939; +} +body.theme-light .normal { + font-weight: 500; +} +body.theme-light .subscribe-mail input { + border-color: #656565; +} +body.theme-light .inner-page-banner { + background-image: url(.../../img/bg/light-inner.jpg); +} +body.theme-light .inner-page-banner .inner { + background: rgba(255, 255, 255, 0.25); +} +body.theme-light .explore-style-one .profile-share a.more-author-text, +body.theme-light .biding-price { + font-weight: 500; +} +body.theme-light .meta li, +body.theme-light .single-item-history .content span { + font-weight: 400; +} +body.theme-light .section-bg-separation-3, +body.theme-light .hero-banner-style-one { + background: #fff; +} +body.theme-light .product-style-trendy .content-left .title a, +body.theme-light .product-style-trendy .content-left small { + color: #fff; +} +body.theme-light .product-style-trendy .content-left .title a:hover { + color: #ff512f; +} +body.theme-light .product-style-trendy .reaction-btn { + color: #fff; + background: #343444; +} +body.theme-light .new { + color: #65676b; +} +body.theme-light .gallery-thumb .thumb::before, +body.theme-light .gallery-thumb .thumb::after, +body.theme-light .gallery-thumb .thumb { + background: #fff; +} +body.theme-light .gallery-thumb .thumb::before, +body.theme-light .gallery-thumb .thumb::after { + box-shadow: 0px 3px 16px rgba(47, 83, 109, 0.12); +} + + + + +.dark-mode-header { + background: linear-gradient(254deg, #380000, #8a0000, #4f6900, #003a69, #2c0069, #5c0f3a, #2b2b2b, #000000); + background-size: 1600% 1600%; + + -webkit-animation: darkmode-header-gradient 153s ease infinite; + -moz-animation: darkmode-header-gradient 153s ease infinite; + animation: darkmode-header-gradient 153s ease infinite; +} + +.light-mode-header { + background: linear-gradient(254deg, #ffc3c3, #d9d4d4, #dffd84, #d0deea, #e0caff, #e2d4dc, #f1f1f1, #f9f9f9); + background-size: 1600% 1600%; + + -webkit-animation: lightmode-header-gradient 53s ease infinite; + -moz-animation: lightmode-header-gradient 53s ease infinite; + animation: lightmode-header-gradient 53s ease infinite; +} + +@-webkit-keyframes darkmode-header-gradient { + 0%{background-position:0% 99%} + 50%{background-position:100% 2%} + 100%{background-position:0% 99%} +} +@-moz-keyframes darkmode-header-gradient { + 0%{background-position:0% 99%} + 50%{background-position:100% 2%} + 100%{background-position:0% 99%} +} +@keyframes darkmode-header-gradient { + 0%{background-position:0% 99%} + 50%{background-position:100% 2%} + 100%{background-position:0% 99%} +} + +@-webkit-keyframes lightmode-header-gradient { + 0%{background-position:0% 99%} + 50%{background-position:100% 2%} + 100%{background-position:0% 99%} +} +@-moz-keyframes lightmode-header-gradient { + 0%{background-position:0% 99%} + 50%{background-position:100% 2%} + 100%{background-position:0% 99%} +} +@keyframes lightmode-header-gradient { + 0%{background-position:0% 99%} + 50%{background-position:100% 2%} + 100%{background-position:0% 99%} +} + +/*# sourceMappingURL=style.css.map */ diff --git a/site/resources/css/style.css.map b/site/resources/css/style.css.map new file mode 100644 index 0000000..c648600 --- /dev/null +++ b/site/resources/css/style.css.map @@ -0,0 +1 @@ +{"version":3,"sourceRoot":"","sources":["../scss/style.scss","../scss/defaults/_mixin.scss","../scss/defaults/_typography.scss","../scss/defaults/_variables.scss","../scss/defaults/_base.scss","../scss/defaults/_spacing.scss","../scss/defaults/_helper-class.scss","../scss/defaults/_form.scss","../scss/defaults/_button.scss","../scss/defaults/_browserhacks.scss","../scss/defaults/_preloader.scss","../scss/defaults/_slick-custom.scss","../scss/defaults/_animation.scss","../scss/defaults/_section-title.scss","../scss/defaults/_switcher.scss","../scss/components/_menu.scss","../scss/components/_header.scss","../scss/components/_hero.scss","../scss/components/_explore.scss","../scss/components/_top-seller.scss","../scss/components/_popular-collection.scss","../scss/components/_wallet-setup.scss","../scss/components/_tabs.scss","../scss/components/_modal.scss","../scss/components/_inner-page.scss","../scss/components/_counter.scss","../scss/components/_sidebar_filter.scss","../scss/components/_single-product.scss","../scss/components/_activity.scss","../scss/components/_blog.scss","../scss/components/_blog-details.scss","../scss/components/_authors.scss","../scss/components/_wallet.scss","../scss/components/_create-item.scss","../scss/components/_file-upload.scss","../scss/components/_signup.scss","../scss/components/_not-found.scss","../scss/components/_footer.scss","../scss/components/_nft-gallery.scss","../scss/components/_light-version.scss"],"names":[],"mappings":"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;EACE;;;AAIF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAIF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAIF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAIF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAKF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAIF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAIF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAIF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAIF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAIF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAOF;EACE;;;ACnwCF;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;AACA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGR;EACI;;ALbA;EKYJ;IAGQ;;;;AAGR;EACI;;ALnBA;EKkBJ;IAGQ;;;;AAIR;EACI;;AL1BA;EKyBJ;IAGQ;;;;AAGR;EACI;;ALhCA;EK+BJ;IAGQ;;;;AAGR;EACI;;ALtCA;EKqCJ;IAGQ;;;;AAGR;EACI;;AL5CA;EK2CJ;IAGQ;;;;AAGR;EACI,OHtEY;;;AGwEhB;EACI;;;AAGJ;EACI;;;AChFJ;AAAA;EAEI;EACA;;;AAGJ;AAAA;AAAA;AAAA;AAAA;EAKI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;AAAA;AAAA;AAAA;AAAA;EACI,cJjBQ;;;AIoBhB;EACI,kBJrBY;EIsBZ,cJtBY;;;AIwBhB;EACI;;AACA;EACI;;;AAGR;AACA;AAAA;EAEI;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;AACA;EACI;;;AAEJ;EACI;;;AAEJ;AACI;EACA,OJpDS;EIqDT;AAAY;;;AAGhB;AACI;EACA,OJ1DS;;;AI6Db;AACI;EACA,OJ/DS;;;AIkEb;EACI,kBJ5DS;EI6DT;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;;AAEJ;EACI;;;AAGR;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;;AACA;EACI;;;AAGR;AAAA;AAAA;EAGI;;;AAEJ;AAAA;AAAA;AAAA;EAII,cJxGY;;;AI0GhB;EACI;;;AAEJ;AAAA;AAAA;EAGI;;;AAEJ;EACI,cJnHY;;;AKHhB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;APmBA;EO9BJ;IAaQ;IACA;IACA;IACA;;;APoBJ;EOpCJ;IAmBQ;;;AAEJ;EACI;EACA;EACA;EACA,aLPC;;AKSL;EACI;;AAGJ;EACI;;AAEJ;EACI;EACA;;;AAGR;EACI;EACA;EACA;EACA;;APbA;EOSJ;IAMQ;;;;AAGR;EACI;EACA;EACA;EACA;;APhBA;EOYJ;IAMQ;IACA;IACA;;;;AAIR;EACI;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEJ;EAMI;EACA,YLlFQ;;AK4ER;EACI;EACA;EACA;;AAKR;EACI;;AAGA;EACI;;AAGR;EACI;EACA;;;AAGR;EACI;;AACA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;EACA;EACA;;;AAIZ;EACI,YL1HY;;;AK4HhB;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;EACA;EACA;;;AAIZ;EACI;;AACA;EACI,OLxJQ;;AK0JZ;EACI;;AAEJ;EACI;EACA,OL/JQ;;AF2BZ;EOkIA;IAIQ;;;;AAMZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA,OLpMY;EKqMZ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI,OLhNY;;;AKkNhB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI,QL9OY;EK+OZ;EACA;EACA;EACA;;;ACnPJ;AAGA;AACA;AAKA;ACVA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,YPLS;;;AOQb;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;AACA;EACI;EACA;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;IACI;;;AC3DR;EACI;;;AAEJ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEJ;EACI;EACA,cRvBQ;;;AQ4BZ;EACI;EACA;;AAEJ;EACI;EACA;;;AAKA;EACI;EACA;;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAMA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;EACA;;AAEJ;EACI;;;AAIZ;EACI;IACI;;;AAGR;EACI;IACI;;;AAGR;EACI;IACI;;;AAGR;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAGJ;EACI;;;AAEJ;EACI;;;AAIA;EACI;;AV3HJ;EU0HA;IAGQ;;;AVtHR;EUmHA;IAMQ;;;AAGR;EACI;;AV3IJ;EU0IA;IAIQ;;;AVvIR;EUmIA;IAOQ;;;;AAKZ;EACI;;;AAGJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAGA;EACI;;;ACtKR;EACE;;AACA;EACE;IACE;;EAEF;IACE;;;;AAIN;EACE;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;;AAGJ;EACE;;AACA;EACE;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;;;ACtCN;EACI;;AZ6BA;EY9BJ;IAGQ;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA,aVMC;;;AWlBT;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AboBA;Ea7BJ;IAWQ;IACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;;AAIR;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAEJ;EACI;;AACA;EACI;EACA;;AAEJ;EACI;EACA;;AAGR;EACI;EACA;;;ACpDR;EACE;EACA;EACA;EACA;EACA;EACA;;AACA;EAPF;IAQI;;;;AAGJ;EACE;EACA;;AACA;EAHF;IAII;;;;AAGJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA,aZPO;;AYQP;EARF;IASI;;;AAEF;EACE,OZ3BY;;;AY8BhB;EACE;IACE;;;AAGJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACE;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE,OZ9EU;;;AYkFhB;AAAA;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEF;EACE,OZlGc;EYmGd;;;AAEF;AAAA;EAEE;EACA;;;AAEF;EACE;EACA;EACA;;;AAGF;EACE;;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEF;EACE;IACE;;;AAIJ;EACE;EACA;;;AAGF;EACE;;;AAEF;EACE;;;AAEF;AAAA;EAEE;;;AAGF;EACE;EACA;;;AAMF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEF;EACE;EACA;EACA;EACA;EACA;;;AAEF;EACE;;;AAEF;EACE,YZnNiB;EYoNjB;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;EACA;;;AAEF;EACE;EACA;EACA;EACA;;;AAEF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA,aZ/OO;;;AYiPT;EACE;EACA;;;AAEF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;;;AAEF;EACE;EACA;EACA;EACA;EACA;;;AAEF;EACE;EACA;EACA;EACA;;;AAEF;EACE;;;AAGF;EACE;IACE;;;AAGJ;EACE;;;AAEF;EACE;;;AAEF;EACE;EACA;EACA;EACA;;;AAEF;EACE;;;AAEF;EACE;;AdlSE;EciSJ;IAGI;IACA;IACA;;;;ACnUA;EADJ;IAEQ;;;AfAJ;EeFJ;IAKQ;;;AfIJ;EeTJ;IAQQ;;;;AAGR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;;;AAKR;EACI;EACA;EACA;;AAGI;EACI;;AAGR;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;;AfdR;EeOA;IAUQ;IACA;;;AAGR;EACI;EACA;EACA;;AfxBJ;EeqBA;IAKQ;;;AfpBR;EeeA;IAQQ;;;AAGA;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AACA;EAEI;EACA;;AAEJ;EACI;;AAEJ;EACI;;AAEJ;EACI;EACA;EACA;;AAKhB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EAEI,ObtHR;;AawHI;EACI;;AAEJ;EACI;;AAMhB;EACI;;AAGA;EACI;EACA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YJ;EgB+XA;IAUQ;;;AAGR;EACI;;AAGA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACI;EACA;;;ACpbZ;EACI,YfOS;EeNT;EACA;EACA;EAmGA;;AAlGA;EACI;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;;AAIJ;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;;AACA;EACI,Of1BJ;;AegCR;EACI;EACA;EACA;;AAEA;EAEI;;AAEJ;EACI;;AAEJ;EACI;EACA;;AAKR;EACI;EACA;EACA;EACA;;AAIJ;EACI;EACA;EACA;EACA;EACA;;AAEJ;EACI;EACA;;AAEA;EACI,OfvEA;;Ae0ER;EACI;EACA;;AAEA;EACI,Of/EA;EegFA;;AAKZ;EACI;;AAEJ;EACI;EACA;;AAEA;EACI;EACA;EACA;;AAGR;EACI;;AAKI;EACI;;;AAMhB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI,Of7HM;Ee8HN;EACA;;AAEJ;EACI;EACA;;;AAGR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI,OfnJK;EeoJL;;AACA;EACI;;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAEJ;EACI;;AAGA;EACI;;AAGR;EACI;;AACA;EACI;;;AAKZ;EACI;EACA;EACA;EACA;EACA;;AAEI;EACI;EACA;;AAGR;EACI;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AjB/MJ;EiBmMA;IAcQ;;;AjB1MR;EiB4LA;IAiBQ;IACA;IACA;IACA;IACA;IACA;IACA;;;AjB5MR;EiBqLA;IA0BQ;IACA;IACA;;;AjB3MR;EiB+KA;IA+BQ;;EACA;IACI;;;AAGR;EACI;EACA;;AjBrNR;EiBmNI;IAIQ;IACA;;;AAGR;EACI;;AACA;EACI;EACA;EACA;EACA;EA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DZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;;AAEJ;EACI;EACA;EACA,cpBHW;;AoBKf;EACI,apBHC;EoBID;;;AAGR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AtBdA;EsBEJ;IAcQ;;;AAEJ;EACI,YpBvCQ;;AoBwCR;EACI;;;AAIZ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAEJ;EACI;EACA;EACA;;;AAMR;EACI;;AAEJ;EACI;;AAEJ;EACI;EACA;;;AAKR;EACI;;AACA;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEJ;EACI;EACA;;AAGR;EACI;EACA;;AACA;EACI;;AAEJ;EACI;;AtBrGR;EsBuGQ;IAEQ;IACA;;;;AAMpB;EACI;;;AC/IJ;EACI;EACA;;AvB4BA;EuB9BJ;IAIQ;;;AAEJ;EACI;EACA,arBUC;EqBTD;;AvBqBJ;EuBxBA;IAKQ;IACA;;;AAGR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AvBQJ;EuBfA;IAUQ;IACA;;;AAGR;EACI;;;AAGR;EACI;;;AClCJ;EACI,atBmBK;EsBlBL;EACA;;AACA;EACI;;AAEJ;EACI;EACA;EACA;EACA;;AxBTJ;EwBKA;IAMQ;;;AAGR;EACI;EACA;EACA;EACA;;AxBlBJ;EwBcA;IAMQ;;;AAGR;EACI;EACA;EACA;EACA;;;AAKR;EACI;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AxBhCA;EwBwBJ;IAUQ;IACA;;;AAGA;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AxBtDJ;EwB2CA;IAaQ;IACA;;;;AAKR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AxBtEJ;EwB8DA;IAUQ;;EACA;IACI;;;AAIZ;EACI;EACA;EACA;EACA;EACA;EACA;;AxBpFJ;EwB8EA;IAQQ;;;AAGJ;EACI;EACA;EACA;;AACA;EACI;;AACA;EACI,OtBpHJ;;AsBwHR;EACI;EACA;;AAEJ;EACI,OtB7HI;;AsBgIZ;EACI;EACA;;AACA;EACI;EACA;;;ACxIZ;AAAA;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI,YvBLS;EuBMT;EACA;EACA;EACA;;AzBTA;EyBIJ;IAOQ;;;AzBGJ;EyBVJ;IAUQ;;;AAIA;EACI;;AAGR;EACI;EACA;;AACA;EACI;EACA;;AAEJ;AAAA;EAEI;;AAGA;EACI,kBvBzCA;EuB0CA,cvB1CA;;AuB4CJ;EACI;;;AAKhB;EACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AC9DJ;EACI,YxBQS;EwBPT;EACA;EACA;EACA;EACA;EACA;;AAEI;EACI;;AAEJ;EACI;;AACA;EACI,OxBZA;;;AwBiBhB;EACI,YxBZS;EwBaT;EACA;;A1BOA;E0BVJ;IAKQ;;;AAGJ;EACI;;AAEI;EACI;;AAEJ;EACI;EACA;EACA;EACA;;AAIJ;EACI;EACA;;A1B5BZ;E0B0BQ;IAIQ;IACA;;;AAIZ;EACI;EACA;;AAGA;EACI;;AAGR;EACI;;;AAIZ;EACI;;A1BlDA;E0BiDJ;IAGQ;;;AAEJ;EACI;EACA;EACA;;A1B3CJ;E0BwCA;IAKQ;IACA;;;AAGR;EACI;EACA;EACA;;AAGA;EACI;EACA;EACA,axBtEH;;AwBuEG;EACI,OxBvFA;;AwB2FZ;EACI;EACA;EACA;AAQA;AAMA;AAMA;;A1BvFJ;E0BgEA;IAKQ;;;AAEJ;EACI;;AAIJ;EACI;EACA;;AAIJ;EACI;EACA;;AAIJ;EACI;;AAEJ;EACI;;AAGR;EACI;;AAEJ;EACI;;AAEJ;EACI;EACA;EACA;;;A1BxGJ;E0B2GJ;IAEQ;IACA;;EACA;IACI;;;;AAIZ;EACI,YxB1IS;EwB2IT;EACA;EACA;EACA;EACA;;AACA;EACI;;AAEJ;EACI;;;AAGR;EACI,YxBxJS;EwByJT;EACA;EACA;;AACA;EACI;EACA;;AAEJ;EACI,OxBvKQ;;AwByKZ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI,OxBlLI;EwBmLJ;;;AAKR;EACI;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;;AAGR;EACI;;AACA;EACI;;AAEJ;EACI;;;AAMR;EACI,YxB1MK;EwB2ML;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAMA;EACI;;AAEJ;EACI;;;AAKZ;EACI;EACA;EACA;EACA,axB5NK;;AFYL;E0B4MJ;IAMQ;;;AAGJ;EACI;EACA,axBlOC;EwBmOD;;;A1BtOJ;E0B8OA;AAAA;IAEI;;;AChQR;EACI;;AACA;EACI;EACA;EACA;EACA;EACA;EACA;EACA,YzBNQ;;;AyBWZ;EACI;EACA;;;AAGR;EACI;EACA;EACA;;AACA;EACI;EACA;EACA;EACA,OzBzBK;;AyB0BL;EACI;;;AAMR;EACI;EACA;;AAEJ;EACI;;A3BVJ;E2BSA;IAGQ;;;AAGJ;EACI;;AAEJ;EACI,YzBxCC;EyByCD;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;;AACA;EACI;;AACA;EACI,OzB1DR;;AyB+DJ;EACI;EACA;;AAEJ;EACI;EACA;EACA;;AAIJ;EACI;;AACA;EACI;;AAGR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;;AAGA;EACI,OzB/FR;;AyBoGJ;EACI,YzB/FH;;AF2BT;E2BmEQ;IAGQ;;EAEA;IACI;IACA;IACA;;;;A3BjFpB;E2BwFJ;IAEQ;IACA;;;;ACzHR;EACI,Y1BQS;E0BPT;EACA;;AAEA;EACI;EACA;EACA;;AACA;EACI;;AAGR;EACI;EACA;;AAEJ;EACI;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;;AAKA;EACI;;AAGR;EACI,O1BjCI;;;A0BqChB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;;;AC9DJ;EACI;EACA;;A7BoBJ;E6BtBA;IAIQ;IACA;;;A7BwBR;E6B7BA;IAQQ;IACA;;;AAIR;AAAA;EAEI;;AAEJ;EACI;EACA;;AAEJ;EACI;EACA;;AAEJ;EACI;EACA;;AACA;EACI;EACA;EACA;;A7BTR;E6BMI;IAKQ;;;AAIZ;EACI;;AAEJ;EACI,Y3B9BK;E2B+BL;EACA;EACA;EACA;EACA;EACA,a3B9BC;E2B+BD;EACA;;A7BpBJ;E6BWA;IAWQ;IACA;;;;AAIZ;EACI,Y3BjDS;E2BkDT;EACA;;;AAEJ;EACI,Y3BrDW;E2BsDX;EACA;;;AAGJ;EACI,Y3B5DS;E2B6DT;EACA;EACA;;A7B1CA;E6BsCJ;IAMQ;;;;AAIJ;EACI;;AAEI;EACI;;AAEJ;EACI;;AAEJ;EACI;;A7B1DZ;E6ByDQ;IAGQ;;;;A7B5DhB;E6BkEJ;IAEQ;IACA;;;AAGA;EACI;EACA;EACA;EACA;EACA;EACA;;A7BrFR;E6B+EI;IAQQ;IACA;IACA;;;AAEJ;EACI;EACA;;AAIZ;EACI;;AACA;EACI;EACA;EACA;;AACA;EACI;;AACA;EACI,O3B9HJ;;A2BiIJ;EACI;EACA,O3BpIH;E2BqIG;EACA;;AACA;EACI;EACA;EACA;EACA;;AAIZ;EACI;;A7BlIR;E6BiII;IAGQ;;;A7BtHZ;E6BmHI;IAMQ;IACA;;;AAIZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;;AAEJ;EACI,c3BxKI;E2B4KJ;;AAHA;EACI,O3B1KA;;;AF2BZ;E6BqJJ;AAAA;IAGQ;;;;AAKJ;AAAA;EAEI;EACA;EACA;;AAEJ;EACI;;;AAKR;EACI;;A7BxLA;E6BuLJ;IAGQ;;;AAGA;EACI;EACA;;AACA;EACI;EACA;;AAEA;EACI,O3BlNJ;;A2BsNA;EACI,O3BvNJ;;A2B2NA;EACI;EACA;;;AAMpB;EACI,Y3B9NS;E2B+NT;EACA;;AAEA;EACI;EACA;EACA,a3B5NC;;A2B6ND;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGR;EACI;EACA;;AACA;EACI;;AACA;EACI;;;AAMZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA,a3B1PC;;;A2B+PD;EACI;;AAEA;EACI;EACA;;AAEJ;EACI;;AACA;EACI,O3BxRJ;;A2B2RJ;EACI,O3B7RH;E2B8RG;EACA;EACA;;;AAMZ;EACI;;AACA;EACI;;;AC3SZ;EACI,Y5BQS;E4BPT;EACA;EACA;;AAEA;EACI;EACA;EACA;;AACA;EACI;;AAGR;EACI;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;;AACA;EACI;EACA;;AAGR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;;AAGR;EACI;;AACA;EACI;;AAIJ;EACI;EACA;;AAGA;EACI;;AAEJ;EACI;EACA,O5BzDJ;;A4B8DZ;EASI;;AAPI;EACI,c5BjEA;;A4BkEA;EACI;;AAQZ;EACI,c5B5EI;;A4B8ER;EACI;EACA;;AACA;EACI;;AAGR;EACI;EACA;;AAGA;EACI;EACA;EACA;;AAGR;EACI;EACA;EACA;;;AAOR;EACI;;AACA;EACI;EACA;EACA,O5BhHC;;A4BiHD;EACI;;AAEJ;EACI;EACA,c5BrHA;E4BsHA,O5BtHA;E4BuHA;;AAEJ;EACI,Y5B1HA;E4B2HA,c5B3HA;E4B4HA;;AAGR;EACI;;AACA;EACI;;;AAMhB;EACI;;A9B5HA;E8B2HJ;IAGQ;;;;AC9IR;EACI,Y7BQS;E6BPT;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAEJ;EACI;EACA;EACA;;AAEJ;EACI;EACA;;;AC9BR;EACI,Y9BQS;E8BPT;EACA;;AhCoBA;EgCvBJ;IAKQ;;;;ACLR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA,O/BZY;E+BaZ;;;AAEJ;EACI;EACA,a/BDK;;;A+BGT;EACI;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;AACA;EACI;;;AAGR;EACI;EACA;EACA;EACA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","file":"style.css"} \ No newline at end of file diff --git a/site/resources/css/vendor/aos.css b/site/resources/css/vendor/aos.css new file mode 100644 index 0000000..66923fe --- /dev/null +++ b/site/resources/css/vendor/aos.css @@ -0,0 +1 @@ +[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translateZ(0)}[data-aos=fade-up]{transform:translate3d(0,100px,0)}[data-aos=fade-down]{transform:translate3d(0,-100px,0)}[data-aos=fade-right]{transform:translate3d(-100px,0,0)}[data-aos=fade-left]{transform:translate3d(100px,0,0)}[data-aos=fade-up-right]{transform:translate3d(-100px,100px,0)}[data-aos=fade-up-left]{transform:translate3d(100px,100px,0)}[data-aos=fade-down-right]{transform:translate3d(-100px,-100px,0)}[data-aos=fade-down-left]{transform:translate3d(100px,-100px,0)}[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translateZ(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translate3d(0,100px,0) scale(.6)}[data-aos=zoom-in-down]{transform:translate3d(0,-100px,0) scale(.6)}[data-aos=zoom-in-right]{transform:translate3d(-100px,0,0) scale(.6)}[data-aos=zoom-in-left]{transform:translate3d(100px,0,0) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translate3d(0,100px,0) scale(1.2)}[data-aos=zoom-out-down]{transform:translate3d(0,-100px,0) scale(1.2)}[data-aos=zoom-out-right]{transform:translate3d(-100px,0,0) scale(1.2)}[data-aos=zoom-out-left]{transform:translate3d(100px,0,0) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translateZ(0)}[data-aos=slide-up]{transform:translate3d(0,100%,0)}[data-aos=slide-down]{transform:translate3d(0,-100%,0)}[data-aos=slide-right]{transform:translate3d(-100%,0,0)}[data-aos=slide-left]{transform:translate3d(100%,0,0)}[data-aos^=flip][data-aos^=flip]{backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}[data-aos=flip-down].aos-animate{transform:perspective(2500px) rotateX(0)} \ No newline at end of file diff --git a/site/resources/css/vendor/bootstrap.min.css b/site/resources/css/vendor/bootstrap.min.css new file mode 100644 index 0000000..32ac0f8 --- /dev/null +++ b/site/resources/css/vendor/bootstrap.min.css @@ -0,0 +1,9828 @@ +@charset 'UTF-8'; + +/*! + * Bootstrap v5.1.3 (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 { + --bs-blue: #0d6efd; + --bs-indigo: #6610f2; + --bs-purple: #6f42c1; + --bs-pink: #d63384; + --bs-red: #dc3545; + --bs-orange: #fd7e14; + --bs-yellow: #ffc107; + --bs-green: #198754; + --bs-teal: #20c997; + --bs-cyan: #0dcaf0; + --bs-white: #fff; + --bs-gray: #6c757d; + --bs-gray-dark: #343a40; + --bs-gray-100: #f8f9fa; + --bs-gray-200: #e9ecef; + --bs-gray-300: #dee2e6; + --bs-gray-400: #ced4da; + --bs-gray-500: #adb5bd; + --bs-gray-600: #6c757d; + --bs-gray-700: #495057; + --bs-gray-800: #343a40; + --bs-gray-900: #212529; + --bs-primary: #0d6efd; + --bs-secondary: #6c757d; + --bs-success: #198754; + --bs-info: #0dcaf0; + --bs-warning: #ffc107; + --bs-danger: #dc3545; + --bs-light: #f8f9fa; + --bs-dark: #212529; + --bs-primary-rgb: 13, 110, 253; + --bs-secondary-rgb: 108, 117, 125; + --bs-success-rgb: 25, 135, 84; + --bs-info-rgb: 13, 202, 240; + --bs-warning-rgb: 255, 193, 7; + --bs-danger-rgb: 220, 53, 69; + --bs-light-rgb: 248, 249, 250; + --bs-dark-rgb: 33, 37, 41; + --bs-white-rgb: 255, 255, 255; + --bs-black-rgb: 0, 0, 0; + --bs-body-color-rgb: 33, 37, 41; + --bs-body-bg-rgb: 255, 255, 255; + --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", + "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --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)); + --bs-body-font-family: var(--bs-font-sans-serif); + --bs-body-font-size: 1rem; + --bs-body-font-weight: 400; + --bs-body-line-height: 1.5; + --bs-body-color: #212529; + --bs-body-bg: #fff; +} +*, +::after, +::before { + box-sizing: border-box; +} +@media (prefers-reduced-motion: no-preference) { + :root { + scroll-behavior: smooth; + } +} +body { + margin: 0; + font-family: var(--bs-body-font-family); + font-size: var(--bs-body-font-size); + font-weight: var(--bs-body-font-weight); + line-height: var(--bs-body-line-height); + color: var(--bs-body-color); + text-align: var(--bs-body-text-align); + background-color: var(--bs-body-bg); + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: transparent; +} +hr { + margin: 1rem 0; + color: inherit; + background-color: currentColor; + border: 0; + opacity: 0.25; +} +hr:not([size]) { + height: 1px; +} +.h1, +.h2, +.h3, +.h4, +.h5, +.h6, +h1, +h2, +h3, +h4, +h5, +h6 { + margin-top: 0; + margin-bottom: 0.5rem; + font-weight: 500; + line-height: 1.2; +} +.h1, +h1 { + font-size: calc(1.375rem + 1.5vw); +} +@media (min-width: 1200px) { + .h1, + h1 { + font-size: 2.5rem; + } +} +.h2, +h2 { + font-size: calc(1.325rem + 0.9vw); +} +@media (min-width: 1200px) { + .h2, + h2 { + font-size: 2rem; + } +} +.h3, +h3 { + font-size: calc(1.3rem + 0.6vw); +} +@media (min-width: 1200px) { + .h3, + h3 { + font-size: 1.75rem; + } +} +.h4, +h4 { + font-size: calc(1.275rem + 0.3vw); +} +@media (min-width: 1200px) { + .h4, + h4 { + font-size: 1.5rem; + } +} +.h5, +h5 { + font-size: 1.25rem; +} +.h6, +h6 { + font-size: 1rem; +} +p { + margin-top: 0; + margin-bottom: 1rem; +} +abbr[data-bs-original-title], +abbr[title] { + -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-left: 2rem; +} +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: 0.5rem; + margin-left: 0; +} +blockquote { + margin: 0 0 1rem; +} +b, +strong { + font-weight: bolder; +} +.small, +small { + font-size: 0.875em; +} +.mark, +mark { + padding: 0.2em; + background-color: #fcf8e3; +} +sub, +sup { + position: relative; + font-size: 0.75em; + line-height: 0; + vertical-align: baseline; +} +sub { + bottom: -0.25em; +} +sup { + top: -0.5em; +} +a { + color: #0d6efd; + text-decoration: underline; +} +a:hover { + color: #0a58ca; +} +a:not([href]):not([class]), +a:not([href]):not([class]):hover { + color: inherit; + text-decoration: none; +} +code, +kbd, +pre, +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: 0.875em; +} +pre code { + font-size: inherit; + color: inherit; + word-break: normal; +} +code { + font-size: 0.875em; + color: #d63384; + word-wrap: break-word; +} +a > code { + color: inherit; +} +kbd { + padding: 0.2rem 0.4rem; + font-size: 0.875em; + color: #fff; + background-color: #212529; + border-radius: 0.2rem; +} +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: #6c757d; + text-align: left; +} +th { + text-align: inherit; + text-align: -webkit-match-parent; +} +tbody, +td, +tfoot, +th, +thead, +tr { + border-color: inherit; + border-style: solid; + border-width: 0; +} +label { + display: inline-block; +} +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, +select { + text-transform: none; +} +[role="button"] { + cursor: pointer; +} +select { + word-wrap: normal; +} +select:disabled { + opacity: 1; +} +[list]::-webkit-calendar-picker-indicator { + display: none; +} +[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; +} +::-moz-focus-inner { + padding: 0; + border-style: none; +} +textarea { + resize: vertical; +} +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} +legend { + float: left; + 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: left; +} +::-webkit-datetime-edit-day-field, +::-webkit-datetime-edit-fields-wrapper, +::-webkit-datetime-edit-hour-field, +::-webkit-datetime-edit-minute, +::-webkit-datetime-edit-month-field, +::-webkit-datetime-edit-text, +::-webkit-datetime-edit-year-field { + padding: 0; +} +::-webkit-inner-spin-button { + height: auto; +} +[type="search"] { + outline-offset: -2px; + -webkit-appearance: textfield; +} +::-webkit-search-decoration { + -webkit-appearance: none; +} +::-webkit-color-swatch-wrapper { + padding: 0; +} +::-webkit-file-upload-button { + font: inherit; +} +::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.25rem; + font-weight: 300; +} +.display-1 { + font-size: calc(1.625rem + 4.5vw); + font-weight: 300; + line-height: 1.2; +} +@media (min-width: 1200px) { + .display-1 { + font-size: 5rem; + } +} +.display-2 { + font-size: calc(1.575rem + 3.9vw); + font-weight: 300; + line-height: 1.2; +} +@media (min-width: 1200px) { + .display-2 { + font-size: 4.5rem; + } +} +.display-3 { + font-size: calc(1.525rem + 3.3vw); + font-weight: 300; + line-height: 1.2; +} +@media (min-width: 1200px) { + .display-3 { + font-size: 4rem; + } +} +.display-4 { + font-size: calc(1.475rem + 2.7vw); + font-weight: 300; + line-height: 1.2; +} +@media (min-width: 1200px) { + .display-4 { + font-size: 3.5rem; + } +} +.display-5 { + font-size: calc(1.425rem + 2.1vw); + font-weight: 300; + line-height: 1.2; +} +@media (min-width: 1200px) { + .display-5 { + font-size: 3rem; + } +} +.display-6 { + font-size: calc(1.375rem + 1.5vw); + font-weight: 300; + line-height: 1.2; +} +@media (min-width: 1200px) { + .display-6 { + font-size: 2.5rem; + } +} +.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: 0.875em; + text-transform: uppercase; +} +.blockquote { + margin-bottom: 1rem; + font-size: 1.25rem; +} +.blockquote > :last-child { + margin-bottom: 0; +} +.blockquote-footer { + margin-top: -1rem; + margin-bottom: 1rem; + font-size: 0.875em; + color: #6c757d; +} +.blockquote-footer::before { + content: "— "; +} +.img-fluid { + max-width: 100%; + height: auto; +} +.img-thumbnail { + padding: 0.25rem; + background-color: #fff; + border: 1px solid #dee2e6; + 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: 0.875em; + color: #6c757d; +} +.container, +.container-fluid, +.container-lg, +.container-md, +.container-sm, +.container-xl, +.container-xxl { + width: 100%; + padding-right: var(--bs-gutter-x, 0.75rem); + padding-left: var(--bs-gutter-x, 0.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; + } +} +@media (min-width: 1400px) { + .container, + .container-lg, + .container-md, + .container-sm, + .container-xl, + .container-xxl { + max-width: 1320px; + } +} +.row { + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + display: flex; + flex-wrap: wrap; + margin-top: calc(-1 * var(--bs-gutter-y)); + margin-right: calc(-0.5 * var(--bs-gutter-x)); + margin-left: calc(-0.5 * var(--bs-gutter-x)); +} +.row > * { + flex-shrink: 0; + width: 100%; + max-width: 100%; + padding-right: calc(var(--bs-gutter-x) * 0.5); + padding-left: calc(var(--bs-gutter-x) * 0.5); + margin-top: var(--bs-gutter-y); +} +.col { + flex: 1 0 0%; +} +.row-cols-auto > * { + flex: 0 0 auto; + width: auto; +} +.row-cols-1 > * { + flex: 0 0 auto; + width: 100%; +} +.row-cols-2 > * { + flex: 0 0 auto; + width: 50%; +} +.row-cols-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; +} +.row-cols-4 > * { + flex: 0 0 auto; + width: 25%; +} +.row-cols-5 > * { + flex: 0 0 auto; + width: 20%; +} +.row-cols-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; +} +.col-auto { + flex: 0 0 auto; + width: auto; +} +.col-1 { + flex: 0 0 auto; + width: 8.33333333%; +} +.col-2 { + flex: 0 0 auto; + width: 16.66666667%; +} +.col-3 { + flex: 0 0 auto; + width: 25%; +} +.col-4 { + flex: 0 0 auto; + width: 33.33333333%; +} +.col-5 { + flex: 0 0 auto; + width: 41.66666667%; +} +.col-6 { + flex: 0 0 auto; + width: 50%; +} +.col-7 { + flex: 0 0 auto; + width: 58.33333333%; +} +.col-8 { + flex: 0 0 auto; + width: 66.66666667%; +} +.col-9 { + flex: 0 0 auto; + width: 75%; +} +.col-10 { + flex: 0 0 auto; + width: 83.33333333%; +} +.col-11 { + flex: 0 0 auto; + width: 91.66666667%; +} +.col-12 { + flex: 0 0 auto; + width: 100%; +} +.offset-1 { + margin-left: 8.33333333%; +} +.offset-2 { + margin-left: 16.66666667%; +} +.offset-3 { + margin-left: 25%; +} +.offset-4 { + margin-left: 33.33333333%; +} +.offset-5 { + margin-left: 41.66666667%; +} +.offset-6 { + margin-left: 50%; +} +.offset-7 { + margin-left: 58.33333333%; +} +.offset-8 { + margin-left: 66.66666667%; +} +.offset-9 { + margin-left: 75%; +} +.offset-10 { + margin-left: 83.33333333%; +} +.offset-11 { + margin-left: 91.66666667%; +} +.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.5rem; +} +.g-4, +.gy-4 { + --bs-gutter-y: 1.5rem; +} +.g-5, +.gx-5 { + --bs-gutter-x: 3rem; +} +.g-5, +.gy-5 { + --bs-gutter-y: 3rem; +} +@media (min-width: 576px) { + .col-sm { + flex: 1 0 0%; + } + .row-cols-sm-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-sm-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-sm-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-sm-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-sm-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-sm-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-sm-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-sm-auto { + flex: 0 0 auto; + width: auto; + } + .col-sm-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-sm-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-sm-3 { + flex: 0 0 auto; + width: 25%; + } + .col-sm-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-sm-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-sm-6 { + flex: 0 0 auto; + width: 50%; + } + .col-sm-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-sm-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-sm-9 { + flex: 0 0 auto; + width: 75%; + } + .col-sm-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-sm-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-sm-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-sm-0 { + margin-left: 0; + } + .offset-sm-1 { + margin-left: 8.33333333%; + } + .offset-sm-2 { + margin-left: 16.66666667%; + } + .offset-sm-3 { + margin-left: 25%; + } + .offset-sm-4 { + margin-left: 33.33333333%; + } + .offset-sm-5 { + margin-left: 41.66666667%; + } + .offset-sm-6 { + margin-left: 50%; + } + .offset-sm-7 { + margin-left: 58.33333333%; + } + .offset-sm-8 { + margin-left: 66.66666667%; + } + .offset-sm-9 { + margin-left: 75%; + } + .offset-sm-10 { + margin-left: 83.33333333%; + } + .offset-sm-11 { + margin-left: 91.66666667%; + } + .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.5rem; + } + .g-sm-4, + .gy-sm-4 { + --bs-gutter-y: 1.5rem; + } + .g-sm-5, + .gx-sm-5 { + --bs-gutter-x: 3rem; + } + .g-sm-5, + .gy-sm-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 768px) { + .col-md { + flex: 1 0 0%; + } + .row-cols-md-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-md-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-md-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-md-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-md-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-md-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-md-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-md-auto { + flex: 0 0 auto; + width: auto; + } + .col-md-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-md-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-md-3 { + flex: 0 0 auto; + width: 25%; + } + .col-md-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-md-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-md-6 { + flex: 0 0 auto; + width: 50%; + } + .col-md-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-md-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-md-9 { + flex: 0 0 auto; + width: 75%; + } + .col-md-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-md-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-md-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-md-0 { + margin-left: 0; + } + .offset-md-1 { + margin-left: 8.33333333%; + } + .offset-md-2 { + margin-left: 16.66666667%; + } + .offset-md-3 { + margin-left: 25%; + } + .offset-md-4 { + margin-left: 33.33333333%; + } + .offset-md-5 { + margin-left: 41.66666667%; + } + .offset-md-6 { + margin-left: 50%; + } + .offset-md-7 { + margin-left: 58.33333333%; + } + .offset-md-8 { + margin-left: 66.66666667%; + } + .offset-md-9 { + margin-left: 75%; + } + .offset-md-10 { + margin-left: 83.33333333%; + } + .offset-md-11 { + margin-left: 91.66666667%; + } + .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.5rem; + } + .g-md-4, + .gy-md-4 { + --bs-gutter-y: 1.5rem; + } + .g-md-5, + .gx-md-5 { + --bs-gutter-x: 3rem; + } + .g-md-5, + .gy-md-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 992px) { + .col-lg { + flex: 1 0 0%; + } + .row-cols-lg-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-lg-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-lg-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-lg-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-lg-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-lg-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-lg-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-lg-auto { + flex: 0 0 auto; + width: auto; + } + .col-lg-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-lg-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-lg-3 { + flex: 0 0 auto; + width: 25%; + } + .col-lg-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-lg-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-lg-6 { + flex: 0 0 auto; + width: 50%; + } + .col-lg-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-lg-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-lg-9 { + flex: 0 0 auto; + width: 75%; + } + .col-lg-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-lg-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-lg-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-lg-0 { + margin-left: 0; + } + .offset-lg-1 { + margin-left: 8.33333333%; + } + .offset-lg-2 { + margin-left: 16.66666667%; + } + .offset-lg-3 { + margin-left: 25%; + } + .offset-lg-4 { + margin-left: 33.33333333%; + } + .offset-lg-5 { + margin-left: 41.66666667%; + } + .offset-lg-6 { + margin-left: 50%; + } + .offset-lg-7 { + margin-left: 58.33333333%; + } + .offset-lg-8 { + margin-left: 66.66666667%; + } + .offset-lg-9 { + margin-left: 75%; + } + .offset-lg-10 { + margin-left: 83.33333333%; + } + .offset-lg-11 { + margin-left: 91.66666667%; + } + .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.5rem; + } + .g-lg-4, + .gy-lg-4 { + --bs-gutter-y: 1.5rem; + } + .g-lg-5, + .gx-lg-5 { + --bs-gutter-x: 3rem; + } + .g-lg-5, + .gy-lg-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 1200px) { + .col-xl { + flex: 1 0 0%; + } + .row-cols-xl-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-xl-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-xl-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-xl-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-xl-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-xl-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-xl-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-xl-auto { + flex: 0 0 auto; + width: auto; + } + .col-xl-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-xl-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xl-3 { + flex: 0 0 auto; + width: 25%; + } + .col-xl-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-xl-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-xl-6 { + flex: 0 0 auto; + width: 50%; + } + .col-xl-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-xl-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-xl-9 { + flex: 0 0 auto; + width: 75%; + } + .col-xl-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-xl-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-xl-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-xl-0 { + margin-left: 0; + } + .offset-xl-1 { + margin-left: 8.33333333%; + } + .offset-xl-2 { + margin-left: 16.66666667%; + } + .offset-xl-3 { + margin-left: 25%; + } + .offset-xl-4 { + margin-left: 33.33333333%; + } + .offset-xl-5 { + margin-left: 41.66666667%; + } + .offset-xl-6 { + margin-left: 50%; + } + .offset-xl-7 { + margin-left: 58.33333333%; + } + .offset-xl-8 { + margin-left: 66.66666667%; + } + .offset-xl-9 { + margin-left: 75%; + } + .offset-xl-10 { + margin-left: 83.33333333%; + } + .offset-xl-11 { + margin-left: 91.66666667%; + } + .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.5rem; + } + .g-xl-4, + .gy-xl-4 { + --bs-gutter-y: 1.5rem; + } + .g-xl-5, + .gx-xl-5 { + --bs-gutter-x: 3rem; + } + .g-xl-5, + .gy-xl-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 1400px) { + .col-xxl { + flex: 1 0 0%; + } + .row-cols-xxl-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-xxl-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-xxl-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-xxl-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-xxl-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-xxl-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-xxl-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-xxl-auto { + flex: 0 0 auto; + width: auto; + } + .col-xxl-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-xxl-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xxl-3 { + flex: 0 0 auto; + width: 25%; + } + .col-xxl-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-xxl-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-xxl-6 { + flex: 0 0 auto; + width: 50%; + } + .col-xxl-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-xxl-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-xxl-9 { + flex: 0 0 auto; + width: 75%; + } + .col-xxl-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-xxl-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-xxl-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-xxl-0 { + margin-left: 0; + } + .offset-xxl-1 { + margin-left: 8.33333333%; + } + .offset-xxl-2 { + margin-left: 16.66666667%; + } + .offset-xxl-3 { + margin-left: 25%; + } + .offset-xxl-4 { + margin-left: 33.33333333%; + } + .offset-xxl-5 { + margin-left: 41.66666667%; + } + .offset-xxl-6 { + margin-left: 50%; + } + .offset-xxl-7 { + margin-left: 58.33333333%; + } + .offset-xxl-8 { + margin-left: 66.66666667%; + } + .offset-xxl-9 { + margin-left: 75%; + } + .offset-xxl-10 { + margin-left: 83.33333333%; + } + .offset-xxl-11 { + margin-left: 91.66666667%; + } + .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.5rem; + } + .g-xxl-4, + .gy-xxl-4 { + --bs-gutter-y: 1.5rem; + } + .g-xxl-5, + .gx-xxl-5 { + --bs-gutter-x: 3rem; + } + .g-xxl-5, + .gy-xxl-5 { + --bs-gutter-y: 3rem; + } +} +.table { + --bs-table-bg: transparent; + --bs-table-accent-bg: transparent; + --bs-table-striped-color: #212529; + --bs-table-striped-bg: rgba(0, 0, 0, 0.05); + --bs-table-active-color: #212529; + --bs-table-active-bg: rgba(0, 0, 0, 0.1); + --bs-table-hover-color: #212529; + --bs-table-hover-bg: rgba(0, 0, 0, 0.075); + width: 100%; + margin-bottom: 1rem; + color: #212529; + vertical-align: top; + border-color: #dee2e6; +} +.table > :not(caption) > * > * { + padding: 0.5rem 0.5rem; + background-color: var(--bs-table-bg); + border-bottom-width: 1px; + box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg); +} +.table > tbody { + vertical-align: inherit; +} +.table > thead { + vertical-align: bottom; +} +.table > :not(:first-child) { + border-top: 2px solid 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-borderless > :not(:first-child) { + border-top-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: #cfe2ff; + --bs-table-striped-bg: #c5d7f2; + --bs-table-striped-color: #000; + --bs-table-active-bg: #bacbe6; + --bs-table-active-color: #000; + --bs-table-hover-bg: #bfd1ec; + --bs-table-hover-color: #000; + color: #000; + border-color: #bacbe6; +} +.table-secondary { + --bs-table-bg: #e2e3e5; + --bs-table-striped-bg: #d7d8da; + --bs-table-striped-color: #000; + --bs-table-active-bg: #cbccce; + --bs-table-active-color: #000; + --bs-table-hover-bg: #d1d2d4; + --bs-table-hover-color: #000; + color: #000; + border-color: #cbccce; +} +.table-success { + --bs-table-bg: #d1e7dd; + --bs-table-striped-bg: #c7dbd2; + --bs-table-striped-color: #000; + --bs-table-active-bg: #bcd0c7; + --bs-table-active-color: #000; + --bs-table-hover-bg: #c1d6cc; + --bs-table-hover-color: #000; + color: #000; + border-color: #bcd0c7; +} +.table-info { + --bs-table-bg: #cff4fc; + --bs-table-striped-bg: #c5e8ef; + --bs-table-striped-color: #000; + --bs-table-active-bg: #badce3; + --bs-table-active-color: #000; + --bs-table-hover-bg: #bfe2e9; + --bs-table-hover-color: #000; + color: #000; + border-color: #badce3; +} +.table-warning { + --bs-table-bg: #fff3cd; + --bs-table-striped-bg: #f2e7c3; + --bs-table-striped-color: #000; + --bs-table-active-bg: #e6dbb9; + --bs-table-active-color: #000; + --bs-table-hover-bg: #ece1be; + --bs-table-hover-color: #000; + color: #000; + border-color: #e6dbb9; +} +.table-danger { + --bs-table-bg: #f8d7da; + --bs-table-striped-bg: #eccccf; + --bs-table-striped-color: #000; + --bs-table-active-bg: #dfc2c4; + --bs-table-active-color: #000; + --bs-table-hover-bg: #e5c7ca; + --bs-table-hover-color: #000; + color: #000; + border-color: #dfc2c4; +} +.table-light { + --bs-table-bg: #f8f9fa; + --bs-table-striped-bg: #ecedee; + --bs-table-striped-color: #000; + --bs-table-active-bg: #dfe0e1; + --bs-table-active-color: #000; + --bs-table-hover-bg: #e5e6e7; + --bs-table-hover-color: #000; + color: #000; + border-color: #dfe0e1; +} +.table-dark { + --bs-table-bg: #212529; + --bs-table-striped-bg: #2c3034; + --bs-table-striped-color: #fff; + --bs-table-active-bg: #373b3e; + --bs-table-active-color: #fff; + --bs-table-hover-bg: #323539; + --bs-table-hover-color: #fff; + color: #fff; + border-color: #373b3e; +} +.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: 1399.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.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 1.25rem; +} +.col-form-label-sm { + padding-top: calc(0.25rem + 1px); + padding-bottom: calc(0.25rem + 1px); + font-size: 0.875rem; +} +.form-text { + margin-top: 0.25rem; + font-size: 0.875em; + color: #6c757d; +} +.form-control { + display: block; + width: 100%; + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + border-radius: 0.25rem; + 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[type="file"] { + overflow: hidden; +} +.form-control[type="file"]:not(:disabled):not([readonly]) { + cursor: pointer; +} +.form-control:focus { + color: #212529; + background-color: #fff; + border-color: #86b7fe; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.form-control::-webkit-date-and-time-value { + height: 1.5em; +} +.form-control::-moz-placeholder { + color: #6c757d; + opacity: 1; +} +.form-control::placeholder { + color: #6c757d; + opacity: 1; +} +.form-control:disabled, +.form-control[readonly] { + background-color: #e9ecef; + opacity: 1; +} +.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: #212529; + background-color: #e9ecef; + 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, + 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; +} +.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: #212529; + background-color: #e9ecef; + pointer-events: none; + border-color: inherit; + border-style: solid; + border-width: 0; + border-inline-end-width: 1px; + border-radius: 0; + 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) { + .form-control::-webkit-file-upload-button { + -webkit-transition: none; + transition: none; + } + .form-control::file-selector-button { + transition: none; + } +} +.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button { + background-color: #dde0e3; +} +.form-control:hover:not(:disabled):not([readonly])::file-selector-button { + background-color: #dde0e3; +} +.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: #212529; + background-color: #e9ecef; + 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, + 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; +} +@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: #dde0e3; +} +.form-control-plaintext { + display: block; + width: 100%; + padding: 0.375rem 0; + margin-bottom: 0; + line-height: 1.5; + color: #212529; + 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 { + min-height: calc(1.5em + 0.5rem + 2px); + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + border-radius: 0.2rem; +} +.form-control-sm::-webkit-file-upload-button { + padding: 0.25rem 0.5rem; + margin: -0.25rem -0.5rem; + -webkit-margin-end: 0.5rem; + margin-inline-end: 0.5rem; +} +.form-control-sm::file-selector-button { + padding: 0.25rem 0.5rem; + margin: -0.25rem -0.5rem; + -webkit-margin-end: 0.5rem; + margin-inline-end: 0.5rem; +} +.form-control-sm::-webkit-file-upload-button { + padding: 0.25rem 0.5rem; + margin: -0.25rem -0.5rem; + -webkit-margin-end: 0.5rem; + margin-inline-end: 0.5rem; +} +.form-control-lg { + min-height: calc(1.5em + 1rem + 2px); + padding: 0.5rem 1rem; + font-size: 1.25rem; + border-radius: 0.3rem; +} +.form-control-lg::-webkit-file-upload-button { + padding: 0.5rem 1rem; + margin: -0.5rem -1rem; + -webkit-margin-end: 1rem; + margin-inline-end: 1rem; +} +.form-control-lg::file-selector-button { + padding: 0.5rem 1rem; + margin: -0.5rem -1rem; + -webkit-margin-end: 1rem; + margin-inline-end: 1rem; +} +.form-control-lg::-webkit-file-upload-button { + padding: 0.5rem 1rem; + margin: -0.5rem -1rem; + -webkit-margin-end: 1rem; + margin-inline-end: 1rem; +} +textarea.form-control { + min-height: calc(1.5em + 0.75rem + 2px); +} +textarea.form-control-sm { + min-height: calc(1.5em + 0.5rem + 2px); +} +textarea.form-control-lg { + min-height: calc(1.5em + 1rem + 2px); +} +.form-control-color { + 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 2.25rem 0.375rem 0.75rem; + -moz-padding-start: calc(0.75rem - 3px); + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + 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='%23343a40' 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: right 0.75rem center; + background-size: 16px 12px; + border: 1px solid #ced4da; + border-radius: 0.25rem; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} +@media (prefers-reduced-motion: reduce) { + .form-select { + transition: none; + } +} +.form-select:focus { + border-color: #86b7fe; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.form-select[multiple], +.form-select[size]:not([size="1"]) { + padding-right: 0.75rem; + background-image: none; +} +.form-select:disabled { + background-color: #e9ecef; +} +.form-select:-moz-focusring { + color: transparent; + text-shadow: 0 0 0 #212529; +} +.form-select-sm { + padding-top: 0.25rem; + padding-bottom: 0.25rem; + padding-left: 0.5rem; + font-size: 0.875rem; + border-radius: 0.2rem; +} +.form-select-lg { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1rem; + font-size: 1.25rem; + border-radius: 0.3rem; +} +.form-check { + display: block; + min-height: 1.5rem; + padding-left: 1.5em; + margin-bottom: 0.125rem; +} +.form-check .form-check-input { + float: left; + margin-left: -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; + print-color-adjust: exact; +} +.form-check-input[type="checkbox"] { + border-radius: 0.25em; +} +.form-check-input[type="radio"] { + border-radius: 50%; +} +.form-check-input:active { + filter: brightness(90%); +} +.form-check-input:focus { + border-color: #86b7fe; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.form-check-input:checked { + background-color: #0d6efd; + border-color: #0d6efd; +} +.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: #0d6efd; + border-color: #0d6efd; + 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; + 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-left: 2.5em; +} +.form-switch .form-check-input { + width: 2em; + margin-left: -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: left center; + border-radius: 2em; + transition: background-position 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-switch .form-check-input { + 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='%2386b7fe'/%3e%3c/svg%3e"); +} +.form-switch .form-check-input:checked { + background-position: right 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-right: 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; + 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 { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.form-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.form-range::-moz-focus-outer { + border: 0; +} +.form-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + background-color: #0d6efd; + 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) { + .form-range::-webkit-slider-thumb { + -webkit-transition: none; + transition: none; + } +} +.form-range::-webkit-slider-thumb:active { + background-color: #b6d4fe; +} +.form-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} +.form-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #0d6efd; + 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: #b6d4fe; +} +.form-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} +.form-range:disabled { + pointer-events: none; +} +.form-range:disabled::-webkit-slider-thumb { + background-color: #adb5bd; +} +.form-range:disabled::-moz-range-thumb { + background-color: #adb5bd; +} +.form-floating { + position: relative; +} +.form-floating > .form-control, +.form-floating > .form-select { + height: calc(3.5rem + 2px); + line-height: 1.25; +} +.form-floating > label { + position: absolute; + top: 0; + left: 0; + height: 100%; + padding: 1rem 0.75rem; + pointer-events: none; + border: 1px solid transparent; + transform-origin: 0 0; + transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-floating > label { + transition: none; + } +} +.form-floating > .form-control { + padding: 1rem 0.75rem; +} +.form-floating > .form-control::-moz-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: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:focus ~ label, +.form-floating > .form-control:not(:placeholder-shown) ~ label, +.form-floating > .form-select ~ label { + opacity: 0.65; + transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); +} +.form-floating > .form-control:-webkit-autofill ~ label { + opacity: 0.65; + transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); +} +.input-group { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: stretch; + width: 100%; +} +.input-group > .form-control, +.input-group > .form-select { + position: relative; + 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: flex; + align-items: center; + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: center; + white-space: nowrap; + background-color: #e9ecef; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} +.input-group-lg > .btn, +.input-group-lg > .form-control, +.input-group-lg > .form-select, +.input-group-lg > .input-group-text { + padding: 0.5rem 1rem; + font-size: 1.25rem; + border-radius: 0.3rem; +} +.input-group-sm > .btn, +.input-group-sm > .form-control, +.input-group-sm > .form-select, +.input-group-sm > .input-group-text { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + border-radius: 0.2rem; +} +.input-group-lg > .form-select, +.input-group-sm > .form-select { + padding-right: 3rem; +} +.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3), +.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4), +.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.input-group + > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) { + margin-left: -1px; + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 0.875em; + color: #198754; +} +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: 0.1rem; + font-size: 0.875rem; + color: #fff; + background-color: rgba(25, 135, 84, 0.9); + border-radius: 0.25rem; +} +.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: #198754; + padding-right: 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='%23198754' 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); +} +.form-control.is-valid:focus, +.was-validated .form-control:valid:focus { + border-color: #198754; + box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 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); +} +.form-select.is-valid, +.was-validated .form-select:valid { + border-color: #198754; +} +.form-select.is-valid:not([multiple]):not([size]), +.form-select.is-valid:not([multiple])[size="1"], +.was-validated .form-select:valid:not([multiple]):not([size]), +.was-validated .form-select:valid:not([multiple])[size="1"] { + padding-right: 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='%23343a40' 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='%23198754' 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: right 0.75rem center, center right 2.25rem; + background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.form-select.is-valid:focus, +.was-validated .form-select:valid:focus { + border-color: #198754; + box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); +} +.form-check-input.is-valid, +.was-validated .form-check-input:valid { + border-color: #198754; +} +.form-check-input.is-valid:checked, +.was-validated .form-check-input:valid:checked { + background-color: #198754; +} +.form-check-input.is-valid:focus, +.was-validated .form-check-input:valid:focus { + box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); +} +.form-check-input.is-valid ~ .form-check-label, +.was-validated .form-check-input:valid ~ .form-check-label { + color: #198754; +} +.form-check-inline .form-check-input ~ .valid-feedback { + margin-left: 0.5em; +} +.input-group .form-control.is-valid, +.input-group .form-select.is-valid, +.was-validated .input-group .form-control:valid, +.was-validated .input-group .form-select:valid { + z-index: 1; +} +.input-group .form-control.is-valid:focus, +.input-group .form-select.is-valid:focus, +.was-validated .input-group .form-control:valid:focus, +.was-validated .input-group .form-select:valid:focus { + z-index: 3; +} +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 0.875em; + color: #dc3545; +} +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: 0.1rem; + font-size: 0.875rem; + color: #fff; + background-color: rgba(220, 53, 69, 0.9); + border-radius: 0.25rem; +} +.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: #dc3545; + padding-right: 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='%23dc3545'%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='%23dc3545' 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); +} +.form-control.is-invalid:focus, +.was-validated .form-control:invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 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); +} +.form-select.is-invalid, +.was-validated .form-select:invalid { + border-color: #dc3545; +} +.form-select.is-invalid:not([multiple]):not([size]), +.form-select.is-invalid:not([multiple])[size="1"], +.was-validated .form-select:invalid:not([multiple]):not([size]), +.was-validated .form-select:invalid:not([multiple])[size="1"] { + padding-right: 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='%23343a40' 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='%23dc3545'%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='%23dc3545' stroke='none'/%3e%3c/svg%3e"); + background-position: right 0.75rem center, center right 2.25rem; + background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.form-select.is-invalid:focus, +.was-validated .form-select:invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); +} +.form-check-input.is-invalid, +.was-validated .form-check-input:invalid { + border-color: #dc3545; +} +.form-check-input.is-invalid:checked, +.was-validated .form-check-input:invalid:checked { + background-color: #dc3545; +} +.form-check-input.is-invalid:focus, +.was-validated .form-check-input:invalid:focus { + box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); +} +.form-check-input.is-invalid ~ .form-check-label, +.was-validated .form-check-input:invalid ~ .form-check-label { + color: #dc3545; +} +.form-check-inline .form-check-input ~ .invalid-feedback { + margin-left: 0.5em; +} +.input-group .form-control.is-invalid, +.input-group .form-select.is-invalid, +.was-validated .input-group .form-control:invalid, +.was-validated .input-group .form-select:invalid { + z-index: 2; +} +.input-group .form-control.is-invalid:focus, +.input-group .form-select.is-invalid:focus, +.was-validated .input-group .form-control:invalid:focus, +.was-validated .input-group .form-select:invalid:focus { + z-index: 3; +} +.btn { + display: inline-block; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: center; + text-decoration: none; + vertical-align: middle; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + background-color: transparent; + border: 1px solid transparent; + padding: 0.375rem 0.75rem; + font-size: 1rem; + border-radius: 0.25rem; + 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: #212529; +} +.btn-check:focus + .btn, +.btn:focus { + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.btn.disabled, +.btn:disabled, +fieldset:disabled .btn { + pointer-events: none; + opacity: 0.65; +} +.btn-primary { + color: #fff; + background-color: #0d6efd; + border-color: #0d6efd; +} +.btn-primary:hover { + color: #fff; + background-color: #0b5ed7; + border-color: #0a58ca; +} +.btn-check:focus + .btn-primary, +.btn-primary:focus { + color: #fff; + background-color: #0b5ed7; + border-color: #0a58ca; + box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5); +} +.btn-check:active + .btn-primary, +.btn-check:checked + .btn-primary, +.btn-primary.active, +.btn-primary:active, +.show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #0a58ca; + border-color: #0a53be; +} +.btn-check:active + .btn-primary:focus, +.btn-check:checked + .btn-primary:focus, +.btn-primary.active:focus, +.btn-primary:active:focus, +.show > .btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5); +} +.btn-primary.disabled, +.btn-primary:disabled { + color: #fff; + background-color: #0d6efd; + border-color: #0d6efd; +} +.btn-secondary { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} +.btn-secondary:hover { + color: #fff; + background-color: #5c636a; + border-color: #565e64; +} +.btn-check:focus + .btn-secondary, +.btn-secondary:focus { + color: #fff; + background-color: #5c636a; + border-color: #565e64; + box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); +} +.btn-check:active + .btn-secondary, +.btn-check:checked + .btn-secondary, +.btn-secondary.active, +.btn-secondary:active, +.show > .btn-secondary.dropdown-toggle { + color: #fff; + background-color: #565e64; + border-color: #51585e; +} +.btn-check:active + .btn-secondary:focus, +.btn-check:checked + .btn-secondary:focus, +.btn-secondary.active:focus, +.btn-secondary:active:focus, +.show > .btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); +} +.btn-secondary.disabled, +.btn-secondary:disabled { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} +.btn-success { + color: #fff; + background-color: #198754; + border-color: #198754; +} +.btn-success:hover { + color: #fff; + background-color: #157347; + border-color: #146c43; +} +.btn-check:focus + .btn-success, +.btn-success:focus { + color: #fff; + background-color: #157347; + border-color: #146c43; + box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); +} +.btn-check:active + .btn-success, +.btn-check:checked + .btn-success, +.btn-success.active, +.btn-success:active, +.show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #146c43; + border-color: #13653f; +} +.btn-check:active + .btn-success:focus, +.btn-check:checked + .btn-success:focus, +.btn-success.active:focus, +.btn-success:active:focus, +.show > .btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); +} +.btn-success.disabled, +.btn-success:disabled { + color: #fff; + background-color: #198754; + border-color: #198754; +} +.btn-info { + color: #000; + background-color: #0dcaf0; + border-color: #0dcaf0; +} +.btn-info:hover { + color: #000; + background-color: #31d2f2; + border-color: #25cff2; +} +.btn-check:focus + .btn-info, +.btn-info:focus { + color: #000; + background-color: #31d2f2; + border-color: #25cff2; + box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); +} +.btn-check:active + .btn-info, +.btn-check:checked + .btn-info, +.btn-info.active, +.btn-info:active, +.show > .btn-info.dropdown-toggle { + color: #000; + background-color: #3dd5f3; + border-color: #25cff2; +} +.btn-check:active + .btn-info:focus, +.btn-check:checked + .btn-info:focus, +.btn-info.active:focus, +.btn-info:active:focus, +.show > .btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); +} +.btn-info.disabled, +.btn-info:disabled { + color: #000; + background-color: #0dcaf0; + border-color: #0dcaf0; +} +.btn-warning { + color: #000; + background-color: #ffc107; + border-color: #ffc107; +} +.btn-warning:hover { + color: #000; + background-color: #ffca2c; + border-color: #ffc720; +} +.btn-check:focus + .btn-warning, +.btn-warning:focus { + color: #000; + background-color: #ffca2c; + border-color: #ffc720; + box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); +} +.btn-check:active + .btn-warning, +.btn-check:checked + .btn-warning, +.btn-warning.active, +.btn-warning:active, +.show > .btn-warning.dropdown-toggle { + color: #000; + background-color: #ffcd39; + border-color: #ffc720; +} +.btn-check:active + .btn-warning:focus, +.btn-check:checked + .btn-warning:focus, +.btn-warning.active:focus, +.btn-warning:active:focus, +.show > .btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); +} +.btn-warning.disabled, +.btn-warning:disabled { + color: #000; + background-color: #ffc107; + border-color: #ffc107; +} +.btn-danger { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} +.btn-danger:hover { + color: #fff; + background-color: #bb2d3b; + border-color: #b02a37; +} +.btn-check:focus + .btn-danger, +.btn-danger:focus { + color: #fff; + background-color: #bb2d3b; + border-color: #b02a37; + box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); +} +.btn-check:active + .btn-danger, +.btn-check:checked + .btn-danger, +.btn-danger.active, +.btn-danger:active, +.show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #b02a37; + border-color: #a52834; +} +.btn-check:active + .btn-danger:focus, +.btn-check:checked + .btn-danger:focus, +.btn-danger.active:focus, +.btn-danger:active:focus, +.show > .btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); +} +.btn-danger.disabled, +.btn-danger:disabled { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} +.btn-light { + color: #000; + background-color: #f8f9fa; + border-color: #f8f9fa; +} +.btn-light:hover { + color: #000; + background-color: #f9fafb; + border-color: #f9fafb; +} +.btn-check:focus + .btn-light, +.btn-light:focus { + color: #000; + background-color: #f9fafb; + border-color: #f9fafb; + box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); +} +.btn-check:active + .btn-light, +.btn-check:checked + .btn-light, +.btn-light.active, +.btn-light:active, +.show > .btn-light.dropdown-toggle { + color: #000; + background-color: #f9fafb; + border-color: #f9fafb; +} +.btn-check:active + .btn-light:focus, +.btn-check:checked + .btn-light:focus, +.btn-light.active:focus, +.btn-light:active:focus, +.show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); +} +.btn-light.disabled, +.btn-light:disabled { + color: #000; + background-color: #f8f9fa; + border-color: #f8f9fa; +} +.btn-dark { + color: #fff; + background-color: #212529; + border-color: #212529; +} +.btn-dark:hover { + color: #fff; + background-color: #1c1f23; + border-color: #1a1e21; +} +.btn-check:focus + .btn-dark, +.btn-dark:focus { + color: #fff; + background-color: #1c1f23; + border-color: #1a1e21; + box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); +} +.btn-check:active + .btn-dark, +.btn-check:checked + .btn-dark, +.btn-dark.active, +.btn-dark:active, +.show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #1a1e21; + border-color: #191c1f; +} +.btn-check:active + .btn-dark:focus, +.btn-check:checked + .btn-dark:focus, +.btn-dark.active:focus, +.btn-dark:active:focus, +.show > .btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); +} +.btn-dark.disabled, +.btn-dark:disabled { + color: #fff; + background-color: #212529; + border-color: #212529; +} +.btn-outline-primary { + color: #0d6efd; + border-color: #0d6efd; +} +.btn-outline-primary:hover { + color: #fff; + background-color: #0d6efd; + border-color: #0d6efd; +} +.btn-check:focus + .btn-outline-primary, +.btn-outline-primary:focus { + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5); +} +.btn-check:active + .btn-outline-primary, +.btn-check:checked + .btn-outline-primary, +.btn-outline-primary.active, +.btn-outline-primary.dropdown-toggle.show, +.btn-outline-primary:active { + color: #fff; + background-color: #0d6efd; + border-color: #0d6efd; +} +.btn-check:active + .btn-outline-primary:focus, +.btn-check:checked + .btn-outline-primary:focus, +.btn-outline-primary.active:focus, +.btn-outline-primary.dropdown-toggle.show:focus, +.btn-outline-primary:active:focus { + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5); +} +.btn-outline-primary.disabled, +.btn-outline-primary:disabled { + color: #0d6efd; + background-color: transparent; +} +.btn-outline-secondary { + color: #6c757d; + border-color: #6c757d; +} +.btn-outline-secondary:hover { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} +.btn-check:focus + .btn-outline-secondary, +.btn-outline-secondary:focus { + box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); +} +.btn-check:active + .btn-outline-secondary, +.btn-check:checked + .btn-outline-secondary, +.btn-outline-secondary.active, +.btn-outline-secondary.dropdown-toggle.show, +.btn-outline-secondary:active { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} +.btn-check:active + .btn-outline-secondary:focus, +.btn-check:checked + .btn-outline-secondary:focus, +.btn-outline-secondary.active:focus, +.btn-outline-secondary.dropdown-toggle.show:focus, +.btn-outline-secondary:active:focus { + box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); +} +.btn-outline-secondary.disabled, +.btn-outline-secondary:disabled { + color: #6c757d; + background-color: transparent; +} +.btn-outline-success { + color: #198754; + border-color: #198754; +} +.btn-outline-success:hover { + color: #fff; + background-color: #198754; + border-color: #198754; +} +.btn-check:focus + .btn-outline-success, +.btn-outline-success:focus { + box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); +} +.btn-check:active + .btn-outline-success, +.btn-check:checked + .btn-outline-success, +.btn-outline-success.active, +.btn-outline-success.dropdown-toggle.show, +.btn-outline-success:active { + color: #fff; + background-color: #198754; + border-color: #198754; +} +.btn-check:active + .btn-outline-success:focus, +.btn-check:checked + .btn-outline-success:focus, +.btn-outline-success.active:focus, +.btn-outline-success.dropdown-toggle.show:focus, +.btn-outline-success:active:focus { + box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); +} +.btn-outline-success.disabled, +.btn-outline-success:disabled { + color: #198754; + background-color: transparent; +} +.btn-outline-info { + color: #0dcaf0; + border-color: #0dcaf0; +} +.btn-outline-info:hover { + color: #000; + background-color: #0dcaf0; + border-color: #0dcaf0; +} +.btn-check:focus + .btn-outline-info, +.btn-outline-info:focus { + box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); +} +.btn-check:active + .btn-outline-info, +.btn-check:checked + .btn-outline-info, +.btn-outline-info.active, +.btn-outline-info.dropdown-toggle.show, +.btn-outline-info:active { + color: #000; + background-color: #0dcaf0; + border-color: #0dcaf0; +} +.btn-check:active + .btn-outline-info:focus, +.btn-check:checked + .btn-outline-info:focus, +.btn-outline-info.active:focus, +.btn-outline-info.dropdown-toggle.show:focus, +.btn-outline-info:active:focus { + box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); +} +.btn-outline-info.disabled, +.btn-outline-info:disabled { + color: #0dcaf0; + background-color: transparent; +} +.btn-outline-warning { + color: #ffc107; + border-color: #ffc107; +} +.btn-outline-warning:hover { + color: #000; + background-color: #ffc107; + border-color: #ffc107; +} +.btn-check:focus + .btn-outline-warning, +.btn-outline-warning:focus { + box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); +} +.btn-check:active + .btn-outline-warning, +.btn-check:checked + .btn-outline-warning, +.btn-outline-warning.active, +.btn-outline-warning.dropdown-toggle.show, +.btn-outline-warning:active { + color: #000; + background-color: #ffc107; + border-color: #ffc107; +} +.btn-check:active + .btn-outline-warning:focus, +.btn-check:checked + .btn-outline-warning:focus, +.btn-outline-warning.active:focus, +.btn-outline-warning.dropdown-toggle.show:focus, +.btn-outline-warning:active:focus { + box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); +} +.btn-outline-warning.disabled, +.btn-outline-warning:disabled { + color: #ffc107; + background-color: transparent; +} +.btn-outline-danger { + color: #dc3545; + border-color: #dc3545; +} +.btn-outline-danger:hover { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} +.btn-check:focus + .btn-outline-danger, +.btn-outline-danger:focus { + box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); +} +.btn-check:active + .btn-outline-danger, +.btn-check:checked + .btn-outline-danger, +.btn-outline-danger.active, +.btn-outline-danger.dropdown-toggle.show, +.btn-outline-danger:active { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} +.btn-check:active + .btn-outline-danger:focus, +.btn-check:checked + .btn-outline-danger:focus, +.btn-outline-danger.active:focus, +.btn-outline-danger.dropdown-toggle.show:focus, +.btn-outline-danger:active:focus { + box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); +} +.btn-outline-danger.disabled, +.btn-outline-danger:disabled { + color: #dc3545; + background-color: transparent; +} +.btn-outline-light { + color: #f8f9fa; + border-color: #f8f9fa; +} +.btn-outline-light:hover { + color: #000; + background-color: #f8f9fa; + border-color: #f8f9fa; +} +.btn-check:focus + .btn-outline-light, +.btn-outline-light:focus { + box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); +} +.btn-check:active + .btn-outline-light, +.btn-check:checked + .btn-outline-light, +.btn-outline-light.active, +.btn-outline-light.dropdown-toggle.show, +.btn-outline-light:active { + color: #000; + background-color: #f8f9fa; + border-color: #f8f9fa; +} +.btn-check:active + .btn-outline-light:focus, +.btn-check:checked + .btn-outline-light:focus, +.btn-outline-light.active:focus, +.btn-outline-light.dropdown-toggle.show:focus, +.btn-outline-light:active:focus { + box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); +} +.btn-outline-light.disabled, +.btn-outline-light:disabled { + color: #f8f9fa; + background-color: transparent; +} +.btn-outline-dark { + color: #212529; + border-color: #212529; +} +.btn-outline-dark:hover { + color: #fff; + background-color: #212529; + border-color: #212529; +} +.btn-check:focus + .btn-outline-dark, +.btn-outline-dark:focus { + box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); +} +.btn-check:active + .btn-outline-dark, +.btn-check:checked + .btn-outline-dark, +.btn-outline-dark.active, +.btn-outline-dark.dropdown-toggle.show, +.btn-outline-dark:active { + color: #fff; + background-color: #212529; + border-color: #212529; +} +.btn-check:active + .btn-outline-dark:focus, +.btn-check:checked + .btn-outline-dark:focus, +.btn-outline-dark.active:focus, +.btn-outline-dark.dropdown-toggle.show:focus, +.btn-outline-dark:active:focus { + box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); +} +.btn-outline-dark.disabled, +.btn-outline-dark:disabled { + color: #212529; + background-color: transparent; +} +.btn-link { + font-weight: 400; + color: #0d6efd; + text-decoration: underline; +} +.btn-link:hover { + color: #0a58ca; +} +.btn-link.disabled, +.btn-link:disabled { + color: #6c757d; +} +.btn-group-lg > .btn, +.btn-lg { + padding: 0.5rem 1rem; + font-size: 1.25rem; + border-radius: 0.3rem; +} +.btn-group-sm > .btn, +.btn-sm { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + border-radius: 0.2rem; +} +.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 { + height: 0; + overflow: hidden; + transition: height 0.35s ease; +} +@media (prefers-reduced-motion: reduce) { + .collapsing { + transition: none; + } +} +.collapsing.collapse-horizontal { + width: 0; + height: auto; + transition: width 0.35s ease; +} +@media (prefers-reduced-motion: reduce) { + .collapsing.collapse-horizontal { + transition: none; + } +} +.dropdown, +.dropend, +.dropstart, +.dropup { + 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; + z-index: 1000; + display: none; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0; + font-size: 1rem; + color: #212529; + text-align: left; + 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] { + top: 100%; + left: 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: 1400px) { + .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[data-bs-popper] { + 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; +} +.dropend .dropdown-menu[data-bs-popper] { + top: 0; + right: auto; + left: 100%; + margin-top: 0; + margin-left: 0.125rem; +} +.dropend .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; +} +.dropend .dropdown-toggle:empty::after { + margin-left: 0; +} +.dropend .dropdown-toggle::after { + vertical-align: 0; +} +.dropstart .dropdown-menu[data-bs-popper] { + top: 0; + right: 100%; + left: auto; + margin-top: 0; + margin-right: 0.125rem; +} +.dropstart .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; +} +.dropstart .dropdown-toggle::after { + display: none; +} +.dropstart .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; +} +.dropstart .dropdown-toggle:empty::after { + margin-left: 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: #212529; + text-align: inherit; + text-decoration: none; + white-space: nowrap; + background-color: transparent; + border: 0; +} +.dropdown-item:focus, +.dropdown-item:hover { + color: #1e2125; + background-color: #e9ecef; +} +.dropdown-item.active, +.dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #0d6efd; +} +.dropdown-item.disabled, +.dropdown-item:disabled { + color: #adb5bd; + 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: #6c757d; + white-space: nowrap; +} +.dropdown-item-text { + display: block; + padding: 0.25rem 1rem; + color: #212529; +} +.dropdown-menu-dark { + color: #dee2e6; + background-color: #343a40; + border-color: rgba(0, 0, 0, 0.15); +} +.dropdown-menu-dark .dropdown-item { + color: #dee2e6; +} +.dropdown-menu-dark .dropdown-item:focus, +.dropdown-menu-dark .dropdown-item:hover { + 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: #0d6efd; +} +.dropdown-menu-dark .dropdown-item.disabled, +.dropdown-menu-dark .dropdown-item:disabled { + color: #adb5bd; +} +.dropdown-menu-dark .dropdown-divider { + border-color: rgba(0, 0, 0, 0.15); +} +.dropdown-menu-dark .dropdown-item-text { + color: #dee2e6; +} +.dropdown-menu-dark .dropdown-header { + color: #adb5bd; +} +.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-check:checked + .btn, +.btn-group-vertical > .btn-check:focus + .btn, +.btn-group-vertical > .btn.active, +.btn-group-vertical > .btn:active, +.btn-group-vertical > .btn:focus, +.btn-group-vertical > .btn:hover, +.btn-group > .btn-check:checked + .btn, +.btn-group > .btn-check:focus + .btn, +.btn-group > .btn.active, +.btn-group > .btn:active, +.btn-group > .btn:focus, +.btn-group > .btn:hover { + 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:nth-child(n + 3), +.btn-group > :not(.btn-check) + .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, +.dropend .dropdown-toggle-split::after, +.dropup .dropdown-toggle-split::after { + margin-left: 0; +} +.dropstart .dropdown-toggle-split::before { + margin-right: 0; +} +.btn-group-sm > .btn + .dropdown-toggle-split, +.btn-sm + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; +} +.btn-group-lg > .btn + .dropdown-toggle-split, +.btn-lg + .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-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 ~ .btn { + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.nav { + display: flex; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} +.nav-link { + display: block; + padding: 0.5rem 1rem; + color: #0d6efd; + text-decoration: none; + 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 { + transition: none; + } +} +.nav-link:focus, +.nav-link:hover { + color: #0a58ca; +} +.nav-link.disabled { + color: #6c757d; + pointer-events: none; + cursor: default; +} +.nav-tabs { + border-bottom: 1px solid #dee2e6; +} +.nav-tabs .nav-link { + margin-bottom: -1px; + background: 0 0; + border: 1px solid transparent; + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} +.nav-tabs .nav-link:focus, +.nav-tabs .nav-link:hover { + border-color: #e9ecef #e9ecef #dee2e6; + isolation: isolate; +} +.nav-tabs .nav-link.disabled { + color: #6c757d; + background-color: transparent; + border-color: transparent; +} +.nav-tabs .nav-item.show .nav-link, +.nav-tabs .nav-link.active { + color: #495057; + background-color: #fff; + border-color: #dee2e6 #dee2e6 #fff; +} +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.nav-pills .nav-link { + background: 0 0; + border: 0; + border-radius: 0.25rem; +} +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #0d6efd; +} +.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; +} +.nav-fill .nav-item .nav-link, +.nav-justified .nav-item .nav-link { + width: 100%; +} +.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-top: 0.5rem; + padding-bottom: 0.5rem; +} +.navbar > .container, +.navbar > .container-fluid, +.navbar > .container-lg, +.navbar > .container-md, +.navbar > .container-sm, +.navbar > .container-xl, +.navbar > .container-xxl { + display: flex; + flex-wrap: inherit; + align-items: center; + justify-content: space-between; +} +.navbar-brand { + padding-top: 0.3125rem; + padding-bottom: 0.3125rem; + margin-right: 1rem; + font-size: 1.25rem; + text-decoration: none; + white-space: nowrap; +} +.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; +} +.navbar-text { + 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.25rem; + transition: box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .navbar-toggler { + transition: none; + } +} +.navbar-toggler:hover { + text-decoration: none; +} +.navbar-toggler:focus { + text-decoration: none; + outline: 0; + box-shadow: 0 0 0 0.25rem; +} +.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 { + flex-wrap: 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 .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-sm .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-sm .navbar-toggler { + display: none; + } + .navbar-expand-sm .offcanvas-header { + display: none; + } + .navbar-expand-sm .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none; + } + .navbar-expand-sm .offcanvas-bottom, + .navbar-expand-sm .offcanvas-top { + height: auto; + border-top: 0; + border-bottom: 0; + } + .navbar-expand-sm .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@media (min-width: 768px) { + .navbar-expand-md { + flex-wrap: 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 .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-md .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-md .navbar-toggler { + display: none; + } + .navbar-expand-md .offcanvas-header { + display: none; + } + .navbar-expand-md .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none; + } + .navbar-expand-md .offcanvas-bottom, + .navbar-expand-md .offcanvas-top { + height: auto; + border-top: 0; + border-bottom: 0; + } + .navbar-expand-md .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@media (min-width: 992px) { + .navbar-expand-lg { + flex-wrap: 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 .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-lg .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-lg .navbar-toggler { + display: none; + } + .navbar-expand-lg .offcanvas-header { + display: none; + } + .navbar-expand-lg .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none; + } + .navbar-expand-lg .offcanvas-bottom, + .navbar-expand-lg .offcanvas-top { + height: auto; + border-top: 0; + border-bottom: 0; + } + .navbar-expand-lg .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@media (min-width: 1200px) { + .navbar-expand-xl { + flex-wrap: 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 .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-xl .offcanvas-header { + display: none; + } + .navbar-expand-xl .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none; + } + .navbar-expand-xl .offcanvas-bottom, + .navbar-expand-xl .offcanvas-top { + height: auto; + border-top: 0; + border-bottom: 0; + } + .navbar-expand-xl .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@media (min-width: 1400px) { + .navbar-expand-xxl { + flex-wrap: nowrap; + justify-content: flex-start; + } + .navbar-expand-xxl .navbar-nav { + flex-direction: row; + } + .navbar-expand-xxl .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-xxl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-xxl .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-xxl .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-xxl .navbar-toggler { + display: none; + } + .navbar-expand-xxl .offcanvas-header { + display: none; + } + .navbar-expand-xxl .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none; + } + .navbar-expand-xxl .offcanvas-bottom, + .navbar-expand-xxl .offcanvas-top { + height: auto; + border-top: 0; + border-bottom: 0; + } + .navbar-expand-xxl .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +.navbar-expand { + flex-wrap: nowrap; + justify-content: flex-start; +} +.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 .navbar-nav-scroll { + overflow: visible; +} +.navbar-expand .navbar-collapse { + display: flex !important; + flex-basis: auto; +} +.navbar-expand .navbar-toggler { + display: none; +} +.navbar-expand .offcanvas-header { + display: none; +} +.navbar-expand .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none; +} +.navbar-expand .offcanvas-bottom, +.navbar-expand .offcanvas-top { + height: auto; + border-top: 0; + border-bottom: 0; +} +.navbar-expand .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; +} +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, 0.9); +} +.navbar-light .navbar-brand:focus, +.navbar-light .navbar-brand:hover { + color: rgba(0, 0, 0, 0.9); +} +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, 0.55); +} +.navbar-light .navbar-nav .nav-link:focus, +.navbar-light .navbar-nav .nav-link:hover { + 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 .nav-link.active, +.navbar-light .navbar-nav .show > .nav-link { + color: rgba(0, 0, 0, 0.9); +} +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.55); + 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' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%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.55); +} +.navbar-light .navbar-text a, +.navbar-light .navbar-text a:focus, +.navbar-light .navbar-text a:hover { + color: rgba(0, 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, 0.55); +} +.navbar-dark .navbar-nav .nav-link:focus, +.navbar-dark .navbar-nav .nav-link:hover { + 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 .nav-link.active, +.navbar-dark .navbar-nav .show > .nav-link { + color: #fff; +} +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.55); + 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.55%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.55); +} +.navbar-dark .navbar-text a, +.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 rgba(0, 0, 0, 0.125); + border-radius: 0.25rem; +} +.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.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} +.card > .list-group:last-child { + border-bottom-width: 0; + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); +} +.card > .card-header + .list-group, +.card > .list-group + .card-footer { + border-top: 0; +} +.card-body { + 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 + .card-link { + margin-left: 1rem; +} +.card-header { + padding: 0.5rem 1rem; + margin-bottom: 0; + background-color: rgba(0, 0, 0, 0.03); + border-bottom: 1px solid rgba(0, 0, 0, 0.125); +} +.card-header:first-child { + border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; +} +.card-footer { + padding: 0.5rem 1rem; + background-color: rgba(0, 0, 0, 0.03); + border-top: 1px solid rgba(0, 0, 0, 0.125); +} +.card-footer:last-child { + border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); +} +.card-header-tabs { + margin-right: -0.5rem; + margin-bottom: -0.5rem; + margin-left: -0.5rem; + border-bottom: 0; +} +.card-header-pills { + margin-right: -0.5rem; + margin-left: -0.5rem; +} +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1rem; + border-radius: calc(0.25rem - 1px); +} +.card-img, +.card-img-bottom, +.card-img-top { + width: 100%; +} +.card-img, +.card-img-top { + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} +.card-img, +.card-img-bottom { + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); +} +.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-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; + } +} +.accordion-button { + position: relative; + display: flex; + align-items: center; + width: 100%; + padding: 1rem 1.25rem; + font-size: 1rem; + color: #212529; + text-align: left; + background-color: #fff; + border: 0; + border-radius: 0; + overflow-anchor: none; + 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; +} +@media (prefers-reduced-motion: reduce) { + .accordion-button { + transition: none; + } +} +.accordion-button:not(.collapsed) { + color: #0c63e4; + background-color: #e7f1ff; + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125); +} +.accordion-button:not(.collapsed)::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); + transform: rotate(-180deg); +} +.accordion-button::after { + flex-shrink: 0; + width: 1.25rem; + height: 1.25rem; + margin-left: auto; + content: ""; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-size: 1.25rem; + transition: transform 0.2s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .accordion-button::after { + transition: none; + } +} +.accordion-button:hover { + z-index: 2; +} +.accordion-button:focus { + z-index: 3; + border-color: #86b7fe; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.accordion-header { + margin-bottom: 0; +} +.accordion-item { + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); +} +.accordion-item:first-of-type { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} +.accordion-item:first-of-type .accordion-button { + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} +.accordion-item:not(:first-of-type) { + border-top: 0; +} +.accordion-item:last-of-type { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} +.accordion-item:last-of-type .accordion-button.collapsed { + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); +} +.accordion-item:last-of-type .accordion-collapse { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} +.accordion-body { + padding: 1rem 1.25rem; +} +.accordion-flush .accordion-collapse { + border-width: 0; +} +.accordion-flush .accordion-item { + border-right: 0; + border-left: 0; + border-radius: 0; +} +.accordion-flush .accordion-item:first-child { + border-top: 0; +} +.accordion-flush .accordion-item:last-child { + border-bottom: 0; +} +.accordion-flush .accordion-item .accordion-button { + border-radius: 0; +} +.breadcrumb { + display: flex; + flex-wrap: wrap; + padding: 0 0; + margin-bottom: 1rem; + list-style: none; +} +.breadcrumb-item + .breadcrumb-item { + padding-left: 0.5rem; +} +.breadcrumb-item + .breadcrumb-item::before { + float: left; + padding-right: 0.5rem; + color: #6c757d; + content: var(--bs-breadcrumb-divider, "/"); +} +.breadcrumb-item.active { + color: #6c757d; +} +.pagination { + display: flex; + padding-left: 0; + list-style: none; +} +.page-link { + position: relative; + display: block; + color: #0d6efd; + text-decoration: none; + background-color: #fff; + border: 1px solid #dee2e6; + 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) { + .page-link { + transition: none; + } +} +.page-link:hover { + z-index: 2; + color: #0a58ca; + background-color: #e9ecef; + border-color: #dee2e6; +} +.page-link:focus { + z-index: 3; + color: #0a58ca; + background-color: #e9ecef; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.page-item:not(:first-child) .page-link { + margin-left: -1px; +} +.page-item.active .page-link { + z-index: 3; + color: #fff; + background-color: #0d6efd; + border-color: #0d6efd; +} +.page-item.disabled .page-link { + color: #6c757d; + pointer-events: none; + background-color: #fff; + border-color: #dee2e6; +} +.page-link { + padding: 0.375rem 0.75rem; +} +.page-item:first-child .page-link { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} +.page-item:last-child .page-link { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; +} +.pagination-lg .page-link { + padding: 0.75rem 1.5rem; + font-size: 1.25rem; +} +.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; +} +.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.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-right: 3rem; +} +.alert-dismissible .btn-close { + position: absolute; + top: 0; + right: 0; + z-index: 2; + padding: 1.25rem 1rem; +} +.alert-primary { + color: #084298; + background-color: #cfe2ff; + border-color: #b6d4fe; +} +.alert-primary .alert-link { + color: #06357a; +} +.alert-secondary { + color: #41464b; + background-color: #e2e3e5; + border-color: #d3d6d8; +} +.alert-secondary .alert-link { + color: #34383c; +} +.alert-success { + color: #0f5132; + background-color: #d1e7dd; + border-color: #badbcc; +} +.alert-success .alert-link { + color: #0c4128; +} +.alert-info { + color: #055160; + background-color: #cff4fc; + border-color: #b6effb; +} +.alert-info .alert-link { + color: #04414d; +} +.alert-warning { + color: #664d03; + background-color: #fff3cd; + border-color: #ffecb5; +} +.alert-warning .alert-link { + color: #523e02; +} +.alert-danger { + color: #842029; + background-color: #f8d7da; + border-color: #f5c2c7; +} +.alert-danger .alert-link { + color: #6a1a21; +} +.alert-light { + color: #636464; + background-color: #fefefe; + border-color: #fdfdfe; +} +.alert-light .alert-link { + color: #4f5050; +} +.alert-dark { + color: #141619; + background-color: #d3d3d4; + border-color: #bcbebf; +} +.alert-dark .alert-link { + color: #101214; +} +@-webkit-keyframes progress-bar-stripes { + 0% { + background-position-x: 1rem; + } +} +@keyframes progress-bar-stripes { + 0% { + background-position-x: 1rem; + } +} +.progress { + display: flex; + height: 1rem; + overflow: hidden; + font-size: 0.75rem; + background-color: #e9ecef; + border-radius: 0.25rem; +} +.progress-bar { + display: flex; + flex-direction: column; + justify-content: center; + overflow: hidden; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #0d6efd; + 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; + } +} +.list-group { + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + border-radius: 0.25rem; +} +.list-group-numbered { + list-style-type: none; + counter-reset: section; +} +.list-group-numbered > li::before { + content: counters(section, ".") ". "; + counter-increment: section; +} +.list-group-item-action { + width: 100%; + color: #495057; + text-align: inherit; +} +.list-group-item-action:focus, +.list-group-item-action:hover { + z-index: 1; + color: #495057; + text-decoration: none; + background-color: #f8f9fa; +} +.list-group-item-action:active { + color: #212529; + background-color: #e9ecef; +} +.list-group-item { + position: relative; + display: block; + padding: 0.5rem 1rem; + color: #212529; + text-decoration: none; + 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: #6c757d; + pointer-events: none; + background-color: #fff; +} +.list-group-item.active { + z-index: 2; + color: #fff; + background-color: #0d6efd; + border-color: #0d6efd; +} +.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.25rem; + border-top-right-radius: 0; +} +.list-group-horizontal > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + 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.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-sm > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + 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.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-md > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + 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.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-lg > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + 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.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-xl > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + 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; + } +} +@media (min-width: 1400px) { + .list-group-horizontal-xxl { + flex-direction: row; + } + .list-group-horizontal-xxl > .list-group-item:first-child { + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-xxl > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + border-bottom-left-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-left-width: 0; + } + .list-group-horizontal-xxl > .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: #084298; + background-color: #cfe2ff; +} +.list-group-item-primary.list-group-item-action:focus, +.list-group-item-primary.list-group-item-action:hover { + color: #084298; + background-color: #bacbe6; +} +.list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #084298; + border-color: #084298; +} +.list-group-item-secondary { + color: #41464b; + background-color: #e2e3e5; +} +.list-group-item-secondary.list-group-item-action:focus, +.list-group-item-secondary.list-group-item-action:hover { + color: #41464b; + background-color: #cbccce; +} +.list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #41464b; + border-color: #41464b; +} +.list-group-item-success { + color: #0f5132; + background-color: #d1e7dd; +} +.list-group-item-success.list-group-item-action:focus, +.list-group-item-success.list-group-item-action:hover { + color: #0f5132; + background-color: #bcd0c7; +} +.list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #0f5132; + border-color: #0f5132; +} +.list-group-item-info { + color: #055160; + background-color: #cff4fc; +} +.list-group-item-info.list-group-item-action:focus, +.list-group-item-info.list-group-item-action:hover { + color: #055160; + background-color: #badce3; +} +.list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #055160; + border-color: #055160; +} +.list-group-item-warning { + color: #664d03; + background-color: #fff3cd; +} +.list-group-item-warning.list-group-item-action:focus, +.list-group-item-warning.list-group-item-action:hover { + color: #664d03; + background-color: #e6dbb9; +} +.list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #664d03; + border-color: #664d03; +} +.list-group-item-danger { + color: #842029; + background-color: #f8d7da; +} +.list-group-item-danger.list-group-item-action:focus, +.list-group-item-danger.list-group-item-action:hover { + color: #842029; + background-color: #dfc2c4; +} +.list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #842029; + border-color: #842029; +} +.list-group-item-light { + color: #636464; + background-color: #fefefe; +} +.list-group-item-light.list-group-item-action:focus, +.list-group-item-light.list-group-item-action:hover { + color: #636464; + background-color: #e5e5e5; +} +.list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #636464; + border-color: #636464; +} +.list-group-item-dark { + color: #141619; + background-color: #d3d3d4; +} +.list-group-item-dark.list-group-item-action:focus, +.list-group-item-dark.list-group-item-action:hover { + color: #141619; + background-color: #bebebf; +} +.list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #141619; + border-color: #141619; +} +.btn-close { + 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; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); + opacity: 1; +} +.btn-close.disabled, +.btn-close:disabled { + pointer-events: none; + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + opacity: 0.25; +} +.btn-close-white { + 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); + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); + border-radius: 0.25rem; +} +.toast.showing { + opacity: 0; +} +.toast:not(.show) { + 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: 0.75rem; +} +.toast-header { + display: flex; + align-items: center; + padding: 0.5rem 0.75rem; + color: #6c757d; + 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-header .btn-close { + margin-right: -0.375rem; + margin-left: 0.75rem; +} +.toast-body { + padding: 0.75rem; + word-wrap: break-word; +} +.modal { + position: fixed; + top: 0; + left: 0; + z-index: 1055; + display: none; + width: 100%; + height: 100%; + overflow-x: hidden; + overflow-y: auto; + 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 { + 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: flex; + align-items: center; + min-height: calc(100% - 1rem); +} +.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: 1050; + width: 100vw; + height: 100vh; + background-color: #000; +} +.modal-backdrop.fade { + opacity: 0; +} +.modal-backdrop.show { + opacity: 0.5; +} +.modal-header { + display: flex; + flex-shrink: 0; + align-items: center; + justify-content: space-between; + padding: 1rem 1rem; + border-bottom: 1px solid #dee2e6; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); +} +.modal-header .btn-close { + padding: 0.5rem 0.5rem; + margin: -0.5rem -0.5rem -0.5rem 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; + flex-shrink: 0; + align-items: center; + justify-content: flex-end; + padding: 0.75rem; + border-top: 1px solid #dee2e6; + border-bottom-right-radius: calc(0.3rem - 1px); + border-bottom-left-radius: calc(0.3rem - 1px); +} +.modal-footer > * { + margin: 0.25rem; +} +@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: 1399.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: 1080; + display: block; + margin: 0; + font-family: var(--bs-font-sans-serif); + 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 .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-auto[data-popper-placement^="top"], +.bs-tooltip-top { + padding: 0.4rem 0; +} +.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow, +.bs-tooltip-top .tooltip-arrow { + bottom: 0; +} +.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before, +.bs-tooltip-top .tooltip-arrow::before { + top: -1px; + border-width: 0.4rem 0.4rem 0; + border-top-color: #000; +} +.bs-tooltip-auto[data-popper-placement^="right"], +.bs-tooltip-end { + padding: 0 0.4rem; +} +.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow, +.bs-tooltip-end .tooltip-arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; +} +.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before, +.bs-tooltip-end .tooltip-arrow::before { + right: -1px; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000; +} +.bs-tooltip-auto[data-popper-placement^="bottom"], +.bs-tooltip-bottom { + padding: 0.4rem 0; +} +.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow, +.bs-tooltip-bottom .tooltip-arrow { + top: 0; +} +.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before, +.bs-tooltip-bottom .tooltip-arrow::before { + bottom: -1px; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #000; +} +.bs-tooltip-auto[data-popper-placement^="left"], +.bs-tooltip-start { + padding: 0 0.4rem; +} +.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow, +.bs-tooltip-start .tooltip-arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; +} +.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before, +.bs-tooltip-start .tooltip-arrow::before { + left: -1px; + 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.25rem; +} +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1070; + display: block; + max-width: 276px; + font-family: var(--bs-font-sans-serif); + 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 .popover-arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; +} +.popover .popover-arrow::after, +.popover .popover-arrow::before { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; +} +.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow, +.bs-popover-top > .popover-arrow { + bottom: calc(-0.5rem - 1px); +} +.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before, +.bs-popover-top > .popover-arrow::before { + bottom: 0; + border-width: 0.5rem 0.5rem 0; + border-top-color: rgba(0, 0, 0, 0.25); +} +.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after, +.bs-popover-top > .popover-arrow::after { + bottom: 1px; + border-width: 0.5rem 0.5rem 0; + border-top-color: #fff; +} +.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow, +.bs-popover-end > .popover-arrow { + left: calc(-0.5rem - 1px); + width: 0.5rem; + height: 1rem; +} +.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before, +.bs-popover-end > .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-auto[data-popper-placement^="right"] > .popover-arrow::after, +.bs-popover-end > .popover-arrow::after { + left: 1px; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: #fff; +} +.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow, +.bs-popover-bottom > .popover-arrow { + top: calc(-0.5rem - 1px); +} +.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before, +.bs-popover-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-auto[data-popper-placement^="bottom"] > .popover-arrow::after, +.bs-popover-bottom > .popover-arrow::after { + top: 1px; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: #fff; +} +.bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before, +.bs-popover-bottom .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #f0f0f0; +} +.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow, +.bs-popover-start > .popover-arrow { + right: calc(-0.5rem - 1px); + width: 0.5rem; + height: 1rem; +} +.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before, +.bs-popover-start > .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-auto[data-popper-placement^="left"] > .popover-arrow::after, +.bs-popover-start > .popover-arrow::after { + right: 1px; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: #fff; +} +.popover-header { + padding: 0.5rem 1rem; + margin-bottom: 0; + font-size: 1rem; + background-color: #f0f0f0; + border-bottom: 1px solid rgba(0, 0, 0, 0.2); + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); +} +.popover-header:empty { + display: none; +} +.popover-body { + padding: 1rem 1rem; + color: #212529; +} +.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-next, +.carousel-item-prev, +.carousel-item.active { + display: block; +} +.active.carousel-item-end, +.carousel-item-next:not(.carousel-item-start) { + transform: translateX(100%); +} +.active.carousel-item-start, +.carousel-item-prev:not(.carousel-item-end) { + transform: translateX(-100%); +} +.carousel-fade .carousel-item { + opacity: 0; + transition-property: opacity; + transform: none; +} +.carousel-fade .carousel-item-next.carousel-item-start, +.carousel-fade .carousel-item-prev.carousel-item-end, +.carousel-fade .carousel-item.active { + z-index: 1; + opacity: 1; +} +.carousel-fade .active.carousel-item-end, +.carousel-fade .active.carousel-item-start { + z-index: 0; + opacity: 0; + transition: opacity 0s 0.6s; +} +@media (prefers-reduced-motion: reduce) { + .carousel-fade .active.carousel-item-end, + .carousel-fade .active.carousel-item-start { + 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%; + padding: 0; + color: #fff; + text-align: center; + background: 0 0; + border: 0; + opacity: 0.5; + transition: opacity 0.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: 0.9; +} +.carousel-control-prev { + left: 0; +} +.carousel-control-next { + right: 0; +} +.carousel-control-next-icon, +.carousel-control-prev-icon { + display: inline-block; + width: 2rem; + height: 2rem; + background-repeat: no-repeat; + background-position: 50%; + background-size: 100% 100%; +} +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e"); +} +.carousel-control-next-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); +} +.carousel-indicators { + position: absolute; + right: 0; + bottom: 0; + left: 0; + z-index: 2; + display: flex; + justify-content: center; + padding: 0; + margin-right: 15%; + margin-bottom: 1rem; + margin-left: 15%; + list-style: none; +} +.carousel-indicators [data-bs-target] { + box-sizing: content-box; + flex: 0 1 auto; + width: 30px; + height: 3px; + padding: 0; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #fff; + background-clip: padding-box; + border: 0; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: 0.5; + transition: opacity 0.6s ease; +} +@media (prefers-reduced-motion: reduce) { + .carousel-indicators [data-bs-target] { + transition: none; + } +} +.carousel-indicators .active { + opacity: 1; +} +.carousel-caption { + position: absolute; + right: 15%; + bottom: 1.25rem; + left: 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 { + 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 { + transform: rotate(360deg); + } +} +@keyframes spinner-border { + to { + transform: rotate(360deg); + } +} +.spinner-border { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: -0.125em; + border: 0.25em solid currentColor; + border-right-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% { + 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: -0.125em; + 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; + } +} +.offcanvas { + position: fixed; + bottom: 0; + z-index: 1045; + display: flex; + flex-direction: column; + max-width: 100%; + visibility: hidden; + background-color: #fff; + background-clip: padding-box; + outline: 0; + transition: transform 0.3s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .offcanvas { + transition: none; + } +} +.offcanvas-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: #000; +} +.offcanvas-backdrop.fade { + opacity: 0; +} +.offcanvas-backdrop.show { + opacity: 0.5; +} +.offcanvas-header { + display: flex; + align-items: center; + justify-content: space-between; + padding: 1rem 1rem; +} +.offcanvas-header .btn-close { + padding: 0.5rem 0.5rem; + margin-top: -0.5rem; + margin-right: -0.5rem; + margin-bottom: -0.5rem; +} +.offcanvas-title { + margin-bottom: 0; + line-height: 1.5; +} +.offcanvas-body { + flex-grow: 1; + padding: 1rem 1rem; + overflow-y: auto; +} +.offcanvas-start { + top: 0; + left: 0; + width: 400px; + border-right: 1px solid rgba(0, 0, 0, 0.2); + transform: translateX(-100%); +} +.offcanvas-end { + top: 0; + right: 0; + width: 400px; + border-left: 1px solid rgba(0, 0, 0, 0.2); + transform: translateX(100%); +} +.offcanvas-top { + top: 0; + right: 0; + left: 0; + height: 30vh; + max-height: 100%; + border-bottom: 1px solid rgba(0, 0, 0, 0.2); + transform: translateY(-100%); +} +.offcanvas-bottom { + right: 0; + left: 0; + height: 30vh; + max-height: 100%; + border-top: 1px solid rgba(0, 0, 0, 0.2); + transform: translateY(100%); +} +.offcanvas.show { + transform: none; +} +.placeholder { + display: inline-block; + min-height: 1em; + vertical-align: middle; + cursor: wait; + background-color: currentColor; + opacity: 0.5; +} +.placeholder.btn::before { + display: inline-block; + content: ""; +} +.placeholder-xs { + min-height: 0.6em; +} +.placeholder-sm { + min-height: 0.8em; +} +.placeholder-lg { + min-height: 1.2em; +} +.placeholder-glow .placeholder { + -webkit-animation: placeholder-glow 2s ease-in-out infinite; + animation: placeholder-glow 2s ease-in-out infinite; +} +@-webkit-keyframes placeholder-glow { + 50% { + opacity: 0.2; + } +} +@keyframes placeholder-glow { + 50% { + opacity: 0.2; + } +} +.placeholder-wave { + -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%); + mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%); + -webkit-mask-size: 200% 100%; + mask-size: 200% 100%; + -webkit-animation: placeholder-wave 2s linear infinite; + animation: placeholder-wave 2s linear infinite; +} +@-webkit-keyframes placeholder-wave { + 100% { + -webkit-mask-position: -200% 0%; + mask-position: -200% 0%; + } +} +@keyframes placeholder-wave { + 100% { + -webkit-mask-position: -200% 0%; + mask-position: -200% 0%; + } +} +.clearfix::after { + display: block; + clear: both; + content: ""; +} +.link-primary { + color: #0d6efd; +} +.link-primary:focus, +.link-primary:hover { + color: #0a58ca; +} +.link-secondary { + color: #6c757d; +} +.link-secondary:focus, +.link-secondary:hover { + color: #565e64; +} +.link-success { + color: #198754; +} +.link-success:focus, +.link-success:hover { + color: #146c43; +} +.link-info { + color: #0dcaf0; +} +.link-info:focus, +.link-info:hover { + color: #3dd5f3; +} +.link-warning { + color: #ffc107; +} +.link-warning:focus, +.link-warning:hover { + color: #ffcd39; +} +.link-danger { + color: #dc3545; +} +.link-danger:focus, +.link-danger:hover { + color: #b02a37; +} +.link-light { + color: #f8f9fa; +} +.link-light:focus, +.link-light:hover { + color: #f9fafb; +} +.link-dark { + color: #212529; +} +.link-dark:focus, +.link-dark:hover { + color: #1a1e21; +} +.ratio { + position: relative; + width: 100%; +} +.ratio::before { + display: block; + padding-top: var(--bs-aspect-ratio); + content: ""; +} +.ratio > * { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} +.ratio-1x1 { + --bs-aspect-ratio: 100%; +} +.ratio-4x3 { + --bs-aspect-ratio: 75%; +} +.ratio-16x9 { + --bs-aspect-ratio: 56.25%; +} +.ratio-21x9 { + --bs-aspect-ratio: 42.8571428571%; +} +.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; +} +.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: 1400px) { + .sticky-xxl-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} +.hstack { + display: flex; + flex-direction: row; + align-items: center; + align-self: stretch; +} +.vstack { + display: flex; + flex: 1 1 auto; + flex-direction: column; + align-self: stretch; +} +.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; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + content: ""; +} +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +.vr { + display: inline-block; + align-self: stretch; + width: 1px; + min-height: 1em; + background-color: currentColor; + opacity: 0.25; +} +.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: left !important; +} +.float-end { + float: right !important; +} +.float-none { + float: none !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-100 { + opacity: 1 !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: flex !important; +} +.d-inline-flex { + display: inline-flex !important; +} +.d-none { + display: none !important; +} +.shadow { + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; +} +.shadow-sm { + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; +} +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; +} +.shadow-none { + box-shadow: none !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; +} +.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 { + left: 0 !important; +} +.start-50 { + left: 50% !important; +} +.start-100 { + left: 100% !important; +} +.end-0 { + right: 0 !important; +} +.end-50 { + right: 50% !important; +} +.end-100 { + right: 100% !important; +} +.translate-middle { + transform: translate(-50%, -50%) !important; +} +.translate-middle-x { + transform: translateX(-50%) !important; +} +.translate-middle-y { + transform: translateY(-50%) !important; +} +.border { + border: 1px solid #dee2e6 !important; +} +.border-0 { + border: 0 !important; +} +.border-top { + border-top: 1px solid #dee2e6 !important; +} +.border-top-0 { + border-top: 0 !important; +} +.border-end { + border-right: 1px solid #dee2e6 !important; +} +.border-end-0 { + border-right: 0 !important; +} +.border-bottom { + border-bottom: 1px solid #dee2e6 !important; +} +.border-bottom-0 { + border-bottom: 0 !important; +} +.border-start { + border-left: 1px solid #dee2e6 !important; +} +.border-start-0 { + border-left: 0 !important; +} +.border-primary { + border-color: #0d6efd !important; +} +.border-secondary { + border-color: #6c757d !important; +} +.border-success { + border-color: #198754 !important; +} +.border-info { + border-color: #0dcaf0 !important; +} +.border-warning { + border-color: #ffc107 !important; +} +.border-danger { + border-color: #dc3545 !important; +} +.border-light { + border-color: #f8f9fa !important; +} +.border-dark { + border-color: #212529 !important; +} +.border-white { + border-color: #fff !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-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-100 { + height: 100vh !important; +} +.min-vh-100 { + min-height: 100vh !important; +} +.flex-fill { + flex: 1 1 auto !important; +} +.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-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; +} +.flex-wrap { + flex-wrap: wrap !important; +} +.flex-nowrap { + flex-wrap: nowrap !important; +} +.flex-wrap-reverse { + 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.5rem !important; +} +.gap-5 { + gap: 3rem !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; +} +.justify-content-evenly { + justify-content: space-evenly !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; +} +.order-first { + order: -1 !important; +} +.order-0 { + order: 0 !important; +} +.order-1 { + order: 1 !important; +} +.order-2 { + order: 2 !important; +} +.order-3 { + order: 3 !important; +} +.order-4 { + order: 4 !important; +} +.order-5 { + order: 5 !important; +} +.order-last { + 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.5rem !important; +} +.m-5 { + margin: 3rem !important; +} +.m-auto { + margin: auto !important; +} +.mx-0 { + margin-right: 0 !important; + margin-left: 0 !important; +} +.mx-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; +} +.mx-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; +} +.mx-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; +} +.mx-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; +} +.mx-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; +} +.mx-auto { + margin-right: auto !important; + margin-left: 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.5rem !important; + margin-bottom: 1.5rem !important; +} +.my-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !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.5rem !important; +} +.mt-5 { + margin-top: 3rem !important; +} +.mt-auto { + margin-top: auto !important; +} +.me-0 { + margin-right: 0 !important; +} +.me-1 { + margin-right: 0.25rem !important; +} +.me-2 { + margin-right: 0.5rem !important; +} +.me-3 { + margin-right: 1rem !important; +} +.me-4 { + margin-right: 1.5rem !important; +} +.me-5 { + margin-right: 3rem !important; +} +.me-auto { + margin-right: 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.5rem !important; +} +.mb-5 { + margin-bottom: 3rem !important; +} +.mb-auto { + margin-bottom: auto !important; +} +.ms-0 { + margin-left: 0 !important; +} +.ms-1 { + margin-left: 0.25rem !important; +} +.ms-2 { + margin-left: 0.5rem !important; +} +.ms-3 { + margin-left: 1rem !important; +} +.ms-4 { + margin-left: 1.5rem !important; +} +.ms-5 { + margin-left: 3rem !important; +} +.ms-auto { + margin-left: auto !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.5rem !important; +} +.p-5 { + padding: 3rem !important; +} +.px-0 { + padding-right: 0 !important; + padding-left: 0 !important; +} +.px-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; +} +.px-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; +} +.px-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; +} +.px-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; +} +.px-5 { + padding-right: 3rem !important; + padding-left: 3rem !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.5rem !important; + padding-bottom: 1.5rem !important; +} +.py-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !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.5rem !important; +} +.pt-5 { + padding-top: 3rem !important; +} +.pe-0 { + padding-right: 0 !important; +} +.pe-1 { + padding-right: 0.25rem !important; +} +.pe-2 { + padding-right: 0.5rem !important; +} +.pe-3 { + padding-right: 1rem !important; +} +.pe-4 { + padding-right: 1.5rem !important; +} +.pe-5 { + padding-right: 3rem !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.5rem !important; +} +.pb-5 { + padding-bottom: 3rem !important; +} +.ps-0 { + padding-left: 0 !important; +} +.ps-1 { + padding-left: 0.25rem !important; +} +.ps-2 { + padding-left: 0.5rem !important; +} +.ps-3 { + padding-left: 1rem !important; +} +.ps-4 { + padding-left: 1.5rem !important; +} +.ps-5 { + padding-left: 3rem !important; +} +.font-monospace { + font-family: var(--bs-font-monospace) !important; +} +.fs-1 { + font-size: calc(1.375rem + 1.5vw) !important; +} +.fs-2 { + font-size: calc(1.325rem + 0.9vw) !important; +} +.fs-3 { + font-size: calc(1.3rem + 0.6vw) !important; +} +.fs-4 { + font-size: calc(1.275rem + 0.3vw) !important; +} +.fs-5 { + font-size: 1.25rem !important; +} +.fs-6 { + font-size: 1rem !important; +} +.fst-italic { + font-style: italic !important; +} +.fst-normal { + font-style: normal !important; +} +.fw-light { + font-weight: 300 !important; +} +.fw-lighter { + font-weight: lighter !important; +} +.fw-normal { + font-weight: 400 !important; +} +.fw-bold { + font-weight: 700 !important; +} +.fw-bolder { + font-weight: bolder !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; +} +.text-start { + text-align: left !important; +} +.text-end { + text-align: right !important; +} +.text-center { + text-align: center !important; +} +.text-decoration-none { + text-decoration: none !important; +} +.text-decoration-underline { + text-decoration: underline !important; +} +.text-decoration-line-through { + text-decoration: line-through !important; +} +.text-lowercase { + text-transform: lowercase !important; +} +.text-uppercase { + text-transform: uppercase !important; +} +.text-capitalize { + text-transform: capitalize !important; +} +.text-wrap { + white-space: normal !important; +} +.text-nowrap { + white-space: nowrap !important; +} +.text-break { + word-wrap: break-word !important; + word-break: break-word !important; +} +.text-primary { + --bs-text-opacity: 1; + color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important; +} +.text-secondary { + --bs-text-opacity: 1; + color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important; +} +.text-success { + --bs-text-opacity: 1; + color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important; +} +.text-info { + --bs-text-opacity: 1; + color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important; +} +.text-warning { + --bs-text-opacity: 1; + color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important; +} +.text-danger { + --bs-text-opacity: 1; + color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important; +} +.text-light { + --bs-text-opacity: 1; + color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important; +} +.text-dark { + --bs-text-opacity: 1; + color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important; +} +.text-black { + --bs-text-opacity: 1; + color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important; +} +.text-white { + --bs-text-opacity: 1; + color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important; +} +.text-body { + --bs-text-opacity: 1; + color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important; +} +.text-muted { + --bs-text-opacity: 1; + color: #6c757d !important; +} +.text-black-50 { + --bs-text-opacity: 1; + color: rgba(0, 0, 0, 0.5) !important; +} +.text-white-50 { + --bs-text-opacity: 1; + color: rgba(255, 255, 255, 0.5) !important; +} +.text-reset { + --bs-text-opacity: 1; + color: inherit !important; +} +.text-opacity-25 { + --bs-text-opacity: 0.25; +} +.text-opacity-50 { + --bs-text-opacity: 0.5; +} +.text-opacity-75 { + --bs-text-opacity: 0.75; +} +.text-opacity-100 { + --bs-text-opacity: 1; +} +.bg-primary { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important; +} +.bg-secondary { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important; +} +.bg-success { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important; +} +.bg-info { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important; +} +.bg-warning { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important; +} +.bg-danger { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important; +} +.bg-light { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important; +} +.bg-dark { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important; +} +.bg-black { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important; +} +.bg-white { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important; +} +.bg-body { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important; +} +.bg-transparent { + --bs-bg-opacity: 1; + background-color: transparent !important; +} +.bg-opacity-10 { + --bs-bg-opacity: 0.1; +} +.bg-opacity-25 { + --bs-bg-opacity: 0.25; +} +.bg-opacity-50 { + --bs-bg-opacity: 0.5; +} +.bg-opacity-75 { + --bs-bg-opacity: 0.75; +} +.bg-opacity-100 { + --bs-bg-opacity: 1; +} +.bg-gradient { + background-image: var(--bs-gradient) !important; +} +.user-select-all { + -webkit-user-select: all !important; + -moz-user-select: all !important; + user-select: all !important; +} +.user-select-auto { + -webkit-user-select: auto !important; + -moz-user-select: auto !important; + user-select: auto !important; +} +.user-select-none { + -webkit-user-select: none !important; + -moz-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.2rem !important; +} +.rounded-2 { + border-radius: 0.25rem !important; +} +.rounded-3 { + border-radius: 0.3rem !important; +} +.rounded-circle { + border-radius: 50% !important; +} +.rounded-pill { + border-radius: 50rem !important; +} +.rounded-top { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; +} +.rounded-end { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; +} +.rounded-bottom { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} +.rounded-start { + border-bottom-left-radius: 0.25rem !important; + border-top-left-radius: 0.25rem !important; +} +.visible { + visibility: visible !important; +} +.invisible { + visibility: hidden !important; +} +@media (min-width: 576px) { + .float-sm-start { + float: left !important; + } + .float-sm-end { + float: right !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: flex !important; + } + .d-sm-inline-flex { + display: inline-flex !important; + } + .d-sm-none { + display: none !important; + } + .flex-sm-fill { + flex: 1 1 auto !important; + } + .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-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; + } + .flex-sm-wrap { + flex-wrap: wrap !important; + } + .flex-sm-nowrap { + flex-wrap: nowrap !important; + } + .flex-sm-wrap-reverse { + 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.5rem !important; + } + .gap-sm-5 { + gap: 3rem !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; + } + .justify-content-sm-evenly { + justify-content: space-evenly !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; + } + .order-sm-first { + order: -1 !important; + } + .order-sm-0 { + order: 0 !important; + } + .order-sm-1 { + order: 1 !important; + } + .order-sm-2 { + order: 2 !important; + } + .order-sm-3 { + order: 3 !important; + } + .order-sm-4 { + order: 4 !important; + } + .order-sm-5 { + order: 5 !important; + } + .order-sm-last { + 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.5rem !important; + } + .m-sm-5 { + margin: 3rem !important; + } + .m-sm-auto { + margin: auto !important; + } + .mx-sm-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-sm-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-sm-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-sm-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-sm-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-sm-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-sm-auto { + margin-right: auto !important; + margin-left: 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.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-sm-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !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.5rem !important; + } + .mt-sm-5 { + margin-top: 3rem !important; + } + .mt-sm-auto { + margin-top: auto !important; + } + .me-sm-0 { + margin-right: 0 !important; + } + .me-sm-1 { + margin-right: 0.25rem !important; + } + .me-sm-2 { + margin-right: 0.5rem !important; + } + .me-sm-3 { + margin-right: 1rem !important; + } + .me-sm-4 { + margin-right: 1.5rem !important; + } + .me-sm-5 { + margin-right: 3rem !important; + } + .me-sm-auto { + margin-right: 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.5rem !important; + } + .mb-sm-5 { + margin-bottom: 3rem !important; + } + .mb-sm-auto { + margin-bottom: auto !important; + } + .ms-sm-0 { + margin-left: 0 !important; + } + .ms-sm-1 { + margin-left: 0.25rem !important; + } + .ms-sm-2 { + margin-left: 0.5rem !important; + } + .ms-sm-3 { + margin-left: 1rem !important; + } + .ms-sm-4 { + margin-left: 1.5rem !important; + } + .ms-sm-5 { + margin-left: 3rem !important; + } + .ms-sm-auto { + margin-left: auto !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.5rem !important; + } + .p-sm-5 { + padding: 3rem !important; + } + .px-sm-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-sm-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-sm-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-sm-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-sm-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-sm-5 { + padding-right: 3rem !important; + padding-left: 3rem !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.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-sm-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !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.5rem !important; + } + .pt-sm-5 { + padding-top: 3rem !important; + } + .pe-sm-0 { + padding-right: 0 !important; + } + .pe-sm-1 { + padding-right: 0.25rem !important; + } + .pe-sm-2 { + padding-right: 0.5rem !important; + } + .pe-sm-3 { + padding-right: 1rem !important; + } + .pe-sm-4 { + padding-right: 1.5rem !important; + } + .pe-sm-5 { + padding-right: 3rem !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.5rem !important; + } + .pb-sm-5 { + padding-bottom: 3rem !important; + } + .ps-sm-0 { + padding-left: 0 !important; + } + .ps-sm-1 { + padding-left: 0.25rem !important; + } + .ps-sm-2 { + padding-left: 0.5rem !important; + } + .ps-sm-3 { + padding-left: 1rem !important; + } + .ps-sm-4 { + padding-left: 1.5rem !important; + } + .ps-sm-5 { + padding-left: 3rem !important; + } + .text-sm-start { + text-align: left !important; + } + .text-sm-end { + text-align: right !important; + } + .text-sm-center { + text-align: center !important; + } +} +@media (min-width: 768px) { + .float-md-start { + float: left !important; + } + .float-md-end { + float: right !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: flex !important; + } + .d-md-inline-flex { + display: inline-flex !important; + } + .d-md-none { + display: none !important; + } + .flex-md-fill { + flex: 1 1 auto !important; + } + .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-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; + } + .flex-md-wrap { + flex-wrap: wrap !important; + } + .flex-md-nowrap { + flex-wrap: nowrap !important; + } + .flex-md-wrap-reverse { + 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.5rem !important; + } + .gap-md-5 { + gap: 3rem !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; + } + .justify-content-md-evenly { + justify-content: space-evenly !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; + } + .order-md-first { + order: -1 !important; + } + .order-md-0 { + order: 0 !important; + } + .order-md-1 { + order: 1 !important; + } + .order-md-2 { + order: 2 !important; + } + .order-md-3 { + order: 3 !important; + } + .order-md-4 { + order: 4 !important; + } + .order-md-5 { + order: 5 !important; + } + .order-md-last { + 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.5rem !important; + } + .m-md-5 { + margin: 3rem !important; + } + .m-md-auto { + margin: auto !important; + } + .mx-md-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-md-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-md-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-md-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-md-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-md-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-md-auto { + margin-right: auto !important; + margin-left: 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.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-md-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !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.5rem !important; + } + .mt-md-5 { + margin-top: 3rem !important; + } + .mt-md-auto { + margin-top: auto !important; + } + .me-md-0 { + margin-right: 0 !important; + } + .me-md-1 { + margin-right: 0.25rem !important; + } + .me-md-2 { + margin-right: 0.5rem !important; + } + .me-md-3 { + margin-right: 1rem !important; + } + .me-md-4 { + margin-right: 1.5rem !important; + } + .me-md-5 { + margin-right: 3rem !important; + } + .me-md-auto { + margin-right: 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.5rem !important; + } + .mb-md-5 { + margin-bottom: 3rem !important; + } + .mb-md-auto { + margin-bottom: auto !important; + } + .ms-md-0 { + margin-left: 0 !important; + } + .ms-md-1 { + margin-left: 0.25rem !important; + } + .ms-md-2 { + margin-left: 0.5rem !important; + } + .ms-md-3 { + margin-left: 1rem !important; + } + .ms-md-4 { + margin-left: 1.5rem !important; + } + .ms-md-5 { + margin-left: 3rem !important; + } + .ms-md-auto { + margin-left: auto !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.5rem !important; + } + .p-md-5 { + padding: 3rem !important; + } + .px-md-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-md-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-md-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-md-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-md-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-md-5 { + padding-right: 3rem !important; + padding-left: 3rem !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.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-md-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !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.5rem !important; + } + .pt-md-5 { + padding-top: 3rem !important; + } + .pe-md-0 { + padding-right: 0 !important; + } + .pe-md-1 { + padding-right: 0.25rem !important; + } + .pe-md-2 { + padding-right: 0.5rem !important; + } + .pe-md-3 { + padding-right: 1rem !important; + } + .pe-md-4 { + padding-right: 1.5rem !important; + } + .pe-md-5 { + padding-right: 3rem !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.5rem !important; + } + .pb-md-5 { + padding-bottom: 3rem !important; + } + .ps-md-0 { + padding-left: 0 !important; + } + .ps-md-1 { + padding-left: 0.25rem !important; + } + .ps-md-2 { + padding-left: 0.5rem !important; + } + .ps-md-3 { + padding-left: 1rem !important; + } + .ps-md-4 { + padding-left: 1.5rem !important; + } + .ps-md-5 { + padding-left: 3rem !important; + } + .text-md-start { + text-align: left !important; + } + .text-md-end { + text-align: right !important; + } + .text-md-center { + text-align: center !important; + } +} +@media (min-width: 992px) { + .float-lg-start { + float: left !important; + } + .float-lg-end { + float: right !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: flex !important; + } + .d-lg-inline-flex { + display: inline-flex !important; + } + .d-lg-none { + display: none !important; + } + .flex-lg-fill { + flex: 1 1 auto !important; + } + .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-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; + } + .flex-lg-wrap { + flex-wrap: wrap !important; + } + .flex-lg-nowrap { + flex-wrap: nowrap !important; + } + .flex-lg-wrap-reverse { + 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.5rem !important; + } + .gap-lg-5 { + gap: 3rem !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; + } + .justify-content-lg-evenly { + justify-content: space-evenly !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; + } + .order-lg-first { + order: -1 !important; + } + .order-lg-0 { + order: 0 !important; + } + .order-lg-1 { + order: 1 !important; + } + .order-lg-2 { + order: 2 !important; + } + .order-lg-3 { + order: 3 !important; + } + .order-lg-4 { + order: 4 !important; + } + .order-lg-5 { + order: 5 !important; + } + .order-lg-last { + 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.5rem !important; + } + .m-lg-5 { + margin: 3rem !important; + } + .m-lg-auto { + margin: auto !important; + } + .mx-lg-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-lg-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-lg-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-lg-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-lg-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-lg-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-lg-auto { + margin-right: auto !important; + margin-left: 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.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-lg-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !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.5rem !important; + } + .mt-lg-5 { + margin-top: 3rem !important; + } + .mt-lg-auto { + margin-top: auto !important; + } + .me-lg-0 { + margin-right: 0 !important; + } + .me-lg-1 { + margin-right: 0.25rem !important; + } + .me-lg-2 { + margin-right: 0.5rem !important; + } + .me-lg-3 { + margin-right: 1rem !important; + } + .me-lg-4 { + margin-right: 1.5rem !important; + } + .me-lg-5 { + margin-right: 3rem !important; + } + .me-lg-auto { + margin-right: 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.5rem !important; + } + .mb-lg-5 { + margin-bottom: 3rem !important; + } + .mb-lg-auto { + margin-bottom: auto !important; + } + .ms-lg-0 { + margin-left: 0 !important; + } + .ms-lg-1 { + margin-left: 0.25rem !important; + } + .ms-lg-2 { + margin-left: 0.5rem !important; + } + .ms-lg-3 { + margin-left: 1rem !important; + } + .ms-lg-4 { + margin-left: 1.5rem !important; + } + .ms-lg-5 { + margin-left: 3rem !important; + } + .ms-lg-auto { + margin-left: auto !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.5rem !important; + } + .p-lg-5 { + padding: 3rem !important; + } + .px-lg-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-lg-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-lg-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-lg-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-lg-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-lg-5 { + padding-right: 3rem !important; + padding-left: 3rem !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.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-lg-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !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.5rem !important; + } + .pt-lg-5 { + padding-top: 3rem !important; + } + .pe-lg-0 { + padding-right: 0 !important; + } + .pe-lg-1 { + padding-right: 0.25rem !important; + } + .pe-lg-2 { + padding-right: 0.5rem !important; + } + .pe-lg-3 { + padding-right: 1rem !important; + } + .pe-lg-4 { + padding-right: 1.5rem !important; + } + .pe-lg-5 { + padding-right: 3rem !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.5rem !important; + } + .pb-lg-5 { + padding-bottom: 3rem !important; + } + .ps-lg-0 { + padding-left: 0 !important; + } + .ps-lg-1 { + padding-left: 0.25rem !important; + } + .ps-lg-2 { + padding-left: 0.5rem !important; + } + .ps-lg-3 { + padding-left: 1rem !important; + } + .ps-lg-4 { + padding-left: 1.5rem !important; + } + .ps-lg-5 { + padding-left: 3rem !important; + } + .text-lg-start { + text-align: left !important; + } + .text-lg-end { + text-align: right !important; + } + .text-lg-center { + text-align: center !important; + } +} +@media (min-width: 1200px) { + .float-xl-start { + float: left !important; + } + .float-xl-end { + float: right !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: flex !important; + } + .d-xl-inline-flex { + display: inline-flex !important; + } + .d-xl-none { + display: none !important; + } + .flex-xl-fill { + flex: 1 1 auto !important; + } + .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-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; + } + .flex-xl-wrap { + flex-wrap: wrap !important; + } + .flex-xl-nowrap { + flex-wrap: nowrap !important; + } + .flex-xl-wrap-reverse { + 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.5rem !important; + } + .gap-xl-5 { + gap: 3rem !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; + } + .justify-content-xl-evenly { + justify-content: space-evenly !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; + } + .order-xl-first { + order: -1 !important; + } + .order-xl-0 { + order: 0 !important; + } + .order-xl-1 { + order: 1 !important; + } + .order-xl-2 { + order: 2 !important; + } + .order-xl-3 { + order: 3 !important; + } + .order-xl-4 { + order: 4 !important; + } + .order-xl-5 { + order: 5 !important; + } + .order-xl-last { + 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.5rem !important; + } + .m-xl-5 { + margin: 3rem !important; + } + .m-xl-auto { + margin: auto !important; + } + .mx-xl-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-xl-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-xl-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-xl-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-xl-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-xl-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-xl-auto { + margin-right: auto !important; + margin-left: 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.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-xl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !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.5rem !important; + } + .mt-xl-5 { + margin-top: 3rem !important; + } + .mt-xl-auto { + margin-top: auto !important; + } + .me-xl-0 { + margin-right: 0 !important; + } + .me-xl-1 { + margin-right: 0.25rem !important; + } + .me-xl-2 { + margin-right: 0.5rem !important; + } + .me-xl-3 { + margin-right: 1rem !important; + } + .me-xl-4 { + margin-right: 1.5rem !important; + } + .me-xl-5 { + margin-right: 3rem !important; + } + .me-xl-auto { + margin-right: 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.5rem !important; + } + .mb-xl-5 { + margin-bottom: 3rem !important; + } + .mb-xl-auto { + margin-bottom: auto !important; + } + .ms-xl-0 { + margin-left: 0 !important; + } + .ms-xl-1 { + margin-left: 0.25rem !important; + } + .ms-xl-2 { + margin-left: 0.5rem !important; + } + .ms-xl-3 { + margin-left: 1rem !important; + } + .ms-xl-4 { + margin-left: 1.5rem !important; + } + .ms-xl-5 { + margin-left: 3rem !important; + } + .ms-xl-auto { + margin-left: auto !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.5rem !important; + } + .p-xl-5 { + padding: 3rem !important; + } + .px-xl-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-xl-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-xl-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-xl-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-xl-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-xl-5 { + padding-right: 3rem !important; + padding-left: 3rem !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.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-xl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !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.5rem !important; + } + .pt-xl-5 { + padding-top: 3rem !important; + } + .pe-xl-0 { + padding-right: 0 !important; + } + .pe-xl-1 { + padding-right: 0.25rem !important; + } + .pe-xl-2 { + padding-right: 0.5rem !important; + } + .pe-xl-3 { + padding-right: 1rem !important; + } + .pe-xl-4 { + padding-right: 1.5rem !important; + } + .pe-xl-5 { + padding-right: 3rem !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.5rem !important; + } + .pb-xl-5 { + padding-bottom: 3rem !important; + } + .ps-xl-0 { + padding-left: 0 !important; + } + .ps-xl-1 { + padding-left: 0.25rem !important; + } + .ps-xl-2 { + padding-left: 0.5rem !important; + } + .ps-xl-3 { + padding-left: 1rem !important; + } + .ps-xl-4 { + padding-left: 1.5rem !important; + } + .ps-xl-5 { + padding-left: 3rem !important; + } + .text-xl-start { + text-align: left !important; + } + .text-xl-end { + text-align: right !important; + } + .text-xl-center { + text-align: center !important; + } +} +@media (min-width: 1400px) { + .float-xxl-start { + float: left !important; + } + .float-xxl-end { + float: right !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: flex !important; + } + .d-xxl-inline-flex { + display: inline-flex !important; + } + .d-xxl-none { + display: none !important; + } + .flex-xxl-fill { + flex: 1 1 auto !important; + } + .flex-xxl-row { + flex-direction: row !important; + } + .flex-xxl-column { + flex-direction: column !important; + } + .flex-xxl-row-reverse { + flex-direction: row-reverse !important; + } + .flex-xxl-column-reverse { + flex-direction: column-reverse !important; + } + .flex-xxl-grow-0 { + flex-grow: 0 !important; + } + .flex-xxl-grow-1 { + flex-grow: 1 !important; + } + .flex-xxl-shrink-0 { + flex-shrink: 0 !important; + } + .flex-xxl-shrink-1 { + flex-shrink: 1 !important; + } + .flex-xxl-wrap { + flex-wrap: wrap !important; + } + .flex-xxl-nowrap { + flex-wrap: nowrap !important; + } + .flex-xxl-wrap-reverse { + 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.5rem !important; + } + .gap-xxl-5 { + gap: 3rem !important; + } + .justify-content-xxl-start { + justify-content: flex-start !important; + } + .justify-content-xxl-end { + justify-content: flex-end !important; + } + .justify-content-xxl-center { + justify-content: center !important; + } + .justify-content-xxl-between { + justify-content: space-between !important; + } + .justify-content-xxl-around { + justify-content: space-around !important; + } + .justify-content-xxl-evenly { + justify-content: space-evenly !important; + } + .align-items-xxl-start { + align-items: flex-start !important; + } + .align-items-xxl-end { + align-items: flex-end !important; + } + .align-items-xxl-center { + align-items: center !important; + } + .align-items-xxl-baseline { + align-items: baseline !important; + } + .align-items-xxl-stretch { + align-items: stretch !important; + } + .align-content-xxl-start { + align-content: flex-start !important; + } + .align-content-xxl-end { + align-content: flex-end !important; + } + .align-content-xxl-center { + align-content: center !important; + } + .align-content-xxl-between { + align-content: space-between !important; + } + .align-content-xxl-around { + align-content: space-around !important; + } + .align-content-xxl-stretch { + align-content: stretch !important; + } + .align-self-xxl-auto { + align-self: auto !important; + } + .align-self-xxl-start { + align-self: flex-start !important; + } + .align-self-xxl-end { + align-self: flex-end !important; + } + .align-self-xxl-center { + align-self: center !important; + } + .align-self-xxl-baseline { + align-self: baseline !important; + } + .align-self-xxl-stretch { + align-self: stretch !important; + } + .order-xxl-first { + order: -1 !important; + } + .order-xxl-0 { + order: 0 !important; + } + .order-xxl-1 { + order: 1 !important; + } + .order-xxl-2 { + order: 2 !important; + } + .order-xxl-3 { + order: 3 !important; + } + .order-xxl-4 { + order: 4 !important; + } + .order-xxl-5 { + order: 5 !important; + } + .order-xxl-last { + 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.5rem !important; + } + .m-xxl-5 { + margin: 3rem !important; + } + .m-xxl-auto { + margin: auto !important; + } + .mx-xxl-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-xxl-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-xxl-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-xxl-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-xxl-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-xxl-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-xxl-auto { + margin-right: auto !important; + margin-left: 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.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-xxl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !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.5rem !important; + } + .mt-xxl-5 { + margin-top: 3rem !important; + } + .mt-xxl-auto { + margin-top: auto !important; + } + .me-xxl-0 { + margin-right: 0 !important; + } + .me-xxl-1 { + margin-right: 0.25rem !important; + } + .me-xxl-2 { + margin-right: 0.5rem !important; + } + .me-xxl-3 { + margin-right: 1rem !important; + } + .me-xxl-4 { + margin-right: 1.5rem !important; + } + .me-xxl-5 { + margin-right: 3rem !important; + } + .me-xxl-auto { + margin-right: 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.5rem !important; + } + .mb-xxl-5 { + margin-bottom: 3rem !important; + } + .mb-xxl-auto { + margin-bottom: auto !important; + } + .ms-xxl-0 { + margin-left: 0 !important; + } + .ms-xxl-1 { + margin-left: 0.25rem !important; + } + .ms-xxl-2 { + margin-left: 0.5rem !important; + } + .ms-xxl-3 { + margin-left: 1rem !important; + } + .ms-xxl-4 { + margin-left: 1.5rem !important; + } + .ms-xxl-5 { + margin-left: 3rem !important; + } + .ms-xxl-auto { + margin-left: auto !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.5rem !important; + } + .p-xxl-5 { + padding: 3rem !important; + } + .px-xxl-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-xxl-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-xxl-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-xxl-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-xxl-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-xxl-5 { + padding-right: 3rem !important; + padding-left: 3rem !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.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-xxl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !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.5rem !important; + } + .pt-xxl-5 { + padding-top: 3rem !important; + } + .pe-xxl-0 { + padding-right: 0 !important; + } + .pe-xxl-1 { + padding-right: 0.25rem !important; + } + .pe-xxl-2 { + padding-right: 0.5rem !important; + } + .pe-xxl-3 { + padding-right: 1rem !important; + } + .pe-xxl-4 { + padding-right: 1.5rem !important; + } + .pe-xxl-5 { + padding-right: 3rem !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.5rem !important; + } + .pb-xxl-5 { + padding-bottom: 3rem !important; + } + .ps-xxl-0 { + padding-left: 0 !important; + } + .ps-xxl-1 { + padding-left: 0.25rem !important; + } + .ps-xxl-2 { + padding-left: 0.5rem !important; + } + .ps-xxl-3 { + padding-left: 1rem !important; + } + .ps-xxl-4 { + padding-left: 1.5rem !important; + } + .ps-xxl-5 { + padding-left: 3rem !important; + } + .text-xxl-start { + text-align: left !important; + } + .text-xxl-end { + text-align: right !important; + } + .text-xxl-center { + text-align: center !important; + } +} +@media (min-width: 1200px) { + .fs-1 { + font-size: 2.5rem !important; + } + .fs-2 { + font-size: 2rem !important; + } + .fs-3 { + font-size: 1.75rem !important; + } + .fs-4 { + font-size: 1.5rem !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: flex !important; + } + .d-print-inline-flex { + display: inline-flex !important; + } + .d-print-none { + display: none !important; + } +} diff --git a/site/resources/css/vendor/jquery.fancybox.min.css b/site/resources/css/vendor/jquery.fancybox.min.css new file mode 100644 index 0000000..9277a50 --- /dev/null +++ b/site/resources/css/vendor/jquery.fancybox.min.css @@ -0,0 +1 @@ +body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;backface-visibility:hidden;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;height:100%;left:0;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-webkit-transform:translateZ(0);transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.87;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s,visibility 0s linear .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s,visibility 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;text-align:center;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;-webkit-transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;height:100%;margin-right:-.25em;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--next{z-index:99995}.fancybox-slide--image{overflow:visible;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px 6px 0}.fancybox-slide--iframe{padding:44px 44px 0}.fancybox-content{background:#fff;display:inline-block;margin:0 0 6px;max-width:100%;overflow:auto;padding:0;padding:24px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{-webkit-animation-timing-function:cubic-bezier(.5,0,.14,1);animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;margin:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;-webkit-transform-origin:top left;transform-origin:top left;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-drag .fancybox-content{cursor:-webkit-grab;cursor:grab}.fancybox-is-dragging .fancybox-content{cursor:-webkit-grabbing;cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--html .fancybox-content{margin-bottom:6px}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;margin:0;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff;height:calc(100% - 44px);margin-bottom:44px}.fancybox-iframe,.fancybox-video{background:transparent;border:0;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{vertical-align:top}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;cursor:pointer;display:inline-block;height:44px;margin:0;outline:none;padding:10px;transition:color .2s;vertical-align:top;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:focus,.fancybox-button:hover{color:#fff}.fancybox-button.disabled,.fancybox-button.disabled:hover,.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default}.fancybox-button svg{display:block;overflow:visible;position:relative;shape-rendering:geometricPrecision}.fancybox-button svg path{fill:transparent;stroke:currentColor;stroke-linejoin:round;stroke-width:3}.fancybox-button--pause svg path:nth-child(1),.fancybox-button--play svg path:nth-child(2){display:none}.fancybox-button--play svg path,.fancybox-button--share svg path,.fancybox-button--thumbs svg path{fill:currentColor}.fancybox-button--share svg path{stroke-width:1}.fancybox-navigation .fancybox-button{height:38px;opacity:0;padding:6px;position:absolute;top:50%;width:38px}.fancybox-show-nav .fancybox-navigation .fancybox-button{transition:opacity .25s,visibility 0s,color .25s}.fancybox-navigation .fancybox-button:after{content:"";left:-25px;padding:50px;position:absolute;top:-25px}.fancybox-navigation .fancybox-button--arrow_left{left:6px}.fancybox-navigation .fancybox-button--arrow_right{right:6px}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#555;cursor:pointer;height:44px;margin:0;padding:6px;position:absolute;right:0;top:0;width:44px;z-index:10}.fancybox-close-small svg{fill:transparent;opacity:.8;stroke:currentColor;stroke-width:1.5;transition:stroke .1s}.fancybox-close-small:focus{outline:none}.fancybox-close-small:hover svg{opacity:1}.fancybox-slide--iframe .fancybox-close-small,.fancybox-slide--image .fancybox-close-small,.fancybox-slide--video .fancybox-close-small{color:#ccc;padding:5px;right:-12px;top:-44px}.fancybox-slide--iframe .fancybox-close-small:hover svg,.fancybox-slide--image .fancybox-close-small:hover svg,.fancybox-slide--video .fancybox-close-small:hover svg{background:transparent;color:#fff}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small{display:none}.fancybox-caption{bottom:0;color:#fff;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:25px 44px;right:0}.fancybox-caption:before{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEtCAQAAABjBcL7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHRJREFUKM+Vk8EOgDAIQ0vj/3+xBw8qIZZueFnIKC90MCAI8DlrkHGeqqGIU6lVigrBtpCWqeRWoHDNqs0F7VNVBVxmHRlvoVqjaYkdnDIaivH2HqZ5+oZj3JUzWB+cOz4G48Bg+tsJ/tqu4dLC/4Xb+0GcF5BwBC0AA53qAAAAAElFTkSuQmCC);background-repeat:repeat-x;background-size:contain;bottom:0;content:"";display:block;left:0;pointer-events:none;position:absolute;right:0;top:-25px;z-index:-1}.fancybox-caption:after{border-bottom:1px solid hsla(0,0%,100%,.3);content:"";display:block;left:44px;position:absolute;right:44px;top:0}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{-webkit-animation:a .8s infinite linear;animation:a .8s infinite linear;background:transparent;border:6px solid hsla(0,0%,39%,.5);border-radius:100%;border-top-color:#fff;height:60px;left:50%;margin:-30px 0 0 -30px;opacity:.6;padding:0;position:absolute;top:50%;width:60px;z-index:99999}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;-webkit-transform:scale3d(1.5,1.5,1.5);transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;-webkit-transform:scale3d(.5,.5,.5);transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;-webkit-transform:rotate(1turn);transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;-webkit-transform:scale3d(0,0,0) translate3d(-100%,0,0);transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;-webkit-transform:scale3d(0,0,0) translate3d(100%,0,0);transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;-webkit-transform:scaleX(1) translateZ(0);transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{-webkit-transform:translate3d(-100%,0,0) scale(.1) skew(-10deg);transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{-webkit-transform:translate3d(100%,0,0) scale(.1) skew(10deg);transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{-webkit-transform:translateZ(0) scale(1);transform:translateZ(0) scale(1)}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#fff;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:transparent;top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs>ul{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x>ul{overflow:hidden}.fancybox-thumbs-y>ul::-webkit-scrollbar{width:7px}.fancybox-thumbs-y>ul::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y>ul::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs>ul>li{-webkit-backface-visibility:hidden;backface-visibility:hidden;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs-loading{background:rgba(0,0,0,.1)}.fancybox-thumbs>ul>li{background-position:50%;background-repeat:no-repeat;background-size:cover}.fancybox-thumbs>ul>li:before{border:4px solid #4ea7f9;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs .fancybox-thumbs-active:before{opacity:1}@media (max-width:800px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs>ul>li{max-width:calc(100% - 10px)}} \ No newline at end of file diff --git a/site/resources/css/vendor/nice-select.css b/site/resources/css/vendor/nice-select.css new file mode 100644 index 0000000..23fe17a --- /dev/null +++ b/site/resources/css/vendor/nice-select.css @@ -0,0 +1 @@ +.nice-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;-webkit-box-sizing:border-box;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:normal;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left !important;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.nice-select:hover{border-color:#dbdbdb}.nice-select:active,.nice-select.open,.nice-select:focus{border-color:#999}.nice-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;-o-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.nice-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.nice-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.nice-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.nice-select.disabled:after{border-color:#ccc}.nice-select.wide{width:100%}.nice-select.wide .list{left:0 !important;right:0 !important}.nice-select.right{float:right}.nice-select.right .list{left:auto;right:0}.nice-select.small{font-size:12px;height:36px;line-height:34px}.nice-select.small:after{height:4px;width:4px}.nice-select.small .option{line-height:34px;min-height:34px}.nice-select .list{background-color:#fff;border-radius:5px;-webkit-box-shadow:0 0 0 1px rgba(68,68,68,0.11);box-shadow:0 0 0 1px rgba(68,68,68,0.11);-webkit-box-sizing:border-box;box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(0.75) translateY(-21px);-ms-transform:scale(0.75) translateY(-21px);transform:scale(0.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(0.5,0,0,1.25),opacity .15s ease-out;-o-transition:all .2s cubic-bezier(0.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(0.5,0,0,1.25),opacity .15s ease-out;z-index:9}.nice-select .list:hover .option:not(:hover){background-color:transparent !important}.nice-select .option{cursor:pointer;font-weight:400;line-height:40px;list-style:none;min-height:40px;outline:0;padding-left:18px;padding-right:29px;text-align:left;-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s}.nice-select .option:hover,.nice-select .option.focus,.nice-select .option.selected.focus{background-color:#f6f6f6}.nice-select .option.selected{font-weight:bold}.nice-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .nice-select .list{display:none}.no-csspointerevents .nice-select.open .list{display:block} \ No newline at end of file diff --git a/site/resources/css/vendor/slick-theme.css b/site/resources/css/vendor/slick-theme.css new file mode 100644 index 0000000..e8517dd --- /dev/null +++ b/site/resources/css/vendor/slick-theme.css @@ -0,0 +1 @@ +@charset 'UTF-8';.slick-loading .slick-list{background:#fff url('../../img/ajax-loader.gif') center center no-repeat}@font-face{font-family:'slick';font-weight:normal;font-style:normal;src:url('../../fonts/slick.eot');src:url('../../fonts/slick.eot?#iefix') format('embedded-opentype'),url('../../fonts/slick.woff') format('woff'),url('../../fonts/slick.ttf') format('truetype'),url('../../fonts/slick.svg#slick') format('svg')}.slick-prev,.slick-next{font-size:0;line-height:0;position:absolute;top:50%;display:block;width:20px;height:20px;padding:0;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);cursor:pointer;color:transparent;border:0;outline:0;background:transparent}.slick-prev:hover,.slick-prev:focus,.slick-next:hover,.slick-next:focus{color:transparent;outline:0;background:transparent}.slick-prev:hover:before,.slick-prev:focus:before,.slick-next:hover:before,.slick-next:focus:before{opacity:1}.slick-prev.slick-disabled:before,.slick-next.slick-disabled:before{opacity:.25}.slick-prev:before,.slick-next:before{font-family:'slick';font-size:20px;line-height:1;opacity:.75;color:white;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-prev{left:-25px}[dir='rtl'] .slick-prev{right:-25px;left:auto}.slick-prev:before{content:'←'}[dir='rtl'] .slick-prev:before{content:'→'}.slick-next{right:-25px}[dir='rtl'] .slick-next{right:auto;left:-25px}.slick-next:before{content:'→'}[dir='rtl'] .slick-next:before{content:'←'}.slick-dotted.slick-slider{margin-bottom:30px}.slick-dots{position:absolute;bottom:-25px;display:block;width:100%;padding:0;margin:0;list-style:none;text-align:center}.slick-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0 5px;padding:0;cursor:pointer}.slick-dots li button{font-size:0;line-height:0;display:block;width:20px;height:20px;padding:5px;cursor:pointer;color:transparent;border:0;outline:0;background:transparent}.slick-dots li button:hover,.slick-dots li button:focus{outline:0}.slick-dots li button:hover:before,.slick-dots li button:focus:before{opacity:1}.slick-dots li button:before{font-family:'slick';font-size:6px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:'•';text-align:center;opacity:.25;color:black;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-dots li.slick-active button:before{opacity:.75;color:black} \ No newline at end of file diff --git a/site/resources/css/vendor/slick.css b/site/resources/css/vendor/slick.css new file mode 100644 index 0000000..2cfefc8 --- /dev/null +++ b/site/resources/css/vendor/slick.css @@ -0,0 +1 @@ +.slick-slider{position:relative;display:block;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir='rtl'] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none} \ No newline at end of file diff --git a/site/resources/fonts/BakbakOneRegular.woff b/site/resources/fonts/BakbakOneRegular.woff new file mode 100644 index 0000000..0615fd9 Binary files /dev/null and b/site/resources/fonts/BakbakOneRegular.woff differ diff --git a/site/resources/fonts/ChakraPetch-Bold.woff b/site/resources/fonts/ChakraPetch-Bold.woff new file mode 100644 index 0000000..b630421 Binary files /dev/null and b/site/resources/fonts/ChakraPetch-Bold.woff differ diff --git a/site/resources/fonts/ChakraPetch-BoldItalic.woff b/site/resources/fonts/ChakraPetch-BoldItalic.woff new file mode 100644 index 0000000..f8de535 Binary files /dev/null and b/site/resources/fonts/ChakraPetch-BoldItalic.woff differ diff --git a/site/resources/fonts/ChakraPetch-ExtraLight.woff b/site/resources/fonts/ChakraPetch-ExtraLight.woff new file mode 100644 index 0000000..64809ff Binary files /dev/null and b/site/resources/fonts/ChakraPetch-ExtraLight.woff differ diff --git a/site/resources/fonts/ChakraPetch-ExtraLightItalic.woff b/site/resources/fonts/ChakraPetch-ExtraLightItalic.woff new file mode 100644 index 0000000..2b608a8 Binary files /dev/null and b/site/resources/fonts/ChakraPetch-ExtraLightItalic.woff differ diff --git a/site/resources/fonts/ChakraPetch-Italic.woff b/site/resources/fonts/ChakraPetch-Italic.woff new file mode 100644 index 0000000..e53fa12 Binary files /dev/null and b/site/resources/fonts/ChakraPetch-Italic.woff differ diff --git a/site/resources/fonts/ChakraPetch-Light.woff b/site/resources/fonts/ChakraPetch-Light.woff new file mode 100644 index 0000000..f98ecb3 Binary files /dev/null and b/site/resources/fonts/ChakraPetch-Light.woff differ diff --git a/site/resources/fonts/ChakraPetch-LightItalic.woff b/site/resources/fonts/ChakraPetch-LightItalic.woff new file mode 100644 index 0000000..006267c Binary files /dev/null and b/site/resources/fonts/ChakraPetch-LightItalic.woff differ diff --git a/site/resources/fonts/ChakraPetch-Medium.woff b/site/resources/fonts/ChakraPetch-Medium.woff new file mode 100644 index 0000000..a26e7da Binary files /dev/null and b/site/resources/fonts/ChakraPetch-Medium.woff differ diff --git a/site/resources/fonts/ChakraPetch-MediumItalic.woff b/site/resources/fonts/ChakraPetch-MediumItalic.woff new file mode 100644 index 0000000..43df621 Binary files /dev/null and b/site/resources/fonts/ChakraPetch-MediumItalic.woff differ diff --git a/site/resources/fonts/ChakraPetch-Regular.woff b/site/resources/fonts/ChakraPetch-Regular.woff new file mode 100644 index 0000000..f021ed6 Binary files /dev/null and b/site/resources/fonts/ChakraPetch-Regular.woff differ diff --git a/site/resources/fonts/ChakraPetch-SemiBold.woff b/site/resources/fonts/ChakraPetch-SemiBold.woff new file mode 100644 index 0000000..c9fa232 Binary files /dev/null and b/site/resources/fonts/ChakraPetch-SemiBold.woff differ diff --git a/site/resources/fonts/ChakraPetch-SemiBoldItalic.woff b/site/resources/fonts/ChakraPetch-SemiBoldItalic.woff new file mode 100644 index 0000000..f6a413e Binary files /dev/null and b/site/resources/fonts/ChakraPetch-SemiBoldItalic.woff differ diff --git a/site/resources/fonts/GothamUltra-Italic.eot b/site/resources/fonts/GothamUltra-Italic.eot new file mode 100644 index 0000000..60c7fa8 Binary files /dev/null and b/site/resources/fonts/GothamUltra-Italic.eot differ diff --git a/site/resources/fonts/GothamUltra-Italic.svg b/site/resources/fonts/GothamUltra-Italic.svg new file mode 100644 index 0000000..6325f25 --- /dev/null +++ b/site/resources/fonts/GothamUltra-Italic.svg @@ -0,0 +1,637 @@ + + + + +Created by FontForge 20170731 at Mon Oct 10 10:26:50 2005 + By Aleksey,,, +HTF Gotham Copr. 2003 The Hoefler Type Foundry, Inc. Info: www.typography.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/site/resources/fonts/GothamUltra-Italic.woff b/site/resources/fonts/GothamUltra-Italic.woff new file mode 100644 index 0000000..13c9046 Binary files /dev/null and b/site/resources/fonts/GothamUltra-Italic.woff differ diff --git a/site/resources/fonts/GothamUltra-Italic.woff2 b/site/resources/fonts/GothamUltra-Italic.woff2 new file mode 100644 index 0000000..5b76984 Binary files /dev/null and b/site/resources/fonts/GothamUltra-Italic.woff2 differ diff --git a/site/resources/fonts/Poppins-Black.woff b/site/resources/fonts/Poppins-Black.woff new file mode 100644 index 0000000..65f3801 Binary files /dev/null and b/site/resources/fonts/Poppins-Black.woff differ diff --git a/site/resources/fonts/Poppins-BlackItalic.woff b/site/resources/fonts/Poppins-BlackItalic.woff new file mode 100644 index 0000000..63eb02e Binary files /dev/null and b/site/resources/fonts/Poppins-BlackItalic.woff differ diff --git a/site/resources/fonts/Poppins-Bold.woff b/site/resources/fonts/Poppins-Bold.woff new file mode 100644 index 0000000..28fe6b6 Binary files /dev/null and b/site/resources/fonts/Poppins-Bold.woff differ diff --git a/site/resources/fonts/Poppins-BoldItalic.woff b/site/resources/fonts/Poppins-BoldItalic.woff new file mode 100644 index 0000000..8ec438d Binary files /dev/null and b/site/resources/fonts/Poppins-BoldItalic.woff differ diff --git a/site/resources/fonts/Poppins-ExtraBold.woff b/site/resources/fonts/Poppins-ExtraBold.woff new file mode 100644 index 0000000..10df1ac Binary files /dev/null and b/site/resources/fonts/Poppins-ExtraBold.woff differ diff --git a/site/resources/fonts/Poppins-ExtraBoldItalic.woff b/site/resources/fonts/Poppins-ExtraBoldItalic.woff new file mode 100644 index 0000000..38090a0 Binary files /dev/null and b/site/resources/fonts/Poppins-ExtraBoldItalic.woff differ diff --git a/site/resources/fonts/Poppins-ExtraLight.woff b/site/resources/fonts/Poppins-ExtraLight.woff new file mode 100644 index 0000000..8eb4095 Binary files /dev/null and b/site/resources/fonts/Poppins-ExtraLight.woff differ diff --git a/site/resources/fonts/Poppins-ExtraLightItalic.woff b/site/resources/fonts/Poppins-ExtraLightItalic.woff new file mode 100644 index 0000000..560f65e Binary files /dev/null and b/site/resources/fonts/Poppins-ExtraLightItalic.woff differ diff --git a/site/resources/fonts/Poppins-Italic.woff b/site/resources/fonts/Poppins-Italic.woff new file mode 100644 index 0000000..341cbb3 Binary files /dev/null and b/site/resources/fonts/Poppins-Italic.woff differ diff --git a/site/resources/fonts/Poppins-Light.woff b/site/resources/fonts/Poppins-Light.woff new file mode 100644 index 0000000..61f6a5c Binary files /dev/null and b/site/resources/fonts/Poppins-Light.woff differ diff --git a/site/resources/fonts/Poppins-LightItalic.woff b/site/resources/fonts/Poppins-LightItalic.woff new file mode 100644 index 0000000..2706cd4 Binary files /dev/null and b/site/resources/fonts/Poppins-LightItalic.woff differ diff --git a/site/resources/fonts/Poppins-Medium.woff b/site/resources/fonts/Poppins-Medium.woff new file mode 100644 index 0000000..e2b717d Binary files /dev/null and b/site/resources/fonts/Poppins-Medium.woff differ diff --git a/site/resources/fonts/Poppins-MediumItalic.woff b/site/resources/fonts/Poppins-MediumItalic.woff new file mode 100644 index 0000000..d8101a7 Binary files /dev/null and b/site/resources/fonts/Poppins-MediumItalic.woff differ diff --git a/site/resources/fonts/Poppins-Regular.woff b/site/resources/fonts/Poppins-Regular.woff new file mode 100644 index 0000000..609eb3d Binary files /dev/null and b/site/resources/fonts/Poppins-Regular.woff differ diff --git a/site/resources/fonts/Poppins-SemiBold.woff b/site/resources/fonts/Poppins-SemiBold.woff new file mode 100644 index 0000000..c097e14 Binary files /dev/null and b/site/resources/fonts/Poppins-SemiBold.woff differ diff --git a/site/resources/fonts/Poppins-SemiBoldItalic.woff b/site/resources/fonts/Poppins-SemiBoldItalic.woff new file mode 100644 index 0000000..902dcfd Binary files /dev/null and b/site/resources/fonts/Poppins-SemiBoldItalic.woff differ diff --git a/site/resources/fonts/Poppins-Thin.woff b/site/resources/fonts/Poppins-Thin.woff new file mode 100644 index 0000000..d21fbd3 Binary files /dev/null and b/site/resources/fonts/Poppins-Thin.woff differ diff --git a/site/resources/fonts/Poppins-ThinItalic.woff b/site/resources/fonts/Poppins-ThinItalic.woff new file mode 100644 index 0000000..ea3a42f Binary files /dev/null and b/site/resources/fonts/Poppins-ThinItalic.woff differ diff --git a/site/resources/fonts/bakbakone.css b/site/resources/fonts/bakbakone.css new file mode 100644 index 0000000..cbbec54 --- /dev/null +++ b/site/resources/fonts/bakbakone.css @@ -0,0 +1,8 @@ +/* #### Generated By: http://www.cufonfonts.com #### */ + + @font-face { + font-family: 'Bakbak One Regular'; + font-style: normal; + font-weight: normal; + src: local('Bakbak One Regular'), url('BakbakOneRegular.woff') format('woff'); + } \ No newline at end of file diff --git a/site/resources/fonts/chakrapetch.css b/site/resources/fonts/chakrapetch.css new file mode 100644 index 0000000..017dcc6 --- /dev/null +++ b/site/resources/fonts/chakrapetch.css @@ -0,0 +1,96 @@ +/* #### Generated By: http://www.cufonfonts.com #### */ + + @font-face { + font-family: 'Chakra Petch Regular'; + font-style: normal; + font-weight: normal; + src: local('Chakra Petch Regular'), url('ChakraPetch-Regular.woff') format('woff'); + } + + + @font-face { + font-family: 'Chakra Petch Italic'; + font-style: normal; + font-weight: normal; + src: local('Chakra Petch Italic'), url('ChakraPetch-Italic.woff') format('woff'); + } + + + @font-face { + font-family: 'Chakra Petch ExtraLight'; + font-style: normal; + font-weight: normal; + src: local('Chakra Petch ExtraLight'), url('ChakraPetch-ExtraLight.woff') format('woff'); + } + + + @font-face { + font-family: 'Chakra Petch ExtraLight Italic'; + font-style: normal; + font-weight: normal; + src: local('Chakra Petch ExtraLight Italic'), url('ChakraPetch-ExtraLightItalic.woff') format('woff'); + } + + + @font-face { + font-family: 'Chakra Petch Light'; + font-style: normal; + font-weight: normal; + src: local('Chakra Petch Light'), url('ChakraPetch-Light.woff') format('woff'); + } + + + @font-face { + font-family: 'Chakra Petch Light Italic'; + font-style: normal; + font-weight: normal; + src: local('Chakra Petch Light Italic'), url('ChakraPetch-LightItalic.woff') format('woff'); + } + + + @font-face { + font-family: 'Chakra Petch Medium'; + font-style: normal; + font-weight: normal; + src: local('Chakra Petch Medium'), url('ChakraPetch-Medium.woff') format('woff'); + } + + + @font-face { + font-family: 'Chakra Petch Medium Italic'; + font-style: normal; + font-weight: normal; + src: local('Chakra Petch Medium Italic'), url('ChakraPetch-MediumItalic.woff') format('woff'); + } + + + @font-face { + font-family: 'Chakra Petch SemiBold'; + font-style: normal; + font-weight: normal; + src: local('Chakra Petch SemiBold'), url('ChakraPetch-SemiBold.woff') format('woff'); + } + + + @font-face { + font-family: 'Chakra Petch SemiBold Italic'; + font-style: normal; + font-weight: normal; + src: local('Chakra Petch SemiBold Italic'), url('ChakraPetch-SemiBoldItalic.woff') format('woff'); + } + + + @font-face { + font-family: 'Chakra Petch Bold'; + font-style: normal; + font-weight: normal; + src: local('Chakra Petch Bold'), url('ChakraPetch-Bold.woff') format('woff'); + } + + + @font-face { + font-family: 'Chakra Petch Bold Italic'; + font-style: normal; + font-weight: normal; + src: local('Chakra Petch Bold Italic'), url('ChakraPetch-BoldItalic.woff') format('woff'); + } \ No newline at end of file diff --git a/site/resources/fonts/gothamultra.css b/site/resources/fonts/gothamultra.css new file mode 100644 index 0000000..3891008 --- /dev/null +++ b/site/resources/fonts/gothamultra.css @@ -0,0 +1,13 @@ +@charset 'UTF-8'; + +@font-face { + font-family: 'Gotham Ultra'; + src: url('../fonts/GothamUltra-Italic.eot'); + src: url('../fonts/GothamUltra-Italic.eot?#iefix') format('embedded-opentype'), + url('../fonts/GothamUltra-Italic.woff2') format('woff2'), + url('../fonts/GothamUltra-Italic.woff') format('woff'), + url('../fonts/GothamUltra-Italic.svg#GothamUltra-Italic') format('svg'); + font-weight: 900; + font-style: italic; + font-display: swap; +} diff --git a/site/resources/fonts/poppins.css b/site/resources/fonts/poppins.css new file mode 100644 index 0000000..81550cd --- /dev/null +++ b/site/resources/fonts/poppins.css @@ -0,0 +1,144 @@ +/* #### Generated By: http://www.cufonfonts.com #### */ + + @font-face { + font-family: 'Poppins Regular'; + font-style: normal; + font-weight: normal; + src: local('Poppins Regular'), url('Poppins-Regular.woff') format('woff'); + } + + + @font-face { + font-family: 'Poppins Italic'; + font-style: normal; + font-weight: normal; + src: local('Poppins Italic'), url('Poppins-Italic.woff') format('woff'); + } + + + @font-face { + font-family: 'Poppins Thin'; + font-style: normal; + font-weight: normal; + src: local('Poppins Thin'), url('Poppins-Thin.woff') format('woff'); + } + + + @font-face { + font-family: 'Poppins Thin Italic'; + font-style: normal; + font-weight: normal; + src: local('Poppins Thin Italic'), url('Poppins-ThinItalic.woff') format('woff'); + } + + + @font-face { + font-family: 'Poppins ExtraLight'; + font-style: normal; + font-weight: normal; + src: local('Poppins ExtraLight'), url('Poppins-ExtraLight.woff') format('woff'); + } + + + @font-face { + font-family: 'Poppins ExtraLight Italic'; + font-style: normal; + font-weight: normal; + src: local('Poppins ExtraLight Italic'), url('Poppins-ExtraLightItalic.woff') format('woff'); + } + + + @font-face { + font-family: 'Poppins Light'; + font-style: normal; + font-weight: normal; + src: local('Poppins Light'), url('Poppins-Light.woff') format('woff'); + } + + + @font-face { + font-family: 'Poppins Light Italic'; + font-style: normal; + font-weight: normal; + src: local('Poppins Light Italic'), url('Poppins-LightItalic.woff') format('woff'); + } + + + @font-face { + font-family: 'Poppins Medium'; + font-style: normal; + font-weight: normal; + src: local('Poppins Medium'), url('Poppins-Medium.woff') format('woff'); + } + + + @font-face { + font-family: 'Poppins Medium Italic'; + font-style: normal; + font-weight: normal; + src: local('Poppins Medium Italic'), url('Poppins-MediumItalic.woff') format('woff'); + } + + + @font-face { + font-family: 'Poppins SemiBold'; + font-style: normal; + font-weight: normal; + src: local('Poppins SemiBold'), url('Poppins-SemiBold.woff') format('woff'); + } + + + @font-face { + font-family: 'Poppins SemiBold Italic'; + font-style: normal; + font-weight: normal; + src: local('Poppins SemiBold Italic'), url('Poppins-SemiBoldItalic.woff') format('woff'); + } + + + @font-face { + font-family: 'Poppins Bold'; + font-style: normal; + font-weight: normal; + src: local('Poppins Bold'), url('Poppins-Bold.woff') format('woff'); + } + + + @font-face { + font-family: 'Poppins Bold Italic'; + font-style: normal; + font-weight: normal; + src: local('Poppins Bold Italic'), url('Poppins-BoldItalic.woff') format('woff'); + } + + + @font-face { + font-family: 'Poppins ExtraBold'; + font-style: normal; + font-weight: normal; + src: local('Poppins ExtraBold'), url('Poppins-ExtraBold.woff') format('woff'); + } + + + @font-face { + font-family: 'Poppins ExtraBold Italic'; + font-style: normal; + font-weight: normal; + src: local('Poppins ExtraBold Italic'), url('Poppins-ExtraBoldItalic.woff') format('woff'); + } + + + @font-face { + font-family: 'Poppins Black'; + font-style: normal; + font-weight: normal; + src: local('Poppins Black'), url('Poppins-Black.woff') format('woff'); + } + + + @font-face { + font-family: 'Poppins Black Italic'; + font-style: normal; + font-weight: normal; + src: local('Poppins Black Italic'), url('Poppins-BlackItalic.woff') format('woff'); + } \ No newline at end of file diff --git a/site/resources/fonts/remixicon.css b/site/resources/fonts/remixicon.css new file mode 100644 index 0000000..fada9ba --- /dev/null +++ b/site/resources/fonts/remixicon.css @@ -0,0 +1,6897 @@ +/* +* Remix Icon v2.5.0 +* https://remixicon.com +* https://github.com/Remix-Design/RemixIcon +* +* Copyright RemixIcon.com +* Released under the Apache License Version 2.0 +* +* Date: 2020-05-23 +*/ +@font-face { + font-family: "remixicon"; + src: url("remixicondf6d.eot?t=1590207869815"); /* IE9*/ + src: url("remixicondf6d.eot?t=1590207869815#iefix") format("embedded-opentype"), + /* IE6-IE8 */ url("remixicondf6d.woff2?t=1590207869815") format("woff2"), + url("remixicondf6d.woff?t=1590207869815") format("woff"), + url("remixicondf6d.ttf?t=1590207869815") format("truetype"), + /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/ url("remixicondf6d.svg?t=1590207869815#remixicon") + format("svg"); /* iOS 4.1- */ + font-display: swap; +} + +[class^="ri-"], +[class*=" ri-"] { + font-family: "remixicon" !important; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.ri-lg { + font-size: 1.3333em; + line-height: 0.75em; + vertical-align: -0.0667em; +} +.ri-xl { + font-size: 1.5em; + line-height: 0.6666em; + vertical-align: -0.075em; +} +.ri-xxs { + font-size: 0.5em; +} +.ri-xs { + font-size: 0.75em; +} +.ri-sm { + font-size: 0.875em; +} +.ri-1x { + font-size: 1em; +} +.ri-2x { + font-size: 2em; +} +.ri-3x { + font-size: 3em; +} +.ri-4x { + font-size: 4em; +} +.ri-5x { + font-size: 5em; +} +.ri-6x { + font-size: 6em; +} +.ri-7x { + font-size: 7em; +} +.ri-8x { + font-size: 8em; +} +.ri-9x { + font-size: 9em; +} +.ri-10x { + font-size: 10em; +} +.ri-fw { + text-align: center; + width: 1.25em; +} + +.ri-24-hours-fill:before { + content: "\ea01"; +} +.ri-24-hours-line:before { + content: "\ea02"; +} +.ri-4k-fill:before { + content: "\ea03"; +} +.ri-4k-line:before { + content: "\ea04"; +} +.ri-a-b:before { + content: "\ea05"; +} +.ri-account-box-fill:before { + content: "\ea06"; +} +.ri-account-box-line:before { + content: "\ea07"; +} +.ri-account-circle-fill:before { + content: "\ea08"; +} +.ri-account-circle-line:before { + content: "\ea09"; +} +.ri-account-pin-box-fill:before { + content: "\ea0a"; +} +.ri-account-pin-box-line:before { + content: "\ea0b"; +} +.ri-account-pin-circle-fill:before { + content: "\ea0c"; +} +.ri-account-pin-circle-line:before { + content: "\ea0d"; +} +.ri-add-box-fill:before { + content: "\ea0e"; +} +.ri-add-box-line:before { + content: "\ea0f"; +} +.ri-add-circle-fill:before { + content: "\ea10"; +} +.ri-add-circle-line:before { + content: "\ea11"; +} +.ri-add-fill:before { + content: "\ea12"; +} +.ri-add-line:before { + content: "\ea13"; +} +.ri-admin-fill:before { + content: "\ea14"; +} +.ri-admin-line:before { + content: "\ea15"; +} +.ri-advertisement-fill:before { + content: "\ea16"; +} +.ri-advertisement-line:before { + content: "\ea17"; +} +.ri-airplay-fill:before { + content: "\ea18"; +} +.ri-airplay-line:before { + content: "\ea19"; +} +.ri-alarm-fill:before { + content: "\ea1a"; +} +.ri-alarm-line:before { + content: "\ea1b"; +} +.ri-alarm-warning-fill:before { + content: "\ea1c"; +} +.ri-alarm-warning-line:before { + content: "\ea1d"; +} +.ri-album-fill:before { + content: "\ea1e"; +} +.ri-album-line:before { + content: "\ea1f"; +} +.ri-alert-fill:before { + content: "\ea20"; +} +.ri-alert-line:before { + content: "\ea21"; +} +.ri-aliens-fill:before { + content: "\ea22"; +} +.ri-aliens-line:before { + content: "\ea23"; +} +.ri-align-bottom:before { + content: "\ea24"; +} +.ri-align-center:before { + content: "\ea25"; +} +.ri-align-justify:before { + content: "\ea26"; +} +.ri-align-left:before { + content: "\ea27"; +} +.ri-align-right:before { + content: "\ea28"; +} +.ri-align-top:before { + content: "\ea29"; +} +.ri-align-vertically:before { + content: "\ea2a"; +} +.ri-alipay-fill:before { + content: "\ea2b"; +} +.ri-alipay-line:before { + content: "\ea2c"; +} +.ri-amazon-fill:before { + content: "\ea2d"; +} +.ri-amazon-line:before { + content: "\ea2e"; +} +.ri-anchor-fill:before { + content: "\ea2f"; +} +.ri-anchor-line:before { + content: "\ea30"; +} +.ri-ancient-gate-fill:before { + content: "\ea31"; +} +.ri-ancient-gate-line:before { + content: "\ea32"; +} +.ri-ancient-pavilion-fill:before { + content: "\ea33"; +} +.ri-ancient-pavilion-line:before { + content: "\ea34"; +} +.ri-android-fill:before { + content: "\ea35"; +} +.ri-android-line:before { + content: "\ea36"; +} +.ri-angularjs-fill:before { + content: "\ea37"; +} +.ri-angularjs-line:before { + content: "\ea38"; +} +.ri-anticlockwise-2-fill:before { + content: "\ea39"; +} +.ri-anticlockwise-2-line:before { + content: "\ea3a"; +} +.ri-anticlockwise-fill:before { + content: "\ea3b"; +} +.ri-anticlockwise-line:before { + content: "\ea3c"; +} +.ri-app-store-fill:before { + content: "\ea3d"; +} +.ri-app-store-line:before { + content: "\ea3e"; +} +.ri-apple-fill:before { + content: "\ea3f"; +} +.ri-apple-line:before { + content: "\ea40"; +} +.ri-apps-2-fill:before { + content: "\ea41"; +} +.ri-apps-2-line:before { + content: "\ea42"; +} +.ri-apps-fill:before { + content: "\ea43"; +} +.ri-apps-line:before { + content: "\ea44"; +} +.ri-archive-drawer-fill:before { + content: "\ea45"; +} +.ri-archive-drawer-line:before { + content: "\ea46"; +} +.ri-archive-fill:before { + content: "\ea47"; +} +.ri-archive-line:before { + content: "\ea48"; +} +.ri-arrow-down-circle-fill:before { + content: "\ea49"; +} +.ri-arrow-down-circle-line:before { + content: "\ea4a"; +} +.ri-arrow-down-fill:before { + content: "\ea4b"; +} +.ri-arrow-down-line:before { + content: "\ea4c"; +} +.ri-arrow-down-s-fill:before { + content: "\ea4d"; +} +.ri-arrow-down-s-line:before { + content: "\ea4e"; +} +.ri-arrow-drop-down-fill:before { + content: "\ea4f"; +} +.ri-arrow-drop-down-line:before { + content: "\ea50"; +} +.ri-arrow-drop-left-fill:before { + content: "\ea51"; +} +.ri-arrow-drop-left-line:before { + content: "\ea52"; +} +.ri-arrow-drop-right-fill:before { + content: "\ea53"; +} +.ri-arrow-drop-right-line:before { + content: "\ea54"; +} +.ri-arrow-drop-up-fill:before { + content: "\ea55"; +} +.ri-arrow-drop-up-line:before { + content: "\ea56"; +} +.ri-arrow-go-back-fill:before { + content: "\ea57"; +} +.ri-arrow-go-back-line:before { + content: "\ea58"; +} +.ri-arrow-go-forward-fill:before { + content: "\ea59"; +} +.ri-arrow-go-forward-line:before { + content: "\ea5a"; +} +.ri-arrow-left-circle-fill:before { + content: "\ea5b"; +} +.ri-arrow-left-circle-line:before { + content: "\ea5c"; +} +.ri-arrow-left-down-fill:before { + content: "\ea5d"; +} +.ri-arrow-left-down-line:before { + content: "\ea5e"; +} +.ri-arrow-left-fill:before { + content: "\ea5f"; +} +.ri-arrow-left-line:before { + content: "\ea60"; +} +.ri-arrow-left-right-fill:before { + content: "\ea61"; +} +.ri-arrow-left-right-line:before { + content: "\ea62"; +} +.ri-arrow-left-s-fill:before { + content: "\ea63"; +} +.ri-arrow-left-s-line:before { + content: "\ea64"; +} +.ri-arrow-left-up-fill:before { + content: "\ea65"; +} +.ri-arrow-left-up-line:before { + content: "\ea66"; +} +.ri-arrow-right-circle-fill:before { + content: "\ea67"; +} +.ri-arrow-right-circle-line:before { + content: "\ea68"; +} +.ri-arrow-right-down-fill:before { + content: "\ea69"; +} +.ri-arrow-right-down-line:before { + content: "\ea6a"; +} +.ri-arrow-right-fill:before { + content: "\ea6b"; +} +.ri-arrow-right-line:before { + content: "\ea6c"; +} +.ri-arrow-right-s-fill:before { + content: "\ea6d"; +} +.ri-arrow-right-s-line:before { + content: "\ea6e"; +} +.ri-arrow-right-up-fill:before { + content: "\ea6f"; +} +.ri-arrow-right-up-line:before { + content: "\ea70"; +} +.ri-arrow-up-circle-fill:before { + content: "\ea71"; +} +.ri-arrow-up-circle-line:before { + content: "\ea72"; +} +.ri-arrow-up-down-fill:before { + content: "\ea73"; +} +.ri-arrow-up-down-line:before { + content: "\ea74"; +} +.ri-arrow-up-fill:before { + content: "\ea75"; +} +.ri-arrow-up-line:before { + content: "\ea76"; +} +.ri-arrow-up-s-fill:before { + content: "\ea77"; +} +.ri-arrow-up-s-line:before { + content: "\ea78"; +} +.ri-artboard-2-fill:before { + content: "\ea79"; +} +.ri-artboard-2-line:before { + content: "\ea7a"; +} +.ri-artboard-fill:before { + content: "\ea7b"; +} +.ri-artboard-line:before { + content: "\ea7c"; +} +.ri-article-fill:before { + content: "\ea7d"; +} +.ri-article-line:before { + content: "\ea7e"; +} +.ri-aspect-ratio-fill:before { + content: "\ea7f"; +} +.ri-aspect-ratio-line:before { + content: "\ea80"; +} +.ri-asterisk:before { + content: "\ea81"; +} +.ri-at-fill:before { + content: "\ea82"; +} +.ri-at-line:before { + content: "\ea83"; +} +.ri-attachment-2:before { + content: "\ea84"; +} +.ri-attachment-fill:before { + content: "\ea85"; +} +.ri-attachment-line:before { + content: "\ea86"; +} +.ri-auction-fill:before { + content: "\ea87"; +} +.ri-auction-line:before { + content: "\ea88"; +} +.ri-award-fill:before { + content: "\ea89"; +} +.ri-award-line:before { + content: "\ea8a"; +} +.ri-baidu-fill:before { + content: "\ea8b"; +} +.ri-baidu-line:before { + content: "\ea8c"; +} +.ri-ball-pen-fill:before { + content: "\ea8d"; +} +.ri-ball-pen-line:before { + content: "\ea8e"; +} +.ri-bank-card-2-fill:before { + content: "\ea8f"; +} +.ri-bank-card-2-line:before { + content: "\ea90"; +} +.ri-bank-card-fill:before { + content: "\ea91"; +} +.ri-bank-card-line:before { + content: "\ea92"; +} +.ri-bank-fill:before { + content: "\ea93"; +} +.ri-bank-line:before { + content: "\ea94"; +} +.ri-bar-chart-2-fill:before { + content: "\ea95"; +} +.ri-bar-chart-2-line:before { + content: "\ea96"; +} +.ri-bar-chart-box-fill:before { + content: "\ea97"; +} +.ri-bar-chart-box-line:before { + content: "\ea98"; +} +.ri-bar-chart-fill:before { + content: "\ea99"; +} +.ri-bar-chart-grouped-fill:before { + content: "\ea9a"; +} +.ri-bar-chart-grouped-line:before { + content: "\ea9b"; +} +.ri-bar-chart-horizontal-fill:before { + content: "\ea9c"; +} +.ri-bar-chart-horizontal-line:before { + content: "\ea9d"; +} +.ri-bar-chart-line:before { + content: "\ea9e"; +} +.ri-barcode-box-fill:before { + content: "\ea9f"; +} +.ri-barcode-box-line:before { + content: "\eaa0"; +} +.ri-barcode-fill:before { + content: "\eaa1"; +} +.ri-barcode-line:before { + content: "\eaa2"; +} +.ri-barricade-fill:before { + content: "\eaa3"; +} +.ri-barricade-line:before { + content: "\eaa4"; +} +.ri-base-station-fill:before { + content: "\eaa5"; +} +.ri-base-station-line:before { + content: "\eaa6"; +} +.ri-basketball-fill:before { + content: "\eaa7"; +} +.ri-basketball-line:before { + content: "\eaa8"; +} +.ri-battery-2-charge-fill:before { + content: "\eaa9"; +} +.ri-battery-2-charge-line:before { + content: "\eaaa"; +} +.ri-battery-2-fill:before { + content: "\eaab"; +} +.ri-battery-2-line:before { + content: "\eaac"; +} +.ri-battery-charge-fill:before { + content: "\eaad"; +} +.ri-battery-charge-line:before { + content: "\eaae"; +} +.ri-battery-fill:before { + content: "\eaaf"; +} +.ri-battery-line:before { + content: "\eab0"; +} +.ri-battery-low-fill:before { + content: "\eab1"; +} +.ri-battery-low-line:before { + content: "\eab2"; +} +.ri-battery-saver-fill:before { + content: "\eab3"; +} +.ri-battery-saver-line:before { + content: "\eab4"; +} +.ri-battery-share-fill:before { + content: "\eab5"; +} +.ri-battery-share-line:before { + content: "\eab6"; +} +.ri-bear-smile-fill:before { + content: "\eab7"; +} +.ri-bear-smile-line:before { + content: "\eab8"; +} +.ri-behance-fill:before { + content: "\eab9"; +} +.ri-behance-line:before { + content: "\eaba"; +} +.ri-bell-fill:before { + content: "\eabb"; +} +.ri-bell-line:before { + content: "\eabc"; +} +.ri-bike-fill:before { + content: "\eabd"; +} +.ri-bike-line:before { + content: "\eabe"; +} +.ri-bilibili-fill:before { + content: "\eabf"; +} +.ri-bilibili-line:before { + content: "\eac0"; +} +.ri-bill-fill:before { + content: "\eac1"; +} +.ri-bill-line:before { + content: "\eac2"; +} +.ri-billiards-fill:before { + content: "\eac3"; +} +.ri-billiards-line:before { + content: "\eac4"; +} +.ri-bit-coin-fill:before { + content: "\eac5"; +} +.ri-bit-coin-line:before { + content: "\eac6"; +} +.ri-blaze-fill:before { + content: "\eac7"; +} +.ri-blaze-line:before { + content: "\eac8"; +} +.ri-bluetooth-connect-fill:before { + content: "\eac9"; +} +.ri-bluetooth-connect-line:before { + content: "\eaca"; +} +.ri-bluetooth-fill:before { + content: "\eacb"; +} +.ri-bluetooth-line:before { + content: "\eacc"; +} +.ri-blur-off-fill:before { + content: "\eacd"; +} +.ri-blur-off-line:before { + content: "\eace"; +} +.ri-body-scan-fill:before { + content: "\eacf"; +} +.ri-body-scan-line:before { + content: "\ead0"; +} +.ri-bold:before { + content: "\ead1"; +} +.ri-book-2-fill:before { + content: "\ead2"; +} +.ri-book-2-line:before { + content: "\ead3"; +} +.ri-book-3-fill:before { + content: "\ead4"; +} +.ri-book-3-line:before { + content: "\ead5"; +} +.ri-book-fill:before { + content: "\ead6"; +} +.ri-book-line:before { + content: "\ead7"; +} +.ri-book-mark-fill:before { + content: "\ead8"; +} +.ri-book-mark-line:before { + content: "\ead9"; +} +.ri-book-open-fill:before { + content: "\eada"; +} +.ri-book-open-line:before { + content: "\eadb"; +} +.ri-book-read-fill:before { + content: "\eadc"; +} +.ri-book-read-line:before { + content: "\eadd"; +} +.ri-booklet-fill:before { + content: "\eade"; +} +.ri-booklet-line:before { + content: "\eadf"; +} +.ri-bookmark-2-fill:before { + content: "\eae0"; +} +.ri-bookmark-2-line:before { + content: "\eae1"; +} +.ri-bookmark-3-fill:before { + content: "\eae2"; +} +.ri-bookmark-3-line:before { + content: "\eae3"; +} +.ri-bookmark-fill:before { + content: "\eae4"; +} +.ri-bookmark-line:before { + content: "\eae5"; +} +.ri-boxing-fill:before { + content: "\eae6"; +} +.ri-boxing-line:before { + content: "\eae7"; +} +.ri-braces-fill:before { + content: "\eae8"; +} +.ri-braces-line:before { + content: "\eae9"; +} +.ri-brackets-fill:before { + content: "\eaea"; +} +.ri-brackets-line:before { + content: "\eaeb"; +} +.ri-briefcase-2-fill:before { + content: "\eaec"; +} +.ri-briefcase-2-line:before { + content: "\eaed"; +} +.ri-briefcase-3-fill:before { + content: "\eaee"; +} +.ri-briefcase-3-line:before { + content: "\eaef"; +} +.ri-briefcase-4-fill:before { + content: "\eaf0"; +} +.ri-briefcase-4-line:before { + content: "\eaf1"; +} +.ri-briefcase-5-fill:before { + content: "\eaf2"; +} +.ri-briefcase-5-line:before { + content: "\eaf3"; +} +.ri-briefcase-fill:before { + content: "\eaf4"; +} +.ri-briefcase-line:before { + content: "\eaf5"; +} +.ri-bring-forward:before { + content: "\eaf6"; +} +.ri-bring-to-front:before { + content: "\eaf7"; +} +.ri-broadcast-fill:before { + content: "\eaf8"; +} +.ri-broadcast-line:before { + content: "\eaf9"; +} +.ri-brush-2-fill:before { + content: "\eafa"; +} +.ri-brush-2-line:before { + content: "\eafb"; +} +.ri-brush-3-fill:before { + content: "\eafc"; +} +.ri-brush-3-line:before { + content: "\eafd"; +} +.ri-brush-4-fill:before { + content: "\eafe"; +} +.ri-brush-4-line:before { + content: "\eaff"; +} +.ri-brush-fill:before { + content: "\eb00"; +} +.ri-brush-line:before { + content: "\eb01"; +} +.ri-bubble-chart-fill:before { + content: "\eb02"; +} +.ri-bubble-chart-line:before { + content: "\eb03"; +} +.ri-bug-2-fill:before { + content: "\eb04"; +} +.ri-bug-2-line:before { + content: "\eb05"; +} +.ri-bug-fill:before { + content: "\eb06"; +} +.ri-bug-line:before { + content: "\eb07"; +} +.ri-building-2-fill:before { + content: "\eb08"; +} +.ri-building-2-line:before { + content: "\eb09"; +} +.ri-building-3-fill:before { + content: "\eb0a"; +} +.ri-building-3-line:before { + content: "\eb0b"; +} +.ri-building-4-fill:before { + content: "\eb0c"; +} +.ri-building-4-line:before { + content: "\eb0d"; +} +.ri-building-fill:before { + content: "\eb0e"; +} +.ri-building-line:before { + content: "\eb0f"; +} +.ri-bus-2-fill:before { + content: "\eb10"; +} +.ri-bus-2-line:before { + content: "\eb11"; +} +.ri-bus-fill:before { + content: "\eb12"; +} +.ri-bus-line:before { + content: "\eb13"; +} +.ri-bus-wifi-fill:before { + content: "\eb14"; +} +.ri-bus-wifi-line:before { + content: "\eb15"; +} +.ri-cactus-fill:before { + content: "\eb16"; +} +.ri-cactus-line:before { + content: "\eb17"; +} +.ri-cake-2-fill:before { + content: "\eb18"; +} +.ri-cake-2-line:before { + content: "\eb19"; +} +.ri-cake-3-fill:before { + content: "\eb1a"; +} +.ri-cake-3-line:before { + content: "\eb1b"; +} +.ri-cake-fill:before { + content: "\eb1c"; +} +.ri-cake-line:before { + content: "\eb1d"; +} +.ri-calculator-fill:before { + content: "\eb1e"; +} +.ri-calculator-line:before { + content: "\eb1f"; +} +.ri-calendar-2-fill:before { + content: "\eb20"; +} +.ri-calendar-2-line:before { + content: "\eb21"; +} +.ri-calendar-check-fill:before { + content: "\eb22"; +} +.ri-calendar-check-line:before { + content: "\eb23"; +} +.ri-calendar-event-fill:before { + content: "\eb24"; +} +.ri-calendar-event-line:before { + content: "\eb25"; +} +.ri-calendar-fill:before { + content: "\eb26"; +} +.ri-calendar-line:before { + content: "\eb27"; +} +.ri-calendar-todo-fill:before { + content: "\eb28"; +} +.ri-calendar-todo-line:before { + content: "\eb29"; +} +.ri-camera-2-fill:before { + content: "\eb2a"; +} +.ri-camera-2-line:before { + content: "\eb2b"; +} +.ri-camera-3-fill:before { + content: "\eb2c"; +} +.ri-camera-3-line:before { + content: "\eb2d"; +} +.ri-camera-fill:before { + content: "\eb2e"; +} +.ri-camera-lens-fill:before { + content: "\eb2f"; +} +.ri-camera-lens-line:before { + content: "\eb30"; +} +.ri-camera-line:before { + content: "\eb31"; +} +.ri-camera-off-fill:before { + content: "\eb32"; +} +.ri-camera-off-line:before { + content: "\eb33"; +} +.ri-camera-switch-fill:before { + content: "\eb34"; +} +.ri-camera-switch-line:before { + content: "\eb35"; +} +.ri-capsule-fill:before { + content: "\eb36"; +} +.ri-capsule-line:before { + content: "\eb37"; +} +.ri-car-fill:before { + content: "\eb38"; +} +.ri-car-line:before { + content: "\eb39"; +} +.ri-car-washing-fill:before { + content: "\eb3a"; +} +.ri-car-washing-line:before { + content: "\eb3b"; +} +.ri-caravan-fill:before { + content: "\eb3c"; +} +.ri-caravan-line:before { + content: "\eb3d"; +} +.ri-cast-fill:before { + content: "\eb3e"; +} +.ri-cast-line:before { + content: "\eb3f"; +} +.ri-cellphone-fill:before { + content: "\eb40"; +} +.ri-cellphone-line:before { + content: "\eb41"; +} +.ri-celsius-fill:before { + content: "\eb42"; +} +.ri-celsius-line:before { + content: "\eb43"; +} +.ri-centos-fill:before { + content: "\eb44"; +} +.ri-centos-line:before { + content: "\eb45"; +} +.ri-character-recognition-fill:before { + content: "\eb46"; +} +.ri-character-recognition-line:before { + content: "\eb47"; +} +.ri-charging-pile-2-fill:before { + content: "\eb48"; +} +.ri-charging-pile-2-line:before { + content: "\eb49"; +} +.ri-charging-pile-fill:before { + content: "\eb4a"; +} +.ri-charging-pile-line:before { + content: "\eb4b"; +} +.ri-chat-1-fill:before { + content: "\eb4c"; +} +.ri-chat-1-line:before { + content: "\eb4d"; +} +.ri-chat-2-fill:before { + content: "\eb4e"; +} +.ri-chat-2-line:before { + content: "\eb4f"; +} +.ri-chat-3-fill:before { + content: "\eb50"; +} +.ri-chat-3-line:before { + content: "\eb51"; +} +.ri-chat-4-fill:before { + content: "\eb52"; +} +.ri-chat-4-line:before { + content: "\eb53"; +} +.ri-chat-check-fill:before { + content: "\eb54"; +} +.ri-chat-check-line:before { + content: "\eb55"; +} +.ri-chat-delete-fill:before { + content: "\eb56"; +} +.ri-chat-delete-line:before { + content: "\eb57"; +} +.ri-chat-download-fill:before { + content: "\eb58"; +} +.ri-chat-download-line:before { + content: "\eb59"; +} +.ri-chat-follow-up-fill:before { + content: "\eb5a"; +} +.ri-chat-follow-up-line:before { + content: "\eb5b"; +} +.ri-chat-forward-fill:before { + content: "\eb5c"; +} +.ri-chat-forward-line:before { + content: "\eb5d"; +} +.ri-chat-heart-fill:before { + content: "\eb5e"; +} +.ri-chat-heart-line:before { + content: "\eb5f"; +} +.ri-chat-history-fill:before { + content: "\eb60"; +} +.ri-chat-history-line:before { + content: "\eb61"; +} +.ri-chat-new-fill:before { + content: "\eb62"; +} +.ri-chat-new-line:before { + content: "\eb63"; +} +.ri-chat-off-fill:before { + content: "\eb64"; +} +.ri-chat-off-line:before { + content: "\eb65"; +} +.ri-chat-poll-fill:before { + content: "\eb66"; +} +.ri-chat-poll-line:before { + content: "\eb67"; +} +.ri-chat-private-fill:before { + content: "\eb68"; +} +.ri-chat-private-line:before { + content: "\eb69"; +} +.ri-chat-quote-fill:before { + content: "\eb6a"; +} +.ri-chat-quote-line:before { + content: "\eb6b"; +} +.ri-chat-settings-fill:before { + content: "\eb6c"; +} +.ri-chat-settings-line:before { + content: "\eb6d"; +} +.ri-chat-smile-2-fill:before { + content: "\eb6e"; +} +.ri-chat-smile-2-line:before { + content: "\eb6f"; +} +.ri-chat-smile-3-fill:before { + content: "\eb70"; +} +.ri-chat-smile-3-line:before { + content: "\eb71"; +} +.ri-chat-smile-fill:before { + content: "\eb72"; +} +.ri-chat-smile-line:before { + content: "\eb73"; +} +.ri-chat-upload-fill:before { + content: "\eb74"; +} +.ri-chat-upload-line:before { + content: "\eb75"; +} +.ri-chat-voice-fill:before { + content: "\eb76"; +} +.ri-chat-voice-line:before { + content: "\eb77"; +} +.ri-check-double-fill:before { + content: "\eb78"; +} +.ri-check-double-line:before { + content: "\eb79"; +} +.ri-check-fill:before { + content: "\eb7a"; +} +.ri-check-line:before { + content: "\eb7b"; +} +.ri-checkbox-blank-circle-fill:before { + content: "\eb7c"; +} +.ri-checkbox-blank-circle-line:before { + content: "\eb7d"; +} +.ri-checkbox-blank-fill:before { + content: "\eb7e"; +} +.ri-checkbox-blank-line:before { + content: "\eb7f"; +} +.ri-checkbox-circle-fill:before { + content: "\eb80"; +} +.ri-checkbox-circle-line:before { + content: "\eb81"; +} +.ri-checkbox-fill:before { + content: "\eb82"; +} +.ri-checkbox-indeterminate-fill:before { + content: "\eb83"; +} +.ri-checkbox-indeterminate-line:before { + content: "\eb84"; +} +.ri-checkbox-line:before { + content: "\eb85"; +} +.ri-checkbox-multiple-blank-fill:before { + content: "\eb86"; +} +.ri-checkbox-multiple-blank-line:before { + content: "\eb87"; +} +.ri-checkbox-multiple-fill:before { + content: "\eb88"; +} +.ri-checkbox-multiple-line:before { + content: "\eb89"; +} +.ri-china-railway-fill:before { + content: "\eb8a"; +} +.ri-china-railway-line:before { + content: "\eb8b"; +} +.ri-chrome-fill:before { + content: "\eb8c"; +} +.ri-chrome-line:before { + content: "\eb8d"; +} +.ri-clapperboard-fill:before { + content: "\eb8e"; +} +.ri-clapperboard-line:before { + content: "\eb8f"; +} +.ri-clipboard-fill:before { + content: "\eb90"; +} +.ri-clipboard-line:before { + content: "\eb91"; +} +.ri-clockwise-2-fill:before { + content: "\eb92"; +} +.ri-clockwise-2-line:before { + content: "\eb93"; +} +.ri-clockwise-fill:before { + content: "\eb94"; +} +.ri-clockwise-line:before { + content: "\eb95"; +} +.ri-close-circle-fill:before { + content: "\eb96"; +} +.ri-close-circle-line:before { + content: "\eb97"; +} +.ri-close-fill:before { + content: "\eb98"; +} +.ri-close-line:before { + content: "\eb99"; +} +.ri-closed-captioning-fill:before { + content: "\eb9a"; +} +.ri-closed-captioning-line:before { + content: "\eb9b"; +} +.ri-cloud-fill:before { + content: "\eb9c"; +} +.ri-cloud-line:before { + content: "\eb9d"; +} +.ri-cloud-off-fill:before { + content: "\eb9e"; +} +.ri-cloud-off-line:before { + content: "\eb9f"; +} +.ri-cloud-windy-fill:before { + content: "\eba0"; +} +.ri-cloud-windy-line:before { + content: "\eba1"; +} +.ri-cloudy-2-fill:before { + content: "\eba2"; +} +.ri-cloudy-2-line:before { + content: "\eba3"; +} +.ri-cloudy-fill:before { + content: "\eba4"; +} +.ri-cloudy-line:before { + content: "\eba5"; +} +.ri-code-box-fill:before { + content: "\eba6"; +} +.ri-code-box-line:before { + content: "\eba7"; +} +.ri-code-fill:before { + content: "\eba8"; +} +.ri-code-line:before { + content: "\eba9"; +} +.ri-code-s-fill:before { + content: "\ebaa"; +} +.ri-code-s-line:before { + content: "\ebab"; +} +.ri-code-s-slash-fill:before { + content: "\ebac"; +} +.ri-code-s-slash-line:before { + content: "\ebad"; +} +.ri-code-view:before { + content: "\ebae"; +} +.ri-codepen-fill:before { + content: "\ebaf"; +} +.ri-codepen-line:before { + content: "\ebb0"; +} +.ri-coin-fill:before { + content: "\ebb1"; +} +.ri-coin-line:before { + content: "\ebb2"; +} +.ri-coins-fill:before { + content: "\ebb3"; +} +.ri-coins-line:before { + content: "\ebb4"; +} +.ri-collage-fill:before { + content: "\ebb5"; +} +.ri-collage-line:before { + content: "\ebb6"; +} +.ri-command-fill:before { + content: "\ebb7"; +} +.ri-command-line:before { + content: "\ebb8"; +} +.ri-community-fill:before { + content: "\ebb9"; +} +.ri-community-line:before { + content: "\ebba"; +} +.ri-compass-2-fill:before { + content: "\ebbb"; +} +.ri-compass-2-line:before { + content: "\ebbc"; +} +.ri-compass-3-fill:before { + content: "\ebbd"; +} +.ri-compass-3-line:before { + content: "\ebbe"; +} +.ri-compass-4-fill:before { + content: "\ebbf"; +} +.ri-compass-4-line:before { + content: "\ebc0"; +} +.ri-compass-discover-fill:before { + content: "\ebc1"; +} +.ri-compass-discover-line:before { + content: "\ebc2"; +} +.ri-compass-fill:before { + content: "\ebc3"; +} +.ri-compass-line:before { + content: "\ebc4"; +} +.ri-compasses-2-fill:before { + content: "\ebc5"; +} +.ri-compasses-2-line:before { + content: "\ebc6"; +} +.ri-compasses-fill:before { + content: "\ebc7"; +} +.ri-compasses-line:before { + content: "\ebc8"; +} +.ri-computer-fill:before { + content: "\ebc9"; +} +.ri-computer-line:before { + content: "\ebca"; +} +.ri-contacts-book-2-fill:before { + content: "\ebcb"; +} +.ri-contacts-book-2-line:before { + content: "\ebcc"; +} +.ri-contacts-book-fill:before { + content: "\ebcd"; +} +.ri-contacts-book-line:before { + content: "\ebce"; +} +.ri-contacts-book-upload-fill:before { + content: "\ebcf"; +} +.ri-contacts-book-upload-line:before { + content: "\ebd0"; +} +.ri-contacts-fill:before { + content: "\ebd1"; +} +.ri-contacts-line:before { + content: "\ebd2"; +} +.ri-contrast-2-fill:before { + content: "\ebd3"; +} +.ri-contrast-2-line:before { + content: "\ebd4"; +} +.ri-contrast-drop-2-fill:before { + content: "\ebd5"; +} +.ri-contrast-drop-2-line:before { + content: "\ebd6"; +} +.ri-contrast-drop-fill:before { + content: "\ebd7"; +} +.ri-contrast-drop-line:before { + content: "\ebd8"; +} +.ri-contrast-fill:before { + content: "\ebd9"; +} +.ri-contrast-line:before { + content: "\ebda"; +} +.ri-copper-coin-fill:before { + content: "\ebdb"; +} +.ri-copper-coin-line:before { + content: "\ebdc"; +} +.ri-copper-diamond-fill:before { + content: "\ebdd"; +} +.ri-copper-diamond-line:before { + content: "\ebde"; +} +.ri-copyleft-fill:before { + content: "\ebdf"; +} +.ri-copyleft-line:before { + content: "\ebe0"; +} +.ri-copyright-fill:before { + content: "\ebe1"; +} +.ri-copyright-line:before { + content: "\ebe2"; +} +.ri-coreos-fill:before { + content: "\ebe3"; +} +.ri-coreos-line:before { + content: "\ebe4"; +} +.ri-coupon-2-fill:before { + content: "\ebe5"; +} +.ri-coupon-2-line:before { + content: "\ebe6"; +} +.ri-coupon-3-fill:before { + content: "\ebe7"; +} +.ri-coupon-3-line:before { + content: "\ebe8"; +} +.ri-coupon-4-fill:before { + content: "\ebe9"; +} +.ri-coupon-4-line:before { + content: "\ebea"; +} +.ri-coupon-5-fill:before { + content: "\ebeb"; +} +.ri-coupon-5-line:before { + content: "\ebec"; +} +.ri-coupon-fill:before { + content: "\ebed"; +} +.ri-coupon-line:before { + content: "\ebee"; +} +.ri-cpu-fill:before { + content: "\ebef"; +} +.ri-cpu-line:before { + content: "\ebf0"; +} +.ri-creative-commons-by-fill:before { + content: "\ebf1"; +} +.ri-creative-commons-by-line:before { + content: "\ebf2"; +} +.ri-creative-commons-fill:before { + content: "\ebf3"; +} +.ri-creative-commons-line:before { + content: "\ebf4"; +} +.ri-creative-commons-nc-fill:before { + content: "\ebf5"; +} +.ri-creative-commons-nc-line:before { + content: "\ebf6"; +} +.ri-creative-commons-nd-fill:before { + content: "\ebf7"; +} +.ri-creative-commons-nd-line:before { + content: "\ebf8"; +} +.ri-creative-commons-sa-fill:before { + content: "\ebf9"; +} +.ri-creative-commons-sa-line:before { + content: "\ebfa"; +} +.ri-creative-commons-zero-fill:before { + content: "\ebfb"; +} +.ri-creative-commons-zero-line:before { + content: "\ebfc"; +} +.ri-criminal-fill:before { + content: "\ebfd"; +} +.ri-criminal-line:before { + content: "\ebfe"; +} +.ri-crop-2-fill:before { + content: "\ebff"; +} +.ri-crop-2-line:before { + content: "\ec00"; +} +.ri-crop-fill:before { + content: "\ec01"; +} +.ri-crop-line:before { + content: "\ec02"; +} +.ri-css3-fill:before { + content: "\ec03"; +} +.ri-css3-line:before { + content: "\ec04"; +} +.ri-cup-fill:before { + content: "\ec05"; +} +.ri-cup-line:before { + content: "\ec06"; +} +.ri-currency-fill:before { + content: "\ec07"; +} +.ri-currency-line:before { + content: "\ec08"; +} +.ri-cursor-fill:before { + content: "\ec09"; +} +.ri-cursor-line:before { + content: "\ec0a"; +} +.ri-customer-service-2-fill:before { + content: "\ec0b"; +} +.ri-customer-service-2-line:before { + content: "\ec0c"; +} +.ri-customer-service-fill:before { + content: "\ec0d"; +} +.ri-customer-service-line:before { + content: "\ec0e"; +} +.ri-dashboard-2-fill:before { + content: "\ec0f"; +} +.ri-dashboard-2-line:before { + content: "\ec10"; +} +.ri-dashboard-3-fill:before { + content: "\ec11"; +} +.ri-dashboard-3-line:before { + content: "\ec12"; +} +.ri-dashboard-fill:before { + content: "\ec13"; +} +.ri-dashboard-line:before { + content: "\ec14"; +} +.ri-database-2-fill:before { + content: "\ec15"; +} +.ri-database-2-line:before { + content: "\ec16"; +} +.ri-database-fill:before { + content: "\ec17"; +} +.ri-database-line:before { + content: "\ec18"; +} +.ri-delete-back-2-fill:before { + content: "\ec19"; +} +.ri-delete-back-2-line:before { + content: "\ec1a"; +} +.ri-delete-back-fill:before { + content: "\ec1b"; +} +.ri-delete-back-line:before { + content: "\ec1c"; +} +.ri-delete-bin-2-fill:before { + content: "\ec1d"; +} +.ri-delete-bin-2-line:before { + content: "\ec1e"; +} +.ri-delete-bin-3-fill:before { + content: "\ec1f"; +} +.ri-delete-bin-3-line:before { + content: "\ec20"; +} +.ri-delete-bin-4-fill:before { + content: "\ec21"; +} +.ri-delete-bin-4-line:before { + content: "\ec22"; +} +.ri-delete-bin-5-fill:before { + content: "\ec23"; +} +.ri-delete-bin-5-line:before { + content: "\ec24"; +} +.ri-delete-bin-6-fill:before { + content: "\ec25"; +} +.ri-delete-bin-6-line:before { + content: "\ec26"; +} +.ri-delete-bin-7-fill:before { + content: "\ec27"; +} +.ri-delete-bin-7-line:before { + content: "\ec28"; +} +.ri-delete-bin-fill:before { + content: "\ec29"; +} +.ri-delete-bin-line:before { + content: "\ec2a"; +} +.ri-delete-column:before { + content: "\ec2b"; +} +.ri-delete-row:before { + content: "\ec2c"; +} +.ri-device-fill:before { + content: "\ec2d"; +} +.ri-device-line:before { + content: "\ec2e"; +} +.ri-device-recover-fill:before { + content: "\ec2f"; +} +.ri-device-recover-line:before { + content: "\ec30"; +} +.ri-dingding-fill:before { + content: "\ec31"; +} +.ri-dingding-line:before { + content: "\ec32"; +} +.ri-direction-fill:before { + content: "\ec33"; +} +.ri-direction-line:before { + content: "\ec34"; +} +.ri-disc-fill:before { + content: "\ec35"; +} +.ri-disc-line:before { + content: "\ec36"; +} +.ri-discord-fill:before { + content: "\ec37"; +} +.ri-discord-line:before { + content: "\ec38"; +} +.ri-discuss-fill:before { + content: "\ec39"; +} +.ri-discuss-line:before { + content: "\ec3a"; +} +.ri-dislike-fill:before { + content: "\ec3b"; +} +.ri-dislike-line:before { + content: "\ec3c"; +} +.ri-disqus-fill:before { + content: "\ec3d"; +} +.ri-disqus-line:before { + content: "\ec3e"; +} +.ri-divide-fill:before { + content: "\ec3f"; +} +.ri-divide-line:before { + content: "\ec40"; +} +.ri-donut-chart-fill:before { + content: "\ec41"; +} +.ri-donut-chart-line:before { + content: "\ec42"; +} +.ri-door-closed-fill:before { + content: "\ec43"; +} +.ri-door-closed-line:before { + content: "\ec44"; +} +.ri-door-fill:before { + content: "\ec45"; +} +.ri-door-line:before { + content: "\ec46"; +} +.ri-door-lock-box-fill:before { + content: "\ec47"; +} +.ri-door-lock-box-line:before { + content: "\ec48"; +} +.ri-door-lock-fill:before { + content: "\ec49"; +} +.ri-door-lock-line:before { + content: "\ec4a"; +} +.ri-door-open-fill:before { + content: "\ec4b"; +} +.ri-door-open-line:before { + content: "\ec4c"; +} +.ri-dossier-fill:before { + content: "\ec4d"; +} +.ri-dossier-line:before { + content: "\ec4e"; +} +.ri-douban-fill:before { + content: "\ec4f"; +} +.ri-douban-line:before { + content: "\ec50"; +} +.ri-double-quotes-l:before { + content: "\ec51"; +} +.ri-double-quotes-r:before { + content: "\ec52"; +} +.ri-download-2-fill:before { + content: "\ec53"; +} +.ri-download-2-line:before { + content: "\ec54"; +} +.ri-download-cloud-2-fill:before { + content: "\ec55"; +} +.ri-download-cloud-2-line:before { + content: "\ec56"; +} +.ri-download-cloud-fill:before { + content: "\ec57"; +} +.ri-download-cloud-line:before { + content: "\ec58"; +} +.ri-download-fill:before { + content: "\ec59"; +} +.ri-download-line:before { + content: "\ec5a"; +} +.ri-draft-fill:before { + content: "\ec5b"; +} +.ri-draft-line:before { + content: "\ec5c"; +} +.ri-drag-drop-fill:before { + content: "\ec5d"; +} +.ri-drag-drop-line:before { + content: "\ec5e"; +} +.ri-drag-move-2-fill:before { + content: "\ec5f"; +} +.ri-drag-move-2-line:before { + content: "\ec60"; +} +.ri-drag-move-fill:before { + content: "\ec61"; +} +.ri-drag-move-line:before { + content: "\ec62"; +} +.ri-dribbble-fill:before { + content: "\ec63"; +} +.ri-dribbble-line:before { + content: "\ec64"; +} +.ri-drive-fill:before { + content: "\ec65"; +} +.ri-drive-line:before { + content: "\ec66"; +} +.ri-drizzle-fill:before { + content: "\ec67"; +} +.ri-drizzle-line:before { + content: "\ec68"; +} +.ri-drop-fill:before { + content: "\ec69"; +} +.ri-drop-line:before { + content: "\ec6a"; +} +.ri-dropbox-fill:before { + content: "\ec6b"; +} +.ri-dropbox-line:before { + content: "\ec6c"; +} +.ri-dual-sim-1-fill:before { + content: "\ec6d"; +} +.ri-dual-sim-1-line:before { + content: "\ec6e"; +} +.ri-dual-sim-2-fill:before { + content: "\ec6f"; +} +.ri-dual-sim-2-line:before { + content: "\ec70"; +} +.ri-dv-fill:before { + content: "\ec71"; +} +.ri-dv-line:before { + content: "\ec72"; +} +.ri-dvd-fill:before { + content: "\ec73"; +} +.ri-dvd-line:before { + content: "\ec74"; +} +.ri-e-bike-2-fill:before { + content: "\ec75"; +} +.ri-e-bike-2-line:before { + content: "\ec76"; +} +.ri-e-bike-fill:before { + content: "\ec77"; +} +.ri-e-bike-line:before { + content: "\ec78"; +} +.ri-earth-fill:before { + content: "\ec79"; +} +.ri-earth-line:before { + content: "\ec7a"; +} +.ri-earthquake-fill:before { + content: "\ec7b"; +} +.ri-earthquake-line:before { + content: "\ec7c"; +} +.ri-edge-fill:before { + content: "\ec7d"; +} +.ri-edge-line:before { + content: "\ec7e"; +} +.ri-edit-2-fill:before { + content: "\ec7f"; +} +.ri-edit-2-line:before { + content: "\ec80"; +} +.ri-edit-box-fill:before { + content: "\ec81"; +} +.ri-edit-box-line:before { + content: "\ec82"; +} +.ri-edit-circle-fill:before { + content: "\ec83"; +} +.ri-edit-circle-line:before { + content: "\ec84"; +} +.ri-edit-fill:before { + content: "\ec85"; +} +.ri-edit-line:before { + content: "\ec86"; +} +.ri-eject-fill:before { + content: "\ec87"; +} +.ri-eject-line:before { + content: "\ec88"; +} +.ri-emotion-2-fill:before { + content: "\ec89"; +} +.ri-emotion-2-line:before { + content: "\ec8a"; +} +.ri-emotion-fill:before { + content: "\ec8b"; +} +.ri-emotion-happy-fill:before { + content: "\ec8c"; +} +.ri-emotion-happy-line:before { + content: "\ec8d"; +} +.ri-emotion-laugh-fill:before { + content: "\ec8e"; +} +.ri-emotion-laugh-line:before { + content: "\ec8f"; +} +.ri-emotion-line:before { + content: "\ec90"; +} +.ri-emotion-normal-fill:before { + content: "\ec91"; +} +.ri-emotion-normal-line:before { + content: "\ec92"; +} +.ri-emotion-sad-fill:before { + content: "\ec93"; +} +.ri-emotion-sad-line:before { + content: "\ec94"; +} +.ri-emotion-unhappy-fill:before { + content: "\ec95"; +} +.ri-emotion-unhappy-line:before { + content: "\ec96"; +} +.ri-empathize-fill:before { + content: "\ec97"; +} +.ri-empathize-line:before { + content: "\ec98"; +} +.ri-emphasis-cn:before { + content: "\ec99"; +} +.ri-emphasis:before { + content: "\ec9a"; +} +.ri-english-input:before { + content: "\ec9b"; +} +.ri-equalizer-fill:before { + content: "\ec9c"; +} +.ri-equalizer-line:before { + content: "\ec9d"; +} +.ri-eraser-fill:before { + content: "\ec9e"; +} +.ri-eraser-line:before { + content: "\ec9f"; +} +.ri-error-warning-fill:before { + content: "\eca0"; +} +.ri-error-warning-line:before { + content: "\eca1"; +} +.ri-evernote-fill:before { + content: "\eca2"; +} +.ri-evernote-line:before { + content: "\eca3"; +} +.ri-exchange-box-fill:before { + content: "\eca4"; +} +.ri-exchange-box-line:before { + content: "\eca5"; +} +.ri-exchange-cny-fill:before { + content: "\eca6"; +} +.ri-exchange-cny-line:before { + content: "\eca7"; +} +.ri-exchange-dollar-fill:before { + content: "\eca8"; +} +.ri-exchange-dollar-line:before { + content: "\eca9"; +} +.ri-exchange-fill:before { + content: "\ecaa"; +} +.ri-exchange-funds-fill:before { + content: "\ecab"; +} +.ri-exchange-funds-line:before { + content: "\ecac"; +} +.ri-exchange-line:before { + content: "\ecad"; +} +.ri-external-link-fill:before { + content: "\ecae"; +} +.ri-external-link-line:before { + content: "\ecaf"; +} +.ri-eye-2-fill:before { + content: "\ecb0"; +} +.ri-eye-2-line:before { + content: "\ecb1"; +} +.ri-eye-close-fill:before { + content: "\ecb2"; +} +.ri-eye-close-line:before { + content: "\ecb3"; +} +.ri-eye-fill:before { + content: "\ecb4"; +} +.ri-eye-line:before { + content: "\ecb5"; +} +.ri-eye-off-fill:before { + content: "\ecb6"; +} +.ri-eye-off-line:before { + content: "\ecb7"; +} +.ri-facebook-box-fill:before { + content: "\ecb8"; +} +.ri-facebook-box-line:before { + content: "\ecb9"; +} +.ri-facebook-circle-fill:before { + content: "\ecba"; +} +.ri-facebook-circle-line:before { + content: "\ecbb"; +} +.ri-facebook-fill:before { + content: "\ecbc"; +} +.ri-facebook-line:before { + content: "\ecbd"; +} +.ri-fahrenheit-fill:before { + content: "\ecbe"; +} +.ri-fahrenheit-line:before { + content: "\ecbf"; +} +.ri-feedback-fill:before { + content: "\ecc0"; +} +.ri-feedback-line:before { + content: "\ecc1"; +} +.ri-file-2-fill:before { + content: "\ecc2"; +} +.ri-file-2-line:before { + content: "\ecc3"; +} +.ri-file-3-fill:before { + content: "\ecc4"; +} +.ri-file-3-line:before { + content: "\ecc5"; +} +.ri-file-4-fill:before { + content: "\ecc6"; +} +.ri-file-4-line:before { + content: "\ecc7"; +} +.ri-file-add-fill:before { + content: "\ecc8"; +} +.ri-file-add-line:before { + content: "\ecc9"; +} +.ri-file-chart-2-fill:before { + content: "\ecca"; +} +.ri-file-chart-2-line:before { + content: "\eccb"; +} +.ri-file-chart-fill:before { + content: "\eccc"; +} +.ri-file-chart-line:before { + content: "\eccd"; +} +.ri-file-cloud-fill:before { + content: "\ecce"; +} +.ri-file-cloud-line:before { + content: "\eccf"; +} +.ri-file-code-fill:before { + content: "\ecd0"; +} +.ri-file-code-line:before { + content: "\ecd1"; +} +.ri-file-copy-2-fill:before { + content: "\ecd2"; +} +.ri-file-copy-2-line:before { + content: "\ecd3"; +} +.ri-file-copy-fill:before { + content: "\ecd4"; +} +.ri-file-copy-line:before { + content: "\ecd5"; +} +.ri-file-damage-fill:before { + content: "\ecd6"; +} +.ri-file-damage-line:before { + content: "\ecd7"; +} +.ri-file-download-fill:before { + content: "\ecd8"; +} +.ri-file-download-line:before { + content: "\ecd9"; +} +.ri-file-edit-fill:before { + content: "\ecda"; +} +.ri-file-edit-line:before { + content: "\ecdb"; +} +.ri-file-excel-2-fill:before { + content: "\ecdc"; +} +.ri-file-excel-2-line:before { + content: "\ecdd"; +} +.ri-file-excel-fill:before { + content: "\ecde"; +} +.ri-file-excel-line:before { + content: "\ecdf"; +} +.ri-file-fill:before { + content: "\ece0"; +} +.ri-file-forbid-fill:before { + content: "\ece1"; +} +.ri-file-forbid-line:before { + content: "\ece2"; +} +.ri-file-gif-fill:before { + content: "\ece3"; +} +.ri-file-gif-line:before { + content: "\ece4"; +} +.ri-file-history-fill:before { + content: "\ece5"; +} +.ri-file-history-line:before { + content: "\ece6"; +} +.ri-file-hwp-fill:before { + content: "\ece7"; +} +.ri-file-hwp-line:before { + content: "\ece8"; +} +.ri-file-info-fill:before { + content: "\ece9"; +} +.ri-file-info-line:before { + content: "\ecea"; +} +.ri-file-line:before { + content: "\eceb"; +} +.ri-file-list-2-fill:before { + content: "\ecec"; +} +.ri-file-list-2-line:before { + content: "\eced"; +} +.ri-file-list-3-fill:before { + content: "\ecee"; +} +.ri-file-list-3-line:before { + content: "\ecef"; +} +.ri-file-list-fill:before { + content: "\ecf0"; +} +.ri-file-list-line:before { + content: "\ecf1"; +} +.ri-file-lock-fill:before { + content: "\ecf2"; +} +.ri-file-lock-line:before { + content: "\ecf3"; +} +.ri-file-mark-fill:before { + content: "\ecf4"; +} +.ri-file-mark-line:before { + content: "\ecf5"; +} +.ri-file-music-fill:before { + content: "\ecf6"; +} +.ri-file-music-line:before { + content: "\ecf7"; +} +.ri-file-paper-2-fill:before { + content: "\ecf8"; +} +.ri-file-paper-2-line:before { + content: "\ecf9"; +} +.ri-file-paper-fill:before { + content: "\ecfa"; +} +.ri-file-paper-line:before { + content: "\ecfb"; +} +.ri-file-pdf-fill:before { + content: "\ecfc"; +} +.ri-file-pdf-line:before { + content: "\ecfd"; +} +.ri-file-ppt-2-fill:before { + content: "\ecfe"; +} +.ri-file-ppt-2-line:before { + content: "\ecff"; +} +.ri-file-ppt-fill:before { + content: "\ed00"; +} +.ri-file-ppt-line:before { + content: "\ed01"; +} +.ri-file-reduce-fill:before { + content: "\ed02"; +} +.ri-file-reduce-line:before { + content: "\ed03"; +} +.ri-file-search-fill:before { + content: "\ed04"; +} +.ri-file-search-line:before { + content: "\ed05"; +} +.ri-file-settings-fill:before { + content: "\ed06"; +} +.ri-file-settings-line:before { + content: "\ed07"; +} +.ri-file-shield-2-fill:before { + content: "\ed08"; +} +.ri-file-shield-2-line:before { + content: "\ed09"; +} +.ri-file-shield-fill:before { + content: "\ed0a"; +} +.ri-file-shield-line:before { + content: "\ed0b"; +} +.ri-file-shred-fill:before { + content: "\ed0c"; +} +.ri-file-shred-line:before { + content: "\ed0d"; +} +.ri-file-text-fill:before { + content: "\ed0e"; +} +.ri-file-text-line:before { + content: "\ed0f"; +} +.ri-file-transfer-fill:before { + content: "\ed10"; +} +.ri-file-transfer-line:before { + content: "\ed11"; +} +.ri-file-unknow-fill:before { + content: "\ed12"; +} +.ri-file-unknow-line:before { + content: "\ed13"; +} +.ri-file-upload-fill:before { + content: "\ed14"; +} +.ri-file-upload-line:before { + content: "\ed15"; +} +.ri-file-user-fill:before { + content: "\ed16"; +} +.ri-file-user-line:before { + content: "\ed17"; +} +.ri-file-warning-fill:before { + content: "\ed18"; +} +.ri-file-warning-line:before { + content: "\ed19"; +} +.ri-file-word-2-fill:before { + content: "\ed1a"; +} +.ri-file-word-2-line:before { + content: "\ed1b"; +} +.ri-file-word-fill:before { + content: "\ed1c"; +} +.ri-file-word-line:before { + content: "\ed1d"; +} +.ri-file-zip-fill:before { + content: "\ed1e"; +} +.ri-file-zip-line:before { + content: "\ed1f"; +} +.ri-film-fill:before { + content: "\ed20"; +} +.ri-film-line:before { + content: "\ed21"; +} +.ri-filter-2-fill:before { + content: "\ed22"; +} +.ri-filter-2-line:before { + content: "\ed23"; +} +.ri-filter-3-fill:before { + content: "\ed24"; +} +.ri-filter-3-line:before { + content: "\ed25"; +} +.ri-filter-fill:before { + content: "\ed26"; +} +.ri-filter-line:before { + content: "\ed27"; +} +.ri-filter-off-fill:before { + content: "\ed28"; +} +.ri-filter-off-line:before { + content: "\ed29"; +} +.ri-find-replace-fill:before { + content: "\ed2a"; +} +.ri-find-replace-line:before { + content: "\ed2b"; +} +.ri-finder-fill:before { + content: "\ed2c"; +} +.ri-finder-line:before { + content: "\ed2d"; +} +.ri-fingerprint-2-fill:before { + content: "\ed2e"; +} +.ri-fingerprint-2-line:before { + content: "\ed2f"; +} +.ri-fingerprint-fill:before { + content: "\ed30"; +} +.ri-fingerprint-line:before { + content: "\ed31"; +} +.ri-fire-fill:before { + content: "\ed32"; +} +.ri-fire-line:before { + content: "\ed33"; +} +.ri-firefox-fill:before { + content: "\ed34"; +} +.ri-firefox-line:before { + content: "\ed35"; +} +.ri-first-aid-kit-fill:before { + content: "\ed36"; +} +.ri-first-aid-kit-line:before { + content: "\ed37"; +} +.ri-flag-2-fill:before { + content: "\ed38"; +} +.ri-flag-2-line:before { + content: "\ed39"; +} +.ri-flag-fill:before { + content: "\ed3a"; +} +.ri-flag-line:before { + content: "\ed3b"; +} +.ri-flashlight-fill:before { + content: "\ed3c"; +} +.ri-flashlight-line:before { + content: "\ed3d"; +} +.ri-flask-fill:before { + content: "\ed3e"; +} +.ri-flask-line:before { + content: "\ed3f"; +} +.ri-flight-land-fill:before { + content: "\ed40"; +} +.ri-flight-land-line:before { + content: "\ed41"; +} +.ri-flight-takeoff-fill:before { + content: "\ed42"; +} +.ri-flight-takeoff-line:before { + content: "\ed43"; +} +.ri-flood-fill:before { + content: "\ed44"; +} +.ri-flood-line:before { + content: "\ed45"; +} +.ri-flow-chart:before { + content: "\ed46"; +} +.ri-flutter-fill:before { + content: "\ed47"; +} +.ri-flutter-line:before { + content: "\ed48"; +} +.ri-focus-2-fill:before { + content: "\ed49"; +} +.ri-focus-2-line:before { + content: "\ed4a"; +} +.ri-focus-3-fill:before { + content: "\ed4b"; +} +.ri-focus-3-line:before { + content: "\ed4c"; +} +.ri-focus-fill:before { + content: "\ed4d"; +} +.ri-focus-line:before { + content: "\ed4e"; +} +.ri-foggy-fill:before { + content: "\ed4f"; +} +.ri-foggy-line:before { + content: "\ed50"; +} +.ri-folder-2-fill:before { + content: "\ed51"; +} +.ri-folder-2-line:before { + content: "\ed52"; +} +.ri-folder-3-fill:before { + content: "\ed53"; +} +.ri-folder-3-line:before { + content: "\ed54"; +} +.ri-folder-4-fill:before { + content: "\ed55"; +} +.ri-folder-4-line:before { + content: "\ed56"; +} +.ri-folder-5-fill:before { + content: "\ed57"; +} +.ri-folder-5-line:before { + content: "\ed58"; +} +.ri-folder-add-fill:before { + content: "\ed59"; +} +.ri-folder-add-line:before { + content: "\ed5a"; +} +.ri-folder-chart-2-fill:before { + content: "\ed5b"; +} +.ri-folder-chart-2-line:before { + content: "\ed5c"; +} +.ri-folder-chart-fill:before { + content: "\ed5d"; +} +.ri-folder-chart-line:before { + content: "\ed5e"; +} +.ri-folder-download-fill:before { + content: "\ed5f"; +} +.ri-folder-download-line:before { + content: "\ed60"; +} +.ri-folder-fill:before { + content: "\ed61"; +} +.ri-folder-forbid-fill:before { + content: "\ed62"; +} +.ri-folder-forbid-line:before { + content: "\ed63"; +} +.ri-folder-history-fill:before { + content: "\ed64"; +} +.ri-folder-history-line:before { + content: "\ed65"; +} +.ri-folder-info-fill:before { + content: "\ed66"; +} +.ri-folder-info-line:before { + content: "\ed67"; +} +.ri-folder-keyhole-fill:before { + content: "\ed68"; +} +.ri-folder-keyhole-line:before { + content: "\ed69"; +} +.ri-folder-line:before { + content: "\ed6a"; +} +.ri-folder-lock-fill:before { + content: "\ed6b"; +} +.ri-folder-lock-line:before { + content: "\ed6c"; +} +.ri-folder-music-fill:before { + content: "\ed6d"; +} +.ri-folder-music-line:before { + content: "\ed6e"; +} +.ri-folder-open-fill:before { + content: "\ed6f"; +} +.ri-folder-open-line:before { + content: "\ed70"; +} +.ri-folder-received-fill:before { + content: "\ed71"; +} +.ri-folder-received-line:before { + content: "\ed72"; +} +.ri-folder-reduce-fill:before { + content: "\ed73"; +} +.ri-folder-reduce-line:before { + content: "\ed74"; +} +.ri-folder-settings-fill:before { + content: "\ed75"; +} +.ri-folder-settings-line:before { + content: "\ed76"; +} +.ri-folder-shared-fill:before { + content: "\ed77"; +} +.ri-folder-shared-line:before { + content: "\ed78"; +} +.ri-folder-shield-2-fill:before { + content: "\ed79"; +} +.ri-folder-shield-2-line:before { + content: "\ed7a"; +} +.ri-folder-shield-fill:before { + content: "\ed7b"; +} +.ri-folder-shield-line:before { + content: "\ed7c"; +} +.ri-folder-transfer-fill:before { + content: "\ed7d"; +} +.ri-folder-transfer-line:before { + content: "\ed7e"; +} +.ri-folder-unknow-fill:before { + content: "\ed7f"; +} +.ri-folder-unknow-line:before { + content: "\ed80"; +} +.ri-folder-upload-fill:before { + content: "\ed81"; +} +.ri-folder-upload-line:before { + content: "\ed82"; +} +.ri-folder-user-fill:before { + content: "\ed83"; +} +.ri-folder-user-line:before { + content: "\ed84"; +} +.ri-folder-warning-fill:before { + content: "\ed85"; +} +.ri-folder-warning-line:before { + content: "\ed86"; +} +.ri-folder-zip-fill:before { + content: "\ed87"; +} +.ri-folder-zip-line:before { + content: "\ed88"; +} +.ri-folders-fill:before { + content: "\ed89"; +} +.ri-folders-line:before { + content: "\ed8a"; +} +.ri-font-color:before { + content: "\ed8b"; +} +.ri-font-size-2:before { + content: "\ed8c"; +} +.ri-font-size:before { + content: "\ed8d"; +} +.ri-football-fill:before { + content: "\ed8e"; +} +.ri-football-line:before { + content: "\ed8f"; +} +.ri-footprint-fill:before { + content: "\ed90"; +} +.ri-footprint-line:before { + content: "\ed91"; +} +.ri-forbid-2-fill:before { + content: "\ed92"; +} +.ri-forbid-2-line:before { + content: "\ed93"; +} +.ri-forbid-fill:before { + content: "\ed94"; +} +.ri-forbid-line:before { + content: "\ed95"; +} +.ri-format-clear:before { + content: "\ed96"; +} +.ri-fridge-fill:before { + content: "\ed97"; +} +.ri-fridge-line:before { + content: "\ed98"; +} +.ri-fullscreen-exit-fill:before { + content: "\ed99"; +} +.ri-fullscreen-exit-line:before { + content: "\ed9a"; +} +.ri-fullscreen-fill:before { + content: "\ed9b"; +} +.ri-fullscreen-line:before { + content: "\ed9c"; +} +.ri-function-fill:before { + content: "\ed9d"; +} +.ri-function-line:before { + content: "\ed9e"; +} +.ri-functions:before { + content: "\ed9f"; +} +.ri-funds-box-fill:before { + content: "\eda0"; +} +.ri-funds-box-line:before { + content: "\eda1"; +} +.ri-funds-fill:before { + content: "\eda2"; +} +.ri-funds-line:before { + content: "\eda3"; +} +.ri-gallery-fill:before { + content: "\eda4"; +} +.ri-gallery-line:before { + content: "\eda5"; +} +.ri-gallery-upload-fill:before { + content: "\eda6"; +} +.ri-gallery-upload-line:before { + content: "\eda7"; +} +.ri-game-fill:before { + content: "\eda8"; +} +.ri-game-line:before { + content: "\eda9"; +} +.ri-gamepad-fill:before { + content: "\edaa"; +} +.ri-gamepad-line:before { + content: "\edab"; +} +.ri-gas-station-fill:before { + content: "\edac"; +} +.ri-gas-station-line:before { + content: "\edad"; +} +.ri-gatsby-fill:before { + content: "\edae"; +} +.ri-gatsby-line:before { + content: "\edaf"; +} +.ri-genderless-fill:before { + content: "\edb0"; +} +.ri-genderless-line:before { + content: "\edb1"; +} +.ri-ghost-2-fill:before { + content: "\edb2"; +} +.ri-ghost-2-line:before { + content: "\edb3"; +} +.ri-ghost-fill:before { + content: "\edb4"; +} +.ri-ghost-line:before { + content: "\edb5"; +} +.ri-ghost-smile-fill:before { + content: "\edb6"; +} +.ri-ghost-smile-line:before { + content: "\edb7"; +} +.ri-gift-2-fill:before { + content: "\edb8"; +} +.ri-gift-2-line:before { + content: "\edb9"; +} +.ri-gift-fill:before { + content: "\edba"; +} +.ri-gift-line:before { + content: "\edbb"; +} +.ri-git-branch-fill:before { + content: "\edbc"; +} +.ri-git-branch-line:before { + content: "\edbd"; +} +.ri-git-commit-fill:before { + content: "\edbe"; +} +.ri-git-commit-line:before { + content: "\edbf"; +} +.ri-git-merge-fill:before { + content: "\edc0"; +} +.ri-git-merge-line:before { + content: "\edc1"; +} +.ri-git-pull-request-fill:before { + content: "\edc2"; +} +.ri-git-pull-request-line:before { + content: "\edc3"; +} +.ri-git-repository-commits-fill:before { + content: "\edc4"; +} +.ri-git-repository-commits-line:before { + content: "\edc5"; +} +.ri-git-repository-fill:before { + content: "\edc6"; +} +.ri-git-repository-line:before { + content: "\edc7"; +} +.ri-git-repository-private-fill:before { + content: "\edc8"; +} +.ri-git-repository-private-line:before { + content: "\edc9"; +} +.ri-github-fill:before { + content: "\edca"; +} +.ri-github-line:before { + content: "\edcb"; +} +.ri-gitlab-fill:before { + content: "\edcc"; +} +.ri-gitlab-line:before { + content: "\edcd"; +} +.ri-global-fill:before { + content: "\edce"; +} +.ri-global-line:before { + content: "\edcf"; +} +.ri-globe-fill:before { + content: "\edd0"; +} +.ri-globe-line:before { + content: "\edd1"; +} +.ri-goblet-fill:before { + content: "\edd2"; +} +.ri-goblet-line:before { + content: "\edd3"; +} +.ri-google-fill:before { + content: "\edd4"; +} +.ri-google-line:before { + content: "\edd5"; +} +.ri-google-play-fill:before { + content: "\edd6"; +} +.ri-google-play-line:before { + content: "\edd7"; +} +.ri-government-fill:before { + content: "\edd8"; +} +.ri-government-line:before { + content: "\edd9"; +} +.ri-gps-fill:before { + content: "\edda"; +} +.ri-gps-line:before { + content: "\eddb"; +} +.ri-gradienter-fill:before { + content: "\eddc"; +} +.ri-gradienter-line:before { + content: "\eddd"; +} +.ri-grid-fill:before { + content: "\edde"; +} +.ri-grid-line:before { + content: "\eddf"; +} +.ri-group-2-fill:before { + content: "\ede0"; +} +.ri-group-2-line:before { + content: "\ede1"; +} +.ri-group-fill:before { + content: "\ede2"; +} +.ri-group-line:before { + content: "\ede3"; +} +.ri-guide-fill:before { + content: "\ede4"; +} +.ri-guide-line:before { + content: "\ede5"; +} +.ri-h-1:before { + content: "\ede6"; +} +.ri-h-2:before { + content: "\ede7"; +} +.ri-h-3:before { + content: "\ede8"; +} +.ri-h-4:before { + content: "\ede9"; +} +.ri-h-5:before { + content: "\edea"; +} +.ri-h-6:before { + content: "\edeb"; +} +.ri-hail-fill:before { + content: "\edec"; +} +.ri-hail-line:before { + content: "\eded"; +} +.ri-hammer-fill:before { + content: "\edee"; +} +.ri-hammer-line:before { + content: "\edef"; +} +.ri-hand-coin-fill:before { + content: "\edf0"; +} +.ri-hand-coin-line:before { + content: "\edf1"; +} +.ri-hand-heart-fill:before { + content: "\edf2"; +} +.ri-hand-heart-line:before { + content: "\edf3"; +} +.ri-hand-sanitizer-fill:before { + content: "\edf4"; +} +.ri-hand-sanitizer-line:before { + content: "\edf5"; +} +.ri-handbag-fill:before { + content: "\edf6"; +} +.ri-handbag-line:before { + content: "\edf7"; +} +.ri-hard-drive-2-fill:before { + content: "\edf8"; +} +.ri-hard-drive-2-line:before { + content: "\edf9"; +} +.ri-hard-drive-fill:before { + content: "\edfa"; +} +.ri-hard-drive-line:before { + content: "\edfb"; +} +.ri-hashtag:before { + content: "\edfc"; +} +.ri-haze-2-fill:before { + content: "\edfd"; +} +.ri-haze-2-line:before { + content: "\edfe"; +} +.ri-haze-fill:before { + content: "\edff"; +} +.ri-haze-line:before { + content: "\ee00"; +} +.ri-hd-fill:before { + content: "\ee01"; +} +.ri-hd-line:before { + content: "\ee02"; +} +.ri-heading:before { + content: "\ee03"; +} +.ri-headphone-fill:before { + content: "\ee04"; +} +.ri-headphone-line:before { + content: "\ee05"; +} +.ri-health-book-fill:before { + content: "\ee06"; +} +.ri-health-book-line:before { + content: "\ee07"; +} +.ri-heart-2-fill:before { + content: "\ee08"; +} +.ri-heart-2-line:before { + content: "\ee09"; +} +.ri-heart-3-fill:before { + content: "\ee0a"; +} +.ri-heart-3-line:before { + content: "\ee0b"; +} +.ri-heart-add-fill:before { + content: "\ee0c"; +} +.ri-heart-add-line:before { + content: "\ee0d"; +} +.ri-heart-fill:before { + content: "\ee0e"; +} +.ri-heart-line:before { + content: "\ee0f"; +} +.ri-heart-pulse-fill:before { + content: "\ee10"; +} +.ri-heart-pulse-line:before { + content: "\ee11"; +} +.ri-hearts-fill:before { + content: "\ee12"; +} +.ri-hearts-line:before { + content: "\ee13"; +} +.ri-heavy-showers-fill:before { + content: "\ee14"; +} +.ri-heavy-showers-line:before { + content: "\ee15"; +} +.ri-history-fill:before { + content: "\ee16"; +} +.ri-history-line:before { + content: "\ee17"; +} +.ri-home-2-fill:before { + content: "\ee18"; +} +.ri-home-2-line:before { + content: "\ee19"; +} +.ri-home-3-fill:before { + content: "\ee1a"; +} +.ri-home-3-line:before { + content: "\ee1b"; +} +.ri-home-4-fill:before { + content: "\ee1c"; +} +.ri-home-4-line:before { + content: "\ee1d"; +} +.ri-home-5-fill:before { + content: "\ee1e"; +} +.ri-home-5-line:before { + content: "\ee1f"; +} +.ri-home-6-fill:before { + content: "\ee20"; +} +.ri-home-6-line:before { + content: "\ee21"; +} +.ri-home-7-fill:before { + content: "\ee22"; +} +.ri-home-7-line:before { + content: "\ee23"; +} +.ri-home-8-fill:before { + content: "\ee24"; +} +.ri-home-8-line:before { + content: "\ee25"; +} +.ri-home-fill:before { + content: "\ee26"; +} +.ri-home-gear-fill:before { + content: "\ee27"; +} +.ri-home-gear-line:before { + content: "\ee28"; +} +.ri-home-heart-fill:before { + content: "\ee29"; +} +.ri-home-heart-line:before { + content: "\ee2a"; +} +.ri-home-line:before { + content: "\ee2b"; +} +.ri-home-smile-2-fill:before { + content: "\ee2c"; +} +.ri-home-smile-2-line:before { + content: "\ee2d"; +} +.ri-home-smile-fill:before { + content: "\ee2e"; +} +.ri-home-smile-line:before { + content: "\ee2f"; +} +.ri-home-wifi-fill:before { + content: "\ee30"; +} +.ri-home-wifi-line:before { + content: "\ee31"; +} +.ri-honor-of-kings-fill:before { + content: "\ee32"; +} +.ri-honor-of-kings-line:before { + content: "\ee33"; +} +.ri-honour-fill:before { + content: "\ee34"; +} +.ri-honour-line:before { + content: "\ee35"; +} +.ri-hospital-fill:before { + content: "\ee36"; +} +.ri-hospital-line:before { + content: "\ee37"; +} +.ri-hotel-bed-fill:before { + content: "\ee38"; +} +.ri-hotel-bed-line:before { + content: "\ee39"; +} +.ri-hotel-fill:before { + content: "\ee3a"; +} +.ri-hotel-line:before { + content: "\ee3b"; +} +.ri-hotspot-fill:before { + content: "\ee3c"; +} +.ri-hotspot-line:before { + content: "\ee3d"; +} +.ri-hq-fill:before { + content: "\ee3e"; +} +.ri-hq-line:before { + content: "\ee3f"; +} +.ri-html5-fill:before { + content: "\ee40"; +} +.ri-html5-line:before { + content: "\ee41"; +} +.ri-ie-fill:before { + content: "\ee42"; +} +.ri-ie-line:before { + content: "\ee43"; +} +.ri-image-2-fill:before { + content: "\ee44"; +} +.ri-image-2-line:before { + content: "\ee45"; +} +.ri-image-add-fill:before { + content: "\ee46"; +} +.ri-image-add-line:before { + content: "\ee47"; +} +.ri-image-edit-fill:before { + content: "\ee48"; +} +.ri-image-edit-line:before { + content: "\ee49"; +} +.ri-image-fill:before { + content: "\ee4a"; +} +.ri-image-line:before { + content: "\ee4b"; +} +.ri-inbox-archive-fill:before { + content: "\ee4c"; +} +.ri-inbox-archive-line:before { + content: "\ee4d"; +} +.ri-inbox-fill:before { + content: "\ee4e"; +} +.ri-inbox-line:before { + content: "\ee4f"; +} +.ri-inbox-unarchive-fill:before { + content: "\ee50"; +} +.ri-inbox-unarchive-line:before { + content: "\ee51"; +} +.ri-increase-decrease-fill:before { + content: "\ee52"; +} +.ri-increase-decrease-line:before { + content: "\ee53"; +} +.ri-indent-decrease:before { + content: "\ee54"; +} +.ri-indent-increase:before { + content: "\ee55"; +} +.ri-indeterminate-circle-fill:before { + content: "\ee56"; +} +.ri-indeterminate-circle-line:before { + content: "\ee57"; +} +.ri-information-fill:before { + content: "\ee58"; +} +.ri-information-line:before { + content: "\ee59"; +} +.ri-infrared-thermometer-fill:before { + content: "\ee5a"; +} +.ri-infrared-thermometer-line:before { + content: "\ee5b"; +} +.ri-ink-bottle-fill:before { + content: "\ee5c"; +} +.ri-ink-bottle-line:before { + content: "\ee5d"; +} +.ri-input-cursor-move:before { + content: "\ee5e"; +} +.ri-input-method-fill:before { + content: "\ee5f"; +} +.ri-input-method-line:before { + content: "\ee60"; +} +.ri-insert-column-left:before { + content: "\ee61"; +} +.ri-insert-column-right:before { + content: "\ee62"; +} +.ri-insert-row-bottom:before { + content: "\ee63"; +} +.ri-insert-row-top:before { + content: "\ee64"; +} +.ri-instagram-fill:before { + content: "\ee65"; +} +.ri-instagram-line:before { + content: "\ee66"; +} +.ri-install-fill:before { + content: "\ee67"; +} +.ri-install-line:before { + content: "\ee68"; +} +.ri-invision-fill:before { + content: "\ee69"; +} +.ri-invision-line:before { + content: "\ee6a"; +} +.ri-italic:before { + content: "\ee6b"; +} +.ri-kakao-talk-fill:before { + content: "\ee6c"; +} +.ri-kakao-talk-line:before { + content: "\ee6d"; +} +.ri-key-2-fill:before { + content: "\ee6e"; +} +.ri-key-2-line:before { + content: "\ee6f"; +} +.ri-key-fill:before { + content: "\ee70"; +} +.ri-key-line:before { + content: "\ee71"; +} +.ri-keyboard-box-fill:before { + content: "\ee72"; +} +.ri-keyboard-box-line:before { + content: "\ee73"; +} +.ri-keyboard-fill:before { + content: "\ee74"; +} +.ri-keyboard-line:before { + content: "\ee75"; +} +.ri-keynote-fill:before { + content: "\ee76"; +} +.ri-keynote-line:before { + content: "\ee77"; +} +.ri-knife-blood-fill:before { + content: "\ee78"; +} +.ri-knife-blood-line:before { + content: "\ee79"; +} +.ri-knife-fill:before { + content: "\ee7a"; +} +.ri-knife-line:before { + content: "\ee7b"; +} +.ri-landscape-fill:before { + content: "\ee7c"; +} +.ri-landscape-line:before { + content: "\ee7d"; +} +.ri-layout-2-fill:before { + content: "\ee7e"; +} +.ri-layout-2-line:before { + content: "\ee7f"; +} +.ri-layout-3-fill:before { + content: "\ee80"; +} +.ri-layout-3-line:before { + content: "\ee81"; +} +.ri-layout-4-fill:before { + content: "\ee82"; +} +.ri-layout-4-line:before { + content: "\ee83"; +} +.ri-layout-5-fill:before { + content: "\ee84"; +} +.ri-layout-5-line:before { + content: "\ee85"; +} +.ri-layout-6-fill:before { + content: "\ee86"; +} +.ri-layout-6-line:before { + content: "\ee87"; +} +.ri-layout-bottom-2-fill:before { + content: "\ee88"; +} +.ri-layout-bottom-2-line:before { + content: "\ee89"; +} +.ri-layout-bottom-fill:before { + content: "\ee8a"; +} +.ri-layout-bottom-line:before { + content: "\ee8b"; +} +.ri-layout-column-fill:before { + content: "\ee8c"; +} +.ri-layout-column-line:before { + content: "\ee8d"; +} +.ri-layout-fill:before { + content: "\ee8e"; +} +.ri-layout-grid-fill:before { + content: "\ee8f"; +} +.ri-layout-grid-line:before { + content: "\ee90"; +} +.ri-layout-left-2-fill:before { + content: "\ee91"; +} +.ri-layout-left-2-line:before { + content: "\ee92"; +} +.ri-layout-left-fill:before { + content: "\ee93"; +} +.ri-layout-left-line:before { + content: "\ee94"; +} +.ri-layout-line:before { + content: "\ee95"; +} +.ri-layout-masonry-fill:before { + content: "\ee96"; +} +.ri-layout-masonry-line:before { + content: "\ee97"; +} +.ri-layout-right-2-fill:before { + content: "\ee98"; +} +.ri-layout-right-2-line:before { + content: "\ee99"; +} +.ri-layout-right-fill:before { + content: "\ee9a"; +} +.ri-layout-right-line:before { + content: "\ee9b"; +} +.ri-layout-row-fill:before { + content: "\ee9c"; +} +.ri-layout-row-line:before { + content: "\ee9d"; +} +.ri-layout-top-2-fill:before { + content: "\ee9e"; +} +.ri-layout-top-2-line:before { + content: "\ee9f"; +} +.ri-layout-top-fill:before { + content: "\eea0"; +} +.ri-layout-top-line:before { + content: "\eea1"; +} +.ri-leaf-fill:before { + content: "\eea2"; +} +.ri-leaf-line:before { + content: "\eea3"; +} +.ri-lifebuoy-fill:before { + content: "\eea4"; +} +.ri-lifebuoy-line:before { + content: "\eea5"; +} +.ri-lightbulb-fill:before { + content: "\eea6"; +} +.ri-lightbulb-flash-fill:before { + content: "\eea7"; +} +.ri-lightbulb-flash-line:before { + content: "\eea8"; +} +.ri-lightbulb-line:before { + content: "\eea9"; +} +.ri-line-chart-fill:before { + content: "\eeaa"; +} +.ri-line-chart-line:before { + content: "\eeab"; +} +.ri-line-fill:before { + content: "\eeac"; +} +.ri-line-height:before { + content: "\eead"; +} +.ri-line-line:before { + content: "\eeae"; +} +.ri-link-m:before { + content: "\eeaf"; +} +.ri-link-unlink-m:before { + content: "\eeb0"; +} +.ri-link-unlink:before { + content: "\eeb1"; +} +.ri-link:before { + content: "\eeb2"; +} +.ri-linkedin-box-fill:before { + content: "\eeb3"; +} +.ri-linkedin-box-line:before { + content: "\eeb4"; +} +.ri-linkedin-fill:before { + content: "\eeb5"; +} +.ri-linkedin-line:before { + content: "\eeb6"; +} +.ri-links-fill:before { + content: "\eeb7"; +} +.ri-links-line:before { + content: "\eeb8"; +} +.ri-list-check-2:before { + content: "\eeb9"; +} +.ri-list-check:before { + content: "\eeba"; +} +.ri-list-ordered:before { + content: "\eebb"; +} +.ri-list-settings-fill:before { + content: "\eebc"; +} +.ri-list-settings-line:before { + content: "\eebd"; +} +.ri-list-unordered:before { + content: "\eebe"; +} +.ri-live-fill:before { + content: "\eebf"; +} +.ri-live-line:before { + content: "\eec0"; +} +.ri-loader-2-fill:before { + content: "\eec1"; +} +.ri-loader-2-line:before { + content: "\eec2"; +} +.ri-loader-3-fill:before { + content: "\eec3"; +} +.ri-loader-3-line:before { + content: "\eec4"; +} +.ri-loader-4-fill:before { + content: "\eec5"; +} +.ri-loader-4-line:before { + content: "\eec6"; +} +.ri-loader-5-fill:before { + content: "\eec7"; +} +.ri-loader-5-line:before { + content: "\eec8"; +} +.ri-loader-fill:before { + content: "\eec9"; +} +.ri-loader-line:before { + content: "\eeca"; +} +.ri-lock-2-fill:before { + content: "\eecb"; +} +.ri-lock-2-line:before { + content: "\eecc"; +} +.ri-lock-fill:before { + content: "\eecd"; +} +.ri-lock-line:before { + content: "\eece"; +} +.ri-lock-password-fill:before { + content: "\eecf"; +} +.ri-lock-password-line:before { + content: "\eed0"; +} +.ri-lock-unlock-fill:before { + content: "\eed1"; +} +.ri-lock-unlock-line:before { + content: "\eed2"; +} +.ri-login-box-fill:before { + content: "\eed3"; +} +.ri-login-box-line:before { + content: "\eed4"; +} +.ri-login-circle-fill:before { + content: "\eed5"; +} +.ri-login-circle-line:before { + content: "\eed6"; +} +.ri-logout-box-fill:before { + content: "\eed7"; +} +.ri-logout-box-line:before { + content: "\eed8"; +} +.ri-logout-box-r-fill:before { + content: "\eed9"; +} +.ri-logout-box-r-line:before { + content: "\eeda"; +} +.ri-logout-circle-fill:before { + content: "\eedb"; +} +.ri-logout-circle-line:before { + content: "\eedc"; +} +.ri-logout-circle-r-fill:before { + content: "\eedd"; +} +.ri-logout-circle-r-line:before { + content: "\eede"; +} +.ri-luggage-cart-fill:before { + content: "\eedf"; +} +.ri-luggage-cart-line:before { + content: "\eee0"; +} +.ri-luggage-deposit-fill:before { + content: "\eee1"; +} +.ri-luggage-deposit-line:before { + content: "\eee2"; +} +.ri-lungs-fill:before { + content: "\eee3"; +} +.ri-lungs-line:before { + content: "\eee4"; +} +.ri-mac-fill:before { + content: "\eee5"; +} +.ri-mac-line:before { + content: "\eee6"; +} +.ri-macbook-fill:before { + content: "\eee7"; +} +.ri-macbook-line:before { + content: "\eee8"; +} +.ri-magic-fill:before { + content: "\eee9"; +} +.ri-magic-line:before { + content: "\eeea"; +} +.ri-mail-add-fill:before { + content: "\eeeb"; +} +.ri-mail-add-line:before { + content: "\eeec"; +} +.ri-mail-check-fill:before { + content: "\eeed"; +} +.ri-mail-check-line:before { + content: "\eeee"; +} +.ri-mail-close-fill:before { + content: "\eeef"; +} +.ri-mail-close-line:before { + content: "\eef0"; +} +.ri-mail-download-fill:before { + content: "\eef1"; +} +.ri-mail-download-line:before { + content: "\eef2"; +} +.ri-mail-fill:before { + content: "\eef3"; +} +.ri-mail-forbid-fill:before { + content: "\eef4"; +} +.ri-mail-forbid-line:before { + content: "\eef5"; +} +.ri-mail-line:before { + content: "\eef6"; +} +.ri-mail-lock-fill:before { + content: "\eef7"; +} +.ri-mail-lock-line:before { + content: "\eef8"; +} +.ri-mail-open-fill:before { + content: "\eef9"; +} +.ri-mail-open-line:before { + content: "\eefa"; +} +.ri-mail-send-fill:before { + content: "\eefb"; +} +.ri-mail-send-line:before { + content: "\eefc"; +} +.ri-mail-settings-fill:before { + content: "\eefd"; +} +.ri-mail-settings-line:before { + content: "\eefe"; +} +.ri-mail-star-fill:before { + content: "\eeff"; +} +.ri-mail-star-line:before { + content: "\ef00"; +} +.ri-mail-unread-fill:before { + content: "\ef01"; +} +.ri-mail-unread-line:before { + content: "\ef02"; +} +.ri-mail-volume-fill:before { + content: "\ef03"; +} +.ri-mail-volume-line:before { + content: "\ef04"; +} +.ri-map-2-fill:before { + content: "\ef05"; +} +.ri-map-2-line:before { + content: "\ef06"; +} +.ri-map-fill:before { + content: "\ef07"; +} +.ri-map-line:before { + content: "\ef08"; +} +.ri-map-pin-2-fill:before { + content: "\ef09"; +} +.ri-map-pin-2-line:before { + content: "\ef0a"; +} +.ri-map-pin-3-fill:before { + content: "\ef0b"; +} +.ri-map-pin-3-line:before { + content: "\ef0c"; +} +.ri-map-pin-4-fill:before { + content: "\ef0d"; +} +.ri-map-pin-4-line:before { + content: "\ef0e"; +} +.ri-map-pin-5-fill:before { + content: "\ef0f"; +} +.ri-map-pin-5-line:before { + content: "\ef10"; +} +.ri-map-pin-add-fill:before { + content: "\ef11"; +} +.ri-map-pin-add-line:before { + content: "\ef12"; +} +.ri-map-pin-fill:before { + content: "\ef13"; +} +.ri-map-pin-line:before { + content: "\ef14"; +} +.ri-map-pin-range-fill:before { + content: "\ef15"; +} +.ri-map-pin-range-line:before { + content: "\ef16"; +} +.ri-map-pin-time-fill:before { + content: "\ef17"; +} +.ri-map-pin-time-line:before { + content: "\ef18"; +} +.ri-map-pin-user-fill:before { + content: "\ef19"; +} +.ri-map-pin-user-line:before { + content: "\ef1a"; +} +.ri-mark-pen-fill:before { + content: "\ef1b"; +} +.ri-mark-pen-line:before { + content: "\ef1c"; +} +.ri-markdown-fill:before { + content: "\ef1d"; +} +.ri-markdown-line:before { + content: "\ef1e"; +} +.ri-markup-fill:before { + content: "\ef1f"; +} +.ri-markup-line:before { + content: "\ef20"; +} +.ri-mastercard-fill:before { + content: "\ef21"; +} +.ri-mastercard-line:before { + content: "\ef22"; +} +.ri-mastodon-fill:before { + content: "\ef23"; +} +.ri-mastodon-line:before { + content: "\ef24"; +} +.ri-medal-2-fill:before { + content: "\ef25"; +} +.ri-medal-2-line:before { + content: "\ef26"; +} +.ri-medal-fill:before { + content: "\ef27"; +} +.ri-medal-line:before { + content: "\ef28"; +} +.ri-medicine-bottle-fill:before { + content: "\ef29"; +} +.ri-medicine-bottle-line:before { + content: "\ef2a"; +} +.ri-medium-fill:before { + content: "\ef2b"; +} +.ri-medium-line:before { + content: "\ef2c"; +} +.ri-men-fill:before { + content: "\ef2d"; +} +.ri-men-line:before { + content: "\ef2e"; +} +.ri-mental-health-fill:before { + content: "\ef2f"; +} +.ri-mental-health-line:before { + content: "\ef30"; +} +.ri-menu-2-fill:before { + content: "\ef31"; +} +.ri-menu-2-line:before { + content: "\ef32"; +} +.ri-menu-3-fill:before { + content: "\ef33"; +} +.ri-menu-3-line:before { + content: "\ef34"; +} +.ri-menu-4-fill:before { + content: "\ef35"; +} +.ri-menu-4-line:before { + content: "\ef36"; +} +.ri-menu-5-fill:before { + content: "\ef37"; +} +.ri-menu-5-line:before { + content: "\ef38"; +} +.ri-menu-add-fill:before { + content: "\ef39"; +} +.ri-menu-add-line:before { + content: "\ef3a"; +} +.ri-menu-fill:before { + content: "\ef3b"; +} +.ri-menu-fold-fill:before { + content: "\ef3c"; +} +.ri-menu-fold-line:before { + content: "\ef3d"; +} +.ri-menu-line:before { + content: "\ef3e"; +} +.ri-menu-unfold-fill:before { + content: "\ef3f"; +} +.ri-menu-unfold-line:before { + content: "\ef40"; +} +.ri-merge-cells-horizontal:before { + content: "\ef41"; +} +.ri-merge-cells-vertical:before { + content: "\ef42"; +} +.ri-message-2-fill:before { + content: "\ef43"; +} +.ri-message-2-line:before { + content: "\ef44"; +} +.ri-message-3-fill:before { + content: "\ef45"; +} +.ri-message-3-line:before { + content: "\ef46"; +} +.ri-message-fill:before { + content: "\ef47"; +} +.ri-message-line:before { + content: "\ef48"; +} +.ri-messenger-fill:before { + content: "\ef49"; +} +.ri-messenger-line:before { + content: "\ef4a"; +} +.ri-meteor-fill:before { + content: "\ef4b"; +} +.ri-meteor-line:before { + content: "\ef4c"; +} +.ri-mic-2-fill:before { + content: "\ef4d"; +} +.ri-mic-2-line:before { + content: "\ef4e"; +} +.ri-mic-fill:before { + content: "\ef4f"; +} +.ri-mic-line:before { + content: "\ef50"; +} +.ri-mic-off-fill:before { + content: "\ef51"; +} +.ri-mic-off-line:before { + content: "\ef52"; +} +.ri-mickey-fill:before { + content: "\ef53"; +} +.ri-mickey-line:before { + content: "\ef54"; +} +.ri-microscope-fill:before { + content: "\ef55"; +} +.ri-microscope-line:before { + content: "\ef56"; +} +.ri-microsoft-fill:before { + content: "\ef57"; +} +.ri-microsoft-line:before { + content: "\ef58"; +} +.ri-mind-map:before { + content: "\ef59"; +} +.ri-mini-program-fill:before { + content: "\ef5a"; +} +.ri-mini-program-line:before { + content: "\ef5b"; +} +.ri-mist-fill:before { + content: "\ef5c"; +} +.ri-mist-line:before { + content: "\ef5d"; +} +.ri-money-cny-box-fill:before { + content: "\ef5e"; +} +.ri-money-cny-box-line:before { + content: "\ef5f"; +} +.ri-money-cny-circle-fill:before { + content: "\ef60"; +} +.ri-money-cny-circle-line:before { + content: "\ef61"; +} +.ri-money-dollar-box-fill:before { + content: "\ef62"; +} +.ri-money-dollar-box-line:before { + content: "\ef63"; +} +.ri-money-dollar-circle-fill:before { + content: "\ef64"; +} +.ri-money-dollar-circle-line:before { + content: "\ef65"; +} +.ri-money-euro-box-fill:before { + content: "\ef66"; +} +.ri-money-euro-box-line:before { + content: "\ef67"; +} +.ri-money-euro-circle-fill:before { + content: "\ef68"; +} +.ri-money-euro-circle-line:before { + content: "\ef69"; +} +.ri-money-pound-box-fill:before { + content: "\ef6a"; +} +.ri-money-pound-box-line:before { + content: "\ef6b"; +} +.ri-money-pound-circle-fill:before { + content: "\ef6c"; +} +.ri-money-pound-circle-line:before { + content: "\ef6d"; +} +.ri-moon-clear-fill:before { + content: "\ef6e"; +} +.ri-moon-clear-line:before { + content: "\ef6f"; +} +.ri-moon-cloudy-fill:before { + content: "\ef70"; +} +.ri-moon-cloudy-line:before { + content: "\ef71"; +} +.ri-moon-fill:before { + content: "\ef72"; +} +.ri-moon-foggy-fill:before { + content: "\ef73"; +} +.ri-moon-foggy-line:before { + content: "\ef74"; +} +.ri-moon-line:before { + content: "\ef75"; +} +.ri-more-2-fill:before { + content: "\ef76"; +} +.ri-more-2-line:before { + content: "\ef77"; +} +.ri-more-fill:before { + content: "\ef78"; +} +.ri-more-line:before { + content: "\ef79"; +} +.ri-motorbike-fill:before { + content: "\ef7a"; +} +.ri-motorbike-line:before { + content: "\ef7b"; +} +.ri-mouse-fill:before { + content: "\ef7c"; +} +.ri-mouse-line:before { + content: "\ef7d"; +} +.ri-movie-2-fill:before { + content: "\ef7e"; +} +.ri-movie-2-line:before { + content: "\ef7f"; +} +.ri-movie-fill:before { + content: "\ef80"; +} +.ri-movie-line:before { + content: "\ef81"; +} +.ri-music-2-fill:before { + content: "\ef82"; +} +.ri-music-2-line:before { + content: "\ef83"; +} +.ri-music-fill:before { + content: "\ef84"; +} +.ri-music-line:before { + content: "\ef85"; +} +.ri-mv-fill:before { + content: "\ef86"; +} +.ri-mv-line:before { + content: "\ef87"; +} +.ri-navigation-fill:before { + content: "\ef88"; +} +.ri-navigation-line:before { + content: "\ef89"; +} +.ri-netease-cloud-music-fill:before { + content: "\ef8a"; +} +.ri-netease-cloud-music-line:before { + content: "\ef8b"; +} +.ri-netflix-fill:before { + content: "\ef8c"; +} +.ri-netflix-line:before { + content: "\ef8d"; +} +.ri-newspaper-fill:before { + content: "\ef8e"; +} +.ri-newspaper-line:before { + content: "\ef8f"; +} +.ri-node-tree:before { + content: "\ef90"; +} +.ri-notification-2-fill:before { + content: "\ef91"; +} +.ri-notification-2-line:before { + content: "\ef92"; +} +.ri-notification-3-fill:before { + content: "\ef93"; +} +.ri-notification-3-line:before { + content: "\ef94"; +} +.ri-notification-4-fill:before { + content: "\ef95"; +} +.ri-notification-4-line:before { + content: "\ef96"; +} +.ri-notification-badge-fill:before { + content: "\ef97"; +} +.ri-notification-badge-line:before { + content: "\ef98"; +} +.ri-notification-fill:before { + content: "\ef99"; +} +.ri-notification-line:before { + content: "\ef9a"; +} +.ri-notification-off-fill:before { + content: "\ef9b"; +} +.ri-notification-off-line:before { + content: "\ef9c"; +} +.ri-npmjs-fill:before { + content: "\ef9d"; +} +.ri-npmjs-line:before { + content: "\ef9e"; +} +.ri-number-0:before { + content: "\ef9f"; +} +.ri-number-1:before { + content: "\efa0"; +} +.ri-number-2:before { + content: "\efa1"; +} +.ri-number-3:before { + content: "\efa2"; +} +.ri-number-4:before { + content: "\efa3"; +} +.ri-number-5:before { + content: "\efa4"; +} +.ri-number-6:before { + content: "\efa5"; +} +.ri-number-7:before { + content: "\efa6"; +} +.ri-number-8:before { + content: "\efa7"; +} +.ri-number-9:before { + content: "\efa8"; +} +.ri-numbers-fill:before { + content: "\efa9"; +} +.ri-numbers-line:before { + content: "\efaa"; +} +.ri-nurse-fill:before { + content: "\efab"; +} +.ri-nurse-line:before { + content: "\efac"; +} +.ri-oil-fill:before { + content: "\efad"; +} +.ri-oil-line:before { + content: "\efae"; +} +.ri-omega:before { + content: "\efaf"; +} +.ri-open-arm-fill:before { + content: "\efb0"; +} +.ri-open-arm-line:before { + content: "\efb1"; +} +.ri-open-source-fill:before { + content: "\efb2"; +} +.ri-open-source-line:before { + content: "\efb3"; +} +.ri-opera-fill:before { + content: "\efb4"; +} +.ri-opera-line:before { + content: "\efb5"; +} +.ri-order-play-fill:before { + content: "\efb6"; +} +.ri-order-play-line:before { + content: "\efb7"; +} +.ri-organization-chart:before { + content: "\efb8"; +} +.ri-outlet-2-fill:before { + content: "\efb9"; +} +.ri-outlet-2-line:before { + content: "\efba"; +} +.ri-outlet-fill:before { + content: "\efbb"; +} +.ri-outlet-line:before { + content: "\efbc"; +} +.ri-page-separator:before { + content: "\efbd"; +} +.ri-pages-fill:before { + content: "\efbe"; +} +.ri-pages-line:before { + content: "\efbf"; +} +.ri-paint-brush-fill:before { + content: "\efc0"; +} +.ri-paint-brush-line:before { + content: "\efc1"; +} +.ri-paint-fill:before { + content: "\efc2"; +} +.ri-paint-line:before { + content: "\efc3"; +} +.ri-palette-fill:before { + content: "\efc4"; +} +.ri-palette-line:before { + content: "\efc5"; +} +.ri-pantone-fill:before { + content: "\efc6"; +} +.ri-pantone-line:before { + content: "\efc7"; +} +.ri-paragraph:before { + content: "\efc8"; +} +.ri-parent-fill:before { + content: "\efc9"; +} +.ri-parent-line:before { + content: "\efca"; +} +.ri-parentheses-fill:before { + content: "\efcb"; +} +.ri-parentheses-line:before { + content: "\efcc"; +} +.ri-parking-box-fill:before { + content: "\efcd"; +} +.ri-parking-box-line:before { + content: "\efce"; +} +.ri-parking-fill:before { + content: "\efcf"; +} +.ri-parking-line:before { + content: "\efd0"; +} +.ri-passport-fill:before { + content: "\efd1"; +} +.ri-passport-line:before { + content: "\efd2"; +} +.ri-patreon-fill:before { + content: "\efd3"; +} +.ri-patreon-line:before { + content: "\efd4"; +} +.ri-pause-circle-fill:before { + content: "\efd5"; +} +.ri-pause-circle-line:before { + content: "\efd6"; +} +.ri-pause-fill:before { + content: "\efd7"; +} +.ri-pause-line:before { + content: "\efd8"; +} +.ri-pause-mini-fill:before { + content: "\efd9"; +} +.ri-pause-mini-line:before { + content: "\efda"; +} +.ri-paypal-fill:before { + content: "\efdb"; +} +.ri-paypal-line:before { + content: "\efdc"; +} +.ri-pen-nib-fill:before { + content: "\efdd"; +} +.ri-pen-nib-line:before { + content: "\efde"; +} +.ri-pencil-fill:before { + content: "\efdf"; +} +.ri-pencil-line:before { + content: "\efe0"; +} +.ri-pencil-ruler-2-fill:before { + content: "\efe1"; +} +.ri-pencil-ruler-2-line:before { + content: "\efe2"; +} +.ri-pencil-ruler-fill:before { + content: "\efe3"; +} +.ri-pencil-ruler-line:before { + content: "\efe4"; +} +.ri-percent-fill:before { + content: "\efe5"; +} +.ri-percent-line:before { + content: "\efe6"; +} +.ri-phone-camera-fill:before { + content: "\efe7"; +} +.ri-phone-camera-line:before { + content: "\efe8"; +} +.ri-phone-fill:before { + content: "\efe9"; +} +.ri-phone-find-fill:before { + content: "\efea"; +} +.ri-phone-find-line:before { + content: "\efeb"; +} +.ri-phone-line:before { + content: "\efec"; +} +.ri-phone-lock-fill:before { + content: "\efed"; +} +.ri-phone-lock-line:before { + content: "\efee"; +} +.ri-picture-in-picture-2-fill:before { + content: "\efef"; +} +.ri-picture-in-picture-2-line:before { + content: "\eff0"; +} +.ri-picture-in-picture-exit-fill:before { + content: "\eff1"; +} +.ri-picture-in-picture-exit-line:before { + content: "\eff2"; +} +.ri-picture-in-picture-fill:before { + content: "\eff3"; +} +.ri-picture-in-picture-line:before { + content: "\eff4"; +} +.ri-pie-chart-2-fill:before { + content: "\eff5"; +} +.ri-pie-chart-2-line:before { + content: "\eff6"; +} +.ri-pie-chart-box-fill:before { + content: "\eff7"; +} +.ri-pie-chart-box-line:before { + content: "\eff8"; +} +.ri-pie-chart-fill:before { + content: "\eff9"; +} +.ri-pie-chart-line:before { + content: "\effa"; +} +.ri-pin-distance-fill:before { + content: "\effb"; +} +.ri-pin-distance-line:before { + content: "\effc"; +} +.ri-ping-pong-fill:before { + content: "\effd"; +} +.ri-ping-pong-line:before { + content: "\effe"; +} +.ri-pinterest-fill:before { + content: "\efff"; +} +.ri-pinterest-line:before { + content: "\f000"; +} +.ri-pinyin-input:before { + content: "\f001"; +} +.ri-pixelfed-fill:before { + content: "\f002"; +} +.ri-pixelfed-line:before { + content: "\f003"; +} +.ri-plane-fill:before { + content: "\f004"; +} +.ri-plane-line:before { + content: "\f005"; +} +.ri-plant-fill:before { + content: "\f006"; +} +.ri-plant-line:before { + content: "\f007"; +} +.ri-play-circle-fill:before { + content: "\f008"; +} +.ri-play-circle-line:before { + content: "\f009"; +} +.ri-play-fill:before { + content: "\f00a"; +} +.ri-play-line:before { + content: "\f00b"; +} +.ri-play-list-2-fill:before { + content: "\f00c"; +} +.ri-play-list-2-line:before { + content: "\f00d"; +} +.ri-play-list-add-fill:before { + content: "\f00e"; +} +.ri-play-list-add-line:before { + content: "\f00f"; +} +.ri-play-list-fill:before { + content: "\f010"; +} +.ri-play-list-line:before { + content: "\f011"; +} +.ri-play-mini-fill:before { + content: "\f012"; +} +.ri-play-mini-line:before { + content: "\f013"; +} +.ri-playstation-fill:before { + content: "\f014"; +} +.ri-playstation-line:before { + content: "\f015"; +} +.ri-plug-2-fill:before { + content: "\f016"; +} +.ri-plug-2-line:before { + content: "\f017"; +} +.ri-plug-fill:before { + content: "\f018"; +} +.ri-plug-line:before { + content: "\f019"; +} +.ri-polaroid-2-fill:before { + content: "\f01a"; +} +.ri-polaroid-2-line:before { + content: "\f01b"; +} +.ri-polaroid-fill:before { + content: "\f01c"; +} +.ri-polaroid-line:before { + content: "\f01d"; +} +.ri-police-car-fill:before { + content: "\f01e"; +} +.ri-police-car-line:before { + content: "\f01f"; +} +.ri-price-tag-2-fill:before { + content: "\f020"; +} +.ri-price-tag-2-line:before { + content: "\f021"; +} +.ri-price-tag-3-fill:before { + content: "\f022"; +} +.ri-price-tag-3-line:before { + content: "\f023"; +} +.ri-price-tag-fill:before { + content: "\f024"; +} +.ri-price-tag-line:before { + content: "\f025"; +} +.ri-printer-cloud-fill:before { + content: "\f026"; +} +.ri-printer-cloud-line:before { + content: "\f027"; +} +.ri-printer-fill:before { + content: "\f028"; +} +.ri-printer-line:before { + content: "\f029"; +} +.ri-product-hunt-fill:before { + content: "\f02a"; +} +.ri-product-hunt-line:before { + content: "\f02b"; +} +.ri-profile-fill:before { + content: "\f02c"; +} +.ri-profile-line:before { + content: "\f02d"; +} +.ri-projector-2-fill:before { + content: "\f02e"; +} +.ri-projector-2-line:before { + content: "\f02f"; +} +.ri-projector-fill:before { + content: "\f030"; +} +.ri-projector-line:before { + content: "\f031"; +} +.ri-psychotherapy-fill:before { + content: "\f032"; +} +.ri-psychotherapy-line:before { + content: "\f033"; +} +.ri-pulse-fill:before { + content: "\f034"; +} +.ri-pulse-line:before { + content: "\f035"; +} +.ri-pushpin-2-fill:before { + content: "\f036"; +} +.ri-pushpin-2-line:before { + content: "\f037"; +} +.ri-pushpin-fill:before { + content: "\f038"; +} +.ri-pushpin-line:before { + content: "\f039"; +} +.ri-qq-fill:before { + content: "\f03a"; +} +.ri-qq-line:before { + content: "\f03b"; +} +.ri-qr-code-fill:before { + content: "\f03c"; +} +.ri-qr-code-line:before { + content: "\f03d"; +} +.ri-qr-scan-2-fill:before { + content: "\f03e"; +} +.ri-qr-scan-2-line:before { + content: "\f03f"; +} +.ri-qr-scan-fill:before { + content: "\f040"; +} +.ri-qr-scan-line:before { + content: "\f041"; +} +.ri-question-answer-fill:before { + content: "\f042"; +} +.ri-question-answer-line:before { + content: "\f043"; +} +.ri-question-fill:before { + content: "\f044"; +} +.ri-question-line:before { + content: "\f045"; +} +.ri-question-mark:before { + content: "\f046"; +} +.ri-questionnaire-fill:before { + content: "\f047"; +} +.ri-questionnaire-line:before { + content: "\f048"; +} +.ri-quill-pen-fill:before { + content: "\f049"; +} +.ri-quill-pen-line:before { + content: "\f04a"; +} +.ri-radar-fill:before { + content: "\f04b"; +} +.ri-radar-line:before { + content: "\f04c"; +} +.ri-radio-2-fill:before { + content: "\f04d"; +} +.ri-radio-2-line:before { + content: "\f04e"; +} +.ri-radio-button-fill:before { + content: "\f04f"; +} +.ri-radio-button-line:before { + content: "\f050"; +} +.ri-radio-fill:before { + content: "\f051"; +} +.ri-radio-line:before { + content: "\f052"; +} +.ri-rainbow-fill:before { + content: "\f053"; +} +.ri-rainbow-line:before { + content: "\f054"; +} +.ri-rainy-fill:before { + content: "\f055"; +} +.ri-rainy-line:before { + content: "\f056"; +} +.ri-reactjs-fill:before { + content: "\f057"; +} +.ri-reactjs-line:before { + content: "\f058"; +} +.ri-record-circle-fill:before { + content: "\f059"; +} +.ri-record-circle-line:before { + content: "\f05a"; +} +.ri-record-mail-fill:before { + content: "\f05b"; +} +.ri-record-mail-line:before { + content: "\f05c"; +} +.ri-recycle-fill:before { + content: "\f05d"; +} +.ri-recycle-line:before { + content: "\f05e"; +} +.ri-red-packet-fill:before { + content: "\f05f"; +} +.ri-red-packet-line:before { + content: "\f060"; +} +.ri-reddit-fill:before { + content: "\f061"; +} +.ri-reddit-line:before { + content: "\f062"; +} +.ri-refresh-fill:before { + content: "\f063"; +} +.ri-refresh-line:before { + content: "\f064"; +} +.ri-refund-2-fill:before { + content: "\f065"; +} +.ri-refund-2-line:before { + content: "\f066"; +} +.ri-refund-fill:before { + content: "\f067"; +} +.ri-refund-line:before { + content: "\f068"; +} +.ri-registered-fill:before { + content: "\f069"; +} +.ri-registered-line:before { + content: "\f06a"; +} +.ri-remixicon-fill:before { + content: "\f06b"; +} +.ri-remixicon-line:before { + content: "\f06c"; +} +.ri-remote-control-2-fill:before { + content: "\f06d"; +} +.ri-remote-control-2-line:before { + content: "\f06e"; +} +.ri-remote-control-fill:before { + content: "\f06f"; +} +.ri-remote-control-line:before { + content: "\f070"; +} +.ri-repeat-2-fill:before { + content: "\f071"; +} +.ri-repeat-2-line:before { + content: "\f072"; +} +.ri-repeat-fill:before { + content: "\f073"; +} +.ri-repeat-line:before { + content: "\f074"; +} +.ri-repeat-one-fill:before { + content: "\f075"; +} +.ri-repeat-one-line:before { + content: "\f076"; +} +.ri-reply-all-fill:before { + content: "\f077"; +} +.ri-reply-all-line:before { + content: "\f078"; +} +.ri-reply-fill:before { + content: "\f079"; +} +.ri-reply-line:before { + content: "\f07a"; +} +.ri-reserved-fill:before { + content: "\f07b"; +} +.ri-reserved-line:before { + content: "\f07c"; +} +.ri-rest-time-fill:before { + content: "\f07d"; +} +.ri-rest-time-line:before { + content: "\f07e"; +} +.ri-restart-fill:before { + content: "\f07f"; +} +.ri-restart-line:before { + content: "\f080"; +} +.ri-restaurant-2-fill:before { + content: "\f081"; +} +.ri-restaurant-2-line:before { + content: "\f082"; +} +.ri-restaurant-fill:before { + content: "\f083"; +} +.ri-restaurant-line:before { + content: "\f084"; +} +.ri-rewind-fill:before { + content: "\f085"; +} +.ri-rewind-line:before { + content: "\f086"; +} +.ri-rewind-mini-fill:before { + content: "\f087"; +} +.ri-rewind-mini-line:before { + content: "\f088"; +} +.ri-rhythm-fill:before { + content: "\f089"; +} +.ri-rhythm-line:before { + content: "\f08a"; +} +.ri-riding-fill:before { + content: "\f08b"; +} +.ri-riding-line:before { + content: "\f08c"; +} +.ri-road-map-fill:before { + content: "\f08d"; +} +.ri-road-map-line:before { + content: "\f08e"; +} +.ri-roadster-fill:before { + content: "\f08f"; +} +.ri-roadster-line:before { + content: "\f090"; +} +.ri-robot-fill:before { + content: "\f091"; +} +.ri-robot-line:before { + content: "\f092"; +} +.ri-rocket-2-fill:before { + content: "\f093"; +} +.ri-rocket-2-line:before { + content: "\f094"; +} +.ri-rocket-fill:before { + content: "\f095"; +} +.ri-rocket-line:before { + content: "\f096"; +} +.ri-rotate-lock-fill:before { + content: "\f097"; +} +.ri-rotate-lock-line:before { + content: "\f098"; +} +.ri-rounded-corner:before { + content: "\f099"; +} +.ri-route-fill:before { + content: "\f09a"; +} +.ri-route-line:before { + content: "\f09b"; +} +.ri-router-fill:before { + content: "\f09c"; +} +.ri-router-line:before { + content: "\f09d"; +} +.ri-rss-fill:before { + content: "\f09e"; +} +.ri-rss-line:before { + content: "\f09f"; +} +.ri-ruler-2-fill:before { + content: "\f0a0"; +} +.ri-ruler-2-line:before { + content: "\f0a1"; +} +.ri-ruler-fill:before { + content: "\f0a2"; +} +.ri-ruler-line:before { + content: "\f0a3"; +} +.ri-run-fill:before { + content: "\f0a4"; +} +.ri-run-line:before { + content: "\f0a5"; +} +.ri-safari-fill:before { + content: "\f0a6"; +} +.ri-safari-line:before { + content: "\f0a7"; +} +.ri-safe-2-fill:before { + content: "\f0a8"; +} +.ri-safe-2-line:before { + content: "\f0a9"; +} +.ri-safe-fill:before { + content: "\f0aa"; +} +.ri-safe-line:before { + content: "\f0ab"; +} +.ri-sailboat-fill:before { + content: "\f0ac"; +} +.ri-sailboat-line:before { + content: "\f0ad"; +} +.ri-save-2-fill:before { + content: "\f0ae"; +} +.ri-save-2-line:before { + content: "\f0af"; +} +.ri-save-3-fill:before { + content: "\f0b0"; +} +.ri-save-3-line:before { + content: "\f0b1"; +} +.ri-save-fill:before { + content: "\f0b2"; +} +.ri-save-line:before { + content: "\f0b3"; +} +.ri-scales-2-fill:before { + content: "\f0b4"; +} +.ri-scales-2-line:before { + content: "\f0b5"; +} +.ri-scales-3-fill:before { + content: "\f0b6"; +} +.ri-scales-3-line:before { + content: "\f0b7"; +} +.ri-scales-fill:before { + content: "\f0b8"; +} +.ri-scales-line:before { + content: "\f0b9"; +} +.ri-scan-2-fill:before { + content: "\f0ba"; +} +.ri-scan-2-line:before { + content: "\f0bb"; +} +.ri-scan-fill:before { + content: "\f0bc"; +} +.ri-scan-line:before { + content: "\f0bd"; +} +.ri-scissors-2-fill:before { + content: "\f0be"; +} +.ri-scissors-2-line:before { + content: "\f0bf"; +} +.ri-scissors-cut-fill:before { + content: "\f0c0"; +} +.ri-scissors-cut-line:before { + content: "\f0c1"; +} +.ri-scissors-fill:before { + content: "\f0c2"; +} +.ri-scissors-line:before { + content: "\f0c3"; +} +.ri-screenshot-2-fill:before { + content: "\f0c4"; +} +.ri-screenshot-2-line:before { + content: "\f0c5"; +} +.ri-screenshot-fill:before { + content: "\f0c6"; +} +.ri-screenshot-line:before { + content: "\f0c7"; +} +.ri-sd-card-fill:before { + content: "\f0c8"; +} +.ri-sd-card-line:before { + content: "\f0c9"; +} +.ri-sd-card-mini-fill:before { + content: "\f0ca"; +} +.ri-sd-card-mini-line:before { + content: "\f0cb"; +} +.ri-search-2-fill:before { + content: "\f0cc"; +} +.ri-search-2-line:before { + content: "\f0cd"; +} +.ri-search-eye-fill:before { + content: "\f0ce"; +} +.ri-search-eye-line:before { + content: "\f0cf"; +} +.ri-search-fill:before { + content: "\f0d0"; +} +.ri-search-line:before { + content: "\f0d1"; +} +.ri-secure-payment-fill:before { + content: "\f0d2"; +} +.ri-secure-payment-line:before { + content: "\f0d3"; +} +.ri-seedling-fill:before { + content: "\f0d4"; +} +.ri-seedling-line:before { + content: "\f0d5"; +} +.ri-send-backward:before { + content: "\f0d6"; +} +.ri-send-plane-2-fill:before { + content: "\f0d7"; +} +.ri-send-plane-2-line:before { + content: "\f0d8"; +} +.ri-send-plane-fill:before { + content: "\f0d9"; +} +.ri-send-plane-line:before { + content: "\f0da"; +} +.ri-send-to-back:before { + content: "\f0db"; +} +.ri-sensor-fill:before { + content: "\f0dc"; +} +.ri-sensor-line:before { + content: "\f0dd"; +} +.ri-separator:before { + content: "\f0de"; +} +.ri-server-fill:before { + content: "\f0df"; +} +.ri-server-line:before { + content: "\f0e0"; +} +.ri-service-fill:before { + content: "\f0e1"; +} +.ri-service-line:before { + content: "\f0e2"; +} +.ri-settings-2-fill:before { + content: "\f0e3"; +} +.ri-settings-2-line:before { + content: "\f0e4"; +} +.ri-settings-3-fill:before { + content: "\f0e5"; +} +.ri-settings-3-line:before { + content: "\f0e6"; +} +.ri-settings-4-fill:before { + content: "\f0e7"; +} +.ri-settings-4-line:before { + content: "\f0e8"; +} +.ri-settings-5-fill:before { + content: "\f0e9"; +} +.ri-settings-5-line:before { + content: "\f0ea"; +} +.ri-settings-6-fill:before { + content: "\f0eb"; +} +.ri-settings-6-line:before { + content: "\f0ec"; +} +.ri-settings-fill:before { + content: "\f0ed"; +} +.ri-settings-line:before { + content: "\f0ee"; +} +.ri-shape-2-fill:before { + content: "\f0ef"; +} +.ri-shape-2-line:before { + content: "\f0f0"; +} +.ri-shape-fill:before { + content: "\f0f1"; +} +.ri-shape-line:before { + content: "\f0f2"; +} +.ri-share-box-fill:before { + content: "\f0f3"; +} +.ri-share-box-line:before { + content: "\f0f4"; +} +.ri-share-circle-fill:before { + content: "\f0f5"; +} +.ri-share-circle-line:before { + content: "\f0f6"; +} +.ri-share-fill:before { + content: "\f0f7"; +} +.ri-share-forward-2-fill:before { + content: "\f0f8"; +} +.ri-share-forward-2-line:before { + content: "\f0f9"; +} +.ri-share-forward-box-fill:before { + content: "\f0fa"; +} +.ri-share-forward-box-line:before { + content: "\f0fb"; +} +.ri-share-forward-fill:before { + content: "\f0fc"; +} +.ri-share-forward-line:before { + content: "\f0fd"; +} +.ri-share-line:before { + content: "\f0fe"; +} +.ri-shield-check-fill:before { + content: "\f0ff"; +} +.ri-shield-check-line:before { + content: "\f100"; +} +.ri-shield-cross-fill:before { + content: "\f101"; +} +.ri-shield-cross-line:before { + content: "\f102"; +} +.ri-shield-fill:before { + content: "\f103"; +} +.ri-shield-flash-fill:before { + content: "\f104"; +} +.ri-shield-flash-line:before { + content: "\f105"; +} +.ri-shield-keyhole-fill:before { + content: "\f106"; +} +.ri-shield-keyhole-line:before { + content: "\f107"; +} +.ri-shield-line:before { + content: "\f108"; +} +.ri-shield-star-fill:before { + content: "\f109"; +} +.ri-shield-star-line:before { + content: "\f10a"; +} +.ri-shield-user-fill:before { + content: "\f10b"; +} +.ri-shield-user-line:before { + content: "\f10c"; +} +.ri-ship-2-fill:before { + content: "\f10d"; +} +.ri-ship-2-line:before { + content: "\f10e"; +} +.ri-ship-fill:before { + content: "\f10f"; +} +.ri-ship-line:before { + content: "\f110"; +} +.ri-shirt-fill:before { + content: "\f111"; +} +.ri-shirt-line:before { + content: "\f112"; +} +.ri-shopping-bag-2-fill:before { + content: "\f113"; +} +.ri-shopping-bag-2-line:before { + content: "\f114"; +} +.ri-shopping-bag-3-fill:before { + content: "\f115"; +} +.ri-shopping-bag-3-line:before { + content: "\f116"; +} +.ri-shopping-bag-fill:before { + content: "\f117"; +} +.ri-shopping-bag-line:before { + content: "\f118"; +} +.ri-shopping-basket-2-fill:before { + content: "\f119"; +} +.ri-shopping-basket-2-line:before { + content: "\f11a"; +} +.ri-shopping-basket-fill:before { + content: "\f11b"; +} +.ri-shopping-basket-line:before { + content: "\f11c"; +} +.ri-shopping-cart-2-fill:before { + content: "\f11d"; +} +.ri-shopping-cart-2-line:before { + content: "\f11e"; +} +.ri-shopping-cart-fill:before { + content: "\f11f"; +} +.ri-shopping-cart-line:before { + content: "\f120"; +} +.ri-showers-fill:before { + content: "\f121"; +} +.ri-showers-line:before { + content: "\f122"; +} +.ri-shuffle-fill:before { + content: "\f123"; +} +.ri-shuffle-line:before { + content: "\f124"; +} +.ri-shut-down-fill:before { + content: "\f125"; +} +.ri-shut-down-line:before { + content: "\f126"; +} +.ri-side-bar-fill:before { + content: "\f127"; +} +.ri-side-bar-line:before { + content: "\f128"; +} +.ri-signal-tower-fill:before { + content: "\f129"; +} +.ri-signal-tower-line:before { + content: "\f12a"; +} +.ri-signal-wifi-1-fill:before { + content: "\f12b"; +} +.ri-signal-wifi-1-line:before { + content: "\f12c"; +} +.ri-signal-wifi-2-fill:before { + content: "\f12d"; +} +.ri-signal-wifi-2-line:before { + content: "\f12e"; +} +.ri-signal-wifi-3-fill:before { + content: "\f12f"; +} +.ri-signal-wifi-3-line:before { + content: "\f130"; +} +.ri-signal-wifi-error-fill:before { + content: "\f131"; +} +.ri-signal-wifi-error-line:before { + content: "\f132"; +} +.ri-signal-wifi-fill:before { + content: "\f133"; +} +.ri-signal-wifi-line:before { + content: "\f134"; +} +.ri-signal-wifi-off-fill:before { + content: "\f135"; +} +.ri-signal-wifi-off-line:before { + content: "\f136"; +} +.ri-sim-card-2-fill:before { + content: "\f137"; +} +.ri-sim-card-2-line:before { + content: "\f138"; +} +.ri-sim-card-fill:before { + content: "\f139"; +} +.ri-sim-card-line:before { + content: "\f13a"; +} +.ri-single-quotes-l:before { + content: "\f13b"; +} +.ri-single-quotes-r:before { + content: "\f13c"; +} +.ri-sip-fill:before { + content: "\f13d"; +} +.ri-sip-line:before { + content: "\f13e"; +} +.ri-skip-back-fill:before { + content: "\f13f"; +} +.ri-skip-back-line:before { + content: "\f140"; +} +.ri-skip-back-mini-fill:before { + content: "\f141"; +} +.ri-skip-back-mini-line:before { + content: "\f142"; +} +.ri-skip-forward-fill:before { + content: "\f143"; +} +.ri-skip-forward-line:before { + content: "\f144"; +} +.ri-skip-forward-mini-fill:before { + content: "\f145"; +} +.ri-skip-forward-mini-line:before { + content: "\f146"; +} +.ri-skull-2-fill:before { + content: "\f147"; +} +.ri-skull-2-line:before { + content: "\f148"; +} +.ri-skull-fill:before { + content: "\f149"; +} +.ri-skull-line:before { + content: "\f14a"; +} +.ri-skype-fill:before { + content: "\f14b"; +} +.ri-skype-line:before { + content: "\f14c"; +} +.ri-slack-fill:before { + content: "\f14d"; +} +.ri-slack-line:before { + content: "\f14e"; +} +.ri-slice-fill:before { + content: "\f14f"; +} +.ri-slice-line:before { + content: "\f150"; +} +.ri-slideshow-2-fill:before { + content: "\f151"; +} +.ri-slideshow-2-line:before { + content: "\f152"; +} +.ri-slideshow-3-fill:before { + content: "\f153"; +} +.ri-slideshow-3-line:before { + content: "\f154"; +} +.ri-slideshow-4-fill:before { + content: "\f155"; +} +.ri-slideshow-4-line:before { + content: "\f156"; +} +.ri-slideshow-fill:before { + content: "\f157"; +} +.ri-slideshow-line:before { + content: "\f158"; +} +.ri-smartphone-fill:before { + content: "\f159"; +} +.ri-smartphone-line:before { + content: "\f15a"; +} +.ri-snapchat-fill:before { + content: "\f15b"; +} +.ri-snapchat-line:before { + content: "\f15c"; +} +.ri-snowy-fill:before { + content: "\f15d"; +} +.ri-snowy-line:before { + content: "\f15e"; +} +.ri-sort-asc:before { + content: "\f15f"; +} +.ri-sort-desc:before { + content: "\f160"; +} +.ri-sound-module-fill:before { + content: "\f161"; +} +.ri-sound-module-line:before { + content: "\f162"; +} +.ri-soundcloud-fill:before { + content: "\f163"; +} +.ri-soundcloud-line:before { + content: "\f164"; +} +.ri-space-ship-fill:before { + content: "\f165"; +} +.ri-space-ship-line:before { + content: "\f166"; +} +.ri-space:before { + content: "\f167"; +} +.ri-spam-2-fill:before { + content: "\f168"; +} +.ri-spam-2-line:before { + content: "\f169"; +} +.ri-spam-3-fill:before { + content: "\f16a"; +} +.ri-spam-3-line:before { + content: "\f16b"; +} +.ri-spam-fill:before { + content: "\f16c"; +} +.ri-spam-line:before { + content: "\f16d"; +} +.ri-speaker-2-fill:before { + content: "\f16e"; +} +.ri-speaker-2-line:before { + content: "\f16f"; +} +.ri-speaker-3-fill:before { + content: "\f170"; +} +.ri-speaker-3-line:before { + content: "\f171"; +} +.ri-speaker-fill:before { + content: "\f172"; +} +.ri-speaker-line:before { + content: "\f173"; +} +.ri-spectrum-fill:before { + content: "\f174"; +} +.ri-spectrum-line:before { + content: "\f175"; +} +.ri-speed-fill:before { + content: "\f176"; +} +.ri-speed-line:before { + content: "\f177"; +} +.ri-speed-mini-fill:before { + content: "\f178"; +} +.ri-speed-mini-line:before { + content: "\f179"; +} +.ri-split-cells-horizontal:before { + content: "\f17a"; +} +.ri-split-cells-vertical:before { + content: "\f17b"; +} +.ri-spotify-fill:before { + content: "\f17c"; +} +.ri-spotify-line:before { + content: "\f17d"; +} +.ri-spy-fill:before { + content: "\f17e"; +} +.ri-spy-line:before { + content: "\f17f"; +} +.ri-stack-fill:before { + content: "\f180"; +} +.ri-stack-line:before { + content: "\f181"; +} +.ri-stack-overflow-fill:before { + content: "\f182"; +} +.ri-stack-overflow-line:before { + content: "\f183"; +} +.ri-stackshare-fill:before { + content: "\f184"; +} +.ri-stackshare-line:before { + content: "\f185"; +} +.ri-star-fill:before { + content: "\f186"; +} +.ri-star-half-fill:before { + content: "\f187"; +} +.ri-star-half-line:before { + content: "\f188"; +} +.ri-star-half-s-fill:before { + content: "\f189"; +} +.ri-star-half-s-line:before { + content: "\f18a"; +} +.ri-star-line:before { + content: "\f18b"; +} +.ri-star-s-fill:before { + content: "\f18c"; +} +.ri-star-s-line:before { + content: "\f18d"; +} +.ri-star-smile-fill:before { + content: "\f18e"; +} +.ri-star-smile-line:before { + content: "\f18f"; +} +.ri-steam-fill:before { + content: "\f190"; +} +.ri-steam-line:before { + content: "\f191"; +} +.ri-steering-2-fill:before { + content: "\f192"; +} +.ri-steering-2-line:before { + content: "\f193"; +} +.ri-steering-fill:before { + content: "\f194"; +} +.ri-steering-line:before { + content: "\f195"; +} +.ri-stethoscope-fill:before { + content: "\f196"; +} +.ri-stethoscope-line:before { + content: "\f197"; +} +.ri-sticky-note-2-fill:before { + content: "\f198"; +} +.ri-sticky-note-2-line:before { + content: "\f199"; +} +.ri-sticky-note-fill:before { + content: "\f19a"; +} +.ri-sticky-note-line:before { + content: "\f19b"; +} +.ri-stock-fill:before { + content: "\f19c"; +} +.ri-stock-line:before { + content: "\f19d"; +} +.ri-stop-circle-fill:before { + content: "\f19e"; +} +.ri-stop-circle-line:before { + content: "\f19f"; +} +.ri-stop-fill:before { + content: "\f1a0"; +} +.ri-stop-line:before { + content: "\f1a1"; +} +.ri-stop-mini-fill:before { + content: "\f1a2"; +} +.ri-stop-mini-line:before { + content: "\f1a3"; +} +.ri-store-2-fill:before { + content: "\f1a4"; +} +.ri-store-2-line:before { + content: "\f1a5"; +} +.ri-store-3-fill:before { + content: "\f1a6"; +} +.ri-store-3-line:before { + content: "\f1a7"; +} +.ri-store-fill:before { + content: "\f1a8"; +} +.ri-store-line:before { + content: "\f1a9"; +} +.ri-strikethrough-2:before { + content: "\f1aa"; +} +.ri-strikethrough:before { + content: "\f1ab"; +} +.ri-subscript-2:before { + content: "\f1ac"; +} +.ri-subscript:before { + content: "\f1ad"; +} +.ri-subtract-fill:before { + content: "\f1ae"; +} +.ri-subtract-line:before { + content: "\f1af"; +} +.ri-subway-fill:before { + content: "\f1b0"; +} +.ri-subway-line:before { + content: "\f1b1"; +} +.ri-subway-wifi-fill:before { + content: "\f1b2"; +} +.ri-subway-wifi-line:before { + content: "\f1b3"; +} +.ri-suitcase-2-fill:before { + content: "\f1b4"; +} +.ri-suitcase-2-line:before { + content: "\f1b5"; +} +.ri-suitcase-3-fill:before { + content: "\f1b6"; +} +.ri-suitcase-3-line:before { + content: "\f1b7"; +} +.ri-suitcase-fill:before { + content: "\f1b8"; +} +.ri-suitcase-line:before { + content: "\f1b9"; +} +.ri-sun-cloudy-fill:before { + content: "\f1ba"; +} +.ri-sun-cloudy-line:before { + content: "\f1bb"; +} +.ri-sun-fill:before { + content: "\f1bc"; +} +.ri-sun-foggy-fill:before { + content: "\f1bd"; +} +.ri-sun-foggy-line:before { + content: "\f1be"; +} +.ri-sun-line:before { + content: "\f1bf"; +} +.ri-superscript-2:before { + content: "\f1c0"; +} +.ri-superscript:before { + content: "\f1c1"; +} +.ri-surgical-mask-fill:before { + content: "\f1c2"; +} +.ri-surgical-mask-line:before { + content: "\f1c3"; +} +.ri-surround-sound-fill:before { + content: "\f1c4"; +} +.ri-surround-sound-line:before { + content: "\f1c5"; +} +.ri-survey-fill:before { + content: "\f1c6"; +} +.ri-survey-line:before { + content: "\f1c7"; +} +.ri-swap-box-fill:before { + content: "\f1c8"; +} +.ri-swap-box-line:before { + content: "\f1c9"; +} +.ri-swap-fill:before { + content: "\f1ca"; +} +.ri-swap-line:before { + content: "\f1cb"; +} +.ri-switch-fill:before { + content: "\f1cc"; +} +.ri-switch-line:before { + content: "\f1cd"; +} +.ri-sword-fill:before { + content: "\f1ce"; +} +.ri-sword-line:before { + content: "\f1cf"; +} +.ri-syringe-fill:before { + content: "\f1d0"; +} +.ri-syringe-line:before { + content: "\f1d1"; +} +.ri-t-box-fill:before { + content: "\f1d2"; +} +.ri-t-box-line:before { + content: "\f1d3"; +} +.ri-t-shirt-2-fill:before { + content: "\f1d4"; +} +.ri-t-shirt-2-line:before { + content: "\f1d5"; +} +.ri-t-shirt-air-fill:before { + content: "\f1d6"; +} +.ri-t-shirt-air-line:before { + content: "\f1d7"; +} +.ri-t-shirt-fill:before { + content: "\f1d8"; +} +.ri-t-shirt-line:before { + content: "\f1d9"; +} +.ri-table-2:before { + content: "\f1da"; +} +.ri-table-alt-fill:before { + content: "\f1db"; +} +.ri-table-alt-line:before { + content: "\f1dc"; +} +.ri-table-fill:before { + content: "\f1dd"; +} +.ri-table-line:before { + content: "\f1de"; +} +.ri-tablet-fill:before { + content: "\f1df"; +} +.ri-tablet-line:before { + content: "\f1e0"; +} +.ri-takeaway-fill:before { + content: "\f1e1"; +} +.ri-takeaway-line:before { + content: "\f1e2"; +} +.ri-taobao-fill:before { + content: "\f1e3"; +} +.ri-taobao-line:before { + content: "\f1e4"; +} +.ri-tape-fill:before { + content: "\f1e5"; +} +.ri-tape-line:before { + content: "\f1e6"; +} +.ri-task-fill:before { + content: "\f1e7"; +} +.ri-task-line:before { + content: "\f1e8"; +} +.ri-taxi-fill:before { + content: "\f1e9"; +} +.ri-taxi-line:before { + content: "\f1ea"; +} +.ri-taxi-wifi-fill:before { + content: "\f1eb"; +} +.ri-taxi-wifi-line:before { + content: "\f1ec"; +} +.ri-team-fill:before { + content: "\f1ed"; +} +.ri-team-line:before { + content: "\f1ee"; +} +.ri-telegram-fill:before { + content: "\f1ef"; +} +.ri-telegram-line:before { + content: "\f1f0"; +} +.ri-temp-cold-fill:before { + content: "\f1f1"; +} +.ri-temp-cold-line:before { + content: "\f1f2"; +} +.ri-temp-hot-fill:before { + content: "\f1f3"; +} +.ri-temp-hot-line:before { + content: "\f1f4"; +} +.ri-terminal-box-fill:before { + content: "\f1f5"; +} +.ri-terminal-box-line:before { + content: "\f1f6"; +} +.ri-terminal-fill:before { + content: "\f1f7"; +} +.ri-terminal-line:before { + content: "\f1f8"; +} +.ri-terminal-window-fill:before { + content: "\f1f9"; +} +.ri-terminal-window-line:before { + content: "\f1fa"; +} +.ri-test-tube-fill:before { + content: "\f1fb"; +} +.ri-test-tube-line:before { + content: "\f1fc"; +} +.ri-text-direction-l:before { + content: "\f1fd"; +} +.ri-text-direction-r:before { + content: "\f1fe"; +} +.ri-text-spacing:before { + content: "\f1ff"; +} +.ri-text-wrap:before { + content: "\f200"; +} +.ri-text:before { + content: "\f201"; +} +.ri-thermometer-fill:before { + content: "\f202"; +} +.ri-thermometer-line:before { + content: "\f203"; +} +.ri-thumb-down-fill:before { + content: "\f204"; +} +.ri-thumb-down-line:before { + content: "\f205"; +} +.ri-thumb-up-fill:before { + content: "\f206"; +} +.ri-thumb-up-line:before { + content: "\f207"; +} +.ri-thunderstorms-fill:before { + content: "\f208"; +} +.ri-thunderstorms-line:before { + content: "\f209"; +} +.ri-ticket-2-fill:before { + content: "\f20a"; +} +.ri-ticket-2-line:before { + content: "\f20b"; +} +.ri-ticket-fill:before { + content: "\f20c"; +} +.ri-ticket-line:before { + content: "\f20d"; +} +.ri-time-fill:before { + content: "\f20e"; +} +.ri-time-line:before { + content: "\f20f"; +} +.ri-timer-2-fill:before { + content: "\f210"; +} +.ri-timer-2-line:before { + content: "\f211"; +} +.ri-timer-fill:before { + content: "\f212"; +} +.ri-timer-flash-fill:before { + content: "\f213"; +} +.ri-timer-flash-line:before { + content: "\f214"; +} +.ri-timer-line:before { + content: "\f215"; +} +.ri-todo-fill:before { + content: "\f216"; +} +.ri-todo-line:before { + content: "\f217"; +} +.ri-toggle-fill:before { + content: "\f218"; +} +.ri-toggle-line:before { + content: "\f219"; +} +.ri-tools-fill:before { + content: "\f21a"; +} +.ri-tools-line:before { + content: "\f21b"; +} +.ri-tornado-fill:before { + content: "\f21c"; +} +.ri-tornado-line:before { + content: "\f21d"; +} +.ri-trademark-fill:before { + content: "\f21e"; +} +.ri-trademark-line:before { + content: "\f21f"; +} +.ri-traffic-light-fill:before { + content: "\f220"; +} +.ri-traffic-light-line:before { + content: "\f221"; +} +.ri-train-fill:before { + content: "\f222"; +} +.ri-train-line:before { + content: "\f223"; +} +.ri-train-wifi-fill:before { + content: "\f224"; +} +.ri-train-wifi-line:before { + content: "\f225"; +} +.ri-translate-2:before { + content: "\f226"; +} +.ri-translate:before { + content: "\f227"; +} +.ri-travesti-fill:before { + content: "\f228"; +} +.ri-travesti-line:before { + content: "\f229"; +} +.ri-treasure-map-fill:before { + content: "\f22a"; +} +.ri-treasure-map-line:before { + content: "\f22b"; +} +.ri-trello-fill:before { + content: "\f22c"; +} +.ri-trello-line:before { + content: "\f22d"; +} +.ri-trophy-fill:before { + content: "\f22e"; +} +.ri-trophy-line:before { + content: "\f22f"; +} +.ri-truck-fill:before { + content: "\f230"; +} +.ri-truck-line:before { + content: "\f231"; +} +.ri-tumblr-fill:before { + content: "\f232"; +} +.ri-tumblr-line:before { + content: "\f233"; +} +.ri-tv-2-fill:before { + content: "\f234"; +} +.ri-tv-2-line:before { + content: "\f235"; +} +.ri-tv-fill:before { + content: "\f236"; +} +.ri-tv-line:before { + content: "\f237"; +} +.ri-twitch-fill:before { + content: "\f238"; +} +.ri-twitch-line:before { + content: "\f239"; +} +.ri-twitter-fill:before { + content: "\f23a"; +} +.ri-twitter-line:before { + content: "\f23b"; +} +.ri-typhoon-fill:before { + content: "\f23c"; +} +.ri-typhoon-line:before { + content: "\f23d"; +} +.ri-u-disk-fill:before { + content: "\f23e"; +} +.ri-u-disk-line:before { + content: "\f23f"; +} +.ri-ubuntu-fill:before { + content: "\f240"; +} +.ri-ubuntu-line:before { + content: "\f241"; +} +.ri-umbrella-fill:before { + content: "\f242"; +} +.ri-umbrella-line:before { + content: "\f243"; +} +.ri-underline:before { + content: "\f244"; +} +.ri-uninstall-fill:before { + content: "\f245"; +} +.ri-uninstall-line:before { + content: "\f246"; +} +.ri-unsplash-fill:before { + content: "\f247"; +} +.ri-unsplash-line:before { + content: "\f248"; +} +.ri-upload-2-fill:before { + content: "\f249"; +} +.ri-upload-2-line:before { + content: "\f24a"; +} +.ri-upload-cloud-2-fill:before { + content: "\f24b"; +} +.ri-upload-cloud-2-line:before { + content: "\f24c"; +} +.ri-upload-cloud-fill:before { + content: "\f24d"; +} +.ri-upload-cloud-line:before { + content: "\f24e"; +} +.ri-upload-fill:before { + content: "\f24f"; +} +.ri-upload-line:before { + content: "\f250"; +} +.ri-usb-fill:before { + content: "\f251"; +} +.ri-usb-line:before { + content: "\f252"; +} +.ri-user-2-fill:before { + content: "\f253"; +} +.ri-user-2-line:before { + content: "\f254"; +} +.ri-user-3-fill:before { + content: "\f255"; +} +.ri-user-3-line:before { + content: "\f256"; +} +.ri-user-4-fill:before { + content: "\f257"; +} +.ri-user-4-line:before { + content: "\f258"; +} +.ri-user-5-fill:before { + content: "\f259"; +} +.ri-user-5-line:before { + content: "\f25a"; +} +.ri-user-6-fill:before { + content: "\f25b"; +} +.ri-user-6-line:before { + content: "\f25c"; +} +.ri-user-add-fill:before { + content: "\f25d"; +} +.ri-user-add-line:before { + content: "\f25e"; +} +.ri-user-fill:before { + content: "\f25f"; +} +.ri-user-follow-fill:before { + content: "\f260"; +} +.ri-user-follow-line:before { + content: "\f261"; +} +.ri-user-heart-fill:before { + content: "\f262"; +} +.ri-user-heart-line:before { + content: "\f263"; +} +.ri-user-line:before { + content: "\f264"; +} +.ri-user-location-fill:before { + content: "\f265"; +} +.ri-user-location-line:before { + content: "\f266"; +} +.ri-user-received-2-fill:before { + content: "\f267"; +} +.ri-user-received-2-line:before { + content: "\f268"; +} +.ri-user-received-fill:before { + content: "\f269"; +} +.ri-user-received-line:before { + content: "\f26a"; +} +.ri-user-search-fill:before { + content: "\f26b"; +} +.ri-user-search-line:before { + content: "\f26c"; +} +.ri-user-settings-fill:before { + content: "\f26d"; +} +.ri-user-settings-line:before { + content: "\f26e"; +} +.ri-user-shared-2-fill:before { + content: "\f26f"; +} +.ri-user-shared-2-line:before { + content: "\f270"; +} +.ri-user-shared-fill:before { + content: "\f271"; +} +.ri-user-shared-line:before { + content: "\f272"; +} +.ri-user-smile-fill:before { + content: "\f273"; +} +.ri-user-smile-line:before { + content: "\f274"; +} +.ri-user-star-fill:before { + content: "\f275"; +} +.ri-user-star-line:before { + content: "\f276"; +} +.ri-user-unfollow-fill:before { + content: "\f277"; +} +.ri-user-unfollow-line:before { + content: "\f278"; +} +.ri-user-voice-fill:before { + content: "\f279"; +} +.ri-user-voice-line:before { + content: "\f27a"; +} +.ri-video-add-fill:before { + content: "\f27b"; +} +.ri-video-add-line:before { + content: "\f27c"; +} +.ri-video-chat-fill:before { + content: "\f27d"; +} +.ri-video-chat-line:before { + content: "\f27e"; +} +.ri-video-download-fill:before { + content: "\f27f"; +} +.ri-video-download-line:before { + content: "\f280"; +} +.ri-video-fill:before { + content: "\f281"; +} +.ri-video-line:before { + content: "\f282"; +} +.ri-video-upload-fill:before { + content: "\f283"; +} +.ri-video-upload-line:before { + content: "\f284"; +} +.ri-vidicon-2-fill:before { + content: "\f285"; +} +.ri-vidicon-2-line:before { + content: "\f286"; +} +.ri-vidicon-fill:before { + content: "\f287"; +} +.ri-vidicon-line:before { + content: "\f288"; +} +.ri-vimeo-fill:before { + content: "\f289"; +} +.ri-vimeo-line:before { + content: "\f28a"; +} +.ri-vip-crown-2-fill:before { + content: "\f28b"; +} +.ri-vip-crown-2-line:before { + content: "\f28c"; +} +.ri-vip-crown-fill:before { + content: "\f28d"; +} +.ri-vip-crown-line:before { + content: "\f28e"; +} +.ri-vip-diamond-fill:before { + content: "\f28f"; +} +.ri-vip-diamond-line:before { + content: "\f290"; +} +.ri-vip-fill:before { + content: "\f291"; +} +.ri-vip-line:before { + content: "\f292"; +} +.ri-virus-fill:before { + content: "\f293"; +} +.ri-virus-line:before { + content: "\f294"; +} +.ri-visa-fill:before { + content: "\f295"; +} +.ri-visa-line:before { + content: "\f296"; +} +.ri-voice-recognition-fill:before { + content: "\f297"; +} +.ri-voice-recognition-line:before { + content: "\f298"; +} +.ri-voiceprint-fill:before { + content: "\f299"; +} +.ri-voiceprint-line:before { + content: "\f29a"; +} +.ri-volume-down-fill:before { + content: "\f29b"; +} +.ri-volume-down-line:before { + content: "\f29c"; +} +.ri-volume-mute-fill:before { + content: "\f29d"; +} +.ri-volume-mute-line:before { + content: "\f29e"; +} +.ri-volume-off-vibrate-fill:before { + content: "\f29f"; +} +.ri-volume-off-vibrate-line:before { + content: "\f2a0"; +} +.ri-volume-up-fill:before { + content: "\f2a1"; +} +.ri-volume-up-line:before { + content: "\f2a2"; +} +.ri-volume-vibrate-fill:before { + content: "\f2a3"; +} +.ri-volume-vibrate-line:before { + content: "\f2a4"; +} +.ri-vuejs-fill:before { + content: "\f2a5"; +} +.ri-vuejs-line:before { + content: "\f2a6"; +} +.ri-walk-fill:before { + content: "\f2a7"; +} +.ri-walk-line:before { + content: "\f2a8"; +} +.ri-wallet-2-fill:before { + content: "\f2a9"; +} +.ri-wallet-2-line:before { + content: "\f2aa"; +} +.ri-wallet-3-fill:before { + content: "\f2ab"; +} +.ri-wallet-3-line:before { + content: "\f2ac"; +} +.ri-wallet-fill:before { + content: "\f2ad"; +} +.ri-wallet-line:before { + content: "\f2ae"; +} +.ri-water-flash-fill:before { + content: "\f2af"; +} +.ri-water-flash-line:before { + content: "\f2b0"; +} +.ri-webcam-fill:before { + content: "\f2b1"; +} +.ri-webcam-line:before { + content: "\f2b2"; +} +.ri-wechat-2-fill:before { + content: "\f2b3"; +} +.ri-wechat-2-line:before { + content: "\f2b4"; +} +.ri-wechat-fill:before { + content: "\f2b5"; +} +.ri-wechat-line:before { + content: "\f2b6"; +} +.ri-wechat-pay-fill:before { + content: "\f2b7"; +} +.ri-wechat-pay-line:before { + content: "\f2b8"; +} +.ri-weibo-fill:before { + content: "\f2b9"; +} +.ri-weibo-line:before { + content: "\f2ba"; +} +.ri-whatsapp-fill:before { + content: "\f2bb"; +} +.ri-whatsapp-line:before { + content: "\f2bc"; +} +.ri-wheelchair-fill:before { + content: "\f2bd"; +} +.ri-wheelchair-line:before { + content: "\f2be"; +} +.ri-wifi-fill:before { + content: "\f2bf"; +} +.ri-wifi-line:before { + content: "\f2c0"; +} +.ri-wifi-off-fill:before { + content: "\f2c1"; +} +.ri-wifi-off-line:before { + content: "\f2c2"; +} +.ri-window-2-fill:before { + content: "\f2c3"; +} +.ri-window-2-line:before { + content: "\f2c4"; +} +.ri-window-fill:before { + content: "\f2c5"; +} +.ri-window-line:before { + content: "\f2c6"; +} +.ri-windows-fill:before { + content: "\f2c7"; +} +.ri-windows-line:before { + content: "\f2c8"; +} +.ri-windy-fill:before { + content: "\f2c9"; +} +.ri-windy-line:before { + content: "\f2ca"; +} +.ri-wireless-charging-fill:before { + content: "\f2cb"; +} +.ri-wireless-charging-line:before { + content: "\f2cc"; +} +.ri-women-fill:before { + content: "\f2cd"; +} +.ri-women-line:before { + content: "\f2ce"; +} +.ri-wubi-input:before { + content: "\f2cf"; +} +.ri-xbox-fill:before { + content: "\f2d0"; +} +.ri-xbox-line:before { + content: "\f2d1"; +} +.ri-xing-fill:before { + content: "\f2d2"; +} +.ri-xing-line:before { + content: "\f2d3"; +} +.ri-youtube-fill:before { + content: "\f2d4"; +} +.ri-youtube-line:before { + content: "\f2d5"; +} +.ri-zcool-fill:before { + content: "\f2d6"; +} +.ri-zcool-line:before { + content: "\f2d7"; +} +.ri-zhihu-fill:before { + content: "\f2d8"; +} +.ri-zhihu-line:before { + content: "\f2d9"; +} +.ri-zoom-in-fill:before { + content: "\f2da"; +} +.ri-zoom-in-line:before { + content: "\f2db"; +} +.ri-zoom-out-fill:before { + content: "\f2dc"; +} +.ri-zoom-out-line:before { + content: "\f2dd"; +} +.ri-zzz-fill:before { + content: "\f2de"; +} +.ri-zzz-line:before { + content: "\f2df"; +} diff --git a/site/resources/fonts/remixicondf6d.eot b/site/resources/fonts/remixicondf6d.eot new file mode 100644 index 0000000..40629af Binary files /dev/null and b/site/resources/fonts/remixicondf6d.eot differ diff --git a/site/resources/fonts/remixicondf6d.svg b/site/resources/fonts/remixicondf6d.svg new file mode 100644 index 0000000..a348334 --- /dev/null +++ b/site/resources/fonts/remixicondf6d.svg @@ -0,0 +1,6835 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/site/resources/fonts/remixicondf6d.ttf b/site/resources/fonts/remixicondf6d.ttf new file mode 100644 index 0000000..c461f40 Binary files /dev/null and b/site/resources/fonts/remixicondf6d.ttf differ diff --git a/site/resources/fonts/remixicondf6d.woff b/site/resources/fonts/remixicondf6d.woff new file mode 100644 index 0000000..62a756b Binary files /dev/null and b/site/resources/fonts/remixicondf6d.woff differ diff --git a/site/resources/fonts/remixicondf6d.woff2 b/site/resources/fonts/remixicondf6d.woff2 new file mode 100644 index 0000000..89a0b99 Binary files /dev/null and b/site/resources/fonts/remixicondf6d.woff2 differ diff --git a/site/resources/fonts/slick.eot b/site/resources/fonts/slick.eot new file mode 100644 index 0000000..125abf8 --- /dev/null +++ b/site/resources/fonts/slick.eot @@ -0,0 +1,1332 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + slick/slick/fonts/slick.eot at master · kenwheeler/slick · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+ Skip to content + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+ + + + + + +
+ + + + + + + + + + +
+
+
+ + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + +
+
+ + + + +
+ +
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + +
+ +
+ + + + + diff --git a/site/resources/fonts/slick.svg b/site/resources/fonts/slick.svg new file mode 100644 index 0000000..9ea6b69 --- /dev/null +++ b/site/resources/fonts/slick.svg @@ -0,0 +1,1332 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + slick/slick/fonts/slick.svg at master · kenwheeler/slick · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+ Skip to content + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+ + + + + + +
+ + + + + + + + + + +
+
+
+ + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + +
+
+ + + + +
+ +
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + +
+ +
+ + + + + diff --git a/site/resources/fonts/slick.ttf b/site/resources/fonts/slick.ttf new file mode 100644 index 0000000..9d03461 Binary files /dev/null and b/site/resources/fonts/slick.ttf differ diff --git a/site/resources/fonts/slick.woff b/site/resources/fonts/slick.woff new file mode 100644 index 0000000..8ee9972 Binary files /dev/null and b/site/resources/fonts/slick.woff differ diff --git a/site/resources/img/ajax-loader.gif b/site/resources/img/ajax-loader.gif new file mode 100644 index 0000000..e0e6e97 Binary files /dev/null and b/site/resources/img/ajax-loader.gif differ diff --git a/site/resources/img/dark-inner.jpg b/site/resources/img/dark-inner.jpg new file mode 100644 index 0000000..64ba2c3 Binary files /dev/null and b/site/resources/img/dark-inner.jpg differ diff --git a/site/resources/img/default_avatars/default_avatar_users_01.svg b/site/resources/img/default_avatars/default_avatar_users_01.svg new file mode 100644 index 0000000..c837b5e --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_01.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_02.svg b/site/resources/img/default_avatars/default_avatar_users_02.svg new file mode 100644 index 0000000..ef9122b --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_02.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_03.svg b/site/resources/img/default_avatars/default_avatar_users_03.svg new file mode 100644 index 0000000..fffa431 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_03.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_04.svg b/site/resources/img/default_avatars/default_avatar_users_04.svg new file mode 100644 index 0000000..f34b8ba --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_04.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_05.svg b/site/resources/img/default_avatars/default_avatar_users_05.svg new file mode 100644 index 0000000..e9e83c5 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_05.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_06.svg b/site/resources/img/default_avatars/default_avatar_users_06.svg new file mode 100644 index 0000000..ca86fb3 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_06.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_07.svg b/site/resources/img/default_avatars/default_avatar_users_07.svg new file mode 100644 index 0000000..827c466 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_07.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_08.svg b/site/resources/img/default_avatars/default_avatar_users_08.svg new file mode 100644 index 0000000..0645fdf --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_08.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_09.svg b/site/resources/img/default_avatars/default_avatar_users_09.svg new file mode 100644 index 0000000..689fbd9 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_09.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_10.svg b/site/resources/img/default_avatars/default_avatar_users_10.svg new file mode 100644 index 0000000..a1c2ce9 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_10.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_11.svg b/site/resources/img/default_avatars/default_avatar_users_11.svg new file mode 100644 index 0000000..85c6a65 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_11.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_12.svg b/site/resources/img/default_avatars/default_avatar_users_12.svg new file mode 100644 index 0000000..83dd15f --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_12.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_13.svg b/site/resources/img/default_avatars/default_avatar_users_13.svg new file mode 100644 index 0000000..8e581e4 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_13.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_14.svg b/site/resources/img/default_avatars/default_avatar_users_14.svg new file mode 100644 index 0000000..ff16bf2 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_14.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_15.svg b/site/resources/img/default_avatars/default_avatar_users_15.svg new file mode 100644 index 0000000..ff6d841 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_15.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_16.svg b/site/resources/img/default_avatars/default_avatar_users_16.svg new file mode 100644 index 0000000..64fef24 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_16.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_17.svg b/site/resources/img/default_avatars/default_avatar_users_17.svg new file mode 100644 index 0000000..8901ce2 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_17.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_18.svg b/site/resources/img/default_avatars/default_avatar_users_18.svg new file mode 100644 index 0000000..fddda86 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_18.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_19.svg b/site/resources/img/default_avatars/default_avatar_users_19.svg new file mode 100644 index 0000000..ae395f1 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_19.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_20.svg b/site/resources/img/default_avatars/default_avatar_users_20.svg new file mode 100644 index 0000000..f5fc401 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_20.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_21.svg b/site/resources/img/default_avatars/default_avatar_users_21.svg new file mode 100644 index 0000000..abc6147 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_21.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_22.svg b/site/resources/img/default_avatars/default_avatar_users_22.svg new file mode 100644 index 0000000..fa898e3 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_22.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_23.svg b/site/resources/img/default_avatars/default_avatar_users_23.svg new file mode 100644 index 0000000..ba153f8 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_23.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_24.svg b/site/resources/img/default_avatars/default_avatar_users_24.svg new file mode 100644 index 0000000..f1dff11 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_24.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_25.svg b/site/resources/img/default_avatars/default_avatar_users_25.svg new file mode 100644 index 0000000..8b66610 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_25.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_26.svg b/site/resources/img/default_avatars/default_avatar_users_26.svg new file mode 100644 index 0000000..242b7c5 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_26.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_27.svg b/site/resources/img/default_avatars/default_avatar_users_27.svg new file mode 100644 index 0000000..a908fa9 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_27.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_28.svg b/site/resources/img/default_avatars/default_avatar_users_28.svg new file mode 100644 index 0000000..027927e --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_28.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_29.svg b/site/resources/img/default_avatars/default_avatar_users_29.svg new file mode 100644 index 0000000..0689daa --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_29.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_30.svg b/site/resources/img/default_avatars/default_avatar_users_30.svg new file mode 100644 index 0000000..e5bc38c --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_30.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_31.svg b/site/resources/img/default_avatars/default_avatar_users_31.svg new file mode 100644 index 0000000..f494476 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_31.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_32.svg b/site/resources/img/default_avatars/default_avatar_users_32.svg new file mode 100644 index 0000000..257d2e9 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_32.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_33.svg b/site/resources/img/default_avatars/default_avatar_users_33.svg new file mode 100644 index 0000000..ce8f50f --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_33.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_34.svg b/site/resources/img/default_avatars/default_avatar_users_34.svg new file mode 100644 index 0000000..70fad78 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_34.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_35.svg b/site/resources/img/default_avatars/default_avatar_users_35.svg new file mode 100644 index 0000000..4307b3b --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_35.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_36.svg b/site/resources/img/default_avatars/default_avatar_users_36.svg new file mode 100644 index 0000000..e67f3d2 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_36.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_37.svg b/site/resources/img/default_avatars/default_avatar_users_37.svg new file mode 100644 index 0000000..6965c18 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_37.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_38.svg b/site/resources/img/default_avatars/default_avatar_users_38.svg new file mode 100644 index 0000000..2a8cfe4 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_38.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_39.svg b/site/resources/img/default_avatars/default_avatar_users_39.svg new file mode 100644 index 0000000..00cd1d6 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_39.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_40.svg b/site/resources/img/default_avatars/default_avatar_users_40.svg new file mode 100644 index 0000000..f907073 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_40.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_41.svg b/site/resources/img/default_avatars/default_avatar_users_41.svg new file mode 100644 index 0000000..91f8908 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_41.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_42.svg b/site/resources/img/default_avatars/default_avatar_users_42.svg new file mode 100644 index 0000000..a1954a4 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_42.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_43.svg b/site/resources/img/default_avatars/default_avatar_users_43.svg new file mode 100644 index 0000000..ce3a01d --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_43.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_44.svg b/site/resources/img/default_avatars/default_avatar_users_44.svg new file mode 100644 index 0000000..829edb5 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_44.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_45.svg b/site/resources/img/default_avatars/default_avatar_users_45.svg new file mode 100644 index 0000000..af8db49 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_45.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_46.svg b/site/resources/img/default_avatars/default_avatar_users_46.svg new file mode 100644 index 0000000..f31d8e0 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_46.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_47.svg b/site/resources/img/default_avatars/default_avatar_users_47.svg new file mode 100644 index 0000000..306cbe5 --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_47.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_48.svg b/site/resources/img/default_avatars/default_avatar_users_48.svg new file mode 100644 index 0000000..a235f9f --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_48.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_49.svg b/site/resources/img/default_avatars/default_avatar_users_49.svg new file mode 100644 index 0000000..43fe94c --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_49.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/default_avatars/default_avatar_users_50.svg b/site/resources/img/default_avatars/default_avatar_users_50.svg new file mode 100644 index 0000000..564ac1a --- /dev/null +++ b/site/resources/img/default_avatars/default_avatar_users_50.svg @@ -0,0 +1 @@ +Avatar Users2 \ No newline at end of file diff --git a/site/resources/img/headerbg-dark.jpg b/site/resources/img/headerbg-dark.jpg new file mode 100644 index 0000000..40d435c Binary files /dev/null and b/site/resources/img/headerbg-dark.jpg differ diff --git a/site/resources/img/headerbg.jpg b/site/resources/img/headerbg.jpg new file mode 100644 index 0000000..0bc6ad5 Binary files /dev/null and b/site/resources/img/headerbg.jpg differ diff --git a/site/resources/img/light-inner.jpg b/site/resources/img/light-inner.jpg new file mode 100644 index 0000000..eb1998c Binary files /dev/null and b/site/resources/img/light-inner.jpg differ diff --git a/site/resources/img/logo-dark-naag-mob.png b/site/resources/img/logo-dark-naag-mob.png new file mode 100644 index 0000000..c49394b Binary files /dev/null and b/site/resources/img/logo-dark-naag-mob.png differ diff --git a/site/resources/img/logo-dark-naag.png b/site/resources/img/logo-dark-naag.png new file mode 100644 index 0000000..724160a Binary files /dev/null and b/site/resources/img/logo-dark-naag.png differ diff --git a/site/resources/img/logo-preloader.png b/site/resources/img/logo-preloader.png new file mode 100644 index 0000000..e519da0 Binary files /dev/null and b/site/resources/img/logo-preloader.png differ diff --git a/site/resources/img/logo-white-naag-mob.png b/site/resources/img/logo-white-naag-mob.png new file mode 100644 index 0000000..a8e8566 Binary files /dev/null and b/site/resources/img/logo-white-naag-mob.png differ diff --git a/site/resources/img/logo-white-naag.png b/site/resources/img/logo-white-naag.png new file mode 100644 index 0000000..1fa8579 Binary files /dev/null and b/site/resources/img/logo-white-naag.png differ diff --git a/site/resources/img/shape/1.png b/site/resources/img/shape/1.png new file mode 100644 index 0000000..2514eb4 Binary files /dev/null and b/site/resources/img/shape/1.png differ diff --git a/site/resources/img/shape/2-light.png b/site/resources/img/shape/2-light.png new file mode 100644 index 0000000..00e0d4d Binary files /dev/null and b/site/resources/img/shape/2-light.png differ diff --git a/site/resources/img/shape/2.png b/site/resources/img/shape/2.png new file mode 100644 index 0000000..ad78a99 Binary files /dev/null and b/site/resources/img/shape/2.png differ diff --git a/site/resources/img/shape/3-light.png b/site/resources/img/shape/3-light.png new file mode 100644 index 0000000..2e6bec8 Binary files /dev/null and b/site/resources/img/shape/3-light.png differ diff --git a/site/resources/img/shape/3.png b/site/resources/img/shape/3.png new file mode 100644 index 0000000..1425584 Binary files /dev/null and b/site/resources/img/shape/3.png differ diff --git a/site/resources/img/shape/4.png b/site/resources/img/shape/4.png new file mode 100644 index 0000000..95ed25b Binary files /dev/null and b/site/resources/img/shape/4.png differ diff --git a/site/resources/img/shape/4.svg b/site/resources/img/shape/4.svg new file mode 100644 index 0000000..03cbea1 --- /dev/null +++ b/site/resources/img/shape/4.svg @@ -0,0 +1,3 @@ + + + diff --git a/site/resources/img/shape/5.png b/site/resources/img/shape/5.png new file mode 100644 index 0000000..87d02ea Binary files /dev/null and b/site/resources/img/shape/5.png differ diff --git a/site/resources/img/shape/6.png b/site/resources/img/shape/6.png new file mode 100644 index 0000000..d5ea4e4 Binary files /dev/null and b/site/resources/img/shape/6.png differ diff --git a/site/resources/img/shape/7.png b/site/resources/img/shape/7.png new file mode 100644 index 0000000..db92ed4 Binary files /dev/null and b/site/resources/img/shape/7.png differ diff --git a/site/resources/img/shape/8.png b/site/resources/img/shape/8.png new file mode 100644 index 0000000..b04a2e1 Binary files /dev/null and b/site/resources/img/shape/8.png differ diff --git a/site/resources/js/app.js b/site/resources/js/app.js index a8093be..0740ca7 100644 --- a/site/resources/js/app.js +++ b/site/resources/js/app.js @@ -1,7 +1,14 @@ import './bootstrap'; +import.meta.glob([ + '../img/**', + '../fonts/**' +]); + import Alpine from 'alpinejs'; window.Alpine = Alpine; Alpine.start(); + +import './main'; diff --git a/site/resources/js/main.js b/site/resources/js/main.js new file mode 100644 index 0000000..f2e5c90 --- /dev/null +++ b/site/resources/js/main.js @@ -0,0 +1,672 @@ +(function ($) { + "use strict"; + + var banu = { + m: function (e) { + banu.d(); + banu.methods(); + }, + + d: function (e) { + (this._window = $(window)), + (this._document = $(document)), + (this._body = $("body")), + (this._html = $("html")); + }, + methods: function (e) { + banu.stickyHeader(); + banu.stickyAdjust(); + banu.slickActivation(); + banu.selectJs(); + banu.popupMobileMenu(); + banu.masonryActivation(); + banu.ibcounterUp(); + banu.searchClick(); + banu.tooltip(); + banu.sidebarFilter(); + banu.fancyBox(); + banu.preloaderActivation(); + // banu.preventContentEdit(); + banu.aosAnimationActivation(); + banu.darkToLight(); + }, + + preventContentEdit: function () { + window.addEventListener("contextmenu", (e) => e.preventDefault()); + }, + + darkToLight: function () { + $(window).on("load", function () { + // localStorage.setItem("theme-color", "theme-light"); + // local storage theme variable presence check + const currentThemeColor = localStorage.getItem("theme-color"); + // + if (currentThemeColor) { + // add class to body + $("body").addClass(currentThemeColor); + if (currentThemeColor === "theme-light") { + $(".theme-switcher").prop("checked", true); + $(".theme-switcher-label").addClass("active"); + } else { + // continue with default theme + } + } + // switch theme + $(".theme-switcher-label").on("change", switchColorTheme); + }); + + function switchColorTheme(e) { + $(this).toggleClass("active"); + // remove previous classes + removeThemeClass(); + if (e.target.checked) { + // it's a dark theme + $("body").addClass("theme-light"); + localStorage.setItem("theme-color", "theme-light"); + $(".theme-switcher").prop("checked", true); + } else { + $("body").addClass("theme-dark"); + localStorage.setItem("theme-color", "theme-dark"); + $(".theme-switcher").prop("checked", false); + } + } + + function removeThemeClass() { + $("body").removeClass(function (index, cssName) { + return (cssName.match(/\btheme-\S+/g) || []).join(" "); + }); + } + }, + + preloaderActivation: function () { + $(window).on("load", function () { + $("#ctn-preloader").fadeOut(); // will first fade out the loading animation + $("#preloader").delay(350).fadeOut("slow"); // will fade out the white DIV that covers the website. + $("body").delay(350).css({ overflow: "visible" }); + }); + }, + + aosAnimationActivation: function () { + $(window).on("load", function () { + if ($("[data-aos]").length) { + AOS.init({ + duration: 1200, + mirror: true, + }); + } + }); + }, + tooltip: function () { + var tooltipTriggerList = [].slice.call( + document.querySelectorAll('[data-bs-toggle="tooltip"]') + ); + var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) { + return new bootstrap.Tooltip(tooltipTriggerEl); + }); + }, + + fancyBox: function () { + var fancy = $(".fancybox"); + if (fancy.length) { + fancy.fancybox({ + arrows: true, + buttons: [ + "zoom", + //"share", + "slideShow", + //"fullScreen", + //"download", + "thumbs", + "close", + ], + animationEffect: "zoom-in-out", + transitionEffect: "zoom-in-out", + }); + } + }, + + sidebarFilter: function () { + $(".single-filter > .title").on("click", function (e) { + e.preventDefault(); + $(".sidebar-submenu").slideUp(200); + + if ($(this).parent().hasClass("active")) { + $(".sidebar-dropdown").removeClass("active"); + $(this).parent().removeClass("active"); + } else { + $(".sidebar-dropdown").removeClass("active"); + $(this).next(".sidebar-submenu").slideDown(200); + $(this).parent().addClass("active"); + } + }); + }, + + stickyHeader: function (e) { + $(window).on("scroll", function () { + if ($(this).scrollTop() > 10) { + $(".header--sticky").addClass("sticky"); + } else { + $(".header--sticky").removeClass("sticky"); + } + }); + }, + + stickyAdjust: function (e) { + // Sticky Top Adjust.., + $(".rbt-sticky-top-adjust").css({ + top: 100, + }); + + $(".rbt-sticky-top-adjust-two").css({ + top: 200, + }); + $(".rbt-sticky-top-adjust-three").css({ + top: 25, + }); + }, + + slickActivation: function () { + $(".slick-activation-01").slick({ + // infinite: true, + slidesToShow: 5, + slidesToScroll: 1, + centerMode: true, + centerPadding: "150px", + autoplay: true, + autoplaySpeed: 3000, + dots: true, + arrows: true, + cssEase: "linear", + adaptiveHeight: true, + prevArrow: + '', + nextArrow: + '', + responsive: [ + { + breakpoint: 1919, + settings: { + slidesToShow: 4, + slidesToScroll: 1, + centerPadding: "120px", + }, + }, + { + breakpoint: 1499, + settings: { + slidesToShow: 3, + centerPadding: "60px", + }, + }, + { + breakpoint: 1199, + settings: { + slidesToShow: 2, + }, + }, + { + breakpoint: 991, + settings: { + slidesToShow: 2, + centerPadding: "1px", + }, + }, + { + breakpoint: 767, + settings: { + slidesToShow: 1, + slidesToScroll: 1, + centerPadding: "1px", + dots: true, + arrows: false, + }, + }, + ], + }); + + $(".slick-activation-001").slick({ + // infinite: true, + slidesToShow: 4, + slidesToScroll: 1, + autoplay: true, + autoplaySpeed: 3000, + dots: false, + arrows: true, + cssEase: "linear", + adaptiveHeight: true, + prevArrow: + '', + nextArrow: + '', + responsive: [ + { + breakpoint: 1919, + settings: { + slidesToShow: 4, + slidesToScroll: 1, + centerPadding: "120px", + }, + }, + { + breakpoint: 1499, + settings: { + slidesToShow: 3, + centerPadding: "60px", + }, + }, + { + breakpoint: 1199, + settings: { + slidesToShow: 3, + }, + }, + { + breakpoint: 991, + settings: { + slidesToShow: 2, + centerPadding: "1px", + }, + }, + { + breakpoint: 767, + settings: { + slidesToShow: 1, + slidesToScroll: 1, + centerPadding: "1px", + dots: true, + arrows: false, + }, + }, + ], + }); + + $(".top-seller-activation-1").slick({ + infinite: true, + slidesToShow: 6, + slidesToScroll: 1, + dots: false, + arrows: true, + cssEase: "linear", + adaptiveHeight: true, + prevArrow: + '', + nextArrow: + '', + responsive: [ + { + breakpoint: 1499, + settings: { + slidesToShow: 5, + }, + }, + { + breakpoint: 1124, + settings: { + slidesToShow: 4, + slidesToScroll: 1, + }, + }, + { + breakpoint: 991, + settings: { + slidesToShow: 3, + slidesToScroll: 1, + }, + }, + { + breakpoint: 767, + settings: { + slidesToShow: 2, + slidesToScroll: 1, + dots: false, + arrows: false, + centerMode: true, + centerPadding: "20px", + }, + }, + ], + }); + + $(".popular-collection-active").slick({ + infinite: true, + slidesToShow: 3, + slidesToScroll: 1, + dots: false, + arrows: true, + cssEase: "linear", + adaptiveHeight: true, + prevArrow: + '', + nextArrow: + '', + responsive: [ + { + breakpoint: 1399, + settings: { + slidesToShow: 2, + slidesToScroll: 1, + }, + }, + { + breakpoint: 1200, + settings: { + slidesToShow: 2, + slidesToScroll: 1, + }, + }, + { + breakpoint: 992, + settings: { + slidesToShow: 2, + slidesToScroll: 1, + }, + }, + { + breakpoint: 767, + settings: { + slidesToShow: 1, + slidesToScroll: 1, + dots: true, + arrows: false, + }, + }, + ], + }); + + $(".wallet-activation, .related-blog-activation").slick({ + infinite: true, + slidesToShow: 3, + slidesToScroll: 1, + dots: false, + arrows: true, + cssEase: "linear", + adaptiveHeight: true, + prevArrow: + '', + nextArrow: + '', + responsive: [ + { + breakpoint: 1399, + settings: { + slidesToShow: 2, + slidesToScroll: 1, + }, + }, + { + breakpoint: 1200, + settings: { + slidesToShow: 2, + slidesToScroll: 1, + }, + }, + { + breakpoint: 992, + settings: { + slidesToShow: 2, + slidesToScroll: 1, + }, + }, + { + breakpoint: 576, + settings: { + slidesToShow: 1, + slidesToScroll: 1, + dots: true, + arrows: false, + }, + }, + ], + }); + + $(".slider-activation-banner-3").slick({ + infinite: true, + slidesToShow: 1, + slidesToScroll: 1, + dots: true, + arrows: false, + adaptiveHeight: false, + autoplay: true, + fade: true, + cssEase: "linear", + }); + + $(".slider-activation-banner-4").slick({ + slidesToShow: 2, + slidesToScroll: 1, + autoplay: false, + dots: true, + arrows: false, + cssEase: "linear", + adaptiveHeight: true, + speed: 1000, + // vertical: true, + // autoplaySpeed: 2000, + responsive: [ + { + breakpoint: 1919, + settings: { + slidesToShow: 2, + }, + }, + { + breakpoint: 1499, + settings: { + slidesToShow: 2, + }, + }, + { + breakpoint: 575, + settings: { + slidesToShow: 1, + }, + }, + ], + }); + + $(".slider-hero-trend").slick({ + infinite: true, + slidesToShow: 3, + slidesToScroll: 1, + dots: false, + arrows: true, + cssEase: "linear", + adaptiveHeight: true, + prevArrow: + '', + nextArrow: + '', + responsive: [ + { + breakpoint: 1399, + settings: { + slidesToShow: 2, + slidesToScroll: 1, + }, + }, + { + breakpoint: 1200, + settings: { + slidesToShow: 2, + slidesToScroll: 1, + }, + }, + { + breakpoint: 992, + settings: { + slidesToShow: 2, + slidesToScroll: 1, + }, + }, + { + breakpoint: 767, + settings: { + slidesToShow: 1, + slidesToScroll: 1, + dots: true, + arrows: false, + }, + }, + ], + }); + $(".nft-gallery-activation").slick({ + // infinite: true, + slidesToShow: 7, + slidesToScroll: 2, + centerMode: true, + centerPadding: "100px", + autoplay: true, + autoplaySpeed: 3000, + dots: true, + arrows: false, + cssEase: "linear", + adaptiveHeight: true, + responsive: [ + { + breakpoint: 1919, + settings: { + slidesToShow: 6, + slidesToScroll: 2, + centerPadding: "120px", + }, + }, + { + breakpoint: 1499, + settings: { + slidesToShow: 3, + centerPadding: "60px", + }, + }, + { + breakpoint: 1199, + settings: { + slidesToShow: 4, + centerPadding: "1px", + }, + }, + { + breakpoint: 991, + settings: { + slidesToShow: 3, + slidesToScroll: 2, + }, + }, + { + breakpoint: 767, + settings: { + slidesToShow: 3, + slidesToScroll: 2, + centerMode: false, + }, + }, + { + breakpoint: 575, + settings: { + slidesToShow: 2, + slidesToScroll: 2, + centerMode: false, + }, + }, + ], + }); + }, + + selectJs: function (e) { + $("select").niceSelect(); + }, + + popupMobileMenu: function (e) { + $(".hamburger-button").on("click", function (e) { + $(".popup-mobile-menu").addClass("active"); + }); + + $(".close-menu").on("click", function (e) { + $(".popup-mobile-menu").removeClass("active"); + $(".popup-mobile-menu .mainmenu .has-dropdown > a") + .siblings(".submenu") + .removeClass("active") + .slideUp("400"); + $(".popup-mobile-menu .mainmenu .has-dropdown > a").removeClass("open"); + }); + + $(".popup-mobile-menu .mainmenu .has-dropdown > a").on( + "click", + function (e) { + e.preventDefault(); + $(this).siblings(".submenu").toggleClass("active").slideToggle("400"); + $(this).toggleClass("open"); + } + ); + + $(".popup-mobile-menu").on("click", function (e) { + e.target === this && + $(".popup-mobile-menu").removeClass("active") && + $(".popup-mobile-menu .mainmenu .has-droupdown > a") + .siblings(".submenu") + .removeClass("active") + .slideUp("400") && + $(".popup-mobile-menu .mainmenu .has-droupdown > a").removeClass( + "open" + ); + }); + + $(".one-page-vavigation-popup .mainmenu li > a").on( + "click", + function (e) { + e.preventDefault(); + $(".popup-mobile-menu").removeClass("active"); + $(".popup-mobile-menu .mainmenu li > a") + .siblings(".submenu") + .removeClass("active"); + } + ); + }, + + masonryActivation: function name(params) { + $(window).on("load", function () { + $(".masonary-wrapper-activation").imagesLoaded(function () { + // filter items on button click + $(".isotop-filter").on("click", "button", function () { + var filterValue = $(this).attr("data-filter"); + $(this).siblings(".is-checked").removeClass("is-checked"); + $(this).addClass("is-checked"); + $grid.isotope({ + filter: filterValue, + }); + }); + + // init Isotope + var $grid = $(".mesonry-list").isotope({ + percentPosition: true, + transitionDuration: "0.7s", + layoutMode: "masonry", + masonry: { + columnWidth: ".resizer", + }, + }); + }); + }); + }, + + ibcounterUp: function () { + $(".counter-item-active").counterUp({ + delay: 10, + time: 2000, + }); + }, + + searchClick: function (e) { + var screenWidth = banu._window.width(); + if (screenWidth < 992) { + $(".search-mobile-icon").on("click", function (e) { + e.preventDefault(); + $(this) + .toggleClass("open") + .siblings(".large-mobile-blog-search") + .toggleClass("active"); + }); + } + }, + }; + banu.m(); +})(jQuery, window); diff --git a/site/resources/scss/app.scss b/site/resources/scss/app.scss new file mode 100644 index 0000000..b474f24 --- /dev/null +++ b/site/resources/scss/app.scss @@ -0,0 +1,75 @@ +/* CSS Document */ + +/* +Created on : 04/03/2022. +Theme Name : Banu NFT Marketplace HTML Template +Version : 1.0. +Developed by : (ib-themes21@gmail.com) / (https://themeforest.net/user/ib-themes) +Primary use : ib-themes +Modified by : Paul Couture (bonked@noagendaartgenerator.com) +*/ + +/** +01 - Font Import +02 - Vendor CSS +03 - Dafault Base CSS +04 - All Component Base CSS +**/ + +// font import +@import url("../fonts/gothamultra.css"); +@import url("../fonts/remixicon.css"); +@import url("../fonts/poppins.css"); +@import url("../fonts/bakbakone.css"); +@import url("../fonts/chakrapetch.css"); + +// vendor css +@import url("../css/vendor/bootstrap.min.css"); +@import url("../css/vendor/slick.css"); +@import url("../css/vendor/slick-theme.css"); +@import url("../css/vendor/aos.css"); + +// default +@import "defaults/variables"; +@import "defaults/mixin"; +@import "defaults/typography"; +@import "defaults/base"; +@import "defaults/spacing"; +@import "defaults/helper-class"; +@import "defaults/form"; +@import "defaults/button"; +@import "defaults/breadcrumb"; +@import "defaults/browserhacks"; +@import "defaults/preloader"; +@import "defaults/slick-custom"; +@import "defaults/animation"; +@import "defaults/section-title"; +@import "defaults/switcher"; + +// components +@import "components/menu"; +@import "components/header"; +@import "components/hero"; +@import "components/explore"; +@import "components/top-seller"; +@import "components/popular-collection"; +@import "components/wallet-setup"; +@import "components/tabs"; +@import "components/modal"; +@import "components/inner-page"; +@import "components/counter"; +@import "components/sidebar_filter"; +@import "components/single-product"; +@import "components/activity"; +@import "components/blog"; +@import "components/blog-details"; +@import "components/authors"; +@import "components/wallet"; +@import "components/create-item"; +@import "components/file-upload"; +@import "components/signup"; +@import "components/not-found"; +@import "components/footer"; +@import "components/nft-gallery"; +@import "./../css/vendor/nice-select.css"; +@import "components/light-version"; diff --git a/site/resources/scss/components/_activity.scss b/site/resources/scss/components/_activity.scss new file mode 100644 index 0000000..3140d18 --- /dev/null +++ b/site/resources/scss/components/_activity.scss @@ -0,0 +1,124 @@ +.bar-title { + position: relative; + &::before { + content: ""; + position: absolute; + left: 0; + bottom: 0; + width: 50px; + height: 2px; + background: $color-primary; + } +} + +.filter-tag-wrapper { + .bar-title { + padding-bottom: 8px; + margin-bottom: 16px; + } +} +.filter-group { + display: flex; + flex-wrap: wrap; + margin: 0 -8px; + .btn { + margin: 8px; + border-radius: 6px; + padding: 6px 15px; + color: $body-color; + &:hover { + color: #fff; + } + } +} + +.activity-wrapper { + .custom-tab-content { + background: transparent; + padding: 0; + } + .custom-history { + margin-right: 60px; + @include xs-device { + margin-right: 0; + } + + &:not(:last-child) { + margin-bottom: 20px; + } + .single-item-history { + background: $bg-color-1; + padding: 15px; + border-radius: 10px; + border: none; + display: flex; + align-items: center; + h3 { + font-size: 20px; + margin-bottom: 5px; + a { + color: #fff; + &:hover { + color: $color-primary; + } + } + } + + .avatar { + width: 80px; + height: 80px; + } + .date { + font-weight: 500; + color: #999; + font-size: 16px; + } + } + &.notification-history { + h4 { + margin-bottom: 5px; + a { + color: #fff; + } + } + .reaction { + font-size: 22px; + cursor: pointer; + width: 55px; + height: 55px; + background: rgba(255, 255, 255, 0.1); + align-items: center; + justify-content: center; + border-radius: 50%; + display: flex; + i { + transition: 0.3s; + } + &:hover { + i { + color: $color-primary; + } + } + } + + .single-item-history { + background: $bg-color-1; + @include tiny-device { + padding: 15px 10px; + + .reaction { + width: auto; + height: auto; + background: transparent; + } + } + } + } + } +} +.flex-md-wrap { + @include xs-device { + align-items: flex-start; + flex-direction: column; + } +} diff --git a/site/resources/scss/components/_authors.scss b/site/resources/scss/components/_authors.scss new file mode 100644 index 0000000..197ef83 --- /dev/null +++ b/site/resources/scss/components/_authors.scss @@ -0,0 +1,145 @@ +.single-author { + background: $bg-color-1; + padding: 15px 15px 25px 15px; + border-radius: 8px; + transition: 0.3s; + + .thumb { + position: relative; + overflow: hidden; + border-radius: 8px; + img { + width: 100%; + } + } + .content { + text-align: center; + position: relative; + z-index: 2; + margin-top: -35px; + .btn-small { + padding-left: 25px; + padding-right: 25px; + min-width: 104px; + justify-content: center; + &:hover { + transform: none; + color: #fff; + } + } + .author-thumb { + width: 65px; + height: 65px; + position: relative; + overflow: hidden; + border-radius: 50%; + border: 2px solid $body-color; + display: block; + margin: 0 auto 10px; + transition: 0.3s; + img { + transition: 0.5s; + } + } + .title { + margin-bottom: 15px; + a { + color: #fff; + } + } + .btn-inner { + i { + display: none; + font-size: 22px; + } + &.active { + .btn-text { + display: none; + } + i { + display: block; + color: $color-primary; + } + } + } + } + &:hover { + .content { + .author-thumb { + border-color: $color-primary; + img { + transform: scale(1.1); + } + } + } + transform: translateY(-5px); + } + + &.profile { + .author-thumb { + border-color: $color-primary; + } + .title { + margin-bottom: 8px; + text-transform: capitalize; + a { + color: #fff; + } + } + p { + font-weight: 400; + font-size: 16px; + } + .social { + a { + width: 35px; + height: 35px; + font-size: 18px; + } + } + .content .author-thumb { + width: 70px; + height: 70px; + margin-bottom: 15px; + } + } +} + +// author filter tabs +.custom-tabs { + &.author-tabs { + padding: 15px 15px 5px 15px; + .btn { + border-radius: 6px; + padding: 8px 16px; + color: $body-color; + &::before { + display: none; + } + &:hover { + transform: none; + border-color: $color-primary; + color: $color-primary; + background: transparent; + } + &.active { + background: $color-primary; + border-color: $color-primary; + color: #fff; + } + } + li { + margin-bottom: 10px; + &:not(:last-of-type) { + margin-right: 15px; + } + } + } +} + +.author-profile-wrapper { + padding-left: 30px; + @include md-device { + padding-left: 0; + } +} diff --git a/site/resources/scss/components/_blog-details.scss b/site/resources/scss/components/_blog-details.scss new file mode 100644 index 0000000..0010ee3 --- /dev/null +++ b/site/resources/scss/components/_blog-details.scss @@ -0,0 +1,303 @@ +.blog-details-wrapper { + h2 { + font-size: 36px; + line-height: 52px; + @include sm-device { + font-size: 32px; + line-height: 48px; + } + @include xs-device { + font-size: 24px; + line-height: 36px; + } + } + + h3, + h2 { + margin-bottom: 20px; + } + p { + margin-bottom: 30px; + line-height: 30px; + } + img { + margin-bottom: 30px; + border-radius: 8px; + } + ul { + margin-bottom: 30px; + padding-left: 20px; + li { + margin-bottom: 10px; + list-style: disc; + font-size: 16px; + @include sm-device { + font-size: 16px; + } + } + } + figure { + margin-bottom: 30px; + } + blockquote { + background: $body-light; + padding: 25px 25px 25px 40px; + color: #fff; + font-size: 20px; + line-height: 32px; + border-radius: 4px; + font-family: $font-1; + border-left: 6px solid $color-primary; + margin-bottom: 30px; + @include xs-device { + padding: 25px 25px 25px 25px; + font-size: 17px; + } + } +} +.blog-content { + background: $bg-color-1; + padding: 25px; + border-radius: 6px; +} +.post-media { + background: $border-color; + padding: 10px; + border-radius: 6px; +} +// comment box +.styler-1 { + background: $bg-color-1; + padding: 40px; + border-radius: 6px; + margin-top: 40px; + @include xs-device { + padding: 40px 15px; + } +} +.comment-box-wrapper { + ul { + padding-left: 0; + li { + p { + margin-bottom: 0; + } + &:not(:last-child) { + margin-bottom: 45px; + } + &:nth-child(3) { + margin-left: 40px; + @include xs-device { + margin-left: 0; + } + } + } + } +} +.single-comment-box { + @include xs-device { + flex-direction: column; + align-items: flex-end; + } + .inner { + .avatar { + width: 60px; + height: 60px; + overflow: hidden; + position: relative; + border-radius: 50%; + margin-right: 16px; + @include sm-device { + width: 45px; + height: 45px; + margin-right: 10px; + } + img { + width: 100%; + border-radius: 0; + } + } + } + .content { + flex: 1; + .title { + display: inline-flex; + align-items: center; + margin-bottom: 7px; + a { + color: #fff; + &:hover { + color: $color-primary; + } + } + span { + padding-left: 10px; + color: $body-color; + position: relative; + margin-left: 5px; + &::before { + content: "|"; + position: absolute; + left: 0; + color: #d1d1d1; + } + } + } + p { + padding-right: 190px; + @include md-device { + padding-right: 40px; + } + @include xs-device { + padding-right: 20px; + font-size: 16px; + } + } + } + .reply { + height: 36px; + border: 2px solid #a1a1a1; + border-radius: 50%; + min-width: 36px; + display: flex; + align-items: center; + justify-content: center; + font-size: 20px; + cursor: pointer; + transition: 0.3s; + i { + transition: 0.3s; + } + &:hover { + border-color: $color-primary; + i { + color: $color-primary; + } + transform: translateX(5px); + } + } +} +.wallet-activation, +.related-blog-activation { + @include xs-device { + padding-bottom: 25px; + } +} +// contact form +.contact-form-wrapper { + input, + textarea { + background: #09080d; + border: none; + color: #fff; + } + input { + min-height: 50px; + } +} + +// sidebar +.sidebar { + margin-left: 25px; + @include md-device { + margin-left: 0; + } + .category-list { + li { + list-style: none; + margin-bottom: 10px; + a { + display: flex; + justify-content: space-between; + + &:hover { + color: $color-primary; + } + } + &:hover { + .count-text { + color: $color-primary; + } + } + &:not(:last-child) { + a { + border-bottom: 1px solid #323232; + padding-bottom: 10px; + } + } + } + } +} +.single-widget { + background: $bg-color-1; + padding: 25px 20px; + border-radius: 8px; + + .title { + position: relative; + padding-bottom: 10px; + font-family: $font-1; + &::before { + content: ""; + position: absolute; + left: 0; + bottom: 0; + height: 2px; + background: rgb(255, 81, 47); + width: 80px; + } + } + ul { + margin-bottom: 0; + padding-left: 0; + li { + list-style: none; + a { + font-size: 17px; + } + } + } +} +.category-list { + .count-text { + background: #3d3d3d; + padding: 2px 15px; + border-radius: 20px; + color: #fff; + transition: 0.3s; + font-size: 15px; + font-family: $font-1; + } +} +.recent-post { + ul { + li { + color: #dedede; + + &:not(:last-child) { + padding-bottom: 10px; + border-bottom: 1px solid #323232; + } + a { + color: #fff; + &:hover { + color: $color-primary; + } + } + .cate { + color: $body-color; + font-size: 14px; + display: inline-block; + margin-top: 5px; + } + } + } +} +.widget-tag { + .filter-group .btn { + color: #bbb; + &:hover { + color: #fff; + } + } +} diff --git a/site/resources/scss/components/_blog.scss b/site/resources/scss/components/_blog.scss new file mode 100644 index 0000000..a425a6e --- /dev/null +++ b/site/resources/scss/components/_blog.scss @@ -0,0 +1,66 @@ +.single-blog { + background: $bg-color-1; + padding: 20px; + border-radius: 8px; + + .title { + font-size: 20px; + line-height: 28px; + padding-right: 20%; + a { + color: #fff; + } + } + .content { + padding-top: 30px; + padding-bottom: 15px; + } + .thumb { + position: relative; + display: block; + overflow: hidden; + border-radius: 8px; + img { + width: 100%; + min-height: 260px; + object-fit: cover; + transition: 0.5s; + } + } + &:hover { + .thumb { + img { + transform: scale(1.2); + } + } + .title a { + color: $color-primary; + } + } +} +.meta { + display: inline-flex; + align-items: center; + flex-wrap: wrap; + margin-bottom: 0; + margin-left: -8px; + margin-right: -8px; + padding-left: 0 !important; + + li { + padding: 0 8px; + margin-bottom: 10px; + position: relative; + list-style: none !important; + font-size: 15px; + + i { + padding-right: 5px; + } + } + + .date { + display: inline-flex; + align-items: center; + } +} diff --git a/site/resources/scss/components/_counter.scss b/site/resources/scss/components/_counter.scss new file mode 100644 index 0000000..2500ee8 --- /dev/null +++ b/site/resources/scss/components/_counter.scss @@ -0,0 +1,140 @@ +.counter-style-1 { + font-family: $font-3; + color: #fff; + margin-bottom: 40px; + &:last-child { + margin-bottom: 0; + } + .number { + font-size: 50px; + font-weight: 400; + line-height: 1.3; + text-transform: uppercase; + @include xl-device { + font-size: 40px; + } + } + .counter-title { + font-size: 18px; + line-height: 1.3; + font-family: $font-2; + text-transform: capitalize; + @include xl-device { + font-size: 20px; + } + } + .count-kilo { + font-size: 30px; + display: flex; + align-self: center; + padding-top: 5px; + } +} + +// style two +.counter-wrapper-style-two { + display: flex; + align-items: center; + flex-wrap: wrap; + margin-left: -30px; + margin-right: -30px; + margin-top: 40px; + .counter-style-1 { + margin-bottom: 40px; + padding: 0 30px; + } +} + +.countdown.countdown-style-two { + background: transparent; + left: 0; + transform: none; + width: 100%; + padding: 0; + justify-content: flex-start; + margin-bottom: 10px; + height: auto; + @include sm-device { + justify-content: center; + width: auto; + } + > div { + .countdown-heading { + display: none; + } + } + + .countdown-value { + font-weight: 600; + font-size: 18px; + background: #343434; + height: 40px; + width: 35px; + border-radius: 4px; + display: flex; + align-items: center; + justify-content: center; + margin: 5px; + padding: 5px; + @include sm-device { + margin: 0 3px; + font-size: 14px; + } + } +} +.product-style-trendy { + .over-content-2 { + width: 210px; + right: 10px; + left: auto; + transform: none; + padding: 11px 15px 15px 15px; + display: flex; + flex-direction: column; + align-items: center; + @include sm-device { + width: 175px; + .btn { + padding: 6px 20px; + } + } + } + .content-left { + transform: none; + left: 10px; + display: flex; + flex-direction: column; + width: 170px; + padding: 12px 15px; + @include sm-device { + width: 125px; + } + + .title { + font-size: 16px; + line-height: 26px; + margin-bottom: 5px; + a { + color: #fff; + &:hover { + color: $color-primary; + } + } + } + small { + font-size: 12px; + font-weight: 300; + } + strong { + color: $color-primary; + } + } + .reaction-btn { + height: 30px; + border-radius: 20px; + i { + position: relative; + left: -6px; + } + } +} diff --git a/site/resources/scss/components/_create-item.scss b/site/resources/scss/components/_create-item.scss new file mode 100644 index 0000000..0724b6a --- /dev/null +++ b/site/resources/scss/components/_create-item.scss @@ -0,0 +1,8 @@ +.create-item-wrapper { + background: $bg-color-1; + padding: 50px; + border-radius: 10px; + @include sm-device { + padding: 50px 15px; + } +} diff --git a/site/resources/scss/components/_explore.scss b/site/resources/scss/components/_explore.scss new file mode 100644 index 0000000..5b34cd2 --- /dev/null +++ b/site/resources/scss/components/_explore.scss @@ -0,0 +1,411 @@ +// style one +.explore-style-one { + background: $bg-color-1; + padding: 15px; + border-radius: 10px; + transition: 0.3s; + .thumb { + position: relative; + overflow: hidden; + display: block; + border-radius: 10px; + img { + display: block; + width: 100%; + height: auto; + object-fit: cover; + transition: 0.5s; + } + } + .content { + .title { + font-size: 20px; + padding-right: 10px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + a { + color: #fff; + &:hover { + color: $color-primary; + } + } + } + } + .profile-share { + a { + position: relative; + z-index: 1; + display: block; + + &:nth-child(2), + &:nth-child(3) { + margin-left: -15px; + } + &.more-author-text { + padding-left: 7px; + } + &:hover:not(.more-author-text) { + z-index: 2; + transform: translateY(-5px); + } + } + } + .profile-share { + a:not(.more-author-text) { + width: 30px; + height: 30px; + overflow: hidden; + border-radius: 50%; + } + } + .product-owner { + .bid-owner { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + padding-right: 10px; + flex-basis: 174px; + } + strong a { + color: #fff; + font-weight: 500; + + &:hover { + color: $color-primary; + } + } + .biding-price { + color: #fff; + font-weight: 600; + + i { + color: $color-primary; + padding-right: 5px; + } + } + } + + .btn-small { + padding: 6px 15px; + } + .history { + font-weight: 600; + font-size: 14px; + + i { + font-size: 20px; + padding-right: 5px; + font-weight: 500; + } + } + .action-wrapper { + border-top: 1px dashed #515151; + } + transition: 0.3s; + &:hover { + .thumb { + img { + transform: scale(1.21); + } + } + } +} + +.reaction-btn { + border: none; + font-size: 14px; + font-weight: 500; + position: absolute; + top: 15px; + right: 15px; + color: #fff; + background: #343444; + border-radius: 6px; + padding: 5px 6px; + min-width: 45px; + height: 24px; + display: flex; + align-items: center; + justify-content: space-between; + i { + color: $color-error; + font-size: 20px; + padding-right: 5px; + } + &.left { + right: auto; + left: 15px; + } +} +.more-dropdown { + color: #fff; + cursor: pointer; + padding: 0 5px; + text-align: right; + position: relative; + left: 5px; + font-size: 20px; + i { + color: $body-color; + transition: 0.3s; + &:hover { + color: #fff; + } + } +} +// countdown css +.countdown { + width: 190px; + position: absolute; + display: flex; + justify-content: center; + bottom: 0; + left: 50%; + transform: translate(-50%); + bottom: 12px; + cursor: pointer; + padding: 5px 8px; + border-radius: 5px; + z-index: 2; + &.btn:hover { + transform: translateY(0); + transform: translate(-50%); + } + + .countdown-value { + font-size: 16px; + font-weight: 400; + color: #fff; + } + .countdown-heading { + padding: 0 10px; + } + .seconds { + .countdown-heading { + padding: 0; + } + } + &.btn-gradient { + cursor: default; + &::before { + display: none; + } + } +} +// style tow +.explore-style-two { + background-color: #000000; + background-image: linear-gradient(147deg, #000000 0%, #2c3e50 74%); + padding: 30px; + border-radius: 35px; + position: relative; + .thumb { + img { + border-radius: 30px; + width: 100%; + } + } + .slick-list { + border-radius: 30px; + } + .explore-content { + background: #ffffff; + padding: 17px; + backdrop-filter: blur(25px); + border-radius: 10px; + display: flex; + align-items: center; + justify-content: space-between; + max-width: 301px; + position: absolute; + bottom: 60px; + right: -35px; + animation: jumpTwo 5.5s linear infinite; + @include md-device { + right: 0; + } + @include sm-device { + right: auto; + left: 50%; + transform: translate(-50%); + width: 95%; + max-width: 420px; + bottom: 20px; + animation: none; + } + @include xs-device { + width: 83%; + padding: 10px; + bottom: 30px; + } + @include tiny-device { + padding: 10px; + .btn { + font-size: 12px; + } + } + .btn { + padding-left: 18px; + padding-right: 18px; + @include tiny-device { + padding-left: 8px; + padding-right: 8px; + } + } + .price { + padding-right: 28px; + span { + font-size: 12px; + line-height: 18px; + font-weight: 500; + margin-bottom: 5px; + color: #a1a1a1; + display: inline-block; + } + h6 { + font-size: 16px; + font-weight: 500; + line-height: 23px; + font-family: $font-1; + margin: 0; + color: #343444; + } + } + } +} +.explore-style-two { + @include xs-device { + padding: 15px; + } + @include tiny-device { + padding: 10px; + + .explore-content { + width: 85%; + bottom: 22px; + } + } +} +.sticker { + font-size: 14px; + background: #ff512f; + color: #fff; + padding: 4px 10px; + border-radius: 4px; + position: absolute; + top: 50px; + left: 50px; +} + +.explore-style-three { + margin-left: -20px; + margin-right: -20px; + .thumb-wrapper, + .counter-wrapper { + padding: 0 20px; + } + @include md-device { + justify-content: center; + margin-bottom: 40px; + } + @include sm-device { + flex-wrap: wrap; + .shape { + display: block; + max-width: 100%; + &.shape-6 { + right: 20px; + } + &.shape-5 { + bottom: 10px; + left: 22px; + } + } + .counter-wrapper { + display: flex; + } + .counter-style-1 { + margin: 15px; + .counter-title { + font-size: 20px; + } + .count-kilo { + font-size: 20px; + } + .number { + font-size: 35px; + } + } + } +} + +// filter +.filter-style-one { + @include sm-device { + flex-wrap: wrap; + margin: -10px; + } + .filter-left-cate { + flex: 0 0 50%; + max-width: 50%; + margin: -10px; + @include md-device { + flex: 0 0 58%; + max-width: 58%; + } + @include sm-device { + flex: 0 0 100%; + max-width: 100%; + margin: 0; + flex-wrap: wrap; + } + } + .filter-right-cate { + flex: 0 0 35%; + max-width: 35%; + margin: -10px; + @include md-device { + flex: 0 0 42%; + max-width: 42%; + } + @include sm-device { + flex: 0 0 100%; + max-width: 100%; + margin: 0; + } + @include xs-device { + flex-wrap: wrap; + } + } +} +.filter-left-cate { + .nice-select { + width: 100%; + } + .filter-select-option { + flex-basis: 33.333333%; + padding: 10px; + @include sm-device { + flex-basis: 100%; + } + } +} +.filter-right-cate { + .nice-select { + width: 100%; + } + .filter-select-option { + flex-basis: 50%; + padding: 10px; + @include xs-device { + flex-basis: 100%; + } + } +} + +// hero explore +.slider-activation-banner-3 .slick-dots { + position: absolute; + bottom: -65px; +} diff --git a/site/resources/scss/components/_file-upload.scss b/site/resources/scss/components/_file-upload.scss new file mode 100644 index 0000000..de1e922 --- /dev/null +++ b/site/resources/scss/components/_file-upload.scss @@ -0,0 +1,98 @@ +.upload-area label { + border: 2px solid rgb(74, 74, 74); + width: 100%; + height: 250px; + border-radius: 5px; + display: flex; + justify-content: center; + align-items: center; + cursor: pointer; + flex-direction: column; + margin-bottom: 15px; +} +.upload-area label i { + font-size: 40px; + stroke-width: 1px; + color: $color-primary; + margin-bottom: 10px; +} +.upload-area label .file-type { + font-size: 14px; + font-family: $font-2; +} +.upload-area label span { + font-size: 20px; +} + +.upload-area .upload-formate h6.title { + font-size: 16px; + font-weight: 400; + margin-bottom: 10px; +} + +.upload-area .upload-formate p.formate { + font-size: 16px; + font-weight: 400; +} + +.upload-area .brows-file-wrapper { + position: relative; + background: #1a1a1a; + border-radius: 10px; + transition: 0.3s; + &:hover { + background: #000; + } +} +.upload-area .brows-file-wrapper input { + position: absolute; + height: 100%; + width: 100%; + opacity: 0; + cursor: pointer; +} +.upload-btn-wrapper { + padding: 20px 30px 10px; + border-radius: 10px; + background: $bg-color-1; + margin-top: 30px; + .btn { + margin-bottom: 10px; + } + @include xs-device { + padding: 20px 15px 10px; + .input-box { + width: 100%; + .btn { + width: 100%; + } + } + .d-flex-center { + justify-content: center; + width: 100%; + margin-bottom: 10px; + } + } +} +.form-field-wrapper { + background: #1a1a1a; + border-radius: 10px; + padding: 20px 40px 0 40px; + @include xs-device { + padding: 20px 15px 0 15px; + } + + .nice-select { + width: 100%; + background: #1a1a1a; + border-color: rgb(74, 74, 74); + } + input, + textarea { + border-color: rgb(74, 74, 74); + color: #fff; + &:focus { + border-color: $color-primary; + } + } +} diff --git a/site/resources/scss/components/_footer.scss b/site/resources/scss/components/_footer.scss new file mode 100644 index 0000000..b24afde --- /dev/null +++ b/site/resources/scss/components/_footer.scss @@ -0,0 +1,148 @@ +.footer-inner { + background: #000; +} +.copyright { + padding-top: 40px; + padding-bottom: 40px; + + p { + margin: 0; + font-size: 16px; + line-height: 24px; + color: rgba(255, 255, 255, 0.75); + font-family: $font-3; + } +} +.footer-widget { + &.first-block { + padding-right: 27%; + @include sm-device { + padding-right: 0; + } + } + p { + font-size: 16px; + line-height: 27px; + color: rgba(255, 255, 255, 0.75); + } + h4 { + margin-bottom: 30px; + text-transform: capitalize; + position: relative; + &::after { + content: ""; + position: absolute; + left: 0; + bottom: -10px; + background: $gradient-primary; + width: 50px; + height: 3px; + } + } + ul, + ol { + li { + font-size: 16px; + line-height: 26px; + a { + color: rgba(255, 255, 255, 0.75); + &:hover { + color: $color-primary; + margin-left: -6px; + } + } + &:not(:last-child) { + margin-bottom: 14px; + } + } + } +} +.social { + display: flex; + align-items: center; + margin: 0 -8px; + a { + width: 42px; + height: 42px; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50%; + border: 2px solid rgba(255, 255, 255, 0.75); + margin: 0 8px; + font-size: 20px; + color: rgba(255, 255, 255, 0.9); + &:hover { + background: $color-primary; + border-color: $color-primary; + color: #fff; + transform: translateY(-3px); + } + } +} +.subscribe-mail { + position: relative; + input { + width: 100%; + border: 2px solid $border-color-light; + height: 52px; + border-radius: 10px; + padding: 20px 75px 20px 15px; + background: transparent; + font-weight: 500; + font-size: 14px; + color: $body-color; + &:focus { + border-color: $color-primary; + } + } + button { + padding: 0; + justify-content: center; + border: none; + position: absolute; + right: 5px; + top: 5px; + background: $gradient-primary; + width: 61px; + height: 42px; + border-radius: 10px; + font-size: 20px; + color: #fff; + line-height: 42px; + i { + padding-right: 0; + transition: 0.5s; + } + &:hover { + i { + transform: rotate(45deg); + } + } + } +} + +.icon-facebook { + &:hover { + background: #3b5998 !important; + border-color: #3b5998 !important; + } +} +.icon-twitter { + &:hover { + background: #1da1f2 !important; + border-color: #1da1f2 !important; + } +} +.icon-instagram { + &:hover { + background: #c32aa3 !important; + border-color: #c32aa3 !important; + } +} +.icon-linkedin { + &:hover { + background: #0a66c2 !important; + border-color: #0a66c2 !important; + } +} diff --git a/site/resources/scss/components/_header.scss b/site/resources/scss/components/_header.scss new file mode 100644 index 0000000..7dfc9f5 --- /dev/null +++ b/site/resources/scss/components/_header.scss @@ -0,0 +1,295 @@ +.fluid-header { + @media (min-width: 1920px) { + padding: 15px 172px; + } + @include xl-device { + padding: 15px 118px; + } + @include lg-device { + padding: 20px 15px; + } +} +.header-fixed { + background: transparent; + position: fixed; + width: 100%; + left: 0; + top: 0; + z-index: 9999; + transition: 0.3s; + border-bottom: 2px solid transparent; + &.sticky { + background: #000; + border-color: #1a1a1a; + } +} + +// header right +.header-right-inner { + display: flex; + align-items: center; + margin-bottom: 0; + + .btn-gradient { + i { + color: #fff; + } + } + .avatar-info > a { + width: 46px; + height: 46px; + border-radius: 50%; + overflow: hidden; + display: inline-flex; + img { + width: 100%; + } + @include xs-device { + width: 35px; + height: 35px; + } + } + > li { + position: relative; + margin-right: 15px; + display: flex; + @include xs-device { + margin-right: 10px; + } + @include tiny-device { + margin-right: 5px; + } + .list-group { + &.submenu { + width: 320px; + padding: 0; + + .list-group-item { + position: relative; + display: block; + padding: 20px 24px; + color: #fff; + text-decoration: none; + background-color: #09080d; + &.active, + &:hover { + border-color: #1a1a1a; + background-color: #1a1a1a; + } + &:not(:last-child) { + border-bottom: 1px solid rgba(255, 255, 255, 0.125); + } + h5 { + font-size: 16px; + } + p { + font-size: 12px; + line-height: 18px; + margin-bottom: 0; + } + } + } + } + .submenu { + min-width: 230px; + height: auto; + position: absolute; + z-index: 99; + top: 90%; + right: 0; + z-index: 90; + opacity: 0; + visibility: hidden; + text-align: left; + padding: 12px 0; + transition: 0.3s; + background-color: #111; + border-radius: 10px; + border: 1px solid #333; + li { + a { + font-weight: 500; + padding: 8px 14px; + font-size: 15px; + color: #dadada; + margin: 0 10px; + border-radius: 4px; + transition: 0.3s; + display: inline-flex; + align-items: center; + &.active, + &:hover { + color: $color-primary; + } + &:hover { + padding-left: 5px; + } + i { + padding-right: 8px; + } + } + } + } + + &:last-child { + margin-right: 0; + } + &:hover { + .submenu { + opacity: 1; + visibility: visible; + top: 100%; + } + } + } + .wallet-button { + @include xs-device { + span { + font-size: 0; + } + .btn { + padding: 0; + width: 35px; + height: 35px; + min-height: auto; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50%; + i { + padding: 0; + font-size: 18px; + } + } + } + @include xs-device { + .btn { + width: 35px; + height: 35px; + } + } + } +} +.new { + color: #fff; + margin-left: 5px; + font-size: 14px; +} +// nitification bar +.notification-bar > a { + width: 46px; + height: 46px; + border: 2px solid $body-color; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50%; + position: relative; + .ni-badge { + font-size: 14px; + font-weight: 500; + background: $color-primary; + color: #fff; + position: absolute; + right: -15px; + top: 0; + z-index: 3; + min-width: 30px; + line-height: 20px; + display: flex; + align-items: center; + justify-content: center; + border-radius: 10px; + } + i { + font-size: 20px; + } +} +// searchbar +.search-bar { + border: 2px solid #c1c1c1; + border-radius: 10px; + position: relative; + max-width: 260px; + input { + width: 100%; + background: transparent; + border: none; + padding: 0 15px; + font-size: 15px; + color: $body-color; + height: 42px; + padding-left: 55px; + font-weight: 500; + color: #fff; + } + .search-btn { + position: absolute; + left: 10px; + top: 5px; + font-size: 20px; + color: #efefef; + background: transparent; + width: 32px; + height: 32px; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + cursor: pointer; + border: none; + } + &:hover { + i { + background: transparent; + } + } +} + +.large-mobile-blog-search { + @include sm-device { + position: absolute; + top: 100%; + width: 300px; + right: 0; + margin-bottom: 0; + z-index: 3; + opacity: 0; + visibility: hidden; + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + &.active { + opacity: 1; + visibility: visible; + } + } + @include xs-device { + right: auto; + left: -122px; + top: 45px; + } + @include tiny-device { + width: 290px; + } + input { + background: #000; + } +} +.search-mobile-icon { + button { + background: transparent; + color: #fff; + font-size: 22px; + border: none; + cursor: pointer; + } +} +.wallet-button { + .btn { + padding-left: 15px; + padding-right: 15px; + } +} + +.logo-dark { + display: none; +} diff --git a/site/resources/scss/components/_hero.scss b/site/resources/scss/components/_hero.scss new file mode 100644 index 0000000..fb26833 --- /dev/null +++ b/site/resources/scss/components/_hero.scss @@ -0,0 +1,443 @@ +.bg-1 { + background-image: url(../img/headerbg-dark.jpg); +} +.bg-2 { + background-image: url(../img/headerbg-dark.jpg); +} +.bg-3 { + background-image: url(../img/headerbg-dark.jpg); +} +.bg-4 { + background-image: url(../img/headerbg-dark.jpg); +} +.bg-5 { + background-image: url(../img/headerbg-dark.jpg); +} +.bg-6 { + background-image: url(../img/headerbg-dark.jpg); +} +.bg-7 { + background-image: url(../img/headerbg-dark.jpg); +} +.bg-image { + background-repeat: no-repeat; + background-position: center center; + background-size: cover; +} +.hero-banner-style { + .banner-content { + position: relative; + z-index: 1; + .title { + color: #fff; + font-family: $font-1; + span { + color: #14141f; + background: #fff; + background-size: 100% 100%; + background-clip: text; + -webkit-background-clip: text; + -webkit-text-stroke: 3px transparent; + } + @include lg-device { + font-size: 70px; + } + @include md-device { + font-size: 55px; + } + @include xs-device { + font-size: 35px; + margin-bottom: 20px !important; + } + } + p { + font-size: 19px; + line-height: 30px; + @include xs-device { + font-size: 16px; + } + } + } + + .hero-banner_inner { + display: flex; + align-items: center; + min-height: 100vh; + padding-top: 50px; + @include lg-device { + padding: 180px 0 170px; + min-height: auto; + } + @include md-device { + min-height: auto; + } + @include xs-device { + padding: 90px 0; + } + } + + .col-xxl-8 { + @include sm-device { + order: 2; + } + } + .col-xxl-4 { + @include sm-device { + order: 1; + margin-bottom: 80px; + } + } + @include xs-device { + overflow-x: hidden; + } + &.hero-banner-style-one { + .banner-content { + .title { + font-family: $font-3; + font-weight: 700; + } + } + } +} + +.group-btn { + margin-left: -7px; + margin-right: -7px; + @include xs-device { + margin-left: -5px; + margin-right: -5px; + } + a { + margin: 0 7px; + @include xs-device { + margin: 0 5px; + } + } + &.mt-8 { + @include xs-device { + margin-top: 30px !important; + } + } +} + +.shape { + position: absolute; + @include xs-device { + display: none; + } +} +.shape-2 { + right: 22%; + bottom: 5%; +} +.shape-3 { + top: -28%; + left: 33%; +} +.slider-wrapper { + position: relative; +} +.top-section-gap { + @media (max-width: 1919px) { + padding-top: 30px; + } +} + +// hero banner style two +.hero-banner-style-2 { + .banner-content { + z-index: 1; + .shape-4 { + top: 88px; + left: -21px; + max-width: 185px; + z-index: -1; + } + + .title { + font-weight: 300; + @include md-device { + br, + .shape { + display: none; + } + } + } + } + .shape-7 { + top: 100px; + right: 0; + } + .thumb-wrapper { + position: relative; + + .large { + border-radius: 185px; + } + .shape-5 { + bottom: 0; + left: 0; + } + .shape-6 { + top: 0; + right: 0; + } + } +} + +// hero banner style three +.hero-banner-style { + &.hero-banner-style-6 { + .title { + font-family: $font-1; + font-weight: 700; + } + .banner-content { + p { + color: rgba(255, 255, 255, 0.8); + padding: 0 13%; + @include sm-device { + padding: 0; + } + } + .color_primary { + background: -webkit-linear-gradient(#ff512f, #dd2476); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + -webkit-text-stroke: 0; + } + } + } + &.hero-banner-style-3 .title { + font-weight: 600; + } + // hero banner style five + &.hero-banner-style-5 { + .title { + line-height: 85px; + @include xl-device { + font-size: 65px; + } + @include md-device { + font-size: 55px; + line-height: 1.5; + } + @include xs-device { + font-size: 35px; + } + } + .hero-banner_inner { + @include xs-device { + padding-top: 25px; + } + } + .banner-content { + p { + padding: 0; + } + } + .sub-title { + font-size: 60px; + font-weight: 200; + display: inline-block; + } + } + + &.hero-banner-style-6 { + @extend .hero-banner-style-5; + .title { + line-height: 90px; + @include xl-device { + line-height: 90px; + } + @include md-device { + font-size: 55px; + line-height: 1.5; + } + @include xs-device { + font-size: 35px; + line-height: 1.3; + } + } + .sub-title { + font-size: 45px; + } + } +} + +// hero banner style four +.hero-banner-style-4 { + padding: 0 8%; + @include md-device { + padding: 0 15px; + } + @include xs-device { + padding: 0; + } + + .slick-list { + padding-top: 60px; + } + .slick-current { + transition: transform 0.3s !important; + } + + .banner-content { + .title { + font-weight: 600; + @include xl-device { + font-size: 60px; + } + @include xs-device { + font-size: 35px; + } + } + padding-right: 20px; + @include xs-device { + padding-right: 0; + } + .color_primary { + background: -webkit-linear-gradient(#ff512f, #dd2476); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + -webkit-text-stroke: 0; + } + } + @include xl-device { + .slick-list { + padding-top: 0; + } + .slick-current.slick-active + .slick-active { + margin-top: 0 !important; + } + .col-xl-7, + .col-xl-5 { + width: 50%; + } + padding-top: 30px; + } + @include md-device { + .col-xl-7 { + width: 60%; + } + .col-xl-5 { + width: 40%; + } + } + @include md-device { + .col-xl-7, + .col-xl-5 { + width: 100%; + } + .counter-wrapper-style-two { + margin-left: -20px; + margin-right: -20px; + } + .counter-wrapper-style-two .counter-style-1 { + padding: 0 20px; + } + .counter-style-1 .number { + font-size: 28px; + } + .counter-style-1 .counter-title { + font-size: 16px; + } + } +} + +.hero-banner-style-6 { + .top-0 { + top: -60px !important; + z-index: -1; + } + .left-0 { + left: -35px; + } + &.top-section-gap { + @media (max-width: 767px) { + padding-top: 105px; + } + } +} +.hero-banner-style-2 { + &.hero-banner-style .banner-content .title span { + &.color_primary { + background: -webkit-linear-gradient(#ff512f, #dd2476); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + -webkit-text-stroke: 0; + } + } +} + +// home 7 +.trendy-banner { + .hero-banner_inner { + padding: 150px 0; + @media (max-width: 1700px) { + min-height: auto; + padding: 100px 0; + } + @include xs-device { + padding: 50px 0 65px; + } + } +} +.thumb-wrapper { + position: relative; + .thumb { + position: relative; + overflow: hidden; + border-radius: 20px; + .title { + font-size: 16px; + line-height: 24px; + a { + color: #fff; + &:hover { + color: $color-primary; + } + } + } + + .btn { + position: relative; + left: 20px; + pointer-events: none; + } + } + .over-content { + position: absolute; + left: 50%; + bottom: 10px; + background: #000; + transform: translateX(-50%); + width: 350px; + border-radius: 12px; + padding: 5px 0 5px 20px; + @include sm-device { + width: 260px; + } + } + .countdown { + transform: none !important; + } + .reaction-btn { + i { + display: flex; + align-items: center; + justify-content: center; + width: 38px; + height: 38px; + background: #fff; + border-radius: 50%; + padding: 0; + } + } + &:hover { + img { + transform: scale(1.2); + opacity: 0.85; + } + } +} diff --git a/site/resources/scss/components/_inner-page.scss b/site/resources/scss/components/_inner-page.scss new file mode 100644 index 0000000..a0e09b3 --- /dev/null +++ b/site/resources/scss/components/_inner-page.scss @@ -0,0 +1,36 @@ +.inner-page-banner { + padding: 150px 0 90px; + background-image: url(../img/dark-inner.jpg); + @include xs-device { + padding: 100px 0 55px; + } + .title { + font-size: 30px; + font-family: $font-1; + line-height: 1; + @include xs-device { + font-size: 28px; + margin-bottom: 10px; + } + } + .inner { + padding: 20px; + display: flex; + align-items: center; + justify-content: space-between; + flex-wrap: wrap; + background: rgba(0, 0, 0, 0.25); + border-radius: 10px; + + @include xs-device { + flex-direction: column; + padding: 15px; + } + } + nav.mt-4 { + margin-top: 0 !important; + } +} +.breadcrumb-item.active { + color: #fff; +} diff --git a/site/resources/scss/components/_light-version.scss b/site/resources/scss/components/_light-version.scss new file mode 100644 index 0000000..ef6cb43 --- /dev/null +++ b/site/resources/scss/components/_light-version.scss @@ -0,0 +1,739 @@ +body { + .shape.light { + display: none; + @include xs-device { + display: none; + } + } + &.theme-dark { + .logo-light { + display: block; + } + .logo-dark { + display: none; + } + + .shape.light { + display: none; + } + } + + &.theme-light { + color: rgba(0, 0, 0, 0.7); + background: #fff; + + .shape.light { + display: block; + @include xs-device { + display: none; + } + } + + .search-mobile-icon button, + .hamburger-button { + color: $body-light; + } + .slick-dots { + margin-top: 10px; + @include xs-device { + margin-top: 0; + } + } + + .large-mobile-blog-search input { + background: #fff; + } + + .footer-inner, + .section-bg-separation-2 { + background: $body-bg-light; + } + + ::placeholder { + /* Chrome, Firefox, Opera, Safari 10.1+ */ + color: rgba(0, 0, 0, 0.7); + } + + :-ms-input-placeholder { + /* Internet Explorer 10-11 */ + color: rgba(0, 0, 0, 0.7); + } + + ::-ms-input-placeholder { + /* Microsoft Edge */ + color: $body-light; + } + p { + color: rgba(0, 0, 0, 0.68); + } + .btn-outline, + .btn-black { + border: 2px solid rgba(0, 0, 0, 0.35); + color: $body-light; + &:hover { + border-color: #dd2476; + color: #fff; + } + } + + .default-tab-list button { + border-color: $border-color; + &.is-checked { + border-color: $color-primary; + } + &:hover { + color: $color-primary; + border-color: $color-primary; + } + } + // header light css + + .mainmenu-nav .mainmenu li a, + .single-comment-box .content .title a { + color: $body-light; + &.active, + &:hover { + color: $color-primary; + } + } + .search-bar { + border-color: rgba(0, 0, 0, 0.5); + input, + .search-btn { + color: $body-light; + } + } + .subscribe-mail input { + border-color: rgba(0, 0, 0, 0.5); + } + .logo-light { + display: none; + } + .logo-dark { + display: block; + } + .theme-swithcher-wrap .theme-switcher-label .mode span, + .single-comment-box .content .title span { + color: rgba(0, 0, 0, 0.7); + } + .mainmenu-nav .mainmenu li .submenu, + .header-right-inner > li .submenu { + background-color: #fff; + border: 1px none; + box-shadow: 0px 3px 16px rgb(47 83 109 / 12%); + } + + .header-right-inner > li .submenu li a, + .single-blog .title a, + .avatar-info .content .title a { + color: $body-light; + &:hover { + color: $color-primary; + } + } + .mainmenu-nav .mainmenu li .submenu::after { + background: #fff; + } + h1, + h2, + h3, + h4, + h5, + h6, + .aw-h1, + .aw-h2, + .aw-h3, + .aw-h4, + .aw-h5, + .aw-h6 { + color: $body-light; + a { + &:hover { + color: $color-primary; + } + } + } + a { + color: rgba(0, 0, 0, 0.75); + &:hover { + color: $color-primary; + } + &.btn-gradient { + color: #fff; + } + &.color-primary { + color: $color-primary; + font-weight: 500; + } + } + .breadcrumb-item { + color: rgba(0, 0, 0, 0.75); + a { + &:hover { + color: $color-primary; + } + } + &.active { + color: $color-primary; + } + } + .header-fixed.sticky { + background: #fff; + border-color: #fff; + box-shadow: 0px 3px 16px rgb(47 83 109 / 12%); + } + .bg-1, + .bg-4, + .bg-3, + .bg-5 { + background-image: none; + background-color: $body-bg-light; + } + + // .bg-5 { + // background-image: url(.../../img/bg/bg-10.jpg); + // } + .bg-6 { + background-image: url(../img/headerbg.jpg); + } + .bg-7 { + background-image: url(../img/headerbg.jpg); + } + + .hero-banner-style .banner-content p { + font-weight: 400; + } + .hero-banner-style .banner-content .title { + color: $body-light; + } + .slick-dots li button { + border-color: $color-primary; + } + .hero-banner-style .banner-content .title span { + // -webkit-text-stroke-width: 0; + // -webkit-text-fill-color: $color-primary; + background: linear-gradient(-45deg, #ff512f, #dd2476, #ff512f, #dd2476); + background-size: 100% 100%; + -webkit-background-clip: text; + -webkit-text-stroke: 3px transparent; + -webkit-text-fill-color: #fff; + } + .hero-banner-style-3, + .hero-banner-style-4 { + &.hero-banner-style .banner-content .title span { + background: linear-gradient(-45deg, #ff512f, #dd2476, #ff512f, #dd2476); + background-size: 100% 100%; + -webkit-background-clip: text; + -webkit-text-stroke: 3px transparent; + -webkit-text-fill-color: #fff; + } + } + .hero-banner-style-6, + .hero-banner-style-2 { + &.hero-banner-style .banner-content .title span { + -webkit-text-stroke: 0; + -webkit-text-fill-color: transparent; + } + } + .default-tab-list button { + color: $color-placeholder; + &.is-checked { + color: #fff; + } + } + .explore-style-one .content .title a, + .explore-style-one .product-owner strong a, + .explore-style-one .product-owner .biding-price, + .more-dropdown i, + .popular-collection-style-one .title a, + .popular-collection-style-two .content .title a, + .single-author .content .title a, + .activity-wrapper .custom-history.notification-history h4 a, + .activity-wrapper .custom-history .single-item-history h3 a { + color: $body-light; + &:hover { + color: $color-primary; + } + } + .explore-style-two, + .signin-form, + .signup-wrapper.header-free-signin .signin-form-2 { + background: #ffffff; + box-shadow: 0px 3px 16px rgb(47 83 109 / 12%); + } + .signin-form-2 { + box-shadow: none; + } + .explore-style-one { + background: #fff; + border: 1px solid $body-bg-light2; + box-shadow: 0px 3px 16px rgb(47 83 109 / 12%); + } + .slick-list { + margin-top: -25px; + margin-bottom: -25px; + @include xs-device { + margin-top: 15px; + margin-bottom: 15px; + } + } + .slider { + .explore-style-one, + .single-blog, + .card-block-style-one, + .popular-collection-style-one { + margin-top: 25px; + margin-bottom: 25px; + @include xs-device { + margin-top: 15px; + margin-bottom: 15px; + } + } + } + .hero-banner-style-4 { + .slider { + .explore-style-one { + margin-top: 0; + } + } + } + .hero-banner_inner { + .slick-list { + margin-top: 0; + margin-bottom: 0; + } + } + .slick-pagination-50 .slick-dots { + bottom: -10px; + } + button.slide-arrow { + background: #fff; + box-shadow: 0px 3px 16px rgb(47 83 109 / 12%); + i { + color: $body-light; + } + } + .top-seller-style-one, + .popular-collection-style-one, + .top-seller-style-two, + .dropdown-menu-dark, + .filter-wrapper, + .custom-tabs, + .custom-tab-content, + .blog-content, + .single-widget, + .styler-1, + .blog-details-wrapper blockquote, + .contact-form-wrapper input, + .contact-form-wrapper textarea, + .post-media { + background: #fff; + box-shadow: 0px 3px 16px rgb(47 83 109 / 12%); + } + .custom-tab-content { + box-shadow: none; + } + .top-seller-style-one .title a, + .top-seller-style-two .title a { + color: $body-light; + } + .top-seller-style-one .price { + color: rgba(0, 0, 0, 0.65); + } + .slick-activation-01 .slick-track { + padding-bottom: 15px; + } + .card-block-style-one { + background: #fff; + box-shadow: 0px 3px 16px rgb(47 83 109 / 12%); + } + .reaction-btn { + box-shadow: 0px 3px 16px rgb(47 83 109 / 12%); + background: #fff; + color: $body-light; + border: 1px solid $border-color; + } + .footer-widget ul li a, + .footer-widget ol li a { + color: rgba(0, 0, 0, 0.75); + &:hover { + color: $color-primary; + } + } + .social a { + border-color: rgba(0, 0, 0, 0.5); + &:hover { + color: #fff; + } + } + .explore-style-one .action-wrapper { + border-top: 1px dashed #999; + } + .modal-content { + background-color: #fff; + box-shadow: 0px 3px 16px rgb(47 83 109 / 12%); + } + .btn-custom-closer { + box-shadow: 0px 3px 16px rgb(47 83 109 / 12%); + } + .modal-header { + border-bottom-color: $border-color; + } + .modal-footer { + border-top-color: $border-color; + } + .single-item-history:not(:last-child) { + border-bottom-color: $border-color; + } + .modal-content label, + .bidding-list li strong, + .modal-content input, + .blog-details-wrapper blockquote { + color: $body-light; + } + .bidding-list li { + color: #555; + font-weight: 400; + } + .bid-success-content strong { + color: $body-light; + } + .modal-content input { + border-color: $border-color; + } + .shape.dark { + display: none; + } + .single-blog, + .popular-collection-style-two .content, + .single-author, + .top-seller-style-two, + .top-seller-style-one, + .popular-collection-style-one, + .popular-collection-style-two, + .wallet-block, + .form-field-wrapper, + .upload-area .brows-file-wrapper, + .signup-content, + .contact-inner-contnet { + background: #fff; + box-shadow: 0px 3px 16px rgb(47 83 109 / 12%); + } + .signup-content .medium { + color: rgba(0, 0, 0, 0.7); + } + label { + color: $body-light; + } + b, + strong { + color: $body-light; + } + .upload-area label { + border: none; + } + .upload-area label span { + color: $body-light; + } + .form-field-wrapper input, + .form-field-wrapper textarea { + border-color: $border-color; + color: $body-light; + } + .top-seller-style-one { + margin-top: 25px; + margin-bottom: 25px; + } + .counter-style-1, + .top-seller-style-two .items-number strong, + .dropdown-menu-dark .dropdown-item { + color: $body-light; + } + .hero-banner-style-2 .shape-7 { + display: none; + } + .top-seller-style-two .items-number::before { + background: #f5f8fa; + } + .top-seller-style-two .thumb { + border-color: $color-primary; + } + .dropdown-menu-dark .dropdown-item:focus, + .dropdown-menu-dark .dropdown-item:hover { + color: #fff; + background-color: $color-primary; + } + .card-block-style-one p { + font-weight: 400; + } + .nice-select { + background-color: #fff; + border-color: $border-color; + color: $body-light; + } + .nice-select:after { + border-bottom-color: $body-color-light; + border-right-color: $body-color-light; + } + .nice-select .list, + .biding-block { + background: #fff; + box-shadow: 0px 3px 16px rgb(47 83 109 / 12%); + } + .biding-block { + h3 { + color: $color-primary; + } + } + .details-content .custom-tabs li a { + &.active { + color: $color-primary; + } + } + + .details-content .subtitle, + .custom-tab-content .tab-pane .content p, + .details-content .custom-history .single-item-history .content span, + .custom-tab-content .tab-pane p, + .details-content .owner, + .biding-block span { + font-weight: 400; + } + .price-history, + .avatar-info .content .title { + font-weight: 500; + } + .custom-history { + /* Track */ + &::-webkit-scrollbar-track { + background: #ddd; + border-radius: 6px; + } + + /* Handle */ + &::-webkit-scrollbar-thumb { + background: #999; + border-radius: 6px; + } + } + .price-history, + .price-history span, + .details-content .custom-tabs li a { + color: $body-light; + } + .nice-select .list .option.selected, + .filter-wrapper .form-check label, + .widget-tag .filter-group .btn { + color: $body-light; + } + .hero-banner-style.hero-banner-style-6 .sub-title { + color: $body-light !important; + } + + .custom-tabs, + .custom-tab-content, + .details-dropdown .ri-more-fill, + .bidder { + background: #fff; + } + .nice-select .option:hover, + .nice-select .option.focus, + .nice-select .option.selected.focus { + background: #efefef; + } + .bidder { + border: none; + box-shadow: 0px 3px 16px rgb(47 83 109 / 12%); + .text-white { + color: $body-light !important; + font-weight: 500; + } + } + .form-check-input { + border: 2px solid $border-color; + } + .filter-wrapper { + box-shadow: 0px 3px 16px rgb(47 83 109 / 12%); + } + .accordion-button, + .accordion-button:not(.collapsed) { + background: $body-bg-light2; + color: $body-light; + } + .bg-overlay::before { + background: transparent; + } + .hero-banner-style.hero-banner-style-3 .banner-content p, + .hero-banner-style.hero-banner-style-5 .banner-content p { + color: rgba(0, 0, 0, 0.6); + } + .btn-play { + font-weight: 500; + color: $body-light; + } + .dropdown-menu-dark { + border: none; + } + .nice-select:active, + .nice-select.open, + .nice-select:focus, + .nice-select:hover { + border-color: $color-primary; + } + .single-item-history { + a.text-white { + font-weight: 500; + color: $body-light !important; + &:hover { + color: $color-primary !important; + } + } + } + + .blog-content, + .single-widget, + .styler-1, + .upload-btn-wrapper, + .create-item-wrapper, + .signup-wrapper { + background: #fff; + color: $body-light; + } + .create-item-wrapper, + .upload-btn-wrapper { + box-shadow: 0px 3px 16px rgb(47 83 109 / 12%); + } + .category-list .count-text, + .post-media, + .contact-form-wrapper input, + .contact-form-wrapper textarea, + .blog-details-wrapper blockquote { + background: #fff; + color: $body-light; + } + .sidebar .category-list li:not(:last-child) a, + .recent-post ul li:not(:last-child) { + border-bottom-color: $border-color; + } + .recent-post ul li a { + color: $body-color-light; + &:hover { + color: $color-primary; + } + } + .recent-post ul li .cate { + color: rgba(0, 0, 0, 0.65); + } + .widget-tag .filter-group .btn:hover { + color: #fff; + } + .title.text-white { + color: $body-light !important; + } + .single-comment-box .content .title span::before { + color: $body-color-light; + } + hr { + border-top-color: $border-color; + } + + .custom-tabs.author-tabs .btn:not(.active) { + color: rgba(0, 0, 0, 0.75); + &:hover { + color: $color-primary; + } + } + input[type="text"], + input[type="password"], + input[type="email"], + input[type="number"], + textarea { + border-color: $border-color; + &:focus { + border-color: $color-primary; + } + } + .signup-wrapper .register-with { + border-color: $border-color; + } + .popup-mobile-menu { + background-color: rgba(255, 255, 255, 0.8); + } + .popup-mobile-menu .inner, + .activity-wrapper .custom-history .single-item-history, + .signup { + background: #fff; + box-shadow: 0px 3px 16px rgb(47 83 109 / 12%); + } + .popup-mobile-menu .mainmenu li a { + color: $body-light; + } + .popup-mobile-menu .inner .header-top { + border-bottom-color: $border-color; + } + .activity-wrapper .custom-history .single-item-history .date { + color: #7b7b7b; + } + .activity-wrapper .custom-history.notification-history .reaction { + background: rgba(0, 0, 0, 0.1); + } + input[type="text"], + input[type="password"], + input[type="email"], + input[type="number"], + textarea { + color: $body-light; + } + .normal { + font-weight: 500; + } + .subscribe-mail input { + border-color: $border-color-light; + } + .inner-page-banner { + background-image: url(../img/light-inner.jpg); + } + .inner-page-banner { + .inner { + background: rgba(255, 255, 255, 0.25); + } + } + .explore-style-one .profile-share a.more-author-text, + .biding-price { + font-weight: 500; + } + .meta li, + .single-item-history .content span { + font-weight: 400; + } + // hero 7 + .section-bg-separation-3, + .hero-banner-style-one { + background: #fff; + } + .product-style-trendy .content-left .title a, + .product-style-trendy .content-left small { + color: #fff; + } + .product-style-trendy .content-left .title a:hover { + color: $color-primary; + } + .product-style-trendy .reaction-btn { + color: #fff; + background: #343444; + } + .new { + color: $body-color-light; + } + + .gallery-thumb .thumb::before, + .gallery-thumb .thumb::after, + .gallery-thumb .thumb { + background: #fff; + } + .gallery-thumb .thumb::before, + .gallery-thumb .thumb::after { + box-shadow: 0px 3px 16px rgb(47 83 109 / 12%); + } + } +} diff --git a/site/resources/scss/components/_menu.scss b/site/resources/scss/components/_menu.scss new file mode 100644 index 0000000..a377baf --- /dev/null +++ b/site/resources/scss/components/_menu.scss @@ -0,0 +1,327 @@ +.mainmenu-nav .mainmenu { + display: flex; + list-style: none; + padding: 0; + margin: 0 0 0 20px; + justify-content: flex-start; + flex-wrap: wrap; + @media (min-width: 1200px) and (max-width: 1280px) { + margin: 0; + } +} +.mainmenu-nav .mainmenu li { + position: relative; + margin: 0 10px; + @media (min-width: 1200px) and (max-width: 1280px) { + margin: 0 7px; + } +} +.mainmenu-nav .mainmenu li a { + color: rgba(255, 255, 255, 0.9); + font-weight: 500; + padding: 28px 12px; + font-size: 18px; + display: block; + border-radius: 3px; + font-family: $font-1; + @media (min-width: 1200px) and (max-width: 1280px) { + font-size: 15px; + } + &.active { + color: $color-primary; + } +} +@media only screen and (min-width: 1200px) and (max-width: 1599px) { + .mainmenu-nav .mainmenu li a { + padding: 28px 6px; + } +} +.mainmenu-nav .mainmenu li .submenu { + min-width: 230px; + height: auto; + position: absolute; + z-index: 99; + top: 90%; + left: 0; + z-index: 90; + opacity: 0; + visibility: hidden; + text-align: left; + padding: 12px 0; + transition: 0.3s; + background-color: #111; + border-radius: 10px; + border: 1px solid #333; + + &::after { + content: ""; + position: absolute; + left: 15px; + top: -8px; + width: 15px; + height: 15px; + background: #111; + transform: rotate(45deg); + z-index: -1; + } +} +.mainmenu-nav .mainmenu li .submenu li { + margin: 0; + a { + font-weight: 600; + padding: 6px 14px; + font-size: 15px; + color: #dadada; + margin: 0 10px; + border-radius: 4px; + transition: 0.3s; + display: inline-flex; + align-items: center; + justify-content: space-between; + &.active { + color: $color-primary; + } + } +} +.mainmenu-nav .mainmenu li .submenu li a svg, +.mainmenu-nav .mainmenu li .submenu li a i { + stroke-width: 2px; + width: 22px; + height: auto; + background: transparent; + padding: 2px; + border-radius: 2px; + transition: 0.3s; + width: 22px; + left: -10px; + position: relative; + opacity: 0; + margin: 0 -3px; +} +.mainmenu-nav .mainmenu li .submenu li a:hover { + color: $color-primary; + margin-left: 5px; +} +.mainmenu-nav .mainmenu li .submenu li a:hover svg, +.mainmenu-nav .mainmenu li .submenu li a:hover i { + opacity: 1; + left: 0; +} +.mainmenu-nav .mainmenu li:hover .submenu { + opacity: 1; + visibility: visible; + top: 100%; +} + +.has-dropdown > a { + position: relative; +} +.has-dropdown > a::after { + content: "\EA4E"; + position: absolute; + top: 50%; + font-family: "remixicon" !important; + right: -12px; + font-size: 22px; + transform: translateY(-50%); +} +@media only screen and (min-width: 1200px) and (max-width: 1599px) { + .has-dropdown > a::after { + right: -11px; + } +} + +.rn-header.header--fixed.position-absolute { + background: #00000042; + backdrop-filter: blur(1px); +} + +.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.nav-item .submenu { + background: #00000042 !important; +} +.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.nav-item .submenu li a { + color: #c7c7cf; +} +.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.nav-item .submenu li a svg, +.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.nav-item .submenu li a i { + color: #c7c7cf; +} + +.rn-header.header--fixed.sticky { + background: transparent; + backdrop-filter: blur(15px); +} + +.rn-header.header--fixed.sticky .mainmenu-nav .mainmenu li.nav-item .submenu { +} + +span.rn-badge-card { + margin-left: 7px; + padding: 1px 7px; + font-weight: 400; + position: relative; + z-index: 2; + font-size: 14px; +} +span.rn-badge-card::before { + content: ""; + width: 100%; + height: 100%; + left: 0; + top: 0; + position: absolute; + background: linear-gradient(95deg, #000000 15%, #0074b9 45%, #0400ff 75%, #2a1b95) 95%/200% 100%; + z-index: -1; + border-radius: 100px; + opacity: 0.5; +} + +// mobile menu css +.popup-mobile-menu { + z-index: 9999; + position: fixed; + content: ""; + width: 100%; + height: 100%; + position: fixed; + top: 0; + bottom: 0; + left: 0; + right: 0; + background-color: rgba(0, 0, 0, 0.8); + visibility: hidden; + opacity: 0; + transition: opacity 0.5s ease-out; +} +.popup-mobile-menu .inner { + width: 320px; + z-index: 999; + position: absolute; + background-color: #212e48; + height: 100%; + height: 100vh; + display: flex; + flex-direction: column; + opacity: 0; + left: -150px; + transition: all 0.5s ease-out; +} +.popup-mobile-menu .inner .header-top { + display: flex; + border-bottom: 1px solid #444; + align-items: center; + justify-content: space-between; + padding: 15px 20px; +} +.popup-mobile-menu .inner .header-top .logo a img { + max-height: 36px; +} +.popup-mobile-menu .inner .header-top .close-menu .close-button { + background: $gradient-primary; + border: 1px solid $color-primary-2; + color: #fff; + width: 38px; + height: 38px; + font-size: 21px; + display: flex; + align-items: center; + justify-content: center; + border-radius: 4px; +} +.popup-mobile-menu.active { + visibility: visible; + opacity: 1; +} +.popup-mobile-menu.active .inner { + opacity: 1; + left: 0; + overflow-y: auto; +} +.popup-mobile-menu .mainmenu { + list-style: none; + padding: 0; + margin: 0; + padding: 15px 20px; +} +.popup-mobile-menu .mainmenu li { + margin: 0; +} + +.popup-mobile-menu .mainmenu li a { + padding: 10px 0; + display: block; + font-size: 18px; + font-weight: 400; + color: #ddd; + display: flex; + justify-content: space-between; + font-family: $font-1; +} +.popup-mobile-menu .mainmenu li a svg { + width: 19px; + height: auto; +} +.popup-mobile-menu .mainmenu li a.active { + color: $color-primary !important; +} + +.popup-mobile-menu .mainmenu .has-dropdown .submenu { + padding: 0; + max-width: 100%; + list-style: none; + padding-left: 14px; + display: none; + font-size: 16px; +} +.popup-mobile-menu .mainmenu .has-dropdown .submenu li a { + font-size: 16px; + padding: 7px 0; +} +.popup-mobile-menu .mainmenu .has-dropdown .submenu li a.active { + color: $color-primary !important; +} +.popup-mobile-menu .mainmenu .rn-megamenu { + padding: 0; + max-width: 100%; + list-style: none; + padding-left: 14px; + display: none; +} +.popup-mobile-menu .mainmenu .mega-menu-item { + list-style: none; + padding: 0; + margin: 0; + padding-left: 0; +} +.popup-mobile-menu .mainmenu .mega-menu-item li a { + font-size: 15px; +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .popup-mobile-menu .mainmenu .single-mega-item { + width: 100%; + } +} +.popup-mobile-menu .mainmenu .single-mega-item:last-child .mega-menu-item li:last-child { + border-bottom-color: transparent; +} +.popup-mobile-menu .has-dropdown > a::after { + right: 0; +} +.hamburger-button { + background: transparent; + color: #fff; + border: none; + font-size: 24px; +} +.mainmenu-nav .mainmenu li.has-menu-child-item > a { + padding-right: 12px; +} +.dropdown-menu { + border-radius: 10px; + @include xs-device { + inset: 0px 0px auto auto !important; + margin: 0px !important; + transform: translate3d(-35px, 0px, 0px) !important; + } +} diff --git a/site/resources/scss/components/_modal.scss b/site/resources/scss/components/_modal.scss new file mode 100644 index 0000000..c826da3 --- /dev/null +++ b/site/resources/scss/components/_modal.scss @@ -0,0 +1,145 @@ +.modal-content { + position: relative; + display: flex; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #202027; + background-clip: padding-box; + border: none; + border-radius: 10px; + outline: 0; + label { + margin-bottom: 10px; + color: #fff; + } + input { + color: #fff; + height: 46px; + border-color: $body-color-light; + } + .modal-title { + font-family: $font-1; + font-size: 22px; + } +} +.btn-custom-closer { + background: #fff; + border: none; + border-radius: 20px; + width: 35px; + height: 35px; + font-size: 20px; + line-height: 35px; + position: absolute; + right: -12px; + top: -12px; + transition: 0.3s; + z-index: 3; + @include sm-device { + right: -5px; + } + &:hover { + background: $color-primary; + i { + color: #fff; + } + } +} +.modal-footer { + border-top-color: #333; +} +.modal-header { + border-bottom-color: #333; +} +.bidding-list { + margin: 0; + padding-top: 20px; + li { + display: flex; + align-items: center; + justify-content: space-between; + flex-wrap: wrap; + color: #ccc; + + &:not(:last-child) { + margin-bottom: 10px; + } + strong { + color: #fff; + font-weight: 500; + padding-left: 15px; + } + } +} + +.bid-success-content { + h3 { + font-size: 22px; + } + p { + font-size: 14px; + } + strong { + color: #fff; + font-weight: 500; + } +} + +// single history +.single-item-history { + margin-top: 15px; + &:not(:last-child) { + border-bottom: 1px solid #414141; + padding-bottom: 15px; + } + + .avatar { + width: 80px; + height: 80px; + display: flex; + align-items: center; + position: relative; + overflow: hidden; + padding-right: 7.5px; + border-radius: 6px; + + i { + width: 20px; + height: 20px; + background: #ff512f; + color: #fff; + border-radius: 50%; + position: absolute; + right: 6px; + bottom: 10px; + display: flex; + align-items: center; + justify-content: center; + } + img { + width: 100%; + border-radius: 50%; + } + } + .content { + flex: auto; + padding-left: 7.5px; + p { + margin-bottom: 0; + } + span { + font-size: 15px; + + &.time { + @include xs-device { + display: block; + margin-left: 0 !important; + } + } + } + } +} +.modal { + z-index: 9999; +} diff --git a/site/resources/scss/components/_nft-gallery.scss b/site/resources/scss/components/_nft-gallery.scss new file mode 100644 index 0000000..3378c3a --- /dev/null +++ b/site/resources/scss/components/_nft-gallery.scss @@ -0,0 +1,55 @@ +.nft-gallery-activation { + .slick-dots { + margin-top: 0; + } +} +.gallery-thumb { + .thumb { + position: relative; + border-radius: 10px; + background: #20202d; + padding: 15px; + margin: 50px 15px 50px; + @include xs-device { + margin: 40px 10px 40px; + } + &:nth-child(2) { + transform: translateX(140px); + } + img { + width: 100%; + } + .inner { + overflow: hidden; + border-radius: 10px; + } + &::before, + &::after { + content: ""; + position: absolute; + left: 0; + bottom: -14px; + z-index: -1; + background: $bg-color-1; + width: 70%; + height: 100%; + border-radius: 10px; + @include sm-device { + width: 50px; + } + } + &::after { + left: auto; + bottom: auto; + top: -14px; + right: 0; + } + + &:hover { + img { + opacity: 0.8; + transform: scale(1.2); + } + } + } +} diff --git a/site/resources/scss/components/_not-found.scss b/site/resources/scss/components/_not-found.scss new file mode 100644 index 0000000..54ecbc4 --- /dev/null +++ b/site/resources/scss/components/_not-found.scss @@ -0,0 +1,41 @@ +.not-found-inner { + padding-top: 100px; + @include xs-device { + padding-top: 20px; + } + .title { + margin-bottom: 35px; + @media screen and (min-width: 1200px) { + font-size: 75px; + } + @include md-device { + font-size: 60px; + } + @include sm-device { + font-size: 40px; + margin-bottom: 20px; + } + @include xs-device { + font-size: 30px; + margin-bottom: 20px; + } + } + p { + font-size: 20px; + margin-bottom: 35px; + line-height: 32px; + @include md-device { + margin-bottom: 20px; + } + @include xs-device { + font-size: 16px; + line-height: 28px; + } + } + .not-found-content { + padding-left: 20px; + @include xs-device { + padding-left: 0; + } + } +} diff --git a/site/resources/scss/components/_popular-collection.scss b/site/resources/scss/components/_popular-collection.scss new file mode 100644 index 0000000..95a6c83 --- /dev/null +++ b/site/resources/scss/components/_popular-collection.scss @@ -0,0 +1,103 @@ +.popular-collection-style-one { + background: $bg-color-1; + border-radius: 20px; + + padding: 20px; + a { + display: block; + } + + img { + border-radius: 10px; + width: 100%; + } + .large-thumbnail { + border-radius: 20px; + position: relative; + overflow: hidden; + img { + width: 100%; + } + } + .small-thumb-group { + display: flex; + margin-left: -10px; + margin-right: -10px; + img { + flex-basis: 33.333333%; + max-width: 33.333333%; + margin: 20px 10px 0; + @include sm-device { + flex-basis: 27.333333%; + max-width: 27.333333%; + } + } + } + .title { + margin-bottom: 3px; + a { + color: #fff; + } + } + &:hover { + .large-thumbnail { + img { + transform: scale(1.1); + } + } + } +} +.popular-collection-active { + @include xs-device { + .slick-dots { + bottom: -35px; + } + } +} + +// style two +.popular-collection-style-two { + position: relative; + overflow: hidden; + border-radius: 10px; + padding: 10px; + background: $bg-color-1; + .thumb { + display: block; + position: relative; + overflow: hidden; + + img { + transition: 0.3s linear; + width: 100%; + } + } + .content { + background: $bg-color-1; + padding: 20px 25px 10px; + .title { + font-size: 16px; + a { + color: #fff; + } + } + .item-code { + font-size: 16px; + line-height: 20px; + font-weight: 500; + } + } + &:hover { + .title { + font-size: 16px; + a { + color: $color-primary; + } + } + .thumb { + img { + transform: scale(1.2); + } + } + } +} diff --git a/site/resources/scss/components/_sidebar_filter.scss b/site/resources/scss/components/_sidebar_filter.scss new file mode 100644 index 0000000..16e1c5d --- /dev/null +++ b/site/resources/scss/components/_sidebar_filter.scss @@ -0,0 +1,64 @@ +.accordion-button, +.accordion-button:not(.collapsed) { + color: #fff; + background-color: #30303d; + box-shadow: none; + border-radius: 6px; + margin-bottom: 15px; + padding: 7px 15px; + cursor: pointer; +} +.filter-item-list { + padding-left: 15px; +} +.filter-wrapper { + background: $bg-color-1; + padding: 20px; + border: none; + border-radius: 10px; + margin-right: 25px; + @include lg-device { + margin-right: 0; + } + @include sm-device { + margin-bottom: 40px; + } + + .filter-custom-item { + &:not(:last-child) { + margin-bottom: 30px; + } + } + .form-check { + margin-bottom: 12px; + cursor: pointer; + label { + color: #ddd; + padding-left: 5px; + } + input, + label { + cursor: pointer; + } + input { + &:checked { + background-color: $color-primary; + border-color: $color-primary; + } + &:focus { + box-shadow: rgb(255, 81, 47, 0.25) 0px 0px 0px 0; + } + } + } +} +.accordion-button::after { + content: "\EA4E"; + font-family: remixicon !important; + font-size: 22px; + background-image: none; + width: auto; + height: auto; +} +.accordion-button:not(.collapsed)::after { + background-image: none; +} diff --git a/site/resources/scss/components/_signup.scss b/site/resources/scss/components/_signup.scss new file mode 100644 index 0000000..f92320a --- /dev/null +++ b/site/resources/scss/components/_signup.scss @@ -0,0 +1,178 @@ +.signup-wrapper { + background: $bg-color-1; + position: relative; + overflow: hidden; + height: 100%; + &.signin-wrapper { + background: #111; + } + &.header-free-signin { + height: 100vh; + display: flex; + justify-content: center; + flex-direction: column; + background: #111; + .signin-form-2 { + background: $bg-color-1; + } + .signin-content { + max-width: 550px; + margin: 0 auto; + .signin-form { + @media (max-width: 1700px) { + padding: 30px; + } + } + } + @media (max-width: 1700px) { + height: auto; + margin: 50px 0; + } + @include xs-device { + height: auto; + margin: 30px 0; + } + } + @include xs-device { + padding: 2px; + } + + .register-with { + border: 2px solid $body-color-light; + padding: 10px 15px; + justify-content: center; + border-radius: 30px; + font-weight: 500; + + i { + font-size: 18px; + padding-right: 8px; + &.ri-facebook-fill { + color: #4267b2; + } + &.ri-google-fill { + color: #db4437; + } + } + &.metamask-btn { + &:hover { + background: #ee811a; + border-color: #ee811a; + color: #fff; + i { + color: #fff; + } + } + } + &.google-btn { + &:hover { + background: #db4437; + border-color: #db4437; + color: #fff; + i { + color: #fff; + } + } + } + &.fb-btn { + &:hover { + background: #4267b2; + border-color: #4267b2; + color: #fff; + i { + color: #fff; + } + } + } + } +} + +.checkbox { + cursor: pointer; + font-family: $font-2; + font-weight: 400; +} +.signup-content, +.contact-inner-contnet { + display: flex; + flex-direction: column; + justify-content: center; + height: 100%; + + @include xs-device { + padding: 40px 15px; + } +} +.signin-content { + &.w-50 { + @media (max-width: 1919px) { + width: 60% !important; + } + @media (max-width: 767px) { + width: 100% !important; + padding: 0 15px; + } + } + h2 { + font-size: 32px; + } +} + +.medium { + color: rgba(255, 255, 255, 0.7); +} + +.contact-inner-contnet { + .nice-select { + background: transparent; + } +} + +.row.gutter-0 { + margin-left: 0; + margin-right: 0; + > [class*="col-"] { + padding-left: 0; + padding-right: 0; + } +} +.contact-wrapper { + box-shadow: 0px 3px 16px rgb(47 83 109 / 12%); + .contact-inner-contnet { + padding: 40px; + } +} + +.signin-form { + background: $bg-color-1; + border-radius: 10px; + padding: 50px; + @include xs-device { + padding: 25px 15px; + } +} +.sign-wrapeer h2 { + font-size: 32px; +} +.signup { + padding: 50px; + border-radius: 10px; + @include xs-device { + padding: 25px 15px; + } +} + +.rounded { + border-radius: 10px !important; +} + +.signin-wrapper { + @include md-device { + height: 100vh; + display: flex; + } + @include xs-device { + padding: 100px 0; + height: auto; + } +} diff --git a/site/resources/scss/components/_single-product.scss b/site/resources/scss/components/_single-product.scss new file mode 100644 index 0000000..6440416 --- /dev/null +++ b/site/resources/scss/components/_single-product.scss @@ -0,0 +1,259 @@ +.custom-tabs { + background: $bg-color-1; + color: $body-color; + padding: 10px 20px; + font-size: 16px; + font-weight: 500; + border-radius: 30px; + display: inline-flex; + li { + &:not(:last-of-type) { + margin-right: 25px; + } + a { + border-radius: 30px !important; + &.active { + color: $color-primary; + } + } + } +} +.custom-tab-content { + background: $bg-color-1; + padding: 15px 25px; + border-radius: 6px; + @include xs-device { + padding: 10px; + } + + .tab-pane { + padding: 0; + .single-item-history { + &:first-child { + margin-top: 0; + } + .avatar { + width: 55px; + height: 55px; + display: flex; + align-items: center; + } + } + .notification-history { + .avatar { + width: 75px; + height: 75px; + @include md-device { + width: 55px; + height: 55px; + } + } + } + p { + font-size: 15px; + line-height: 24px; + } + .content p { + a { + font-weight: 400; + } + } + p:last-child { + margin-bottom: 0; + } + } +} +.details-content { + padding-left: 35px; + @include md-device { + padding-left: 0; + } + .main_title { + font-size: 32px; + line-height: 48px; + margin-bottom: 20px; + @include xs-device { + font-size: 23px; + line-height: 36px; + } + } + .subtitle { + font-size: 15px; + line-height: 25px; + margin-bottom: 30px; + } + .custom-tabs { + li a { + color: #fff; + font-weight: 400; + font-family: $font-1; + &.active { + color: $color-primary; + } + } + } + .custom-history { + height: 230px; + overflow-y: auto; + padding-right: 30px; + @include xs-device { + padding-right: 10px; + } + &::-webkit-scrollbar { + width: 6px; + } + + /* Track */ + &::-webkit-scrollbar-track { + background: #555; + border-radius: 6px; + } + + /* Handle */ + &::-webkit-scrollbar-thumb { + background: #999; + border-radius: 6px; + } + + /* Handle on hover */ + &::-webkit-scrollbar-thumb:hover { + background: #555; + } + .single-item-history .content span { + font-size: 13px; + } + } + .custom-tab-content { + padding-right: 10px; + } + .owner { + font-size: 14px; + } + .avatar-info .thumb { + min-width: 50px; + height: 50px; + border: none; + } +} +.avatar-info-wrapper { + @include xs-device { + flex-direction: column; + align-items: flex-start; + .avatar-info { + margin-bottom: 20px; + } + } +} +.bidder { + background: $bg-color-1; + padding: 6px 15px; + border-radius: 5px; + border: 1px solid #3e3e3e; + min-width: 248px; + min-height: 40px; + .text-white { + padding-right: 10px; + } + > span { + font-weight: 500; + } +} +.biding-block { + background: $bg-color-1; + padding: 10px 20px; + border-radius: 10px; + margin-bottom: 20px; + span { + display: inline-block; + margin-bottom: 8px; + } + h3 { + color: $color-primary; + } + .countdown { + position: static; + transform: none; + width: auto; + padding: 0; + justify-content: flex-start; + height: 28px; + + .countdown-value { + color: $color-primary; + font-size: 24px; + } + } +} +.avatar-info { + .thumb { + border: 2px solid $color-primary; + overflow: hidden; + min-width: 60px; + height: 60px; + display: flex; + border-radius: 50%; + img { + width: 100%; + } + } + .content { + margin-left: 10px; + .title a { + color: #fff; + } + .title { + font-weight: 400; + } + } +} + +.details-dropdown { + .ri-more-fill { + background: $bg-color-1; + width: 35px; + height: 35px; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50%; + cursor: pointer; + color: #fff; + } +} + +.product-details { + .explore-style-one { + &:hover { + transform: translateY(0); + } + .thumb img { + transform: scale(1); + } + } +} + +.price-history { + display: flex; + flex-direction: column; + color: #fff; + font-family: $font-1; + @include xs-device { + flex-basis: 100px; + } + + span { + color: rgba(255, 255, 255, 0.65); + font-family: $font-2; + font-size: 14px; + } +} +// .zoomLens { +// width: 200px !important; +// height: 200px !important; +// } +@include md-device { + .zoomWindowContainer, + .zoomLens { + display: none !important; + } +} diff --git a/site/resources/scss/components/_tabs.scss b/site/resources/scss/components/_tabs.scss new file mode 100644 index 0000000..c43183f --- /dev/null +++ b/site/resources/scss/components/_tabs.scss @@ -0,0 +1,59 @@ +.default-tab-list { + margin: 0 -7.5px; + button { + border: 2px solid $border-color; + font-size: 15px; + font-weight: 500; + line-height: 20px; + text-transform: capitalize; + color: $body-color; + padding: 10px 18px; + margin: 0 7.5px; + background: transparent; + border-radius: 30px; + margin-bottom: 20px; + @include xs-device { + margin-bottom: 15px; + } + &:hover { + border-color: $color-primary; + color: $color-primary; + } + &.is-checked { + background: $color-primary; + border-color: $color-primary; + color: #fff; + } + } +} + +.grid-filter-wrapper { + margin-left: -15px; + margin-right: -15px; + .resizer { + width: 25%; + @include lg-device { + width: 33.33%; + } + @include sm-device { + width: 50%; + } + @include xs-device { + width: 100%; + } + } + .grid-item { + width: 25%; + padding: 0 15px; + margin-bottom: 30px; + @include lg-device { + width: 33.33%; + } + @include sm-device { + width: 50%; + } + @include xs-device { + width: 100%; + } + } +} diff --git a/site/resources/scss/components/_top-seller.scss b/site/resources/scss/components/_top-seller.scss new file mode 100644 index 0000000..0d3427e --- /dev/null +++ b/site/resources/scss/components/_top-seller.scss @@ -0,0 +1,179 @@ +.top-seller-style-one { + background: $bg-color-1; + padding: 25px; + border-radius: 20px; + text-align: center; + + @include xs-device { + padding: 20px 10px; + } + .thumb { + display: block; + position: relative; + width: 70px; + height: 70px; + border-radius: 50px; + margin: 0 auto; + transition: 0.3s; + img { + border-radius: 50%; + width: 100%; + } + } + .title { + a { + color: #fff; + } + line-height: 1; + @include tiny-device { + font-size: 14px; + padding-bottom: 0 !important; + } + } + .price { + font-weight: 400; + color: $body-color; + line-height: 27px; + } + &:hover { + .thumb { + transform: scale(1.1); + } + } +} +.top-seller-activation-1 { + @include xs-device { + &.slick-gutter-15 { + .slick-list { + margin-left: -6px; + margin-right: -6px; + } + .slick-slide { + margin-left: 6px; + margin-right: 6px; + } + } + } +} +.ri-check-line { + width: 20px; + height: 20px; + display: flex; + align-items: center; + justify-content: center; + background: $color-primary; + color: #fff; + border-radius: 50%; + position: absolute; + right: 0; + bottom: 0; +} +.seller-group-vertical { + .top-seller-style-one { + margin-bottom: 30px; + @include xs-device { + margin-bottom: 15px; + } + } +} +// top-seller-style-two +.top-seller-style-two { + background: $bg-color-1; + border-radius: 10px; + padding: 28px 26px 28px 30px; + transition: 0.3s; + @include xs-device { + padding: 15px; + } + .thumb-wrapper { + position: relative; + margin-right: 20px; + @include xs-device { + margin-right: 10px; + } + } + .thumb { + display: block; + border: 2px solid #3a3a3a; + width: 70px; + height: 70px; + border-radius: 50%; + position: relative; + overflow: hidden; + @include xs-device { + width: 50px; + height: 50px; + } + img { + width: 100%; + } + } + .items-number { + font-size: 30px; + position: relative; + @include xs-device { + font-size: 20px; + } + &::before { + content: ""; + position: absolute; + left: -26px; + top: -15px; + height: 80px; + width: 2px; + background: #3a3a3a; + @include xs-device { + top: -7px; + height: 65px; + } + } + strong { + color: #fff; + } + span { + font-size: 16px; + @include xs-device { + font-size: 14px; + } + } + } + .price { + font-size: 15px; + @include xs-device { + font-size: 14px; + } + } + .title { + @include xs-device { + margin-bottom: 0; + font-size: 15px; + } + a { + color: #fff; + } + } + &:hover { + .thumb { + border-color: $color-primary; + img { + transform: scale(1.2); + } + } + transform: translateY(-4px); + } +} +.text-large { + font-size: 20px; + text-decoration: underline; + font-family: $font-1; + word-spacing: 2px; + @include xs-device { + font-size: 17px; + } + a { + color: #eee; + &:hover { + color: $color-primary; + } + } +} diff --git a/site/resources/scss/components/_wallet-setup.scss b/site/resources/scss/components/_wallet-setup.scss new file mode 100644 index 0000000..15da792 --- /dev/null +++ b/site/resources/scss/components/_wallet-setup.scss @@ -0,0 +1,23 @@ +.card-block-style-one { + background: $bg-color-1; + padding: 40px; + border-radius: 10px; + @include xs-device { + padding: 25px; + } + .title { + text-transform: capitalize; + font-weight: 600; + @include xs-device { + font-size: 20px; + } + } + p { + font-size: 17px; + margin-bottom: 0; + line-height: 30px; + @include xs-device { + font-size: 16px; + } + } +} diff --git a/site/resources/scss/components/_wallet.scss b/site/resources/scss/components/_wallet.scss new file mode 100644 index 0000000..5428186 --- /dev/null +++ b/site/resources/scss/components/_wallet.scss @@ -0,0 +1,33 @@ +.wallet-block { + background: $bg-color-1; + padding: 30px 24px; + border-radius: 10px; + display: block; + text-align: center; + transition: 0.3s; + + .thumb { + width: 80px; + height: 80px; + position: relative; + overflow: hidden; + border-radius: 50%; + margin: 0 auto 15px; + } + + .title { + font-size: 22px; + font-weight: 600; + margin-bottom: 10px; + text-transform: capitalize; + } + p { + margin-bottom: 0; + font-size: 16px; + line-height: 26px; + } + &:hover { + background: rgb(32, 32, 45); + transform: translateY(-5px); + } +} diff --git a/site/resources/scss/defaults/_animation.scss b/site/resources/scss/defaults/_animation.scss new file mode 100644 index 0000000..7cfea9a --- /dev/null +++ b/site/resources/scss/defaults/_animation.scss @@ -0,0 +1,42 @@ +.rotate-360 { + animation: loading 20s linear infinite; + @keyframes loading { + 0% { + transform: rotate(0); + } + 100% { + transform: rotate(360deg); + } + } +} +@keyframes jumpTwo { + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + 40% { + -webkit-transform: translate3d(0, 20px, 0); + transform: translate3d(0, 20px, 0); + } + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.jump { + animation: jumpTwo 8s linear infinite; + @keyframes jumpTwo { + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + 40% { + -webkit-transform: translate3d(0, 20px, 0); + transform: translate3d(0, 20px, 0); + } + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + } +} diff --git a/site/resources/scss/defaults/_base.scss b/site/resources/scss/defaults/_base.scss new file mode 100644 index 0000000..e4650ea --- /dev/null +++ b/site/resources/scss/defaults/_base.scss @@ -0,0 +1,179 @@ +/* -- Base css +-------------------------------------------- -- */ +a, +img, +i { + transition: 0.3s; +} +a { + text-decoration: none; + color: $body-color; + + &:hover { + text-decoration: none; + color: $color-primary; + } +} +h4 a:hover, +a.text-white:hover { + color: $color-primary !important; +} +hr { + border-top: 1px solid #515151; +} +.btn, +button { + transition: 0.5s; +} +ul, +li { + list-style: none; + padding-left: 0; +} + +dl, +ol, +ul { + padding-left: 0; + margin-top: 0; + margin-bottom: 15px; +} +.breadcrumb { + margin-bottom: 0; + margin-top: 0; + li { + font-weight: 500; + } +} +::-moz-selection { + background: #323da5; + color: #fff; + text-shadow: none; +} + +.theme--light.v-btn.v-btn--icon { + color: #767695; +} + +::selection { + background: #323da5; + color: #fff; + text-shadow: none; +} + +br { + @include xs-device { + display: none; + } +} + +.dropdown-menu { + li { + font-size: 14px; + } +} + +.dropdown-menu-dark .dropdown-item.active, +.dropdown-menu-dark .dropdown-item:active { + color: #fff; + background: $gradient-primary; +} +.container, +.container-fluid, +.container-xxl, +.container-xl, +.container-lg, +.container-md, +.container-sm { + padding-right: 15px; + padding-left: 15px; +} +.row { + margin-left: -15px; + margin-right: -15px; +} +.row > * { + padding-left: 15px; + padding-right: 15px; +} +body { + @include xs-device { + overflow-x: hidden; + } +} +br { + @include sm-device { + display: none; + } +} +/* -- Print Media query +---------------------------------------- -- */ +@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) { + /* Style adjustments for high resolution devices */ +} + +/* -- Print styles- Inlined to avoid the additional HTTP request: +----------------------------------------------------------------------------- */ +@media print { + *, + *:before, + *:after { + background: transparent !important; + // color: $typo-heading !important; + /* Black prints faster */ + -webkit-box-shadow: none !important; + box-shadow: none !important; + text-shadow: none !important; + } + + a, + a:visited { + text-decoration: underline; + } + + a[href]:after { + content: " (" attr(href) ")"; + } + + abbr[title]:after { + content: " (" attr(title) ")"; + } + + /* -- Don't show links that are fragment identifiers -- */ + a[href^="#"]:after, + a[href^="javascript:"]:after { + content: ""; + } + + pre { + white-space: pre-wrap !important; + } + + pre, + blockquote { + // border: 1px solid $border-color; + page-break-inside: avoid; + } + + /* -- Printing Tables -- */ + thead { + display: table-header-group; + } + + tr, + img { + page-break-inside: avoid; + } + + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + + h2, + h3 { + page-break-after: avoid; + } +} diff --git a/static/dist b/site/resources/scss/defaults/_breadcrumb.scss similarity index 100% rename from static/dist rename to site/resources/scss/defaults/_breadcrumb.scss diff --git a/site/resources/scss/defaults/_browserhacks.scss b/site/resources/scss/defaults/_browserhacks.scss new file mode 100644 index 0000000..da24b7a --- /dev/null +++ b/site/resources/scss/defaults/_browserhacks.scss @@ -0,0 +1,13 @@ +// Browser Hacks + +/* -- Chrome hacks -- */ +@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {} + +/* -- Firefox hacks -- */ +@-moz-document url-prefix() { + + +} + +/* -- IE hacks -- */ +@media screen and (min-width:0\0) {} diff --git a/site/resources/scss/defaults/_button.scss b/site/resources/scss/defaults/_button.scss new file mode 100644 index 0000000..8817fcf --- /dev/null +++ b/site/resources/scss/defaults/_button.scss @@ -0,0 +1,247 @@ +.btn { + position: relative; + overflow: hidden; + font-size: 16px; + padding: 9px 35px; + display: inline-flex; + align-items: center; + color: #fff; + border-radius: 50px; + height: 50px; + min-height: 50px; + font-weight: 600; + @include xs-device { + font-size: 14px; + padding: 7px 35px; + height: 42px; + min-height: 42px; + } + @include tiny-device { + padding: 7px 25px; + } + span { + display: inline-flex; + z-index: 1; + line-height: 1; + font-family: $font-1; + } + &:focus { + box-shadow: none; + } + + i { + padding-right: 8px; + } + &:hover { + color: #fff; + transform: translateY(-1px); + } +} +.btn-medium { + font-size: 15px; + padding: 8px 30px; + height: 46px; + min-height: 46px; + @include xs-device { + font-size: 14px; + } +} +.btn-small { + font-size: 14px; + padding: 6px 25px; + height: 40px; + min-height: 40px; + @include tiny-device { + font-size: 15px; + height: 36px; + min-height: 36px; + } +} + +.btn-outline { + border: 2px solid rgba(255, 255, 255, 0.7); + padding-top: 9px; + padding-bottom: 9px; + &::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: linear-gradient(97.3deg, #dd2476 0%, #ff512f 100%); + transition: transform 0.5s; + transform-origin: right; + transform: scaleX(0); + z-index: 0; + border-radius: inherit; + } + &:hover { + &::before { + transform: scaleX(1); + transform-origin: left; + transition: transform 0.5s; + } + border-color: #dd2476; + background: $color-primary; + } + i { + transition: 0.1s; + } + &.no-hover { + &::before { + display: none; + } + } + &.btn-medium { + padding-top: 8px; + padding-bottom: 8px; + } +} +.btn-gradient { + background: linear-gradient(97.3deg, #ff512f 0%, #dd2476 100%); + &::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: linear-gradient(97.3deg, #dd2476 0%, #ff512f 100%); + transition: transform 0.5s; + transform-origin: right; + transform: scaleX(0); + z-index: 0; + border-radius: inherit; + } + &:hover { + &::before { + transform: scaleX(1); + transform-origin: left; + transition: transform 0.5s; + } + } +} +.btn-prime { + background: $color-primary; +} +.btn-black { + background: transparent; + @extend .btn-outline; + &::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: linear-gradient(97.3deg, #dd2476 0%, #ff512f 100%); + transition: transform 0.5s; + transform-origin: right; + transform: scaleX(0); + z-index: 0; + border-radius: inherit; + } + &:hover { + &::before { + transform: scaleX(1); + transform-origin: left; + transition: transform 0.5s; + } + } +} +.btn-play { + padding: 0; + &:hover { + color: $color-primary; + } + span { + text-decoration: underline; + } + i { + font-size: 40px; + color: $color-primary; + @include xs-device { + font-size: 35px; + } + } +} + +// back to top +.rn-progress-parent { + position: fixed; + right: 30px; + bottom: 30px; + height: 46px; + width: 46px; + cursor: pointer; + display: block; + border-radius: 50px; + box-shadow: inset 0 0 0 2px #0d0d12; + z-index: 10000; + opacity: 0; + visibility: hidden; + transform: translateY(15px); + -webkit-transition: all 200ms linear; + transition: all 200ms linear; +} +.rn-progress-parent.rn-backto-top-active { + opacity: 1; + visibility: visible; + transform: translateY(0); +} +.rn-progress-parent::after { + position: absolute; + font-family: "remixicon" !important; + content: "\EA76"; + text-align: center; + line-height: 46px; + font-size: 24px; + color: $color-primary; + left: 0; + top: 0; + height: 46px; + width: 46px; + cursor: pointer; + display: block; + z-index: 2; + -webkit-transition: all 200ms linear; + transition: all 200ms linear; +} +.rn-progress-parent:hover::after { + color: $color-primary; +} +.rn-progress-parent::before { + position: absolute; + font-family: "remixicon" !important; + content: "\EA76"; + text-align: center; + line-height: 46px; + font-size: 24px; + opacity: 0; + background: #0d0d12; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + left: 0; + top: 0; + height: 46px; + width: 46px; + cursor: pointer; + display: block; + z-index: 2; + -webkit-transition: all 200ms linear; + transition: all 200ms linear; +} +.rn-progress-parent:hover::before { + opacity: 1; +} +.rn-progress-parent svg path { + fill: none; +} +.rn-progress-parent svg.rn-back-circle path { + stroke: $color-primary; + stroke-width: 4; + box-sizing: border-box; + -webkit-transition: all 200ms linear; + transition: all 200ms linear; +} diff --git a/site/resources/scss/defaults/_form.scss b/site/resources/scss/defaults/_form.scss new file mode 100644 index 0000000..2a0c1b2 --- /dev/null +++ b/site/resources/scss/defaults/_form.scss @@ -0,0 +1,120 @@ +input:focus, +textarea:focus { + box-shadow: none; + outline: none; +} + +input[type="text"], +input[type="password"], +input[type="email"], +input[type="number"], +textarea { + width: 100%; + border: none; + background: transparent; + padding: 10px 15px; + border-radius: 8px; + border: 2px solid $border-color-light; + transition: 0.3s; + color: #fff; + &:focus { + border-color: $color-primary; + } +} +.form-check-input:checked { + background-color: $color-primary; + border-color: $color-primary; +} +.form-check-input { + margin-top: 0.2em; + &:focus { + box-shadow: none; + } +} +/* Chrome, Safari, Edge, Opera */ +input::-webkit-outer-spin-button, +input::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} +.form-check-input { + width: 1.2em; + height: 1.2em; + border: 2px solid $body-color-light; + background: transparent; +} +/* Firefox */ +input[type="number"] { + -moz-appearance: textfield; +} +.modal-dialog { + max-width: 450px; +} +::placeholder { + /* Chrome, Firefox, Opera, Safari 10.1+ */ + color: $body-color; + opacity: 1; /* Firefox */ +} + +:-ms-input-placeholder { + /* Internet Explorer 10-11 */ + color: $body-color; +} + +::-ms-input-placeholder { + /* Microsoft Edge */ + color: $body-color; +} + +.nice-select { + background-color: $bg-color-1; + border: solid 2px $border-color-light; + font-size: 16px; + color: #dedede; + height: 47px; + line-height: 45px; + padding-right: 45px; + font-weight: 600; + &.open { + color: #fff; + } + .current { + font-size: 15px; + } +} +.nice-select:after { + border-bottom: 2px solid #efefef; + border-right: 2px solid #efefef; + height: 7px; + width: 7px; + right: 15px; +} +.nice-select .list { + background: #111; + width: 100%; + li { + font-size: 14px; + } +} +.nice-select .option:hover, +.nice-select .option.focus, +.nice-select .option.selected.focus { + background-color: #323232; +} +.nice-select:active, +.nice-select.open, +.nice-select:focus, +.nice-select:hover { + border-color: $color-primary; +} +.nice-select .option.selected { + font-weight: 500; +} +input, +select, +textarea { + width: 100%; +} +.form-check-input:checked[type="checkbox"] { + border-color: $color-primary; +} diff --git a/site/resources/scss/defaults/_helper-class.scss b/site/resources/scss/defaults/_helper-class.scss new file mode 100644 index 0000000..d87a07a --- /dev/null +++ b/site/resources/scss/defaults/_helper-class.scss @@ -0,0 +1,82 @@ +.section-bg-separation { + background: #202027; +} +.section-bg-separation-2 { + background: #000; +} +.d-flex-center { + display: flex; + align-items: center; +} +.d-flex-start { + display: flex; + align-items: flex-start; +} +.d-flex-between { + display: flex; + align-items: center; + justify-content: space-between; +} +.medium { + font-size: 16px; + line-height: 24px; +} +.bg-overlay { + position: relative; + &::before { + content: ""; + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + background: rgba(0, 0, 0, 0.67); + } +} +.pt-120 { + padding-top: 120px; + @include sm-device { + padding-top: 100px; + } +} +.pb-120 { + padding-bottom: 120px; + @include sm-device { + padding-bottom: 100px; + } +} + +.ptb-120 { + padding: 120px 0; + @include sm-device { + padding: 100px 0; + } +} +.pt-90 { + padding-top: 90px; + @include sm-device { + padding-top: 70px; + } +} +.pb-90 { + padding-bottom: 90px; + @include sm-device { + padding-bottom: 70px; + } +} +.pb-80 { + padding-bottom: 80px; + @include sm-device { + padding-bottom: 40px; + } +} +.color-primary { + color: $color-primary; +} +.fw-500 { + font-weight: 500 !important; +} + +.section-bg-separation-3 { + background: #161726; +} diff --git a/site/resources/scss/defaults/_mixin.scss b/site/resources/scss/defaults/_mixin.scss new file mode 100644 index 0000000..106cdf5 --- /dev/null +++ b/site/resources/scss/defaults/_mixin.scss @@ -0,0 +1,40 @@ +// Mixin For Elementor +@mixin xl-device { + @media (max-width: 1919px) { + @content; + } +} + +/* -- For screens 1264px to 1903px */ +@mixin lg-device { + @media (max-width: 1499px) { + @content; + } +} + +/* -- For screens 960px to 1263px */ +@mixin md-device { + @media (max-width: 1199px) { + @content; + } +} + +/* -- For screens 600px to 959px */ +@mixin sm-device { + @media (max-width: 991px) { + @content; + } +} + +/* -- For For screens 0 to 600px */ +@mixin xs-device { + @media (max-width: 575px) { + @content; + } +} +/* -- For For screens 0 to 360 */ +@mixin tiny-device { + @media (max-width: 360px) { + @content; + } +} diff --git a/site/resources/scss/defaults/_preloader.scss b/site/resources/scss/defaults/_preloader.scss new file mode 100644 index 0000000..0254c11 --- /dev/null +++ b/site/resources/scss/defaults/_preloader.scss @@ -0,0 +1,62 @@ +// preloader +.ctn-preloader { + align-items: center; + -webkit-align-items: center; + display: flex; + display: -ms-flexbox; + height: 100%; + justify-content: center; + -webkit-justify-content: center; + position: fixed; + left: 0; + top: 0; + width: 100%; + z-index: 999999; + background: $bg-color-1; +} + +.ctn-preloader .animation-preloader { + position: absolute; + z-index: 100; + text-align: center; +} + +.ctn-preloader .animation-preloader .icon { + display: inline-block; + position: relative; + width: 80px; + height: 80px; + img { + width: 100%; + border-radius: 50%; + } +} + +.ctn-preloader .animation-preloader .icon span { + animation: spinner 1.5s infinite linear; + border-radius: 50%; + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; + z-index: 1; +} + +.ctn-preloader .animation-preloader .icon span:after { + content: ""; + position: absolute; + width: 9px; + height: 9px; + top: 12px; + left: 0; + box-shadow: 0 0 10px #dd2476; + border-radius: 50%; + background: -webkit-linear-gradient(#ff512f, #dd2476); +} + +@keyframes spinner { + to { + transform: rotateZ(360deg); + } +} diff --git a/site/resources/scss/defaults/_section-title.scss b/site/resources/scss/defaults/_section-title.scss new file mode 100644 index 0000000..13c20de --- /dev/null +++ b/site/resources/scss/defaults/_section-title.scss @@ -0,0 +1,16 @@ +.section-title { + margin-bottom: 60px; + @include xs-device { + margin-bottom: 50px; + } + .subtitle { + color: #ff512f; + font-weight: 500; + font-size: 20px; + text-decoration: underline; + letter-spacing: 0.2em; + display: inline-block; + margin-bottom: 10px; + font-family: $font-2; + } +} diff --git a/site/resources/scss/defaults/_slick-custom.scss b/site/resources/scss/defaults/_slick-custom.scss new file mode 100644 index 0000000..0e59c3b --- /dev/null +++ b/site/resources/scss/defaults/_slick-custom.scss @@ -0,0 +1,169 @@ +.slick-dotted.slick-slider { + margin-bottom: 0; +} +.slick-dots { + display: inline-block !important; + position: static; + z-index: 2; + margin-top: 20px; + + li button { + font-size: 0; + line-height: 0; + display: block; + width: 7px; + height: 7px; + padding: 5px; + cursor: pointer; + color: transparent; + border: 0; + outline: none; + background: transparent !important; + border-radius: 50%; + border: 2px solid $body-color; + } + li.slick-active button { + background: $color-primary !important; + border-color: $color-primary; + } +} + +.slick-gutter-15 { + .slick-list { + margin-left: -15px; + margin-right: -15px; + } + .slick-slide { + margin-left: 15px; + margin-right: 15px; + } +} +.slick-activation-01 { + &.slick-gutter-15 { + .slick-list { + margin-left: 0; + margin-right: 0; + } + } +} + +button.slide-arrow { + height: 50px; + width: 50px; + line-height: 48px; + border-radius: 50%; + position: absolute; + z-index: 2; + opacity: 0; + transition: 0.3s; + color: #fff; + background: linear-gradient( + 135deg, + rgba(255, 255, 255, 0.5) 0.29%, + rgba(255, 255, 255, 0.1) 99.71%, + rgba(0, 0, 0, 0.5) 99.71% + ); + backdrop-filter: blur(40px); + border: none; + transform: translateY(-50%) scale(1); + top: 50%; + &::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: linear-gradient(97.3deg, #ff512f 0%, #dd2476 100%); + transition: 0.5s; + z-index: -1; + opacity: 0; + border-radius: inherit; + } + &:hover { + &::before { + transition: 0.5s; + opacity: 1; + } + i { + z-index: 1; + } + } +} +@media only screen and (min-width: 992px) and (max-width: 1199px) { + button.slide-arrow { + opacity: 1; + } +} +@media only screen and (min-width: 768px) and (max-width: 991px) { + button.slide-arrow { + opacity: 1; + } +} +@media only screen and (max-width: 767px) { + button.slide-arrow { + opacity: 1; + } +} +button.slide-arrow i { + font-size: 22px; + color: #fff; +} +button.slide-arrow.slide-arrow { + top: -85px !important; + opacity: 1; + border-radius: 50%; +} +button.slide-arrow.prev-arrow { + right: 65px !important; +} +button.slide-arrow.next-arrow { + right: 0 !important; +} + +button.slide-arrow:hover.slide-arrow i { + color: #fff !important; +} +.slick-dots li button:before { + font-size: 0; +} +// slick top +.slick-arrow-top { + button.slide-arrow.prev-arrow { + right: 19% !important; + @include lg-device { + right: 14% !important; + } + @include md-device { + right: 9% !important; + } + } + button.slide-arrow.next-arrow { + right: 15.7% !important; + + @include xl-device { + right: 14.7% !important; + } + @include lg-device { + right: 9% !important; + } + } +} +// slick center +.slick-arrow-between { + position: relative; +} + +.slick-arrow-between button.slide-arrow.prev-arrow { + top: 50% !important; + left: -20px !important; +} +.slick-arrow-between button.slide-arrow.next-arrow { + top: 50% !important; + right: -20px !important; +} +.slick-arrow-none { + button.slide-arrow { + display: none !important; + } +} diff --git a/site/resources/scss/defaults/_spacing.scss b/site/resources/scss/defaults/_spacing.scss new file mode 100644 index 0000000..73b9b4b --- /dev/null +++ b/site/resources/scss/defaults/_spacing.scss @@ -0,0 +1,1285 @@ +// all spacing global class + +// padding top +.pt-0 { + padding-top: 0 !important; +} + +.pt-1 { + padding-top: 5px !important; +} + +.pt-2 { + padding-top: 10px !important; +} + +.pt-3 { + padding-top: 15px !important; +} + +.pt-4 { + padding-top: 20px !important; +} + +.pt-5 { + padding-top: 25px !important; +} + +.pt-6 { + padding-top: 30px !important; +} + +.pt-7 { + padding-top: 35px !important; +} + +.pt-8 { + padding-top: 40px !important; +} + +.pt-9 { + padding-top: 45px !important; +} + +.pt-10 { + padding-top: 50px !important; +} + +.pt-11 { + padding-top: 55px !important; +} + +.pt-12 { + padding-top: 60px !important; +} + +.pt-13 { + padding-top: 65px !important; +} + +.pt-14 { + padding-top: 70px !important; +} + +.pt-15 { + padding-top: 75px !important; +} + +.pt-16 { + padding-top: 80px !important; +} + +.pt-17 { + padding-top: 85px !important; +} + +.pt-18 { + padding-top: 90px !important; +} + +.pt-19 { + padding-top: 95px !important; +} + +.pt-20 { + padding-top: 100px !important; +} + + +// padding bottom +.pb-0 { + padding-bottom: 0 !important; +} + +.pb-1 { + padding-bottom: 5px !important; +} + +.pb-2 { + padding-bottom: 10px !important; +} + +.pb-3 { + padding-bottom: 15px !important; +} + +.pb-4 { + padding-bottom: 20px !important; +} + +.pb-5 { + padding-bottom: 25px !important; +} + +.pb-6 { + padding-bottom: 30px !important; +} + +.pb-7 { + padding-bottom: 35px !important; +} + +.pb-8 { + padding-bottom: 40px !important; +} + +.pb-9 { + padding-bottom: 45px !important; +} + +.pb-10 { + padding-bottom: 50px !important; +} + +.pb-11 { + padding-bottom: 55px !important; +} + +.pb-12 { + padding-bottom: 60px !important; +} + +.pb-13 { + padding-bottom: 65px !important; +} + +.pb-14 { + padding-bottom: 70px !important; +} + +.pb-15 { + padding-bottom: 75px !important; +} + +.pb-16 { + padding-bottom: 80px !important; +} + +.pb-17 { + padding-bottom: 85px !important; +} + +.pb-18 { + padding-bottom: 90px !important; +} + +.pb-19 { + padding-bottom: 95px !important; +} + +.pb-20 { + padding-bottom: 100px !important; +} + +// padding top & bottom +.py-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; +} + +.py-1 { + padding-top: 5px !important; + padding-bottom: 5px !important; +} + +.py-2 { + padding-top: 10px !important; + padding-bottom: 10px !important; +} + +.py-3 { + padding-top: 15px !important; + padding-bottom: 15px !important; +} + +.py-4 { + padding-top: 20px !important; + padding-bottom: 20px !important; +} + +.py-5 { + padding-top: 25px !important; + padding-bottom: 25px !important; +} + +.py-6 { + padding-top: 30px !important; + padding-bottom: 30px !important; +} + +.py-7 { + padding-top: 35px !important; + padding-bottom: 35px !important; +} + +.py-8 { + padding-top: 40px !important; + padding-bottom: 40px !important; +} + +.py-9 { + padding-top: 45px !important; + padding-bottom: 45px !important; +} + +.py-10 { + padding-top: 50px !important; + padding-bottom: 50px !important; +} + +.py-11 { + padding-top: 55px !important; + padding-bottom: 55px !important; +} + +.py-12 { + padding-top: 60px !important; + padding-bottom: 60px !important; +} + +.py-13 { + padding-top: 65px !important; + padding-bottom: 65px !important; +} + +.py-14 { + padding-top: 70px !important; + padding-bottom: 70px !important; +} + +.py-15 { + padding-top: 75px !important; + padding-bottom: 75px !important; +} + +.py-16 { + padding-top: 80px !important; + padding-bottom: 80px !important; +} + +.py-17 { + padding-top: 85px !important; + padding-bottom: 85px !important; +} + +.py-18 { + padding-top: 90px !important; + padding-bottom: 90px !important; +} + +.py-19 { + padding-top: 95px !important; + padding-bottom: 95px !important; +} + +.py-20 { + padding-top: 100px !important; + padding-bottom: 100px !important; +} + +// padding left +.pl-0 { + padding-left: 0 !important; +} + +.pl-1 { + padding-left: 5px !important; +} + +.pl-2 { + padding-left: 10px !important; +} + +.pl-3 { + padding-left: 15px !important; +} + +.pl-4 { + padding-left: 20px !important; +} + +.pl-5 { + padding-left: 25px !important; +} + +.pl-6 { + padding-left: 30px !important; +} + +.pl-7 { + padding-left: 35px !important; +} + +.pl-8 { + padding-left: 40px !important; +} + +.pl-9 { + padding-left: 45px !important; +} + +.pl-10 { + padding-left: 50px !important; +} + +.pl-11 { + padding-left: 55px !important; +} + +.pl-12 { + padding-left: 60px !important; +} + +.pl-13 { + padding-left: 65px !important; +} + +.pl-14 { + padding-left: 70px !important; +} + +.pl-15 { + padding-left: 75px !important; +} + +.pl-16 { + padding-left: 80px !important; +} + +.pl-17 { + padding-left: 85px !important; +} + +.pl-18 { + padding-left: 90px !important; +} + +.pl-19 { + padding-left: 95px !important; +} + +.pl-20 { + padding-left: 100px !important; +} + +// padding right +.pr-0 { + padding-right: 0 !important; +} + +.pr-1 { + padding-right: 5px !important; +} + +.pr-2 { + padding-right: 10px !important; +} + +.pr-3 { + padding-right: 15px !important; +} + +.pr-4 { + padding-right: 20px !important; +} + +.pr-5 { + padding-right: 25px !important; +} + +.pr-6 { + padding-right: 30px !important; +} + +.pr-7 { + padding-right: 35px !important; +} + +.pr-8 { + padding-right: 40px !important; +} + +.pr-9 { + padding-right: 45px !important; +} + +.pr-10 { + padding-right: 50px !important; +} + +.pr-11 { + padding-right: 55px !important; +} + +.pr-12 { + padding-right: 60px !important; +} + +.pr-13 { + padding-right: 65px !important; +} + +.pr-14 { + padding-right: 70px !important; +} + +.pr-15 { + padding-right: 75px !important; +} + +.pr-16 { + padding-right: 80px !important; +} + +.pr-17 { + padding-right: 85px !important; +} + +.pr-18 { + padding-right: 90px !important; +} + +.pr-19 { + padding-right: 95px !important; +} + +.pr-20 { + padding-right: 100px !important; +} + +// padding left & right +.px-0 { + padding-left: 0 !important; + padding-right: 0 !important; +} + +.px-1 { + padding-left: 5px !important; + padding-right: 5px !important; +} + +.px-2 { + padding-left: 10px !important; + padding-right: 10px !important; +} + +.px-3 { + padding-left: 15px !important; + padding-right: 15px !important; +} + +.px-4 { + padding-left: 20px !important; + padding-right: 20px !important; +} + +.px-5 { + padding-left: 25px !important; + padding-right: 25px !important; +} + +.px-6 { + padding-left: 30px !important; + padding-right: 30px !important; +} + +.px-7 { + padding-left: 35px !important; + padding-right: 35px !important; +} + +.px-8 { + padding-left: 40px !important; + padding-right: 40px !important; +} + +.px-9 { + padding-left: 45px !important; + padding-right: 45px !important; +} + +.px-10 { + padding-left: 50px !important; + padding-right: 50px !important; +} + +.px-11 { + padding-left: 55px !important; + padding-right: 55px !important; +} + +.px-12 { + padding-left: 60px !important; + padding-right: 60px !important; +} + +.px-13 { + padding-left: 65px !important; + padding-right: 65px !important; +} + +.px-14 { + padding-left: 70px !important; + padding-right: 70px !important; +} + +.px-15 { + padding-left: 75px !important; + padding-right: 75px !important; +} + +.px-16 { + padding-left: 80px !important; + padding-right: 80px !important; +} + +.px-17 { + padding-left: 85px !important; + padding-right: 85px !important; +} + +.px-18 { + padding-left: 90px !important; + padding-right: 90px !important; +} + +.px-19 { + padding-left: 95px !important; + padding-right: 95px !important; +} + +.px-20 { + padding-left: 100px !important; + padding-right: 100px !important; +} + +// padding all +.pa-0 { + padding: 0 !important; +} + +.pa-1 { + padding: 5px !important; +} + +.pa-2 { + padding: 10px !important; +} + +.pa-3 { + padding: 15px !important; +} + +.pa-4 { + padding: 20px !important; +} + +.pa-5 { + padding: 25px !important; +} + +.pa-6 { + padding: 30px !important; +} + +.pa-7 { + padding: 35px !important; +} + +.pa-8 { + padding: 40px !important; +} + +.pa-9 { + padding: 45px !important; +} + +.pa-10 { + padding: 50px !important; +} + +.pa-11 { + padding: 55px !important; +} + +.pa-12 { + padding: 60px !important; +} + +.pa-13 { + padding: 65px !important; +} + +.pa-14 { + padding: 70px !important; +} + +.pa-15 { + padding: 75px !important; +} + +.pa-16 { + padding: 80px !important; +} + +.pa-17 { + padding: 85px !important; +} + +.pa-18 { + padding: 90px !important; +} + +.pa-19 { + padding: 95px !important; +} + +.pa-20 { + padding: 100px !important; +} + +// margin top +.mt-0 { + margin-top: 0 !important; +} + +.mt-1 { + margin-top: 5px !important; +} + +.mt-2 { + margin-top: 10px !important; +} + +.mt-3 { + margin-top: 15px !important; +} + +.mt-4 { + margin-top: 20px !important; +} + +.mt-5 { + margin-top: 25px !important; +} + +.mt-6 { + margin-top: 30px !important; +} + +.mt-7 { + margin-top: 35px !important; +} + +.mt-8 { + margin-top: 40px !important; +} + +.mt-9 { + margin-top: 45px !important; +} + +.mt-10 { + margin-top: 50px !important; +} + +.mt-11 { + margin-top: 55px !important; +} + +.mt-12 { + margin-top: 60px !important; +} + +.mt-13 { + margin-top: 65px !important; +} + +.mt-14 { + margin-top: 70px !important; +} + +.mt-15 { + margin-top: 75px !important; +} + +.mt-16 { + margin-top: 80px !important; +} + +.mt-17 { + margin-top: 85px !important; +} + +.mt-18 { + margin-top: 90px !important; +} + +.mt-19 { + margin-top: 95px !important; +} + +.mt-20 { + margin-top: 100px !important; +} + + +// margin bottom +.mb-0 { + margin-bottom: 0 !important; +} + +.mb-1 { + margin-bottom: 5px !important; +} + +.mb-2 { + margin-bottom: 10px !important; +} + +.mb-3 { + margin-bottom: 15px !important; +} + +.mb-4 { + margin-bottom: 20px !important; +} + +.mb-5 { + margin-bottom: 25px !important; +} + +.mb-6 { + margin-bottom: 30px !important; +} + +.mb-7 { + margin-bottom: 35px !important; +} + +.mb-8 { + margin-bottom: 40px !important; +} + +.mb-9 { + margin-bottom: 45px !important; +} + +.mb-10 { + margin-bottom: 50px !important; +} + +.mb-11 { + margin-bottom: 55px !important; +} + +.mb-12 { + margin-bottom: 60px !important; +} + +.mb-13 { + margin-bottom: 65px !important; +} + +.mb-14 { + margin-bottom: 70px !important; +} + +.mb-15 { + margin-bottom: 75px !important; +} + +.mb-16 { + margin-bottom: 80px !important; +} + +.mb-17 { + margin-bottom: 85px !important; +} + +.mb-18 { + margin-bottom: 90px !important; +} + +.mb-19 { + margin-bottom: 95px !important; +} + +.mb-20 { + margin-bottom: 100px !important; +} + +// margin top & bottom +.my-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; +} + +.my-1 { + margin-top: 5px !important; + margin-bottom: 5px !important; +} + +.my-2 { + margin-top: 10px !important; + margin-bottom: 10px !important; +} + +.my-3 { + margin-top: 15px !important; + margin-bottom: 15px !important; +} + +.my-4 { + margin-top: 20px !important; + margin-bottom: 20px !important; +} + +.my-5 { + margin-top: 25px !important; + margin-bottom: 25px !important; +} + +.my-6 { + margin-top: 30px !important; + margin-bottom: 30px !important; +} + +.my-7 { + margin-top: 35px !important; + margin-bottom: 35px !important; +} + +.my-8 { + margin-top: 40px !important; + margin-bottom: 40px !important; +} + +.my-9 { + margin-top: 45px !important; + margin-bottom: 45px !important; +} + +.my-10 { + margin-top: 50px !important; + margin-bottom: 50px !important; +} + +.my-11 { + margin-top: 55px !important; + margin-bottom: 55px !important; +} + +.my-12 { + margin-top: 60px !important; + margin-bottom: 60px !important; +} + +.my-13 { + margin-top: 65px !important; + margin-bottom: 65px !important; +} + +.my-14 { + margin-top: 70px !important; + margin-bottom: 70px !important; +} + +.my-15 { + margin-top: 75px !important; + margin-bottom: 75px !important; +} + +.my-16 { + margin-top: 80px !important; + margin-bottom: 80px !important; +} + +.my-17 { + margin-top: 85px !important; + margin-bottom: 85px !important; +} + +.my-18 { + margin-top: 90px !important; + margin-bottom: 90px !important; +} + +.my-19 { + margin-top: 95px !important; + margin-bottom: 95px !important; +} + +.my-20 { + margin-top: 100px !important; + margin-bottom: 100px !important; +} + +// margin left +.ml-0 { + margin-left: 0 !important; +} + +.ml-1 { + margin-left: 5px !important; +} + +.ml-2 { + margin-left: 10px !important; +} + +.ml-3 { + margin-left: 15px !important; +} + +.ml-4 { + margin-left: 20px !important; +} + +.ml-5 { + margin-left: 25px !important; +} + +.ml-6 { + margin-left: 30px !important; +} + +.ml-7 { + margin-left: 35px !important; +} + +.ml-8 { + margin-left: 40px !important; +} + +.ml-9 { + margin-left: 45px !important; +} + +.ml-10 { + margin-left: 50px !important; +} + +.ml-11 { + margin-left: 55px !important; +} + +.ml-12 { + margin-left: 60px !important; +} + +.ml-13 { + margin-left: 65px !important; +} + +.ml-14 { + margin-left: 70px !important; +} + +.ml-15 { + margin-left: 75px !important; +} + +.ml-16 { + margin-left: 80px !important; +} + +.ml-17 { + margin-left: 85px !important; +} + +.ml-18 { + margin-left: 90px !important; +} + +.ml-19 { + margin-left: 95px !important; +} + +.ml-20 { + margin-left: 100px !important; +} + +// margin right +.mr-0 { + margin-right: 0 !important; +} + +.mr-1 { + margin-right: 5px !important; +} + +.mr-2 { + margin-right: 10px !important; +} + +.mr-3 { + margin-right: 15px !important; +} + +.mr-4 { + margin-right: 20px !important; +} + +.mr-5 { + margin-right: 25px !important; +} + +.mr-6 { + margin-right: 30px !important; +} + +.mr-7 { + margin-right: 35px !important; +} + +.mr-8 { + margin-right: 40px !important; +} + +.mr-9 { + margin-right: 45px !important; +} + +.mr-10 { + margin-right: 50px !important; +} + +.mr-11 { + margin-right: 55px !important; +} + +.mr-12 { + margin-right: 60px !important; +} + +.mr-13 { + margin-right: 65px !important; +} + +.mr-14 { + margin-right: 70px !important; +} + +.mr-15 { + margin-right: 75px !important; +} + +.mr-16 { + margin-right: 80px !important; +} + +.mr-17 { + margin-right: 85px !important; +} + +.mr-18 { + margin-right: 90px !important; +} + +.mr-19 { + margin-right: 95px !important; +} + +.mr-20 { + margin-right: 100px !important; +} + +// margin left & right +.mx-0 { + margin-left: 0 !important; + margin-right: 0 !important; +} + +.mx-1 { + margin-left: 5px !important; + margin-right: 5px !important; +} + +.mx-2 { + margin-left: 10px !important; + margin-right: 10px !important; +} + +.mx-3 { + margin-left: 15px !important; + margin-right: 15px !important; +} + +.mx-4 { + margin-left: 20px !important; + margin-right: 20px !important; +} + +.mx-5 { + margin-left: 25px !important; + margin-right: 25px !important; +} + +.mx-6 { + margin-left: 30px !important; + margin-right: 30px !important; +} + +.mx-7 { + margin-left: 35px !important; + margin-right: 35px !important; +} + +.mx-8 { + margin-left: 40px !important; + margin-right: 40px !important; +} + +.mx-9 { + margin-left: 45px !important; + margin-right: 45px !important; +} + +.mx-10 { + margin-left: 50px !important; + margin-right: 50px !important; +} + +.mx-11 { + margin-left: 55px !important; + margin-right: 55px !important; +} + +.mx-12 { + margin-left: 60px !important; + margin-right: 60px !important; +} + +.mx-13 { + margin-left: 65px !important; + margin-right: 65px !important; +} + +.mx-14 { + margin-left: 70px !important; + margin-right: 70px !important; +} + +.mx-15 { + margin-left: 75px !important; + margin-right: 75px !important; +} + +.mx-16 { + margin-left: 80px !important; + margin-right: 80px !important; +} + +.mx-17 { + margin-left: 85px !important; + margin-right: 85px !important; +} + +.mx-18 { + margin-left: 90px !important; + margin-right: 90px !important; +} + +.mx-19 { + margin-left: 95px !important; + margin-right: 95px !important; +} + +.mx-20 { + margin-left: 100px !important; + margin-right: 100px !important; +} + +// margin all +.ma-0 { + margin: 0 !important; +} + +.ma-1 { + margin: 5px !important; +} + +.ma-2 { + margin: 10px !important; +} + +.ma-3 { + margin: 15px !important; +} + +.ma-4 { + margin: 20px !important; +} + +.ma-5 { + margin: 25px !important; +} + +.ma-6 { + margin: 30px !important; +} + +.ma-7 { + margin: 35px !important; +} + +.ma-8 { + margin: 40px !important; +} + +.ma-9 { + margin: 45px !important; +} + +.ma-10 { + margin: 50px !important; +} + +.ma-11 { + margin: 55px !important; +} + +.ma-12 { + margin: 60px !important; +} + +.ma-13 { + margin: 65px !important; +} + +.ma-14 { + margin: 70px !important; +} + +.ma-15 { + margin: 75px !important; +} + +.ma-16 { + margin: 80px !important; +} + +.ma-17 { + margin: 85px !important; +} + +.ma-18 { + margin: 90px !important; +} + +.ma-19 { + margin: 95px !important; +} + +.ma-20 { + margin: 100px !important; +} + + + + +// custom spacing +.p-t-8 { + padding-top: 8px; +} \ No newline at end of file diff --git a/site/resources/scss/defaults/_switcher.scss b/site/resources/scss/defaults/_switcher.scss new file mode 100644 index 0000000..7ddf52d --- /dev/null +++ b/site/resources/scss/defaults/_switcher.scss @@ -0,0 +1,55 @@ +// switcherr +.theme-switcher-label { + cursor: pointer; + position: relative; + width: 46px; + height: 46px; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + background-color: rgba(255, 255, 255, 0.2); + @include xs-device { + width: 35px; + height: 35px; + } + + .switch-handle { + border-radius: 50%; + position: relative; + display: flex; + align-items: center; + justify-content: center; + transition: all 0.3s ease-in-out; + i { + position: absolute; + font-size: 22px; + transition: 0.3s; + } + } + + .theme-switcher { + display: none; + } + .light-text { + color: #fff; + } + .dark-text { + color: #000; + } + &.active { + background-color: rgba(0, 0, 0, 0.1); + .light-text { + visibility: hidden; + opacity: 0; + } + .dark-text { + visibility: visible; + opacity: 1; + } + } + .dark-text { + visibility: hidden; + opacity: 0; + } +} diff --git a/site/resources/scss/defaults/_typography.scss b/site/resources/scss/defaults/_typography.scss new file mode 100644 index 0000000..7b2bc9d --- /dev/null +++ b/site/resources/scss/defaults/_typography.scss @@ -0,0 +1,141 @@ +body { + background: $body-bg; + font-weight: 400; + font-size: 15px; + line-height: 24px; + font-family: $font-2; + color: $body-color; +} + +h1, +.aw-h1 { + font-size: 75px; + + @include lg-device { + } + + @include md-device { + } +} + +h2, +.aw-h2 { + font-size: 45px; + + @include sm-device { + font-size: 35px; + } + @include xs-device { + font-size: 28px; + } +} + +h3, +.aw-h3 { + font-size: 24px; + + @include lg-device { + } +} + +h4, +.aw-h4 { + font-size: 18px; + + @include lg-device { + } +} + +h5, +.aw-h5 { + @include sm-device { + } +} + +h6, +.aw-h6 { +} + +h1, +h2, +h3, +h4, +h5, +h6, +.aw-h1, +.aw-h2, +.aw-h3, +.aw-h4, +.aw-h5, +.aw-h6 { + font-family: $font-1; + color: #fff; + margin-bottom: 0; + font-weight: 800; +} + +b, +strong { + font-weight: 800; + font-family: $font-1; + color: #fff; +} + +p { + font-size: 16px; + color: rgba(255, 255, 255, 0.8); + line-height: 26px; + @include xs-device { + font-size: 16px; + } +} + +input:-webkit-autofill { + -webkit-animation-name: autofill; + -webkit-animation-fill-mode: both; +} + +::placeholder { + /* Chrome, Firefox, Opera, Safari 10.1+ */ + opacity: 1; + /* Firefox */ +} + +:-ms-input-placeholder { + /* Internet Explorer 10-11 */ +} + +::-ms-input-placeholder { + /* Microsoft Edge */ +} + +label { + font-size: 15px; + padding-bottom: 0; + display: block; + font-weight: 500; + font-family: $font-1; + color: rgba(255, 255, 255, 0.9); +} + +hr { + margin-top: 0; + margin-bottom: 0; + border-top: 2px solid $body-bg; +} + +h5, +.aw-h5 { + span { + font-size: 15px; + padding-left: 30px; + font-weight: 400; + } +} +ul, +ol { + li { + font-size: 16px; + line-height: 24px; + } +} diff --git a/site/resources/scss/defaults/_variables.scss b/site/resources/scss/defaults/_variables.scss new file mode 100644 index 0000000..61e1dcf --- /dev/null +++ b/site/resources/scss/defaults/_variables.scss @@ -0,0 +1,21 @@ +// Body +$body-bg: #101010; +$body-color: rgba(255, 255, 255, 0.75); +$color-primary: #ff512f; +$color-primary-2: #dd2476; +$color-success: green; +$color-error: #ff512f; +$color-placeholder: #555; +$gradient-primary: linear-gradient(97.3deg, #ff512f 0%, #dd2476 100%); +$bg-color-1: #20202d; +$border-color: #dadce0; +$border-color-light: #656565; +$body-light: #393939; +$body-bg-light: #f9f9fc; +$body-bg-light2: #efefef; +$body-color-light: #65676b; + +// font family +$font-1: "Poppins", sans-serif; +$font-2: "Inter", sans-serif; +$font-3: "Chakra Petch Regular", sans-serif; diff --git a/site/resources/scss/style.css b/site/resources/scss/style.css new file mode 100644 index 0000000..04673e2 --- /dev/null +++ b/site/resources/scss/style.css @@ -0,0 +1,2641 @@ +/* -- For screens 1264px to 1903px */ +/* -- For screens 960px to 1263px */ +/* -- For screens 600px to 959px */ +/* -- For For screens 0 to 600px */ +@import url('../css/vendor/nice-select.css'); +body { + background: #09080D; + font-weight: 400; + font-size: 15px; + line-height: 24px; + font-family: "Poppins", sans-serif; + color: #A1A1A1; +} + +h1, +.aw-h1 { + font-size: 80px; + font-weight: 600; +} + +h2, +.aw-h2 { + font-size: 50px; + font-weight: 600; +} + +h3, +.aw-h3 { + font-size: 24px; +} + +h4, +.aw-h4 { + font-size: 18px; + font-weight: 500; +} + +h1, +h2, +h3, +h4, +h5, +h6, +.aw-h1, +.aw-h2, +.aw-h3, +.aw-h4, +.aw-h5, +.aw-h6 { + font-family: "Poppins", sans-serif; + color: #fff; + margin-bottom: 0; +} + +b, +strong { + font-weight: 600; +} + +p { + font-size: 18px; + color: #A1A1A1; + line-height: 1.4; +} + +input:-webkit-autofill { + -webkit-animation-name: autofill; + -webkit-animation-fill-mode: both; +} + +::-webkit-input-placeholder { + /* Chrome, Firefox, Opera, Safari 10.1+ */ + opacity: 1; + /* Firefox */ +} + +:-ms-input-placeholder { + /* Chrome, Firefox, Opera, Safari 10.1+ */ + opacity: 1; + /* Firefox */ +} + +::-ms-input-placeholder { + /* Chrome, Firefox, Opera, Safari 10.1+ */ + opacity: 1; + /* Firefox */ +} + +::placeholder { + /* Chrome, Firefox, Opera, Safari 10.1+ */ + opacity: 1; + /* Firefox */ +} + +:-ms-input-placeholder { + /* Internet Explorer 10-11 */ +} + +::-ms-input-placeholder { + /* Microsoft Edge */ +} + +label { + font-size: 16px; + font-weight: 600; + padding-bottom: 0; + display: block; +} + +hr { + margin-top: 0; + margin-bottom: 0; + border-top: 2px solid #09080D; +} + +h5 span, +.aw-h5 span { + font-size: 15px; + padding-left: 30px; + font-weight: 400; +} + +ul li, ol li { + font-size: 16px; + line-height: 26px; +} + +/* -- Base css +-------------------------------------------- -- */ +a, img, i { + -webkit-transition: 0.3s; + transition: 0.3s; +} + +a { + text-decoration: none; + color: #A1A1A1; +} + +a:hover { + text-decoration: none; + color: #FF512F; +} + +h4 a:hover { + color: #FF512F !important; +} + +hr { + border-top: 1px solid #515151; +} + +.btn, button { + -webkit-transition: 0.3s; + transition: 0.3s; +} + +ul, +li { + list-style: none; + padding-left: 0; +} + +dl, +ol, +ul { + padding-left: 0; + margin-top: 0; + margin-bottom: 15px; +} + +::-moz-selection { + background: #323da5; + color: #fff; + text-shadow: none; +} + +.theme--light.v-btn.v-btn--icon { + color: #767695; +} + +::-moz-selection { + background: #323da5; + color: #fff; + text-shadow: none; +} + +::selection { + background: #323da5; + color: #fff; + text-shadow: none; +} + +@media (max-width: 575px) { + br { + display: none; + } +} + +.row { + margin-left: -15px; + margin-right: -15px; +} + +.row > * { + padding-left: 15px; + padding-right: 15px; +} + +/* -- Print Media query +---------------------------------------- -- */ +@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) { + /* Style adjustments for high resolution devices */ +} + +/* -- Print styles- Inlined to avoid the additional HTTP request: +----------------------------------------------------------------------------- */ +@media print { + *, + *:before, + *:after { + background: transparent !important; + /* Black prints faster */ + -webkit-box-shadow: none !important; + box-shadow: none !important; + text-shadow: none !important; + } + a, + a:visited { + text-decoration: underline; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + /* -- Don't show links that are fragment identifiers -- */ + a[href^="#"]:after, + a[href^="javascript:"]:after { + content: ""; + } + pre { + white-space: pre-wrap !important; + } + pre, + blockquote { + page-break-inside: avoid; + } + /* -- Printing Tables -- */ + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } +} + +.pt-0 { + padding-top: 0 !important; +} + +.pt-1 { + padding-top: 5px !important; +} + +.pt-2 { + padding-top: 10px !important; +} + +.pt-3 { + padding-top: 15px !important; +} + +.pt-4 { + padding-top: 20px !important; +} + +.pt-5 { + padding-top: 25px !important; +} + +.pt-6 { + padding-top: 30px !important; +} + +.pt-7 { + padding-top: 35px !important; +} + +.pt-8 { + padding-top: 40px !important; +} + +.pt-9 { + padding-top: 45px !important; +} + +.pt-10 { + padding-top: 50px !important; +} + +.pt-11 { + padding-top: 55px !important; +} + +.pt-12 { + padding-top: 60px !important; +} + +.pt-13 { + padding-top: 65px !important; +} + +.pt-14 { + padding-top: 70px !important; +} + +.pt-15 { + padding-top: 75px !important; +} + +.pt-16 { + padding-top: 80px !important; +} + +.pt-17 { + padding-top: 85px !important; +} + +.pt-18 { + padding-top: 90px !important; +} + +.pt-19 { + padding-top: 95px !important; +} + +.pt-20 { + padding-top: 100px !important; +} + +.pb-0 { + padding-bottom: 0 !important; +} + +.pb-1 { + padding-bottom: 5px !important; +} + +.pb-2 { + padding-bottom: 10px !important; +} + +.pb-3 { + padding-bottom: 15px !important; +} + +.pb-4 { + padding-bottom: 20px !important; +} + +.pb-5 { + padding-bottom: 25px !important; +} + +.pb-6 { + padding-bottom: 30px !important; +} + +.pb-7 { + padding-bottom: 35px !important; +} + +.pb-8 { + padding-bottom: 40px !important; +} + +.pb-9 { + padding-bottom: 45px !important; +} + +.pb-10 { + padding-bottom: 50px !important; +} + +.pb-11 { + padding-bottom: 55px !important; +} + +.pb-12 { + padding-bottom: 60px !important; +} + +.pb-13 { + padding-bottom: 65px !important; +} + +.pb-14 { + padding-bottom: 70px !important; +} + +.pb-15 { + padding-bottom: 75px !important; +} + +.pb-16 { + padding-bottom: 80px !important; +} + +.pb-17 { + padding-bottom: 85px !important; +} + +.pb-18 { + padding-bottom: 90px !important; +} + +.pb-19 { + padding-bottom: 95px !important; +} + +.pb-20 { + padding-bottom: 100px !important; +} + +.py-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; +} + +.py-1 { + padding-top: 5px !important; + padding-bottom: 5px !important; +} + +.py-2 { + padding-top: 10px !important; + padding-bottom: 10px !important; +} + +.py-3 { + padding-top: 15px !important; + padding-bottom: 15px !important; +} + +.py-4 { + padding-top: 20px !important; + padding-bottom: 20px !important; +} + +.py-5 { + padding-top: 25px !important; + padding-bottom: 25px !important; +} + +.py-6 { + padding-top: 30px !important; + padding-bottom: 30px !important; +} + +.py-7 { + padding-top: 35px !important; + padding-bottom: 35px !important; +} + +.py-8 { + padding-top: 40px !important; + padding-bottom: 40px !important; +} + +.py-9 { + padding-top: 45px !important; + padding-bottom: 45px !important; +} + +.py-10 { + padding-top: 50px !important; + padding-bottom: 50px !important; +} + +.py-11 { + padding-top: 55px !important; + padding-bottom: 55px !important; +} + +.py-12 { + padding-top: 60px !important; + padding-bottom: 60px !important; +} + +.py-13 { + padding-top: 65px !important; + padding-bottom: 65px !important; +} + +.py-14 { + padding-top: 70px !important; + padding-bottom: 70px !important; +} + +.py-15 { + padding-top: 75px !important; + padding-bottom: 75px !important; +} + +.py-16 { + padding-top: 80px !important; + padding-bottom: 80px !important; +} + +.py-17 { + padding-top: 85px !important; + padding-bottom: 85px !important; +} + +.py-18 { + padding-top: 90px !important; + padding-bottom: 90px !important; +} + +.py-19 { + padding-top: 95px !important; + padding-bottom: 95px !important; +} + +.py-20 { + padding-top: 100px !important; + padding-bottom: 100px !important; +} + +.pl-0 { + padding-left: 0 !important; +} + +.pl-1 { + padding-left: 5px !important; +} + +.pl-2 { + padding-left: 10px !important; +} + +.pl-3 { + padding-left: 15px !important; +} + +.pl-4 { + padding-left: 20px !important; +} + +.pl-5 { + padding-left: 25px !important; +} + +.pl-6 { + padding-left: 30px !important; +} + +.pl-7 { + padding-left: 35px !important; +} + +.pl-8 { + padding-left: 40px !important; +} + +.pl-9 { + padding-left: 45px !important; +} + +.pl-10 { + padding-left: 50px !important; +} + +.pl-11 { + padding-left: 55px !important; +} + +.pl-12 { + padding-left: 60px !important; +} + +.pl-13 { + padding-left: 65px !important; +} + +.pl-14 { + padding-left: 70px !important; +} + +.pl-15 { + padding-left: 75px !important; +} + +.pl-16 { + padding-left: 80px !important; +} + +.pl-17 { + padding-left: 85px !important; +} + +.pl-18 { + padding-left: 90px !important; +} + +.pl-19 { + padding-left: 95px !important; +} + +.pl-20 { + padding-left: 100px !important; +} + +.pr-0 { + padding-right: 0 !important; +} + +.pr-1 { + padding-right: 5px !important; +} + +.pr-2 { + padding-right: 10px !important; +} + +.pr-3 { + padding-right: 15px !important; +} + +.pr-4 { + padding-right: 20px !important; +} + +.pr-5 { + padding-right: 25px !important; +} + +.pr-6 { + padding-right: 30px !important; +} + +.pr-7 { + padding-right: 35px !important; +} + +.pr-8 { + padding-right: 40px !important; +} + +.pr-9 { + padding-right: 45px !important; +} + +.pr-10 { + padding-right: 50px !important; +} + +.pr-11 { + padding-right: 55px !important; +} + +.pr-12 { + padding-right: 60px !important; +} + +.pr-13 { + padding-right: 65px !important; +} + +.pr-14 { + padding-right: 70px !important; +} + +.pr-15 { + padding-right: 75px !important; +} + +.pr-16 { + padding-right: 80px !important; +} + +.pr-17 { + padding-right: 85px !important; +} + +.pr-18 { + padding-right: 90px !important; +} + +.pr-19 { + padding-right: 95px !important; +} + +.pr-20 { + padding-right: 100px !important; +} + +.px-0 { + padding-left: 0 !important; + padding-right: 0 !important; +} + +.px-1 { + padding-left: 5px !important; + padding-right: 5px !important; +} + +.px-2 { + padding-left: 10px !important; + padding-right: 10px !important; +} + +.px-3 { + padding-left: 15px !important; + padding-right: 15px !important; +} + +.px-4 { + padding-left: 20px !important; + padding-right: 20px !important; +} + +.px-5 { + padding-left: 25px !important; + padding-right: 25px !important; +} + +.px-6 { + padding-left: 30px !important; + padding-right: 30px !important; +} + +.px-7 { + padding-left: 35px !important; + padding-right: 35px !important; +} + +.px-8 { + padding-left: 40px !important; + padding-right: 40px !important; +} + +.px-9 { + padding-left: 45px !important; + padding-right: 45px !important; +} + +.px-10 { + padding-left: 50px !important; + padding-right: 50px !important; +} + +.px-11 { + padding-left: 55px !important; + padding-right: 55px !important; +} + +.px-12 { + padding-left: 60px !important; + padding-right: 60px !important; +} + +.px-13 { + padding-left: 65px !important; + padding-right: 65px !important; +} + +.px-14 { + padding-left: 70px !important; + padding-right: 70px !important; +} + +.px-15 { + padding-left: 75px !important; + padding-right: 75px !important; +} + +.px-16 { + padding-left: 80px !important; + padding-right: 80px !important; +} + +.px-17 { + padding-left: 85px !important; + padding-right: 85px !important; +} + +.px-18 { + padding-left: 90px !important; + padding-right: 90px !important; +} + +.px-19 { + padding-left: 95px !important; + padding-right: 95px !important; +} + +.px-20 { + padding-left: 100px !important; + padding-right: 100px !important; +} + +.pa-0 { + padding: 0 !important; +} + +.pa-1 { + padding: 5px !important; +} + +.pa-2 { + padding: 10px !important; +} + +.pa-3 { + padding: 15px !important; +} + +.pa-4 { + padding: 20px !important; +} + +.pa-5 { + padding: 25px !important; +} + +.pa-6 { + padding: 30px !important; +} + +.pa-7 { + padding: 35px !important; +} + +.pa-8 { + padding: 40px !important; +} + +.pa-9 { + padding: 45px !important; +} + +.pa-10 { + padding: 50px !important; +} + +.pa-11 { + padding: 55px !important; +} + +.pa-12 { + padding: 60px !important; +} + +.pa-13 { + padding: 65px !important; +} + +.pa-14 { + padding: 70px !important; +} + +.pa-15 { + padding: 75px !important; +} + +.pa-16 { + padding: 80px !important; +} + +.pa-17 { + padding: 85px !important; +} + +.pa-18 { + padding: 90px !important; +} + +.pa-19 { + padding: 95px !important; +} + +.pa-20 { + padding: 100px !important; +} + +.mt-0 { + margin-top: 0 !important; +} + +.mt-1 { + margin-top: 5px !important; +} + +.mt-2 { + margin-top: 10px !important; +} + +.mt-3 { + margin-top: 15px !important; +} + +.mt-4 { + margin-top: 20px !important; +} + +.mt-5 { + margin-top: 25px !important; +} + +.mt-6 { + margin-top: 30px !important; +} + +.mt-7 { + margin-top: 35px !important; +} + +.mt-8 { + margin-top: 40px !important; +} + +.mt-9 { + margin-top: 45px !important; +} + +.mt-10 { + margin-top: 50px !important; +} + +.mt-11 { + margin-top: 55px !important; +} + +.mt-12 { + margin-top: 60px !important; +} + +.mt-13 { + margin-top: 65px !important; +} + +.mt-14 { + margin-top: 70px !important; +} + +.mt-15 { + margin-top: 75px !important; +} + +.mt-16 { + margin-top: 80px !important; +} + +.mt-17 { + margin-top: 85px !important; +} + +.mt-18 { + margin-top: 90px !important; +} + +.mt-19 { + margin-top: 95px !important; +} + +.mt-20 { + margin-top: 100px !important; +} + +.mb-0 { + margin-bottom: 0 !important; +} + +.mb-1 { + margin-bottom: 5px !important; +} + +.mb-2 { + margin-bottom: 10px !important; +} + +.mb-3 { + margin-bottom: 15px !important; +} + +.mb-4 { + margin-bottom: 20px !important; +} + +.mb-5 { + margin-bottom: 25px !important; +} + +.mb-6 { + margin-bottom: 30px !important; +} + +.mb-7 { + margin-bottom: 35px !important; +} + +.mb-8 { + margin-bottom: 40px !important; +} + +.mb-9 { + margin-bottom: 45px !important; +} + +.mb-10 { + margin-bottom: 50px !important; +} + +.mb-11 { + margin-bottom: 55px !important; +} + +.mb-12 { + margin-bottom: 60px !important; +} + +.mb-13 { + margin-bottom: 65px !important; +} + +.mb-14 { + margin-bottom: 70px !important; +} + +.mb-15 { + margin-bottom: 75px !important; +} + +.mb-16 { + margin-bottom: 80px !important; +} + +.mb-17 { + margin-bottom: 85px !important; +} + +.mb-18 { + margin-bottom: 90px !important; +} + +.mb-19 { + margin-bottom: 95px !important; +} + +.mb-20 { + margin-bottom: 100px !important; +} + +.my-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; +} + +.my-1 { + margin-top: 5px !important; + margin-bottom: 5px !important; +} + +.my-2 { + margin-top: 10px !important; + margin-bottom: 10px !important; +} + +.my-3 { + margin-top: 15px !important; + margin-bottom: 15px !important; +} + +.my-4 { + margin-top: 20px !important; + margin-bottom: 20px !important; +} + +.my-5 { + margin-top: 25px !important; + margin-bottom: 25px !important; +} + +.my-6 { + margin-top: 30px !important; + margin-bottom: 30px !important; +} + +.my-7 { + margin-top: 35px !important; + margin-bottom: 35px !important; +} + +.my-8 { + margin-top: 40px !important; + margin-bottom: 40px !important; +} + +.my-9 { + margin-top: 45px !important; + margin-bottom: 45px !important; +} + +.my-10 { + margin-top: 50px !important; + margin-bottom: 50px !important; +} + +.my-11 { + margin-top: 55px !important; + margin-bottom: 55px !important; +} + +.my-12 { + margin-top: 60px !important; + margin-bottom: 60px !important; +} + +.my-13 { + margin-top: 65px !important; + margin-bottom: 65px !important; +} + +.my-14 { + margin-top: 70px !important; + margin-bottom: 70px !important; +} + +.my-15 { + margin-top: 75px !important; + margin-bottom: 75px !important; +} + +.my-16 { + margin-top: 80px !important; + margin-bottom: 80px !important; +} + +.my-17 { + margin-top: 85px !important; + margin-bottom: 85px !important; +} + +.my-18 { + margin-top: 90px !important; + margin-bottom: 90px !important; +} + +.my-19 { + margin-top: 95px !important; + margin-bottom: 95px !important; +} + +.my-20 { + margin-top: 100px !important; + margin-bottom: 100px !important; +} + +.ml-0 { + margin-left: 0 !important; +} + +.ml-1 { + margin-left: 5px !important; +} + +.ml-2 { + margin-left: 10px !important; +} + +.ml-3 { + margin-left: 15px !important; +} + +.ml-4 { + margin-left: 20px !important; +} + +.ml-5 { + margin-left: 25px !important; +} + +.ml-6 { + margin-left: 30px !important; +} + +.ml-7 { + margin-left: 35px !important; +} + +.ml-8 { + margin-left: 40px !important; +} + +.ml-9 { + margin-left: 45px !important; +} + +.ml-10 { + margin-left: 50px !important; +} + +.ml-11 { + margin-left: 55px !important; +} + +.ml-12 { + margin-left: 60px !important; +} + +.ml-13 { + margin-left: 65px !important; +} + +.ml-14 { + margin-left: 70px !important; +} + +.ml-15 { + margin-left: 75px !important; +} + +.ml-16 { + margin-left: 80px !important; +} + +.ml-17 { + margin-left: 85px !important; +} + +.ml-18 { + margin-left: 90px !important; +} + +.ml-19 { + margin-left: 95px !important; +} + +.ml-20 { + margin-left: 100px !important; +} + +.mr-0 { + margin-right: 0 !important; +} + +.mr-1 { + margin-right: 5px !important; +} + +.mr-2 { + margin-right: 10px !important; +} + +.mr-3 { + margin-right: 15px !important; +} + +.mr-4 { + margin-right: 20px !important; +} + +.mr-5 { + margin-right: 25px !important; +} + +.mr-6 { + margin-right: 30px !important; +} + +.mr-7 { + margin-right: 35px !important; +} + +.mr-8 { + margin-right: 40px !important; +} + +.mr-9 { + margin-right: 45px !important; +} + +.mr-10 { + margin-right: 50px !important; +} + +.mr-11 { + margin-right: 55px !important; +} + +.mr-12 { + margin-right: 60px !important; +} + +.mr-13 { + margin-right: 65px !important; +} + +.mr-14 { + margin-right: 70px !important; +} + +.mr-15 { + margin-right: 75px !important; +} + +.mr-16 { + margin-right: 80px !important; +} + +.mr-17 { + margin-right: 85px !important; +} + +.mr-18 { + margin-right: 90px !important; +} + +.mr-19 { + margin-right: 95px !important; +} + +.mr-20 { + margin-right: 100px !important; +} + +.mx-0 { + margin-left: 0 !important; + margin-right: 0 !important; +} + +.mx-1 { + margin-left: 5px !important; + margin-right: 5px !important; +} + +.mx-2 { + margin-left: 10px !important; + margin-right: 10px !important; +} + +.mx-3 { + margin-left: 15px !important; + margin-right: 15px !important; +} + +.mx-4 { + margin-left: 20px !important; + margin-right: 20px !important; +} + +.mx-5 { + margin-left: 25px !important; + margin-right: 25px !important; +} + +.mx-6 { + margin-left: 30px !important; + margin-right: 30px !important; +} + +.mx-7 { + margin-left: 35px !important; + margin-right: 35px !important; +} + +.mx-8 { + margin-left: 40px !important; + margin-right: 40px !important; +} + +.mx-9 { + margin-left: 45px !important; + margin-right: 45px !important; +} + +.mx-10 { + margin-left: 50px !important; + margin-right: 50px !important; +} + +.mx-11 { + margin-left: 55px !important; + margin-right: 55px !important; +} + +.mx-12 { + margin-left: 60px !important; + margin-right: 60px !important; +} + +.mx-13 { + margin-left: 65px !important; + margin-right: 65px !important; +} + +.mx-14 { + margin-left: 70px !important; + margin-right: 70px !important; +} + +.mx-15 { + margin-left: 75px !important; + margin-right: 75px !important; +} + +.mx-16 { + margin-left: 80px !important; + margin-right: 80px !important; +} + +.mx-17 { + margin-left: 85px !important; + margin-right: 85px !important; +} + +.mx-18 { + margin-left: 90px !important; + margin-right: 90px !important; +} + +.mx-19 { + margin-left: 95px !important; + margin-right: 95px !important; +} + +.mx-20 { + margin-left: 100px !important; + margin-right: 100px !important; +} + +.ma-0 { + margin: 0 !important; +} + +.ma-1 { + margin: 5px !important; +} + +.ma-2 { + margin: 10px !important; +} + +.ma-3 { + margin: 15px !important; +} + +.ma-4 { + margin: 20px !important; +} + +.ma-5 { + margin: 25px !important; +} + +.ma-6 { + margin: 30px !important; +} + +.ma-7 { + margin: 35px !important; +} + +.ma-8 { + margin: 40px !important; +} + +.ma-9 { + margin: 45px !important; +} + +.ma-10 { + margin: 50px !important; +} + +.ma-11 { + margin: 55px !important; +} + +.ma-12 { + margin: 60px !important; +} + +.ma-13 { + margin: 65px !important; +} + +.ma-14 { + margin: 70px !important; +} + +.ma-15 { + margin: 75px !important; +} + +.ma-16 { + margin: 80px !important; +} + +.ma-17 { + margin: 85px !important; +} + +.ma-18 { + margin: 90px !important; +} + +.ma-19 { + margin: 95px !important; +} + +.ma-20 { + margin: 100px !important; +} + +.p-t-8 { + padding-top: 8px; +} + +.section-bg-separation { + background: #202027; +} + +.section-bg-separation-2 { + background: #000; +} + +.d-flex-center { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} + +.d-flex-between { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; +} + +.pt-120 { + padding-top: 120px; +} + +.pt-120 { + padding-top: 120px; +} + +.ptb-120 { + padding: 120px 0; +} + +.btn { + font-size: 20px; + padding: 11px 45px; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + color: #fff; + border-radius: 50px; + min-height: 56px; +} + +.btn:focus { + -webkit-box-shadow: none; + box-shadow: none; +} + +.btn i { + padding-right: 8px; +} + +.btn:hover { + color: #fff; + -webkit-transform: translateY(-3px); + transform: translateY(-3px); +} + +.btn-small { + font-size: 16px; + padding: 6px 25px; + min-height: 40px; +} + +.btn-outline { + border: 2px solid #A1A1A1; +} + +.btn-outline:hover { + border-color: #fff; + color: #FF512F; +} + +.btn-gradient, .btn-black:hover { + background: linear-gradient(97.3deg, #FF512F 0%, #DD2476 100%); +} + +.btn-black { + background: #09080D; +} + +/* -- Chrome hacks -- */ +/* -- Firefox hacks -- */ +@-moz-document url-prefix() {}/* -- IE hacks -- */ +.explore-style-two .slick-dotted.slick-slider { + margin-bottom: 0; +} + +.explore-style-two .slick-dots { + display: inline-block !important; + bottom: -80px; + position: absolute; + z-index: 2; +} + +.explore-style-two .slick-dots li button { + font-size: 0; + line-height: 0; + display: block; + width: 7px; + height: 7px; + padding: 5px; + cursor: pointer; + color: transparent; + border: 0; + outline: none; + background: transparent !important; + border-radius: 50%; + border: 2px solid #FF512F; +} + +.explore-style-two .slick-dots li.slick-active button { + background: #FF512F !important; +} + +.rotate-360 { + -webkit-animation: loading 20s linear infinite; + animation: loading 20s linear infinite; +} + +@-webkit-keyframes loading { + 0% { + -webkit-transform: rotate(0); + transform: rotate(0); + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@keyframes loading { + 0% { + -webkit-transform: rotate(0); + transform: rotate(0); + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@-webkit-keyframes jumpTwo { + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + 40% { + -webkit-transform: translate3d(0, 20px, 0); + transform: translate3d(0, 20px, 0); + } + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes jumpTwo { + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + 40% { + -webkit-transform: translate3d(0, 20px, 0); + transform: translate3d(0, 20px, 0); + } + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.section-title { + margin-bottom: 60px; +} + +.section-title .subtitle { + color: #FF512F; + font-weight: 500; + font-size: 20px; + text-decoration: underline; + letter-spacing: 0.2em; + display: inline-block; + margin-bottom: 10px; +} + +.mainmenu-nav .mainmenu { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + list-style: none; + padding: 0; + margin: 0 0 0 30px; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + -ms-flex-wrap: wrap; + flex-wrap: wrap; +} + +.mainmenu-nav .mainmenu li { + position: relative; + margin: 0 18px; +} + +.mainmenu-nav .mainmenu li a { + font-weight: 500; + padding: 28px 12px; + font-size: 18px; + display: block; + border-radius: 3px; +} + +@media only screen and (min-width: 1200px) and (max-width: 1599px) { + .mainmenu-nav .mainmenu li a { + padding: 28px 6px; + } +} + +.mainmenu-nav .mainmenu li .submenu { + min-width: 230px; + height: auto; + position: absolute; + z-index: 99; + top: 90%; + left: 0; + z-index: 90; + opacity: 0; + visibility: hidden; + text-align: left; + padding: 12px 0; + -webkit-transition: 0.3s; + transition: 0.3s; + background-color: #000; + border-radius: 10px; + border-left: 1px solid #ffffff14; + border-bottom: 1px solid #ffffff14; + border-right: 1px solid #ffffff14; +} + +.mainmenu-nav .mainmenu li .submenu li { + margin: 0; +} + +.mainmenu-nav .mainmenu li .submenu li a { + font-weight: 400; + padding: 8px 14px; + font-size: 15px; + display: block; + color: #acacac; + margin: 0 10px; + border-radius: 4px; + -webkit-transition: 0.3s; + transition: 0.3s; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; +} + +.mainmenu-nav .mainmenu li .submenu li a svg, +.mainmenu-nav .mainmenu li .submenu li a i { + stroke-width: 2px; + width: 22px; + height: auto; + background: transparent; + padding: 2px; + border-radius: 2px; + -webkit-transition: 0.3s; + transition: 0.3s; + width: 22px; + left: -10px; + position: relative; + opacity: 0; + margin: 0 -3px; +} + +.mainmenu-nav .mainmenu li .submenu li a:hover { + color: #FF512F; + margin-left: 5px; +} + +.mainmenu-nav .mainmenu li .submenu li a:hover svg, +.mainmenu-nav .mainmenu li .submenu li a:hover i { + opacity: 1; + left: 0; +} + +.mainmenu-nav .mainmenu li:hover .submenu { + opacity: 1; + visibility: visible; + top: 100%; +} + +.mainmenu-nav .mainmenu li.has-droupdown > a { + position: relative; +} + +.mainmenu-nav .mainmenu li.has-droupdown > a::after { + content: "\EA4E"; + position: absolute; + top: 50%; + font-family: 'remixicon' !important; + right: -12px; + font-size: 22px; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); +} + +@media only screen and (min-width: 1200px) and (max-width: 1599px) { + .mainmenu-nav .mainmenu li.has-droupdown > a::after { + right: -11px; + } +} + +.rn-header.header--fixed.position-absolute { + background: #00000042; + -webkit-backdrop-filter: blur(1px); + backdrop-filter: blur(1px); +} + +.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.nav-item .submenu { + background: #00000042 !important; +} + +.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.nav-item .submenu li a { + color: #c7c7cf; +} + +.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.nav-item .submenu li a svg, +.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.nav-item .submenu li a i { + color: #c7c7cf; +} + +.rn-header.header--fixed.sticky { + background: transparent; + -webkit-backdrop-filter: blur(15px); + backdrop-filter: blur(15px); +} + +span.rn-badge-card { + margin-left: 7px; + padding: 1px 7px; + font-weight: 400; + position: relative; + z-index: 2; + font-size: 14px; +} + +span.rn-badge-card::before { + content: ""; + width: 100%; + height: 100%; + left: 0; + top: 0; + position: absolute; + background: linear-gradient(95deg, #000000 15%, #0074b9 45%, #0400ff 75%, #2a1b95) 95%/200% 100%; + z-index: -1; + border-radius: 100px; + opacity: 0.5; +} + +@media (min-width: 1920px) { + .fluid-header { + padding: 0 172px; + } +} + +@media (max-width: 1919px) { + .fluid-header { + padding: 0 118px; + } +} + +.header-fixed { + background: transparent; + position: absolute; + width: 100%; + left: 0; + top: 40px; +} + +.header-right-inner { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + margin-bottom: 0; +} + +.header-right-inner i { + font-size: 22px; + color: #A1A1A1; +} + +.header-right-inner .btn-gradient i, .header-right-inner .btn-black:hover i { + color: #fff; +} + +.header-right-inner > li { + position: relative; +} + +.header-right-inner > li .list-group.submenu { + width: 320px; + padding: 0; +} + +.header-right-inner > li .list-group.submenu .list-group-item { + position: relative; + display: block; + padding: 20px 24px; + color: #fff; + text-decoration: none; + background-color: #09080D; +} + +.header-right-inner > li .list-group.submenu .list-group-item.active, .header-right-inner > li .list-group.submenu .list-group-item:hover { + border-color: #1a1a1a; + background-color: #1a1a1a; +} + +.header-right-inner > li .list-group.submenu .list-group-item:not(:last-child) { + border-bottom: 1px solid rgba(255, 255, 255, 0.125); +} + +.header-right-inner > li .list-group.submenu .list-group-item h5 { + font-size: 16px; +} + +.header-right-inner > li .list-group.submenu .list-group-item p { + font-size: 12px; + line-height: 18px; + margin-bottom: 0; +} + +.header-right-inner > li .submenu { + min-width: 230px; + height: auto; + position: absolute; + z-index: 99; + top: 90%; + right: 0; + z-index: 90; + opacity: 0; + visibility: hidden; + text-align: left; + padding: 12px 0; + -webkit-transition: 0.3s; + transition: 0.3s; + background-color: #000; + border-radius: 10px; + border-left: 1px solid #ffffff14; + border-bottom: 1px solid #ffffff14; + border-right: 1px solid #ffffff14; +} + +.header-right-inner > li .submenu li a { + font-weight: 400; + padding: 8px 14px; + font-size: 15px; + display: block; + color: #acacac; + margin: 0 10px; + border-radius: 4px; + -webkit-transition: 0.3s; + transition: 0.3s; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} + +.header-right-inner > li .submenu li a:hover { + color: #FF512F; +} + +.header-right-inner > li .submenu li a i { + padding-right: 8px; +} + +.header-right-inner > li:not(:first-child) { + margin-left: 30px; +} + +.header-right-inner > li:last-child { + margin-left: 20px; +} + +.header-right-inner > li:hover .submenu { + opacity: 1; + visibility: visible; + top: 100%; +} + +.notification-bar > a { + width: 46px; + height: 46px; + border: 2px solid #A1A1A1; + 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%; + position: relative; +} + +.notification-bar > a .ni-badge { + font-size: 14px; + font-weight: 500; + background: #FF512F; + color: #fff; + position: absolute; + right: -15px; + top: 0; + z-index: 3; + min-width: 36px; + line-height: 20px; + 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: 10px; +} + +.bg-1 { + background-image: url(../../img//bg/bg-1.jpg); +} + +.bg-image { + background-repeat: no-repeat; + background-position: center center; + background-size: cover; +} + +.hero-banner_inner { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + min-height: 100vh; + padding-top: 50px; +} + +.banner-content { + position: relative; +} + +.banner-content h1 { + color: #fff; + font-family: "Reem Kufi", sans-serif; +} + +.banner-content h1 span { + color: #14141f; + background: #fff; + background-size: 100% 100%; + -webkit-background-clip: text; + -webkit-text-stroke: 3px transparent; +} + +.banner-content p { + font-size: 20px; + line-height: 1.75; + text-transform: capitalize; +} + +.group-btn { + margin-left: -10px; + margin-right: -10px; +} + +.group-btn a { + margin: 0 10px; +} + +.shape { + position: absolute; + z-index: 2; +} + +.shape-2 { + right: 22%; + bottom: 5%; +} + +.shape-3 { + top: -53px; + left: 33%; +} + +.slider-wrapper { + position: relative; +} + +.explore-style-one { + background: #202027; + padding: 15px; + border-radius: 10px; +} + +.explore-style-one .thumb { + position: relative; + overflow: hidden; + display: block; +} + +.explore-style-one .thumb img { + display: block; + width: 100%; + border-radius: 10px; + -webkit-transition: 0.5s; + transition: 0.5s; +} + +.explore-style-one .content .title { + font-size: 18px; + padding-right: 10px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +.explore-style-one .content .title a { + color: #fff; +} + +.explore-style-one .content .title a:hover { + color: #FF512F; +} + +.explore-style-one .profile-share a { + position: relative; + z-index: 1; +} + +.explore-style-one .profile-share a:nth-child(2), .explore-style-one .profile-share a:nth-child(3) { + margin-left: -12px; +} + +.explore-style-one .profile-share a.more-author-text { + padding-left: 7px; +} + +.explore-style-one .product-owner .bid-owner { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + padding-right: 10px; + -ms-flex-preferred-size: 174px; + flex-basis: 174px; +} + +.explore-style-one .product-owner strong a { + color: #fff; + font-weight: 500; +} + +.explore-style-one .product-owner strong a:hover { + color: #FF512F; +} + +.explore-style-one .product-owner .biding-price { + color: #fff; +} + +.explore-style-one .product-owner .biding-price i { + color: #FF512F; + padding-right: 5px; +} + +.explore-style-one .btn-small { + padding: 6px 15px; +} + +.explore-style-one .history { + font-size: 16px; + font-weight: 500; +} + +.explore-style-one .history i { + font-size: 20px; + padding-right: 5px; +} + +.explore-style-one .action-wrapper { + border-top: 1px dashed #515151; +} + +.explore-style-one:hover .thumb img { + -webkit-transform: scale(1.1); + transform: scale(1.1); +} + +.reaction-btn { + border: none; + font-size: 14px; + font-weight: 500; + position: absolute; + top: 15px; + right: 15px; + color: #fff; + background: #343444; + border-radius: 6px; + padding: 5px 6px; + min-width: 58px; + height: 24px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; +} + +.reaction-btn i { + color: #FF512F; + font-size: 20px; +} + +.more-dropdown { + color: #fff; + cursor: pointer; + padding: 0 5px; + text-align: right; + position: relative; + left: 5px; + font-size: 20px; +} + +.more-dropdown i { + color: #A1A1A1; + -webkit-transition: 0.3s; + transition: 0.3s; +} + +.more-dropdown i:hover { + color: #fff; +} + +.countdown { + width: 170px; + position: absolute; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + bottom: 0; + left: 50%; + -webkit-transform: translate(-50%); + transform: translate(-50%); + bottom: 12px; + cursor: pointer; + padding: 5px 8px; + border-radius: 5px; + z-index: 2; +} + +.countdown.btn:hover { + -webkit-transform: translateY(0); + transform: translateY(0); + -webkit-transform: translate(-50%); + transform: translate(-50%); +} + +.countdown .countdown-value { + font-size: 16px; + font-weight: 400; + color: #fff; +} + +.countdown .countdown-heading { + padding: 0 10px; +} + +.countdown .seconds .countdown-heading { + padding: 0; +} + +.explore-style-two { + background: #343444; + padding: 30px; + border-radius: 35px; + position: relative; +} + +.explore-style-two .thumb img { + border-radius: 30px; + width: 100%; +} + +.explore-style-two .slick-list { + border-radius: 30px; +} + +.explore-style-two .explore-content { + background: #FFFFFF; + padding: 17px; + -webkit-backdrop-filter: blur(25px); + backdrop-filter: blur(25px); + border-radius: 10px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + max-width: 301px; + position: absolute; + bottom: 60px; + right: -35px; + -webkit-animation: jumpTwo 5.5s linear infinite; + animation: jumpTwo 5.5s linear infinite; +} + +.explore-style-two .explore-content .btn { + padding-left: 18px; + padding-right: 18px; +} + +.explore-style-two .explore-content .price { + padding-right: 28px; +} + +.explore-style-two .explore-content .price span { + font-size: 12px; + line-height: 18px; + font-weight: 500; + margin-bottom: 5px; + color: #A1A1A1; + display: inline-block; +} + +.explore-style-two .explore-content .price h6 { + font-size: 16px; + font-weight: 500; + line-height: 23px; + font-family: "Poppins", sans-serif; + margin: 0; + color: #343444; +} + +.sticker { + font-size: 14px; + background: #FF512F; + color: #fff; + padding: 4px 10px; + border-radius: 4px; + position: absolute; + top: 50px; + left: 50px; +} + +.top-seller-style-one { + background: #202027; + padding: 25px; + border-radius: 20px; + text-align: center; +} + +.top-seller-style-one .thumb { + display: block; + position: relative; + width: 70px; + height: 70px; + margin: 0 auto; +} + +.top-seller-style-one .thumb .ri-check-line { + width: 20px; + height: 20px; + background: #FF512F; + color: #fff; + border-radius: 50%; + position: absolute; + right: 0; + bottom: 0; +} + +.top-seller-style-one .title { + line-height: 27px; +} + +.top-seller-style-one .title a { + color: #fff; +} + +.top-seller-style-one .price { + font-weight: 600; + color: #A1A1A1; + line-height: 27px; +} + +.popular-collection-style-one { + background: #202027; + border-radius: 20px; + padding: 20px; +} + +.popular-collection-style-one a { + display: block; +} + +.popular-collection-style-one img { + border-radius: 10px; + width: 100%; +} + +.popular-collection-style-one .large-thumbnail { + border-radius: 20px; + position: relative; + overflow: hidden; +} + +.popular-collection-style-one .large-thumbnail img { + width: 100%; +} + +.popular-collection-style-one .small-thumb-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + margin-left: -10px; + margin-right: -10px; +} + +.popular-collection-style-one .small-thumb-group img { + -ms-flex-preferred-size: 33.333333%; + flex-basis: 33.333333%; + margin: 20px 10px 0; +} + +.popular-collection-style-one .title a { + color: #fff; +} + +.popular-collection-style-one:hover .large-thumbnail img { + -webkit-transform: scale(1.1); + transform: scale(1.1); +} + +.card-block-style-one { + background: #202027; + padding: 40px; + border-radius: 10px; +} + +.card-block-style-one .title { + text-transform: capitalize; + font-weight: 500; +} + +.card-block-style-one p { + font-size: 17px; + font-weight: 300; + margin-bottom: 0; + line-height: 30px; +} + +.footer-inner { + background: #000; +} + +.copyright { + padding-top: 40px; + padding-bottom: 40px; +} + +.copyright p { + margin: 0; + font-size: 16px; +} + +.footer-widget.first-block { + padding-right: 23%; +} + +.footer-widget p { + font-size: 16px; + line-height: 27px; +} + +.footer-widget h4 { + margin-bottom: 30px; + text-transform: capitalize; + position: relative; +} + +.footer-widget h4::after { + content: ""; + position: absolute; + left: 0; + bottom: -10px; + background: #FF512F; + width: 50px; + height: 3px; +} + +.footer-widget ul li, .footer-widget ol li { + font-size: 16px; + line-height: 26px; +} + +.footer-widget ul li:not(:last-child), .footer-widget ol li:not(:last-child) { + margin-bottom: 14px; +} + +.social { + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + margin: 0 -8px; +} + +.social a { + width: 42px; + height: 42px; + 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%; + border: 1px solid #A1A1A1; + margin: 0 8px; + font-size: 20px; +} + +.social a:hover { + background: #FF512F; + border-color: #FF512F; + color: #fff; + -webkit-transform: translateY(-3px); + transform: translateY(-3px); +} + +.subscribe-mail { + position: relative; +} + +.subscribe-mail input { + width: 100%; + border: 2px solid #A1A1A1; + height: 60px; + border-radius: 54px; + padding: 20px 30px; + background: transparent; + font-weight: 500; +} + +.subscribe-mail button { + border: none; + position: absolute; + right: 5px; + top: 5px; + background: #FF512F; + width: 68px; + height: 50px; + border-radius: 48px; + font-size: 20px; + color: #fff; +} +/*# sourceMappingURL=style.css.map */ \ No newline at end of file diff --git a/site/resources/scss/style.css.map b/site/resources/scss/style.css.map new file mode 100644 index 0000000..7b83f3b --- /dev/null +++ b/site/resources/scss/style.css.map @@ -0,0 +1,31 @@ +{ + "version": 3, + "mappings": "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", + "sources": [ + "style.scss", + "defaults/_variables.scss", + "defaults/_mixin.scss", + "defaults/_typography.scss", + "defaults/_base.scss", + "defaults/_spacing.scss", + "defaults/_helper-class.scss", + "defaults/_form.scss", + "defaults/_button.scss", + "defaults/_breadcrumb.scss", + "defaults/_browserhacks.scss", + "defaults/_preloader.scss", + "defaults/_slick-custom.scss", + "defaults/_animation.scss", + "defaults/_section-title.scss", + "components/_menu.scss", + "components/_header.scss", + "components/_hero.scss", + "components/_explore.scss", + "components/_top-seller.scss", + "components/_popular-collection.scss", + "components/_wallet-setup.scss", + "components/_footer.scss" + ], + "names": [], + "file": "style.css" +} \ No newline at end of file diff --git a/site/resources/views/home/page.blade.php b/site/resources/views/home/page.blade.php new file mode 100644 index 0000000..4f05192 --- /dev/null +++ b/site/resources/views/home/page.blade.php @@ -0,0 +1,177 @@ +@extends('layouts.master') + +@section('hero') +
+
+
+
+
+ + + +
+ +
+
+ +
+
+ nft live auction thumbnail + + +
+ +
+ + +
+ Artwork By
KorrectDaRekard
+ Nft_Profile +
+ +
+ +
+ + +
+
+ nft live auction thumbnail + + +
+ +
+ + +
+ Artwork By
Capitalist Agenda
+ Nft_Profile +
+ +
+ +
+ + +
+
+ nft live auction thumbnail + + +
+ +
+ + +
+ Artwork By
KorrectDaRekard
+ Nft_Profile +
+ +
+ +
+ + +
+
+ +
+
+ +
+
+@endsection \ No newline at end of file diff --git a/site/resources/views/layouts/master.blade.php b/site/resources/views/layouts/master.blade.php new file mode 100644 index 0000000..355adbf --- /dev/null +++ b/site/resources/views/layouts/master.blade.php @@ -0,0 +1,1229 @@ + + + + + + + + @include('partials/favicon') + @vite(['resources/scss/app.scss']) + @yield('additional_headers') + + + @include('partials/preloader') + @include('partials/nav/head') + @yield('hero') + + +
+
+
+ Artworks +

Recently Submitted

+
+ + +
+
+
+ nft live auction thumbnail +
+
+ + + +
+ +
+ + +
+ Artwork By
Sir Paul Couture
+ Nft_Profile +
+
+ Submitted for
No Agenda (1529)
+
+ + +
+ +
+ + + +
+
+ nft live auction thumbnail +
+
+ + + +
+ +
+ + +
+ Artwork By
Roger Roundy
+ Nft_Profile +
+
+ Submitted for
No Agenda (1529)
+
+ + +
+ +
+ + +
+
+ nft live auction thumbnail +
+
+ + + +
+ +
+ + +
+ Artwork By
Tante_Neel
+ Nft_Profile +
+
+ Submitted for
No Agenda (1529)
+
+ + +
+ +
+ + +
+
+ nft live auction thumbnail +
+
+ + + +
+ +
+ + +
+ Artwork By
Nessworks
+ Nft_Profile +
+
+ Selected for
No Agenda (1529)
+
+ + +
+ +
+ + +
+
+ nft live auction thumbnail +
+
+ + + +
+ +
+ + +
+ Artwork By
iomonk
+ Nft_Profile +
+
+ Submitted for
No Agenda (1529)
+
+ + +
+ +
+ + + + +
+ + +
+ + + +
+
+
+
+ The Artists +

Most Active

+
+ + +
+ + + +
+ +
+ + + {{-- + +
+
+
+
+ Exclusive Assets +

Explore

+
+ + +
+ + + + + +
+ +
+ +
+
+
+
+
+ nft live auction thumbnail + + +
+ +
+ + +
+ +
+ +
+ Owned By Zuckerberg + 76.4 ETH +
+ + + +
+ +
+
+ + +
+
+
+ nft live auction thumbnail + + +
+ +
+
+

Dead Rover Club

+
+ +
+
+ +
+ +
+ +
+ Owned By Zuckerberg + 76.4 ETH +
+ + + +
+ +
+
+ + +
+
+
+ nft live auction thumbnail + + +
+ +
+
+

SudsyPanda

+
+ +
+
+ +
+ +
+ +
+ Owned By Jacson Rio + 76.4 ETH +
+ + + +
+ +
+
+ + +
+
+
+ nft live auction thumbnail + + +
+ +
+
+

TrapMonkie 3D

+
+ +
+
+ +
+ +
+ +
+ Owned By Fuliani + 76.4 ETH +
+ + + +
+ +
+
+ + +
+
+
+ nft live auction thumbnail + + +
+ +
+ + +
+ +
+ +
+ Owned By Kartik + 76.4 ETH +
+ + + +
+ +
+
+ + +
+
+
+ nft live auction thumbnail + + +
+ +
+
+

Illustrations

+
+ +
+
+ +
+ +
+ +
+ Owned By Richardson + 76.4 ETH +
+ + + +
+ +
+
+ + +
+
+
+ nft live auction thumbnail + + +
+ +
+
+

Collectibeles

+
+ +
+
+ +
+ +
+ +
+ Owned By Mark Keni + 76.4 ETH +
+ + + +
+ +
+
+ + +
+
+
+ nft live auction thumbnail + + +
+ +
+
+

Virtual Worlds

+
+ +
+
+ +
+ +
+ +
+ Owned By Banuri + 76.4 ETH +
+ + + +
+ +
+
+ +
+ +
+ +
+ + --}} + +
+
+
+ Browse by category +

Popular Collections

+
+ + + +
+ +
+ + + +
+
+
+ HOW IT WORKS +

Create & sell your NFTs

+
+ +
+
+ wallet +

set up your wallet

+

There are a few things worth doing before creating your first NFTs. In the image above, you’ll not + personalized banner. To upload yours, press the pencil icon in the top right.

+
+ + + +
+ wallet +

Create your collection

+

There are a few things worth doing before creating your first NFTs. In the image above, you’ll not + personalized banner. To upload yours, press the pencil icon in the top right.

+
+ + +
+ wallet +

List them for sale

+

There are a few things worth doing before creating your first NFTs. In the image above, you’ll not + personalized banner. To upload yours, press the pencil icon in the top right.

+
+ + +
+ wallet +

List them for sale

+

There are a few things worth doing before creating your first NFTs. In the image above, you’ll not + personalized banner. To upload yours, press the pencil icon in the top right.

+
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @vite(['resources/js/app.js']) + + \ No newline at end of file diff --git a/site/resources/views/partials/favicon.blade.php b/site/resources/views/partials/favicon.blade.php new file mode 100644 index 0000000..fec6032 --- /dev/null +++ b/site/resources/views/partials/favicon.blade.php @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/site/resources/views/partials/nav/head.blade.php b/site/resources/views/partials/nav/head.blade.php new file mode 100644 index 0000000..8723f61 --- /dev/null +++ b/site/resources/views/partials/nav/head.blade.php @@ -0,0 +1,93 @@ +{{-- start header area --}} +
+
+
+ + +
+
+ +
+
+
+{{-- end header area --}} +{{-- start mobile pop-up menu --}} + +{{-- end mobile pop-up menu --}} \ No newline at end of file diff --git a/site/resources/views/partials/nav/main.blade.php b/site/resources/views/partials/nav/main.blade.php new file mode 100644 index 0000000..ba8bea7 --- /dev/null +++ b/site/resources/views/partials/nav/main.blade.php @@ -0,0 +1,34 @@ + \ No newline at end of file diff --git a/site/resources/views/partials/preloader.blade.php b/site/resources/views/partials/preloader.blade.php new file mode 100644 index 0000000..54319b8 --- /dev/null +++ b/site/resources/views/partials/preloader.blade.php @@ -0,0 +1,12 @@ +
+
+
+
+ Podcast Art Generator Logo + +
+
+
+
\ No newline at end of file diff --git a/site/resources/views/welcome.blade.php b/site/resources/views/welcome.blade.php index 0c81b6b..be2c8bc 100644 --- a/site/resources/views/welcome.blade.php +++ b/site/resources/views/welcome.blade.php @@ -6,135 +6,14 @@ {{ config('app.name') }} - + {{-- Fonts --}} - - + {{-- Styles --}} + @vite(['resources/scss/app.scss']) - -
- @if (Route::has('login')) -
- @auth - Dashboard - @else - Log in - - @if (Route::has('register')) - Register - @endif - @endauth -
- @endif - -
-
- - - -
- - - -
- - -
- Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}) -
-
-
-
+ +

Hello Scss

diff --git a/site/routes/web.php b/site/routes/web.php index 67fd3d6..5cb40b5 100644 --- a/site/routes/web.php +++ b/site/routes/web.php @@ -1,6 +1,7 @@ =3.0.0 <4.0.0", chokidar@^3.5.3: version "3.5.3" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== @@ -305,6 +314,11 @@ chokidar@^3.5.3: optionalDependencies: fsevents "~2.3.2" +classlist-polyfill@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/classlist-polyfill/-/classlist-polyfill-1.2.0.tgz#935bc2dfd9458a876b279617514638bcaa964a2e" + integrity sha512-GzIjNdcEtH4ieA2S8NmrSxv7DfEV5fmixQeyTmqmRmRJPGpRBaSnA2a0VrCjyT8iW8JjEdMbKzDotAJf+ajgaQ== + combined-stream@^1.0.8: version "1.0.8" resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" @@ -332,6 +346,11 @@ delayed-stream@~1.0.0: resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== +desandro-matches-selector@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/desandro-matches-selector/-/desandro-matches-selector-2.0.2.tgz#717beed4dc13e7d8f3762f707a6d58a6774218e1" + integrity sha512-+1q0nXhdzg1IpIJdMKalUwvvskeKnYyEe3shPRwedNcWtnhEKT3ZxvFjzywHDeGcKViIxTCAoOYQWP1qD7VNyg== + didyoumean@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" @@ -380,6 +399,11 @@ escalade@^3.1.1: resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== +ev-emitter@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ev-emitter/-/ev-emitter-1.1.1.tgz#8f18b0ce5c76a5d18017f71c0a795c65b9138f2a" + integrity sha512-ipiDYhdQSCZ4hSbX4rMW+XzNKMD1prg/sTvoVmSLkuQ1MVlwjJQQA+sW8tMYR3BLUr9KjodFV4pvzunvRhd33Q== + fast-glob@^3.2.12: version "3.2.12" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" @@ -405,6 +429,13 @@ fill-range@^7.0.1: dependencies: to-regex-range "^5.0.1" +fizzy-ui-utils@^2.0.0, fizzy-ui-utils@^2.0.4: + version "2.0.7" + resolved "https://registry.yarnpkg.com/fizzy-ui-utils/-/fizzy-ui-utils-2.0.7.tgz#7df45dcc4eb374a08b65d39bb9a4beedf7330505" + integrity sha512-CZXDVXQ1If3/r8s0T+v+qVeMshhfcuq0rqIFgJnrtd+Bu8GmDmqMjntjUePypVtjHXKJ6V4sw9zeyox34n9aCg== + dependencies: + desandro-matches-selector "^2.0.0" + follow-redirects@^1.15.0: version "1.15.2" resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" @@ -439,6 +470,11 @@ function-bind@^1.1.1: resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== +get-size@^2.0.0, get-size@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/get-size/-/get-size-2.0.3.tgz#54a1d0256b20ea7ac646516756202769941ad2ef" + integrity sha512-lXNzT/h/dTjTxRbm9BXb+SGxxzkm97h/PCIKtlN/CBCxxmkkIVV21udumMS93MuVTDX583gqc94v3RjuHmI+2Q== + glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" @@ -472,6 +508,11 @@ has@^1.0.3: dependencies: function-bind "^1.1.1" +immutable@^4.0.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.0.tgz#eb1738f14ffb39fd068b1dbe1296117484dd34be" + integrity sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg== + inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" @@ -516,11 +557,44 @@ is-number@^7.0.0: resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== +isotope-layout@^3.0.6: + version "3.0.6" + resolved "https://registry.yarnpkg.com/isotope-layout/-/isotope-layout-3.0.6.tgz#d5636ec74d68e7e88fa5166fe6396858db00f432" + integrity sha512-z2ZKablhocXhoNyWwzJPFd7u7FWbYbVJA51Nvsqsod8jH2ExGc1SwDsSWKE54e3PhXzqf2yZPhFSq/c2MR1arw== + dependencies: + desandro-matches-selector "^2.0.0" + fizzy-ui-utils "^2.0.4" + get-size "^2.0.0" + masonry-layout "^4.1.0" + outlayer "^2.1.0" + jiti@^1.18.2: version "1.18.2" resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.18.2.tgz#80c3ef3d486ebf2450d9335122b32d121f2a83cd" integrity sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg== +jquery-nice-select@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/jquery-nice-select/-/jquery-nice-select-1.1.0.tgz#9cd590fead56afe6bccd41294293fba356189c7d" + integrity sha512-4H+MMamBCyoXVC58aBgotnFpvZUSz6m78F3W/+df8iNSpK+rb8Q3nGL/1rxuU3XXUS4ThiQLZMIYiGupaa+u7w== + dependencies: + jquery "^2.2.3" + +jquery@^2.2.3: + version "2.2.4" + resolved "https://registry.yarnpkg.com/jquery/-/jquery-2.2.4.tgz#2c89d6889b5eac522a7eea32c14521559c6cbf02" + integrity sha512-lBHj60ezci2u1v2FqnZIraShGgEXq35qCzMv4lITyHGppTnA13rwR0MgwyNJh9TnDs3aXUvd1xjAotfraMHX/Q== + +jquery@^3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.7.0.tgz#fe2c01a05da500709006d8790fe21c8a39d75612" + integrity sha512-umpJ0/k8X0MvD1ds0P9SfowREz2LenHsQaxSohMZ5OMNEU2r0tf8pdeEFTHMFxWVxKNyU9rTtK3CWzUCTKJUeQ== + +js.cookie@^0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/js.cookie/-/js.cookie-0.0.4.tgz#c581270d0403b1c5125f91d5a48295e290e2869a" + integrity sha512-JvMf313wUqGW72zt5SoIo+Af0ZV4UwE8fl7j39nGwTCFQ4ZeAunvlD40/bCPGE1C3Yyl6y0E/M0sbM65ekx1Mw== + laravel-vite-plugin@^0.7.5: version "0.7.8" resolved "https://registry.yarnpkg.com/laravel-vite-plugin/-/laravel-vite-plugin-0.7.8.tgz#0fd0c577389ed5f4c5bb61cfbd9da5d18c9b58dc" @@ -539,6 +613,24 @@ lines-and-columns@^1.1.6: resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== + +lodash.throttle@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" + integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ== + +masonry-layout@^4.1.0: + version "4.2.2" + resolved "https://registry.yarnpkg.com/masonry-layout/-/masonry-layout-4.2.2.tgz#d57b44af13e601bfcdc423f1dd8348b5524de348" + integrity sha512-iGtAlrpHNyxaR19CvKC3npnEcAwszXoyJiI8ARV2ePi7fmYhIud25MHK8Zx4P0LCC4d3TNO9+rFa1KoK1OEOaA== + dependencies: + get-size "^2.0.2" + outlayer "^2.1.0" + merge2@^1.3.0: version "1.4.1" resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" @@ -622,6 +714,15 @@ once@^1.3.0: dependencies: wrappy "1" +outlayer@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/outlayer/-/outlayer-2.1.1.tgz#29863b6de10ea5dadfffcadfa0d728907387e9a2" + integrity sha512-+GplXsCQ3VrbGujAeHEzP9SXsBmJxzn/YdDSQZL0xqBmAWBmortu2Y9Gwdp9J0bgDQ8/YNIPMoBM13nTwZfAhw== + dependencies: + ev-emitter "^1.0.0" + fizzy-ui-utils "^2.0.0" + get-size "^2.0.2" + path-is-absolute@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" @@ -757,7 +858,21 @@ run-parallel@^1.1.9: dependencies: queue-microtask "^1.2.2" -source-map-js@^1.0.2: +sass@^1.63.6: + version "1.63.6" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.63.6.tgz#481610e612902e0c31c46b46cf2dad66943283ea" + integrity sha512-MJuxGMHzaOW7ipp+1KdELtqKbfAWbH7OLIdoSMnVe3EXPMTmxTmlaZDCTsgIpPCs3w99lLo9/zDKkOrJuT5byw== + dependencies: + chokidar ">=3.0.0 <4.0.0" + immutable "^4.0.0" + source-map-js ">=0.6.2 <2.0.0" + +slick-carousel@^1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/slick-carousel/-/slick-carousel-1.8.1.tgz#a4bfb29014887bb66ce528b90bd0cda262cc8f8d" + integrity sha512-XB9Ftrf2EEKfzoQXt3Nitrt/IPbT+f1fgqBdoxO3W/+JYvtEOW6EgxnWfr9GH6nmULv7Y2tPmEX3koxThVmebA== + +"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== @@ -867,6 +982,16 @@ vite@^4.0.0: optionalDependencies: fsevents "~2.3.2" +waypoints@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/waypoints/-/waypoints-4.0.1.tgz#09979a0573810b29627cba4366a284a062ec69c8" + integrity sha512-PbydbsTvCFYoE1DaRAKBM4xPQi+7ULcULZ7vK79NLM55da5g46oyY62Xv9X5Z9F7O/qXmcS/XJ7Ae2pYij4bpw== + +wolfy87-eventemitter@4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/wolfy87-eventemitter/-/wolfy87-eventemitter-4.2.0.tgz#b83eaac1f5ca37983b8823ead4f9dec915244766" + integrity sha512-TfVSBt6ZQ1bwPNvkKkEbCdcDDwUMeo2whqIp0aKNCvJSOXqSNKLVGjrHZm3+k9CjzF+a1FcoDqLO/MnN3Uj0rw== + wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" diff --git a/static/apple-touch-icon-114x114.png b/static/apple-touch-icon-114x114.png deleted file mode 100644 index bb59f19..0000000 Binary files a/static/apple-touch-icon-114x114.png and /dev/null differ diff --git a/static/apple-touch-icon-120x120.png b/static/apple-touch-icon-120x120.png deleted file mode 100644 index 85108b2..0000000 Binary files a/static/apple-touch-icon-120x120.png and /dev/null differ diff --git a/static/apple-touch-icon-144x144.png b/static/apple-touch-icon-144x144.png deleted file mode 100644 index b77e681..0000000 Binary files a/static/apple-touch-icon-144x144.png and /dev/null differ diff --git a/static/apple-touch-icon-152x152.png b/static/apple-touch-icon-152x152.png deleted file mode 100644 index ccc93a8..0000000 Binary files a/static/apple-touch-icon-152x152.png and /dev/null differ diff --git a/static/apple-touch-icon-57x57.png b/static/apple-touch-icon-57x57.png deleted file mode 100644 index b3a2054..0000000 Binary files a/static/apple-touch-icon-57x57.png and /dev/null differ diff --git a/static/apple-touch-icon-60x60.png b/static/apple-touch-icon-60x60.png deleted file mode 100644 index 61b5d39..0000000 Binary files a/static/apple-touch-icon-60x60.png and /dev/null differ diff --git a/static/apple-touch-icon-72x72.png b/static/apple-touch-icon-72x72.png deleted file mode 100644 index fc9db38..0000000 Binary files a/static/apple-touch-icon-72x72.png and /dev/null differ diff --git a/static/apple-touch-icon-76x76.png b/static/apple-touch-icon-76x76.png deleted file mode 100644 index 2eb95c3..0000000 Binary files a/static/apple-touch-icon-76x76.png and /dev/null differ diff --git a/static/favicon-128.png b/static/favicon-128.png deleted file mode 100644 index d7f07ce..0000000 Binary files a/static/favicon-128.png and /dev/null differ diff --git a/static/favicon-16x16.png b/static/favicon-16x16.png deleted file mode 100644 index 9b6ab42..0000000 Binary files a/static/favicon-16x16.png and /dev/null differ diff --git a/static/favicon-196x196.png b/static/favicon-196x196.png deleted file mode 100644 index 3cb9611..0000000 Binary files a/static/favicon-196x196.png and /dev/null differ diff --git a/static/favicon-32x32.png b/static/favicon-32x32.png deleted file mode 100644 index f750b69..0000000 Binary files a/static/favicon-32x32.png and /dev/null differ diff --git a/static/favicon-96x96.png b/static/favicon-96x96.png deleted file mode 100644 index 0e5b806..0000000 Binary files a/static/favicon-96x96.png and /dev/null differ diff --git a/static/mstile-144x144.png b/static/mstile-144x144.png deleted file mode 100644 index b77e681..0000000 Binary files a/static/mstile-144x144.png and /dev/null differ diff --git a/static/mstile-150x150.png b/static/mstile-150x150.png deleted file mode 100644 index c4fe97d..0000000 Binary files a/static/mstile-150x150.png and /dev/null differ diff --git a/static/mstile-70x70.png b/static/mstile-70x70.png deleted file mode 100644 index d7f07ce..0000000 Binary files a/static/mstile-70x70.png and /dev/null differ