From 48b90ed22e6604ca869de054b499ac1bd4a4d6a2 Mon Sep 17 00:00:00 2001 From: horus Date: Thu, 7 Jan 2021 03:23:42 +0100 Subject: Upgrade Laravel from 5.6 to 8. Switch to subdomain instead of subfolder. --- app/Exceptions/Handler.php | 6 +- app/Http/Controllers/ListOfferController.php | 13 +- app/Http/Controllers/LookupController.php | 4 +- app/Http/Controllers/RSSController.php | 33 +- app/Http/Controllers/SearchController.php | 22 +- composer.json | 14 +- composer.lock | 5220 ++++++--- composer.lock.old | 5961 ++++++++++ config/app.php | 1 - public/css/MaterialIcons-Regular.eot | Bin 0 -> 143258 bytes public/css/MaterialIcons-Regular.ijmap | 1 + public/css/MaterialIcons-Regular.svg | 2373 ++++ public/css/MaterialIcons-Regular.ttf | Bin 0 -> 128180 bytes public/css/MaterialIcons-Regular.woff | Bin 0 -> 57620 bytes public/css/MaterialIcons-Regular.woff2 | Bin 0 -> 44300 bytes public/css/fonts/charter_bold-webfont.eot | Bin 0 -> 52528 bytes public/css/fonts/charter_bold-webfont.woff | Bin 0 -> 28428 bytes public/css/fonts/charter_regular-webfont.eot | Bin 0 -> 51896 bytes public/css/fonts/charter_regular-webfont.woff | Bin 0 -> 27904 bytes public/css/fonts/fontawesome-webfont.eot | Bin 0 -> 165742 bytes public/css/fonts/fontawesome-webfont.svg | 2671 +++++ public/css/fonts/fontawesome-webfont.ttf | Bin 0 -> 165548 bytes public/css/fonts/fontawesome-webfont.woff | Bin 0 -> 98024 bytes public/css/fonts/fontawesome-webfont.woff2 | Bin 0 -> 77160 bytes public/css/fonts/open-iconic.eot | Bin 0 -> 28196 bytes public/css/fonts/open-iconic.otf | Bin 0 -> 20996 bytes public/css/fonts/open-iconic.svg | 543 + public/css/fonts/open-iconic.ttf | Bin 0 -> 28028 bytes public/css/fonts/open-iconic.woff | Bin 0 -> 14984 bytes public/css/open-iconic-bootstrap.css | 1 + public/css/theme.min.css | 5 + public/fonts | 1 + public/js/jquery.js | 10873 +++++++++++++++++++ public/js/theme.min.js | 1 + public/js/underscore.min.js | 1 + resources/views/index.blade.php | 6 +- resources/views/layouts/base.blade.php | 26 +- resources/views/listoffer.blade.php | 8 +- resources/views/offers.blade.php | 2 +- resources/views/search.blade.php | 6 +- resources/views/snippets/breadcrumbs.blade.php | 8 +- resources/views/snippets/footer.blade.php | 16 +- resources/views/snippets/navbar.blade.php | 4 +- .../views/snippets/spirittypesbuttons.blade.php | 2 +- routes/web.php | 32 +- 45 files changed, 26315 insertions(+), 1539 deletions(-) create mode 100644 composer.lock.old create mode 100644 public/css/MaterialIcons-Regular.eot create mode 100644 public/css/MaterialIcons-Regular.ijmap create mode 100644 public/css/MaterialIcons-Regular.svg create mode 100644 public/css/MaterialIcons-Regular.ttf create mode 100644 public/css/MaterialIcons-Regular.woff create mode 100644 public/css/MaterialIcons-Regular.woff2 create mode 100644 public/css/fonts/charter_bold-webfont.eot create mode 100644 public/css/fonts/charter_bold-webfont.woff create mode 100644 public/css/fonts/charter_regular-webfont.eot create mode 100644 public/css/fonts/charter_regular-webfont.woff create mode 100644 public/css/fonts/fontawesome-webfont.eot create mode 100644 public/css/fonts/fontawesome-webfont.svg create mode 100644 public/css/fonts/fontawesome-webfont.ttf create mode 100644 public/css/fonts/fontawesome-webfont.woff create mode 100644 public/css/fonts/fontawesome-webfont.woff2 create mode 100644 public/css/fonts/open-iconic.eot create mode 100644 public/css/fonts/open-iconic.otf create mode 100644 public/css/fonts/open-iconic.svg create mode 100644 public/css/fonts/open-iconic.ttf create mode 100644 public/css/fonts/open-iconic.woff create mode 100644 public/css/open-iconic-bootstrap.css create mode 100644 public/css/theme.min.css create mode 120000 public/fonts create mode 100644 public/js/jquery.js create mode 100644 public/js/theme.min.js create mode 100644 public/js/underscore.min.js diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 7e2563a..1d20b77 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -2,7 +2,7 @@ namespace App\Exceptions; -use Exception; +use Throwable; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; class Handler extends ExceptionHandler @@ -34,7 +34,7 @@ class Handler extends ExceptionHandler * @param \Exception $exception * @return void */ - public function report(Exception $exception) + public function report(Throwable $exception) { parent::report($exception); } @@ -46,7 +46,7 @@ class Handler extends ExceptionHandler * @param \Exception $exception * @return \Illuminate\Http\Response */ - public function render($request, Exception $exception) + public function render($request, Throwable $exception) { return parent::render($request, $exception); } diff --git a/app/Http/Controllers/ListOfferController.php b/app/Http/Controllers/ListOfferController.php index 23cac17..904ee20 100644 --- a/app/Http/Controllers/ListOfferController.php +++ b/app/Http/Controllers/ListOfferController.php @@ -7,7 +7,6 @@ use Illuminate\Support\Facades\DB; use App\Http\Controllers\Controller; use Carbon; -use Illuminate\Support\Facades\Input; class ListOfferController extends Controller { /** @@ -20,7 +19,7 @@ class ListOfferController extends Controller { /* * Sorting */ - $sort_by = Input::get("filter"); + $sort_by = $request->get("filter"); switch ($sort_by) { case("price"): $sort_by = "discounted_price"; @@ -58,9 +57,9 @@ class ListOfferController extends Controller { */ $view_name = \Request::route()->getName(); - if ( "" != Input::get('type') ) { - $data = DB::table($view_name . '_view')->where('spirit_type', '=', Input::get('type'))->whereNotNull('url')->orderBy($sort_by, $order_by)->paginate(10); - $count = DB::table($view_name . '_view')->where('spirit_type', '=', Input::get('type'))->whereNotNull('url')->count(); + if ( "" != $request->get('type') ) { + $data = DB::table($view_name . '_view')->where('spirit_type', '=', $request->get('type'))->whereNotNull('url')->orderBy($sort_by, $order_by)->paginate(10); + $count = DB::table($view_name . '_view')->where('spirit_type', '=', $request->get('type'))->whereNotNull('url')->count(); } else { $data = DB::table($view_name . '_view')->where('procent', '>=', '5')->whereNotNull('url')->orderBy($sort_by, $order_by)->paginate(10); @@ -70,9 +69,9 @@ class ListOfferController extends Controller { # Only used on misc_view, all_view and search. $spirit_types = DB::select('SELECT DISTINCT spirit_type FROM ' . $view_name . '_view ' . ' ORDER BY spirit_type' ); - $rss_feed = "/angebote/" . $view_name . "/feed/"; + $rss_feed = $view_name . "/feed/"; $query_string = ""; - $query_params = Input::except('page'); + $query_params = $request->except('page'); foreach( $query_params as $key => $value) { $query_string .= "&" . $key . "=" . $value; } diff --git a/app/Http/Controllers/LookupController.php b/app/Http/Controllers/LookupController.php index 3a876a9..45543e6 100644 --- a/app/Http/Controllers/LookupController.php +++ b/app/Http/Controllers/LookupController.php @@ -6,8 +6,6 @@ use App\Helpers\CryptoHelper; use Illuminate\Support\Facades\DB; use App\Http\Controllers\Controller; -use Illuminate\Support\Facades\Input; - class LookupController extends Controller { /** * Shows the index page. @@ -19,7 +17,7 @@ class LookupController extends Controller { // Used by external linkshorter for better reporting in web analytics. $query = "SELECT name, shop, spirit_type FROM all_view WHERE short_url = ? LIMIT 1)"; - $data = DB::table('all_view')->select('name', 'shop', 'spirit_type')->where('url', "https://l.fuselkoenig.de/" . Input::get('short_url'))->limit(1)->get(); + $data = DB::table('all_view')->select('name', 'shop', 'spirit_type')->where('url', "https://l.fuselkoenig.de/" . $request->get('short_url'))->limit(1)->get(); return response()->json($data); } diff --git a/app/Http/Controllers/RSSController.php b/app/Http/Controllers/RSSController.php index 11e5a54..7853b32 100644 --- a/app/Http/Controllers/RSSController.php +++ b/app/Http/Controllers/RSSController.php @@ -7,7 +7,6 @@ use Illuminate\Support\Facades\DB; use App\Http\Controllers\Controller; use Carbon; -use Illuminate\Support\Facades\Input; use App\Libraries\Utility; class RSSController extends Controller { @@ -21,7 +20,7 @@ class RSSController extends Controller { /* * Sorting */ - $sort_by = Input::get("filter"); + $sort_by = $request->get("filter"); switch ($sort_by) { case("price"): $sort_by = "discounted_price"; @@ -61,12 +60,12 @@ class RSSController extends Controller { $view_name = str_replace("/angebote/", "", $view_name); if ( "search" == $view_name ) { - if ( "" != Input::get("q") ) { - $query = Input::get("q"); + if ( "" != $request->get("q") ) { + $query = $request->get("q"); $q = "%" . Utility::escapeLike($query) . "%"; $data = DB::table('all_view')->whereNotNull('url')->where('name', 'like', $q)->orWhere('spirit_type', 'like', $q)->orderBy($sort_by, $order_by)->limit(20)->get(); } else { - $data = DB::table('all_view')->where('spirit_type', '=', Input::get('type'))->whereNotNull('url')->orderBy($sort_by, $order_by)->limit(20)->get(); + $data = DB::table('all_view')->where('spirit_type', '=', $request->get('type'))->whereNotNull('url')->orderBy($sort_by, $order_by)->limit(20)->get(); } } else { $data = DB::table($view_name . '_view')->orderBy($sort_by, $order_by)->limit(20)->get(); @@ -91,14 +90,14 @@ class RSSController extends Controller { $piwik->doTrackPageView( ucfirst($view_name) . "-Feed" ); - if ( "" != Input::get('filter') ) { - $piwik->doTrackEvent("sort", Input::get('sort') ); + if ( "" != $request->get('filter') ) { + $piwik->doTrackEvent("sort", $request->get('sort') ); } - if ( "" != Input::get('order') ) { - $piwik->doTrackEvent("order", Input::get('order') ); + if ( "" != $request->get('order') ) { + $piwik->doTrackEvent("order", $request->get('order') ); } - if ( "" != Input::get('q') ) { - $piwik->doTrackEvent("search_phrase", Input::get('q') ); + if ( "" != $request->get('q') ) { + $piwik->doTrackEvent("search_phrase", $request->get('q') ); } } */ @@ -123,11 +122,19 @@ class RSSController extends Controller { $offer->url = $offer->url . "?pk_campaign=feed&pk_kwd=" . urlencode($offer->name) . "&pk_source=" . $view_name . "_feed"; if ( "" != env('PIWIK_RSS_ID') ) { - // $piwik->doTrackContentImpression($offer->spirit_type, $offer->name, $offer->long_url); + //$piwik->doTrackContentImpression($offer->spirit_type, $offer->name, $offer->long_url); } $desc = '
'.$offer->spirit_type.'
'. $offer->name . ' gesenkt auf ' . \TF::fF($offer->discounted_price) . '€ statt ' . \TF::fF($offer->original_price) . '€ ('.$offer->procent.'% Rabatt auf '. $offer->shop .').';
- $feed->add($offer->name, $offer->shop, $offer->url, $offer->created_at, $desc, $desc);
+
+ $feed->addItem( [
+ 'title' => $offer->name,
+ 'author' => $offer->shop,
+ 'url' => $offer->url,
+ 'link' => $offer->url,
+ 'pubdate' => $offer->created_at,
+ 'description' => $desc,
+ 'content' => $desc ] );
}
return $feed->render('atom');
diff --git a/app/Http/Controllers/SearchController.php b/app/Http/Controllers/SearchController.php
index c63a0f5..48a5c2f 100644
--- a/app/Http/Controllers/SearchController.php
+++ b/app/Http/Controllers/SearchController.php
@@ -6,8 +6,6 @@ use App\Helpers\CryptoHelper;
use Illuminate\Support\Facades\DB;
use App\Http\Controllers\Controller;
-use Illuminate\Support\Facades\Input;
-
use App\Libraries\Utility;
class SearchController extends Controller {
@@ -21,7 +19,7 @@ class SearchController extends Controller {
/*
* Sorting
*/
- $sort_by = Input::get("filter");
+ $sort_by = $request->get("filter");
switch ($sort_by) {
case("price"):
$sort_by = "discounted_price";
@@ -62,16 +60,16 @@ class SearchController extends Controller {
$query = "nichts";
$data = DB::table('all_view');
- if ( "" != Input::get('type') ) {
- $query = Input::get('type');
- $data = $data->where('spirit_type', '=', Input::get('type'));
- $title = "Suche nach " . ucwords(Input::get('type'));
+ if ( "" != $request->get('type') ) {
+ $query = $request->get('type');
+ $data = $data->where('spirit_type', '=', $request->get('type'));
+ $title = "Suche nach " . ucwords($request->get('type'));
}
- if ( "" != Input::get('q') ) {
- $query = Input::get("q");
+ if ( "" != $request->get('q') ) {
+ $query = $request->get("q");
$q = "%" . Utility::escapeLike($query) . "%";
$data = $data->where('name', 'like', $q)->orWhere('spirit_type', 'like', $q)->orWhere('shop', 'like', $q);
- $title = "Suche nach " . ucwords(Input::get('q'));
+ $title = "Suche nach " . ucwords($request->get('q'));
}
$data = $data->whereNotNull('url');
@@ -83,7 +81,7 @@ class SearchController extends Controller {
$spirit_types = DB::select('SELECT DISTINCT spirit_type FROM all_view ORDER BY spirit_type' );
$query_string = "";
- $query_params = Input::except('page');
+ $query_params = $request->except('page');
foreach( $query_params as $key => $value) {
$query_string .= "&" . $key . "=" . $value;
}
@@ -95,6 +93,6 @@ class SearchController extends Controller {
*/
#setlocale(LC_TIME, 'de_DE.utf8');
- return view('search', ['data' => $data, 'count' => $count, 'search_phrase' => $query, 'spirit_types' => $spirit_types, 'title' => $title, 'rss_feed' => '/angebote/search/feed/?' . $query_string ]);
+ return view('search', ['data' => $data, 'count' => $count, 'search_phrase' => $query, 'spirit_types' => $spirit_types, 'title' => $title, 'rss_feed' => '/search/feed/?' . $query_string ]);
}
}
diff --git a/composer.json b/composer.json
index 4163507..0800956 100644
--- a/composer.json
+++ b/composer.json
@@ -7,19 +7,19 @@
"require": {
"php": ">=7.1.3",
"fideloper/proxy": "~4.0",
- "laravel/framework": "5.6.*",
- "laravel/tinker": "~1.0",
- "piwik/piwik-php-tracker": "^1.4",
- "roumen/feed": "^2.12",
+ "laravel/framework": "^8.0",
+ "laravel/helpers": "^1.4",
+ "laravel/tinker": "*",
+ "laravelium/feed": "^8.0",
+ "matomo/matomo-php-tracker": "^3.0",
"willwashburn/phpamo": "^1.0"
},
"require-dev": {
"filp/whoops": "~2.0",
- "nunomaduro/collision": "~1.1",
+ "nunomaduro/collision": "*",
"fzaninotto/faker": "~1.4",
"mockery/mockery": "~1.0",
- "phpunit/phpunit": "~7.0",
- "symfony/thanks": "^1.0"
+ "phpunit/phpunit": "~7.0"
},
"autoload": {
"classmap": [
diff --git a/composer.lock b/composer.lock
index 8fd302e..bdf073c 100644
--- a/composer.lock
+++ b/composer.lock
@@ -1,32 +1,88 @@
{
"_readme": [
"This file locks the dependencies of your project to a known state",
- "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
+ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "067d134054f1e68f6e91eb5ae953a7d6",
+ "content-hash": "545d065b1c13ab2da9fd973f5ba4b516",
"packages": [
+ {
+ "name": "brick/math",
+ "version": "0.9.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/brick/math.git",
+ "reference": "283a40c901101e66de7061bd359252c013dcc43c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/brick/math/zipball/283a40c901101e66de7061bd359252c013dcc43c",
+ "reference": "283a40c901101e66de7061bd359252c013dcc43c",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "php": "^7.1|^8.0"
+ },
+ "require-dev": {
+ "php-coveralls/php-coveralls": "^2.2",
+ "phpunit/phpunit": "^7.5.15|^8.5",
+ "vimeo/psalm": "^3.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Brick\\Math\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "Arbitrary-precision arithmetic library",
+ "keywords": [
+ "Arbitrary-precision",
+ "BigInteger",
+ "BigRational",
+ "arithmetic",
+ "bigdecimal",
+ "bignum",
+ "brick",
+ "math"
+ ],
+ "support": {
+ "issues": "https://github.com/brick/math/issues",
+ "source": "https://github.com/brick/math/tree/master"
+ },
+ "funding": [
+ {
+ "url": "https://tidelift.com/funding/github/packagist/brick/math",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-08-18T23:57:15+00:00"
+ },
{
"name": "dnoegel/php-xdg-base-dir",
- "version": "0.1",
+ "version": "v0.1.1",
"source": {
"type": "git",
"url": "https://github.com/dnoegel/php-xdg-base-dir.git",
- "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
+ "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
- "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
+ "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
+ "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
"shasum": ""
},
"require": {
"php": ">=5.3.2"
},
"require-dev": {
- "phpunit/phpunit": "@stable"
+ "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
},
- "type": "project",
+ "type": "library",
"autoload": {
"psr-4": {
"XdgBaseDir\\": "src/"
@@ -37,37 +93,45 @@
"MIT"
],
"description": "implementation of xdg base directory specification for php",
- "time": "2014-10-24T07:27:01+00:00"
+ "support": {
+ "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
+ "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
+ },
+ "time": "2019-12-04T15:06:13+00:00"
},
{
"name": "doctrine/inflector",
- "version": "v1.3.0",
+ "version": "2.0.3",
"source": {
"type": "git",
"url": "https://github.com/doctrine/inflector.git",
- "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
+ "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
- "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
+ "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
+ "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
"shasum": ""
},
"require": {
- "php": "^7.1"
+ "php": "^7.2 || ^8.0"
},
"require-dev": {
- "phpunit/phpunit": "^6.2"
+ "doctrine/coding-standard": "^7.0",
+ "phpstan/phpstan": "^0.11",
+ "phpstan/phpstan-phpunit": "^0.11",
+ "phpstan/phpstan-strict-rules": "^0.11",
+ "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.3.x-dev"
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
- "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
+ "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -75,6 +139,10 @@
"MIT"
],
"authors": [
+ {
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
{
"name": "Roman Borschel",
"email": "roman@code-factory.org"
@@ -83,10 +151,6 @@
"name": "Benjamin Eberlei",
"email": "kontakt@beberlei.de"
},
- {
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
{
"name": "Jonathan Wage",
"email": "jonwage@gmail.com"
@@ -96,42 +160,71 @@
"email": "schmittjoh@gmail.com"
}
],
- "description": "Common String Manipulations with regard to casing and singular/plural rules.",
- "homepage": "http://www.doctrine-project.org",
+ "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
+ "homepage": "https://www.doctrine-project.org/projects/inflector.html",
"keywords": [
"inflection",
- "pluralize",
- "singularize",
- "string"
+ "inflector",
+ "lowercase",
+ "manipulation",
+ "php",
+ "plural",
+ "singular",
+ "strings",
+ "uppercase",
+ "words"
+ ],
+ "support": {
+ "issues": "https://github.com/doctrine/inflector/issues",
+ "source": "https://github.com/doctrine/inflector/tree/2.0.x"
+ },
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
+ "type": "tidelift"
+ }
],
- "time": "2018-01-09T20:05:19+00:00"
+ "time": "2020-05-29T15:13:26+00:00"
},
{
"name": "doctrine/lexer",
- "version": "v1.0.1",
+ "version": "1.2.1",
"source": {
"type": "git",
"url": "https://github.com/doctrine/lexer.git",
- "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
+ "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
- "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
+ "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
+ "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
"shasum": ""
},
"require": {
- "php": ">=5.3.2"
+ "php": "^7.2 || ^8.0"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^6.0",
+ "phpstan/phpstan": "^0.11.8",
+ "phpunit/phpunit": "^8.2"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-master": "1.2.x-dev"
}
},
"autoload": {
- "psr-0": {
- "Doctrine\\Common\\Lexer\\": "lib/"
+ "psr-4": {
+ "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -139,46 +232,74 @@
"MIT"
],
"authors": [
- {
- "name": "Roman Borschel",
- "email": "roman@code-factory.org"
- },
{
"name": "Guilherme Blanco",
"email": "guilhermeblanco@gmail.com"
},
+ {
+ "name": "Roman Borschel",
+ "email": "roman@code-factory.org"
+ },
{
"name": "Johannes Schmitt",
"email": "schmittjoh@gmail.com"
}
],
- "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
- "homepage": "http://www.doctrine-project.org",
+ "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
+ "homepage": "https://www.doctrine-project.org/projects/lexer.html",
"keywords": [
+ "annotations",
+ "docblock",
"lexer",
- "parser"
+ "parser",
+ "php"
+ ],
+ "support": {
+ "issues": "https://github.com/doctrine/lexer/issues",
+ "source": "https://github.com/doctrine/lexer/tree/1.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
+ "type": "tidelift"
+ }
],
- "time": "2014-09-09T13:34:57+00:00"
+ "time": "2020-05-25T17:44:05+00:00"
},
{
"name": "dragonmantank/cron-expression",
- "version": "v2.0.0",
+ "version": "v3.1.0",
"source": {
"type": "git",
"url": "https://github.com/dragonmantank/cron-expression.git",
- "reference": "8a84aee649c3a3ba03a721c1fb080e08dfbcd68b"
+ "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8a84aee649c3a3ba03a721c1fb080e08dfbcd68b",
- "reference": "8a84aee649c3a3ba03a721c1fb080e08dfbcd68b",
+ "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
+ "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
"shasum": ""
},
"require": {
- "php": ">=7.0.0"
+ "php": "^7.2|^8.0",
+ "webmozart/assert": "^1.7.0"
+ },
+ "replace": {
+ "mtdowling/cron-expression": "^1.0"
},
"require-dev": {
- "phpunit/phpunit": "~5.7"
+ "phpstan/extension-installer": "^1.0",
+ "phpstan/phpstan": "^0.12",
+ "phpstan/phpstan-webmozart-assert": "^0.12.7",
+ "phpunit/phpunit": "^7.0|^8.0|^9.0"
},
"type": "library",
"autoload": {
@@ -191,11 +312,6 @@
"MIT"
],
"authors": [
- {
- "name": "Michael Dowling",
- "email": "mtdowling@gmail.com",
- "homepage": "https://github.com/mtdowling"
- },
{
"name": "Chris Tankersley",
"email": "chris@ctankersley.com",
@@ -207,29 +323,40 @@
"cron",
"schedule"
],
- "time": "2017-10-12T15:59:13+00:00"
+ "support": {
+ "issues": "https://github.com/dragonmantank/cron-expression/issues",
+ "source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/dragonmantank",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-24T19:55:57+00:00"
},
{
"name": "egulias/email-validator",
- "version": "2.1.3",
+ "version": "2.1.25",
"source": {
"type": "git",
"url": "https://github.com/egulias/EmailValidator.git",
- "reference": "1bec00a10039b823cc94eef4eddd47dcd3b2ca04"
+ "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/1bec00a10039b823cc94eef4eddd47dcd3b2ca04",
- "reference": "1bec00a10039b823cc94eef4eddd47dcd3b2ca04",
+ "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
+ "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
"shasum": ""
},
"require": {
"doctrine/lexer": "^1.0.1",
- "php": ">= 5.5"
+ "php": ">=5.5",
+ "symfony/polyfill-intl-idn": "^1.10"
},
"require-dev": {
- "dominicsayers/isemail": "dev-master",
- "phpunit/phpunit": "^4.8.35",
+ "dominicsayers/isemail": "^3.0.7",
+ "phpunit/phpunit": "^4.8.36|^7.5.15",
"satooshi/php-coveralls": "^1.0.1"
},
"suggest": {
@@ -238,12 +365,12 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.0.x-dev"
+ "dev-master": "2.1.x-dev"
}
},
"autoload": {
"psr-4": {
- "Egulias\\EmailValidator\\": "EmailValidator"
+ "Egulias\\EmailValidator\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -264,81 +391,43 @@
"validation",
"validator"
],
- "time": "2017-11-15T23:40:40+00:00"
- },
- {
- "name": "erusev/parsedown",
- "version": "1.6.4",
- "source": {
- "type": "git",
- "url": "https://github.com/erusev/parsedown.git",
- "reference": "fbe3fe878f4fe69048bb8a52783a09802004f548"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/erusev/parsedown/zipball/fbe3fe878f4fe69048bb8a52783a09802004f548",
- "reference": "fbe3fe878f4fe69048bb8a52783a09802004f548",
- "shasum": ""
+ "support": {
+ "issues": "https://github.com/egulias/EmailValidator/issues",
+ "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
},
- "require": {
- "php": ">=5.3.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.8.35"
- },
- "type": "library",
- "autoload": {
- "psr-0": {
- "Parsedown": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
+ "funding": [
{
- "name": "Emanuil Rusev",
- "email": "hello@erusev.com",
- "homepage": "http://erusev.com"
+ "url": "https://github.com/egulias",
+ "type": "github"
}
],
- "description": "Parser for Markdown.",
- "homepage": "http://parsedown.org",
- "keywords": [
- "markdown",
- "parser"
- ],
- "time": "2017-11-14T20:44:03+00:00"
+ "time": "2020-12-29T14:50:06+00:00"
},
{
"name": "fideloper/proxy",
- "version": "dev-develop",
+ "version": "4.4.1",
"source": {
"type": "git",
"url": "https://github.com/fideloper/TrustedProxy.git",
- "reference": "9618897f49ccf8ddfad10f6bdf610be8e0e6298b"
+ "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9618897f49ccf8ddfad10f6bdf610be8e0e6298b",
- "reference": "9618897f49ccf8ddfad10f6bdf610be8e0e6298b",
+ "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
+ "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
"shasum": ""
},
"require": {
- "illuminate/contracts": "~5.0",
+ "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
"php": ">=5.4.0"
},
"require-dev": {
- "illuminate/http": "~5.6",
- "mockery/mockery": "~1.0",
+ "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
+ "mockery/mockery": "^1.0",
"phpunit/phpunit": "^6.0"
},
"type": "library",
"extra": {
- "branch-alias": {
- "dev-develop": "4.0-dev"
- },
"laravel": {
"providers": [
"Fideloper\\Proxy\\TrustedProxyServiceProvider"
@@ -366,139 +455,134 @@
"proxy",
"trusted proxy"
],
- "time": "2018-01-18T13:27:29+00:00"
+ "support": {
+ "issues": "https://github.com/fideloper/TrustedProxy/issues",
+ "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
+ },
+ "time": "2020-10-22T13:48:01+00:00"
},
{
- "name": "jakub-onderka/php-console-color",
- "version": "0.1",
+ "name": "graham-campbell/result-type",
+ "version": "v1.0.1",
"source": {
"type": "git",
- "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
- "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1"
+ "url": "https://github.com/GrahamCampbell/Result-Type.git",
+ "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1",
- "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1",
+ "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/7e279d2cd5d7fbb156ce46daada972355cea27bb",
+ "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb",
"shasum": ""
},
"require": {
- "php": ">=5.3.2"
+ "php": "^7.0|^8.0",
+ "phpoption/phpoption": "^1.7.3"
},
"require-dev": {
- "jakub-onderka/php-code-style": "1.0",
- "jakub-onderka/php-parallel-lint": "0.*",
- "jakub-onderka/php-var-dump-check": "0.*",
- "phpunit/phpunit": "3.7.*",
- "squizlabs/php_codesniffer": "1.*"
+ "phpunit/phpunit": "^6.5|^7.5|^8.5|^9.0"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0-dev"
+ }
+ },
"autoload": {
- "psr-0": {
- "JakubOnderka\\PhpConsoleColor": "src/"
+ "psr-4": {
+ "GrahamCampbell\\ResultType\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-2-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Jakub Onderka",
- "email": "jakub.onderka@gmail.com",
- "homepage": "http://www.acci.cz"
+ "name": "Graham Campbell",
+ "email": "graham@alt-three.com"
}
],
- "time": "2014-04-08T15:00:19+00:00"
- },
- {
- "name": "jakub-onderka/php-console-highlighter",
- "version": "v0.3.2",
- "source": {
- "type": "git",
- "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
- "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5",
- "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5",
- "shasum": ""
- },
- "require": {
- "jakub-onderka/php-console-color": "~0.1",
- "php": ">=5.3.0"
- },
- "require-dev": {
- "jakub-onderka/php-code-style": "~1.0",
- "jakub-onderka/php-parallel-lint": "~0.5",
- "jakub-onderka/php-var-dump-check": "~0.1",
- "phpunit/phpunit": "~4.0",
- "squizlabs/php_codesniffer": "~1.5"
- },
- "type": "library",
- "autoload": {
- "psr-0": {
- "JakubOnderka\\PhpConsoleHighlighter": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
+ "description": "An Implementation Of The Result Type",
+ "keywords": [
+ "Graham Campbell",
+ "GrahamCampbell",
+ "Result Type",
+ "Result-Type",
+ "result"
],
- "authors": [
+ "support": {
+ "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
+ "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
{
- "name": "Jakub Onderka",
- "email": "acci@acci.cz",
- "homepage": "http://www.acci.cz/"
+ "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
+ "type": "tidelift"
}
],
- "time": "2015-04-20T18:58:01+00:00"
+ "time": "2020-04-13T13:17:36+00:00"
},
{
"name": "laravel/framework",
- "version": "v5.6.0",
+ "version": "v8.21.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
- "reference": "56a58e0fa3d845bb992d7c64ac9bb6d0c24b745a"
+ "reference": "a61cab167c35f465a923737ee6e6fb99cd5fde88"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/framework/zipball/56a58e0fa3d845bb992d7c64ac9bb6d0c24b745a",
- "reference": "56a58e0fa3d845bb992d7c64ac9bb6d0c24b745a",
+ "url": "https://api.github.com/repos/laravel/framework/zipball/a61cab167c35f465a923737ee6e6fb99cd5fde88",
+ "reference": "a61cab167c35f465a923737ee6e6fb99cd5fde88",
"shasum": ""
},
"require": {
- "doctrine/inflector": "~1.1",
- "dragonmantank/cron-expression": "~2.0",
- "erusev/parsedown": "~1.6",
+ "doctrine/inflector": "^1.4|^2.0",
+ "dragonmantank/cron-expression": "^3.0.2",
+ "egulias/email-validator": "^2.1.10",
+ "ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
- "league/flysystem": "~1.0",
- "monolog/monolog": "~1.12",
- "nesbot/carbon": "~1.20",
- "php": "^7.1.3",
- "psr/container": "~1.0",
+ "league/commonmark": "^1.3",
+ "league/flysystem": "^1.1",
+ "monolog/monolog": "^2.0",
+ "nesbot/carbon": "^2.31",
+ "opis/closure": "^3.6",
+ "php": "^7.3|^8.0",
+ "psr/container": "^1.0",
"psr/simple-cache": "^1.0",
- "ramsey/uuid": "^3.7",
- "swiftmailer/swiftmailer": "~6.0",
- "symfony/console": "~4.0",
- "symfony/debug": "~4.0",
- "symfony/finder": "~4.0",
- "symfony/http-foundation": "~4.0",
- "symfony/http-kernel": "~4.0",
- "symfony/process": "~4.0",
- "symfony/routing": "~4.0",
- "symfony/var-dumper": "~4.0",
- "tijsverkoyen/css-to-inline-styles": "^2.2.1",
- "vlucas/phpdotenv": "~2.2"
+ "ramsey/uuid": "^4.0",
+ "swiftmailer/swiftmailer": "^6.0",
+ "symfony/console": "^5.1.4",
+ "symfony/error-handler": "^5.1.4",
+ "symfony/finder": "^5.1.4",
+ "symfony/http-foundation": "^5.1.4",
+ "symfony/http-kernel": "^5.1.4",
+ "symfony/mime": "^5.1.4",
+ "symfony/process": "^5.1.4",
+ "symfony/routing": "^5.1.4",
+ "symfony/var-dumper": "^5.1.4",
+ "tijsverkoyen/css-to-inline-styles": "^2.2.2",
+ "vlucas/phpdotenv": "^5.2",
+ "voku/portable-ascii": "^1.4.8"
+ },
+ "conflict": {
+ "tightenco/collect": "<5.5.33"
+ },
+ "provide": {
+ "psr/container-implementation": "1.0"
},
"replace": {
"illuminate/auth": "self.version",
"illuminate/broadcasting": "self.version",
"illuminate/bus": "self.version",
"illuminate/cache": "self.version",
+ "illuminate/collections": "self.version",
"illuminate/config": "self.version",
"illuminate/console": "self.version",
"illuminate/container": "self.version",
@@ -511,6 +595,7 @@
"illuminate/hashing": "self.version",
"illuminate/http": "self.version",
"illuminate/log": "self.version",
+ "illuminate/macroable": "self.version",
"illuminate/mail": "self.version",
"illuminate/notifications": "self.version",
"illuminate/pagination": "self.version",
@@ -520,56 +605,71 @@
"illuminate/routing": "self.version",
"illuminate/session": "self.version",
"illuminate/support": "self.version",
+ "illuminate/testing": "self.version",
"illuminate/translation": "self.version",
"illuminate/validation": "self.version",
- "illuminate/view": "self.version",
- "tightenco/collect": "self.version"
+ "illuminate/view": "self.version"
},
"require-dev": {
- "aws/aws-sdk-php": "~3.0",
- "doctrine/dbal": "~2.6",
- "filp/whoops": "^2.1.4",
- "mockery/mockery": "~1.0",
- "moontoast/math": "^1.1",
- "orchestra/testbench-core": "3.6.*",
- "pda/pheanstalk": "~3.0",
- "phpunit/phpunit": "~7.0",
+ "aws/aws-sdk-php": "^3.155",
+ "doctrine/dbal": "^2.6|^3.0",
+ "filp/whoops": "^2.8",
+ "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
+ "league/flysystem-cached-adapter": "^1.0",
+ "mockery/mockery": "^1.4.2",
+ "orchestra/testbench-core": "^6.8",
+ "pda/pheanstalk": "^4.0",
+ "phpunit/phpunit": "^8.5.8|^9.3.3",
"predis/predis": "^1.1.1",
- "symfony/css-selector": "~4.0",
- "symfony/dom-crawler": "~4.0"
+ "symfony/cache": "^5.1.4"
},
"suggest": {
- "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
- "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.6).",
+ "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
+ "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6|^3.0).",
+ "ext-ftp": "Required to use the Flysystem FTP driver.",
+ "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
+ "ext-memcached": "Required to use the memcache cache driver.",
"ext-pcntl": "Required to use all features of the queue worker.",
"ext-posix": "Required to use all features of the queue worker.",
- "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
- "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).",
- "laravel/tinker": "Required to use the tinker console command (~1.0).",
- "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
- "league/flysystem-cached-adapter": "Required to use Flysystem caching (~1.0).",
- "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
- "nexmo/client": "Required to use the Nexmo transport (~1.0).",
- "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
- "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
- "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~3.0).",
- "symfony/css-selector": "Required to use some of the crawler integration testing tools (~4.0).",
- "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~4.0).",
- "symfony/psr-http-message-bridge": "Required to psr7 bridging features (~1.0)."
+ "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
+ "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
+ "filp/whoops": "Required for friendly error pages in development (^2.8).",
+ "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
+ "laravel/tinker": "Required to use the tinker console command (^2.0).",
+ "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
+ "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
+ "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
+ "mockery/mockery": "Required to use mocking (^1.4.2).",
+ "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
+ "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
+ "phpunit/phpunit": "Required to use assertions and run tests (^8.5.8|^9.3.3).",
+ "predis/predis": "Required to use the predis connector (^1.1.2).",
+ "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
+ "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
+ "symfony/cache": "Required to PSR-6 cache bridge (^5.1.4).",
+ "symfony/filesystem": "Required to enable support for relative symbolic links (^5.1.4).",
+ "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
+ "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "5.6-dev"
+ "dev-master": "8.x-dev"
}
},
"autoload": {
"files": [
+ "src/Illuminate/Collections/helpers.php",
+ "src/Illuminate/Events/functions.php",
"src/Illuminate/Foundation/helpers.php",
"src/Illuminate/Support/helpers.php"
],
"psr-4": {
- "Illuminate\\": "src/Illuminate/"
+ "Illuminate\\": "src/Illuminate/",
+ "Illuminate\\Support\\": [
+ "src/Illuminate/Macroable/",
+ "src/Illuminate/Collections/"
+ ]
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -588,51 +688,43 @@
"framework",
"laravel"
],
- "time": "2018-02-07T15:36:40+00:00"
+ "support": {
+ "issues": "https://github.com/laravel/framework/issues",
+ "source": "https://github.com/laravel/framework"
+ },
+ "time": "2021-01-05T15:43:10+00:00"
},
{
- "name": "laravel/tinker",
- "version": "v1.0.3",
+ "name": "laravel/helpers",
+ "version": "v1.4.0",
"source": {
"type": "git",
- "url": "https://github.com/laravel/tinker.git",
- "reference": "852c2abe0b0991555a403f1c0583e64de6acb4a6"
+ "url": "https://github.com/laravel/helpers.git",
+ "reference": "cde8ea2427db4f37d67729846b70452499210a21"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/tinker/zipball/852c2abe0b0991555a403f1c0583e64de6acb4a6",
- "reference": "852c2abe0b0991555a403f1c0583e64de6acb4a6",
+ "url": "https://api.github.com/repos/laravel/helpers/zipball/cde8ea2427db4f37d67729846b70452499210a21",
+ "reference": "cde8ea2427db4f37d67729846b70452499210a21",
"shasum": ""
},
"require": {
- "illuminate/console": "~5.1",
- "illuminate/contracts": "~5.1",
- "illuminate/support": "~5.1",
- "php": ">=5.5.9",
- "psy/psysh": "0.7.*|0.8.*",
- "symfony/var-dumper": "~3.0|~4.0"
+ "illuminate/support": "~5.8.0|^6.0|^7.0|^8.0",
+ "php": "^7.1.3|^8.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.0|~5.0"
- },
- "suggest": {
- "illuminate/database": "The Illuminate Database package (~5.1)."
+ "phpunit/phpunit": "^7.0|^8.0|^9.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0-dev"
- },
- "laravel": {
- "providers": [
- "Laravel\\Tinker\\TinkerServiceProvider"
- ]
+ "dev-master": "1.x-dev"
}
},
"autoload": {
- "psr-4": {
- "Laravel\\Tinker\\": "src/"
- }
+ "files": [
+ "src/helpers.php"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -642,67 +734,65 @@
{
"name": "Taylor Otwell",
"email": "taylor@laravel.com"
+ },
+ {
+ "name": "Dries Vints",
+ "email": "dries.vints@gmail.com"
}
],
- "description": "Powerful REPL for the Laravel framework.",
+ "description": "Provides backwards compatibility for helpers in the latest Laravel release.",
"keywords": [
- "REPL",
- "Tinker",
- "laravel",
- "psysh"
+ "helpers",
+ "laravel"
],
- "time": "2017-12-18T16:25:11+00:00"
+ "support": {
+ "source": "https://github.com/laravel/helpers/tree/v1.4.0"
+ },
+ "time": "2020-11-03T16:38:41+00:00"
},
{
- "name": "league/flysystem",
- "version": "1.0.42",
+ "name": "laravel/tinker",
+ "version": "v2.5.0",
"source": {
"type": "git",
- "url": "https://github.com/thephpleague/flysystem.git",
- "reference": "09eabc54e199950041aef258a85847676496fe8e"
+ "url": "https://github.com/laravel/tinker.git",
+ "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/09eabc54e199950041aef258a85847676496fe8e",
- "reference": "09eabc54e199950041aef258a85847676496fe8e",
+ "url": "https://api.github.com/repos/laravel/tinker/zipball/45884b526e10a88a1b179fa1a1a24d5468c668c2",
+ "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2",
"shasum": ""
},
"require": {
- "php": ">=5.5.9"
- },
- "conflict": {
- "league/flysystem-sftp": "<1.0.6"
+ "illuminate/console": "^6.0|^7.0|^8.0",
+ "illuminate/contracts": "^6.0|^7.0|^8.0",
+ "illuminate/support": "^6.0|^7.0|^8.0",
+ "php": "^7.2.5|^8.0",
+ "psy/psysh": "^0.10.4",
+ "symfony/var-dumper": "^4.3.4|^5.0"
},
"require-dev": {
- "ext-fileinfo": "*",
- "phpspec/phpspec": "^3.4",
- "phpunit/phpunit": "^5.7"
+ "mockery/mockery": "~1.3.3|^1.4.2",
+ "phpunit/phpunit": "^8.5.8|^9.3.3"
},
"suggest": {
- "ext-fileinfo": "Required for MimeType",
- "ext-ftp": "Allows you to use FTP server storage",
- "ext-openssl": "Allows you to use FTPS server storage",
- "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
- "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
- "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
- "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
- "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
- "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
- "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
- "league/flysystem-webdav": "Allows you to use WebDAV storage",
- "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
- "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
- "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
+ "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.1-dev"
+ "dev-master": "2.x-dev"
+ },
+ "laravel": {
+ "providers": [
+ "Laravel\\Tinker\\TinkerServiceProvider"
+ ]
}
},
"autoload": {
"psr-4": {
- "League\\Flysystem\\": "src/"
+ "Laravel\\Tinker\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -711,88 +801,61 @@
],
"authors": [
{
- "name": "Frank de Jonge",
- "email": "info@frenky.net"
+ "name": "Taylor Otwell",
+ "email": "taylor@laravel.com"
}
],
- "description": "Filesystem abstraction: Many filesystems, one API.",
+ "description": "Powerful REPL for the Laravel framework.",
"keywords": [
- "Cloud Files",
- "WebDAV",
- "abstraction",
- "aws",
- "cloud",
- "copy.com",
- "dropbox",
- "file systems",
- "files",
- "filesystem",
- "filesystems",
- "ftp",
- "rackspace",
- "remote",
- "s3",
- "sftp",
- "storage"
+ "REPL",
+ "Tinker",
+ "laravel",
+ "psysh"
],
- "time": "2018-01-27T16:03:56+00:00"
+ "support": {
+ "issues": "https://github.com/laravel/tinker/issues",
+ "source": "https://github.com/laravel/tinker/tree/v2.5.0"
+ },
+ "time": "2020-10-29T13:07:12+00:00"
},
{
- "name": "monolog/monolog",
- "version": "1.23.0",
+ "name": "laravelium/feed",
+ "version": "v8.0.1",
"source": {
"type": "git",
- "url": "https://github.com/Seldaek/monolog.git",
- "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4"
+ "url": "https://github.com/Laravelium/laravel-feed.git",
+ "reference": "f1ed9141d499248c795bbf741ad30bb0ee54c93c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
- "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
+ "url": "https://api.github.com/repos/Laravelium/laravel-feed/zipball/f1ed9141d499248c795bbf741ad30bb0ee54c93c",
+ "reference": "f1ed9141d499248c795bbf741ad30bb0ee54c93c",
"shasum": ""
},
"require": {
- "php": ">=5.3.0",
- "psr/log": "~1.0"
- },
- "provide": {
- "psr/log-implementation": "1.0.0"
+ "illuminate/filesystem": "^8.0",
+ "illuminate/support": "^8.0",
+ "php": ">=7.3"
},
"require-dev": {
- "aws/aws-sdk-php": "^2.4.9 || ^3.0",
- "doctrine/couchdb": "~1.0@dev",
- "graylog2/gelf-php": "~1.0",
- "jakub-onderka/php-parallel-lint": "0.9",
- "php-amqplib/php-amqplib": "~2.4",
- "php-console/php-console": "^3.1.3",
- "phpunit/phpunit": "~4.5",
- "phpunit/phpunit-mock-objects": "2.3.0",
- "ruflin/elastica": ">=0.90 <3.0",
- "sentry/sentry": "^0.13",
- "swiftmailer/swiftmailer": "^5.3|^6.0"
- },
- "suggest": {
- "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
- "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
- "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
- "ext-mongo": "Allow sending log messages to a MongoDB server",
- "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
- "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
- "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
- "php-console/php-console": "Allow sending log messages to Google Chrome",
- "rollbar/rollbar": "Allow sending log messages to Rollbar",
- "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
- "sentry/sentry": "Allow sending log messages to a Sentry server"
+ "laravel/framework": "^8.0",
+ "orchestra/testbench-core": "^6.0",
+ "phpunit/phpunit": "^9.3"
},
"type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
+ "laravel": {
+ "providers": [
+ "Laravelium\\Feed\\FeedServiceProvider"
+ ],
+ "aliases": {
+ "Feed": "Laravelium\\Feed\\Feed"
+ }
}
},
"autoload": {
- "psr-4": {
- "Monolog\\": "src/Monolog"
+ "psr-0": {
+ "Laravelium\\Feed": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -801,152 +864,252 @@
],
"authors": [
{
- "name": "Jordi Boggiano",
- "email": "j.boggiano@seld.be",
- "homepage": "http://seld.be"
+ "name": "Rumen Damyanov",
+ "email": "r@alfamatter.com",
+ "homepage": "https://darumen.com",
+ "role": "Developer"
}
],
- "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
- "homepage": "http://github.com/Seldaek/monolog",
+ "description": "Laravelium Feed package for Laravel.",
+ "homepage": "https://laravelium.com",
"keywords": [
- "log",
- "logging",
- "psr-3"
+ "atom",
+ "feed",
+ "generator",
+ "laravel",
+ "laravelium",
+ "rss"
],
- "time": "2017-06-19T01:22:40+00:00"
+ "support": {
+ "issues": "https://github.com/Laravelium/laravel-feed/issues",
+ "source": "https://github.com/Laravelium/laravel-feed",
+ "wiki": "https://github.com/Laravelium/laravel-feed/wiki"
+ },
+ "time": "2020-09-12T18:51:09+00:00"
},
{
- "name": "nesbot/carbon",
- "version": "1.22.1",
+ "name": "league/commonmark",
+ "version": "1.5.7",
"source": {
"type": "git",
- "url": "https://github.com/briannesbitt/Carbon.git",
- "reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc"
+ "url": "https://github.com/thephpleague/commonmark.git",
+ "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc",
- "reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc",
+ "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54",
+ "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54",
"shasum": ""
},
"require": {
- "php": ">=5.3.0",
- "symfony/translation": "~2.6 || ~3.0"
+ "ext-mbstring": "*",
+ "php": "^7.1 || ^8.0"
+ },
+ "conflict": {
+ "scrutinizer/ocular": "1.7.*"
},
"require-dev": {
- "friendsofphp/php-cs-fixer": "~2",
- "phpunit/phpunit": "~4.0 || ~5.0"
+ "cebe/markdown": "~1.0",
+ "commonmark/commonmark.js": "0.29.2",
+ "erusev/parsedown": "~1.0",
+ "ext-json": "*",
+ "github/gfm": "0.29.0",
+ "michelf/php-markdown": "~1.4",
+ "mikehaertl/php-shellcommand": "^1.4",
+ "phpstan/phpstan": "^0.12",
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
+ "scrutinizer/ocular": "^1.5",
+ "symfony/finder": "^4.2"
},
+ "bin": [
+ "bin/commonmark"
+ ],
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.23-dev"
- }
- },
"autoload": {
"psr-4": {
- "Carbon\\": "src/Carbon/"
+ "League\\CommonMark\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "Brian Nesbitt",
- "email": "brian@nesbot.com",
- "homepage": "http://nesbot.com"
+ "name": "Colin O'Dell",
+ "email": "colinodell@gmail.com",
+ "homepage": "https://www.colinodell.com",
+ "role": "Lead Developer"
}
],
- "description": "A simple API extension for DateTime.",
- "homepage": "http://carbon.nesbot.com",
+ "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
+ "homepage": "https://commonmark.thephpleague.com",
"keywords": [
- "date",
- "datetime",
- "time"
+ "commonmark",
+ "flavored",
+ "gfm",
+ "github",
+ "github-flavored",
+ "markdown",
+ "md",
+ "parser"
+ ],
+ "support": {
+ "docs": "https://commonmark.thephpleague.com/",
+ "issues": "https://github.com/thephpleague/commonmark/issues",
+ "rss": "https://github.com/thephpleague/commonmark/releases.atom",
+ "source": "https://github.com/thephpleague/commonmark"
+ },
+ "funding": [
+ {
+ "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.colinodell.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.paypal.me/colinpodell/10.00",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/colinodell",
+ "type": "github"
+ },
+ {
+ "url": "https://www.patreon.com/colinodell",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
+ "type": "tidelift"
+ }
],
- "time": "2017-01-16T07:55:07+00:00"
+ "time": "2020-10-31T13:49:32+00:00"
},
{
- "name": "nikic/php-parser",
- "version": "v3.1.4",
+ "name": "league/flysystem",
+ "version": "1.1.3",
"source": {
"type": "git",
- "url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "e57b3a09784f846411aa7ed664eedb73e3399078"
+ "url": "https://github.com/thephpleague/flysystem.git",
+ "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/e57b3a09784f846411aa7ed664eedb73e3399078",
- "reference": "e57b3a09784f846411aa7ed664eedb73e3399078",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
+ "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
"shasum": ""
},
"require": {
- "ext-tokenizer": "*",
- "php": ">=5.5"
+ "ext-fileinfo": "*",
+ "league/mime-type-detection": "^1.3",
+ "php": "^7.2.5 || ^8.0"
+ },
+ "conflict": {
+ "league/flysystem-sftp": "<1.0.6"
},
"require-dev": {
- "phpunit/phpunit": "~4.0|~5.0"
+ "phpspec/prophecy": "^1.11.1",
+ "phpunit/phpunit": "^8.5.8"
+ },
+ "suggest": {
+ "ext-fileinfo": "Required for MimeType",
+ "ext-ftp": "Allows you to use FTP server storage",
+ "ext-openssl": "Allows you to use FTPS server storage",
+ "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
+ "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
+ "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
+ "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
+ "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
+ "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
+ "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
+ "league/flysystem-webdav": "Allows you to use WebDAV storage",
+ "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
+ "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
+ "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
},
- "bin": [
- "bin/php-parse"
- ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "1.1-dev"
}
},
"autoload": {
"psr-4": {
- "PhpParser\\": "lib/PhpParser"
+ "League\\Flysystem\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Nikita Popov"
+ "name": "Frank de Jonge",
+ "email": "info@frenky.net"
}
],
- "description": "A PHP parser written in PHP",
+ "description": "Filesystem abstraction: Many filesystems, one API.",
"keywords": [
- "parser",
- "php"
+ "Cloud Files",
+ "WebDAV",
+ "abstraction",
+ "aws",
+ "cloud",
+ "copy.com",
+ "dropbox",
+ "file systems",
+ "files",
+ "filesystem",
+ "filesystems",
+ "ftp",
+ "rackspace",
+ "remote",
+ "s3",
+ "sftp",
+ "storage"
+ ],
+ "support": {
+ "issues": "https://github.com/thephpleague/flysystem/issues",
+ "source": "https://github.com/thephpleague/flysystem/tree/1.x"
+ },
+ "funding": [
+ {
+ "url": "https://offset.earth/frankdejonge",
+ "type": "other"
+ }
],
- "time": "2018-01-25T21:31:33+00:00"
+ "time": "2020-08-23T07:39:11+00:00"
},
{
- "name": "paragonie/random_compat",
- "version": "v2.0.11",
+ "name": "league/mime-type-detection",
+ "version": "1.5.1",
"source": {
"type": "git",
- "url": "https://github.com/paragonie/random_compat.git",
- "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8"
+ "url": "https://github.com/thephpleague/mime-type-detection.git",
+ "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/paragonie/random_compat/zipball/5da4d3c796c275c55f057af5a643ae297d96b4d8",
- "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8",
+ "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/353f66d7555d8a90781f6f5e7091932f9a4250aa",
+ "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa",
"shasum": ""
},
"require": {
- "php": ">=5.2.0"
+ "ext-fileinfo": "*",
+ "php": "^7.2 || ^8.0"
},
"require-dev": {
- "phpunit/phpunit": "4.*|5.*"
- },
- "suggest": {
- "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
+ "phpstan/phpstan": "^0.12.36",
+ "phpunit/phpunit": "^8.5.8"
},
"type": "library",
"autoload": {
- "files": [
- "lib/random.php"
- ]
+ "psr-4": {
+ "League\\MimeTypeDetection\\": "src"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -954,33 +1117,51 @@
],
"authors": [
{
- "name": "Paragon Initiative Enterprises",
- "email": "security@paragonie.com",
- "homepage": "https://paragonie.com"
+ "name": "Frank de Jonge",
+ "email": "info@frankdejonge.nl"
}
],
- "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
- "keywords": [
- "csprng",
- "pseudorandom",
- "random"
+ "description": "Mime-type detection for Flysystem",
+ "support": {
+ "issues": "https://github.com/thephpleague/mime-type-detection/issues",
+ "source": "https://github.com/thephpleague/mime-type-detection/tree/1.5.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/frankdejonge",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
+ "type": "tidelift"
+ }
],
- "time": "2017-09-27T21:40:39+00:00"
+ "time": "2020-10-18T11:50:25+00:00"
},
{
- "name": "piwik/piwik-php-tracker",
- "version": "1.4.0",
+ "name": "matomo/matomo-php-tracker",
+ "version": "3.0.0",
"source": {
"type": "git",
- "url": "https://github.com/piwik/piwik-php-tracker.git",
- "reference": "f9a0168c87f01f2d5de95029a1ba0d1fd6c3d5ab"
+ "url": "https://github.com/matomo-org/matomo-php-tracker.git",
+ "reference": "31e2b0bdf479c6fc00758228d2c6d7c85c1863a0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/piwik/piwik-php-tracker/zipball/f9a0168c87f01f2d5de95029a1ba0d1fd6c3d5ab",
- "reference": "f9a0168c87f01f2d5de95029a1ba0d1fd6c3d5ab",
+ "url": "https://api.github.com/repos/matomo-org/matomo-php-tracker/zipball/31e2b0bdf479c6fc00758228d2c6d7c85c1863a0",
+ "reference": "31e2b0bdf479c6fc00758228d2c6d7c85c1863a0",
"shasum": ""
},
+ "require": {
+ "ext-json": "*",
+ "php": ">=5.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9.3"
+ },
+ "suggest": {
+ "ext-curl": "Using this extension to issue the HTTPS request to Matomo"
+ },
"type": "library",
"autoload": {
"classmap": [
@@ -993,46 +1174,86 @@
],
"authors": [
{
- "name": "The Piwik Team",
- "email": "hello@piwik.org",
- "homepage": "http://piwik.org/the-piwik-team/"
+ "name": "The Matomo Team",
+ "email": "hello@matomo.org",
+ "homepage": "https://matomo.org/team/"
}
],
- "description": "PHP Client for Piwik Analytics Tracking API",
- "homepage": "http://piwik.org",
+ "description": "PHP Client for Matomo Analytics Tracking API",
+ "homepage": "https://matomo.org",
"keywords": [
"analytics",
+ "matomo",
"piwik",
"tracker"
],
- "time": "2017-11-09T03:20:23+00:00"
+ "support": {
+ "forum": "https://forum.matomo.org/",
+ "issues": "https://github.com/matomo-org/matomo-php-tracker/issues",
+ "source": "https://github.com/matomo-org/matomo-php-tracker"
+ },
+ "time": "2020-11-21T05:20:05+00:00"
},
{
- "name": "psr/container",
- "version": "1.0.0",
+ "name": "monolog/monolog",
+ "version": "2.2.0",
"source": {
"type": "git",
- "url": "https://github.com/php-fig/container.git",
- "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
+ "url": "https://github.com/Seldaek/monolog.git",
+ "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
- "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
+ "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
+ "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
"shasum": ""
},
"require": {
- "php": ">=5.3.0"
+ "php": ">=7.2",
+ "psr/log": "^1.0.1"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0.0"
+ },
+ "require-dev": {
+ "aws/aws-sdk-php": "^2.4.9 || ^3.0",
+ "doctrine/couchdb": "~1.0@dev",
+ "elasticsearch/elasticsearch": "^7",
+ "graylog2/gelf-php": "^1.4.2",
+ "mongodb/mongodb": "^1.8",
+ "php-amqplib/php-amqplib": "~2.4",
+ "php-console/php-console": "^3.1.3",
+ "phpspec/prophecy": "^1.6.1",
+ "phpstan/phpstan": "^0.12.59",
+ "phpunit/phpunit": "^8.5",
+ "predis/predis": "^1.1",
+ "rollbar/rollbar": "^1.3",
+ "ruflin/elastica": ">=0.90 <7.0.1",
+ "swiftmailer/swiftmailer": "^5.3|^6.0"
+ },
+ "suggest": {
+ "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
+ "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
+ "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
+ "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
+ "ext-mbstring": "Allow to work properly with unicode symbols",
+ "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
+ "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
+ "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
+ "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
+ "php-console/php-console": "Allow sending log messages to Google Chrome",
+ "rollbar/rollbar": "Allow sending log messages to Rollbar",
+ "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-main": "2.x-dev"
}
},
"autoload": {
"psr-4": {
- "Psr\\Container\\": "src/"
+ "Monolog\\": "src/Monolog"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1041,47 +1262,87 @@
],
"authors": [
{
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "https://seld.be"
}
],
- "description": "Common Container Interface (PHP FIG PSR-11)",
- "homepage": "https://github.com/php-fig/container",
+ "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
+ "homepage": "https://github.com/Seldaek/monolog",
"keywords": [
- "PSR-11",
- "container",
- "container-interface",
- "container-interop",
- "psr"
+ "log",
+ "logging",
+ "psr-3"
],
- "time": "2017-02-14T16:28:37+00:00"
+ "support": {
+ "issues": "https://github.com/Seldaek/monolog/issues",
+ "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/Seldaek",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-14T13:15:25+00:00"
},
{
- "name": "psr/log",
- "version": "1.0.2",
+ "name": "nesbot/carbon",
+ "version": "2.43.0",
"source": {
"type": "git",
- "url": "https://github.com/php-fig/log.git",
- "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
+ "url": "https://github.com/briannesbitt/Carbon.git",
+ "reference": "d32c57d8389113742f4a88725a170236470012e2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
- "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
+ "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d32c57d8389113742f4a88725a170236470012e2",
+ "reference": "d32c57d8389113742f4a88725a170236470012e2",
"shasum": ""
},
"require": {
- "php": ">=5.3.0"
+ "ext-json": "*",
+ "php": "^7.1.8 || ^8.0",
+ "symfony/polyfill-mbstring": "^1.0",
+ "symfony/translation": "^3.4 || ^4.0 || ^5.0"
},
+ "require-dev": {
+ "doctrine/orm": "^2.7",
+ "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
+ "kylekatarnls/multi-tester": "^2.0",
+ "phpmd/phpmd": "^2.9",
+ "phpstan/extension-installer": "^1.0",
+ "phpstan/phpstan": "^0.12.54",
+ "phpunit/phpunit": "^7.5 || ^8.0",
+ "squizlabs/php_codesniffer": "^3.4"
+ },
+ "bin": [
+ "bin/carbon"
+ ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-master": "2.x-dev",
+ "dev-3.x": "3.x-dev"
+ },
+ "laravel": {
+ "providers": [
+ "Carbon\\Laravel\\ServiceProvider"
+ ]
+ },
+ "phpstan": {
+ "includes": [
+ "extension.neon"
+ ]
}
},
"autoload": {
"psr-4": {
- "Psr\\Log\\": "Psr/Log/"
+ "Carbon\\": "src/Carbon/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1090,31 +1351,393 @@
],
"authors": [
{
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
+ "name": "Brian Nesbitt",
+ "email": "brian@nesbot.com",
+ "homepage": "http://nesbot.com"
+ },
+ {
+ "name": "kylekatarnls",
+ "homepage": "http://github.com/kylekatarnls"
}
],
- "description": "Common interface for logging libraries",
- "homepage": "https://github.com/php-fig/log",
+ "description": "An API extension for DateTime that supports 281 different languages.",
+ "homepage": "http://carbon.nesbot.com",
"keywords": [
- "log",
- "psr",
- "psr-3"
+ "date",
+ "datetime",
+ "time"
+ ],
+ "support": {
+ "issues": "https://github.com/briannesbitt/Carbon/issues",
+ "source": "https://github.com/briannesbitt/Carbon"
+ },
+ "funding": [
+ {
+ "url": "https://opencollective.com/Carbon",
+ "type": "open_collective"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
+ "type": "tidelift"
+ }
],
- "time": "2016-10-10T12:19:37+00:00"
+ "time": "2020-12-17T20:55:32+00:00"
},
{
- "name": "psr/simple-cache",
+ "name": "nikic/php-parser",
+ "version": "v4.10.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nikic/PHP-Parser.git",
+ "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
+ "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
+ "shasum": ""
+ },
+ "require": {
+ "ext-tokenizer": "*",
+ "php": ">=7.0"
+ },
+ "require-dev": {
+ "ircmaxell/php-yacc": "^0.0.7",
+ "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
+ },
+ "bin": [
+ "bin/php-parse"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.9-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PhpParser\\": "lib/PhpParser"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Nikita Popov"
+ }
+ ],
+ "description": "A PHP parser written in PHP",
+ "keywords": [
+ "parser",
+ "php"
+ ],
+ "support": {
+ "issues": "https://github.com/nikic/PHP-Parser/issues",
+ "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
+ },
+ "time": "2020-12-20T10:01:03+00:00"
+ },
+ {
+ "name": "opis/closure",
+ "version": "3.6.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/opis/closure.git",
+ "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
+ "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.4 || ^7.0 || ^8.0"
+ },
+ "require-dev": {
+ "jeremeamia/superclosure": "^2.0",
+ "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.6.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Opis\\Closure\\": "src/"
+ },
+ "files": [
+ "functions.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Marius Sarca",
+ "email": "marius.sarca@gmail.com"
+ },
+ {
+ "name": "Sorin Sarca",
+ "email": "sarca_sorin@hotmail.com"
+ }
+ ],
+ "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
+ "homepage": "https://opis.io/closure",
+ "keywords": [
+ "anonymous functions",
+ "closure",
+ "function",
+ "serializable",
+ "serialization",
+ "serialize"
+ ],
+ "support": {
+ "issues": "https://github.com/opis/closure/issues",
+ "source": "https://github.com/opis/closure/tree/3.6.1"
+ },
+ "time": "2020-11-07T02:01:34+00:00"
+ },
+ {
+ "name": "phpoption/phpoption",
+ "version": "1.7.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/schmittjoh/php-option.git",
+ "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
+ "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.5.9 || ^7.0 || ^8.0"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.4.1",
+ "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.7-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PhpOption\\": "src/PhpOption/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Johannes M. Schmitt",
+ "email": "schmittjoh@gmail.com"
+ },
+ {
+ "name": "Graham Campbell",
+ "email": "graham@alt-three.com"
+ }
+ ],
+ "description": "Option Type for PHP",
+ "keywords": [
+ "language",
+ "option",
+ "php",
+ "type"
+ ],
+ "support": {
+ "issues": "https://github.com/schmittjoh/php-option/issues",
+ "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-07-20T17:29:33+00:00"
+ },
+ {
+ "name": "psr/container",
+ "version": "1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/container.git",
+ "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
+ "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Container\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "description": "Common Container Interface (PHP FIG PSR-11)",
+ "homepage": "https://github.com/php-fig/container",
+ "keywords": [
+ "PSR-11",
+ "container",
+ "container-interface",
+ "container-interop",
+ "psr"
+ ],
+ "support": {
+ "issues": "https://github.com/php-fig/container/issues",
+ "source": "https://github.com/php-fig/container/tree/master"
+ },
+ "time": "2017-02-14T16:28:37+00:00"
+ },
+ {
+ "name": "psr/event-dispatcher",
"version": "1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/event-dispatcher.git",
+ "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
+ "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\EventDispatcher\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "description": "Standard interfaces for event handling.",
+ "keywords": [
+ "events",
+ "psr",
+ "psr-14"
+ ],
+ "support": {
+ "issues": "https://github.com/php-fig/event-dispatcher/issues",
+ "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
+ },
+ "time": "2019-01-08T18:20:26+00:00"
+ },
+ {
+ "name": "psr/log",
+ "version": "1.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/log.git",
+ "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
+ "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Log\\": "Psr/Log/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for logging libraries",
+ "homepage": "https://github.com/php-fig/log",
+ "keywords": [
+ "log",
+ "psr",
+ "psr-3"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/log/tree/1.1.3"
+ },
+ "time": "2020-03-23T09:12:05+00:00"
+ },
+ {
+ "name": "psr/simple-cache",
+ "version": "1.0.1",
"source": {
"type": "git",
"url": "https://github.com/php-fig/simple-cache.git",
- "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24"
+ "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/753fa598e8f3b9966c886fe13f370baa45ef0e24",
- "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24",
+ "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
+ "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
"shasum": ""
},
"require": {
@@ -1137,70 +1760,1243 @@
],
"authors": [
{
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interfaces for simple caching",
+ "keywords": [
+ "cache",
+ "caching",
+ "psr",
+ "psr-16",
+ "simple-cache"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/simple-cache/tree/master"
+ },
+ "time": "2017-10-23T01:57:42+00:00"
+ },
+ {
+ "name": "psy/psysh",
+ "version": "v0.10.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/bobthecow/psysh.git",
+ "reference": "7c710551d4a2653afa259c544508dc18a9098956"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7c710551d4a2653afa259c544508dc18a9098956",
+ "reference": "7c710551d4a2653afa259c544508dc18a9098956",
+ "shasum": ""
+ },
+ "require": {
+ "dnoegel/php-xdg-base-dir": "0.1.*",
+ "ext-json": "*",
+ "ext-tokenizer": "*",
+ "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
+ "php": "^8.0 || ^7.0 || ^5.5.9",
+ "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
+ "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.2",
+ "hoa/console": "3.17.*"
+ },
+ "suggest": {
+ "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
+ "ext-pdo-sqlite": "The doc command requires SQLite to work.",
+ "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
+ "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
+ "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
+ },
+ "bin": [
+ "bin/psysh"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "0.10.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/functions.php"
+ ],
+ "psr-4": {
+ "Psy\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Justin Hileman",
+ "email": "justin@justinhileman.info",
+ "homepage": "http://justinhileman.com"
+ }
+ ],
+ "description": "An interactive shell for modern PHP.",
+ "homepage": "http://psysh.org",
+ "keywords": [
+ "REPL",
+ "console",
+ "interactive",
+ "shell"
+ ],
+ "support": {
+ "issues": "https://github.com/bobthecow/psysh/issues",
+ "source": "https://github.com/bobthecow/psysh/tree/v0.10.5"
+ },
+ "time": "2020-12-04T02:51:30+00:00"
+ },
+ {
+ "name": "ramsey/collection",
+ "version": "1.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ramsey/collection.git",
+ "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ramsey/collection/zipball/24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
+ "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8"
+ },
+ "require-dev": {
+ "captainhook/captainhook": "^5.3",
+ "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
+ "ergebnis/composer-normalize": "^2.6",
+ "fzaninotto/faker": "^1.5",
+ "hamcrest/hamcrest-php": "^2",
+ "jangregor/phpstan-prophecy": "^0.6",
+ "mockery/mockery": "^1.3",
+ "phpstan/extension-installer": "^1",
+ "phpstan/phpstan": "^0.12.32",
+ "phpstan/phpstan-mockery": "^0.12.5",
+ "phpstan/phpstan-phpunit": "^0.12.11",
+ "phpunit/phpunit": "^8.5",
+ "psy/psysh": "^0.10.4",
+ "slevomat/coding-standard": "^6.3",
+ "squizlabs/php_codesniffer": "^3.5",
+ "vimeo/psalm": "^3.12.2"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Ramsey\\Collection\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ben Ramsey",
+ "email": "ben@benramsey.com",
+ "homepage": "https://benramsey.com"
+ }
+ ],
+ "description": "A PHP 7.2+ library for representing and manipulating collections.",
+ "keywords": [
+ "array",
+ "collection",
+ "hash",
+ "map",
+ "queue",
+ "set"
+ ],
+ "support": {
+ "issues": "https://github.com/ramsey/collection/issues",
+ "source": "https://github.com/ramsey/collection/tree/1.1.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/ramsey",
+ "type": "github"
+ }
+ ],
+ "time": "2020-09-10T20:58:17+00:00"
+ },
+ {
+ "name": "ramsey/uuid",
+ "version": "4.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ramsey/uuid.git",
+ "reference": "cd4032040a750077205918c86049aa0f43d22947"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
+ "reference": "cd4032040a750077205918c86049aa0f43d22947",
+ "shasum": ""
+ },
+ "require": {
+ "brick/math": "^0.8 || ^0.9",
+ "ext-json": "*",
+ "php": "^7.2 || ^8",
+ "ramsey/collection": "^1.0",
+ "symfony/polyfill-ctype": "^1.8"
+ },
+ "replace": {
+ "rhumsaa/uuid": "self.version"
+ },
+ "require-dev": {
+ "codeception/aspect-mock": "^3",
+ "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
+ "doctrine/annotations": "^1.8",
+ "goaop/framework": "^2",
+ "mockery/mockery": "^1.3",
+ "moontoast/math": "^1.1",
+ "paragonie/random-lib": "^2",
+ "php-mock/php-mock-mockery": "^1.3",
+ "php-mock/php-mock-phpunit": "^2.5",
+ "php-parallel-lint/php-parallel-lint": "^1.1",
+ "phpbench/phpbench": "^0.17.1",
+ "phpstan/extension-installer": "^1.0",
+ "phpstan/phpstan": "^0.12",
+ "phpstan/phpstan-mockery": "^0.12",
+ "phpstan/phpstan-phpunit": "^0.12",
+ "phpunit/phpunit": "^8.5",
+ "psy/psysh": "^0.10.0",
+ "slevomat/coding-standard": "^6.0",
+ "squizlabs/php_codesniffer": "^3.5",
+ "vimeo/psalm": "3.9.4"
+ },
+ "suggest": {
+ "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
+ "ext-ctype": "Enables faster processing of character classification using ctype functions.",
+ "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
+ "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
+ "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
+ "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Ramsey\\Uuid\\": "src/"
+ },
+ "files": [
+ "src/functions.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
+ "homepage": "https://github.com/ramsey/uuid",
+ "keywords": [
+ "guid",
+ "identifier",
+ "uuid"
+ ],
+ "support": {
+ "issues": "https://github.com/ramsey/uuid/issues",
+ "rss": "https://github.com/ramsey/uuid/releases.atom",
+ "source": "https://github.com/ramsey/uuid"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/ramsey",
+ "type": "github"
+ }
+ ],
+ "time": "2020-08-18T17:17:46+00:00"
+ },
+ {
+ "name": "swiftmailer/swiftmailer",
+ "version": "v6.2.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/swiftmailer/swiftmailer.git",
+ "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
+ "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
+ "shasum": ""
+ },
+ "require": {
+ "egulias/email-validator": "^2.0",
+ "php": ">=7.0.0",
+ "symfony/polyfill-iconv": "^1.0",
+ "symfony/polyfill-intl-idn": "^1.10",
+ "symfony/polyfill-mbstring": "^1.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.0",
+ "symfony/phpunit-bridge": "^4.4|^5.0"
+ },
+ "suggest": {
+ "ext-intl": "Needed to support internationalized email addresses"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "6.2-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "lib/swift_required.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Chris Corbyn"
+ },
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ }
+ ],
+ "description": "Swiftmailer, free feature-rich PHP mailer",
+ "homepage": "https://swiftmailer.symfony.com",
+ "keywords": [
+ "email",
+ "mail",
+ "mailer"
+ ],
+ "support": {
+ "issues": "https://github.com/swiftmailer/swiftmailer/issues",
+ "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-08T18:02:06+00:00"
+ },
+ {
+ "name": "symfony/console",
+ "version": "v5.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/console.git",
+ "reference": "47c02526c532fb381374dab26df05e7313978976"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/console/zipball/47c02526c532fb381374dab26df05e7313978976",
+ "reference": "47c02526c532fb381374dab26df05e7313978976",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/polyfill-php73": "^1.8",
+ "symfony/polyfill-php80": "^1.15",
+ "symfony/service-contracts": "^1.1|^2",
+ "symfony/string": "^5.1"
+ },
+ "conflict": {
+ "symfony/dependency-injection": "<4.4",
+ "symfony/dotenv": "<5.1",
+ "symfony/event-dispatcher": "<4.4",
+ "symfony/lock": "<4.4",
+ "symfony/process": "<4.4"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0"
+ },
+ "require-dev": {
+ "psr/log": "~1.0",
+ "symfony/config": "^4.4|^5.0",
+ "symfony/dependency-injection": "^4.4|^5.0",
+ "symfony/event-dispatcher": "^4.4|^5.0",
+ "symfony/lock": "^4.4|^5.0",
+ "symfony/process": "^4.4|^5.0",
+ "symfony/var-dumper": "^4.4|^5.0"
+ },
+ "suggest": {
+ "psr/log": "For using the console logger",
+ "symfony/event-dispatcher": "",
+ "symfony/lock": "",
+ "symfony/process": ""
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Console\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony Console Component",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "cli",
+ "command line",
+ "console",
+ "terminal"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/console/tree/v5.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-18T08:03:05+00:00"
+ },
+ {
+ "name": "symfony/css-selector",
+ "version": "v5.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/css-selector.git",
+ "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/css-selector/zipball/f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
+ "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\CssSelector\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Jean-François Simon",
+ "email": "jeanfrancois.simon@sensiolabs.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony CssSelector Component",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/css-selector/tree/v5.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-08T17:02:38+00:00"
+ },
+ {
+ "name": "symfony/deprecation-contracts",
+ "version": "v2.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/deprecation-contracts.git",
+ "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
+ "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.2-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "files": [
+ "function.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "A generic function and convention to trigger deprecation notices",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/deprecation-contracts/tree/master"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-09-07T11:33:47+00:00"
+ },
+ {
+ "name": "symfony/error-handler",
+ "version": "v5.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/error-handler.git",
+ "reference": "59b190ce16ddf32771a22087b60f6dafd3407147"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/error-handler/zipball/59b190ce16ddf32771a22087b60f6dafd3407147",
+ "reference": "59b190ce16ddf32771a22087b60f6dafd3407147",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "psr/log": "^1.0",
+ "symfony/polyfill-php80": "^1.15",
+ "symfony/var-dumper": "^4.4|^5.0"
+ },
+ "require-dev": {
+ "symfony/deprecation-contracts": "^2.1",
+ "symfony/http-kernel": "^4.4|^5.0",
+ "symfony/serializer": "^4.4|^5.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\ErrorHandler\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony ErrorHandler Component",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/error-handler/tree/v5.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-09T18:54:12+00:00"
+ },
+ {
+ "name": "symfony/event-dispatcher",
+ "version": "v5.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/event-dispatcher.git",
+ "reference": "1c93f7a1dff592c252574c79a8635a8a80856042"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1c93f7a1dff592c252574c79a8635a8a80856042",
+ "reference": "1c93f7a1dff592c252574c79a8635a8a80856042",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "symfony/deprecation-contracts": "^2.1",
+ "symfony/event-dispatcher-contracts": "^2",
+ "symfony/polyfill-php80": "^1.15"
+ },
+ "conflict": {
+ "symfony/dependency-injection": "<4.4"
+ },
+ "provide": {
+ "psr/event-dispatcher-implementation": "1.0",
+ "symfony/event-dispatcher-implementation": "2.0"
+ },
+ "require-dev": {
+ "psr/log": "~1.0",
+ "symfony/config": "^4.4|^5.0",
+ "symfony/dependency-injection": "^4.4|^5.0",
+ "symfony/error-handler": "^4.4|^5.0",
+ "symfony/expression-language": "^4.4|^5.0",
+ "symfony/http-foundation": "^4.4|^5.0",
+ "symfony/service-contracts": "^1.1|^2",
+ "symfony/stopwatch": "^4.4|^5.0"
+ },
+ "suggest": {
+ "symfony/dependency-injection": "",
+ "symfony/http-kernel": ""
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\EventDispatcher\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony EventDispatcher Component",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-18T08:03:05+00:00"
+ },
+ {
+ "name": "symfony/event-dispatcher-contracts",
+ "version": "v2.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/event-dispatcher-contracts.git",
+ "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
+ "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "psr/event-dispatcher": "^1"
+ },
+ "suggest": {
+ "symfony/event-dispatcher-implementation": ""
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.2-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Contracts\\EventDispatcher\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to dispatching event",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-09-07T11:33:47+00:00"
+ },
+ {
+ "name": "symfony/finder",
+ "version": "v5.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/finder.git",
+ "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
+ "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Finder\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony Finder Component",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/finder/tree/v5.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-08T17:02:38+00:00"
+ },
+ {
+ "name": "symfony/http-client-contracts",
+ "version": "v2.3.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/http-client-contracts.git",
+ "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
+ "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5"
+ },
+ "suggest": {
+ "symfony/http-client-implementation": ""
+ },
+ "type": "library",
+ "extra": {
+ "branch-version": "2.3",
+ "branch-alias": {
+ "dev-main": "2.3-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Contracts\\HttpClient\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to HTTP clients",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-10-14T17:08:19+00:00"
+ },
+ {
+ "name": "symfony/http-foundation",
+ "version": "v5.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/http-foundation.git",
+ "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a1f6218b29897ab52acba58cfa905b83625bef8d",
+ "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "symfony/deprecation-contracts": "^2.1",
+ "symfony/polyfill-mbstring": "~1.1",
+ "symfony/polyfill-php80": "^1.15"
+ },
+ "require-dev": {
+ "predis/predis": "~1.0",
+ "symfony/cache": "^4.4|^5.0",
+ "symfony/expression-language": "^4.4|^5.0",
+ "symfony/mime": "^4.4|^5.0"
+ },
+ "suggest": {
+ "symfony/mime": "To use the file extension guesser"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\HttpFoundation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony HttpFoundation Component",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/http-foundation/tree/v5.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-18T10:00:10+00:00"
+ },
+ {
+ "name": "symfony/http-kernel",
+ "version": "v5.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/http-kernel.git",
+ "reference": "1feb619286d819180f7b8bc0dc44f516d9c62647"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1feb619286d819180f7b8bc0dc44f516d9c62647",
+ "reference": "1feb619286d819180f7b8bc0dc44f516d9c62647",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "psr/log": "~1.0",
+ "symfony/deprecation-contracts": "^2.1",
+ "symfony/error-handler": "^4.4|^5.0",
+ "symfony/event-dispatcher": "^5.0",
+ "symfony/http-client-contracts": "^1.1|^2",
+ "symfony/http-foundation": "^4.4|^5.0",
+ "symfony/polyfill-ctype": "^1.8",
+ "symfony/polyfill-php73": "^1.9",
+ "symfony/polyfill-php80": "^1.15"
+ },
+ "conflict": {
+ "symfony/browser-kit": "<4.4",
+ "symfony/cache": "<5.0",
+ "symfony/config": "<5.0",
+ "symfony/console": "<4.4",
+ "symfony/dependency-injection": "<5.1.8",
+ "symfony/doctrine-bridge": "<5.0",
+ "symfony/form": "<5.0",
+ "symfony/http-client": "<5.0",
+ "symfony/mailer": "<5.0",
+ "symfony/messenger": "<5.0",
+ "symfony/translation": "<5.0",
+ "symfony/twig-bridge": "<5.0",
+ "symfony/validator": "<5.0",
+ "twig/twig": "<2.4"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0"
+ },
+ "require-dev": {
+ "psr/cache": "~1.0",
+ "symfony/browser-kit": "^4.4|^5.0",
+ "symfony/config": "^5.0",
+ "symfony/console": "^4.4|^5.0",
+ "symfony/css-selector": "^4.4|^5.0",
+ "symfony/dependency-injection": "^5.1.8",
+ "symfony/dom-crawler": "^4.4|^5.0",
+ "symfony/expression-language": "^4.4|^5.0",
+ "symfony/finder": "^4.4|^5.0",
+ "symfony/process": "^4.4|^5.0",
+ "symfony/routing": "^4.4|^5.0",
+ "symfony/stopwatch": "^4.4|^5.0",
+ "symfony/translation": "^4.4|^5.0",
+ "symfony/translation-contracts": "^1.1|^2",
+ "twig/twig": "^2.4|^3.0"
+ },
+ "suggest": {
+ "symfony/browser-kit": "",
+ "symfony/config": "",
+ "symfony/console": "",
+ "symfony/dependency-injection": ""
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\HttpKernel\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony HttpKernel Component",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/http-kernel/tree/v5.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-18T13:49:39+00:00"
+ },
+ {
+ "name": "symfony/mime",
+ "version": "v5.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/mime.git",
+ "reference": "de97005aef7426ba008c46ba840fc301df577ada"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/mime/zipball/de97005aef7426ba008c46ba840fc301df577ada",
+ "reference": "de97005aef7426ba008c46ba840fc301df577ada",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "symfony/deprecation-contracts": "^2.1",
+ "symfony/polyfill-intl-idn": "^1.10",
+ "symfony/polyfill-mbstring": "^1.0",
+ "symfony/polyfill-php80": "^1.15"
+ },
+ "conflict": {
+ "symfony/mailer": "<4.4"
+ },
+ "require-dev": {
+ "egulias/email-validator": "^2.1.10",
+ "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
+ "symfony/dependency-injection": "^4.4|^5.0",
+ "symfony/property-access": "^4.4|^5.1",
+ "symfony/property-info": "^4.4|^5.1",
+ "symfony/serializer": "^5.2"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Mime\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "A library to manipulate MIME messages",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "mime",
+ "mime-type"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/mime/tree/v5.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
}
],
- "description": "Common interfaces for simple caching",
- "keywords": [
- "cache",
- "caching",
- "psr",
- "psr-16",
- "simple-cache"
- ],
- "time": "2017-01-02T13:31:39+00:00"
+ "time": "2020-12-09T18:54:12+00:00"
},
{
- "name": "psy/psysh",
- "version": "v0.8.17",
+ "name": "symfony/polyfill-ctype",
+ "version": "v1.20.0",
"source": {
"type": "git",
- "url": "https://github.com/bobthecow/psysh.git",
- "reference": "5069b70e8c4ea492c2b5939b6eddc78bfe41cfec"
+ "url": "https://github.com/symfony/polyfill-ctype.git",
+ "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/bobthecow/psysh/zipball/5069b70e8c4ea492c2b5939b6eddc78bfe41cfec",
- "reference": "5069b70e8c4ea492c2b5939b6eddc78bfe41cfec",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
+ "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
"shasum": ""
},
"require": {
- "dnoegel/php-xdg-base-dir": "0.1",
- "jakub-onderka/php-console-highlighter": "0.3.*",
- "nikic/php-parser": "~1.3|~2.0|~3.0",
- "php": ">=5.3.9",
- "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
- "symfony/var-dumper": "~2.7|~3.0|~4.0"
- },
- "require-dev": {
- "hoa/console": "~3.16|~1.14",
- "phpunit/phpunit": "^4.8.35|^5.4.3",
- "symfony/finder": "~2.1|~3.0|~4.0"
+ "php": ">=7.1"
},
"suggest": {
- "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
- "ext-pdo-sqlite": "The doc command requires SQLite to work.",
- "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
- "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
- "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
+ "ext-ctype": "For best performance"
},
- "bin": [
- "bin/psysh"
- ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-develop": "0.8.x-dev"
+ "dev-main": "1.20-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
- "files": [
- "src/Psy/functions.php"
- ],
"psr-4": {
- "Psy\\": "src/Psy/"
- }
+ "Symfony\\Polyfill\\Ctype\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -1208,72 +3004,78 @@
],
"authors": [
{
- "name": "Justin Hileman",
- "email": "justin@justinhileman.info",
- "homepage": "http://justinhileman.com"
+ "name": "Gert de Pagter",
+ "email": "BackEndTea@gmail.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "An interactive shell for modern PHP.",
- "homepage": "http://psysh.org",
+ "description": "Symfony polyfill for ctype functions",
+ "homepage": "https://symfony.com",
"keywords": [
- "REPL",
- "console",
- "interactive",
- "shell"
+ "compatibility",
+ "ctype",
+ "polyfill",
+ "portable"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
],
- "time": "2017-12-28T16:14:16+00:00"
+ "time": "2020-10-23T14:02:19+00:00"
},
{
- "name": "ramsey/uuid",
- "version": "3.7.3",
+ "name": "symfony/polyfill-iconv",
+ "version": "v1.20.0",
"source": {
"type": "git",
- "url": "https://github.com/ramsey/uuid.git",
- "reference": "44abcdad877d9a46685a3a4d221e3b2c4b87cb76"
+ "url": "https://github.com/symfony/polyfill-iconv.git",
+ "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ramsey/uuid/zipball/44abcdad877d9a46685a3a4d221e3b2c4b87cb76",
- "reference": "44abcdad877d9a46685a3a4d221e3b2c4b87cb76",
+ "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
+ "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
"shasum": ""
},
"require": {
- "paragonie/random_compat": "^1.0|^2.0",
- "php": "^5.4 || ^7.0"
- },
- "replace": {
- "rhumsaa/uuid": "self.version"
- },
- "require-dev": {
- "codeception/aspect-mock": "^1.0 | ~2.0.0",
- "doctrine/annotations": "~1.2.0",
- "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ^2.1",
- "ircmaxell/random-lib": "^1.1",
- "jakub-onderka/php-parallel-lint": "^0.9.0",
- "mockery/mockery": "^0.9.9",
- "moontoast/math": "^1.1",
- "php-mock/php-mock-phpunit": "^0.3|^1.1",
- "phpunit/phpunit": "^4.7|^5.0",
- "squizlabs/php_codesniffer": "^2.3"
+ "php": ">=7.1"
},
"suggest": {
- "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
- "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
- "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
- "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
- "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
- "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
+ "ext-iconv": "For best performance"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.x-dev"
+ "dev-main": "1.20-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
"psr-4": {
- "Ramsey\\Uuid\\": "src/"
- }
+ "Symfony\\Polyfill\\Iconv\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -1281,64 +3083,79 @@
],
"authors": [
{
- "name": "Marijn Huizendveld",
- "email": "marijn.huizendveld@gmail.com"
- },
- {
- "name": "Thibaud Fabre",
- "email": "thibaud@aztech.io"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
- "name": "Ben Ramsey",
- "email": "ben@benramsey.com",
- "homepage": "https://benramsey.com"
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
- "homepage": "https://github.com/ramsey/uuid",
+ "description": "Symfony polyfill for the Iconv extension",
+ "homepage": "https://symfony.com",
"keywords": [
- "guid",
- "identifier",
- "uuid"
+ "compatibility",
+ "iconv",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
],
- "time": "2018-01-20T00:28:24+00:00"
+ "time": "2020-10-23T14:02:19+00:00"
},
{
- "name": "roumen/feed",
- "version": "v2.12.1",
+ "name": "symfony/polyfill-intl-grapheme",
+ "version": "v1.20.0",
"source": {
"type": "git",
- "url": "https://github.com/Laravelium/laravel-feed.git",
- "reference": "1fd410a282b489c94ebc6b993f161a9447fda172"
+ "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
+ "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Laravelium/laravel-feed/zipball/1fd410a282b489c94ebc6b993f161a9447fda172",
- "reference": "1fd410a282b489c94ebc6b993f161a9447fda172",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
+ "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
"shasum": ""
},
"require": {
- "illuminate/support": "5.6.*",
- "php": ">=7.1.3"
+ "php": ">=7.1"
},
- "require-dev": {
- "phpunit/phpunit": "~7.0"
+ "suggest": {
+ "ext-intl": "For best performance"
},
"type": "library",
"extra": {
- "laravel": {
- "providers": [
- "Roumen\\Feed\\FeedServiceProvider"
- ],
- "aliases": {
- "Feed": "Roumen\\Feed\\Feed"
- }
+ "branch-alias": {
+ "dev-main": "1.20-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
- "psr-0": {
- "Roumen\\Feed": "src/"
- }
+ "psr-4": {
+ "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -1346,55 +3163,81 @@
],
"authors": [
{
- "name": "Roumen Damianoff",
- "email": "roumen@damianoff.com",
- "homepage": "https://damianoff.com",
- "role": "Developer"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "A simple feed generator for Laravel.",
- "homepage": "https://laravelium.com",
+ "description": "Symfony polyfill for intl's grapheme_* functions",
+ "homepage": "https://symfony.com",
"keywords": [
- "atom",
- "feed",
- "generator",
- "laravel",
- "rss"
+ "compatibility",
+ "grapheme",
+ "intl",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.20.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
],
- "abandoned": "laravelium/feed",
- "time": "2018-02-07T20:50:19+00:00"
+ "time": "2020-10-23T14:02:19+00:00"
},
{
- "name": "swiftmailer/swiftmailer",
- "version": "v6.0.2",
+ "name": "symfony/polyfill-intl-idn",
+ "version": "v1.20.0",
"source": {
"type": "git",
- "url": "https://github.com/swiftmailer/swiftmailer.git",
- "reference": "412333372fb6c8ffb65496a2bbd7321af75733fc"
+ "url": "https://github.com/symfony/polyfill-intl-idn.git",
+ "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/412333372fb6c8ffb65496a2bbd7321af75733fc",
- "reference": "412333372fb6c8ffb65496a2bbd7321af75733fc",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
+ "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
"shasum": ""
},
"require": {
- "egulias/email-validator": "~2.0",
- "php": ">=7.0.0"
+ "php": ">=7.1",
+ "symfony/polyfill-intl-normalizer": "^1.10",
+ "symfony/polyfill-php72": "^1.10"
},
- "require-dev": {
- "mockery/mockery": "~0.9.1",
- "symfony/phpunit-bridge": "~3.3@dev"
+ "suggest": {
+ "ext-intl": "For best performance"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "6.0-dev"
+ "dev-main": "1.20-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
+ "psr-4": {
+ "Symfony\\Polyfill\\Intl\\Idn\\": ""
+ },
"files": [
- "lib/swift_required.php"
+ "bootstrap.php"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -1403,70 +3246,86 @@
],
"authors": [
{
- "name": "Chris Corbyn"
+ "name": "Laurent Bassin",
+ "email": "laurent@bassin.info"
},
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Trevor Rowbotham",
+ "email": "trevor.rowbotham@pm.me"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Swiftmailer, free feature-rich PHP mailer",
- "homepage": "http://swiftmailer.symfony.com",
+ "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
+ "homepage": "https://symfony.com",
"keywords": [
- "email",
- "mail",
- "mailer"
+ "compatibility",
+ "idn",
+ "intl",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
],
- "time": "2017-09-30T22:39:41+00:00"
+ "time": "2020-10-23T14:02:19+00:00"
},
{
- "name": "symfony/console",
- "version": "v4.0.4",
+ "name": "symfony/polyfill-intl-normalizer",
+ "version": "v1.20.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/console.git",
- "reference": "36d5b41e7d4e1ccf0370f6babe966c08ef0a1488"
+ "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
+ "reference": "727d1096295d807c309fb01a851577302394c897"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/36d5b41e7d4e1ccf0370f6babe966c08ef0a1488",
- "reference": "36d5b41e7d4e1ccf0370f6babe966c08ef0a1488",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
+ "reference": "727d1096295d807c309fb01a851577302394c897",
"shasum": ""
},
"require": {
- "php": "^7.1.3",
- "symfony/polyfill-mbstring": "~1.0"
- },
- "conflict": {
- "symfony/dependency-injection": "<3.4",
- "symfony/process": "<3.3"
- },
- "require-dev": {
- "psr/log": "~1.0",
- "symfony/config": "~3.4|~4.0",
- "symfony/dependency-injection": "~3.4|~4.0",
- "symfony/event-dispatcher": "~3.4|~4.0",
- "symfony/lock": "~3.4|~4.0",
- "symfony/process": "~3.4|~4.0"
+ "php": ">=7.1"
},
"suggest": {
- "psr/log": "For using the console logger",
- "symfony/event-dispatcher": "",
- "symfony/lock": "",
- "symfony/process": ""
+ "ext-intl": "For best performance"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.0-dev"
+ "dev-main": "1.20-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\Console\\": ""
+ "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
},
- "exclude-from-classmap": [
- "/Tests/"
+ "files": [
+ "bootstrap.php"
+ ],
+ "classmap": [
+ "Resources/stubs"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -1475,47 +3334,79 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Console Component",
+ "description": "Symfony polyfill for intl's Normalizer class and related functions",
"homepage": "https://symfony.com",
- "time": "2018-01-29T09:06:29+00:00"
+ "keywords": [
+ "compatibility",
+ "intl",
+ "normalizer",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-10-23T14:02:19+00:00"
},
{
- "name": "symfony/css-selector",
- "version": "v4.0.4",
+ "name": "symfony/polyfill-mbstring",
+ "version": "v1.20.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/css-selector.git",
- "reference": "f97600434e3141ef3cbb9ea42cf500fba88022b7"
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
+ "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/css-selector/zipball/f97600434e3141ef3cbb9ea42cf500fba88022b7",
- "reference": "f97600434e3141ef3cbb9ea42cf500fba88022b7",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
+ "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
"shasum": ""
},
"require": {
- "php": "^7.1.3"
+ "php": ">=7.1"
+ },
+ "suggest": {
+ "ext-mbstring": "For best performance"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.0-dev"
+ "dev-main": "1.20-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\CssSelector\\": ""
+ "Symfony\\Polyfill\\Mbstring\\": ""
},
- "exclude-from-classmap": [
- "/Tests/"
+ "files": [
+ "bootstrap.php"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -1524,58 +3415,75 @@
],
"authors": [
{
- "name": "Jean-François Simon",
- "email": "jeanfrancois.simon@sensiolabs.com"
- },
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony CssSelector Component",
+ "description": "Symfony polyfill for the Mbstring extension",
"homepage": "https://symfony.com",
- "time": "2018-01-03T07:38:00+00:00"
+ "keywords": [
+ "compatibility",
+ "mbstring",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-10-23T14:02:19+00:00"
},
{
- "name": "symfony/debug",
- "version": "v4.0.4",
+ "name": "symfony/polyfill-php72",
+ "version": "v1.20.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/debug.git",
- "reference": "c77bb31d0f6310a2ac11e657475d396a92e5dc54"
+ "url": "https://github.com/symfony/polyfill-php72.git",
+ "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/debug/zipball/c77bb31d0f6310a2ac11e657475d396a92e5dc54",
- "reference": "c77bb31d0f6310a2ac11e657475d396a92e5dc54",
+ "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
+ "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
"shasum": ""
},
- "require": {
- "php": "^7.1.3",
- "psr/log": "~1.0"
- },
- "conflict": {
- "symfony/http-kernel": "<3.4"
- },
- "require-dev": {
- "symfony/http-kernel": "~3.4|~4.0"
+ "require": {
+ "php": ">=7.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.0-dev"
+ "dev-main": "1.20-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\Debug\\": ""
+ "Symfony\\Polyfill\\Php72\\": ""
},
- "exclude-from-classmap": [
- "/Tests/"
+ "files": [
+ "bootstrap.php"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -1584,61 +3492,77 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Debug Component",
+ "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
"homepage": "https://symfony.com",
- "time": "2018-01-18T22:19:33+00:00"
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php72/tree/v1.20.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-10-23T14:02:19+00:00"
},
{
- "name": "symfony/event-dispatcher",
- "version": "v4.0.4",
+ "name": "symfony/polyfill-php73",
+ "version": "v1.20.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "74d33aac36208c4d6757807d9f598f0133a3a4eb"
+ "url": "https://github.com/symfony/polyfill-php73.git",
+ "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/74d33aac36208c4d6757807d9f598f0133a3a4eb",
- "reference": "74d33aac36208c4d6757807d9f598f0133a3a4eb",
+ "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
+ "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
"shasum": ""
},
"require": {
- "php": "^7.1.3"
- },
- "conflict": {
- "symfony/dependency-injection": "<3.4"
- },
- "require-dev": {
- "psr/log": "~1.0",
- "symfony/config": "~3.4|~4.0",
- "symfony/dependency-injection": "~3.4|~4.0",
- "symfony/expression-language": "~3.4|~4.0",
- "symfony/stopwatch": "~3.4|~4.0"
- },
- "suggest": {
- "symfony/dependency-injection": "",
- "symfony/http-kernel": ""
+ "php": ">=7.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.0-dev"
+ "dev-main": "1.20-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\EventDispatcher\\": ""
+ "Symfony\\Polyfill\\Php73\\": ""
},
- "exclude-from-classmap": [
- "/Tests/"
+ "files": [
+ "bootstrap.php"
+ ],
+ "classmap": [
+ "Resources/stubs"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -1647,47 +3571,77 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony EventDispatcher Component",
+ "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
"homepage": "https://symfony.com",
- "time": "2018-01-03T07:38:00+00:00"
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php73/tree/v1.20.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-10-23T14:02:19+00:00"
},
{
- "name": "symfony/finder",
- "version": "v4.0.4",
+ "name": "symfony/polyfill-php80",
+ "version": "v1.20.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/finder.git",
- "reference": "8b08180f2b7ccb41062366b9ad91fbc4f1af8601"
+ "url": "https://github.com/symfony/polyfill-php80.git",
+ "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/8b08180f2b7ccb41062366b9ad91fbc4f1af8601",
- "reference": "8b08180f2b7ccb41062366b9ad91fbc4f1af8601",
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
+ "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
"shasum": ""
},
"require": {
- "php": "^7.1.3"
+ "php": ">=7.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.0-dev"
+ "dev-main": "1.20-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\Finder\\": ""
+ "Symfony\\Polyfill\\Php80\\": ""
},
- "exclude-from-classmap": [
- "/Tests/"
+ "files": [
+ "bootstrap.php"
+ ],
+ "classmap": [
+ "Resources/stubs"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -1696,48 +3650,67 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Ion Bazan",
+ "email": "ion.bazan@gmail.com"
+ },
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Finder Component",
+ "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
"homepage": "https://symfony.com",
- "time": "2018-01-03T07:38:00+00:00"
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-10-23T14:02:19+00:00"
},
{
- "name": "symfony/http-foundation",
- "version": "v4.0.4",
+ "name": "symfony/process",
+ "version": "v5.2.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/http-foundation.git",
- "reference": "82a3ee2c6662d08ca1adf99e1ef2e31ab48196d4"
+ "url": "https://github.com/symfony/process.git",
+ "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/82a3ee2c6662d08ca1adf99e1ef2e31ab48196d4",
- "reference": "82a3ee2c6662d08ca1adf99e1ef2e31ab48196d4",
+ "url": "https://api.github.com/repos/symfony/process/zipball/bd8815b8b6705298beaa384f04fabd459c10bedd",
+ "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd",
"shasum": ""
},
"require": {
- "php": "^7.1.3",
- "symfony/polyfill-mbstring": "~1.1"
- },
- "require-dev": {
- "symfony/expression-language": "~3.4|~4.0"
+ "php": ">=7.2.5",
+ "symfony/polyfill-php80": "^1.15"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
- },
"autoload": {
"psr-4": {
- "Symfony\\Component\\HttpFoundation\\": ""
+ "Symfony\\Component\\Process\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -1757,73 +3730,71 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony HttpFoundation Component",
+ "description": "Symfony Process Component",
"homepage": "https://symfony.com",
- "time": "2018-01-29T09:06:29+00:00"
+ "support": {
+ "source": "https://github.com/symfony/process/tree/v5.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-08T17:03:37+00:00"
},
{
- "name": "symfony/http-kernel",
- "version": "v4.0.4",
+ "name": "symfony/routing",
+ "version": "v5.2.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/http-kernel.git",
- "reference": "194bd224ec27952eac6d4fea6264b22990834eca"
+ "url": "https://github.com/symfony/routing.git",
+ "reference": "934ac2720dcc878a47a45c986b483a7ee7193620"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/194bd224ec27952eac6d4fea6264b22990834eca",
- "reference": "194bd224ec27952eac6d4fea6264b22990834eca",
+ "url": "https://api.github.com/repos/symfony/routing/zipball/934ac2720dcc878a47a45c986b483a7ee7193620",
+ "reference": "934ac2720dcc878a47a45c986b483a7ee7193620",
"shasum": ""
},
"require": {
- "php": "^7.1.3",
- "psr/log": "~1.0",
- "symfony/debug": "~3.4|~4.0",
- "symfony/event-dispatcher": "~3.4|~4.0",
- "symfony/http-foundation": "~3.4.4|~4.0.4"
+ "php": ">=7.2.5",
+ "symfony/deprecation-contracts": "^2.1",
+ "symfony/polyfill-php80": "^1.15"
},
"conflict": {
- "symfony/config": "<3.4",
- "symfony/dependency-injection": "<3.4",
- "symfony/var-dumper": "<3.4",
- "twig/twig": "<1.34|<2.4,>=2"
- },
- "provide": {
- "psr/log-implementation": "1.0"
+ "symfony/config": "<5.0",
+ "symfony/dependency-injection": "<4.4",
+ "symfony/yaml": "<4.4"
},
"require-dev": {
- "psr/cache": "~1.0",
- "symfony/browser-kit": "~3.4|~4.0",
- "symfony/config": "~3.4|~4.0",
- "symfony/console": "~3.4|~4.0",
- "symfony/css-selector": "~3.4|~4.0",
- "symfony/dependency-injection": "~3.4|~4.0",
- "symfony/dom-crawler": "~3.4|~4.0",
- "symfony/expression-language": "~3.4|~4.0",
- "symfony/finder": "~3.4|~4.0",
- "symfony/process": "~3.4|~4.0",
- "symfony/routing": "~3.4|~4.0",
- "symfony/stopwatch": "~3.4|~4.0",
- "symfony/templating": "~3.4|~4.0",
- "symfony/translation": "~3.4|~4.0",
- "symfony/var-dumper": "~3.4|~4.0"
+ "doctrine/annotations": "^1.7",
+ "psr/log": "~1.0",
+ "symfony/config": "^5.0",
+ "symfony/dependency-injection": "^4.4|^5.0",
+ "symfony/expression-language": "^4.4|^5.0",
+ "symfony/http-foundation": "^4.4|^5.0",
+ "symfony/yaml": "^4.4|^5.0"
},
"suggest": {
- "symfony/browser-kit": "",
- "symfony/config": "",
- "symfony/console": "",
- "symfony/dependency-injection": "",
- "symfony/var-dumper": ""
+ "doctrine/annotations": "For using the annotation loader",
+ "symfony/config": "For using the all-in-one router or any loader",
+ "symfony/expression-language": "For using expression matching",
+ "symfony/http-foundation": "For using a Symfony Request object",
+ "symfony/yaml": "For using the YAML loader"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
- },
"autoload": {
"psr-4": {
- "Symfony\\Component\\HttpKernel\\": ""
+ "Symfony\\Component\\Routing\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -1843,43 +3814,68 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony HttpKernel Component",
+ "description": "Symfony Routing Component",
"homepage": "https://symfony.com",
- "time": "2018-01-29T13:27:08+00:00"
+ "keywords": [
+ "router",
+ "routing",
+ "uri",
+ "url"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/routing/tree/v5.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-08T17:03:37+00:00"
},
{
- "name": "symfony/polyfill-mbstring",
- "version": "v1.7.0",
+ "name": "symfony/service-contracts",
+ "version": "v2.2.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b"
+ "url": "https://github.com/symfony/service-contracts.git",
+ "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/78be803ce01e55d3491c1397cf1c64beb9c1b63b",
- "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b",
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
+ "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": ">=7.2.5",
+ "psr/container": "^1.0"
},
"suggest": {
- "ext-mbstring": "For best performance"
+ "symfony/service-implementation": ""
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.7-dev"
+ "dev-master": "2.2-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Polyfill\\Mbstring\\": ""
- },
- "files": [
- "bootstrap.php"
- ]
+ "Symfony\\Contracts\\Service\\": ""
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -1895,46 +3891,73 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill for the Mbstring extension",
+ "description": "Generic abstractions related to writing services",
"homepage": "https://symfony.com",
"keywords": [
- "compatibility",
- "mbstring",
- "polyfill",
- "portable",
- "shim"
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/service-contracts/tree/master"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
],
- "time": "2018-01-30T19:27:44+00:00"
+ "time": "2020-09-07T11:33:47+00:00"
},
{
- "name": "symfony/polyfill-php72",
- "version": "v1.7.0",
+ "name": "symfony/string",
+ "version": "v5.2.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-php72.git",
- "reference": "8eca20c8a369e069d4f4c2ac9895144112867422"
+ "url": "https://github.com/symfony/string.git",
+ "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/8eca20c8a369e069d4f4c2ac9895144112867422",
- "reference": "8eca20c8a369e069d4f4c2ac9895144112867422",
+ "url": "https://api.github.com/repos/symfony/string/zipball/5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
+ "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": ">=7.2.5",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-intl-grapheme": "~1.0",
+ "symfony/polyfill-intl-normalizer": "~1.0",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/polyfill-php80": "~1.15"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.7-dev"
- }
+ "require-dev": {
+ "symfony/error-handler": "^4.4|^5.0",
+ "symfony/http-client": "^4.4|^5.0",
+ "symfony/translation-contracts": "^1.1|^2",
+ "symfony/var-exporter": "^4.4|^5.0"
},
+ "type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Polyfill\\Php72\\": ""
+ "Symfony\\Component\\String\\": ""
},
"files": [
- "bootstrap.php"
+ "Resources/functions.php"
+ ],
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -1951,114 +3974,88 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
+ "description": "Symfony String component",
"homepage": "https://symfony.com",
"keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
+ "grapheme",
+ "i18n",
+ "string",
+ "unicode",
+ "utf-8",
+ "utf8"
],
- "time": "2018-01-31T17:43:24+00:00"
- },
- {
- "name": "symfony/process",
- "version": "v4.0.4",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/process.git",
- "reference": "e1712002d81de6f39f854bc5bbd9e9f4bb6345b4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/process/zipball/e1712002d81de6f39f854bc5bbd9e9f4bb6345b4",
- "reference": "e1712002d81de6f39f854bc5bbd9e9f4bb6345b4",
- "shasum": ""
+ "support": {
+ "source": "https://github.com/symfony/string/tree/v5.2.1"
},
- "require": {
- "php": "^7.1.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Process\\": ""
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
},
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "url": "https://github.com/fabpot",
+ "type": "github"
},
{
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
}
],
- "description": "Symfony Process Component",
- "homepage": "https://symfony.com",
- "time": "2018-01-29T09:06:29+00:00"
+ "time": "2020-12-05T07:33:16+00:00"
},
{
- "name": "symfony/routing",
- "version": "v4.0.4",
+ "name": "symfony/translation",
+ "version": "v5.2.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/routing.git",
- "reference": "a69bd948700b672e036147762f46749bcae33796"
+ "url": "https://github.com/symfony/translation.git",
+ "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/routing/zipball/a69bd948700b672e036147762f46749bcae33796",
- "reference": "a69bd948700b672e036147762f46749bcae33796",
+ "url": "https://api.github.com/repos/symfony/translation/zipball/a04209ba0d1391c828e5b2373181dac63c52ee70",
+ "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70",
"shasum": ""
},
"require": {
- "php": "^7.1.3"
+ "php": ">=7.2.5",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/polyfill-php80": "^1.15",
+ "symfony/translation-contracts": "^2.3"
},
"conflict": {
- "symfony/config": "<3.4",
- "symfony/dependency-injection": "<3.4",
- "symfony/yaml": "<3.4"
+ "symfony/config": "<4.4",
+ "symfony/dependency-injection": "<5.0",
+ "symfony/http-kernel": "<5.0",
+ "symfony/twig-bundle": "<5.0",
+ "symfony/yaml": "<4.4"
+ },
+ "provide": {
+ "symfony/translation-implementation": "2.0"
},
"require-dev": {
- "doctrine/annotations": "~1.0",
- "doctrine/common": "~2.2",
"psr/log": "~1.0",
- "symfony/config": "~3.4|~4.0",
- "symfony/dependency-injection": "~3.4|~4.0",
- "symfony/expression-language": "~3.4|~4.0",
- "symfony/http-foundation": "~3.4|~4.0",
- "symfony/yaml": "~3.4|~4.0"
- },
- "suggest": {
- "doctrine/annotations": "For using the annotation loader",
- "symfony/config": "For using the all-in-one router or any loader",
- "symfony/dependency-injection": "For loading routes from a service",
- "symfony/expression-language": "For using expression matching",
- "symfony/http-foundation": "For using a Symfony Request object",
- "symfony/yaml": "For using the YAML loader"
+ "symfony/config": "^4.4|^5.0",
+ "symfony/console": "^4.4|^5.0",
+ "symfony/dependency-injection": "^5.0",
+ "symfony/finder": "^4.4|^5.0",
+ "symfony/http-kernel": "^5.0",
+ "symfony/intl": "^4.4|^5.0",
+ "symfony/service-contracts": "^1.1.2|^2",
+ "symfony/yaml": "^4.4|^5.0"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
+ "suggest": {
+ "psr/log-implementation": "To use logging capability in translator",
+ "symfony/config": "",
+ "symfony/yaml": ""
},
+ "type": "library",
"autoload": {
+ "files": [
+ "Resources/functions.php"
+ ],
"psr-4": {
- "Symfony\\Component\\Routing\\": ""
+ "Symfony\\Component\\Translation\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -2078,65 +4075,61 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Routing Component",
+ "description": "Symfony Translation Component",
"homepage": "https://symfony.com",
- "keywords": [
- "router",
- "routing",
- "uri",
- "url"
+ "support": {
+ "source": "https://github.com/symfony/translation/tree/v5.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
],
- "time": "2018-01-16T18:04:12+00:00"
+ "time": "2020-12-08T17:03:37+00:00"
},
{
- "name": "symfony/translation",
- "version": "v3.4.4",
+ "name": "symfony/translation-contracts",
+ "version": "v2.3.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/translation.git",
- "reference": "10b32cf0eae28b9b39fe26c456c42b19854c4b84"
+ "url": "https://github.com/symfony/translation-contracts.git",
+ "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/10b32cf0eae28b9b39fe26c456c42b19854c4b84",
- "reference": "10b32cf0eae28b9b39fe26c456c42b19854c4b84",
+ "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
+ "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
"shasum": ""
},
"require": {
- "php": "^5.5.9|>=7.0.8",
- "symfony/polyfill-mbstring": "~1.0"
- },
- "conflict": {
- "symfony/config": "<2.8",
- "symfony/dependency-injection": "<3.4",
- "symfony/yaml": "<3.4"
- },
- "require-dev": {
- "psr/log": "~1.0",
- "symfony/config": "~2.8|~3.0|~4.0",
- "symfony/dependency-injection": "~3.4|~4.0",
- "symfony/finder": "~2.8|~3.0|~4.0",
- "symfony/intl": "^2.8.18|^3.2.5|~4.0",
- "symfony/yaml": "~3.4|~4.0"
+ "php": ">=7.2.5"
},
"suggest": {
- "psr/log": "To use logging capability in translator",
- "symfony/config": "",
- "symfony/yaml": ""
+ "symfony/translation-implementation": ""
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.4-dev"
+ "dev-master": "2.3-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\Translation\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Symfony\\Contracts\\Translation\\": ""
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -2144,54 +4137,81 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Translation Component",
+ "description": "Generic abstractions related to translation",
"homepage": "https://symfony.com",
- "time": "2018-01-18T22:16:57+00:00"
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-09-28T13:05:58+00:00"
},
{
"name": "symfony/var-dumper",
- "version": "v4.0.4",
+ "version": "v5.2.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
- "reference": "6d63cc74f3e2d4961411ccb77389a00332653104"
+ "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6d63cc74f3e2d4961411ccb77389a00332653104",
- "reference": "6d63cc74f3e2d4961411ccb77389a00332653104",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/13e7e882eaa55863faa7c4ad7c60f12f1a8b5089",
+ "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089",
"shasum": ""
},
"require": {
- "php": "^7.1.3",
+ "php": ">=7.2.5",
"symfony/polyfill-mbstring": "~1.0",
- "symfony/polyfill-php72": "~1.5"
+ "symfony/polyfill-php80": "^1.15"
},
"conflict": {
- "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
+ "phpunit/phpunit": "<5.4.3",
+ "symfony/console": "<4.4"
},
"require-dev": {
"ext-iconv": "*",
- "twig/twig": "~1.34|~2.4"
+ "symfony/console": "^4.4|^5.0",
+ "symfony/process": "^4.4|^5.0",
+ "twig/twig": "^2.4|^3.0"
},
"suggest": {
"ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
- "ext-intl": "To show region name in time zone dump"
+ "ext-intl": "To show region name in time zone dump",
+ "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
},
+ "bin": [
+ "Resources/bin/var-dump-server"
+ ],
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
- },
"autoload": {
"files": [
"Resources/functions/dump.php"
@@ -2223,28 +4243,47 @@
"debug",
"dump"
],
- "time": "2018-01-29T09:06:29+00:00"
+ "support": {
+ "source": "https://github.com/symfony/var-dumper/tree/v5.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-16T17:02:19+00:00"
},
{
"name": "tijsverkoyen/css-to-inline-styles",
- "version": "2.2.1",
+ "version": "2.2.3",
"source": {
"type": "git",
"url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
- "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757"
+ "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
- "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
+ "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
+ "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
"shasum": ""
},
"require": {
- "php": "^5.5 || ^7.0",
- "symfony/css-selector": "^2.7 || ^3.0 || ^4.0"
+ "ext-dom": "*",
+ "ext-libxml": "*",
+ "php": "^5.5 || ^7.0 || ^8.0",
+ "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
},
"require-dev": {
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
},
"type": "library",
"extra": {
@@ -2270,32 +4309,47 @@
],
"description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
"homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
- "time": "2017-11-27T11:13:29+00:00"
+ "support": {
+ "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
+ "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
+ },
+ "time": "2020-07-13T06:12:54+00:00"
},
{
"name": "vlucas/phpdotenv",
- "version": "v2.4.0",
+ "version": "v5.2.0",
"source": {
"type": "git",
"url": "https://github.com/vlucas/phpdotenv.git",
- "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c"
+ "reference": "fba64139db67123c7a57072e5f8d3db10d160b66"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c",
- "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c",
+ "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/fba64139db67123c7a57072e5f8d3db10d160b66",
+ "reference": "fba64139db67123c7a57072e5f8d3db10d160b66",
"shasum": ""
},
"require": {
- "php": ">=5.3.9"
+ "ext-pcre": "*",
+ "graham-campbell/result-type": "^1.0.1",
+ "php": "^7.1.3 || ^8.0",
+ "phpoption/phpoption": "^1.7.4",
+ "symfony/polyfill-ctype": "^1.17",
+ "symfony/polyfill-mbstring": "^1.17",
+ "symfony/polyfill-php80": "^1.17"
},
"require-dev": {
- "phpunit/phpunit": "^4.8 || ^5.0"
+ "bamarni/composer-bin-plugin": "^1.4.1",
+ "ext-filter": "*",
+ "phpunit/phpunit": "^7.5.20 || ^8.5.2 || ^9.0"
+ },
+ "suggest": {
+ "ext-filter": "Required to use the boolean validator."
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.4-dev"
+ "dev-master": "5.2-dev"
}
},
"autoload": {
@@ -2305,13 +4359,18 @@
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause-Attribution"
+ "BSD-3-Clause"
],
"authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "graham@alt-three.com",
+ "homepage": "https://gjcampbell.co.uk/"
+ },
{
"name": "Vance Lucas",
"email": "vance@vancelucas.com",
- "homepage": "http://www.vancelucas.com"
+ "homepage": "https://vancelucas.com/"
}
],
"description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
@@ -2320,20 +4379,161 @@
"env",
"environment"
],
- "time": "2016-09-01T10:05:43+00:00"
+ "support": {
+ "issues": "https://github.com/vlucas/phpdotenv/issues",
+ "source": "https://github.com/vlucas/phpdotenv/tree/v5.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-09-14T15:57:31+00:00"
+ },
+ {
+ "name": "voku/portable-ascii",
+ "version": "1.5.6",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/voku/portable-ascii.git",
+ "reference": "80953678b19901e5165c56752d087fc11526017c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
+ "reference": "80953678b19901e5165c56752d087fc11526017c",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.0.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
+ },
+ "suggest": {
+ "ext-intl": "Use Intl for transliterator_transliterate() support"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "voku\\": "src/voku/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Lars Moelleken",
+ "homepage": "http://www.moelleken.org/"
+ }
+ ],
+ "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
+ "homepage": "https://github.com/voku/portable-ascii",
+ "keywords": [
+ "ascii",
+ "clean",
+ "php"
+ ],
+ "support": {
+ "issues": "https://github.com/voku/portable-ascii/issues",
+ "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
+ },
+ "funding": [
+ {
+ "url": "https://www.paypal.me/moelleken",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/voku",
+ "type": "github"
+ },
+ {
+ "url": "https://opencollective.com/portable-ascii",
+ "type": "open_collective"
+ },
+ {
+ "url": "https://www.patreon.com/voku",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-11-12T00:07:28+00:00"
+ },
+ {
+ "name": "webmozart/assert",
+ "version": "1.9.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/webmozart/assert.git",
+ "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
+ "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.3.3 || ^7.0 || ^8.0",
+ "symfony/polyfill-ctype": "^1.8"
+ },
+ "conflict": {
+ "phpstan/phpstan": "<0.12.20",
+ "vimeo/psalm": "<3.9.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8.36 || ^7.5.13"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Webmozart\\Assert\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
+ }
+ ],
+ "description": "Assertions to validate method input/output with nice error messages.",
+ "keywords": [
+ "assert",
+ "check",
+ "validate"
+ ],
+ "support": {
+ "issues": "https://github.com/webmozart/assert/issues",
+ "source": "https://github.com/webmozart/assert/tree/master"
+ },
+ "time": "2020-07-08T17:02:28+00:00"
},
{
"name": "willwashburn/phpamo",
- "version": "1.0.1",
+ "version": "1.0.4",
"source": {
"type": "git",
"url": "https://github.com/willwashburn/phpamo.git",
- "reference": "4c8e579bc9be5d8eabc06ed4de22235386b2dbf1"
+ "reference": "026e44648c7e4154ef50763a3f0feed81b259054"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/willwashburn/phpamo/zipball/4c8e579bc9be5d8eabc06ed4de22235386b2dbf1",
- "reference": "4c8e579bc9be5d8eabc06ed4de22235386b2dbf1",
+ "url": "https://api.github.com/repos/willwashburn/phpamo/zipball/026e44648c7e4154ef50763a3f0feed81b259054",
+ "reference": "026e44648c7e4154ef50763a3f0feed81b259054",
"shasum": ""
},
"require": {
@@ -2369,40 +4569,41 @@
"tls",
"tls proxy"
],
- "time": "2017-01-30T13:21:01+00:00"
+ "support": {
+ "issues": "https://github.com/willwashburn/phpamo/issues",
+ "source": "https://github.com/willwashburn/phpamo/tree/v1.0.4"
+ },
+ "time": "2020-04-21T12:28:46+00:00"
}
],
"packages-dev": [
{
"name": "doctrine/instantiator",
- "version": "1.1.0",
+ "version": "1.4.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/instantiator.git",
- "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
+ "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
- "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
+ "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
+ "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
"shasum": ""
},
"require": {
- "php": "^7.1"
+ "php": "^7.1 || ^8.0"
},
"require-dev": {
- "athletic/athletic": "~0.1.8",
+ "doctrine/coding-standard": "^8.0",
"ext-pdo": "*",
"ext-phar": "*",
- "phpunit/phpunit": "^6.2.3",
- "squizlabs/php_codesniffer": "^3.0.2"
+ "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
+ "phpstan/phpstan": "^0.12",
+ "phpstan/phpstan-phpunit": "^0.12",
+ "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.2.x-dev"
- }
- },
"autoload": {
"psr-4": {
"Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
@@ -2416,39 +4617,110 @@
{
"name": "Marco Pivetta",
"email": "ocramius@gmail.com",
- "homepage": "http://ocramius.github.com/"
+ "homepage": "https://ocramius.github.io/"
}
],
"description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
- "homepage": "https://github.com/doctrine/instantiator",
+ "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
"keywords": [
"constructor",
"instantiate"
],
- "time": "2017-07-22T11:58:36+00:00"
+ "support": {
+ "issues": "https://github.com/doctrine/instantiator/issues",
+ "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
+ },
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-11-10T18:47:58+00:00"
+ },
+ {
+ "name": "facade/ignition-contracts",
+ "version": "1.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/facade/ignition-contracts.git",
+ "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
+ "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.3|^8.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^v2.15.8",
+ "phpunit/phpunit": "^9.3.11",
+ "vimeo/psalm": "^3.17.1"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Facade\\IgnitionContracts\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Freek Van der Herten",
+ "email": "freek@spatie.be",
+ "homepage": "https://flareapp.io",
+ "role": "Developer"
+ }
+ ],
+ "description": "Solution contracts for Ignition",
+ "homepage": "https://github.com/facade/ignition-contracts",
+ "keywords": [
+ "contracts",
+ "flare",
+ "ignition"
+ ],
+ "support": {
+ "issues": "https://github.com/facade/ignition-contracts/issues",
+ "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
+ },
+ "time": "2020-10-16T08:27:54+00:00"
},
{
"name": "filp/whoops",
- "version": "2.1.14",
+ "version": "2.9.1",
"source": {
"type": "git",
"url": "https://github.com/filp/whoops.git",
- "reference": "c6081b8838686aa04f1e83ba7e91f78b7b2a23e6"
+ "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/filp/whoops/zipball/c6081b8838686aa04f1e83ba7e91f78b7b2a23e6",
- "reference": "c6081b8838686aa04f1e83ba7e91f78b7b2a23e6",
+ "url": "https://api.github.com/repos/filp/whoops/zipball/307fb34a5ab697461ec4c9db865b20ff2fd40771",
+ "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771",
"shasum": ""
},
"require": {
- "php": "^5.5.9 || ^7.0",
+ "php": "^5.5.9 || ^7.0 || ^8.0",
"psr/log": "^1.0.1"
},
"require-dev": {
- "mockery/mockery": "0.9.*",
- "phpunit/phpunit": "^4.8.35 || ^5.7",
- "symfony/var-dumper": "^2.6 || ^3.0"
+ "mockery/mockery": "^0.9 || ^1.0",
+ "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
+ "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
},
"suggest": {
"symfony/var-dumper": "Pretty print complex values better with var-dumper available",
@@ -2457,7 +4729,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.0-dev"
+ "dev-master": "2.7-dev"
}
},
"autoload": {
@@ -2486,20 +4758,24 @@
"throwable",
"whoops"
],
- "time": "2017-11-23T18:22:44+00:00"
+ "support": {
+ "issues": "https://github.com/filp/whoops/issues",
+ "source": "https://github.com/filp/whoops/tree/2.9.1"
+ },
+ "time": "2020-11-01T12:00:00+00:00"
},
{
"name": "fzaninotto/faker",
- "version": "v1.7.1",
+ "version": "v1.9.2",
"source": {
"type": "git",
"url": "https://github.com/fzaninotto/Faker.git",
- "reference": "d3ed4cc37051c1ca52d22d76b437d14809fc7e0d"
+ "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/d3ed4cc37051c1ca52d22d76b437d14809fc7e0d",
- "reference": "d3ed4cc37051c1ca52d22d76b437d14809fc7e0d",
+ "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
+ "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
"shasum": ""
},
"require": {
@@ -2507,13 +4783,13 @@
},
"require-dev": {
"ext-intl": "*",
- "phpunit/phpunit": "^4.0 || ^5.0",
- "squizlabs/php_codesniffer": "^1.5"
+ "phpunit/phpunit": "^4.8.35 || ^5.7",
+ "squizlabs/php_codesniffer": "^2.9.2"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.8-dev"
+ "dev-master": "1.9-dev"
}
},
"autoload": {
@@ -2536,24 +4812,29 @@
"faker",
"fixtures"
],
- "time": "2017-08-15T16:48:10+00:00"
+ "support": {
+ "issues": "https://github.com/fzaninotto/Faker/issues",
+ "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
+ },
+ "abandoned": true,
+ "time": "2020-12-11T09:56:16+00:00"
},
{
"name": "hamcrest/hamcrest-php",
- "version": "v2.0.0",
+ "version": "v2.0.1",
"source": {
"type": "git",
"url": "https://github.com/hamcrest/hamcrest-php.git",
- "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
+ "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
- "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
+ "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
+ "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
"shasum": ""
},
"require": {
- "php": "^5.3|^7.0"
+ "php": "^5.3|^7.0|^8.0"
},
"replace": {
"cordoval/hamcrest-php": "*",
@@ -2561,14 +4842,13 @@
"kodova/hamcrest-php": "*"
},
"require-dev": {
- "phpunit/php-file-iterator": "1.3.3",
- "phpunit/phpunit": "~4.0",
- "satooshi/php-coveralls": "^1.0"
+ "phpunit/php-file-iterator": "^1.4 || ^2.0",
+ "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.0-dev"
+ "dev-master": "2.1-dev"
}
},
"autoload": {
@@ -2578,40 +4858,44 @@
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD"
+ "BSD-3-Clause"
],
"description": "This is the PHP port of Hamcrest Matchers",
"keywords": [
"test"
],
- "time": "2016-01-20T08:20:44+00:00"
+ "support": {
+ "issues": "https://github.com/hamcrest/hamcrest-php/issues",
+ "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
+ },
+ "time": "2020-07-09T08:09:16+00:00"
},
{
"name": "mockery/mockery",
- "version": "1.0",
+ "version": "1.3.3",
"source": {
"type": "git",
"url": "https://github.com/mockery/mockery.git",
- "reference": "1bac8c362b12f522fdd1f1fa3556284c91affa38"
+ "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/mockery/mockery/zipball/1bac8c362b12f522fdd1f1fa3556284c91affa38",
- "reference": "1bac8c362b12f522fdd1f1fa3556284c91affa38",
+ "url": "https://api.github.com/repos/mockery/mockery/zipball/60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
+ "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
"shasum": ""
},
"require": {
- "hamcrest/hamcrest-php": "~2.0",
+ "hamcrest/hamcrest-php": "^2.0.1",
"lib-pcre": ">=7.0",
"php": ">=5.6.0"
},
"require-dev": {
- "phpunit/phpunit": "~5.7|~6.1"
+ "phpunit/phpunit": "^5.7.10|^6.5|^7.5|^8.5|^9.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-master": "1.3.x-dev"
}
},
"autoload": {
@@ -2635,8 +4919,8 @@
"homepage": "http://davedevelopment.co.uk"
}
],
- "description": "Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL). Designed as a drop in alternative to PHPUnit's phpunit-mock-objects library, Mockery is easy to integrate with PHPUnit and can operate alongside phpunit-mock-objects without the World ending.",
- "homepage": "http://github.com/mockery/mockery",
+ "description": "Mockery is a simple yet flexible PHP mock object framework",
+ "homepage": "https://github.com/mockery/mockery",
"keywords": [
"BDD",
"TDD",
@@ -2649,29 +4933,36 @@
"test double",
"testing"
],
- "time": "2017-10-06T16:20:43+00:00"
+ "support": {
+ "issues": "https://github.com/mockery/mockery/issues",
+ "source": "https://github.com/mockery/mockery/tree/1.3.3"
+ },
+ "time": "2020-08-11T18:10:21+00:00"
},
{
"name": "myclabs/deep-copy",
- "version": "1.7.0",
+ "version": "1.10.2",
"source": {
"type": "git",
"url": "https://github.com/myclabs/DeepCopy.git",
- "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
+ "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
- "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
+ "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
"shasum": ""
},
"require": {
- "php": "^5.6 || ^7.0"
+ "php": "^7.1 || ^8.0"
+ },
+ "replace": {
+ "myclabs/deep-copy": "self.version"
},
"require-dev": {
"doctrine/collections": "^1.0",
"doctrine/common": "^2.6",
- "phpunit/phpunit": "^4.1"
+ "phpunit/phpunit": "^7.1"
},
"type": "library",
"autoload": {
@@ -2694,30 +4985,49 @@
"object",
"object graph"
],
- "time": "2017-10-19T19:58:43+00:00"
+ "support": {
+ "issues": "https://github.com/myclabs/DeepCopy/issues",
+ "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
+ },
+ "funding": [
+ {
+ "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-11-13T09:40:50+00:00"
},
{
"name": "nunomaduro/collision",
- "version": "v1.1.22",
+ "version": "v5.1.0",
"source": {
"type": "git",
"url": "https://github.com/nunomaduro/collision.git",
- "reference": "236609bd5a067587f600bc55c5d683b840798b22"
+ "reference": "7c2b95589bf81e274e61e47f7672a1b2c3e06eaa"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nunomaduro/collision/zipball/236609bd5a067587f600bc55c5d683b840798b22",
- "reference": "236609bd5a067587f600bc55c5d683b840798b22",
+ "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c2b95589bf81e274e61e47f7672a1b2c3e06eaa",
+ "reference": "7c2b95589bf81e274e61e47f7672a1b2c3e06eaa",
"shasum": ""
},
"require": {
- "filp/whoops": "^2.1.4",
- "php": "^7.1",
- "symfony/console": "~2.8|~3.3|~4.0"
+ "facade/ignition-contracts": "^1.0",
+ "filp/whoops": "^2.7.2",
+ "php": "^7.3 || ^8.0",
+ "symfony/console": "^5.0"
},
"require-dev": {
- "laravel/framework": "5.5.*",
- "phpunit/phpunit": "~6.5"
+ "fideloper/proxy": "^4.4.0",
+ "friendsofphp/php-cs-fixer": "^2.16.4",
+ "fruitcake/laravel-cors": "^2.0.1",
+ "laravel/framework": "^8.0",
+ "laravel/tinker": "^2.4.1",
+ "nunomaduro/larastan": "^0.6.2",
+ "nunomaduro/mock-final-classes": "^1.0",
+ "orchestra/testbench": "^6.0",
+ "phpstan/phpstan": "^0.12.36",
+ "phpunit/phpunit": "^9.3.3"
},
"type": "library",
"extra": {
@@ -2755,26 +5065,44 @@
"php",
"symfony"
],
- "time": "2018-02-07T10:42:20+00:00"
+ "support": {
+ "issues": "https://github.com/nunomaduro/collision/issues",
+ "source": "https://github.com/nunomaduro/collision"
+ },
+ "funding": [
+ {
+ "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/nunomaduro",
+ "type": "github"
+ },
+ {
+ "url": "https://www.patreon.com/nunomaduro",
+ "type": "patreon"
+ }
+ ],
+ "time": "2020-10-29T14:50:40+00:00"
},
{
"name": "phar-io/manifest",
- "version": "1.0.1",
+ "version": "1.0.3",
"source": {
"type": "git",
"url": "https://github.com/phar-io/manifest.git",
- "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
+ "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
- "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
+ "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
+ "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
"shasum": ""
},
"require": {
"ext-dom": "*",
"ext-phar": "*",
- "phar-io/version": "^1.0.1",
+ "phar-io/version": "^2.0",
"php": "^5.6 || ^7.0"
},
"type": "library",
@@ -2810,20 +5138,24 @@
}
],
"description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
- "time": "2017-03-05T18:14:27+00:00"
+ "support": {
+ "issues": "https://github.com/phar-io/manifest/issues",
+ "source": "https://github.com/phar-io/manifest/tree/master"
+ },
+ "time": "2018-07-08T19:23:20+00:00"
},
{
"name": "phar-io/version",
- "version": "1.0.1",
+ "version": "2.0.1",
"source": {
"type": "git",
"url": "https://github.com/phar-io/version.git",
- "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
+ "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
- "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
+ "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
+ "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
"shasum": ""
},
"require": {
@@ -2857,39 +5189,38 @@
}
],
"description": "Library for handling version information and constraints",
- "time": "2017-03-05T17:38:23+00:00"
+ "support": {
+ "issues": "https://github.com/phar-io/version/issues",
+ "source": "https://github.com/phar-io/version/tree/master"
+ },
+ "time": "2018-07-08T19:19:57+00:00"
},
{
"name": "phpdocumentor/reflection-common",
- "version": "1.0.1",
+ "version": "2.2.0",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionCommon.git",
- "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
+ "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
- "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
+ "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
"shasum": ""
},
"require": {
- "php": ">=5.5"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.6"
+ "php": "^7.2 || ^8.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-2.x": "2.x-dev"
}
},
"autoload": {
"psr-4": {
- "phpDocumentor\\Reflection\\": [
- "src"
- ]
+ "phpDocumentor\\Reflection\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2911,44 +5242,45 @@
"reflection",
"static analysis"
],
- "time": "2017-09-11T18:02:19+00:00"
+ "support": {
+ "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
+ "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
+ },
+ "time": "2020-06-27T09:03:43+00:00"
},
{
"name": "phpdocumentor/reflection-docblock",
- "version": "4.3.0",
+ "version": "5.2.2",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
- "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
+ "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
- "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
+ "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
"shasum": ""
},
"require": {
- "php": "^7.0",
- "phpdocumentor/reflection-common": "^1.0.0",
- "phpdocumentor/type-resolver": "^0.4.0",
- "webmozart/assert": "^1.0"
+ "ext-filter": "*",
+ "php": "^7.2 || ^8.0",
+ "phpdocumentor/reflection-common": "^2.2",
+ "phpdocumentor/type-resolver": "^1.3",
+ "webmozart/assert": "^1.9.1"
},
"require-dev": {
- "doctrine/instantiator": "~1.0.5",
- "mockery/mockery": "^1.0",
- "phpunit/phpunit": "^6.4"
+ "mockery/mockery": "~1.3.2"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.x-dev"
+ "dev-master": "5.x-dev"
}
},
"autoload": {
"psr-4": {
- "phpDocumentor\\Reflection\\": [
- "src/"
- ]
+ "phpDocumentor\\Reflection\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2959,44 +5291,49 @@
{
"name": "Mike van Riel",
"email": "me@mikevanriel.com"
+ },
+ {
+ "name": "Jaap van Otterdijk",
+ "email": "account@ijaap.nl"
}
],
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
- "time": "2017-11-30T07:14:17+00:00"
+ "support": {
+ "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
+ "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
+ },
+ "time": "2020-09-03T19:13:55+00:00"
},
{
"name": "phpdocumentor/type-resolver",
- "version": "0.4.0",
+ "version": "1.4.0",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/TypeResolver.git",
- "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
+ "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
- "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
+ "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
+ "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
"shasum": ""
},
"require": {
- "php": "^5.5 || ^7.0",
- "phpdocumentor/reflection-common": "^1.0"
+ "php": "^7.2 || ^8.0",
+ "phpdocumentor/reflection-common": "^2.0"
},
"require-dev": {
- "mockery/mockery": "^0.9.4",
- "phpunit/phpunit": "^5.2||^4.8.24"
+ "ext-tokenizer": "*"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-1.x": "1.x-dev"
}
},
"autoload": {
"psr-4": {
- "phpDocumentor\\Reflection\\": [
- "src/"
- ]
+ "phpDocumentor\\Reflection\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -3009,42 +5346,47 @@
"email": "me@mikevanriel.com"
}
],
- "time": "2017-07-14T14:27:02+00:00"
+ "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
+ "support": {
+ "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
+ "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
+ },
+ "time": "2020-09-17T18:55:26+00:00"
},
{
"name": "phpspec/prophecy",
- "version": "1.7.3",
+ "version": "1.12.2",
"source": {
"type": "git",
"url": "https://github.com/phpspec/prophecy.git",
- "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf"
+ "reference": "245710e971a030f42e08f4912863805570f23d39"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpspec/prophecy/zipball/e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf",
- "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf",
+ "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
+ "reference": "245710e971a030f42e08f4912863805570f23d39",
"shasum": ""
},
"require": {
- "doctrine/instantiator": "^1.0.2",
- "php": "^5.3|^7.0",
- "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
- "sebastian/comparator": "^1.1|^2.0",
- "sebastian/recursion-context": "^1.0|^2.0|^3.0"
+ "doctrine/instantiator": "^1.2",
+ "php": "^7.2 || ~8.0, <8.1",
+ "phpdocumentor/reflection-docblock": "^5.2",
+ "sebastian/comparator": "^3.0 || ^4.0",
+ "sebastian/recursion-context": "^3.0 || ^4.0"
},
"require-dev": {
- "phpspec/phpspec": "^2.5|^3.2",
- "phpunit/phpunit": "^4.8.35 || ^5.7"
+ "phpspec/phpspec": "^6.0",
+ "phpunit/phpunit": "^8.0 || ^9.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.7.x-dev"
+ "dev-master": "1.11.x-dev"
}
},
"autoload": {
- "psr-0": {
- "Prophecy\\": "src/"
+ "psr-4": {
+ "Prophecy\\": "src/Prophecy"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -3072,31 +5414,35 @@
"spy",
"stub"
],
- "time": "2017-11-24T13:59:53+00:00"
+ "support": {
+ "issues": "https://github.com/phpspec/prophecy/issues",
+ "source": "https://github.com/phpspec/prophecy/tree/1.12.2"
+ },
+ "time": "2020-12-19T10:15:11+00:00"
},
{
"name": "phpunit/php-code-coverage",
- "version": "6.0.1",
+ "version": "6.1.4",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
- "reference": "f8ca4b604baf23dab89d87773c28cc07405189ba"
+ "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f8ca4b604baf23dab89d87773c28cc07405189ba",
- "reference": "f8ca4b604baf23dab89d87773c28cc07405189ba",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
+ "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
"shasum": ""
},
"require": {
"ext-dom": "*",
"ext-xmlwriter": "*",
"php": "^7.1",
- "phpunit/php-file-iterator": "^1.4.2",
+ "phpunit/php-file-iterator": "^2.0",
"phpunit/php-text-template": "^1.2.1",
"phpunit/php-token-stream": "^3.0",
"sebastian/code-unit-reverse-lookup": "^1.0.1",
- "sebastian/environment": "^3.0",
+ "sebastian/environment": "^3.1 || ^4.0",
"sebastian/version": "^2.0.1",
"theseer/tokenizer": "^1.1"
},
@@ -3109,7 +5455,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "6.0-dev"
+ "dev-master": "6.1-dev"
}
},
"autoload": {
@@ -3135,29 +5481,36 @@
"testing",
"xunit"
],
- "time": "2018-02-02T07:01:41+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
+ "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/master"
+ },
+ "time": "2018-10-31T16:06:48+00:00"
},
{
"name": "phpunit/php-file-iterator",
- "version": "1.4.5",
+ "version": "2.0.3",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-file-iterator.git",
- "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
+ "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
- "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
+ "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.4.x-dev"
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
@@ -3172,7 +5525,7 @@
"authors": [
{
"name": "Sebastian Bergmann",
- "email": "sb@sebastian-bergmann.de",
+ "email": "sebastian@phpunit.de",
"role": "lead"
}
],
@@ -3182,7 +5535,17 @@
"filesystem",
"iterator"
],
- "time": "2017-11-27T13:52:08+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
+ "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T08:25:21+00:00"
},
{
"name": "phpunit/php-text-template",
@@ -3223,32 +5586,36 @@
"keywords": [
"template"
],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
+ "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
+ },
"time": "2015-06-21T13:50:34+00:00"
},
{
"name": "phpunit/php-timer",
- "version": "2.0.0",
+ "version": "2.1.3",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-timer.git",
- "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f"
+ "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b8454ea6958c3dee38453d3bd571e023108c91f",
- "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
+ "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
"shasum": ""
},
"require": {
- "php": "^7.1"
+ "php": ">=7.1"
},
"require-dev": {
- "phpunit/phpunit": "^7.0"
+ "phpunit/phpunit": "^8.5"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.0-dev"
+ "dev-master": "2.1-dev"
}
},
"autoload": {
@@ -3272,25 +5639,35 @@
"keywords": [
"timer"
],
- "time": "2018-02-01T13:07:23+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-timer/issues",
+ "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T08:20:02+00:00"
},
{
"name": "phpunit/php-token-stream",
- "version": "3.0.0",
+ "version": "3.1.2",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-token-stream.git",
- "reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace"
+ "reference": "472b687829041c24b25f475e14c2f38a09edf1c2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/21ad88bbba7c3d93530d93994e0a33cd45f02ace",
- "reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/472b687829041c24b25f475e14c2f38a09edf1c2",
+ "reference": "472b687829041c24b25f475e14c2f38a09edf1c2",
"shasum": ""
},
"require": {
"ext-tokenizer": "*",
- "php": "^7.1"
+ "php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "^7.0"
@@ -3298,7 +5675,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "3.1-dev"
}
},
"autoload": {
@@ -3321,51 +5698,66 @@
"keywords": [
"tokenizer"
],
- "time": "2018-02-01T13:16:43+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
+ "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "abandoned": true,
+ "time": "2020-11-30T08:38:46+00:00"
},
{
"name": "phpunit/phpunit",
- "version": "7.0.0",
+ "version": "7.5.20",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "9b3373439fdf2f3e9d1578f5e408a3a0d161c3bc"
+ "reference": "9467db479d1b0487c99733bb1e7944d32deded2c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9b3373439fdf2f3e9d1578f5e408a3a0d161c3bc",
- "reference": "9b3373439fdf2f3e9d1578f5e408a3a0d161c3bc",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c",
+ "reference": "9467db479d1b0487c99733bb1e7944d32deded2c",
"shasum": ""
},
"require": {
+ "doctrine/instantiator": "^1.1",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-xml": "*",
- "myclabs/deep-copy": "^1.6.1",
- "phar-io/manifest": "^1.0.1",
- "phar-io/version": "^1.0",
+ "myclabs/deep-copy": "^1.7",
+ "phar-io/manifest": "^1.0.2",
+ "phar-io/version": "^2.0",
"php": "^7.1",
"phpspec/prophecy": "^1.7",
- "phpunit/php-code-coverage": "^6.0",
- "phpunit/php-file-iterator": "^1.4.3",
+ "phpunit/php-code-coverage": "^6.0.7",
+ "phpunit/php-file-iterator": "^2.0.1",
"phpunit/php-text-template": "^1.2.1",
- "phpunit/php-timer": "^2.0",
- "phpunit/phpunit-mock-objects": "^6.0",
- "sebastian/comparator": "^2.1",
+ "phpunit/php-timer": "^2.1",
+ "sebastian/comparator": "^3.0",
"sebastian/diff": "^3.0",
- "sebastian/environment": "^3.1",
+ "sebastian/environment": "^4.0",
"sebastian/exporter": "^3.1",
"sebastian/global-state": "^2.0",
"sebastian/object-enumerator": "^3.0.3",
- "sebastian/resource-operations": "^1.0",
+ "sebastian/resource-operations": "^2.0",
"sebastian/version": "^2.0.1"
},
+ "conflict": {
+ "phpunit/phpunit-mock-objects": "*"
+ },
"require-dev": {
"ext-pdo": "*"
},
"suggest": {
+ "ext-soap": "*",
"ext-xdebug": "*",
"phpunit/php-invoker": "^2.0"
},
@@ -3375,7 +5767,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "7.0-dev"
+ "dev-master": "7.5-dev"
}
},
"autoload": {
@@ -3401,84 +5793,31 @@
"testing",
"xunit"
],
- "time": "2018-02-02T05:04:08+00:00"
- },
- {
- "name": "phpunit/phpunit-mock-objects",
- "version": "6.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
- "reference": "e495e5d3660321b62c294d8c0e954d02d6ce2573"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/e495e5d3660321b62c294d8c0e954d02d6ce2573",
- "reference": "e495e5d3660321b62c294d8c0e954d02d6ce2573",
- "shasum": ""
- },
- "require": {
- "doctrine/instantiator": "^1.0.5",
- "php": "^7.1",
- "phpunit/php-text-template": "^1.2.1",
- "sebastian/exporter": "^3.1"
- },
- "require-dev": {
- "phpunit/phpunit": "^7.0"
- },
- "suggest": {
- "ext-soap": "*"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "6.0.x-dev"
- }
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/phpunit/issues",
+ "source": "https://github.com/sebastianbergmann/phpunit/tree/7.5.20"
},
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Mock Object library for PHPUnit",
- "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
- "keywords": [
- "mock",
- "xunit"
- ],
- "abandoned": true,
- "time": "2018-02-01T13:11:13+00:00"
+ "time": "2020-01-08T08:45:45+00:00"
},
{
"name": "sebastian/code-unit-reverse-lookup",
- "version": "1.0.1",
+ "version": "1.0.2",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
- "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
+ "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
- "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
+ "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
+ "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
"shasum": ""
},
"require": {
- "php": "^5.6 || ^7.0"
+ "php": ">=5.6"
},
"require-dev": {
- "phpunit/phpunit": "^5.7 || ^6.0"
+ "phpunit/phpunit": "^8.5"
},
"type": "library",
"extra": {
@@ -3503,34 +5842,44 @@
],
"description": "Looks up which function or method a line of code belongs to",
"homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
- "time": "2017-03-04T06:30:41+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
+ "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T08:15:22+00:00"
},
{
"name": "sebastian/comparator",
- "version": "2.1.3",
+ "version": "3.0.3",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/comparator.git",
- "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
+ "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
- "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
+ "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
"shasum": ""
},
"require": {
- "php": "^7.0",
- "sebastian/diff": "^2.0 || ^3.0",
+ "php": ">=7.1",
+ "sebastian/diff": "^3.0",
"sebastian/exporter": "^3.1"
},
"require-dev": {
- "phpunit/phpunit": "^6.4"
+ "phpunit/phpunit": "^8.5"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.1.x-dev"
+ "dev-master": "3.0-dev"
}
},
"autoload": {
@@ -3543,6 +5892,10 @@
"BSD-3-Clause"
],
"authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
{
"name": "Jeff Welch",
"email": "whatthejeff@gmail.com"
@@ -3554,10 +5907,6 @@
{
"name": "Bernhard Schussek",
"email": "bschussek@2bepublished.at"
- },
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
}
],
"description": "Provides the functionality to compare PHP values for equality",
@@ -3567,27 +5916,37 @@
"compare",
"equality"
],
- "time": "2018-02-01T13:46:46+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/comparator/issues",
+ "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T08:04:30+00:00"
},
{
"name": "sebastian/diff",
- "version": "3.0.0",
+ "version": "3.0.3",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/diff.git",
- "reference": "e09160918c66281713f1c324c1f4c4c3037ba1e8"
+ "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/e09160918c66281713f1c324c1f4c4c3037ba1e8",
- "reference": "e09160918c66281713f1c324c1f4c4c3037ba1e8",
+ "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
+ "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
"shasum": ""
},
"require": {
- "php": "^7.1"
+ "php": ">=7.1"
},
"require-dev": {
- "phpunit/phpunit": "^7.0",
+ "phpunit/phpunit": "^7.5 || ^8.0",
"symfony/process": "^2 || ^3.3 || ^4"
},
"type": "library",
@@ -3606,13 +5965,13 @@
"BSD-3-Clause"
],
"authors": [
- {
- "name": "Kore Nordmann",
- "email": "mail@kore-nordmann.de"
- },
{
"name": "Sebastian Bergmann",
"email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Kore Nordmann",
+ "email": "mail@kore-nordmann.de"
}
],
"description": "Diff implementation",
@@ -3623,32 +5982,45 @@
"unidiff",
"unified diff"
],
- "time": "2018-02-01T13:45:15+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/diff/issues",
+ "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:59:04+00:00"
},
{
"name": "sebastian/environment",
- "version": "3.1.0",
+ "version": "4.2.4",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/environment.git",
- "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
+ "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
- "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
+ "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
+ "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
"shasum": ""
},
"require": {
- "php": "^7.0"
+ "php": ">=7.1"
},
"require-dev": {
- "phpunit/phpunit": "^6.1"
+ "phpunit/phpunit": "^7.5"
+ },
+ "suggest": {
+ "ext-posix": "*"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1.x-dev"
+ "dev-master": "4.2-dev"
}
},
"autoload": {
@@ -3673,24 +6045,34 @@
"environment",
"hhvm"
],
- "time": "2017-07-01T08:51:00+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/environment/issues",
+ "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:53:42+00:00"
},
{
"name": "sebastian/exporter",
- "version": "3.1.0",
+ "version": "3.1.3",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/exporter.git",
- "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
+ "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
- "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
+ "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
+ "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
"shasum": ""
},
"require": {
- "php": "^7.0",
+ "php": ">=7.0",
"sebastian/recursion-context": "^3.0"
},
"require-dev": {
@@ -3713,6 +6095,10 @@
"BSD-3-Clause"
],
"authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
{
"name": "Jeff Welch",
"email": "whatthejeff@gmail.com"
@@ -3721,17 +6107,13 @@
"name": "Volker Dusch",
"email": "github@wallbash.com"
},
- {
- "name": "Bernhard Schussek",
- "email": "bschussek@2bepublished.at"
- },
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
{
"name": "Adam Harvey",
"email": "aharvey@php.net"
+ },
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
}
],
"description": "Provides the functionality to export PHP variables for visualization",
@@ -3740,7 +6122,17 @@
"export",
"exporter"
],
- "time": "2017-04-03T13:19:02+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/exporter/issues",
+ "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:47:53+00:00"
},
{
"name": "sebastian/global-state",
@@ -3791,24 +6183,28 @@
"keywords": [
"global state"
],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/global-state/issues",
+ "source": "https://github.com/sebastianbergmann/global-state/tree/2.0.0"
+ },
"time": "2017-04-27T15:39:26+00:00"
},
{
"name": "sebastian/object-enumerator",
- "version": "3.0.3",
+ "version": "3.0.4",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/object-enumerator.git",
- "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
+ "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
- "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
+ "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
"shasum": ""
},
"require": {
- "php": "^7.0",
+ "php": ">=7.0",
"sebastian/object-reflector": "^1.1.1",
"sebastian/recursion-context": "^3.0"
},
@@ -3838,24 +6234,34 @@
],
"description": "Traverses array structures and object graphs to enumerate all referenced objects",
"homepage": "https://github.com/sebastianbergmann/object-enumerator/",
- "time": "2017-08-03T12:35:26+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
+ "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:40:27+00:00"
},
{
"name": "sebastian/object-reflector",
- "version": "1.1.1",
+ "version": "1.1.2",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/object-reflector.git",
- "reference": "773f97c67f28de00d397be301821b06708fca0be"
+ "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
- "reference": "773f97c67f28de00d397be301821b06708fca0be",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
+ "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
"shasum": ""
},
"require": {
- "php": "^7.0"
+ "php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0"
@@ -3883,24 +6289,34 @@
],
"description": "Allows reflection of object attributes, including inherited and non-public ones",
"homepage": "https://github.com/sebastianbergmann/object-reflector/",
- "time": "2017-03-29T09:07:27+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
+ "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:37:18+00:00"
},
{
"name": "sebastian/recursion-context",
- "version": "3.0.0",
+ "version": "3.0.1",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/recursion-context.git",
- "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
+ "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
- "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
+ "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
+ "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
"shasum": ""
},
"require": {
- "php": "^7.0"
+ "php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0"
@@ -3921,14 +6337,14 @@
"BSD-3-Clause"
],
"authors": [
- {
- "name": "Jeff Welch",
- "email": "whatthejeff@gmail.com"
- },
{
"name": "Sebastian Bergmann",
"email": "sebastian@phpunit.de"
},
+ {
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
+ },
{
"name": "Adam Harvey",
"email": "aharvey@php.net"
@@ -3936,29 +6352,39 @@
],
"description": "Provides functionality to recursively process PHP variables",
"homepage": "http://www.github.com/sebastianbergmann/recursion-context",
- "time": "2017-03-03T06:23:57+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
+ "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:34:24+00:00"
},
{
"name": "sebastian/resource-operations",
- "version": "1.0.0",
+ "version": "2.0.2",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/resource-operations.git",
- "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
+ "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
- "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
+ "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
+ "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
"shasum": ""
},
"require": {
- "php": ">=5.6.0"
+ "php": ">=7.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-master": "2.0-dev"
}
},
"autoload": {
@@ -3978,7 +6404,17 @@
],
"description": "Provides a list of PHP built-in functions that operate on resources",
"homepage": "https://www.github.com/sebastianbergmann/resource-operations",
- "time": "2015-07-28T20:34:47+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
+ "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:30:19+00:00"
},
{
"name": "sebastian/version",
@@ -4021,70 +6457,31 @@
],
"description": "Library that helps with managing the version number of Git-hosted PHP projects",
"homepage": "https://github.com/sebastianbergmann/version",
- "time": "2016-10-03T07:35:21+00:00"
- },
- {
- "name": "symfony/thanks",
- "version": "v1.0.5",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/thanks.git",
- "reference": "c757ee0c9dcfcc0e9e30fbbbdcadeb9dcc9aaaf4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/thanks/zipball/c757ee0c9dcfcc0e9e30fbbbdcadeb9dcc9aaaf4",
- "reference": "c757ee0c9dcfcc0e9e30fbbbdcadeb9dcc9aaaf4",
- "shasum": ""
- },
- "require": {
- "composer-plugin-api": "^1.0",
- "php": "^5.5.9|^7.0.0"
- },
- "type": "composer-plugin",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0-dev"
- },
- "class": "Symfony\\Thanks\\Thanks"
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Thanks\\": "src"
- }
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/version/issues",
+ "source": "https://github.com/sebastianbergmann/version/tree/master"
},
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- }
- ],
- "description": "Give thanks (in the form of a GitHub ⭐) to your fellow PHP package maintainers (not limited to Symfony components)!",
- "time": "2018-01-26T10:44:34+00:00"
+ "time": "2016-10-03T07:35:21+00:00"
},
{
"name": "theseer/tokenizer",
- "version": "1.1.0",
+ "version": "1.2.0",
"source": {
"type": "git",
"url": "https://github.com/theseer/tokenizer.git",
- "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
+ "reference": "75a63c33a8577608444246075ea0af0d052e452a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
- "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
+ "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
+ "reference": "75a63c33a8577608444246075ea0af0d052e452a",
"shasum": ""
},
"require": {
"ext-dom": "*",
"ext-tokenizer": "*",
"ext-xmlwriter": "*",
- "php": "^7.0"
+ "php": "^7.2 || ^8.0"
},
"type": "library",
"autoload": {
@@ -4104,57 +6501,17 @@
}
],
"description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
- "time": "2017-04-07T12:08:54+00:00"
- },
- {
- "name": "webmozart/assert",
- "version": "1.3.0",
- "source": {
- "type": "git",
- "url": "https://github.com/webmozart/assert.git",
- "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
+ "support": {
+ "issues": "https://github.com/theseer/tokenizer/issues",
+ "source": "https://github.com/theseer/tokenizer/tree/master"
},
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
- "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
- "shasum": ""
- },
- "require": {
- "php": "^5.3.3 || ^7.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.6",
- "sebastian/version": "^1.0.1"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.3-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Webmozart\\Assert\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
+ "funding": [
{
- "name": "Bernhard Schussek",
- "email": "bschussek@gmail.com"
+ "url": "https://github.com/theseer",
+ "type": "github"
}
],
- "description": "Assertions to validate method input/output with nice error messages.",
- "keywords": [
- "assert",
- "check",
- "validate"
- ],
- "time": "2018-01-29T19:49:41+00:00"
+ "time": "2020-07-12T23:59:07+00:00"
}
],
"aliases": [],
@@ -4165,5 +6522,6 @@
"platform": {
"php": ">=7.1.3"
},
- "platform-dev": []
+ "platform-dev": [],
+ "plugin-api-version": "2.0.0"
}
diff --git a/composer.lock.old b/composer.lock.old
new file mode 100644
index 0000000..47a41bb
--- /dev/null
+++ b/composer.lock.old
@@ -0,0 +1,5961 @@
+{
+ "_readme": [
+ "This file locks the dependencies of your project to a known state",
+ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
+ "This file is @generated automatically"
+ ],
+ "content-hash": "067d134054f1e68f6e91eb5ae953a7d6",
+ "packages": [
+ {
+ "name": "dnoegel/php-xdg-base-dir",
+ "version": "v0.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
+ "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
+ "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "XdgBaseDir\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "implementation of xdg base directory specification for php",
+ "support": {
+ "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
+ "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
+ },
+ "time": "2019-12-04T15:06:13+00:00"
+ },
+ {
+ "name": "doctrine/inflector",
+ "version": "1.4.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/inflector.git",
+ "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c",
+ "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^7.0",
+ "phpstan/phpstan": "^0.11",
+ "phpstan/phpstan-phpunit": "^0.11",
+ "phpstan/phpstan-strict-rules": "^0.11",
+ "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
+ "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
+ {
+ "name": "Roman Borschel",
+ "email": "roman@code-factory.org"
+ },
+ {
+ "name": "Benjamin Eberlei",
+ "email": "kontakt@beberlei.de"
+ },
+ {
+ "name": "Jonathan Wage",
+ "email": "jonwage@gmail.com"
+ },
+ {
+ "name": "Johannes Schmitt",
+ "email": "schmittjoh@gmail.com"
+ }
+ ],
+ "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
+ "homepage": "https://www.doctrine-project.org/projects/inflector.html",
+ "keywords": [
+ "inflection",
+ "inflector",
+ "lowercase",
+ "manipulation",
+ "php",
+ "plural",
+ "singular",
+ "strings",
+ "uppercase",
+ "words"
+ ],
+ "support": {
+ "issues": "https://github.com/doctrine/inflector/issues",
+ "source": "https://github.com/doctrine/inflector/tree/1.4.x"
+ },
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-05-29T07:19:59+00:00"
+ },
+ {
+ "name": "doctrine/lexer",
+ "version": "1.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/lexer.git",
+ "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
+ "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^6.0",
+ "phpstan/phpstan": "^0.11.8",
+ "phpunit/phpunit": "^8.2"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.2.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
+ {
+ "name": "Roman Borschel",
+ "email": "roman@code-factory.org"
+ },
+ {
+ "name": "Johannes Schmitt",
+ "email": "schmittjoh@gmail.com"
+ }
+ ],
+ "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
+ "homepage": "https://www.doctrine-project.org/projects/lexer.html",
+ "keywords": [
+ "annotations",
+ "docblock",
+ "lexer",
+ "parser",
+ "php"
+ ],
+ "support": {
+ "issues": "https://github.com/doctrine/lexer/issues",
+ "source": "https://github.com/doctrine/lexer/tree/1.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-05-25T17:44:05+00:00"
+ },
+ {
+ "name": "dragonmantank/cron-expression",
+ "version": "v2.3.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/dragonmantank/cron-expression.git",
+ "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
+ "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.0|^8.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.3-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Cron\\": "src/Cron/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Michael Dowling",
+ "email": "mtdowling@gmail.com",
+ "homepage": "https://github.com/mtdowling"
+ },
+ {
+ "name": "Chris Tankersley",
+ "email": "chris@ctankersley.com",
+ "homepage": "https://github.com/dragonmantank"
+ }
+ ],
+ "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
+ "keywords": [
+ "cron",
+ "schedule"
+ ],
+ "support": {
+ "issues": "https://github.com/dragonmantank/cron-expression/issues",
+ "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/dragonmantank",
+ "type": "github"
+ }
+ ],
+ "time": "2020-10-13T00:52:37+00:00"
+ },
+ {
+ "name": "egulias/email-validator",
+ "version": "2.1.25",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/egulias/EmailValidator.git",
+ "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
+ "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/lexer": "^1.0.1",
+ "php": ">=5.5",
+ "symfony/polyfill-intl-idn": "^1.10"
+ },
+ "require-dev": {
+ "dominicsayers/isemail": "^3.0.7",
+ "phpunit/phpunit": "^4.8.36|^7.5.15",
+ "satooshi/php-coveralls": "^1.0.1"
+ },
+ "suggest": {
+ "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Egulias\\EmailValidator\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Eduardo Gulias Davis"
+ }
+ ],
+ "description": "A library for validating emails against several RFCs",
+ "homepage": "https://github.com/egulias/EmailValidator",
+ "keywords": [
+ "email",
+ "emailvalidation",
+ "emailvalidator",
+ "validation",
+ "validator"
+ ],
+ "support": {
+ "issues": "https://github.com/egulias/EmailValidator/issues",
+ "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/egulias",
+ "type": "github"
+ }
+ ],
+ "time": "2020-12-29T14:50:06+00:00"
+ },
+ {
+ "name": "erusev/parsedown",
+ "version": "1.7.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/erusev/parsedown.git",
+ "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
+ "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
+ "shasum": ""
+ },
+ "require": {
+ "ext-mbstring": "*",
+ "php": ">=5.3.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8.35"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-0": {
+ "Parsedown": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Emanuil Rusev",
+ "email": "hello@erusev.com",
+ "homepage": "http://erusev.com"
+ }
+ ],
+ "description": "Parser for Markdown.",
+ "homepage": "http://parsedown.org",
+ "keywords": [
+ "markdown",
+ "parser"
+ ],
+ "support": {
+ "issues": "https://github.com/erusev/parsedown/issues",
+ "source": "https://github.com/erusev/parsedown/tree/1.7.x"
+ },
+ "time": "2019-12-30T22:54:17+00:00"
+ },
+ {
+ "name": "fideloper/proxy",
+ "version": "4.4.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/fideloper/TrustedProxy.git",
+ "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
+ "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
+ "php": ">=5.4.0"
+ },
+ "require-dev": {
+ "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
+ "mockery/mockery": "^1.0",
+ "phpunit/phpunit": "^6.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Fideloper\\Proxy\\TrustedProxyServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Fideloper\\Proxy\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Chris Fidao",
+ "email": "fideloper@gmail.com"
+ }
+ ],
+ "description": "Set trusted proxies for Laravel",
+ "keywords": [
+ "load balancing",
+ "proxy",
+ "trusted proxy"
+ ],
+ "support": {
+ "issues": "https://github.com/fideloper/TrustedProxy/issues",
+ "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
+ },
+ "time": "2020-10-22T13:48:01+00:00"
+ },
+ {
+ "name": "jakub-onderka/php-console-color",
+ "version": "v0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
+ "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
+ "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.4.0"
+ },
+ "require-dev": {
+ "jakub-onderka/php-code-style": "1.0",
+ "jakub-onderka/php-parallel-lint": "1.0",
+ "jakub-onderka/php-var-dump-check": "0.*",
+ "phpunit/phpunit": "~4.3",
+ "squizlabs/php_codesniffer": "1.*"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "JakubOnderka\\PhpConsoleColor\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-2-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Jakub Onderka",
+ "email": "jakub.onderka@gmail.com"
+ }
+ ],
+ "support": {
+ "issues": "https://github.com/JakubOnderka/PHP-Console-Color/issues",
+ "source": "https://github.com/JakubOnderka/PHP-Console-Color/tree/master"
+ },
+ "abandoned": "php-parallel-lint/php-console-color",
+ "time": "2018-09-29T17:23:10+00:00"
+ },
+ {
+ "name": "jakub-onderka/php-console-highlighter",
+ "version": "v0.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
+ "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
+ "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
+ "shasum": ""
+ },
+ "require": {
+ "ext-tokenizer": "*",
+ "jakub-onderka/php-console-color": "~0.2",
+ "php": ">=5.4.0"
+ },
+ "require-dev": {
+ "jakub-onderka/php-code-style": "~1.0",
+ "jakub-onderka/php-parallel-lint": "~1.0",
+ "jakub-onderka/php-var-dump-check": "~0.1",
+ "phpunit/phpunit": "~4.0",
+ "squizlabs/php_codesniffer": "~1.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jakub Onderka",
+ "email": "acci@acci.cz",
+ "homepage": "http://www.acci.cz/"
+ }
+ ],
+ "description": "Highlight PHP code in terminal",
+ "support": {
+ "issues": "https://github.com/JakubOnderka/PHP-Console-Highlighter/issues",
+ "source": "https://github.com/JakubOnderka/PHP-Console-Highlighter/tree/master"
+ },
+ "abandoned": "php-parallel-lint/php-console-highlighter",
+ "time": "2018-09-29T18:48:56+00:00"
+ },
+ {
+ "name": "kylekatarnls/update-helper",
+ "version": "1.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/kylekatarnls/update-helper.git",
+ "reference": "429be50660ed8a196e0798e5939760f168ec8ce9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/kylekatarnls/update-helper/zipball/429be50660ed8a196e0798e5939760f168ec8ce9",
+ "reference": "429be50660ed8a196e0798e5939760f168ec8ce9",
+ "shasum": ""
+ },
+ "require": {
+ "composer-plugin-api": "^1.1.0 || ^2.0.0",
+ "php": ">=5.3.0"
+ },
+ "require-dev": {
+ "codeclimate/php-test-reporter": "dev-master",
+ "composer/composer": "2.0.x-dev || ^2.0.0-dev",
+ "phpunit/phpunit": ">=4.8.35 <6.0"
+ },
+ "type": "composer-plugin",
+ "extra": {
+ "class": "UpdateHelper\\ComposerPlugin"
+ },
+ "autoload": {
+ "psr-0": {
+ "UpdateHelper\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Kyle",
+ "email": "kylekatarnls@gmail.com"
+ }
+ ],
+ "description": "Update helper",
+ "support": {
+ "issues": "https://github.com/kylekatarnls/update-helper/issues",
+ "source": "https://github.com/kylekatarnls/update-helper/tree/1.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/kylekatarnls",
+ "type": "github"
+ },
+ {
+ "url": "https://opencollective.com/Carbon",
+ "type": "open_collective"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-04-07T20:44:10+00:00"
+ },
+ {
+ "name": "laravel/framework",
+ "version": "v5.6.40",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/framework.git",
+ "reference": "5ceadf91f13be89a3338c3d4166a4676272a23bf"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/framework/zipball/5ceadf91f13be89a3338c3d4166a4676272a23bf",
+ "reference": "5ceadf91f13be89a3338c3d4166a4676272a23bf",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/inflector": "~1.1",
+ "dragonmantank/cron-expression": "~2.0",
+ "erusev/parsedown": "~1.7",
+ "ext-mbstring": "*",
+ "ext-openssl": "*",
+ "league/flysystem": "^1.0.8",
+ "monolog/monolog": "~1.12",
+ "nesbot/carbon": "1.26.*",
+ "php": "^7.1.3",
+ "psr/container": "~1.0",
+ "psr/simple-cache": "^1.0",
+ "ramsey/uuid": "^3.7",
+ "swiftmailer/swiftmailer": "~6.0",
+ "symfony/console": "~4.0",
+ "symfony/debug": "~4.0",
+ "symfony/finder": "~4.0",
+ "symfony/http-foundation": "~4.0",
+ "symfony/http-kernel": "~4.0",
+ "symfony/process": "~4.0",
+ "symfony/routing": "~4.0",
+ "symfony/var-dumper": "~4.0",
+ "tijsverkoyen/css-to-inline-styles": "^2.2.1",
+ "vlucas/phpdotenv": "~2.2"
+ },
+ "conflict": {
+ "tightenco/collect": "<5.5.33"
+ },
+ "replace": {
+ "illuminate/auth": "self.version",
+ "illuminate/broadcasting": "self.version",
+ "illuminate/bus": "self.version",
+ "illuminate/cache": "self.version",
+ "illuminate/config": "self.version",
+ "illuminate/console": "self.version",
+ "illuminate/container": "self.version",
+ "illuminate/contracts": "self.version",
+ "illuminate/cookie": "self.version",
+ "illuminate/database": "self.version",
+ "illuminate/encryption": "self.version",
+ "illuminate/events": "self.version",
+ "illuminate/filesystem": "self.version",
+ "illuminate/hashing": "self.version",
+ "illuminate/http": "self.version",
+ "illuminate/log": "self.version",
+ "illuminate/mail": "self.version",
+ "illuminate/notifications": "self.version",
+ "illuminate/pagination": "self.version",
+ "illuminate/pipeline": "self.version",
+ "illuminate/queue": "self.version",
+ "illuminate/redis": "self.version",
+ "illuminate/routing": "self.version",
+ "illuminate/session": "self.version",
+ "illuminate/support": "self.version",
+ "illuminate/translation": "self.version",
+ "illuminate/validation": "self.version",
+ "illuminate/view": "self.version"
+ },
+ "require-dev": {
+ "aws/aws-sdk-php": "~3.0",
+ "doctrine/dbal": "~2.6",
+ "filp/whoops": "^2.1.4",
+ "league/flysystem-cached-adapter": "~1.0",
+ "mockery/mockery": "~1.0",
+ "moontoast/math": "^1.1",
+ "orchestra/testbench-core": "3.6.*",
+ "pda/pheanstalk": "~3.0",
+ "phpunit/phpunit": "~7.0",
+ "predis/predis": "^1.1.1",
+ "symfony/css-selector": "~4.0",
+ "symfony/dom-crawler": "~4.0"
+ },
+ "suggest": {
+ "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
+ "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.6).",
+ "ext-pcntl": "Required to use all features of the queue worker.",
+ "ext-posix": "Required to use all features of the queue worker.",
+ "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
+ "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).",
+ "laravel/tinker": "Required to use the tinker console command (~1.0).",
+ "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
+ "league/flysystem-cached-adapter": "Required to use the Flysystem cache (~1.0).",
+ "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
+ "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (~1.0).",
+ "nexmo/client": "Required to use the Nexmo transport (~1.0).",
+ "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
+ "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
+ "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~3.0).",
+ "symfony/css-selector": "Required to use some of the crawler integration testing tools (~4.0).",
+ "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~4.0).",
+ "symfony/psr-http-message-bridge": "Required to psr7 bridging features (~1.0)."
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "5.6-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/Illuminate/Foundation/helpers.php",
+ "src/Illuminate/Support/helpers.php"
+ ],
+ "psr-4": {
+ "Illuminate\\": "src/Illuminate/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Taylor Otwell",
+ "email": "taylor@laravel.com"
+ }
+ ],
+ "description": "The Laravel Framework.",
+ "homepage": "https://laravel.com",
+ "keywords": [
+ "framework",
+ "laravel"
+ ],
+ "support": {
+ "issues": "https://github.com/laravel/framework/issues",
+ "source": "https://github.com/laravel/framework"
+ },
+ "time": "2020-04-14T14:16:50+00:00"
+ },
+ {
+ "name": "laravel/tinker",
+ "version": "v1.0.10",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/tinker.git",
+ "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/tinker/zipball/ad571aacbac1539c30d480908f9d0c9614eaf1a7",
+ "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/console": "~5.1|^6.0",
+ "illuminate/contracts": "~5.1|^6.0",
+ "illuminate/support": "~5.1|^6.0",
+ "php": ">=5.5.9",
+ "psy/psysh": "0.7.*|0.8.*|0.9.*",
+ "symfony/var-dumper": "~3.0|~4.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "~4.0|~5.0"
+ },
+ "suggest": {
+ "illuminate/database": "The Illuminate Database package (~5.1)."
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0-dev"
+ },
+ "laravel": {
+ "providers": [
+ "Laravel\\Tinker\\TinkerServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Laravel\\Tinker\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Taylor Otwell",
+ "email": "taylor@laravel.com"
+ }
+ ],
+ "description": "Powerful REPL for the Laravel framework.",
+ "keywords": [
+ "REPL",
+ "Tinker",
+ "laravel",
+ "psysh"
+ ],
+ "support": {
+ "issues": "https://github.com/laravel/tinker/issues",
+ "source": "https://github.com/laravel/tinker/tree/v1.0.10"
+ },
+ "time": "2019-08-07T15:10:45+00:00"
+ },
+ {
+ "name": "league/flysystem",
+ "version": "1.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/flysystem.git",
+ "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
+ "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
+ "shasum": ""
+ },
+ "require": {
+ "ext-fileinfo": "*",
+ "league/mime-type-detection": "^1.3",
+ "php": "^7.2.5 || ^8.0"
+ },
+ "conflict": {
+ "league/flysystem-sftp": "<1.0.6"
+ },
+ "require-dev": {
+ "phpspec/prophecy": "^1.11.1",
+ "phpunit/phpunit": "^8.5.8"
+ },
+ "suggest": {
+ "ext-fileinfo": "Required for MimeType",
+ "ext-ftp": "Allows you to use FTP server storage",
+ "ext-openssl": "Allows you to use FTPS server storage",
+ "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
+ "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
+ "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
+ "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
+ "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
+ "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
+ "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
+ "league/flysystem-webdav": "Allows you to use WebDAV storage",
+ "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
+ "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
+ "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.1-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "League\\Flysystem\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Frank de Jonge",
+ "email": "info@frenky.net"
+ }
+ ],
+ "description": "Filesystem abstraction: Many filesystems, one API.",
+ "keywords": [
+ "Cloud Files",
+ "WebDAV",
+ "abstraction",
+ "aws",
+ "cloud",
+ "copy.com",
+ "dropbox",
+ "file systems",
+ "files",
+ "filesystem",
+ "filesystems",
+ "ftp",
+ "rackspace",
+ "remote",
+ "s3",
+ "sftp",
+ "storage"
+ ],
+ "support": {
+ "issues": "https://github.com/thephpleague/flysystem/issues",
+ "source": "https://github.com/thephpleague/flysystem/tree/1.x"
+ },
+ "funding": [
+ {
+ "url": "https://offset.earth/frankdejonge",
+ "type": "other"
+ }
+ ],
+ "time": "2020-08-23T07:39:11+00:00"
+ },
+ {
+ "name": "league/mime-type-detection",
+ "version": "1.5.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/mime-type-detection.git",
+ "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/353f66d7555d8a90781f6f5e7091932f9a4250aa",
+ "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa",
+ "shasum": ""
+ },
+ "require": {
+ "ext-fileinfo": "*",
+ "php": "^7.2 || ^8.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^0.12.36",
+ "phpunit/phpunit": "^8.5.8"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "League\\MimeTypeDetection\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Frank de Jonge",
+ "email": "info@frankdejonge.nl"
+ }
+ ],
+ "description": "Mime-type detection for Flysystem",
+ "support": {
+ "issues": "https://github.com/thephpleague/mime-type-detection/issues",
+ "source": "https://github.com/thephpleague/mime-type-detection/tree/1.5.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/frankdejonge",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-10-18T11:50:25+00:00"
+ },
+ {
+ "name": "monolog/monolog",
+ "version": "1.26.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Seldaek/monolog.git",
+ "reference": "2209ddd84e7ef1256b7af205d0717fb62cfc9c33"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Seldaek/monolog/zipball/2209ddd84e7ef1256b7af205d0717fb62cfc9c33",
+ "reference": "2209ddd84e7ef1256b7af205d0717fb62cfc9c33",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0",
+ "psr/log": "~1.0"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0.0"
+ },
+ "require-dev": {
+ "aws/aws-sdk-php": "^2.4.9 || ^3.0",
+ "doctrine/couchdb": "~1.0@dev",
+ "graylog2/gelf-php": "~1.0",
+ "php-amqplib/php-amqplib": "~2.4",
+ "php-console/php-console": "^3.1.3",
+ "phpstan/phpstan": "^0.12.59",
+ "phpunit/phpunit": "~4.5",
+ "ruflin/elastica": ">=0.90 <3.0",
+ "sentry/sentry": "^0.13",
+ "swiftmailer/swiftmailer": "^5.3|^6.0"
+ },
+ "suggest": {
+ "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
+ "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
+ "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
+ "ext-mongo": "Allow sending log messages to a MongoDB server",
+ "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
+ "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
+ "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
+ "php-console/php-console": "Allow sending log messages to Google Chrome",
+ "rollbar/rollbar": "Allow sending log messages to Rollbar",
+ "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
+ "sentry/sentry": "Allow sending log messages to a Sentry server"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Monolog\\": "src/Monolog"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
+ }
+ ],
+ "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
+ "homepage": "http://github.com/Seldaek/monolog",
+ "keywords": [
+ "log",
+ "logging",
+ "psr-3"
+ ],
+ "support": {
+ "issues": "https://github.com/Seldaek/monolog/issues",
+ "source": "https://github.com/Seldaek/monolog/tree/1.26.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/Seldaek",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-14T12:56:38+00:00"
+ },
+ {
+ "name": "nesbot/carbon",
+ "version": "1.26.6",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/briannesbitt/Carbon.git",
+ "reference": "c6820f814496d71da7498d423427e6193d1f57c9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/c6820f814496d71da7498d423427e6193d1f57c9",
+ "reference": "c6820f814496d71da7498d423427e6193d1f57c9",
+ "shasum": ""
+ },
+ "require": {
+ "kylekatarnls/update-helper": "^1.1",
+ "php": ">=5.3.9",
+ "symfony/translation": "~2.6 || ~3.0 || ~4.0"
+ },
+ "require-dev": {
+ "composer/composer": "^1.2",
+ "friendsofphp/php-cs-fixer": "~2",
+ "phpunit/phpunit": "^4.8.35 || ^5.7"
+ },
+ "bin": [
+ "bin/upgrade-carbon"
+ ],
+ "type": "library",
+ "extra": {
+ "update-helper": "Carbon\\Upgrade"
+ },
+ "autoload": {
+ "psr-4": {
+ "": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Brian Nesbitt",
+ "email": "brian@nesbot.com",
+ "homepage": "http://nesbot.com"
+ }
+ ],
+ "description": "A simple API extension for DateTime.",
+ "homepage": "http://carbon.nesbot.com",
+ "keywords": [
+ "date",
+ "datetime",
+ "time"
+ ],
+ "support": {
+ "issues": "https://github.com/briannesbitt/Carbon/issues",
+ "source": "https://github.com/briannesbitt/Carbon"
+ },
+ "time": "2019-06-03T15:42:58+00:00"
+ },
+ {
+ "name": "nikic/php-parser",
+ "version": "v4.10.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nikic/PHP-Parser.git",
+ "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
+ "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
+ "shasum": ""
+ },
+ "require": {
+ "ext-tokenizer": "*",
+ "php": ">=7.0"
+ },
+ "require-dev": {
+ "ircmaxell/php-yacc": "^0.0.7",
+ "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
+ },
+ "bin": [
+ "bin/php-parse"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.9-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PhpParser\\": "lib/PhpParser"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Nikita Popov"
+ }
+ ],
+ "description": "A PHP parser written in PHP",
+ "keywords": [
+ "parser",
+ "php"
+ ],
+ "support": {
+ "issues": "https://github.com/nikic/PHP-Parser/issues",
+ "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
+ },
+ "time": "2020-12-20T10:01:03+00:00"
+ },
+ {
+ "name": "paragonie/random_compat",
+ "version": "v9.99.99",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/paragonie/random_compat.git",
+ "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
+ "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "4.*|5.*",
+ "vimeo/psalm": "^1"
+ },
+ "suggest": {
+ "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
+ },
+ "type": "library",
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Paragon Initiative Enterprises",
+ "email": "security@paragonie.com",
+ "homepage": "https://paragonie.com"
+ }
+ ],
+ "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
+ "keywords": [
+ "csprng",
+ "polyfill",
+ "pseudorandom",
+ "random"
+ ],
+ "support": {
+ "email": "info@paragonie.com",
+ "issues": "https://github.com/paragonie/random_compat/issues",
+ "source": "https://github.com/paragonie/random_compat"
+ },
+ "time": "2018-07-02T15:55:56+00:00"
+ },
+ {
+ "name": "piwik/piwik-php-tracker",
+ "version": "1.5.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/matomo-org/matomo-php-tracker.git",
+ "reference": "314e6d00039cb9d99837c81cdf4cbcd19f5683e0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/matomo-org/matomo-php-tracker/zipball/314e6d00039cb9d99837c81cdf4cbcd19f5683e0",
+ "reference": "314e6d00039cb9d99837c81cdf4cbcd19f5683e0",
+ "shasum": ""
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "."
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-2-Clause"
+ ],
+ "authors": [
+ {
+ "name": "The Piwik Team",
+ "email": "hello@piwik.org",
+ "homepage": "http://piwik.org/the-piwik-team/"
+ }
+ ],
+ "description": "PHP Client for Piwik Analytics Tracking API",
+ "homepage": "http://piwik.org",
+ "keywords": [
+ "analytics",
+ "piwik",
+ "tracker"
+ ],
+ "support": {
+ "forum": "http://forum.piwik.org/",
+ "issues": "https://github.com/piwik/piwik-php-tracker/issues",
+ "source": "https://github.com/piwik/piwik-php-tracker"
+ },
+ "abandoned": "matomo/matomo-php-tracker",
+ "time": "2019-12-23T21:48:04+00:00"
+ },
+ {
+ "name": "psr/container",
+ "version": "1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/container.git",
+ "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
+ "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Container\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "description": "Common Container Interface (PHP FIG PSR-11)",
+ "homepage": "https://github.com/php-fig/container",
+ "keywords": [
+ "PSR-11",
+ "container",
+ "container-interface",
+ "container-interop",
+ "psr"
+ ],
+ "support": {
+ "issues": "https://github.com/php-fig/container/issues",
+ "source": "https://github.com/php-fig/container/tree/master"
+ },
+ "time": "2017-02-14T16:28:37+00:00"
+ },
+ {
+ "name": "psr/log",
+ "version": "1.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/log.git",
+ "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
+ "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Log\\": "Psr/Log/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for logging libraries",
+ "homepage": "https://github.com/php-fig/log",
+ "keywords": [
+ "log",
+ "psr",
+ "psr-3"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/log/tree/1.1.3"
+ },
+ "time": "2020-03-23T09:12:05+00:00"
+ },
+ {
+ "name": "psr/simple-cache",
+ "version": "1.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/simple-cache.git",
+ "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
+ "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\SimpleCache\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interfaces for simple caching",
+ "keywords": [
+ "cache",
+ "caching",
+ "psr",
+ "psr-16",
+ "simple-cache"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/simple-cache/tree/master"
+ },
+ "time": "2017-10-23T01:57:42+00:00"
+ },
+ {
+ "name": "psy/psysh",
+ "version": "v0.9.12",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/bobthecow/psysh.git",
+ "reference": "90da7f37568aee36b116a030c5f99c915267edd4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/bobthecow/psysh/zipball/90da7f37568aee36b116a030c5f99c915267edd4",
+ "reference": "90da7f37568aee36b116a030c5f99c915267edd4",
+ "shasum": ""
+ },
+ "require": {
+ "dnoegel/php-xdg-base-dir": "0.1.*",
+ "ext-json": "*",
+ "ext-tokenizer": "*",
+ "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
+ "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
+ "php": ">=5.4.0",
+ "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0|~5.0",
+ "symfony/var-dumper": "~2.7|~3.0|~4.0|~5.0"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.2",
+ "hoa/console": "~2.15|~3.16",
+ "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
+ },
+ "suggest": {
+ "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
+ "ext-pdo-sqlite": "The doc command requires SQLite to work.",
+ "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
+ "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
+ "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
+ },
+ "bin": [
+ "bin/psysh"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-develop": "0.9.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/functions.php"
+ ],
+ "psr-4": {
+ "Psy\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Justin Hileman",
+ "email": "justin@justinhileman.info",
+ "homepage": "http://justinhileman.com"
+ }
+ ],
+ "description": "An interactive shell for modern PHP.",
+ "homepage": "http://psysh.org",
+ "keywords": [
+ "REPL",
+ "console",
+ "interactive",
+ "shell"
+ ],
+ "support": {
+ "issues": "https://github.com/bobthecow/psysh/issues",
+ "source": "https://github.com/bobthecow/psysh/tree/v0.9.12"
+ },
+ "time": "2019-12-06T14:19:43+00:00"
+ },
+ {
+ "name": "ramsey/uuid",
+ "version": "3.9.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ramsey/uuid.git",
+ "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92",
+ "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "paragonie/random_compat": "^1 | ^2 | 9.99.99",
+ "php": "^5.4 | ^7 | ^8",
+ "symfony/polyfill-ctype": "^1.8"
+ },
+ "replace": {
+ "rhumsaa/uuid": "self.version"
+ },
+ "require-dev": {
+ "codeception/aspect-mock": "^1 | ^2",
+ "doctrine/annotations": "^1.2",
+ "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1",
+ "jakub-onderka/php-parallel-lint": "^1",
+ "mockery/mockery": "^0.9.11 | ^1",
+ "moontoast/math": "^1.1",
+ "paragonie/random-lib": "^2",
+ "php-mock/php-mock-phpunit": "^0.3 | ^1.1",
+ "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5",
+ "squizlabs/php_codesniffer": "^3.5"
+ },
+ "suggest": {
+ "ext-ctype": "Provides support for PHP Ctype functions",
+ "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
+ "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
+ "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
+ "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
+ "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
+ "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
+ "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Ramsey\\Uuid\\": "src/"
+ },
+ "files": [
+ "src/functions.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ben Ramsey",
+ "email": "ben@benramsey.com",
+ "homepage": "https://benramsey.com"
+ },
+ {
+ "name": "Marijn Huizendveld",
+ "email": "marijn.huizendveld@gmail.com"
+ },
+ {
+ "name": "Thibaud Fabre",
+ "email": "thibaud@aztech.io"
+ }
+ ],
+ "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
+ "homepage": "https://github.com/ramsey/uuid",
+ "keywords": [
+ "guid",
+ "identifier",
+ "uuid"
+ ],
+ "support": {
+ "issues": "https://github.com/ramsey/uuid/issues",
+ "rss": "https://github.com/ramsey/uuid/releases.atom",
+ "source": "https://github.com/ramsey/uuid",
+ "wiki": "https://github.com/ramsey/uuid/wiki"
+ },
+ "time": "2020-02-21T04:36:14+00:00"
+ },
+ {
+ "name": "roumen/feed",
+ "version": "v2.12.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Laravelium/laravel-feed.git",
+ "reference": "bbdcfa1424816da053d1527017b1c79b5d961f4c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Laravelium/laravel-feed/zipball/bbdcfa1424816da053d1527017b1c79b5d961f4c",
+ "reference": "bbdcfa1424816da053d1527017b1c79b5d961f4c",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/support": "5.6.*",
+ "php": ">=7.1.3"
+ },
+ "require-dev": {
+ "orchestra/testbench": "3.6.*",
+ "phpunit/phpunit": "~7.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Laravelium\\Feed\\FeedServiceProvider"
+ ],
+ "aliases": {
+ "Feed": "Laravelium\\Feed\\Feed"
+ }
+ }
+ },
+ "autoload": {
+ "psr-0": {
+ "Laravelium\\Feed": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Roumen Damianoff",
+ "email": "roumen@damianoff.com",
+ "homepage": "https://damianoff.com",
+ "role": "Developer"
+ }
+ ],
+ "description": "Laravelium Feed package for Laravel.",
+ "homepage": "https://laravelium.com",
+ "keywords": [
+ "atom",
+ "feed",
+ "generator",
+ "laravel",
+ "laravelium",
+ "rss"
+ ],
+ "support": {
+ "issues": "https://github.com/Laravelium/laravel-feed/issues",
+ "source": "https://github.com/Laravelium/laravel-feed/tree/v2.12.3"
+ },
+ "abandoned": "laravelium/feed",
+ "time": "2019-02-28T10:26:28+00:00"
+ },
+ {
+ "name": "swiftmailer/swiftmailer",
+ "version": "v6.2.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/swiftmailer/swiftmailer.git",
+ "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
+ "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
+ "shasum": ""
+ },
+ "require": {
+ "egulias/email-validator": "^2.0",
+ "php": ">=7.0.0",
+ "symfony/polyfill-iconv": "^1.0",
+ "symfony/polyfill-intl-idn": "^1.10",
+ "symfony/polyfill-mbstring": "^1.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.0",
+ "symfony/phpunit-bridge": "^4.4|^5.0"
+ },
+ "suggest": {
+ "ext-intl": "Needed to support internationalized email addresses"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "6.2-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "lib/swift_required.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Chris Corbyn"
+ },
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ }
+ ],
+ "description": "Swiftmailer, free feature-rich PHP mailer",
+ "homepage": "https://swiftmailer.symfony.com",
+ "keywords": [
+ "email",
+ "mail",
+ "mailer"
+ ],
+ "support": {
+ "issues": "https://github.com/swiftmailer/swiftmailer/issues",
+ "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-08T18:02:06+00:00"
+ },
+ {
+ "name": "symfony/console",
+ "version": "v4.4.18",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/console.git",
+ "reference": "12e071278e396cc3e1c149857337e9e192deca0b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/console/zipball/12e071278e396cc3e1c149857337e9e192deca0b",
+ "reference": "12e071278e396cc3e1c149857337e9e192deca0b",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1.3",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/polyfill-php73": "^1.8",
+ "symfony/polyfill-php80": "^1.15",
+ "symfony/service-contracts": "^1.1|^2"
+ },
+ "conflict": {
+ "symfony/dependency-injection": "<3.4",
+ "symfony/event-dispatcher": "<4.3|>=5",
+ "symfony/lock": "<4.4",
+ "symfony/process": "<3.3"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0"
+ },
+ "require-dev": {
+ "psr/log": "~1.0",
+ "symfony/config": "^3.4|^4.0|^5.0",
+ "symfony/dependency-injection": "^3.4|^4.0|^5.0",
+ "symfony/event-dispatcher": "^4.3",
+ "symfony/lock": "^4.4|^5.0",
+ "symfony/process": "^3.4|^4.0|^5.0",
+ "symfony/var-dumper": "^4.3|^5.0"
+ },
+ "suggest": {
+ "psr/log": "For using the console logger",
+ "symfony/event-dispatcher": "",
+ "symfony/lock": "",
+ "symfony/process": ""
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Console\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony Console Component",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/console/tree/v4.4.18"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-18T07:41:31+00:00"
+ },
+ {
+ "name": "symfony/css-selector",
+ "version": "v5.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/css-selector.git",
+ "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/css-selector/zipball/f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
+ "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\CssSelector\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Jean-François Simon",
+ "email": "jeanfrancois.simon@sensiolabs.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony CssSelector Component",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/css-selector/tree/v5.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-08T17:02:38+00:00"
+ },
+ {
+ "name": "symfony/debug",
+ "version": "v4.4.18",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/debug.git",
+ "reference": "5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/debug/zipball/5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544",
+ "reference": "5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1.3",
+ "psr/log": "~1.0",
+ "symfony/polyfill-php80": "^1.15"
+ },
+ "conflict": {
+ "symfony/http-kernel": "<3.4"
+ },
+ "require-dev": {
+ "symfony/http-kernel": "^3.4|^4.0|^5.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Debug\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony Debug Component",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/debug/tree/v4.4.18"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-10T16:34:26+00:00"
+ },
+ {
+ "name": "symfony/deprecation-contracts",
+ "version": "v2.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/deprecation-contracts.git",
+ "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
+ "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.2-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "files": [
+ "function.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "A generic function and convention to trigger deprecation notices",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/deprecation-contracts/tree/master"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-09-07T11:33:47+00:00"
+ },
+ {
+ "name": "symfony/error-handler",
+ "version": "v4.4.18",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/error-handler.git",
+ "reference": "ef2f7ddd3b9177bbf8ff2ecd8d0e970ed48da0c3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/error-handler/zipball/ef2f7ddd3b9177bbf8ff2ecd8d0e970ed48da0c3",
+ "reference": "ef2f7ddd3b9177bbf8ff2ecd8d0e970ed48da0c3",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1.3",
+ "psr/log": "~1.0",
+ "symfony/debug": "^4.4.5",
+ "symfony/polyfill-php80": "^1.15",
+ "symfony/var-dumper": "^4.4|^5.0"
+ },
+ "require-dev": {
+ "symfony/http-kernel": "^4.4|^5.0",
+ "symfony/serializer": "^4.4|^5.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\ErrorHandler\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony ErrorHandler Component",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/error-handler/tree/v4.4.18"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-09T11:15:38+00:00"
+ },
+ {
+ "name": "symfony/event-dispatcher",
+ "version": "v4.4.18",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/event-dispatcher.git",
+ "reference": "5d4c874b0eb1c32d40328a09dbc37307a5a910b0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/5d4c874b0eb1c32d40328a09dbc37307a5a910b0",
+ "reference": "5d4c874b0eb1c32d40328a09dbc37307a5a910b0",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1.3",
+ "symfony/event-dispatcher-contracts": "^1.1"
+ },
+ "conflict": {
+ "symfony/dependency-injection": "<3.4"
+ },
+ "provide": {
+ "psr/event-dispatcher-implementation": "1.0",
+ "symfony/event-dispatcher-implementation": "1.1"
+ },
+ "require-dev": {
+ "psr/log": "~1.0",
+ "symfony/config": "^3.4|^4.0|^5.0",
+ "symfony/dependency-injection": "^3.4|^4.0|^5.0",
+ "symfony/error-handler": "~3.4|~4.4",
+ "symfony/expression-language": "^3.4|^4.0|^5.0",
+ "symfony/http-foundation": "^3.4|^4.0|^5.0",
+ "symfony/service-contracts": "^1.1|^2",
+ "symfony/stopwatch": "^3.4|^4.0|^5.0"
+ },
+ "suggest": {
+ "symfony/dependency-injection": "",
+ "symfony/http-kernel": ""
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\EventDispatcher\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony EventDispatcher Component",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.18"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-18T07:41:31+00:00"
+ },
+ {
+ "name": "symfony/event-dispatcher-contracts",
+ "version": "v1.1.9",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/event-dispatcher-contracts.git",
+ "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
+ "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1.3"
+ },
+ "suggest": {
+ "psr/event-dispatcher": "",
+ "symfony/event-dispatcher-implementation": ""
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.1-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Contracts\\EventDispatcher\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to dispatching event",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.9"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-07-06T13:19:58+00:00"
+ },
+ {
+ "name": "symfony/finder",
+ "version": "v4.4.18",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/finder.git",
+ "reference": "ebd0965f2dc2d4e0f11487c16fbb041e50b5c09b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/ebd0965f2dc2d4e0f11487c16fbb041e50b5c09b",
+ "reference": "ebd0965f2dc2d4e0f11487c16fbb041e50b5c09b",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1.3"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Finder\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony Finder Component",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/finder/tree/v4.4.18"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-08T16:59:59+00:00"
+ },
+ {
+ "name": "symfony/http-client-contracts",
+ "version": "v2.3.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/http-client-contracts.git",
+ "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
+ "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5"
+ },
+ "suggest": {
+ "symfony/http-client-implementation": ""
+ },
+ "type": "library",
+ "extra": {
+ "branch-version": "2.3",
+ "branch-alias": {
+ "dev-main": "2.3-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Contracts\\HttpClient\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to HTTP clients",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-10-14T17:08:19+00:00"
+ },
+ {
+ "name": "symfony/http-foundation",
+ "version": "v4.4.18",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/http-foundation.git",
+ "reference": "5ebda66b51612516bf338d5f87da2f37ff74cf34"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5ebda66b51612516bf338d5f87da2f37ff74cf34",
+ "reference": "5ebda66b51612516bf338d5f87da2f37ff74cf34",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1.3",
+ "symfony/mime": "^4.3|^5.0",
+ "symfony/polyfill-mbstring": "~1.1",
+ "symfony/polyfill-php80": "^1.15"
+ },
+ "require-dev": {
+ "predis/predis": "~1.0",
+ "symfony/expression-language": "^3.4|^4.0|^5.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\HttpFoundation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony HttpFoundation Component",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/http-foundation/tree/v4.4.18"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-18T07:41:31+00:00"
+ },
+ {
+ "name": "symfony/http-kernel",
+ "version": "v4.4.18",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/http-kernel.git",
+ "reference": "eaff9a43e74513508867ecfa66ef94fbb96ab128"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/eaff9a43e74513508867ecfa66ef94fbb96ab128",
+ "reference": "eaff9a43e74513508867ecfa66ef94fbb96ab128",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1.3",
+ "psr/log": "~1.0",
+ "symfony/error-handler": "^4.4",
+ "symfony/event-dispatcher": "^4.4",
+ "symfony/http-client-contracts": "^1.1|^2",
+ "symfony/http-foundation": "^4.4|^5.0",
+ "symfony/polyfill-ctype": "^1.8",
+ "symfony/polyfill-php73": "^1.9",
+ "symfony/polyfill-php80": "^1.15"
+ },
+ "conflict": {
+ "symfony/browser-kit": "<4.3",
+ "symfony/config": "<3.4",
+ "symfony/console": ">=5",
+ "symfony/dependency-injection": "<4.3",
+ "symfony/translation": "<4.2",
+ "twig/twig": "<1.34|<2.4,>=2"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0"
+ },
+ "require-dev": {
+ "psr/cache": "~1.0",
+ "symfony/browser-kit": "^4.3|^5.0",
+ "symfony/config": "^3.4|^4.0|^5.0",
+ "symfony/console": "^3.4|^4.0",
+ "symfony/css-selector": "^3.4|^4.0|^5.0",
+ "symfony/dependency-injection": "^4.3|^5.0",
+ "symfony/dom-crawler": "^3.4|^4.0|^5.0",
+ "symfony/expression-language": "^3.4|^4.0|^5.0",
+ "symfony/finder": "^3.4|^4.0|^5.0",
+ "symfony/process": "^3.4|^4.0|^5.0",
+ "symfony/routing": "^3.4|^4.0|^5.0",
+ "symfony/stopwatch": "^3.4|^4.0|^5.0",
+ "symfony/templating": "^3.4|^4.0|^5.0",
+ "symfony/translation": "^4.2|^5.0",
+ "symfony/translation-contracts": "^1.1|^2",
+ "twig/twig": "^1.34|^2.4|^3.0"
+ },
+ "suggest": {
+ "symfony/browser-kit": "",
+ "symfony/config": "",
+ "symfony/console": "",
+ "symfony/dependency-injection": ""
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\HttpKernel\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony HttpKernel Component",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/http-kernel/tree/v4.4.18"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-18T13:32:33+00:00"
+ },
+ {
+ "name": "symfony/mime",
+ "version": "v5.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/mime.git",
+ "reference": "de97005aef7426ba008c46ba840fc301df577ada"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/mime/zipball/de97005aef7426ba008c46ba840fc301df577ada",
+ "reference": "de97005aef7426ba008c46ba840fc301df577ada",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "symfony/deprecation-contracts": "^2.1",
+ "symfony/polyfill-intl-idn": "^1.10",
+ "symfony/polyfill-mbstring": "^1.0",
+ "symfony/polyfill-php80": "^1.15"
+ },
+ "conflict": {
+ "symfony/mailer": "<4.4"
+ },
+ "require-dev": {
+ "egulias/email-validator": "^2.1.10",
+ "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
+ "symfony/dependency-injection": "^4.4|^5.0",
+ "symfony/property-access": "^4.4|^5.1",
+ "symfony/property-info": "^4.4|^5.1",
+ "symfony/serializer": "^5.2"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Mime\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "A library to manipulate MIME messages",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "mime",
+ "mime-type"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/mime/tree/v5.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-09T18:54:12+00:00"
+ },
+ {
+ "name": "symfony/polyfill-ctype",
+ "version": "v1.20.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-ctype.git",
+ "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
+ "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "suggest": {
+ "ext-ctype": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.20-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Polyfill\\Ctype\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Gert de Pagter",
+ "email": "BackEndTea@gmail.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for ctype functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "ctype",
+ "polyfill",
+ "portable"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-10-23T14:02:19+00:00"
+ },
+ {
+ "name": "symfony/polyfill-iconv",
+ "version": "v1.20.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-iconv.git",
+ "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
+ "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "suggest": {
+ "ext-iconv": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.20-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Polyfill\\Iconv\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for the Iconv extension",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "iconv",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-10-23T14:02:19+00:00"
+ },
+ {
+ "name": "symfony/polyfill-intl-idn",
+ "version": "v1.20.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-intl-idn.git",
+ "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
+ "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1",
+ "symfony/polyfill-intl-normalizer": "^1.10",
+ "symfony/polyfill-php72": "^1.10"
+ },
+ "suggest": {
+ "ext-intl": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.20-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Polyfill\\Intl\\Idn\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Laurent Bassin",
+ "email": "laurent@bassin.info"
+ },
+ {
+ "name": "Trevor Rowbotham",
+ "email": "trevor.rowbotham@pm.me"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "idn",
+ "intl",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-10-23T14:02:19+00:00"
+ },
+ {
+ "name": "symfony/polyfill-intl-normalizer",
+ "version": "v1.20.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
+ "reference": "727d1096295d807c309fb01a851577302394c897"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
+ "reference": "727d1096295d807c309fb01a851577302394c897",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "suggest": {
+ "ext-intl": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.20-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ],
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for intl's Normalizer class and related functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "intl",
+ "normalizer",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-10-23T14:02:19+00:00"
+ },
+ {
+ "name": "symfony/polyfill-mbstring",
+ "version": "v1.20.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
+ "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
+ "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "suggest": {
+ "ext-mbstring": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.20-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Polyfill\\Mbstring\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for the Mbstring extension",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "mbstring",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-10-23T14:02:19+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php72",
+ "version": "v1.20.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php72.git",
+ "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
+ "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.20-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Polyfill\\Php72\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php72/tree/v1.20.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-10-23T14:02:19+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php73",
+ "version": "v1.20.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php73.git",
+ "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
+ "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.20-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Polyfill\\Php73\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ],
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php73/tree/v1.20.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-10-23T14:02:19+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php80",
+ "version": "v1.20.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php80.git",
+ "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
+ "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.20-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Polyfill\\Php80\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ],
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ion Bazan",
+ "email": "ion.bazan@gmail.com"
+ },
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-10-23T14:02:19+00:00"
+ },
+ {
+ "name": "symfony/process",
+ "version": "v4.4.18",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/process.git",
+ "reference": "075316ff72233ce3d04a9743414292e834f2cb4a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/process/zipball/075316ff72233ce3d04a9743414292e834f2cb4a",
+ "reference": "075316ff72233ce3d04a9743414292e834f2cb4a",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1.3"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Process\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony Process Component",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/process/tree/v4.4.18"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-08T16:59:59+00:00"
+ },
+ {
+ "name": "symfony/routing",
+ "version": "v4.4.18",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/routing.git",
+ "reference": "80b042c20b035818daec844723e23b9825134ba0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/routing/zipball/80b042c20b035818daec844723e23b9825134ba0",
+ "reference": "80b042c20b035818daec844723e23b9825134ba0",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1.3"
+ },
+ "conflict": {
+ "symfony/config": "<4.2",
+ "symfony/dependency-injection": "<3.4",
+ "symfony/yaml": "<3.4"
+ },
+ "require-dev": {
+ "doctrine/annotations": "~1.2",
+ "psr/log": "~1.0",
+ "symfony/config": "^4.2|^5.0",
+ "symfony/dependency-injection": "^3.4|^4.0|^5.0",
+ "symfony/expression-language": "^3.4|^4.0|^5.0",
+ "symfony/http-foundation": "^3.4|^4.0|^5.0",
+ "symfony/yaml": "^3.4|^4.0|^5.0"
+ },
+ "suggest": {
+ "doctrine/annotations": "For using the annotation loader",
+ "symfony/config": "For using the all-in-one router or any loader",
+ "symfony/expression-language": "For using expression matching",
+ "symfony/http-foundation": "For using a Symfony Request object",
+ "symfony/yaml": "For using the YAML loader"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Routing\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony Routing Component",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "router",
+ "routing",
+ "uri",
+ "url"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/routing/tree/v4.4.18"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-08T16:59:59+00:00"
+ },
+ {
+ "name": "symfony/service-contracts",
+ "version": "v2.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/service-contracts.git",
+ "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
+ "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "psr/container": "^1.0"
+ },
+ "suggest": {
+ "symfony/service-implementation": ""
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.2-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Contracts\\Service\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to writing services",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/service-contracts/tree/master"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-09-07T11:33:47+00:00"
+ },
+ {
+ "name": "symfony/translation",
+ "version": "v4.4.18",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/translation.git",
+ "reference": "c1001b7d75b3136648f94b245588209d881c6939"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/translation/zipball/c1001b7d75b3136648f94b245588209d881c6939",
+ "reference": "c1001b7d75b3136648f94b245588209d881c6939",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1.3",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/translation-contracts": "^1.1.6|^2"
+ },
+ "conflict": {
+ "symfony/config": "<3.4",
+ "symfony/dependency-injection": "<3.4",
+ "symfony/http-kernel": "<4.4",
+ "symfony/yaml": "<3.4"
+ },
+ "provide": {
+ "symfony/translation-implementation": "1.0"
+ },
+ "require-dev": {
+ "psr/log": "~1.0",
+ "symfony/config": "^3.4|^4.0|^5.0",
+ "symfony/console": "^3.4|^4.0|^5.0",
+ "symfony/dependency-injection": "^3.4|^4.0|^5.0",
+ "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
+ "symfony/http-kernel": "^4.4",
+ "symfony/intl": "^3.4|^4.0|^5.0",
+ "symfony/service-contracts": "^1.1.2|^2",
+ "symfony/yaml": "^3.4|^4.0|^5.0"
+ },
+ "suggest": {
+ "psr/log-implementation": "To use logging capability in translator",
+ "symfony/config": "",
+ "symfony/yaml": ""
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Translation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony Translation Component",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/translation/tree/v4.4.18"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-08T16:59:59+00:00"
+ },
+ {
+ "name": "symfony/translation-contracts",
+ "version": "v2.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/translation-contracts.git",
+ "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
+ "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5"
+ },
+ "suggest": {
+ "symfony/translation-implementation": ""
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.3-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Contracts\\Translation\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to translation",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-09-28T13:05:58+00:00"
+ },
+ {
+ "name": "symfony/var-dumper",
+ "version": "v4.4.18",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/var-dumper.git",
+ "reference": "4f31364bbc8177f2a6dbc125ac3851634ebe2a03"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4f31364bbc8177f2a6dbc125ac3851634ebe2a03",
+ "reference": "4f31364bbc8177f2a6dbc125ac3851634ebe2a03",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1.3",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/polyfill-php72": "~1.5",
+ "symfony/polyfill-php80": "^1.15"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
+ "symfony/console": "<3.4"
+ },
+ "require-dev": {
+ "ext-iconv": "*",
+ "symfony/console": "^3.4|^4.0|^5.0",
+ "symfony/process": "^4.4|^5.0",
+ "twig/twig": "^1.34|^2.4|^3.0"
+ },
+ "suggest": {
+ "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
+ "ext-intl": "To show region name in time zone dump",
+ "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
+ },
+ "bin": [
+ "Resources/bin/var-dump-server"
+ ],
+ "type": "library",
+ "autoload": {
+ "files": [
+ "Resources/functions/dump.php"
+ ],
+ "psr-4": {
+ "Symfony\\Component\\VarDumper\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony mechanism for exploring and dumping PHP variables",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "debug",
+ "dump"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/var-dumper/tree/v4.4.18"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-08T16:59:59+00:00"
+ },
+ {
+ "name": "tijsverkoyen/css-to-inline-styles",
+ "version": "2.2.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
+ "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
+ "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-libxml": "*",
+ "php": "^5.5 || ^7.0 || ^8.0",
+ "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.2.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "TijsVerkoyen\\CssToInlineStyles\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Tijs Verkoyen",
+ "email": "css_to_inline_styles@verkoyen.eu",
+ "role": "Developer"
+ }
+ ],
+ "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
+ "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
+ "support": {
+ "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
+ "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
+ },
+ "time": "2020-07-13T06:12:54+00:00"
+ },
+ {
+ "name": "vlucas/phpdotenv",
+ "version": "v2.6.6",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/vlucas/phpdotenv.git",
+ "reference": "e1d57f62db3db00d9139078cbedf262280701479"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/e1d57f62db3db00d9139078cbedf262280701479",
+ "reference": "e1d57f62db3db00d9139078cbedf262280701479",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.3.9 || ^7.0 || ^8.0",
+ "symfony/polyfill-ctype": "^1.17"
+ },
+ "require-dev": {
+ "ext-filter": "*",
+ "ext-pcre": "*",
+ "phpunit/phpunit": "^4.8.35 || ^5.7.27"
+ },
+ "suggest": {
+ "ext-filter": "Required to use the boolean validator.",
+ "ext-pcre": "Required to use most of the library."
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.6-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Dotenv\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "graham@alt-three.com",
+ "homepage": "https://gjcampbell.co.uk/"
+ },
+ {
+ "name": "Vance Lucas",
+ "email": "vance@vancelucas.com",
+ "homepage": "https://vancelucas.com/"
+ }
+ ],
+ "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
+ "keywords": [
+ "dotenv",
+ "env",
+ "environment"
+ ],
+ "support": {
+ "issues": "https://github.com/vlucas/phpdotenv/issues",
+ "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.6"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-07-14T17:54:18+00:00"
+ },
+ {
+ "name": "willwashburn/phpamo",
+ "version": "1.0.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/willwashburn/phpamo.git",
+ "reference": "026e44648c7e4154ef50763a3f0feed81b259054"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/willwashburn/phpamo/zipball/026e44648c7e4154ef50763a3f0feed81b259054",
+ "reference": "026e44648c7e4154ef50763a3f0feed81b259054",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "~4.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "WillWashburn\\Phpamo\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Will Washburn",
+ "email": "will.washburn@gmail.com"
+ }
+ ],
+ "description": "A PHP library to create urls for Camo - the SSL image proxy",
+ "homepage": "https://github.com/willwashburn/phpamo",
+ "keywords": [
+ "atmos camo",
+ "camo",
+ "proxy",
+ "ssl",
+ "ssl proxy",
+ "tls",
+ "tls proxy"
+ ],
+ "support": {
+ "issues": "https://github.com/willwashburn/phpamo/issues",
+ "source": "https://github.com/willwashburn/phpamo/tree/v1.0.4"
+ },
+ "time": "2020-04-21T12:28:46+00:00"
+ }
+ ],
+ "packages-dev": [
+ {
+ "name": "doctrine/instantiator",
+ "version": "1.4.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/instantiator.git",
+ "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
+ "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^8.0",
+ "ext-pdo": "*",
+ "ext-phar": "*",
+ "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
+ "phpstan/phpstan": "^0.12",
+ "phpstan/phpstan-phpunit": "^0.12",
+ "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com",
+ "homepage": "https://ocramius.github.io/"
+ }
+ ],
+ "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
+ "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
+ "keywords": [
+ "constructor",
+ "instantiate"
+ ],
+ "support": {
+ "issues": "https://github.com/doctrine/instantiator/issues",
+ "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
+ },
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-11-10T18:47:58+00:00"
+ },
+ {
+ "name": "filp/whoops",
+ "version": "2.9.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/filp/whoops.git",
+ "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/filp/whoops/zipball/307fb34a5ab697461ec4c9db865b20ff2fd40771",
+ "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.5.9 || ^7.0 || ^8.0",
+ "psr/log": "^1.0.1"
+ },
+ "require-dev": {
+ "mockery/mockery": "^0.9 || ^1.0",
+ "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
+ "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
+ },
+ "suggest": {
+ "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
+ "whoops/soap": "Formats errors as SOAP responses"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.7-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Whoops\\": "src/Whoops/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Filipe Dobreira",
+ "homepage": "https://github.com/filp",
+ "role": "Developer"
+ }
+ ],
+ "description": "php error handling for cool kids",
+ "homepage": "https://filp.github.io/whoops/",
+ "keywords": [
+ "error",
+ "exception",
+ "handling",
+ "library",
+ "throwable",
+ "whoops"
+ ],
+ "support": {
+ "issues": "https://github.com/filp/whoops/issues",
+ "source": "https://github.com/filp/whoops/tree/2.9.1"
+ },
+ "time": "2020-11-01T12:00:00+00:00"
+ },
+ {
+ "name": "fzaninotto/faker",
+ "version": "v1.9.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/fzaninotto/Faker.git",
+ "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
+ "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.3.3 || ^7.0"
+ },
+ "require-dev": {
+ "ext-intl": "*",
+ "phpunit/phpunit": "^4.8.35 || ^5.7",
+ "squizlabs/php_codesniffer": "^2.9.2"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.9-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Faker\\": "src/Faker/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "François Zaninotto"
+ }
+ ],
+ "description": "Faker is a PHP library that generates fake data for you.",
+ "keywords": [
+ "data",
+ "faker",
+ "fixtures"
+ ],
+ "support": {
+ "issues": "https://github.com/fzaninotto/Faker/issues",
+ "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
+ },
+ "abandoned": true,
+ "time": "2020-12-11T09:56:16+00:00"
+ },
+ {
+ "name": "hamcrest/hamcrest-php",
+ "version": "v2.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/hamcrest/hamcrest-php.git",
+ "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
+ "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.3|^7.0|^8.0"
+ },
+ "replace": {
+ "cordoval/hamcrest-php": "*",
+ "davedevelopment/hamcrest-php": "*",
+ "kodova/hamcrest-php": "*"
+ },
+ "require-dev": {
+ "phpunit/php-file-iterator": "^1.4 || ^2.0",
+ "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.1-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "hamcrest"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "description": "This is the PHP port of Hamcrest Matchers",
+ "keywords": [
+ "test"
+ ],
+ "support": {
+ "issues": "https://github.com/hamcrest/hamcrest-php/issues",
+ "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
+ },
+ "time": "2020-07-09T08:09:16+00:00"
+ },
+ {
+ "name": "mockery/mockery",
+ "version": "1.3.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/mockery/mockery.git",
+ "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/mockery/mockery/zipball/60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
+ "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
+ "shasum": ""
+ },
+ "require": {
+ "hamcrest/hamcrest-php": "^2.0.1",
+ "lib-pcre": ">=7.0",
+ "php": ">=5.6.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^5.7.10|^6.5|^7.5|^8.5|^9.3"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-0": {
+ "Mockery": "library/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Pádraic Brady",
+ "email": "padraic.brady@gmail.com",
+ "homepage": "http://blog.astrumfutura.com"
+ },
+ {
+ "name": "Dave Marshall",
+ "email": "dave.marshall@atstsolutions.co.uk",
+ "homepage": "http://davedevelopment.co.uk"
+ }
+ ],
+ "description": "Mockery is a simple yet flexible PHP mock object framework",
+ "homepage": "https://github.com/mockery/mockery",
+ "keywords": [
+ "BDD",
+ "TDD",
+ "library",
+ "mock",
+ "mock objects",
+ "mockery",
+ "stub",
+ "test",
+ "test double",
+ "testing"
+ ],
+ "support": {
+ "issues": "https://github.com/mockery/mockery/issues",
+ "source": "https://github.com/mockery/mockery/tree/1.3.3"
+ },
+ "time": "2020-08-11T18:10:21+00:00"
+ },
+ {
+ "name": "myclabs/deep-copy",
+ "version": "1.10.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/myclabs/DeepCopy.git",
+ "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
+ "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0"
+ },
+ "replace": {
+ "myclabs/deep-copy": "self.version"
+ },
+ "require-dev": {
+ "doctrine/collections": "^1.0",
+ "doctrine/common": "^2.6",
+ "phpunit/phpunit": "^7.1"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "DeepCopy\\": "src/DeepCopy/"
+ },
+ "files": [
+ "src/DeepCopy/deep_copy.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "Create deep copies (clones) of your objects",
+ "keywords": [
+ "clone",
+ "copy",
+ "duplicate",
+ "object",
+ "object graph"
+ ],
+ "support": {
+ "issues": "https://github.com/myclabs/DeepCopy/issues",
+ "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
+ },
+ "funding": [
+ {
+ "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-11-13T09:40:50+00:00"
+ },
+ {
+ "name": "nunomaduro/collision",
+ "version": "v1.1.22",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nunomaduro/collision.git",
+ "reference": "236609bd5a067587f600bc55c5d683b840798b22"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nunomaduro/collision/zipball/236609bd5a067587f600bc55c5d683b840798b22",
+ "reference": "236609bd5a067587f600bc55c5d683b840798b22",
+ "shasum": ""
+ },
+ "require": {
+ "filp/whoops": "^2.1.4",
+ "php": "^7.1",
+ "symfony/console": "~2.8|~3.3|~4.0"
+ },
+ "require-dev": {
+ "laravel/framework": "5.5.*",
+ "phpunit/phpunit": "~6.5"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "NunoMaduro\\Collision\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nuno Maduro",
+ "email": "enunomaduro@gmail.com"
+ }
+ ],
+ "description": "Cli error handling for console/command-line PHP applications.",
+ "keywords": [
+ "artisan",
+ "cli",
+ "command-line",
+ "console",
+ "error",
+ "handling",
+ "laravel",
+ "laravel-zero",
+ "php",
+ "symfony"
+ ],
+ "support": {
+ "issues": "https://github.com/nunomaduro/collision/issues",
+ "source": "https://github.com/nunomaduro/collision"
+ },
+ "time": "2018-02-07T10:42:20+00:00"
+ },
+ {
+ "name": "phar-io/manifest",
+ "version": "1.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phar-io/manifest.git",
+ "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
+ "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-phar": "*",
+ "phar-io/version": "^2.0",
+ "php": "^5.6 || ^7.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Heuer",
+ "email": "sebastian@phpeople.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
+ "support": {
+ "issues": "https://github.com/phar-io/manifest/issues",
+ "source": "https://github.com/phar-io/manifest/tree/master"
+ },
+ "time": "2018-07-08T19:23:20+00:00"
+ },
+ {
+ "name": "phar-io/version",
+ "version": "2.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phar-io/version.git",
+ "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
+ "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.6 || ^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Heuer",
+ "email": "sebastian@phpeople.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "Library for handling version information and constraints",
+ "support": {
+ "issues": "https://github.com/phar-io/version/issues",
+ "source": "https://github.com/phar-io/version/tree/master"
+ },
+ "time": "2018-07-08T19:19:57+00:00"
+ },
+ {
+ "name": "phpdocumentor/reflection-common",
+ "version": "2.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
+ "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
+ "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-2.x": "2.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "phpDocumentor\\Reflection\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jaap van Otterdijk",
+ "email": "opensource@ijaap.nl"
+ }
+ ],
+ "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
+ "homepage": "http://www.phpdoc.org",
+ "keywords": [
+ "FQSEN",
+ "phpDocumentor",
+ "phpdoc",
+ "reflection",
+ "static analysis"
+ ],
+ "support": {
+ "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
+ "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
+ },
+ "time": "2020-06-27T09:03:43+00:00"
+ },
+ {
+ "name": "phpdocumentor/reflection-docblock",
+ "version": "5.2.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
+ "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
+ "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
+ "shasum": ""
+ },
+ "require": {
+ "ext-filter": "*",
+ "php": "^7.2 || ^8.0",
+ "phpdocumentor/reflection-common": "^2.2",
+ "phpdocumentor/type-resolver": "^1.3",
+ "webmozart/assert": "^1.9.1"
+ },
+ "require-dev": {
+ "mockery/mockery": "~1.3.2"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "5.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "phpDocumentor\\Reflection\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Mike van Riel",
+ "email": "me@mikevanriel.com"
+ },
+ {
+ "name": "Jaap van Otterdijk",
+ "email": "account@ijaap.nl"
+ }
+ ],
+ "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
+ "support": {
+ "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
+ "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
+ },
+ "time": "2020-09-03T19:13:55+00:00"
+ },
+ {
+ "name": "phpdocumentor/type-resolver",
+ "version": "1.4.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpDocumentor/TypeResolver.git",
+ "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
+ "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0",
+ "phpdocumentor/reflection-common": "^2.0"
+ },
+ "require-dev": {
+ "ext-tokenizer": "*"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "phpDocumentor\\Reflection\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Mike van Riel",
+ "email": "me@mikevanriel.com"
+ }
+ ],
+ "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
+ "support": {
+ "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
+ "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
+ },
+ "time": "2020-09-17T18:55:26+00:00"
+ },
+ {
+ "name": "phpspec/prophecy",
+ "version": "1.12.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpspec/prophecy.git",
+ "reference": "245710e971a030f42e08f4912863805570f23d39"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
+ "reference": "245710e971a030f42e08f4912863805570f23d39",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/instantiator": "^1.2",
+ "php": "^7.2 || ~8.0, <8.1",
+ "phpdocumentor/reflection-docblock": "^5.2",
+ "sebastian/comparator": "^3.0 || ^4.0",
+ "sebastian/recursion-context": "^3.0 || ^4.0"
+ },
+ "require-dev": {
+ "phpspec/phpspec": "^6.0",
+ "phpunit/phpunit": "^8.0 || ^9.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.11.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Prophecy\\": "src/Prophecy"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Konstantin Kudryashov",
+ "email": "ever.zet@gmail.com",
+ "homepage": "http://everzet.com"
+ },
+ {
+ "name": "Marcello Duarte",
+ "email": "marcello.duarte@gmail.com"
+ }
+ ],
+ "description": "Highly opinionated mocking framework for PHP 5.3+",
+ "homepage": "https://github.com/phpspec/prophecy",
+ "keywords": [
+ "Double",
+ "Dummy",
+ "fake",
+ "mock",
+ "spy",
+ "stub"
+ ],
+ "support": {
+ "issues": "https://github.com/phpspec/prophecy/issues",
+ "source": "https://github.com/phpspec/prophecy/tree/1.12.2"
+ },
+ "time": "2020-12-19T10:15:11+00:00"
+ },
+ {
+ "name": "phpunit/php-code-coverage",
+ "version": "6.1.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
+ "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
+ "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-xmlwriter": "*",
+ "php": "^7.1",
+ "phpunit/php-file-iterator": "^2.0",
+ "phpunit/php-text-template": "^1.2.1",
+ "phpunit/php-token-stream": "^3.0",
+ "sebastian/code-unit-reverse-lookup": "^1.0.1",
+ "sebastian/environment": "^3.1 || ^4.0",
+ "sebastian/version": "^2.0.1",
+ "theseer/tokenizer": "^1.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^7.0"
+ },
+ "suggest": {
+ "ext-xdebug": "^2.6.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "6.1-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
+ "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
+ "keywords": [
+ "coverage",
+ "testing",
+ "xunit"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
+ "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/master"
+ },
+ "time": "2018-10-31T16:06:48+00:00"
+ },
+ {
+ "name": "phpunit/php-file-iterator",
+ "version": "2.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
+ "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
+ "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "FilterIterator implementation that filters files based on a list of suffixes.",
+ "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
+ "keywords": [
+ "filesystem",
+ "iterator"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
+ "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T08:25:21+00:00"
+ },
+ {
+ "name": "phpunit/php-text-template",
+ "version": "1.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-text-template.git",
+ "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
+ "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.3"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Simple template engine.",
+ "homepage": "https://github.com/sebastianbergmann/php-text-template/",
+ "keywords": [
+ "template"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
+ "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
+ },
+ "time": "2015-06-21T13:50:34+00:00"
+ },
+ {
+ "name": "phpunit/php-timer",
+ "version": "2.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-timer.git",
+ "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
+ "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.1-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Utility class for timing",
+ "homepage": "https://github.com/sebastianbergmann/php-timer/",
+ "keywords": [
+ "timer"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-timer/issues",
+ "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T08:20:02+00:00"
+ },
+ {
+ "name": "phpunit/php-token-stream",
+ "version": "3.1.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-token-stream.git",
+ "reference": "472b687829041c24b25f475e14c2f38a09edf1c2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/472b687829041c24b25f475e14c2f38a09edf1c2",
+ "reference": "472b687829041c24b25f475e14c2f38a09edf1c2",
+ "shasum": ""
+ },
+ "require": {
+ "ext-tokenizer": "*",
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^7.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.1-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Wrapper around PHP's tokenizer extension.",
+ "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
+ "keywords": [
+ "tokenizer"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
+ "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "abandoned": true,
+ "time": "2020-11-30T08:38:46+00:00"
+ },
+ {
+ "name": "phpunit/phpunit",
+ "version": "7.5.20",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/phpunit.git",
+ "reference": "9467db479d1b0487c99733bb1e7944d32deded2c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c",
+ "reference": "9467db479d1b0487c99733bb1e7944d32deded2c",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/instantiator": "^1.1",
+ "ext-dom": "*",
+ "ext-json": "*",
+ "ext-libxml": "*",
+ "ext-mbstring": "*",
+ "ext-xml": "*",
+ "myclabs/deep-copy": "^1.7",
+ "phar-io/manifest": "^1.0.2",
+ "phar-io/version": "^2.0",
+ "php": "^7.1",
+ "phpspec/prophecy": "^1.7",
+ "phpunit/php-code-coverage": "^6.0.7",
+ "phpunit/php-file-iterator": "^2.0.1",
+ "phpunit/php-text-template": "^1.2.1",
+ "phpunit/php-timer": "^2.1",
+ "sebastian/comparator": "^3.0",
+ "sebastian/diff": "^3.0",
+ "sebastian/environment": "^4.0",
+ "sebastian/exporter": "^3.1",
+ "sebastian/global-state": "^2.0",
+ "sebastian/object-enumerator": "^3.0.3",
+ "sebastian/resource-operations": "^2.0",
+ "sebastian/version": "^2.0.1"
+ },
+ "conflict": {
+ "phpunit/phpunit-mock-objects": "*"
+ },
+ "require-dev": {
+ "ext-pdo": "*"
+ },
+ "suggest": {
+ "ext-soap": "*",
+ "ext-xdebug": "*",
+ "phpunit/php-invoker": "^2.0"
+ },
+ "bin": [
+ "phpunit"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "7.5-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "The PHP Unit Testing framework.",
+ "homepage": "https://phpunit.de/",
+ "keywords": [
+ "phpunit",
+ "testing",
+ "xunit"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/phpunit/issues",
+ "source": "https://github.com/sebastianbergmann/phpunit/tree/7.5.20"
+ },
+ "time": "2020-01-08T08:45:45+00:00"
+ },
+ {
+ "name": "sebastian/code-unit-reverse-lookup",
+ "version": "1.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
+ "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
+ "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.6"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Looks up which function or method a line of code belongs to",
+ "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
+ "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T08:15:22+00:00"
+ },
+ {
+ "name": "sebastian/comparator",
+ "version": "3.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/comparator.git",
+ "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
+ "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1",
+ "sebastian/diff": "^3.0",
+ "sebastian/exporter": "^3.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
+ },
+ {
+ "name": "Volker Dusch",
+ "email": "github@wallbash.com"
+ },
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@2bepublished.at"
+ }
+ ],
+ "description": "Provides the functionality to compare PHP values for equality",
+ "homepage": "https://github.com/sebastianbergmann/comparator",
+ "keywords": [
+ "comparator",
+ "compare",
+ "equality"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/comparator/issues",
+ "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T08:04:30+00:00"
+ },
+ {
+ "name": "sebastian/diff",
+ "version": "3.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/diff.git",
+ "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
+ "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^7.5 || ^8.0",
+ "symfony/process": "^2 || ^3.3 || ^4"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Kore Nordmann",
+ "email": "mail@kore-nordmann.de"
+ }
+ ],
+ "description": "Diff implementation",
+ "homepage": "https://github.com/sebastianbergmann/diff",
+ "keywords": [
+ "diff",
+ "udiff",
+ "unidiff",
+ "unified diff"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/diff/issues",
+ "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:59:04+00:00"
+ },
+ {
+ "name": "sebastian/environment",
+ "version": "4.2.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/environment.git",
+ "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
+ "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^7.5"
+ },
+ "suggest": {
+ "ext-posix": "*"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.2-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Provides functionality to handle HHVM/PHP environments",
+ "homepage": "http://www.github.com/sebastianbergmann/environment",
+ "keywords": [
+ "Xdebug",
+ "environment",
+ "hhvm"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/environment/issues",
+ "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:53:42+00:00"
+ },
+ {
+ "name": "sebastian/exporter",
+ "version": "3.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/exporter.git",
+ "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
+ "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.0",
+ "sebastian/recursion-context": "^3.0"
+ },
+ "require-dev": {
+ "ext-mbstring": "*",
+ "phpunit/phpunit": "^6.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.1.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
+ },
+ {
+ "name": "Volker Dusch",
+ "email": "github@wallbash.com"
+ },
+ {
+ "name": "Adam Harvey",
+ "email": "aharvey@php.net"
+ },
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
+ }
+ ],
+ "description": "Provides the functionality to export PHP variables for visualization",
+ "homepage": "http://www.github.com/sebastianbergmann/exporter",
+ "keywords": [
+ "export",
+ "exporter"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/exporter/issues",
+ "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:47:53+00:00"
+ },
+ {
+ "name": "sebastian/global-state",
+ "version": "2.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/global-state.git",
+ "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
+ "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.0"
+ },
+ "suggest": {
+ "ext-uopz": "*"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Snapshotting of global state",
+ "homepage": "http://www.github.com/sebastianbergmann/global-state",
+ "keywords": [
+ "global state"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/global-state/issues",
+ "source": "https://github.com/sebastianbergmann/global-state/tree/2.0.0"
+ },
+ "time": "2017-04-27T15:39:26+00:00"
+ },
+ {
+ "name": "sebastian/object-enumerator",
+ "version": "3.0.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/object-enumerator.git",
+ "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
+ "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.0",
+ "sebastian/object-reflector": "^1.1.1",
+ "sebastian/recursion-context": "^3.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.0.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Traverses array structures and object graphs to enumerate all referenced objects",
+ "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
+ "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:40:27+00:00"
+ },
+ {
+ "name": "sebastian/object-reflector",
+ "version": "1.1.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/object-reflector.git",
+ "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
+ "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.1-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Allows reflection of object attributes, including inherited and non-public ones",
+ "homepage": "https://github.com/sebastianbergmann/object-reflector/",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
+ "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:37:18+00:00"
+ },
+ {
+ "name": "sebastian/recursion-context",
+ "version": "3.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/recursion-context.git",
+ "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
+ "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.0.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
+ },
+ {
+ "name": "Adam Harvey",
+ "email": "aharvey@php.net"
+ }
+ ],
+ "description": "Provides functionality to recursively process PHP variables",
+ "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
+ "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:34:24+00:00"
+ },
+ {
+ "name": "sebastian/resource-operations",
+ "version": "2.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/resource-operations.git",
+ "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
+ "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Provides a list of PHP built-in functions that operate on resources",
+ "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
+ "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:30:19+00:00"
+ },
+ {
+ "name": "sebastian/version",
+ "version": "2.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/version.git",
+ "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
+ "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.6"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library that helps with managing the version number of Git-hosted PHP projects",
+ "homepage": "https://github.com/sebastianbergmann/version",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/version/issues",
+ "source": "https://github.com/sebastianbergmann/version/tree/master"
+ },
+ "time": "2016-10-03T07:35:21+00:00"
+ },
+ {
+ "name": "symfony/thanks",
+ "version": "v1.2.10",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/thanks.git",
+ "reference": "e9c4709560296acbd4fe9e12b8d57a925aa7eae8"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/thanks/zipball/e9c4709560296acbd4fe9e12b8d57a925aa7eae8",
+ "reference": "e9c4709560296acbd4fe9e12b8d57a925aa7eae8",
+ "shasum": ""
+ },
+ "require": {
+ "composer-plugin-api": "^1.0|^2.0",
+ "php": ">=5.5.9"
+ },
+ "type": "composer-plugin",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.2-dev"
+ },
+ "class": "Symfony\\Thanks\\Thanks"
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Thanks\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ }
+ ],
+ "description": "Encourages sending ⭐ and 💵 to fellow PHP package maintainers (not limited to Symfony components)!",
+ "support": {
+ "issues": "https://github.com/symfony/thanks/issues",
+ "source": "https://github.com/symfony/thanks/tree/v1.2.10"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-10-14T17:47:37+00:00"
+ },
+ {
+ "name": "theseer/tokenizer",
+ "version": "1.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/theseer/tokenizer.git",
+ "reference": "75a63c33a8577608444246075ea0af0d052e452a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
+ "reference": "75a63c33a8577608444246075ea0af0d052e452a",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-tokenizer": "*",
+ "ext-xmlwriter": "*",
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
+ "support": {
+ "issues": "https://github.com/theseer/tokenizer/issues",
+ "source": "https://github.com/theseer/tokenizer/tree/master"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/theseer",
+ "type": "github"
+ }
+ ],
+ "time": "2020-07-12T23:59:07+00:00"
+ },
+ {
+ "name": "webmozart/assert",
+ "version": "1.9.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/webmozart/assert.git",
+ "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
+ "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.3.3 || ^7.0 || ^8.0",
+ "symfony/polyfill-ctype": "^1.8"
+ },
+ "conflict": {
+ "phpstan/phpstan": "<0.12.20",
+ "vimeo/psalm": "<3.9.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8.36 || ^7.5.13"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Webmozart\\Assert\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
+ }
+ ],
+ "description": "Assertions to validate method input/output with nice error messages.",
+ "keywords": [
+ "assert",
+ "check",
+ "validate"
+ ],
+ "support": {
+ "issues": "https://github.com/webmozart/assert/issues",
+ "source": "https://github.com/webmozart/assert/tree/master"
+ },
+ "time": "2020-07-08T17:02:28+00:00"
+ }
+ ],
+ "aliases": [],
+ "minimum-stability": "dev",
+ "stability-flags": [],
+ "prefer-stable": true,
+ "prefer-lowest": false,
+ "platform": {
+ "php": ">=7.1.3"
+ },
+ "platform-dev": [],
+ "plugin-api-version": "2.0.0"
+}
diff --git a/config/app.php b/config/app.php
index 9e6c86c..59d20f6 100644
--- a/config/app.php
+++ b/config/app.php
@@ -210,7 +210,6 @@ return [
'View' => Illuminate\Support\Facades\View::class,
'TF' => App\Libraries\TemplateFunction::class,
- 'Input' => Illuminate\Support\Facades\Input::class,
],
diff --git a/public/css/MaterialIcons-Regular.eot b/public/css/MaterialIcons-Regular.eot
new file mode 100644
index 0000000..70508eb
Binary files /dev/null and b/public/css/MaterialIcons-Regular.eot differ
diff --git a/public/css/MaterialIcons-Regular.ijmap b/public/css/MaterialIcons-Regular.ijmap
new file mode 100644
index 0000000..d9f1d25
--- /dev/null
+++ b/public/css/MaterialIcons-Regular.ijmap
@@ -0,0 +1 @@
+{"icons":{"e84d":{"name":"3d Rotation"},"eb3b":{"name":"Ac Unit"},"e190":{"name":"Access Alarm"},"e191":{"name":"Access Alarms"},"e192":{"name":"Access Time"},"e84e":{"name":"Accessibility"},"e914":{"name":"Accessible"},"e84f":{"name":"Account Balance"},"e850":{"name":"Account Balance Wallet"},"e851":{"name":"Account Box"},"e853":{"name":"Account Circle"},"e60e":{"name":"Adb"},"e145":{"name":"Add"},"e439":{"name":"Add A Photo"},"e193":{"name":"Add Alarm"},"e003":{"name":"Add Alert"},"e146":{"name":"Add Box"},"e147":{"name":"Add Circle"},"e148":{"name":"Add Circle Outline"},"e567":{"name":"Add Location"},"e854":{"name":"Add Shopping Cart"},"e39d":{"name":"Add To Photos"},"e05c":{"name":"Add To Queue"},"e39e":{"name":"Adjust"},"e630":{"name":"Airline Seat Flat"},"e631":{"name":"Airline Seat Flat Angled"},"e632":{"name":"Airline Seat Individual Suite"},"e633":{"name":"Airline Seat Legroom Extra"},"e634":{"name":"Airline Seat Legroom Normal"},"e635":{"name":"Airline Seat Legroom Reduced"},"e636":{"name":"Airline Seat Recline Extra"},"e637":{"name":"Airline Seat Recline Normal"},"e195":{"name":"Airplanemode Active"},"e194":{"name":"Airplanemode Inactive"},"e055":{"name":"Airplay"},"eb3c":{"name":"Airport Shuttle"},"e855":{"name":"Alarm"},"e856":{"name":"Alarm Add"},"e857":{"name":"Alarm Off"},"e858":{"name":"Alarm On"},"e019":{"name":"Album"},"eb3d":{"name":"All Inclusive"},"e90b":{"name":"All Out"},"e859":{"name":"Android"},"e85a":{"name":"Announcement"},"e5c3":{"name":"Apps"},"e149":{"name":"Archive"},"e5c4":{"name":"Arrow Back"},"e5db":{"name":"Arrow Downward"},"e5c5":{"name":"Arrow Drop Down"},"e5c6":{"name":"Arrow Drop Down Circle"},"e5c7":{"name":"Arrow Drop Up"},"e5c8":{"name":"Arrow Forward"},"e5d8":{"name":"Arrow Upward"},"e060":{"name":"Art Track"},"e85b":{"name":"Aspect Ratio"},"e85c":{"name":"Assessment"},"e85d":{"name":"Assignment"},"e85e":{"name":"Assignment Ind"},"e85f":{"name":"Assignment Late"},"e860":{"name":"Assignment Return"},"e861":{"name":"Assignment Returned"},"e862":{"name":"Assignment Turned In"},"e39f":{"name":"Assistant"},"e3a0":{"name":"Assistant Photo"},"e226":{"name":"Attach File"},"e227":{"name":"Attach Money"},"e2bc":{"name":"Attachment"},"e3a1":{"name":"Audiotrack"},"e863":{"name":"Autorenew"},"e01b":{"name":"Av Timer"},"e14a":{"name":"Backspace"},"e864":{"name":"Backup"},"e19c":{"name":"Battery Alert"},"e1a3":{"name":"Battery Charging Full"},"e1a4":{"name":"Battery Full"},"e1a5":{"name":"Battery Std"},"e1a6":{"name":"Battery Unknown"},"eb3e":{"name":"Beach Access"},"e52d":{"name":"Beenhere"},"e14b":{"name":"Block"},"e1a7":{"name":"Bluetooth"},"e60f":{"name":"Bluetooth Audio"},"e1a8":{"name":"Bluetooth Connected"},"e1a9":{"name":"Bluetooth Disabled"},"e1aa":{"name":"Bluetooth Searching"},"e3a2":{"name":"Blur Circular"},"e3a3":{"name":"Blur Linear"},"e3a4":{"name":"Blur Off"},"e3a5":{"name":"Blur On"},"e865":{"name":"Book"},"e866":{"name":"Bookmark"},"e867":{"name":"Bookmark Border"},"e228":{"name":"Border All"},"e229":{"name":"Border Bottom"},"e22a":{"name":"Border Clear"},"e22b":{"name":"Border Color"},"e22c":{"name":"Border Horizontal"},"e22d":{"name":"Border Inner"},"e22e":{"name":"Border Left"},"e22f":{"name":"Border Outer"},"e230":{"name":"Border Right"},"e231":{"name":"Border Style"},"e232":{"name":"Border Top"},"e233":{"name":"Border Vertical"},"e06b":{"name":"Branding Watermark"},"e3a6":{"name":"Brightness 1"},"e3a7":{"name":"Brightness 2"},"e3a8":{"name":"Brightness 3"},"e3a9":{"name":"Brightness 4"},"e3aa":{"name":"Brightness 5"},"e3ab":{"name":"Brightness 6"},"e3ac":{"name":"Brightness 7"},"e1ab":{"name":"Brightness Auto"},"e1ac":{"name":"Brightness High"},"e1ad":{"name":"Brightness Low"},"e1ae":{"name":"Brightness Medium"},"e3ad":{"name":"Broken Image"},"e3ae":{"name":"Brush"},"e6dd":{"name":"Bubble Chart"},"e868":{"name":"Bug Report"},"e869":{"name":"Build"},"e43c":{"name":"Burst Mode"},"e0af":{"name":"Business"},"eb3f":{"name":"Business Center"},"e86a":{"name":"Cached"},"e7e9":{"name":"Cake"},"e0b0":{"name":"Call"},"e0b1":{"name":"Call End"},"e0b2":{"name":"Call Made"},"e0b3":{"name":"Call Merge"},"e0b4":{"name":"Call Missed"},"e0e4":{"name":"Call Missed Outgoing"},"e0b5":{"name":"Call Received"},"e0b6":{"name":"Call Split"},"e06c":{"name":"Call To Action"},"e3af":{"name":"Camera"},"e3b0":{"name":"Camera Alt"},"e8fc":{"name":"Camera Enhance"},"e3b1":{"name":"Camera Front"},"e3b2":{"name":"Camera Rear"},"e3b3":{"name":"Camera Roll"},"e5c9":{"name":"Cancel"},"e8f6":{"name":"Card Giftcard"},"e8f7":{"name":"Card Membership"},"e8f8":{"name":"Card Travel"},"eb40":{"name":"Casino"},"e307":{"name":"Cast"},"e308":{"name":"Cast Connected"},"e3b4":{"name":"Center Focus Strong"},"e3b5":{"name":"Center Focus Weak"},"e86b":{"name":"Change History"},"e0b7":{"name":"Chat"},"e0ca":{"name":"Chat Bubble"},"e0cb":{"name":"Chat Bubble Outline"},"e5ca":{"name":"Check"},"e834":{"name":"Check Box"},"e835":{"name":"Check Box Outline Blank"},"e86c":{"name":"Check Circle"},"e5cb":{"name":"Chevron Left"},"e5cc":{"name":"Chevron Right"},"eb41":{"name":"Child Care"},"eb42":{"name":"Child Friendly"},"e86d":{"name":"Chrome Reader Mode"},"e86e":{"name":"Class"},"e14c":{"name":"Clear"},"e0b8":{"name":"Clear All"},"e5cd":{"name":"Close"},"e01c":{"name":"Closed Caption"},"e2bd":{"name":"Cloud"},"e2be":{"name":"Cloud Circle"},"e2bf":{"name":"Cloud Done"},"e2c0":{"name":"Cloud Download"},"e2c1":{"name":"Cloud Off"},"e2c2":{"name":"Cloud Queue"},"e2c3":{"name":"Cloud Upload"},"e86f":{"name":"Code"},"e3b6":{"name":"Collections"},"e431":{"name":"Collections Bookmark"},"e3b7":{"name":"Color Lens"},"e3b8":{"name":"Colorize"},"e0b9":{"name":"Comment"},"e3b9":{"name":"Compare"},"e915":{"name":"Compare Arrows"},"e30a":{"name":"Computer"},"e638":{"name":"Confirmation Number"},"e0d0":{"name":"Contact Mail"},"e0cf":{"name":"Contact Phone"},"e0ba":{"name":"Contacts"},"e14d":{"name":"Content Copy"},"e14e":{"name":"Content Cut"},"e14f":{"name":"Content Paste"},"e3ba":{"name":"Control Point"},"e3bb":{"name":"Control Point Duplicate"},"e90c":{"name":"Copyright"},"e150":{"name":"Create"},"e2cc":{"name":"Create New Folder"},"e870":{"name":"Credit Card"},"e3be":{"name":"Crop"},"e3bc":{"name":"Crop 16 9"},"e3bd":{"name":"Crop 3 2"},"e3bf":{"name":"Crop 5 4"},"e3c0":{"name":"Crop 7 5"},"e3c1":{"name":"Crop Din"},"e3c2":{"name":"Crop Free"},"e3c3":{"name":"Crop Landscape"},"e3c4":{"name":"Crop Original"},"e3c5":{"name":"Crop Portrait"},"e437":{"name":"Crop Rotate"},"e3c6":{"name":"Crop Square"},"e871":{"name":"Dashboard"},"e1af":{"name":"Data Usage"},"e916":{"name":"Date Range"},"e3c7":{"name":"Dehaze"},"e872":{"name":"Delete"},"e92b":{"name":"Delete Forever"},"e16c":{"name":"Delete Sweep"},"e873":{"name":"Description"},"e30b":{"name":"Desktop Mac"},"e30c":{"name":"Desktop Windows"},"e3c8":{"name":"Details"},"e30d":{"name":"Developer Board"},"e1b0":{"name":"Developer Mode"},"e335":{"name":"Device Hub"},"e1b1":{"name":"Devices"},"e337":{"name":"Devices Other"},"e0bb":{"name":"Dialer Sip"},"e0bc":{"name":"Dialpad"},"e52e":{"name":"Directions"},"e52f":{"name":"Directions Bike"},"e532":{"name":"Directions Boat"},"e530":{"name":"Directions Bus"},"e531":{"name":"Directions Car"},"e534":{"name":"Directions Railway"},"e566":{"name":"Directions Run"},"e533":{"name":"Directions Subway"},"e535":{"name":"Directions Transit"},"e536":{"name":"Directions Walk"},"e610":{"name":"Disc Full"},"e875":{"name":"Dns"},"e612":{"name":"Do Not Disturb"},"e611":{"name":"Do Not Disturb Alt"},"e643":{"name":"Do Not Disturb Off"},"e644":{"name":"Do Not Disturb On"},"e30e":{"name":"Dock"},"e7ee":{"name":"Domain"},"e876":{"name":"Done"},"e877":{"name":"Done All"},"e917":{"name":"Donut Large"},"e918":{"name":"Donut Small"},"e151":{"name":"Drafts"},"e25d":{"name":"Drag Handle"},"e613":{"name":"Drive Eta"},"e1b2":{"name":"Dvr"},"e3c9":{"name":"Edit"},"e568":{"name":"Edit Location"},"e8fb":{"name":"Eject"},"e0be":{"name":"Email"},"e63f":{"name":"Enhanced Encryption"},"e01d":{"name":"Equalizer"},"e000":{"name":"Error"},"e001":{"name":"Error Outline"},"e926":{"name":"Euro Symbol"},"e56d":{"name":"Ev Station"},"e878":{"name":"Event"},"e614":{"name":"Event Available"},"e615":{"name":"Event Busy"},"e616":{"name":"Event Note"},"e903":{"name":"Event Seat"},"e879":{"name":"Exit To App"},"e5ce":{"name":"Expand Less"},"e5cf":{"name":"Expand More"},"e01e":{"name":"Explicit"},"e87a":{"name":"Explore"},"e3ca":{"name":"Exposure"},"e3cb":{"name":"Exposure Neg 1"},"e3cc":{"name":"Exposure Neg 2"},"e3cd":{"name":"Exposure Plus 1"},"e3ce":{"name":"Exposure Plus 2"},"e3cf":{"name":"Exposure Zero"},"e87b":{"name":"Extension"},"e87c":{"name":"Face"},"e01f":{"name":"Fast Forward"},"e020":{"name":"Fast Rewind"},"e87d":{"name":"Favorite"},"e87e":{"name":"Favorite Border"},"e06d":{"name":"Featured Play List"},"e06e":{"name":"Featured Video"},"e87f":{"name":"Feedback"},"e05d":{"name":"Fiber Dvr"},"e061":{"name":"Fiber Manual Record"},"e05e":{"name":"Fiber New"},"e06a":{"name":"Fiber Pin"},"e062":{"name":"Fiber Smart Record"},"e2c4":{"name":"File Download"},"e2c6":{"name":"File Upload"},"e3d3":{"name":"Filter"},"e3d0":{"name":"Filter 1"},"e3d1":{"name":"Filter 2"},"e3d2":{"name":"Filter 3"},"e3d4":{"name":"Filter 4"},"e3d5":{"name":"Filter 5"},"e3d6":{"name":"Filter 6"},"e3d7":{"name":"Filter 7"},"e3d8":{"name":"Filter 8"},"e3d9":{"name":"Filter 9"},"e3da":{"name":"Filter 9 Plus"},"e3db":{"name":"Filter B And W"},"e3dc":{"name":"Filter Center Focus"},"e3dd":{"name":"Filter Drama"},"e3de":{"name":"Filter Frames"},"e3df":{"name":"Filter Hdr"},"e152":{"name":"Filter List"},"e3e0":{"name":"Filter None"},"e3e2":{"name":"Filter Tilt Shift"},"e3e3":{"name":"Filter Vintage"},"e880":{"name":"Find In Page"},"e881":{"name":"Find Replace"},"e90d":{"name":"Fingerprint"},"e5dc":{"name":"First Page"},"eb43":{"name":"Fitness Center"},"e153":{"name":"Flag"},"e3e4":{"name":"Flare"},"e3e5":{"name":"Flash Auto"},"e3e6":{"name":"Flash Off"},"e3e7":{"name":"Flash On"},"e539":{"name":"Flight"},"e904":{"name":"Flight Land"},"e905":{"name":"Flight Takeoff"},"e3e8":{"name":"Flip"},"e882":{"name":"Flip To Back"},"e883":{"name":"Flip To Front"},"e2c7":{"name":"Folder"},"e2c8":{"name":"Folder Open"},"e2c9":{"name":"Folder Shared"},"e617":{"name":"Folder Special"},"e167":{"name":"Font Download"},"e234":{"name":"Format Align Center"},"e235":{"name":"Format Align Justify"},"e236":{"name":"Format Align Left"},"e237":{"name":"Format Align Right"},"e238":{"name":"Format Bold"},"e239":{"name":"Format Clear"},"e23a":{"name":"Format Color Fill"},"e23b":{"name":"Format Color Reset"},"e23c":{"name":"Format Color Text"},"e23d":{"name":"Format Indent Decrease"},"e23e":{"name":"Format Indent Increase"},"e23f":{"name":"Format Italic"},"e240":{"name":"Format Line Spacing"},"e241":{"name":"Format List Bulleted"},"e242":{"name":"Format List Numbered"},"e243":{"name":"Format Paint"},"e244":{"name":"Format Quote"},"e25e":{"name":"Format Shapes"},"e245":{"name":"Format Size"},"e246":{"name":"Format Strikethrough"},"e247":{"name":"Format Textdirection L To R"},"e248":{"name":"Format Textdirection R To L"},"e249":{"name":"Format Underlined"},"e0bf":{"name":"Forum"},"e154":{"name":"Forward"},"e056":{"name":"Forward 10"},"e057":{"name":"Forward 30"},"e058":{"name":"Forward 5"},"eb44":{"name":"Free Breakfast"},"e5d0":{"name":"Fullscreen"},"e5d1":{"name":"Fullscreen Exit"},"e24a":{"name":"Functions"},"e927":{"name":"G Translate"},"e30f":{"name":"Gamepad"},"e021":{"name":"Games"},"e90e":{"name":"Gavel"},"e155":{"name":"Gesture"},"e884":{"name":"Get App"},"e908":{"name":"Gif"},"eb45":{"name":"Golf Course"},"e1b3":{"name":"Gps Fixed"},"e1b4":{"name":"Gps Not Fixed"},"e1b5":{"name":"Gps Off"},"e885":{"name":"Grade"},"e3e9":{"name":"Gradient"},"e3ea":{"name":"Grain"},"e1b8":{"name":"Graphic Eq"},"e3eb":{"name":"Grid Off"},"e3ec":{"name":"Grid On"},"e7ef":{"name":"Group"},"e7f0":{"name":"Group Add"},"e886":{"name":"Group Work"},"e052":{"name":"Hd"},"e3ed":{"name":"Hdr Off"},"e3ee":{"name":"Hdr On"},"e3f1":{"name":"Hdr Strong"},"e3f2":{"name":"Hdr Weak"},"e310":{"name":"Headset"},"e311":{"name":"Headset Mic"},"e3f3":{"name":"Healing"},"e023":{"name":"Hearing"},"e887":{"name":"Help"},"e8fd":{"name":"Help Outline"},"e024":{"name":"High Quality"},"e25f":{"name":"Highlight"},"e888":{"name":"Highlight Off"},"e889":{"name":"History"},"e88a":{"name":"Home"},"eb46":{"name":"Hot Tub"},"e53a":{"name":"Hotel"},"e88b":{"name":"Hourglass Empty"},"e88c":{"name":"Hourglass Full"},"e902":{"name":"Http"},"e88d":{"name":"Https"},"e3f4":{"name":"Image"},"e3f5":{"name":"Image Aspect Ratio"},"e0e0":{"name":"Import Contacts"},"e0c3":{"name":"Import Export"},"e912":{"name":"Important Devices"},"e156":{"name":"Inbox"},"e909":{"name":"Indeterminate Check Box"},"e88e":{"name":"Info"},"e88f":{"name":"Info Outline"},"e890":{"name":"Input"},"e24b":{"name":"Insert Chart"},"e24c":{"name":"Insert Comment"},"e24d":{"name":"Insert Drive File"},"e24e":{"name":"Insert Emoticon"},"e24f":{"name":"Insert Invitation"},"e250":{"name":"Insert Link"},"e251":{"name":"Insert Photo"},"e891":{"name":"Invert Colors"},"e0c4":{"name":"Invert Colors Off"},"e3f6":{"name":"Iso"},"e312":{"name":"Keyboard"},"e313":{"name":"Keyboard Arrow Down"},"e314":{"name":"Keyboard Arrow Left"},"e315":{"name":"Keyboard Arrow Right"},"e316":{"name":"Keyboard Arrow Up"},"e317":{"name":"Keyboard Backspace"},"e318":{"name":"Keyboard Capslock"},"e31a":{"name":"Keyboard Hide"},"e31b":{"name":"Keyboard Return"},"e31c":{"name":"Keyboard Tab"},"e31d":{"name":"Keyboard Voice"},"eb47":{"name":"Kitchen"},"e892":{"name":"Label"},"e893":{"name":"Label Outline"},"e3f7":{"name":"Landscape"},"e894":{"name":"Language"},"e31e":{"name":"Laptop"},"e31f":{"name":"Laptop Chromebook"},"e320":{"name":"Laptop Mac"},"e321":{"name":"Laptop Windows"},"e5dd":{"name":"Last Page"},"e895":{"name":"Launch"},"e53b":{"name":"Layers"},"e53c":{"name":"Layers Clear"},"e3f8":{"name":"Leak Add"},"e3f9":{"name":"Leak Remove"},"e3fa":{"name":"Lens"},"e02e":{"name":"Library Add"},"e02f":{"name":"Library Books"},"e030":{"name":"Library Music"},"e90f":{"name":"Lightbulb Outline"},"e919":{"name":"Line Style"},"e91a":{"name":"Line Weight"},"e260":{"name":"Linear Scale"},"e157":{"name":"Link"},"e438":{"name":"Linked Camera"},"e896":{"name":"List"},"e0c6":{"name":"Live Help"},"e639":{"name":"Live Tv"},"e53f":{"name":"Local Activity"},"e53d":{"name":"Local Airport"},"e53e":{"name":"Local Atm"},"e540":{"name":"Local Bar"},"e541":{"name":"Local Cafe"},"e542":{"name":"Local Car Wash"},"e543":{"name":"Local Convenience Store"},"e556":{"name":"Local Dining"},"e544":{"name":"Local Drink"},"e545":{"name":"Local Florist"},"e546":{"name":"Local Gas Station"},"e547":{"name":"Local Grocery Store"},"e548":{"name":"Local Hospital"},"e549":{"name":"Local Hotel"},"e54a":{"name":"Local Laundry Service"},"e54b":{"name":"Local Library"},"e54c":{"name":"Local Mall"},"e54d":{"name":"Local Movies"},"e54e":{"name":"Local Offer"},"e54f":{"name":"Local Parking"},"e550":{"name":"Local Pharmacy"},"e551":{"name":"Local Phone"},"e552":{"name":"Local Pizza"},"e553":{"name":"Local Play"},"e554":{"name":"Local Post Office"},"e555":{"name":"Local Printshop"},"e557":{"name":"Local See"},"e558":{"name":"Local Shipping"},"e559":{"name":"Local Taxi"},"e7f1":{"name":"Location City"},"e1b6":{"name":"Location Disabled"},"e0c7":{"name":"Location Off"},"e0c8":{"name":"Location On"},"e1b7":{"name":"Location Searching"},"e897":{"name":"Lock"},"e898":{"name":"Lock Open"},"e899":{"name":"Lock Outline"},"e3fc":{"name":"Looks"},"e3fb":{"name":"Looks 3"},"e3fd":{"name":"Looks 4"},"e3fe":{"name":"Looks 5"},"e3ff":{"name":"Looks 6"},"e400":{"name":"Looks One"},"e401":{"name":"Looks Two"},"e028":{"name":"Loop"},"e402":{"name":"Loupe"},"e16d":{"name":"Low Priority"},"e89a":{"name":"Loyalty"},"e158":{"name":"Mail"},"e0e1":{"name":"Mail Outline"},"e55b":{"name":"Map"},"e159":{"name":"Markunread"},"e89b":{"name":"Markunread Mailbox"},"e322":{"name":"Memory"},"e5d2":{"name":"Menu"},"e252":{"name":"Merge Type"},"e0c9":{"name":"Message"},"e029":{"name":"Mic"},"e02a":{"name":"Mic None"},"e02b":{"name":"Mic Off"},"e618":{"name":"Mms"},"e253":{"name":"Mode Comment"},"e254":{"name":"Mode Edit"},"e263":{"name":"Monetization On"},"e25c":{"name":"Money Off"},"e403":{"name":"Monochrome Photos"},"e7f2":{"name":"Mood"},"e7f3":{"name":"Mood Bad"},"e619":{"name":"More"},"e5d3":{"name":"More Horiz"},"e5d4":{"name":"More Vert"},"e91b":{"name":"Motorcycle"},"e323":{"name":"Mouse"},"e168":{"name":"Move To Inbox"},"e02c":{"name":"Movie"},"e404":{"name":"Movie Creation"},"e43a":{"name":"Movie Filter"},"e6df":{"name":"Multiline Chart"},"e405":{"name":"Music Note"},"e063":{"name":"Music Video"},"e55c":{"name":"My Location"},"e406":{"name":"Nature"},"e407":{"name":"Nature People"},"e408":{"name":"Navigate Before"},"e409":{"name":"Navigate Next"},"e55d":{"name":"Navigation"},"e569":{"name":"Near Me"},"e1b9":{"name":"Network Cell"},"e640":{"name":"Network Check"},"e61a":{"name":"Network Locked"},"e1ba":{"name":"Network Wifi"},"e031":{"name":"New Releases"},"e16a":{"name":"Next Week"},"e1bb":{"name":"Nfc"},"e641":{"name":"No Encryption"},"e0cc":{"name":"No Sim"},"e033":{"name":"Not Interested"},"e06f":{"name":"Note"},"e89c":{"name":"Note Add"},"e7f4":{"name":"Notifications"},"e7f7":{"name":"Notifications Active"},"e7f5":{"name":"Notifications None"},"e7f6":{"name":"Notifications Off"},"e7f8":{"name":"Notifications Paused"},"e90a":{"name":"Offline Pin"},"e63a":{"name":"Ondemand Video"},"e91c":{"name":"Opacity"},"e89d":{"name":"Open In Browser"},"e89e":{"name":"Open In New"},"e89f":{"name":"Open With"},"e7f9":{"name":"Pages"},"e8a0":{"name":"Pageview"},"e40a":{"name":"Palette"},"e925":{"name":"Pan Tool"},"e40b":{"name":"Panorama"},"e40c":{"name":"Panorama Fish Eye"},"e40d":{"name":"Panorama Horizontal"},"e40e":{"name":"Panorama Vertical"},"e40f":{"name":"Panorama Wide Angle"},"e7fa":{"name":"Party Mode"},"e034":{"name":"Pause"},"e035":{"name":"Pause Circle Filled"},"e036":{"name":"Pause Circle Outline"},"e8a1":{"name":"Payment"},"e7fb":{"name":"People"},"e7fc":{"name":"People Outline"},"e8a2":{"name":"Perm Camera Mic"},"e8a3":{"name":"Perm Contact Calendar"},"e8a4":{"name":"Perm Data Setting"},"e8a5":{"name":"Perm Device Information"},"e8a6":{"name":"Perm Identity"},"e8a7":{"name":"Perm Media"},"e8a8":{"name":"Perm Phone Msg"},"e8a9":{"name":"Perm Scan Wifi"},"e7fd":{"name":"Person"},"e7fe":{"name":"Person Add"},"e7ff":{"name":"Person Outline"},"e55a":{"name":"Person Pin"},"e56a":{"name":"Person Pin Circle"},"e63b":{"name":"Personal Video"},"e91d":{"name":"Pets"},"e0cd":{"name":"Phone"},"e324":{"name":"Phone Android"},"e61b":{"name":"Phone Bluetooth Speaker"},"e61c":{"name":"Phone Forwarded"},"e61d":{"name":"Phone In Talk"},"e325":{"name":"Phone Iphone"},"e61e":{"name":"Phone Locked"},"e61f":{"name":"Phone Missed"},"e620":{"name":"Phone Paused"},"e326":{"name":"Phonelink"},"e0db":{"name":"Phonelink Erase"},"e0dc":{"name":"Phonelink Lock"},"e327":{"name":"Phonelink Off"},"e0dd":{"name":"Phonelink Ring"},"e0de":{"name":"Phonelink Setup"},"e410":{"name":"Photo"},"e411":{"name":"Photo Album"},"e412":{"name":"Photo Camera"},"e43b":{"name":"Photo Filter"},"e413":{"name":"Photo Library"},"e432":{"name":"Photo Size Select Actual"},"e433":{"name":"Photo Size Select Large"},"e434":{"name":"Photo Size Select Small"},"e415":{"name":"Picture As Pdf"},"e8aa":{"name":"Picture In Picture"},"e911":{"name":"Picture In Picture Alt"},"e6c4":{"name":"Pie Chart"},"e6c5":{"name":"Pie Chart Outlined"},"e55e":{"name":"Pin Drop"},"e55f":{"name":"Place"},"e037":{"name":"Play Arrow"},"e038":{"name":"Play Circle Filled"},"e039":{"name":"Play Circle Outline"},"e906":{"name":"Play For Work"},"e03b":{"name":"Playlist Add"},"e065":{"name":"Playlist Add Check"},"e05f":{"name":"Playlist Play"},"e800":{"name":"Plus One"},"e801":{"name":"Poll"},"e8ab":{"name":"Polymer"},"eb48":{"name":"Pool"},"e0ce":{"name":"Portable Wifi Off"},"e416":{"name":"Portrait"},"e63c":{"name":"Power"},"e336":{"name":"Power Input"},"e8ac":{"name":"Power Settings New"},"e91e":{"name":"Pregnant Woman"},"e0df":{"name":"Present To All"},"e8ad":{"name":"Print"},"e645":{"name":"Priority High"},"e80b":{"name":"Public"},"e255":{"name":"Publish"},"e8ae":{"name":"Query Builder"},"e8af":{"name":"Question Answer"},"e03c":{"name":"Queue"},"e03d":{"name":"Queue Music"},"e066":{"name":"Queue Play Next"},"e03e":{"name":"Radio"},"e837":{"name":"Radio Button Checked"},"e836":{"name":"Radio Button Unchecked"},"e560":{"name":"Rate Review"},"e8b0":{"name":"Receipt"},"e03f":{"name":"Recent Actors"},"e91f":{"name":"Record Voice Over"},"e8b1":{"name":"Redeem"},"e15a":{"name":"Redo"},"e5d5":{"name":"Refresh"},"e15b":{"name":"Remove"},"e15c":{"name":"Remove Circle"},"e15d":{"name":"Remove Circle Outline"},"e067":{"name":"Remove From Queue"},"e417":{"name":"Remove Red Eye"},"e928":{"name":"Remove Shopping Cart"},"e8fe":{"name":"Reorder"},"e040":{"name":"Repeat"},"e041":{"name":"Repeat One"},"e042":{"name":"Replay"},"e059":{"name":"Replay 10"},"e05a":{"name":"Replay 30"},"e05b":{"name":"Replay 5"},"e15e":{"name":"Reply"},"e15f":{"name":"Reply All"},"e160":{"name":"Report"},"e8b2":{"name":"Report Problem"},"e56c":{"name":"Restaurant"},"e561":{"name":"Restaurant Menu"},"e8b3":{"name":"Restore"},"e929":{"name":"Restore Page"},"e0d1":{"name":"Ring Volume"},"e8b4":{"name":"Room"},"eb49":{"name":"Room Service"},"e418":{"name":"Rotate 90 Degrees Ccw"},"e419":{"name":"Rotate Left"},"e41a":{"name":"Rotate Right"},"e920":{"name":"Rounded Corner"},"e328":{"name":"Router"},"e921":{"name":"Rowing"},"e0e5":{"name":"Rss Feed"},"e642":{"name":"Rv Hookup"},"e562":{"name":"Satellite"},"e161":{"name":"Save"},"e329":{"name":"Scanner"},"e8b5":{"name":"Schedule"},"e80c":{"name":"School"},"e1be":{"name":"Screen Lock Landscape"},"e1bf":{"name":"Screen Lock Portrait"},"e1c0":{"name":"Screen Lock Rotation"},"e1c1":{"name":"Screen Rotation"},"e0e2":{"name":"Screen Share"},"e623":{"name":"Sd Card"},"e1c2":{"name":"Sd Storage"},"e8b6":{"name":"Search"},"e32a":{"name":"Security"},"e162":{"name":"Select All"},"e163":{"name":"Send"},"e811":{"name":"Sentiment Dissatisfied"},"e812":{"name":"Sentiment Neutral"},"e813":{"name":"Sentiment Satisfied"},"e814":{"name":"Sentiment Very Dissatisfied"},"e815":{"name":"Sentiment Very Satisfied"},"e8b8":{"name":"Settings"},"e8b9":{"name":"Settings Applications"},"e8ba":{"name":"Settings Backup Restore"},"e8bb":{"name":"Settings Bluetooth"},"e8bd":{"name":"Settings Brightness"},"e8bc":{"name":"Settings Cell"},"e8be":{"name":"Settings Ethernet"},"e8bf":{"name":"Settings Input Antenna"},"e8c0":{"name":"Settings Input Component"},"e8c1":{"name":"Settings Input Composite"},"e8c2":{"name":"Settings Input Hdmi"},"e8c3":{"name":"Settings Input Svideo"},"e8c4":{"name":"Settings Overscan"},"e8c5":{"name":"Settings Phone"},"e8c6":{"name":"Settings Power"},"e8c7":{"name":"Settings Remote"},"e1c3":{"name":"Settings System Daydream"},"e8c8":{"name":"Settings Voice"},"e80d":{"name":"Share"},"e8c9":{"name":"Shop"},"e8ca":{"name":"Shop Two"},"e8cb":{"name":"Shopping Basket"},"e8cc":{"name":"Shopping Cart"},"e261":{"name":"Short Text"},"e6e1":{"name":"Show Chart"},"e043":{"name":"Shuffle"},"e1c8":{"name":"Signal Cellular 4 Bar"},"e1cd":{"name":"Signal Cellular Connected No Internet 4 Bar"},"e1ce":{"name":"Signal Cellular No Sim"},"e1cf":{"name":"Signal Cellular Null"},"e1d0":{"name":"Signal Cellular Off"},"e1d8":{"name":"Signal Wifi 4 Bar"},"e1d9":{"name":"Signal Wifi 4 Bar Lock"},"e1da":{"name":"Signal Wifi Off"},"e32b":{"name":"Sim Card"},"e624":{"name":"Sim Card Alert"},"e044":{"name":"Skip Next"},"e045":{"name":"Skip Previous"},"e41b":{"name":"Slideshow"},"e068":{"name":"Slow Motion Video"},"e32c":{"name":"Smartphone"},"eb4a":{"name":"Smoke Free"},"eb4b":{"name":"Smoking Rooms"},"e625":{"name":"Sms"},"e626":{"name":"Sms Failed"},"e046":{"name":"Snooze"},"e164":{"name":"Sort"},"e053":{"name":"Sort By Alpha"},"eb4c":{"name":"Spa"},"e256":{"name":"Space Bar"},"e32d":{"name":"Speaker"},"e32e":{"name":"Speaker Group"},"e8cd":{"name":"Speaker Notes"},"e92a":{"name":"Speaker Notes Off"},"e0d2":{"name":"Speaker Phone"},"e8ce":{"name":"Spellcheck"},"e838":{"name":"Star"},"e83a":{"name":"Star Border"},"e839":{"name":"Star Half"},"e8d0":{"name":"Stars"},"e0d3":{"name":"Stay Current Landscape"},"e0d4":{"name":"Stay Current Portrait"},"e0d5":{"name":"Stay Primary Landscape"},"e0d6":{"name":"Stay Primary Portrait"},"e047":{"name":"Stop"},"e0e3":{"name":"Stop Screen Share"},"e1db":{"name":"Storage"},"e8d1":{"name":"Store"},"e563":{"name":"Store Mall Directory"},"e41c":{"name":"Straighten"},"e56e":{"name":"Streetview"},"e257":{"name":"Strikethrough S"},"e41d":{"name":"Style"},"e5d9":{"name":"Subdirectory Arrow Left"},"e5da":{"name":"Subdirectory Arrow Right"},"e8d2":{"name":"Subject"},"e064":{"name":"Subscriptions"},"e048":{"name":"Subtitles"},"e56f":{"name":"Subway"},"e8d3":{"name":"Supervisor Account"},"e049":{"name":"Surround Sound"},"e0d7":{"name":"Swap Calls"},"e8d4":{"name":"Swap Horiz"},"e8d5":{"name":"Swap Vert"},"e8d6":{"name":"Swap Vertical Circle"},"e41e":{"name":"Switch Camera"},"e41f":{"name":"Switch Video"},"e627":{"name":"Sync"},"e628":{"name":"Sync Disabled"},"e629":{"name":"Sync Problem"},"e62a":{"name":"System Update"},"e8d7":{"name":"System Update Alt"},"e8d8":{"name":"Tab"},"e8d9":{"name":"Tab Unselected"},"e32f":{"name":"Tablet"},"e330":{"name":"Tablet Android"},"e331":{"name":"Tablet Mac"},"e420":{"name":"Tag Faces"},"e62b":{"name":"Tap And Play"},"e564":{"name":"Terrain"},"e262":{"name":"Text Fields"},"e165":{"name":"Text Format"},"e0d8":{"name":"Textsms"},"e421":{"name":"Texture"},"e8da":{"name":"Theaters"},"e8db":{"name":"Thumb Down"},"e8dc":{"name":"Thumb Up"},"e8dd":{"name":"Thumbs Up Down"},"e62c":{"name":"Time To Leave"},"e422":{"name":"Timelapse"},"e922":{"name":"Timeline"},"e425":{"name":"Timer"},"e423":{"name":"Timer 10"},"e424":{"name":"Timer 3"},"e426":{"name":"Timer Off"},"e264":{"name":"Title"},"e8de":{"name":"Toc"},"e8df":{"name":"Today"},"e8e0":{"name":"Toll"},"e427":{"name":"Tonality"},"e913":{"name":"Touch App"},"e332":{"name":"Toys"},"e8e1":{"name":"Track Changes"},"e565":{"name":"Traffic"},"e570":{"name":"Train"},"e571":{"name":"Tram"},"e572":{"name":"Transfer Within A Station"},"e428":{"name":"Transform"},"e8e2":{"name":"Translate"},"e8e3":{"name":"Trending Down"},"e8e4":{"name":"Trending Flat"},"e8e5":{"name":"Trending Up"},"e429":{"name":"Tune"},"e8e6":{"name":"Turned In"},"e8e7":{"name":"Turned In Not"},"e333":{"name":"Tv"},"e169":{"name":"Unarchive"},"e166":{"name":"Undo"},"e5d6":{"name":"Unfold Less"},"e5d7":{"name":"Unfold More"},"e923":{"name":"Update"},"e1e0":{"name":"Usb"},"e8e8":{"name":"Verified User"},"e258":{"name":"Vertical Align Bottom"},"e259":{"name":"Vertical Align Center"},"e25a":{"name":"Vertical Align Top"},"e62d":{"name":"Vibration"},"e070":{"name":"Video Call"},"e071":{"name":"Video Label"},"e04a":{"name":"Video Library"},"e04b":{"name":"Videocam"},"e04c":{"name":"Videocam Off"},"e338":{"name":"Videogame Asset"},"e8e9":{"name":"View Agenda"},"e8ea":{"name":"View Array"},"e8eb":{"name":"View Carousel"},"e8ec":{"name":"View Column"},"e42a":{"name":"View Comfy"},"e42b":{"name":"View Compact"},"e8ed":{"name":"View Day"},"e8ee":{"name":"View Headline"},"e8ef":{"name":"View List"},"e8f0":{"name":"View Module"},"e8f1":{"name":"View Quilt"},"e8f2":{"name":"View Stream"},"e8f3":{"name":"View Week"},"e435":{"name":"Vignette"},"e8f4":{"name":"Visibility"},"e8f5":{"name":"Visibility Off"},"e62e":{"name":"Voice Chat"},"e0d9":{"name":"Voicemail"},"e04d":{"name":"Volume Down"},"e04e":{"name":"Volume Mute"},"e04f":{"name":"Volume Off"},"e050":{"name":"Volume Up"},"e0da":{"name":"Vpn Key"},"e62f":{"name":"Vpn Lock"},"e1bc":{"name":"Wallpaper"},"e002":{"name":"Warning"},"e334":{"name":"Watch"},"e924":{"name":"Watch Later"},"e42c":{"name":"Wb Auto"},"e42d":{"name":"Wb Cloudy"},"e42e":{"name":"Wb Incandescent"},"e436":{"name":"Wb Iridescent"},"e430":{"name":"Wb Sunny"},"e63d":{"name":"Wc"},"e051":{"name":"Web"},"e069":{"name":"Web Asset"},"e16b":{"name":"Weekend"},"e80e":{"name":"Whatshot"},"e1bd":{"name":"Widgets"},"e63e":{"name":"Wifi"},"e1e1":{"name":"Wifi Lock"},"e1e2":{"name":"Wifi Tethering"},"e8f9":{"name":"Work"},"e25b":{"name":"Wrap Text"},"e8fa":{"name":"Youtube Searched For"},"e8ff":{"name":"Zoom In"},"e900":{"name":"Zoom Out"},"e56b":{"name":"Zoom Out Map"}}}
\ No newline at end of file
diff --git a/public/css/MaterialIcons-Regular.svg b/public/css/MaterialIcons-Regular.svg
new file mode 100644
index 0000000..a449327
--- /dev/null
+++ b/public/css/MaterialIcons-Regular.svg
@@ -0,0 +1,2373 @@
+
+
+
+
diff --git a/public/css/MaterialIcons-Regular.ttf b/public/css/MaterialIcons-Regular.ttf
new file mode 100644
index 0000000..7015564
Binary files /dev/null and b/public/css/MaterialIcons-Regular.ttf differ
diff --git a/public/css/MaterialIcons-Regular.woff b/public/css/MaterialIcons-Regular.woff
new file mode 100644
index 0000000..b648a3e
Binary files /dev/null and b/public/css/MaterialIcons-Regular.woff differ
diff --git a/public/css/MaterialIcons-Regular.woff2 b/public/css/MaterialIcons-Regular.woff2
new file mode 100644
index 0000000..9fa2112
Binary files /dev/null and b/public/css/MaterialIcons-Regular.woff2 differ
diff --git a/public/css/fonts/charter_bold-webfont.eot b/public/css/fonts/charter_bold-webfont.eot
new file mode 100644
index 0000000..800aa39
Binary files /dev/null and b/public/css/fonts/charter_bold-webfont.eot differ
diff --git a/public/css/fonts/charter_bold-webfont.woff b/public/css/fonts/charter_bold-webfont.woff
new file mode 100644
index 0000000..6d7fd7a
Binary files /dev/null and b/public/css/fonts/charter_bold-webfont.woff differ
diff --git a/public/css/fonts/charter_regular-webfont.eot b/public/css/fonts/charter_regular-webfont.eot
new file mode 100644
index 0000000..01872e3
Binary files /dev/null and b/public/css/fonts/charter_regular-webfont.eot differ
diff --git a/public/css/fonts/charter_regular-webfont.woff b/public/css/fonts/charter_regular-webfont.woff
new file mode 100644
index 0000000..a19483d
Binary files /dev/null and b/public/css/fonts/charter_regular-webfont.woff differ
diff --git a/public/css/fonts/fontawesome-webfont.eot b/public/css/fonts/fontawesome-webfont.eot
new file mode 100644
index 0000000..e9f60ca
Binary files /dev/null and b/public/css/fonts/fontawesome-webfont.eot differ
diff --git a/public/css/fonts/fontawesome-webfont.svg b/public/css/fonts/fontawesome-webfont.svg
new file mode 100644
index 0000000..855c845
--- /dev/null
+++ b/public/css/fonts/fontawesome-webfont.svg
@@ -0,0 +1,2671 @@
+
+
+
diff --git a/public/css/fonts/fontawesome-webfont.ttf b/public/css/fonts/fontawesome-webfont.ttf
new file mode 100644
index 0000000..35acda2
Binary files /dev/null and b/public/css/fonts/fontawesome-webfont.ttf differ
diff --git a/public/css/fonts/fontawesome-webfont.woff b/public/css/fonts/fontawesome-webfont.woff
new file mode 100644
index 0000000..400014a
Binary files /dev/null and b/public/css/fonts/fontawesome-webfont.woff differ
diff --git a/public/css/fonts/fontawesome-webfont.woff2 b/public/css/fonts/fontawesome-webfont.woff2
new file mode 100644
index 0000000..4d13fc6
Binary files /dev/null and b/public/css/fonts/fontawesome-webfont.woff2 differ
diff --git a/public/css/fonts/open-iconic.eot b/public/css/fonts/open-iconic.eot
new file mode 100644
index 0000000..f98177d
Binary files /dev/null and b/public/css/fonts/open-iconic.eot differ
diff --git a/public/css/fonts/open-iconic.otf b/public/css/fonts/open-iconic.otf
new file mode 100644
index 0000000..f6bd684
Binary files /dev/null and b/public/css/fonts/open-iconic.otf differ
diff --git a/public/css/fonts/open-iconic.svg b/public/css/fonts/open-iconic.svg
new file mode 100644
index 0000000..32b2c4e
--- /dev/null
+++ b/public/css/fonts/open-iconic.svg
@@ -0,0 +1,543 @@
+
+
+
+
diff --git a/public/css/fonts/open-iconic.ttf b/public/css/fonts/open-iconic.ttf
new file mode 100644
index 0000000..fab6048
Binary files /dev/null and b/public/css/fonts/open-iconic.ttf differ
diff --git a/public/css/fonts/open-iconic.woff b/public/css/fonts/open-iconic.woff
new file mode 100644
index 0000000..f930998
Binary files /dev/null and b/public/css/fonts/open-iconic.woff differ
diff --git a/public/css/open-iconic-bootstrap.css b/public/css/open-iconic-bootstrap.css
new file mode 100644
index 0000000..1be6465
--- /dev/null
+++ b/public/css/open-iconic-bootstrap.css
@@ -0,0 +1 @@
+@font-face{font-family:'Icons';src:url(../fonts/open-iconic.eot);src:url(../fonts/open-iconic.eot?#iconic-sm) format('embedded-opentype') , url(../fonts/open-iconic.woff) format('woff') , url(../fonts/open-iconic.ttf) format('truetype') , url(../fonts/open-iconic.otf) format('opentype') , url(../fonts/open-iconic.svg#iconic-sm) format('svg');font-weight:normal;font-style:normal}.oi{position:relative;top:1px;display:inline-block;speak:none;font-family:'Icons';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.oi:empty:before{width:1em;text-align:center;box-sizing:content-box}.oi.oi-align-center:before{text-align:center}.oi.oi-align-left:before{text-align:left}.oi.oi-align-right:before{text-align:right}.oi.oi-flip-horizontal:before{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.oi.oi-flip-vertical:before{-webkit-transform:scale(1,-1);-ms-transform:scale(-1,1);transform:scale(1,-1)}.oi.oi-flip-horizontal-vertical:before{-webkit-transform:scale(-1,-1);-ms-transform:scale(-1,1);transform:scale(-1,-1)}.oi-account-login:before{content:'\e000'}.oi-account-logout:before{content:'\e001'}.oi-action-redo:before{content:'\e002'}.oi-action-undo:before{content:'\e003'}.oi-align-center:before{content:'\e004'}.oi-align-left:before{content:'\e005'}.oi-align-right:before{content:'\e006'}.oi-aperture:before{content:'\e007'}.oi-arrow-bottom:before{content:'\e008'}.oi-arrow-circle-bottom:before{content:'\e009'}.oi-arrow-circle-left:before{content:'\e00a'}.oi-arrow-circle-right:before{content:'\e00b'}.oi-arrow-circle-top:before{content:'\e00c'}.oi-arrow-left:before{content:'\e00d'}.oi-arrow-right:before{content:'\e00e'}.oi-arrow-thick-bottom:before{content:'\e00f'}.oi-arrow-thick-left:before{content:'\e010'}.oi-arrow-thick-right:before{content:'\e011'}.oi-arrow-thick-top:before{content:'\e012'}.oi-arrow-top:before{content:'\e013'}.oi-audio-spectrum:before{content:'\e014'}.oi-audio:before{content:'\e015'}.oi-badge:before{content:'\e016'}.oi-ban:before{content:'\e017'}.oi-bar-chart:before{content:'\e018'}.oi-basket:before{content:'\e019'}.oi-battery-empty:before{content:'\e01a'}.oi-battery-full:before{content:'\e01b'}.oi-beaker:before{content:'\e01c'}.oi-bell:before{content:'\e01d'}.oi-bluetooth:before{content:'\e01e'}.oi-bold:before{content:'\e01f'}.oi-bolt:before{content:'\e020'}.oi-book:before{content:'\e021'}.oi-bookmark:before{content:'\e022'}.oi-box:before{content:'\e023'}.oi-briefcase:before{content:'\e024'}.oi-british-pound:before{content:'\e025'}.oi-browser:before{content:'\e026'}.oi-brush:before{content:'\e027'}.oi-bug:before{content:'\e028'}.oi-bullhorn:before{content:'\e029'}.oi-calculator:before{content:'\e02a'}.oi-calendar:before{content:'\e02b'}.oi-camera-slr:before{content:'\e02c'}.oi-caret-bottom:before{content:'\e02d'}.oi-caret-left:before{content:'\e02e'}.oi-caret-right:before{content:'\e02f'}.oi-caret-top:before{content:'\e030'}.oi-cart:before{content:'\e031'}.oi-chat:before{content:'\e032'}.oi-check:before{content:'\e033'}.oi-chevron-bottom:before{content:'\e034'}.oi-chevron-left:before{content:'\e035'}.oi-chevron-right:before{content:'\e036'}.oi-chevron-top:before{content:'\e037'}.oi-circle-check:before{content:'\e038'}.oi-circle-x:before{content:'\e039'}.oi-clipboard:before{content:'\e03a'}.oi-clock:before{content:'\e03b'}.oi-cloud-download:before{content:'\e03c'}.oi-cloud-upload:before{content:'\e03d'}.oi-cloud:before{content:'\e03e'}.oi-cloudy:before{content:'\e03f'}.oi-code:before{content:'\e040'}.oi-cog:before{content:'\e041'}.oi-collapse-down:before{content:'\e042'}.oi-collapse-left:before{content:'\e043'}.oi-collapse-right:before{content:'\e044'}.oi-collapse-up:before{content:'\e045'}.oi-command:before{content:'\e046'}.oi-comment-square:before{content:'\e047'}.oi-compass:before{content:'\e048'}.oi-contrast:before{content:'\e049'}.oi-copywriting:before{content:'\e04a'}.oi-credit-card:before{content:'\e04b'}.oi-crop:before{content:'\e04c'}.oi-dashboard:before{content:'\e04d'}.oi-data-transfer-download:before{content:'\e04e'}.oi-data-transfer-upload:before{content:'\e04f'}.oi-delete:before{content:'\e050'}.oi-dial:before{content:'\e051'}.oi-document:before{content:'\e052'}.oi-dollar:before{content:'\e053'}.oi-double-quote-sans-left:before{content:'\e054'}.oi-double-quote-sans-right:before{content:'\e055'}.oi-double-quote-serif-left:before{content:'\e056'}.oi-double-quote-serif-right:before{content:'\e057'}.oi-droplet:before{content:'\e058'}.oi-eject:before{content:'\e059'}.oi-elevator:before{content:'\e05a'}.oi-ellipses:before{content:'\e05b'}.oi-envelope-closed:before{content:'\e05c'}.oi-envelope-open:before{content:'\e05d'}.oi-euro:before{content:'\e05e'}.oi-excerpt:before{content:'\e05f'}.oi-expand-down:before{content:'\e060'}.oi-expand-left:before{content:'\e061'}.oi-expand-right:before{content:'\e062'}.oi-expand-up:before{content:'\e063'}.oi-external-link:before{content:'\e064'}.oi-eye:before{content:'\e065'}.oi-eyedropper:before{content:'\e066'}.oi-file:before{content:'\e067'}.oi-fire:before{content:'\e068'}.oi-flag:before{content:'\e069'}.oi-flash:before{content:'\e06a'}.oi-folder:before{content:'\e06b'}.oi-fork:before{content:'\e06c'}.oi-fullscreen-enter:before{content:'\e06d'}.oi-fullscreen-exit:before{content:'\e06e'}.oi-globe:before{content:'\e06f'}.oi-graph:before{content:'\e070'}.oi-grid-four-up:before{content:'\e071'}.oi-grid-three-up:before{content:'\e072'}.oi-grid-two-up:before{content:'\e073'}.oi-hard-drive:before{content:'\e074'}.oi-header:before{content:'\e075'}.oi-headphones:before{content:'\e076'}.oi-heart:before{content:'\e077'}.oi-home:before{content:'\e078'}.oi-image:before{content:'\e079'}.oi-inbox:before{content:'\e07a'}.oi-infinity:before{content:'\e07b'}.oi-info:before{content:'\e07c'}.oi-italic:before{content:'\e07d'}.oi-justify-center:before{content:'\e07e'}.oi-justify-left:before{content:'\e07f'}.oi-justify-right:before{content:'\e080'}.oi-key:before{content:'\e081'}.oi-laptop:before{content:'\e082'}.oi-layers:before{content:'\e083'}.oi-lightbulb:before{content:'\e084'}.oi-link-broken:before{content:'\e085'}.oi-link-intact:before{content:'\e086'}.oi-list-rich:before{content:'\e087'}.oi-list:before{content:'\e088'}.oi-location:before{content:'\e089'}.oi-lock-locked:before{content:'\e08a'}.oi-lock-unlocked:before{content:'\e08b'}.oi-loop-circular:before{content:'\e08c'}.oi-loop-square:before{content:'\e08d'}.oi-loop:before{content:'\e08e'}.oi-magnifying-glass:before{content:'\e08f'}.oi-map-marker:before{content:'\e090'}.oi-map:before{content:'\e091'}.oi-media-pause:before{content:'\e092'}.oi-media-play:before{content:'\e093'}.oi-media-record:before{content:'\e094'}.oi-media-skip-backward:before{content:'\e095'}.oi-media-skip-forward:before{content:'\e096'}.oi-media-step-backward:before{content:'\e097'}.oi-media-step-forward:before{content:'\e098'}.oi-media-stop:before{content:'\e099'}.oi-medical-cross:before{content:'\e09a'}.oi-menu:before{content:'\e09b'}.oi-microphone:before{content:'\e09c'}.oi-minus:before{content:'\e09d'}.oi-monitor:before{content:'\e09e'}.oi-moon:before{content:'\e09f'}.oi-move:before{content:'\e0a0'}.oi-musical-note:before{content:'\e0a1'}.oi-paperclip:before{content:'\e0a2'}.oi-pencil:before{content:'\e0a3'}.oi-people:before{content:'\e0a4'}.oi-person:before{content:'\e0a5'}.oi-phone:before{content:'\e0a6'}.oi-pie-chart:before{content:'\e0a7'}.oi-pin:before{content:'\e0a8'}.oi-play-circle:before{content:'\e0a9'}.oi-plus:before{content:'\e0aa'}.oi-power-standby:before{content:'\e0ab'}.oi-print:before{content:'\e0ac'}.oi-project:before{content:'\e0ad'}.oi-pulse:before{content:'\e0ae'}.oi-puzzle-piece:before{content:'\e0af'}.oi-question-mark:before{content:'\e0b0'}.oi-rain:before{content:'\e0b1'}.oi-random:before{content:'\e0b2'}.oi-reload:before{content:'\e0b3'}.oi-resize-both:before{content:'\e0b4'}.oi-resize-height:before{content:'\e0b5'}.oi-resize-width:before{content:'\e0b6'}.oi-rss-alt:before{content:'\e0b7'}.oi-rss:before{content:'\e0b8'}.oi-script:before{content:'\e0b9'}.oi-share-boxed:before{content:'\e0ba'}.oi-share:before{content:'\e0bb'}.oi-shield:before{content:'\e0bc'}.oi-signal:before{content:'\e0bd'}.oi-signpost:before{content:'\e0be'}.oi-sort-ascending:before{content:'\e0bf'}.oi-sort-descending:before{content:'\e0c0'}.oi-spreadsheet:before{content:'\e0c1'}.oi-star:before{content:'\e0c2'}.oi-sun:before{content:'\e0c3'}.oi-tablet:before{content:'\e0c4'}.oi-tag:before{content:'\e0c5'}.oi-tags:before{content:'\e0c6'}.oi-target:before{content:'\e0c7'}.oi-task:before{content:'\e0c8'}.oi-terminal:before{content:'\e0c9'}.oi-text:before{content:'\e0ca'}.oi-thumb-down:before{content:'\e0cb'}.oi-thumb-up:before{content:'\e0cc'}.oi-timer:before{content:'\e0cd'}.oi-transfer:before{content:'\e0ce'}.oi-trash:before{content:'\e0cf'}.oi-underline:before{content:'\e0d0'}.oi-vertical-align-bottom:before{content:'\e0d1'}.oi-vertical-align-center:before{content:'\e0d2'}.oi-vertical-align-top:before{content:'\e0d3'}.oi-video:before{content:'\e0d4'}.oi-volume-high:before{content:'\e0d5'}.oi-volume-low:before{content:'\e0d6'}.oi-volume-off:before{content:'\e0d7'}.oi-warning:before{content:'\e0d8'}.oi-wifi:before{content:'\e0d9'}.oi-wrench:before{content:'\e0da'}.oi-x:before{content:'\e0db'}.oi-yen:before{content:'\e0dc'}.oi-zoom-in:before{content:'\e0dd'}.oi-zoom-out:before{content:'\e0de'}
\ No newline at end of file
diff --git a/public/css/theme.min.css b/public/css/theme.min.css
new file mode 100644
index 0000000..517c618
--- /dev/null
+++ b/public/css/theme.min.css
@@ -0,0 +1,5 @@
+@charset "UTF-8";@font-face{font-family:charterregular;src:url(fonts/charter_regular-webfont.eot);src:url(fonts/charter_regular-webfont.eot?#iefix) format("embedded-opentype"),url(fonts/charter_regular-webfont.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:charterbold;src:url(fonts/charter_bold-webfont.eot);src:url(fonts/charter_bold-webfont.eot?#iefix) format("embedded-opentype"),url(fonts/charter_bold-webfont.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:'Material Icons';font-style:normal;font-weight:400;src:url(MaterialIcons-Regular.eot);src:local("Material Icons"),local("MaterialIcons-Regular"),url(MaterialIcons-Regular.woff2) format("woff2"),url(MaterialIcons-Regular.woff) format("woff"),url(MaterialIcons-Regular.ttf) format("truetype")}.material-icons{font-family:'Material Icons';font-weight:400;font-style:normal;font-size:24px;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;-webkit-font-feature-settings:'liga';font-feature-settings:'liga'}:root{--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--amber:#ffc107;--blue:#2196f3;--blue-grey:#607d8b;--brown:#795548;--cyan:#00bcd4;--deep-orange:#ff5722;--deep-purple:#673ab7;--green:#4caf50;--grey:#9e9e9e;--indigo:#3f51b5;--light-blue:#03a9f4;--light-green:#8bc34a;--lime:#cddc39;--orange:#ff9800;--pink:#e91e63;--purple:#9c27b0;--red:#f44336;--teal:#009688;--yellow:#ffeb3b;--primary:#F07206;--primary-dark:#be5a05;--primary-light:#fa8d2f;--secondary:#F07206;--secondary-dark:#be5a05;--secondary-light:#fa8d2f;--danger:#f44336;--danger-dark:#d32f2f;--danger-light:#ffcdd2;--info:#2196f3;--info-dark:#1976d2;--info-light:#bbdefb;--success:#4caf50;--success-dark:#388e3c;--success-light:#c8e6c9;--warning:#ff9800;--warning-dark:#f57c00;--warning-light:#ffe0b2;--dark:#424242;--dark-dark:#212121;--dark-light:#757575;--light:#f5f5f5;--light-dark:#e0e0e0;--light-light:#fafafa;--similar:#F83207;--similar-dark:#c62806;--similar-light:#f95b39;--tertiary:#F07206;--tertiary-dark:#be5a05;--tertiary-light:#fa8d2f;--complementary:#0087A3;--complementary-dark:#005d70;--complementary-light:#00b1d6;--font-family-monospace:"Roboto Mono",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--font-family-sans-serif:Roboto,-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--font-family-serif:"Roboto Slab",Georgia,"Times New Roman",Times,serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"}*,::after,::before{-webkit-box-sizing:inherit;box-sizing:inherit}@-ms-viewport{width:device-width}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{text-align:left;text-align:start;background-color:#fff;color:rgba(0,0,0,.87);font-family:Roboto,-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:.875rem;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-weight:400;line-height:1.42857;margin:0}[dir=rtl] body{text-align:right;text-align:start}html{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}[tabindex='-1']:focus{outline:0!important}code,kbd,pre,samp{font-family:"Roboto Mono",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}button,input,optgroup,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;margin:0}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}button,input{overflow:visible}button,select{text-transform:none}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}fieldset{border:0;margin:0;min-width:0;padding:0}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}label{font-size:.75rem;font-weight:400;letter-spacing:0;line-height:1.5;color:rgba(0,0,0,.38);display:inline-block}legend{font-size:1.5rem;font-weight:400;letter-spacing:0;line-height:1.33333;color:inherit;display:block;margin-bottom:.5rem;max-width:100%;padding:0;white-space:normal;width:100%}output{display:inline-block}progress{vertical-align:baseline}select[multiple],select[size]{overflow:auto}textarea{overflow:auto;resize:vertical}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:none;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}[hidden]{display:none!important}img{border-style:none;vertical-align:middle}svg:not(:root){overflow:hidden}summary{cursor:pointer;display:list-item}a{background-color:transparent;color:#f07206;text-decoration:none;-webkit-text-decoration-skip:objects}a:active,a:focus,a:hover{color:#f07206;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):active,a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}template{display:none}caption{text-align:left;text-align:start;font-size:.75rem;font-weight:400;letter-spacing:0;line-height:1.5;caption-side:bottom;color:rgba(0,0,0,.38);min-height:3.5rem;padding:1.21429rem 1.5rem}[dir=rtl] caption{text-align:right;text-align:start}table{border-collapse:collapse}th{text-align:left;text-align:start}[dir=rtl] th{text-align:right;text-align:start}abbr[data-original-title],abbr[title]{border-bottom:0;cursor:help;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}address{font-style:normal;line-height:inherit;margin-bottom:1rem}b,strong{font-weight:bolder}blockquote{margin:0 0 1rem}dd{margin-bottom:.5rem;margin-left:0}dfn{font-style:italic}dl,ol,ul{margin-top:0;margin-bottom:1rem}dt{font-weight:500}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}mark{background-color:#ffeb3b;color:rgba(0,0,0,.87)}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}p{margin-top:0;margin-bottom:1rem}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{min-height:1px;padding-right:20px;padding-left:20px;position:relative;width:100%}.col-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.offset-1{margin-left:8.33333%}.offset-2{margin-left:16.66667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333%}.offset-5{margin-left:41.66667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333%}.offset-8{margin-left:66.66667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333%}.offset-11{margin-left:91.66667%}.order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.col{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:none;width:auto}.order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}@media (min-width:576px){.col-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333%}.offset-sm-2{margin-left:16.66667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333%}.offset-sm-5{margin-left:41.66667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333%}.offset-sm-8{margin-left:66.66667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333%}.offset-sm-11{margin-left:91.66667%}.order-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:none;width:auto}.order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}}@media (min-width:768px){.col-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333%}.offset-md-2{margin-left:16.66667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333%}.offset-md-5{margin-left:41.66667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333%}.offset-md-8{margin-left:66.66667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333%}.offset-md-11{margin-left:91.66667%}.order-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.col-md{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:none;width:auto}.order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}}@media (min-width:992px){.col-lg-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-lg-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-lg-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-lg-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-lg-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-lg-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333%}.offset-lg-2{margin-left:16.66667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333%}.offset-lg-5{margin-left:41.66667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333%}.offset-lg-8{margin-left:66.66667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333%}.offset-lg-11{margin-left:91.66667%}.order-lg-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-lg-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-lg-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-lg-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-lg-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-lg-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-lg-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-lg-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-lg-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-lg-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-lg-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-lg-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-lg-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:none;width:auto}.order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}}@media (min-width:1200px){.col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-xl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-xl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-xl-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333%}.offset-xl-2{margin-left:16.66667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333%}.offset-xl-5{margin-left:41.66667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333%}.offset-xl-8{margin-left:66.66667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333%}.offset-xl-11{margin-left:91.66667%}.order-xl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-xl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-xl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-xl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-xl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-xl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-xl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-xl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-xl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-xl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-xl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-xl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:none;width:auto}.order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}}.container{margin-right:auto;margin-left:auto;padding-right:20px;padding-left:20px;width:100%}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{margin-right:auto;margin-left:auto;padding-right:20px;padding-left:20px;width:100%}.row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-20px;margin-left:-20px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.blockquote{font-size:1.25rem;font-weight:500;letter-spacing:.02em;line-height:1.4;border-left:.3125rem solid #f07206;margin-bottom:1rem;padding:0 1rem}.blockquote-footer{font-size:.75rem;font-weight:400;letter-spacing:0;line-height:1.5;color:rgba(0,0,0,.38);display:block;margin-top:.25rem}.blockquote-footer::before{content:'\2014 \00A0'}.mark,mark{background-color:#ffeb3b;color:rgba(0,0,0,.87);padding:.2em}.small,small{font-size:80%;font-weight:400}.initialism{font-size:90%;text-transform:uppercase}.typography-display-4{font-size:7rem;font-weight:300;letter-spacing:-.04em;line-height:1}.typography-display-3{font-size:3.5rem;font-weight:400;letter-spacing:-.02em;line-height:1.03571}.typography-display-2{font-size:2.8125rem;font-weight:400;letter-spacing:0;line-height:1.06667}.typography-display-1{font-size:2.125rem;font-weight:400;letter-spacing:0;line-height:1.17647}.typography-headline{font-size:1.5rem;font-weight:400;letter-spacing:0;line-height:1.33333}.typography-title{font-size:1.25rem;font-weight:500;letter-spacing:.02em;line-height:1.4}.typography-subheading{font-size:1rem;font-weight:400;letter-spacing:.04em;line-height:1.5}.typography-body-2{font-size:.875rem;font-weight:500;letter-spacing:0;line-height:1.42857}.typography-body-1{font-size:.875rem;font-weight:400;letter-spacing:0;line-height:1.42857}.typography-caption{font-size:.75rem;font-weight:400;letter-spacing:0;line-height:1.5}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{color:inherit;font-family:inherit;margin-bottom:.5rem}.h1,h1{font-size:2.8125rem;font-weight:400;letter-spacing:0;line-height:1.06667}.h2,h2{font-size:2.125rem;font-weight:400;letter-spacing:0;line-height:1.17647}.h3,h3{font-size:1.5rem;font-weight:400;letter-spacing:0;line-height:1.33333}.h4,h4{font-size:1.25rem;font-weight:500;letter-spacing:.02em;line-height:1.4}.h5,h5{font-size:1rem;font-weight:400;letter-spacing:.04em;line-height:1.5}.h6,h6{font-size:.875rem;font-weight:500;letter-spacing:0;line-height:1.42857}.display-1{font-size:7rem;font-weight:300;letter-spacing:-.04em;line-height:1}.display-2{font-size:3.5rem;font-weight:400;letter-spacing:-.02em;line-height:1.03571}.display-3{font-size:2.8125rem;font-weight:400;letter-spacing:0;line-height:1.06667}.display-4{font-size:2.125rem;font-weight:400;letter-spacing:0;line-height:1.17647}.lead{font-size:1.25rem;font-weight:500;letter-spacing:.02em;line-height:1.4}hr{border:0;border-top:1px solid rgba(0,0,0,.12);margin-top:1rem;margin-bottom:1rem}.list-inline{list-style:none;padding-left:0}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.list-unstyled{list-style:none;padding-left:0}.alert,.wpcf7 .wpcf7-validation-errors{border-radius:2px;border:0;display:block;margin-bottom:1rem;padding:1rem 1rem;position:relative}.alert-primary{background-color:#fa8d2f;color:rgba(0,0,0,.87)}.alert-secondary{background-color:#fa8d2f;color:rgba(0,0,0,.87)}.alert-danger{background-color:#ffcdd2;color:rgba(0,0,0,.87)}.alert-info{background-color:#bbdefb;color:rgba(0,0,0,.87)}.alert-success{background-color:#c8e6c9;color:rgba(0,0,0,.87)}.alert-warning{background-color:#ffe0b2;color:rgba(0,0,0,.87)}.alert-dark{background-color:#757575;color:#fff}.alert-light{background-color:#fafafa;color:rgba(0,0,0,.87)}.alert-similar{background-color:#f95b39;color:#fff}.alert-tertiary{background-color:#fa8d2f;color:rgba(0,0,0,.87)}.alert-complementary{background-color:#00b1d6;color:#fff}.alert-dismissible{padding-right:3.5rem}.alert-dismissible .close{color:inherit;padding:.875rem 1rem;position:absolute;top:0;right:0}.alert-heading{color:inherit}.alert-link{color:inherit;font-weight:500}.alert-link:active,.alert-link:focus,.alert-link:hover{color:inherit}.badge{border-radius:2px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-size:inherit;font-weight:500;line-height:inherit;padding-right:.5em;padding-left:.5em;text-align:center;vertical-align:baseline;white-space:nowrap}.badge:empty{display:none}.btn .badge,.tag-cloud-link .badge,.wpcf7 input[type=submit] .badge{margin-top:-1px;margin-bottom:-1px;padding-top:1px;padding-bottom:1px}.badge-primary{background-color:#f07206;color:#fff}.badge-primary[href]:active,.badge-primary[href]:focus,.badge-primary[href]:hover{background-color:#be5a05;color:#fff;text-decoration:none}.badge-secondary{background-color:#f07206;color:#fff}.badge-secondary[href]:active,.badge-secondary[href]:focus,.badge-secondary[href]:hover{background-color:#be5a05;color:#fff;text-decoration:none}.badge-danger{background-color:#f44336;color:#fff}.badge-danger[href]:active,.badge-danger[href]:focus,.badge-danger[href]:hover{background-color:#d32f2f;color:#fff;text-decoration:none}.badge-info{background-color:#2196f3;color:#fff}.badge-info[href]:active,.badge-info[href]:focus,.badge-info[href]:hover{background-color:#1976d2;color:#fff;text-decoration:none}.badge-success{background-color:#4caf50;color:#fff}.badge-success[href]:active,.badge-success[href]:focus,.badge-success[href]:hover{background-color:#388e3c;color:#fff;text-decoration:none}.badge-warning{background-color:#ff9800;color:rgba(0,0,0,.87)}.badge-warning[href]:active,.badge-warning[href]:focus,.badge-warning[href]:hover{background-color:#f57c00;color:#fff;text-decoration:none}.badge-dark{background-color:#424242;color:#fff}.badge-dark[href]:active,.badge-dark[href]:focus,.badge-dark[href]:hover{background-color:#212121;color:#fff;text-decoration:none}.badge-light{background-color:#f5f5f5;color:rgba(0,0,0,.87)}.badge-light[href]:active,.badge-light[href]:focus,.badge-light[href]:hover{background-color:#e0e0e0;color:rgba(0,0,0,.87);text-decoration:none}.badge-similar{background-color:#f83207;color:#fff}.badge-similar[href]:active,.badge-similar[href]:focus,.badge-similar[href]:hover{background-color:#c62806;color:#fff;text-decoration:none}.badge-tertiary{background-color:#f07206;color:#fff}.badge-tertiary[href]:active,.badge-tertiary[href]:focus,.badge-tertiary[href]:hover{background-color:#be5a05;color:#fff;text-decoration:none}.badge-complementary{background-color:#0087a3;color:#fff}.badge-complementary[href]:active,.badge-complementary[href]:focus,.badge-complementary[href]:hover{background-color:#005d70;color:#fff;text-decoration:none}.badge-pill{border-radius:1em}.breadcrumb{border-radius:2px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#f5f5f5;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style:none;margin-bottom:1rem;min-height:3.5rem;padding:.625rem 1rem}.breadcrumb-item{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:color;transition-property:color;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:rgba(0,0,0,.54);display:-webkit-box;display:-ms-flexbox;display:flex}@media (min-width:576px){.breadcrumb-item{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.breadcrumb-item{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.breadcrumb-item{-webkit-transition:none;transition:none}}.breadcrumb-item:active,.breadcrumb-item:focus,.breadcrumb-item:hover{color:rgba(0,0,0,.87)}.breadcrumb-item.active{color:rgba(0,0,0,.87);font-weight:bolder}.breadcrumb-item a{color:inherit;text-decoration:none}.breadcrumb-item+.breadcrumb-item{margin-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{font-size:1.71429em;line-height:.58333em;vertical-align:-.3022em;font-family:'Material Icons';-webkit-font-feature-settings:'liga';font-feature-settings:'liga';-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;letter-spacing:normal;text-rendering:optimizeLegibility;text-transform:none;white-space:nowrap;word-wrap:normal;color:rgba(0,0,0,.54);content:"chevron_right";display:inline-block;margin-right:.5rem}.carousel{position:relative}.carousel:hover .carousel-control-next,.carousel:hover .carousel-control-prev{opacity:1}.carousel-inner{overflow:hidden;position:relative;width:100%}.carousel-item{-webkit-transition-duration:375ms;transition-duration:375ms;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none;-webkit-perspective:1000px;perspective:1000px;position:relative;width:100%}@media (min-width:576px){.carousel-item{-webkit-transition-duration:.4875s;transition-duration:.4875s}}@media (min-width:992px){.carousel-item{-webkit-transition-duration:.25s;transition-duration:.25s}}@media screen and (prefers-reduced-motion:reduce){.carousel-item{-webkit-transition:none;transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:-webkit-box;display:-ms-flexbox;display:flex}.carousel-item-left.active,.carousel-item-prev{-webkit-transform:translateX(-100%);transform:translateX(-100%)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-item-left.active,.carousel-item-prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.carousel-item-left.carousel-item-next,.carousel-item-prev.carousel-item-right{-webkit-transform:translateX(0);transform:translateX(0)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-item-left.carousel-item-next,.carousel-item-prev.carousel-item-right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-item-next,.carousel-item-right.active{-webkit-transform:translateX(100%);transform:translateX(100%)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-item-next,.carousel-item-right.active{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.carousel-item-next,.carousel-item-prev{position:absolute;top:0}.carousel-fade .carousel-item{-webkit-transition-duration:375ms;transition-duration:375ms;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);opacity:0}@media (min-width:576px){.carousel-fade .carousel-item{-webkit-transition-duration:.4875s;transition-duration:.4875s}}@media (min-width:992px){.carousel-fade .carousel-item{-webkit-transition-duration:.25s;transition-duration:.25s}}@media screen and (prefers-reduced-motion:reduce){.carousel-fade .carousel-item{-webkit-transition:none;transition:none}}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{opacity:1}.carousel-fade .carousel-item-left.active,.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item-prev.active,.carousel-fade .carousel-item.active{-webkit-transform:translateX(0);transform:translateX(0)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-fade .carousel-item-left.active,.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item-prev.active,.carousel-fade .carousel-item.active{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-fade .carousel-item-left.active,.carousel-fade .carousel-item-right.active{opacity:0}.carousel-control-next,.carousel-control-prev{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:rgba(255,255,255,.12);border-radius:50%;-webkit-box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px 0 rgba(0,0,0,.2);box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px 0 rgba(0,0,0,.2);color:#fff;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:.8125rem;height:2.5rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;line-height:1;margin-top:-1.25rem;opacity:0;position:absolute;top:50%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:2.5rem}.carousel-control-next:active,.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:active,.carousel-control-prev:focus,.carousel-control-prev:hover{background-color:rgba(204,204,204,.25);color:#fff;text-decoration:none}.carousel-control-next:active,.carousel-control-prev:active{-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2);box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2)}.carousel-control-next:focus,.carousel-control-prev:focus{opacity:1;outline:0}.carousel-control-next{right:1.25rem}.carousel-control-prev{left:1.25rem}.carousel-control-next-icon,.carousel-control-prev-icon{font-size:1.71429em;line-height:.58333em;vertical-align:-.3022em;font-family:'Material Icons';-webkit-font-feature-settings:'liga';font-feature-settings:'liga';-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;letter-spacing:normal;text-rendering:optimizeLegibility;text-transform:none;white-space:nowrap;word-wrap:normal}.carousel-control-next-icon::before{content:"chevron_right"}.carousel-control-prev-icon::before{content:"chevron_left"}.carousel-caption{color:#fff;position:absolute;right:25%;bottom:1.5rem;left:25%;text-align:center;z-index:1}.carousel-indicators{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;list-style:none;margin-bottom:0;padding-left:0;position:absolute;right:5rem;bottom:.5rem;left:5rem;z-index:1}.carousel-indicators li{background-color:transparent;border:1px solid rgba(255,255,255,.12);border-radius:.5rem;cursor:pointer;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;height:.5rem;margin-right:1px;margin-left:1px;overflow:hidden;text-indent:100%;white-space:nowrap;width:.5rem}.carousel-indicators .active{background-color:rgba(204,204,204,.25)}.close{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:color;transition-property:color;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;background-image:none;border:0;color:rgba(0,0,0,.38);float:right;font-size:1.5rem;font-weight:300;line-height:1;padding:0}@media (min-width:576px){.close{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.close{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.close{-webkit-transition:none;transition:none}}.close:active,.close:focus,.close:hover{color:rgba(0,0,0,.87);text-decoration:none}.close:focus{outline:0}.close:not(:disabled):not(.disabled){cursor:pointer}code{border-radius:2px;background-color:#f5f5f5;color:#bd4147;font-size:87.5%;padding:.2rem .4rem;word-break:break-word}a>code{color:inherit}kbd{border-radius:2px;background-color:rgba(0,0,0,.87);color:#fff;font-size:87.5%;padding:.2rem .4rem}kbd kbd{font-size:100%;font-weight:bolder;padding:0}pre{border-radius:2px;color:rgba(0,0,0,.87);display:block;font-size:87.5%}pre code{background-color:transparent;border-radius:0;color:inherit;font-size:inherit;padding:0;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.form-check{display:block;margin-bottom:.5rem;padding-left:1.25rem;position:relative}.form-check-inline{display:inline-block;margin-right:.5rem;margin-bottom:0}.form-check-input{margin-top:.25rem;margin-left:-1.25rem;position:absolute}.form-check-input:disabled~.form-check-label{color:rgba(0,0,0,.38)}.form-check-label{color:inherit;font-size:inherit;line-height:inherit}.form-group,.wpcf7 .wpcf7-form p{margin-bottom:1rem}.form-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-.5rem;margin-left:-.5rem}.form-row>.col,.form-row>[class*=col-]{padding-right:.5rem;padding-left:.5rem}.form-inline{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.form-inline .custom-file,.form-inline .custom-select{width:auto}.form-inline .form-check{margin-bottom:0;width:auto}.form-inline .form-control,.form-inline .form-control-file,.form-inline .wpcf7 .wpcf7-validation-errors,.form-inline .wpcf7 input[type=color],.form-inline .wpcf7 input[type=date],.form-inline .wpcf7 input[type=datetime-local],.form-inline .wpcf7 input[type=datetime],.form-inline .wpcf7 input[type=email],.form-inline .wpcf7 input[type=file],.form-inline .wpcf7 input[type=month],.form-inline .wpcf7 input[type=number],.form-inline .wpcf7 input[type=range],.form-inline .wpcf7 input[type=search],.form-inline .wpcf7 input[type=submit],.form-inline .wpcf7 input[type=tel],.form-inline .wpcf7 input[type=text],.form-inline .wpcf7 input[type=time],.form-inline .wpcf7 input[type=url],.form-inline .wpcf7 input[type=week],.form-inline .wpcf7 select,.form-inline .wpcf7 textarea,.wpcf7 .form-inline .wpcf7-validation-errors,.wpcf7 .form-inline input[type=color],.wpcf7 .form-inline input[type=date],.wpcf7 .form-inline input[type=datetime-local],.wpcf7 .form-inline input[type=datetime],.wpcf7 .form-inline input[type=email],.wpcf7 .form-inline input[type=file],.wpcf7 .form-inline input[type=month],.wpcf7 .form-inline input[type=number],.wpcf7 .form-inline input[type=range],.wpcf7 .form-inline input[type=search],.wpcf7 .form-inline input[type=submit],.wpcf7 .form-inline input[type=tel],.wpcf7 .form-inline input[type=text],.wpcf7 .form-inline input[type=time],.wpcf7 .form-inline input[type=url],.wpcf7 .form-inline input[type=week],.wpcf7 .form-inline select,.wpcf7 .form-inline textarea{display:inline-block;vertical-align:middle;width:auto}.form-inline .form-control-plaintext{display:inline-block}.form-inline .form-group,.form-inline .wpcf7 .wpcf7-form p,.wpcf7 .wpcf7-form .form-inline p{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-bottom:0}.form-inline .input-group{width:auto}.col-form-label{color:inherit;font-size:.875rem;line-height:1.71429;padding-top:.375rem;padding-bottom:.375rem}.col-form-label-lg{font-size:1.85938rem;line-height:1.34454;padding-top:.625rem;padding-bottom:.625rem}.col-form-label-sm{font-size:.71094rem;line-height:1.75824;padding-top:.375rem;padding-bottom:.375rem}.form-text{font-size:.75rem;font-weight:400;letter-spacing:0;line-height:1.5;color:rgba(0,0,0,.38);display:block;margin-top:.5rem}.custom-select-lg+.form-text,.floating-label-lg .custom-select+.form-text,.floating-label-lg .form-control+.form-text,.floating-label-lg .form-control-file+.form-text,.floating-label-lg .wpcf7 .wpcf7-validation-errors+.form-text,.floating-label-lg .wpcf7 input[type=color]+.form-text,.floating-label-lg .wpcf7 input[type=date]+.form-text,.floating-label-lg .wpcf7 input[type=datetime-local]+.form-text,.floating-label-lg .wpcf7 input[type=datetime]+.form-text,.floating-label-lg .wpcf7 input[type=email]+.form-text,.floating-label-lg .wpcf7 input[type=file]+.form-text,.floating-label-lg .wpcf7 input[type=month]+.form-text,.floating-label-lg .wpcf7 input[type=number]+.form-text,.floating-label-lg .wpcf7 input[type=range]+.form-text,.floating-label-lg .wpcf7 input[type=search]+.form-text,.floating-label-lg .wpcf7 input[type=submit]+.form-text,.floating-label-lg .wpcf7 input[type=tel]+.form-text,.floating-label-lg .wpcf7 input[type=text]+.form-text,.floating-label-lg .wpcf7 input[type=time]+.form-text,.floating-label-lg .wpcf7 input[type=url]+.form-text,.floating-label-lg .wpcf7 input[type=week]+.form-text,.floating-label-lg .wpcf7 select+.form-text,.floating-label-lg .wpcf7 textarea+.form-text,.floating-label-lg+.form-text,.form-control-lg+.form-text,.input-group-lg>.floating-label .custom-select+.form-text,.input-group-lg>.floating-label .form-control+.form-text,.input-group-lg>.floating-label .form-control-file+.form-text,.input-group-lg>.floating-label .wpcf7 .wpcf7-validation-errors+.form-text,.input-group-lg>.floating-label .wpcf7 input[type=color]+.form-text,.input-group-lg>.floating-label .wpcf7 input[type=date]+.form-text,.input-group-lg>.floating-label .wpcf7 input[type=datetime-local]+.form-text,.input-group-lg>.floating-label .wpcf7 input[type=datetime]+.form-text,.input-group-lg>.floating-label .wpcf7 input[type=email]+.form-text,.input-group-lg>.floating-label .wpcf7 input[type=file]+.form-text,.input-group-lg>.floating-label .wpcf7 input[type=month]+.form-text,.input-group-lg>.floating-label .wpcf7 input[type=number]+.form-text,.input-group-lg>.floating-label .wpcf7 input[type=range]+.form-text,.input-group-lg>.floating-label .wpcf7 input[type=search]+.form-text,.input-group-lg>.floating-label .wpcf7 input[type=submit]+.form-text,.input-group-lg>.floating-label .wpcf7 input[type=tel]+.form-text,.input-group-lg>.floating-label .wpcf7 input[type=text]+.form-text,.input-group-lg>.floating-label .wpcf7 input[type=time]+.form-text,.input-group-lg>.floating-label .wpcf7 input[type=url]+.form-text,.input-group-lg>.floating-label .wpcf7 input[type=week]+.form-text,.input-group-lg>.floating-label .wpcf7 select+.form-text,.input-group-lg>.floating-label .wpcf7 textarea+.form-text,.input-group-lg>.floating-label+.form-text,.input-group-lg>.textfield-box .custom-select+.form-text,.input-group-lg>.textfield-box .form-control+.form-text,.input-group-lg>.textfield-box .form-control-file+.form-text,.input-group-lg>.textfield-box .wpcf7 .wpcf7-validation-errors+.form-text,.input-group-lg>.textfield-box .wpcf7 input[type=color]+.form-text,.input-group-lg>.textfield-box .wpcf7 input[type=date]+.form-text,.input-group-lg>.textfield-box .wpcf7 input[type=datetime-local]+.form-text,.input-group-lg>.textfield-box .wpcf7 input[type=datetime]+.form-text,.input-group-lg>.textfield-box .wpcf7 input[type=email]+.form-text,.input-group-lg>.textfield-box .wpcf7 input[type=file]+.form-text,.input-group-lg>.textfield-box .wpcf7 input[type=month]+.form-text,.input-group-lg>.textfield-box .wpcf7 input[type=number]+.form-text,.input-group-lg>.textfield-box .wpcf7 input[type=range]+.form-text,.input-group-lg>.textfield-box .wpcf7 input[type=search]+.form-text,.input-group-lg>.textfield-box .wpcf7 input[type=submit]+.form-text,.input-group-lg>.textfield-box .wpcf7 input[type=tel]+.form-text,.input-group-lg>.textfield-box .wpcf7 input[type=text]+.form-text,.input-group-lg>.textfield-box .wpcf7 input[type=time]+.form-text,.input-group-lg>.textfield-box .wpcf7 input[type=url]+.form-text,.input-group-lg>.textfield-box .wpcf7 input[type=week]+.form-text,.input-group-lg>.textfield-box .wpcf7 select+.form-text,.input-group-lg>.textfield-box .wpcf7 textarea+.form-text,.input-group-lg>.textfield-box+.form-text,.textfield-box-lg .custom-select+.form-text,.textfield-box-lg .form-control+.form-text,.textfield-box-lg .form-control-file+.form-text,.textfield-box-lg .wpcf7 .wpcf7-validation-errors+.form-text,.textfield-box-lg .wpcf7 input[type=color]+.form-text,.textfield-box-lg .wpcf7 input[type=date]+.form-text,.textfield-box-lg .wpcf7 input[type=datetime-local]+.form-text,.textfield-box-lg .wpcf7 input[type=datetime]+.form-text,.textfield-box-lg .wpcf7 input[type=email]+.form-text,.textfield-box-lg .wpcf7 input[type=file]+.form-text,.textfield-box-lg .wpcf7 input[type=month]+.form-text,.textfield-box-lg .wpcf7 input[type=number]+.form-text,.textfield-box-lg .wpcf7 input[type=range]+.form-text,.textfield-box-lg .wpcf7 input[type=search]+.form-text,.textfield-box-lg .wpcf7 input[type=submit]+.form-text,.textfield-box-lg .wpcf7 input[type=tel]+.form-text,.textfield-box-lg .wpcf7 input[type=text]+.form-text,.textfield-box-lg .wpcf7 input[type=time]+.form-text,.textfield-box-lg .wpcf7 input[type=url]+.form-text,.textfield-box-lg .wpcf7 input[type=week]+.form-text,.textfield-box-lg .wpcf7 select+.form-text,.textfield-box-lg .wpcf7 textarea+.form-text,.textfield-box-lg+.form-text,.wpcf7 .floating-label-lg .wpcf7-validation-errors+.form-text,.wpcf7 .floating-label-lg input[type=color]+.form-text,.wpcf7 .floating-label-lg input[type=date]+.form-text,.wpcf7 .floating-label-lg input[type=datetime-local]+.form-text,.wpcf7 .floating-label-lg input[type=datetime]+.form-text,.wpcf7 .floating-label-lg input[type=email]+.form-text,.wpcf7 .floating-label-lg input[type=file]+.form-text,.wpcf7 .floating-label-lg input[type=month]+.form-text,.wpcf7 .floating-label-lg input[type=number]+.form-text,.wpcf7 .floating-label-lg input[type=range]+.form-text,.wpcf7 .floating-label-lg input[type=search]+.form-text,.wpcf7 .floating-label-lg input[type=submit]+.form-text,.wpcf7 .floating-label-lg input[type=tel]+.form-text,.wpcf7 .floating-label-lg input[type=text]+.form-text,.wpcf7 .floating-label-lg input[type=time]+.form-text,.wpcf7 .floating-label-lg input[type=url]+.form-text,.wpcf7 .floating-label-lg input[type=week]+.form-text,.wpcf7 .floating-label-lg select+.form-text,.wpcf7 .floating-label-lg textarea+.form-text,.wpcf7 .input-group-lg>.floating-label .wpcf7-validation-errors+.form-text,.wpcf7 .input-group-lg>.floating-label input[type=color]+.form-text,.wpcf7 .input-group-lg>.floating-label input[type=date]+.form-text,.wpcf7 .input-group-lg>.floating-label input[type=datetime-local]+.form-text,.wpcf7 .input-group-lg>.floating-label input[type=datetime]+.form-text,.wpcf7 .input-group-lg>.floating-label input[type=email]+.form-text,.wpcf7 .input-group-lg>.floating-label input[type=file]+.form-text,.wpcf7 .input-group-lg>.floating-label input[type=month]+.form-text,.wpcf7 .input-group-lg>.floating-label input[type=number]+.form-text,.wpcf7 .input-group-lg>.floating-label input[type=range]+.form-text,.wpcf7 .input-group-lg>.floating-label input[type=search]+.form-text,.wpcf7 .input-group-lg>.floating-label input[type=submit]+.form-text,.wpcf7 .input-group-lg>.floating-label input[type=tel]+.form-text,.wpcf7 .input-group-lg>.floating-label input[type=text]+.form-text,.wpcf7 .input-group-lg>.floating-label input[type=time]+.form-text,.wpcf7 .input-group-lg>.floating-label input[type=url]+.form-text,.wpcf7 .input-group-lg>.floating-label input[type=week]+.form-text,.wpcf7 .input-group-lg>.floating-label select+.form-text,.wpcf7 .input-group-lg>.floating-label textarea+.form-text,.wpcf7 .input-group-lg>.textfield-box .wpcf7-validation-errors+.form-text,.wpcf7 .input-group-lg>.textfield-box input[type=color]+.form-text,.wpcf7 .input-group-lg>.textfield-box input[type=date]+.form-text,.wpcf7 .input-group-lg>.textfield-box input[type=datetime-local]+.form-text,.wpcf7 .input-group-lg>.textfield-box input[type=datetime]+.form-text,.wpcf7 .input-group-lg>.textfield-box input[type=email]+.form-text,.wpcf7 .input-group-lg>.textfield-box input[type=file]+.form-text,.wpcf7 .input-group-lg>.textfield-box input[type=month]+.form-text,.wpcf7 .input-group-lg>.textfield-box input[type=number]+.form-text,.wpcf7 .input-group-lg>.textfield-box input[type=range]+.form-text,.wpcf7 .input-group-lg>.textfield-box input[type=search]+.form-text,.wpcf7 .input-group-lg>.textfield-box input[type=submit]+.form-text,.wpcf7 .input-group-lg>.textfield-box input[type=tel]+.form-text,.wpcf7 .input-group-lg>.textfield-box input[type=text]+.form-text,.wpcf7 .input-group-lg>.textfield-box input[type=time]+.form-text,.wpcf7 .input-group-lg>.textfield-box input[type=url]+.form-text,.wpcf7 .input-group-lg>.textfield-box input[type=week]+.form-text,.wpcf7 .input-group-lg>.textfield-box select+.form-text,.wpcf7 .input-group-lg>.textfield-box textarea+.form-text,.wpcf7 .textfield-box-lg .wpcf7-validation-errors+.form-text,.wpcf7 .textfield-box-lg input[type=color]+.form-text,.wpcf7 .textfield-box-lg input[type=date]+.form-text,.wpcf7 .textfield-box-lg input[type=datetime-local]+.form-text,.wpcf7 .textfield-box-lg input[type=datetime]+.form-text,.wpcf7 .textfield-box-lg input[type=email]+.form-text,.wpcf7 .textfield-box-lg input[type=file]+.form-text,.wpcf7 .textfield-box-lg input[type=month]+.form-text,.wpcf7 .textfield-box-lg input[type=number]+.form-text,.wpcf7 .textfield-box-lg input[type=range]+.form-text,.wpcf7 .textfield-box-lg input[type=search]+.form-text,.wpcf7 .textfield-box-lg input[type=submit]+.form-text,.wpcf7 .textfield-box-lg input[type=tel]+.form-text,.wpcf7 .textfield-box-lg input[type=text]+.form-text,.wpcf7 .textfield-box-lg input[type=time]+.form-text,.wpcf7 .textfield-box-lg input[type=url]+.form-text,.wpcf7 .textfield-box-lg input[type=week]+.form-text,.wpcf7 .textfield-box-lg select+.form-text,.wpcf7 .textfield-box-lg textarea+.form-text{margin-top:.75rem}.custom-select-sm+.form-text,.floating-label-sm .custom-select+.form-text,.floating-label-sm .form-control+.form-text,.floating-label-sm .form-control-file+.form-text,.floating-label-sm .wpcf7 .wpcf7-validation-errors+.form-text,.floating-label-sm .wpcf7 input[type=color]+.form-text,.floating-label-sm .wpcf7 input[type=date]+.form-text,.floating-label-sm .wpcf7 input[type=datetime-local]+.form-text,.floating-label-sm .wpcf7 input[type=datetime]+.form-text,.floating-label-sm .wpcf7 input[type=email]+.form-text,.floating-label-sm .wpcf7 input[type=file]+.form-text,.floating-label-sm .wpcf7 input[type=month]+.form-text,.floating-label-sm .wpcf7 input[type=number]+.form-text,.floating-label-sm .wpcf7 input[type=range]+.form-text,.floating-label-sm .wpcf7 input[type=search]+.form-text,.floating-label-sm .wpcf7 input[type=submit]+.form-text,.floating-label-sm .wpcf7 input[type=tel]+.form-text,.floating-label-sm .wpcf7 input[type=text]+.form-text,.floating-label-sm .wpcf7 input[type=time]+.form-text,.floating-label-sm .wpcf7 input[type=url]+.form-text,.floating-label-sm .wpcf7 input[type=week]+.form-text,.floating-label-sm .wpcf7 select+.form-text,.floating-label-sm .wpcf7 textarea+.form-text,.floating-label-sm+.form-text,.form-control-sm+.form-text,.input-group-sm>.floating-label .custom-select+.form-text,.input-group-sm>.floating-label .form-control+.form-text,.input-group-sm>.floating-label .form-control-file+.form-text,.input-group-sm>.floating-label .wpcf7 .wpcf7-validation-errors+.form-text,.input-group-sm>.floating-label .wpcf7 input[type=color]+.form-text,.input-group-sm>.floating-label .wpcf7 input[type=date]+.form-text,.input-group-sm>.floating-label .wpcf7 input[type=datetime-local]+.form-text,.input-group-sm>.floating-label .wpcf7 input[type=datetime]+.form-text,.input-group-sm>.floating-label .wpcf7 input[type=email]+.form-text,.input-group-sm>.floating-label .wpcf7 input[type=file]+.form-text,.input-group-sm>.floating-label .wpcf7 input[type=month]+.form-text,.input-group-sm>.floating-label .wpcf7 input[type=number]+.form-text,.input-group-sm>.floating-label .wpcf7 input[type=range]+.form-text,.input-group-sm>.floating-label .wpcf7 input[type=search]+.form-text,.input-group-sm>.floating-label .wpcf7 input[type=submit]+.form-text,.input-group-sm>.floating-label .wpcf7 input[type=tel]+.form-text,.input-group-sm>.floating-label .wpcf7 input[type=text]+.form-text,.input-group-sm>.floating-label .wpcf7 input[type=time]+.form-text,.input-group-sm>.floating-label .wpcf7 input[type=url]+.form-text,.input-group-sm>.floating-label .wpcf7 input[type=week]+.form-text,.input-group-sm>.floating-label .wpcf7 select+.form-text,.input-group-sm>.floating-label .wpcf7 textarea+.form-text,.input-group-sm>.floating-label+.form-text,.input-group-sm>.textfield-box .custom-select+.form-text,.input-group-sm>.textfield-box .form-control+.form-text,.input-group-sm>.textfield-box .form-control-file+.form-text,.input-group-sm>.textfield-box .wpcf7 .wpcf7-validation-errors+.form-text,.input-group-sm>.textfield-box .wpcf7 input[type=color]+.form-text,.input-group-sm>.textfield-box .wpcf7 input[type=date]+.form-text,.input-group-sm>.textfield-box .wpcf7 input[type=datetime-local]+.form-text,.input-group-sm>.textfield-box .wpcf7 input[type=datetime]+.form-text,.input-group-sm>.textfield-box .wpcf7 input[type=email]+.form-text,.input-group-sm>.textfield-box .wpcf7 input[type=file]+.form-text,.input-group-sm>.textfield-box .wpcf7 input[type=month]+.form-text,.input-group-sm>.textfield-box .wpcf7 input[type=number]+.form-text,.input-group-sm>.textfield-box .wpcf7 input[type=range]+.form-text,.input-group-sm>.textfield-box .wpcf7 input[type=search]+.form-text,.input-group-sm>.textfield-box .wpcf7 input[type=submit]+.form-text,.input-group-sm>.textfield-box .wpcf7 input[type=tel]+.form-text,.input-group-sm>.textfield-box .wpcf7 input[type=text]+.form-text,.input-group-sm>.textfield-box .wpcf7 input[type=time]+.form-text,.input-group-sm>.textfield-box .wpcf7 input[type=url]+.form-text,.input-group-sm>.textfield-box .wpcf7 input[type=week]+.form-text,.input-group-sm>.textfield-box .wpcf7 select+.form-text,.input-group-sm>.textfield-box .wpcf7 textarea+.form-text,.input-group-sm>.textfield-box+.form-text,.textfield-box-sm .custom-select+.form-text,.textfield-box-sm .form-control+.form-text,.textfield-box-sm .form-control-file+.form-text,.textfield-box-sm .wpcf7 .wpcf7-validation-errors+.form-text,.textfield-box-sm .wpcf7 input[type=color]+.form-text,.textfield-box-sm .wpcf7 input[type=date]+.form-text,.textfield-box-sm .wpcf7 input[type=datetime-local]+.form-text,.textfield-box-sm .wpcf7 input[type=datetime]+.form-text,.textfield-box-sm .wpcf7 input[type=email]+.form-text,.textfield-box-sm .wpcf7 input[type=file]+.form-text,.textfield-box-sm .wpcf7 input[type=month]+.form-text,.textfield-box-sm .wpcf7 input[type=number]+.form-text,.textfield-box-sm .wpcf7 input[type=range]+.form-text,.textfield-box-sm .wpcf7 input[type=search]+.form-text,.textfield-box-sm .wpcf7 input[type=submit]+.form-text,.textfield-box-sm .wpcf7 input[type=tel]+.form-text,.textfield-box-sm .wpcf7 input[type=text]+.form-text,.textfield-box-sm .wpcf7 input[type=time]+.form-text,.textfield-box-sm .wpcf7 input[type=url]+.form-text,.textfield-box-sm .wpcf7 input[type=week]+.form-text,.textfield-box-sm .wpcf7 select+.form-text,.textfield-box-sm .wpcf7 textarea+.form-text,.textfield-box-sm+.form-text,.wpcf7 .floating-label-sm .wpcf7-validation-errors+.form-text,.wpcf7 .floating-label-sm input[type=color]+.form-text,.wpcf7 .floating-label-sm input[type=date]+.form-text,.wpcf7 .floating-label-sm input[type=datetime-local]+.form-text,.wpcf7 .floating-label-sm input[type=datetime]+.form-text,.wpcf7 .floating-label-sm input[type=email]+.form-text,.wpcf7 .floating-label-sm input[type=file]+.form-text,.wpcf7 .floating-label-sm input[type=month]+.form-text,.wpcf7 .floating-label-sm input[type=number]+.form-text,.wpcf7 .floating-label-sm input[type=range]+.form-text,.wpcf7 .floating-label-sm input[type=search]+.form-text,.wpcf7 .floating-label-sm input[type=submit]+.form-text,.wpcf7 .floating-label-sm input[type=tel]+.form-text,.wpcf7 .floating-label-sm input[type=text]+.form-text,.wpcf7 .floating-label-sm input[type=time]+.form-text,.wpcf7 .floating-label-sm input[type=url]+.form-text,.wpcf7 .floating-label-sm input[type=week]+.form-text,.wpcf7 .floating-label-sm select+.form-text,.wpcf7 .floating-label-sm textarea+.form-text,.wpcf7 .input-group-sm>.floating-label .wpcf7-validation-errors+.form-text,.wpcf7 .input-group-sm>.floating-label input[type=color]+.form-text,.wpcf7 .input-group-sm>.floating-label input[type=date]+.form-text,.wpcf7 .input-group-sm>.floating-label input[type=datetime-local]+.form-text,.wpcf7 .input-group-sm>.floating-label input[type=datetime]+.form-text,.wpcf7 .input-group-sm>.floating-label input[type=email]+.form-text,.wpcf7 .input-group-sm>.floating-label input[type=file]+.form-text,.wpcf7 .input-group-sm>.floating-label input[type=month]+.form-text,.wpcf7 .input-group-sm>.floating-label input[type=number]+.form-text,.wpcf7 .input-group-sm>.floating-label input[type=range]+.form-text,.wpcf7 .input-group-sm>.floating-label input[type=search]+.form-text,.wpcf7 .input-group-sm>.floating-label input[type=submit]+.form-text,.wpcf7 .input-group-sm>.floating-label input[type=tel]+.form-text,.wpcf7 .input-group-sm>.floating-label input[type=text]+.form-text,.wpcf7 .input-group-sm>.floating-label input[type=time]+.form-text,.wpcf7 .input-group-sm>.floating-label input[type=url]+.form-text,.wpcf7 .input-group-sm>.floating-label input[type=week]+.form-text,.wpcf7 .input-group-sm>.floating-label select+.form-text,.wpcf7 .input-group-sm>.floating-label textarea+.form-text,.wpcf7 .input-group-sm>.textfield-box .wpcf7-validation-errors+.form-text,.wpcf7 .input-group-sm>.textfield-box input[type=color]+.form-text,.wpcf7 .input-group-sm>.textfield-box input[type=date]+.form-text,.wpcf7 .input-group-sm>.textfield-box input[type=datetime-local]+.form-text,.wpcf7 .input-group-sm>.textfield-box input[type=datetime]+.form-text,.wpcf7 .input-group-sm>.textfield-box input[type=email]+.form-text,.wpcf7 .input-group-sm>.textfield-box input[type=file]+.form-text,.wpcf7 .input-group-sm>.textfield-box input[type=month]+.form-text,.wpcf7 .input-group-sm>.textfield-box input[type=number]+.form-text,.wpcf7 .input-group-sm>.textfield-box input[type=range]+.form-text,.wpcf7 .input-group-sm>.textfield-box input[type=search]+.form-text,.wpcf7 .input-group-sm>.textfield-box input[type=submit]+.form-text,.wpcf7 .input-group-sm>.textfield-box input[type=tel]+.form-text,.wpcf7 .input-group-sm>.textfield-box input[type=text]+.form-text,.wpcf7 .input-group-sm>.textfield-box input[type=time]+.form-text,.wpcf7 .input-group-sm>.textfield-box input[type=url]+.form-text,.wpcf7 .input-group-sm>.textfield-box input[type=week]+.form-text,.wpcf7 .input-group-sm>.textfield-box select+.form-text,.wpcf7 .input-group-sm>.textfield-box textarea+.form-text,.wpcf7 .textfield-box-sm .wpcf7-validation-errors+.form-text,.wpcf7 .textfield-box-sm input[type=color]+.form-text,.wpcf7 .textfield-box-sm input[type=date]+.form-text,.wpcf7 .textfield-box-sm input[type=datetime-local]+.form-text,.wpcf7 .textfield-box-sm input[type=datetime]+.form-text,.wpcf7 .textfield-box-sm input[type=email]+.form-text,.wpcf7 .textfield-box-sm input[type=file]+.form-text,.wpcf7 .textfield-box-sm input[type=month]+.form-text,.wpcf7 .textfield-box-sm input[type=number]+.form-text,.wpcf7 .textfield-box-sm input[type=range]+.form-text,.wpcf7 .textfield-box-sm input[type=search]+.form-text,.wpcf7 .textfield-box-sm input[type=submit]+.form-text,.wpcf7 .textfield-box-sm input[type=tel]+.form-text,.wpcf7 .textfield-box-sm input[type=text]+.form-text,.wpcf7 .textfield-box-sm input[type=time]+.form-text,.wpcf7 .textfield-box-sm input[type=url]+.form-text,.wpcf7 .textfield-box-sm input[type=week]+.form-text,.wpcf7 .textfield-box-sm select+.form-text,.wpcf7 .textfield-box-sm textarea+.form-text{margin-top:.25rem}.form-control-plaintext{background-color:transparent;border-color:transparent;border-radius:0;border-style:solid;border-width:0 0 1px;-webkit-box-shadow:none;box-shadow:none;color:rgba(0,0,0,.87);display:block;font-size:1rem;line-height:1.5;padding:.375rem 0 calc(.375rem - 1px);width:100%}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.figure{display:inline-block}.figure-caption{font-size:.75rem;font-weight:400;letter-spacing:0;line-height:1.5;color:rgba(0,0,0,.38)}.figure-img{line-height:1;margin-bottom:.5rem}.img-fluid{height:auto;max-width:100%}.img-thumbnail{height:auto;max-width:100%;-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2);box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2)}.jumbotron{border-radius:2px;background-color:#fff;-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2);box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2);color:rgba(0,0,0,.87);padding:3rem 2rem}.jumbotron-fluid{border-radius:0;padding-right:0;padding-left:0}.media{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;display:-webkit-box;display:-ms-flexbox;display:flex}.media-body{-webkit-box-flex:1;-ms-flex:1;flex:1}.nav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style:none;margin-bottom:0;padding-left:0}.nav-link{display:block;padding:.5rem 1rem}.nav-link:active,.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:rgba(0,0,0,.38);cursor:default}.nav-fill .nav-item{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;text-align:center}.nav-pills .nav-link{border-radius:2px;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:background-color,color,opacity;transition-property:background-color,color,opacity;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);color:rgba(0,0,0,.87);opacity:.7}@media (min-width:576px){.nav-pills .nav-link{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.nav-pills .nav-link{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.nav-pills .nav-link{-webkit-transition:none;transition:none}}.nav-pills .nav-link:active,.nav-pills .nav-link:focus,.nav-pills .nav-link:hover{background-color:rgba(0,0,0,.12)}.nav-pills .nav-link.active{color:#f07206;opacity:1}.nav-pills .nav-link.disabled{background-color:transparent;color:rgba(0,0,0,.38);opacity:1}.nav-pills .nav-link:active{opacity:1}.nav-pills .show>.nav-link{background-color:rgba(0,0,0,.12);opacity:1}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.pagination{background-color:#f5f5f5;display:-webkit-box;display:-ms-flexbox;display:flex;list-style:none;padding:.625rem .5rem}.page-link{border-radius:2px;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:color;transition-property:color;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);color:rgba(0,0,0,.87);display:block;font-size:.875rem;font-weight:500;line-height:1;margin-left:1px;padding:.6875rem 1rem;position:relative;text-align:center;white-space:nowrap}@media (min-width:576px){.page-link{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.page-link{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.page-link{-webkit-transition:none;transition:none}}.page-link:active,.page-link:focus,.page-link:hover{color:rgba(0,0,0,.87);text-decoration:none}.page-link:focus,.page-link:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.12)),to(rgba(0,0,0,.12)));background-image:linear-gradient(to bottom,rgba(0,0,0,.12),rgba(0,0,0,.12))}.page-link.active,.page-link:active{background-color:rgba(153,153,153,.4);background-image:none}.page-link:focus{outline:0}.page-link:not(:disabled):not(.disabled){cursor:pointer}.page-item:first-child .page-link{margin-left:0}.page-item.active .page-link{background-color:rgba(153,153,153,.4)}.page-item.disabled .page-link{background-color:transparent;color:rgba(0,0,0,.38);cursor:auto;pointer-events:none}.pagination-lg .page-link{font-size:.9375rem;padding:.78125rem 1rem}.pagination-sm .page-link{font-size:.8125rem;padding:.59375rem 1rem}.popover{text-align:left;text-align:start;font-family:Roboto,-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;border-radius:2px;background-color:#fff;-webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,.14),0 4px 5px 0 rgba(0,0,0,.12),0 1px 10px 0 rgba(0,0,0,.2);box-shadow:0 2px 4px 0 rgba(0,0,0,.14),0 4px 5px 0 rgba(0,0,0,.12),0 1px 10px 0 rgba(0,0,0,.2);display:block;font-size:.875rem;margin:1.5rem;max-width:17.5rem;position:absolute;top:0;left:0;z-index:240}[dir=rtl] .popover{text-align:right;text-align:start}.popover-body{padding:1.25rem 1.5rem}.popover-body>:last-child{margin-bottom:0}.popover-header{font-size:1.25rem;font-weight:500;letter-spacing:.02em;line-height:1.4;margin-bottom:0;padding:1.25rem 1.5rem 0}.popover-header:empty{display:none}.popover-header:last-child{padding-bottom:1.25rem}@media (min-width:768px){.popover{margin:.875rem}}.embed-responsive{display:block;overflow:hidden;padding:0;position:relative;width:100%}.embed-responsive::before{content:'';display:block}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{border:0;height:100%;position:absolute;top:0;bottom:0;left:0;width:100%}.embed-responsive-1by1::before{padding-top:100%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-21by9::before{padding-top:42.85714%}.collapse{display:none}.collapse.show{display:block}tbody.collapse.show{display:table-row-group}tr.collapse.show{display:table-row}.collapsing{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:height;transition-property:height;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);height:0;overflow:hidden;position:relative}@media (min-width:576px){.collapsing{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.collapsing{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.collapsing{-webkit-transition:none;transition:none}}.fade{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);opacity:0}@media (min-width:576px){.fade{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.fade{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.fade{-webkit-transition:none;transition:none}}.fade.show{opacity:1}.btn,.tag-cloud-link,.wpcf7 input[type=submit]{border-radius:2px;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:-webkit-box-shadow;transition-property:-webkit-box-shadow;transition-property:box-shadow;transition-property:box-shadow,-webkit-box-shadow;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:transparent;background-image:none;border:0;-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2);box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2);color:rgba(0,0,0,.87);display:inline-block;font-size:.875rem;font-weight:500;line-height:1;margin:0;max-width:100%;min-width:5.5rem;padding:.6875rem 1rem;position:relative;text-align:center;text-transform:uppercase;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap}@media (min-width:576px){.btn,.tag-cloud-link,.wpcf7 input[type=submit]{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.btn,.tag-cloud-link,.wpcf7 input[type=submit]{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.btn,.tag-cloud-link,.wpcf7 input[type=submit]{-webkit-transition:none;transition:none}}.btn:active,.btn:focus,.btn:hover,.tag-cloud-link:active,.tag-cloud-link:focus,.tag-cloud-link:hover,.wpcf7 input:active[type=submit],.wpcf7 input:focus[type=submit],.wpcf7 input:hover[type=submit]{color:rgba(0,0,0,.87);text-decoration:none}.btn:focus,.btn:hover,.tag-cloud-link:focus,.tag-cloud-link:hover,.wpcf7 input:focus[type=submit],.wpcf7 input:hover[type=submit]{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.12)),to(rgba(0,0,0,.12)));background-image:linear-gradient(to bottom,rgba(0,0,0,.12),rgba(0,0,0,.12))}.active.tag-cloud-link,.btn.active,.btn:active,.tag-cloud-link:active,.wpcf7 input.active[type=submit],.wpcf7 input:active[type=submit]{background-color:rgba(153,153,153,.4);background-image:none;-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2);box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2)}.btn.disabled,.btn:disabled,.disabled.tag-cloud-link,.tag-cloud-link:disabled,.wpcf7 input.disabled[type=submit],.wpcf7 input:disabled[type=submit]{background-color:rgba(0,0,0,.12);background-image:none;-webkit-box-shadow:none;box-shadow:none;color:rgba(0,0,0,.26);opacity:1}.btn:focus,.tag-cloud-link:focus,.wpcf7 input:focus[type=submit]{outline:0}.btn:not(:disabled):not(.disabled),.tag-cloud-link:not(:disabled):not(.disabled),.wpcf7 input:not(:disabled):not(.disabled)[type=submit]{cursor:pointer}.show>.btn.dropdown-toggle,.show>.dropdown-toggle.tag-cloud-link,.wpcf7 .show>input.dropdown-toggle[type=submit]{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.12)),to(rgba(0,0,0,.12)));background-image:linear-gradient(to bottom,rgba(0,0,0,.12),rgba(0,0,0,.12))}a.btn.disabled,a.disabled.tag-cloud-link,fieldset:disabled a.btn,fieldset:disabled a.tag-cloud-link{pointer-events:none}.btn-primary,.tag-cloud-link,.wpcf7 input[type=submit]{background-color:#f07206;color:#fff}.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.tag-cloud-link:active,.tag-cloud-link:focus,.tag-cloud-link:hover,.wpcf7 input:active[type=submit],.wpcf7 input:focus[type=submit],.wpcf7 input:hover[type=submit]{color:#fff}.active.tag-cloud-link,.btn-primary.active,.btn-primary:active,.tag-cloud-link:active,.wpcf7 input.active[type=submit],.wpcf7 input:active[type=submit]{background-color:#be5a05}.btn-primary.disabled,.btn-primary:disabled,.disabled.tag-cloud-link,.tag-cloud-link:disabled,.wpcf7 input.disabled[type=submit],.wpcf7 input:disabled[type=submit]{background-color:rgba(0,0,0,.12);color:rgba(0,0,0,.26)}.btn-complementary,.btn-secondary,.btn-tertiary{background-color:#f07206;color:#fff}.btn-complementary:active,.btn-complementary:focus,.btn-complementary:hover,.btn-secondary:active,.btn-secondary:focus,.btn-secondary:hover,.btn-tertiary:active,.btn-tertiary:focus,.btn-tertiary:hover{color:#fff}.active.btn-complementary,.active.btn-tertiary,.btn-complementary:active,.btn-secondary.active,.btn-secondary:active,.btn-tertiary:active{background-color:#be5a05}.btn-complementary:disabled,.btn-secondary.disabled,.btn-secondary:disabled,.btn-tertiary:disabled,.disabled.btn-complementary,.disabled.btn-tertiary{background-color:rgba(0,0,0,.12);color:rgba(0,0,0,.26)}.btn-danger{background-color:#f44336;color:#fff}.btn-danger:active,.btn-danger:focus,.btn-danger:hover{color:#fff}.btn-danger.active,.btn-danger:active{background-color:#d32f2f}.btn-danger.disabled,.btn-danger:disabled{background-color:rgba(0,0,0,.12);color:rgba(0,0,0,.26)}.btn-info{background-color:#2196f3;color:#fff}.btn-info:active,.btn-info:focus,.btn-info:hover{color:#fff}.btn-info.active,.btn-info:active{background-color:#1976d2}.btn-info.disabled,.btn-info:disabled{background-color:rgba(0,0,0,.12);color:rgba(0,0,0,.26)}.btn-success{background-color:#4caf50;color:#fff}.btn-success:active,.btn-success:focus,.btn-success:hover{color:#fff}.btn-success.active,.btn-success:active{background-color:#388e3c}.btn-success.disabled,.btn-success:disabled{background-color:rgba(0,0,0,.12);color:rgba(0,0,0,.26)}.btn-warning{background-color:#ff9800;color:rgba(0,0,0,.87)}.btn-warning:active,.btn-warning:focus,.btn-warning:hover{color:rgba(0,0,0,.87)}.btn-warning.active,.btn-warning:active{background-color:#f57c00}.btn-warning.disabled,.btn-warning:disabled{background-color:rgba(0,0,0,.12);color:rgba(0,0,0,.26)}.btn-dark{background-color:#424242;color:#fff}.btn-dark:active,.btn-dark:focus,.btn-dark:hover{color:#fff}.btn-dark.active,.btn-dark:active{background-color:#212121}.btn-dark.disabled,.btn-dark:disabled{background-color:rgba(0,0,0,.12);color:rgba(0,0,0,.26)}.btn-light{background-color:#f5f5f5;color:rgba(0,0,0,.87)}.btn-light:active,.btn-light:focus,.btn-light:hover{color:rgba(0,0,0,.87)}.btn-light.active,.btn-light:active{background-color:#e0e0e0}.btn-light.disabled,.btn-light:disabled{background-color:rgba(0,0,0,.12);color:rgba(0,0,0,.26)}.btn-similar{background-color:#f83207;color:#fff}.btn-similar:active,.btn-similar:focus,.btn-similar:hover{color:#fff}.btn-similar.active,.btn-similar:active{background-color:#c62806}.btn-similar.disabled,.btn-similar:disabled{background-color:rgba(0,0,0,.12);color:rgba(0,0,0,.26)}.btn-tertiary{background-color:#f07206;color:#fff}.btn-tertiary:active,.btn-tertiary:focus,.btn-tertiary:hover{color:#fff}.btn-tertiary.active,.btn-tertiary:active{background-color:#be5a05}.btn-tertiary.disabled,.btn-tertiary:disabled{background-color:rgba(0,0,0,.12);color:rgba(0,0,0,.26)}.btn-complementary{background-color:#0087a3;color:#fff}.btn-complementary:active,.btn-complementary:focus,.btn-complementary:hover{color:#fff}.btn-complementary.active,.btn-complementary:active{background-color:#005d70}.btn-complementary.disabled,.btn-complementary:disabled{background-color:rgba(0,0,0,.12);color:rgba(0,0,0,.26)}.wpcf7 [class*=bg-dark] :not([class*=bg-light]) input.disabled[type=submit],.wpcf7 [class*=bg-dark] :not([class*=bg-light]) input:disabled[type=submit],[class*=bg-dark] :not([class*=bg-light]) .btn.disabled,[class*=bg-dark] :not([class*=bg-light]) .btn:disabled,[class*=bg-dark] :not([class*=bg-light]) .disabled.tag-cloud-link,[class*=bg-dark] :not([class*=bg-light]) .tag-cloud-link:disabled,[class*=bg-dark] :not([class*=bg-light]) .wpcf7 input.disabled[type=submit],[class*=bg-dark] :not([class*=bg-light]) .wpcf7 input:disabled[type=submit]{background-color:rgba(255,255,255,.12);color:rgba(255,255,255,.3)}.btn-group-lg>.btn,.btn-group-lg>.tag-cloud-link,.btn-lg,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.tag-cloud-link,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.tag-cloud-link,.wpcf7 .btn-group-lg>input[type=submit],.wpcf7 .input-group-lg>.input-group-append>input[type=submit],.wpcf7 .input-group-lg>.input-group-prepend>input[type=submit]{font-size:.9375rem;padding:.78125rem 1rem}.btn-group-sm>.btn,.btn-group-sm>.tag-cloud-link,.btn-sm,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.tag-cloud-link,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.tag-cloud-link,.wpcf7 .btn-group-sm>input[type=submit],.wpcf7 .input-group-sm>.input-group-append>input[type=submit],.wpcf7 .input-group-sm>.input-group-prepend>input[type=submit]{font-size:.8125rem;padding:.59375rem 1rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.25rem}[type=button].btn-block,[type=reset].btn-block,[type=submit].btn-block{width:100%}.btn-link{background-color:transparent;border-radius:0;-webkit-box-shadow:none;box-shadow:none;color:#f07206;font-weight:400;text-decoration:none;text-transform:none}.btn-link:active,.btn-link:focus,.btn-link:hover{color:#f07206;text-decoration:underline}.btn-link:focus,.btn-link:hover{background-image:none}.btn-link.active,.btn-link:active{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link.disabled,.btn-link:disabled{background-color:transparent;color:rgba(0,0,0,.26);text-decoration:none}.btn-fluid{min-width:0}[class*=btn-flat],[class*=btn-outline]{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}[class*=btn-flat].active,[class*=btn-flat]:active,[class*=btn-outline].active,[class*=btn-outline]:active{-webkit-box-shadow:none;box-shadow:none}[class*=btn-flat].disabled,[class*=btn-flat]:disabled,[class*=btn-outline].disabled,[class*=btn-outline]:disabled{background-color:transparent}.btn-flat-primary,.btn-flat-primary:active,.btn-flat-primary:focus,.btn-flat-primary:hover,.btn-outline-primary,.btn-outline-primary:active,.btn-outline-primary:focus,.btn-outline-primary:hover,.wpcf7 input:active[type=submit],.wpcf7 input:focus[type=submit],.wpcf7 input:hover[type=submit],.wpcf7 input[type=submit]{color:#f07206}.btn-flat-primary.disabled,.btn-flat-primary:disabled,.btn-outline-primary.disabled,.btn-outline-primary:disabled,.wpcf7 input.disabled[type=submit],.wpcf7 input:disabled[type=submit]{color:rgba(0,0,0,.26)}.btn-flat-secondary,.btn-flat-secondary:active,.btn-flat-secondary:focus,.btn-flat-secondary:hover,.btn-outline-secondary,.btn-outline-secondary:active,.btn-outline-secondary:focus,.btn-outline-secondary:hover{color:#f07206}.btn-flat-secondary.disabled,.btn-flat-secondary:disabled,.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:rgba(0,0,0,.26)}.btn-flat-danger,.btn-flat-danger:active,.btn-flat-danger:focus,.btn-flat-danger:hover,.btn-outline-danger,.btn-outline-danger:active,.btn-outline-danger:focus,.btn-outline-danger:hover{color:#f44336}.btn-flat-danger.disabled,.btn-flat-danger:disabled,.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:rgba(0,0,0,.26)}.btn-flat-info,.btn-flat-info:active,.btn-flat-info:focus,.btn-flat-info:hover,.btn-outline-info,.btn-outline-info:active,.btn-outline-info:focus,.btn-outline-info:hover{color:#2196f3}.btn-flat-info.disabled,.btn-flat-info:disabled,.btn-outline-info.disabled,.btn-outline-info:disabled{color:rgba(0,0,0,.26)}.btn-flat-success,.btn-flat-success:active,.btn-flat-success:focus,.btn-flat-success:hover,.btn-outline-success,.btn-outline-success:active,.btn-outline-success:focus,.btn-outline-success:hover{color:#4caf50}.btn-flat-success.disabled,.btn-flat-success:disabled,.btn-outline-success.disabled,.btn-outline-success:disabled{color:rgba(0,0,0,.26)}.btn-flat-warning,.btn-flat-warning:active,.btn-flat-warning:focus,.btn-flat-warning:hover,.btn-outline-warning,.btn-outline-warning:active,.btn-outline-warning:focus,.btn-outline-warning:hover{color:#ff9800}.btn-flat-warning.disabled,.btn-flat-warning:disabled,.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:rgba(0,0,0,.26)}.btn-flat-dark,.btn-flat-dark:active,.btn-flat-dark:focus,.btn-flat-dark:hover,.btn-outline-dark,.btn-outline-dark:active,.btn-outline-dark:focus,.btn-outline-dark:hover{color:#424242}.btn-flat-dark.disabled,.btn-flat-dark:disabled,.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:rgba(0,0,0,.26)}.btn-flat-light,.btn-flat-light:active,.btn-flat-light:focus,.btn-flat-light:hover,.btn-outline-light,.btn-outline-light:active,.btn-outline-light:focus,.btn-outline-light:hover{color:#f5f5f5}.btn-flat-light.disabled,.btn-flat-light:disabled,.btn-outline-light.disabled,.btn-outline-light:disabled{color:rgba(0,0,0,.26)}.btn-flat-similar,.btn-flat-similar:active,.btn-flat-similar:focus,.btn-flat-similar:hover,.btn-outline-similar,.btn-outline-similar:active,.btn-outline-similar:focus,.btn-outline-similar:hover{color:#f83207}.btn-flat-similar.disabled,.btn-flat-similar:disabled,.btn-outline-similar.disabled,.btn-outline-similar:disabled{color:rgba(0,0,0,.26)}.btn-flat-tertiary,.btn-flat-tertiary:active,.btn-flat-tertiary:focus,.btn-flat-tertiary:hover,.btn-outline-tertiary,.btn-outline-tertiary:active,.btn-outline-tertiary:focus,.btn-outline-tertiary:hover{color:#f07206}.btn-flat-tertiary.disabled,.btn-flat-tertiary:disabled,.btn-outline-tertiary.disabled,.btn-outline-tertiary:disabled{color:rgba(0,0,0,.26)}.btn-flat-complementary,.btn-flat-complementary:active,.btn-flat-complementary:focus,.btn-flat-complementary:hover,.btn-outline-complementary,.btn-outline-complementary:active,.btn-outline-complementary:focus,.btn-outline-complementary:hover{color:#0087a3}.btn-flat-complementary.disabled,.btn-flat-complementary:disabled,.btn-outline-complementary.disabled,.btn-outline-complementary:disabled{color:rgba(0,0,0,.26)}.btn-flat-light:focus,.btn-flat-light:hover,.btn-outline-light:focus,.btn-outline-light:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(255,255,255,.12)),to(rgba(255,255,255,.12)));background-image:linear-gradient(to bottom,rgba(255,255,255,.12),rgba(255,255,255,.12))}.btn-flat-light.active,.btn-flat-light:active,.btn-outline-light.active,.btn-outline-light:active{background-color:rgba(204,204,204,.25)}.btn-float{border-radius:50%;-webkit-box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px 0 rgba(0,0,0,.2);box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px 0 rgba(0,0,0,.2);height:3.5rem;line-height:3.5rem;min-width:0;padding:0;width:3.5rem}.btn-float.active,.btn-float:active{-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2);box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2)}.btn-float.disabled,.btn-float:disabled{-webkit-box-shadow:none;box-shadow:none}.btn-float.btn-sm{height:2.5rem;line-height:2.5rem;width:2.5rem}.btn-float-dropdown .dropdown-menu{border-radius:0;margin-top:1rem;min-width:3.5rem;padding-top:0;padding-bottom:0;text-align:center}.btn-float-dropdown .dropdown-menu::before{display:none}.btn-float-dropdown .dropdown-menu .btn-float{display:block;margin-right:auto;margin-bottom:1rem;margin-left:auto}.btn-group,.btn-group-vertical{border-radius:2px;background-color:#fff;-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2);box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2);display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;position:relative;vertical-align:middle}.btn-group-vertical>.btn-primary.disabled,.btn-group-vertical>.btn-primary:disabled,.btn-group-vertical>.disabled.tag-cloud-link,.btn-group-vertical>.tag-cloud-link:disabled,.btn-group>.btn-primary.disabled,.btn-group>.btn-primary:disabled,.btn-group>.disabled.tag-cloud-link,.btn-group>.tag-cloud-link:disabled,.wpcf7 .btn-group-vertical>input.disabled[type=submit],.wpcf7 .btn-group-vertical>input:disabled[type=submit],.wpcf7 .btn-group>input.disabled[type=submit],.wpcf7 .btn-group>input:disabled[type=submit]{background-color:#fa8d2f;color:rgba(0,0,0,.87)}.btn-group-vertical>.btn-complementary:disabled,.btn-group-vertical>.btn-secondary.disabled,.btn-group-vertical>.btn-secondary:disabled,.btn-group-vertical>.btn-tertiary:disabled,.btn-group-vertical>.disabled.btn-complementary,.btn-group-vertical>.disabled.btn-tertiary,.btn-group>.btn-complementary:disabled,.btn-group>.btn-secondary.disabled,.btn-group>.btn-secondary:disabled,.btn-group>.btn-tertiary:disabled,.btn-group>.disabled.btn-complementary,.btn-group>.disabled.btn-tertiary{background-color:#fa8d2f;color:rgba(0,0,0,.87)}.btn-group-vertical>.btn-danger.disabled,.btn-group-vertical>.btn-danger:disabled,.btn-group>.btn-danger.disabled,.btn-group>.btn-danger:disabled{background-color:#ffcdd2;color:rgba(0,0,0,.87)}.btn-group-vertical>.btn-info.disabled,.btn-group-vertical>.btn-info:disabled,.btn-group>.btn-info.disabled,.btn-group>.btn-info:disabled{background-color:#bbdefb;color:rgba(0,0,0,.87)}.btn-group-vertical>.btn-success.disabled,.btn-group-vertical>.btn-success:disabled,.btn-group>.btn-success.disabled,.btn-group>.btn-success:disabled{background-color:#c8e6c9;color:rgba(0,0,0,.87)}.btn-group-vertical>.btn-warning.disabled,.btn-group-vertical>.btn-warning:disabled,.btn-group>.btn-warning.disabled,.btn-group>.btn-warning:disabled{background-color:#ffe0b2;color:rgba(0,0,0,.87)}.btn-group-vertical>.btn-dark.disabled,.btn-group-vertical>.btn-dark:disabled,.btn-group>.btn-dark.disabled,.btn-group>.btn-dark:disabled{background-color:#757575;color:#fff}.btn-group-vertical>.btn-light.disabled,.btn-group-vertical>.btn-light:disabled,.btn-group>.btn-light.disabled,.btn-group>.btn-light:disabled{background-color:#fafafa;color:rgba(0,0,0,.87)}.btn-group-vertical>.btn-similar.disabled,.btn-group-vertical>.btn-similar:disabled,.btn-group>.btn-similar.disabled,.btn-group>.btn-similar:disabled{background-color:#f95b39;color:#fff}.btn-group-vertical>.btn-tertiary.disabled,.btn-group-vertical>.btn-tertiary:disabled,.btn-group>.btn-tertiary.disabled,.btn-group>.btn-tertiary:disabled{background-color:#fa8d2f;color:rgba(0,0,0,.87)}.btn-group-vertical>.btn-complementary.disabled,.btn-group-vertical>.btn-complementary:disabled,.btn-group>.btn-complementary.disabled,.btn-group>.btn-complementary:disabled{background-color:#00b1d6;color:#fff}.btn-group-vertical>.btn,.btn-group-vertical>.tag-cloud-link,.btn-group>.btn,.btn-group>.tag-cloud-link,.wpcf7 .btn-group-vertical>input[type=submit],.wpcf7 .btn-group>input[type=submit]{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:border-color,opacity;transition-property:border-color,opacity;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-box-shadow:none;box-shadow:none;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;min-width:0}@media (min-width:576px){.btn-group-vertical>.btn,.btn-group-vertical>.tag-cloud-link,.btn-group>.btn,.btn-group>.tag-cloud-link,.wpcf7 .btn-group-vertical>input[type=submit],.wpcf7 .btn-group>input[type=submit]{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.btn-group-vertical>.btn,.btn-group-vertical>.tag-cloud-link,.btn-group>.btn,.btn-group>.tag-cloud-link,.wpcf7 .btn-group-vertical>input[type=submit],.wpcf7 .btn-group>input[type=submit]{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.btn-group-vertical>.btn,.btn-group-vertical>.tag-cloud-link,.btn-group>.btn,.btn-group>.tag-cloud-link,.wpcf7 .btn-group-vertical>input[type=submit],.wpcf7 .btn-group>input[type=submit]{-webkit-transition:none;transition:none}}.btn-group-vertical>.active.tag-cloud-link,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.tag-cloud-link:active,.btn-group>.active.tag-cloud-link,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.tag-cloud-link:active,.wpcf7 .btn-group-vertical>input.active[type=submit],.wpcf7 .btn-group-vertical>input:active[type=submit],.wpcf7 .btn-group>input.active[type=submit],.wpcf7 .btn-group>input:active[type=submit]{-webkit-box-shadow:none;box-shadow:none}.btn-group-vertical>.btn.disabled,.btn-group-vertical>.btn:disabled,.btn-group-vertical>.disabled.tag-cloud-link,.btn-group-vertical>.tag-cloud-link:disabled,.btn-group>.btn.disabled,.btn-group>.btn:disabled,.btn-group>.disabled.tag-cloud-link,.btn-group>.tag-cloud-link:disabled,.wpcf7 .btn-group-vertical>input.disabled[type=submit],.wpcf7 .btn-group-vertical>input:disabled[type=submit],.wpcf7 .btn-group>input.disabled[type=submit],.wpcf7 .btn-group>input:disabled[type=submit]{opacity:.7}.btn-group-vertical>.btn[class*=btn-outline],.btn-group-vertical>.tag-cloud-link[class*=btn-outline],.btn-group>.btn[class*=btn-outline],.btn-group>.tag-cloud-link[class*=btn-outline],.wpcf7 .btn-group-vertical>input[class*=btn-outline][type=submit],.wpcf7 .btn-group>input[class*=btn-outline][type=submit]{opacity:.7}.btn-group-vertical>.btn[class*=btn-outline].active,.btn-group-vertical>.btn[class*=btn-outline]:active,.btn-group-vertical>.tag-cloud-link[class*=btn-outline].active,.btn-group-vertical>.tag-cloud-link[class*=btn-outline]:active,.btn-group>.btn[class*=btn-outline].active,.btn-group>.btn[class*=btn-outline]:active,.btn-group>.tag-cloud-link[class*=btn-outline].active,.btn-group>.tag-cloud-link[class*=btn-outline]:active,.wpcf7 .btn-group-vertical>input[class*=btn-outline].active[type=submit],.wpcf7 .btn-group-vertical>input[class*=btn-outline]:active[type=submit],.wpcf7 .btn-group>input[class*=btn-outline].active[type=submit],.wpcf7 .btn-group>input[class*=btn-outline]:active[type=submit]{opacity:1}.btn-group-vertical>.btn[class*=btn-outline].disabled,.btn-group-vertical>.btn[class*=btn-outline]:disabled,.btn-group-vertical>.tag-cloud-link[class*=btn-outline].disabled,.btn-group-vertical>.tag-cloud-link[class*=btn-outline]:disabled,.btn-group>.btn[class*=btn-outline].disabled,.btn-group>.btn[class*=btn-outline]:disabled,.btn-group>.tag-cloud-link[class*=btn-outline].disabled,.btn-group>.tag-cloud-link[class*=btn-outline]:disabled,.wpcf7 .btn-group-vertical>input[class*=btn-outline].disabled[type=submit],.wpcf7 .btn-group-vertical>input[class*=btn-outline]:disabled[type=submit],.wpcf7 .btn-group>input[class*=btn-outline].disabled[type=submit],.wpcf7 .btn-group>input[class*=btn-outline]:disabled[type=submit]{opacity:1}.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group-vertical,.btn-group>.btn-group,.btn-group>.btn-group-vertical{border-radius:0;background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-group.show>.btn.dropdown-toggle,.btn-group.show>.dropdown-toggle.tag-cloud-link,.wpcf7 .btn-group.show>input.dropdown-toggle[type=submit]{-webkit-box-shadow:none;box-shadow:none}.btn-group>.btn,.btn-group>.btn-group,.btn-group>.tag-cloud-link,.wpcf7 .btn-group>input[type=submit]{margin-left:-1px}.btn-group>.btn-group:first-child,.btn-group>.btn:first-child,.btn-group>.tag-cloud-link:first-child,.wpcf7 .btn-group>input:first-child[type=submit]{margin-left:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn-group:not(:first-child)>.tag-cloud-link,.btn-group>.btn:not(:first-child),.btn-group>.tag-cloud-link:not(:first-child),.wpcf7 .btn-group>.btn-group:not(:first-child)>input[type=submit],.wpcf7 .btn-group>input:not(:first-child)[type=submit]{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn-group:not(:last-child)>.tag-cloud-link,.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.dropdown-toggle:not(:last-of-type),.btn-group>.tag-cloud-link:not(:last-child):not(.dropdown-toggle),.wpcf7 .btn-group>.btn-group:not(:last-child)>input[type=submit],.wpcf7 .btn-group>input:not(:last-child):not(.dropdown-toggle)[type=submit]{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group-vertical{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.tag-cloud-link,.wpcf7 .btn-group-vertical>input[type=submit]{margin-top:-1px;margin-left:0;width:100%}.btn-group-vertical>.btn-group:first-child,.btn-group-vertical>.btn:first-child,.btn-group-vertical>.tag-cloud-link:first-child,.wpcf7 .btn-group-vertical>input:first-child[type=submit]{margin-top:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn-group:not(:first-child)>.tag-cloud-link,.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.tag-cloud-link:not(:first-child),.wpcf7 .btn-group-vertical>.btn-group:not(:first-child)>input[type=submit],.wpcf7 .btn-group-vertical>input:not(:first-child)[type=submit]{border-top-left-radius:0;border-top-right-radius:0}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn-group:not(:last-child)>.tag-cloud-link,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.dropdown-toggle:not(:last-of-type),.btn-group-vertical>.tag-cloud-link:not(:last-child):not(.dropdown-toggle),.wpcf7 .btn-group-vertical>.btn-group:not(:last-child)>input[type=submit],.wpcf7 .btn-group-vertical>input:not(:last-child):not(.dropdown-toggle)[type=submit]{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-fluid{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.wpcf7 [data-toggle=buttons]>.btn-group>input[type=submit],.wpcf7 [data-toggle=buttons]>input[type=submit],[data-toggle=buttons]>.btn,[data-toggle=buttons]>.btn-group>.btn,[data-toggle=buttons]>.btn-group>.tag-cloud-link,[data-toggle=buttons]>.tag-cloud-link{margin-bottom:0}.wpcf7 [data-toggle=buttons]>.btn-group>input[type=submit] [type=checkbox],.wpcf7 [data-toggle=buttons]>.btn-group>input[type=submit] [type=radio],.wpcf7 [data-toggle=buttons]>input[type=submit] [type=checkbox],.wpcf7 [data-toggle=buttons]>input[type=submit] [type=radio],[data-toggle=buttons]>.btn [type=checkbox],[data-toggle=buttons]>.btn [type=radio],[data-toggle=buttons]>.btn-group>.btn [type=checkbox],[data-toggle=buttons]>.btn-group>.btn [type=radio],[data-toggle=buttons]>.btn-group>.tag-cloud-link [type=checkbox],[data-toggle=buttons]>.btn-group>.tag-cloud-link [type=radio],[data-toggle=buttons]>.tag-cloud-link [type=checkbox],[data-toggle=buttons]>.tag-cloud-link [type=radio]{clip:rect(0,0,0,0);pointer-events:none;position:absolute}.dropdown-toggle.dropdown-toggle-split{padding-right:.2em;padding-left:.2em}.dropdown-toggle.dropdown-toggle-split::after{margin-right:0;margin-left:0}.dropleft .dropdown-toggle.dropdown-toggle-split::before{margin-right:0;margin-left:0}.btn-toolbar{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.card{border-radius:2px;background-color:#fff;-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2);box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-width:0;position:relative;word-wrap:break-word}.card.border-primary{-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f07206;box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f07206}.card.border-primary[href]:active,.card.border-primary[href]:focus,.card.border-primary[href]:hover,.card.border-primary[tabindex]:active,.card.border-primary[tabindex]:focus,.card.border-primary[tabindex]:hover{-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f07206;box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f07206}.card.border-secondary{-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f07206;box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f07206}.card.border-secondary[href]:active,.card.border-secondary[href]:focus,.card.border-secondary[href]:hover,.card.border-secondary[tabindex]:active,.card.border-secondary[tabindex]:focus,.card.border-secondary[tabindex]:hover{-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f07206;box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f07206}.card.border-danger{-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f44336;box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f44336}.card.border-danger[href]:active,.card.border-danger[href]:focus,.card.border-danger[href]:hover,.card.border-danger[tabindex]:active,.card.border-danger[tabindex]:focus,.card.border-danger[tabindex]:hover{-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f44336;box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f44336}.card.border-info{-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #2196f3;box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #2196f3}.card.border-info[href]:active,.card.border-info[href]:focus,.card.border-info[href]:hover,.card.border-info[tabindex]:active,.card.border-info[tabindex]:focus,.card.border-info[tabindex]:hover{-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #2196f3;box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #2196f3}.card.border-success{-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #4caf50;box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #4caf50}.card.border-success[href]:active,.card.border-success[href]:focus,.card.border-success[href]:hover,.card.border-success[tabindex]:active,.card.border-success[tabindex]:focus,.card.border-success[tabindex]:hover{-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #4caf50;box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #4caf50}.card.border-warning{-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #ff9800;box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #ff9800}.card.border-warning[href]:active,.card.border-warning[href]:focus,.card.border-warning[href]:hover,.card.border-warning[tabindex]:active,.card.border-warning[tabindex]:focus,.card.border-warning[tabindex]:hover{-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #ff9800;box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #ff9800}.card.border-dark{-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #424242;box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #424242}.card.border-dark[href]:active,.card.border-dark[href]:focus,.card.border-dark[href]:hover,.card.border-dark[tabindex]:active,.card.border-dark[tabindex]:focus,.card.border-dark[tabindex]:hover{-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #424242;box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #424242}.card.border-light{-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f5f5f5;box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f5f5f5}.card.border-light[href]:active,.card.border-light[href]:focus,.card.border-light[href]:hover,.card.border-light[tabindex]:active,.card.border-light[tabindex]:focus,.card.border-light[tabindex]:hover{-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f5f5f5;box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f5f5f5}.card.border-similar{-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f83207;box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f83207}.card.border-similar[href]:active,.card.border-similar[href]:focus,.card.border-similar[href]:hover,.card.border-similar[tabindex]:active,.card.border-similar[tabindex]:focus,.card.border-similar[tabindex]:hover{-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f83207;box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f83207}.card.border-tertiary{-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f07206;box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f07206}.card.border-tertiary[href]:active,.card.border-tertiary[href]:focus,.card.border-tertiary[href]:hover,.card.border-tertiary[tabindex]:active,.card.border-tertiary[tabindex]:focus,.card.border-tertiary[tabindex]:hover{-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f07206;box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #f07206}.card.border-complementary{-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #0087a3;box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2),inset 0 0 0 1px #0087a3}.card.border-complementary[href]:active,.card.border-complementary[href]:focus,.card.border-complementary[href]:hover,.card.border-complementary[tabindex]:active,.card.border-complementary[tabindex]:focus,.card.border-complementary[tabindex]:hover{-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #0087a3;box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2),inset 0 0 0 1px #0087a3}.card[href]:active,.card[href]:focus,.card[href]:hover,.card[tabindex]:active,.card[tabindex]:focus,.card[tabindex]:hover{-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2);box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2);text-decoration:none}.card[href]:focus,.card[tabindex]:focus{outline:0}.accordion .card:first-of-type{border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion .card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.accordion .card:not(:first-of-type):not(:last-of-type){border-radius:0}.accordion .card:not(:first-of-type) .card-body:first-child,.accordion .card:not(:first-of-type) .card-footer:first-child,.accordion .card:not(:first-of-type) .card-header-dp-none:first-child,.accordion .card:not(:first-of-type) .card-header:first-child{border-top-left-radius:0;border-top-right-radius:0}.accordion .card:not(:last-of-type) .card-body:last-child,.accordion .card:not(:last-of-type) .card-footer:last-child,.accordion .card:not(:last-of-type) .card-header-dp-none:last-child,.accordion .card:not(:last-of-type) .card-header:last-child{border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion .collapse .card-body:first-child,.accordion .collapse .card-footer:first-child,.accordion .collapse .card-header-dp-none:first-child,.accordion .collapse .card-header:first-child,.accordion .collapsing .card-body:first-child,.accordion .collapsing .card-footer:first-child,.accordion .collapsing .card-header-dp-none:first-child,.accordion .collapsing .card-header:first-child{border-top-left-radius:0;border-top-right-radius:0}.card-actions{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;display:-webkit-box;display:-ms-flexbox;display:flex;padding:.5rem 0 .25rem .5rem}.card-actions:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.card-actions:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.card-actions .btn,.card-actions .tag-cloud-link,.card-actions .wpcf7 input[type=submit],.wpcf7 .card-actions input[type=submit]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;margin-right:.5rem;margin-bottom:.25rem;min-width:0;padding-right:.5rem;padding-left:.5rem}.card-actions .dropdown-toggle::after{margin-right:0}.card-body{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem 1rem}.card-body:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.card-body:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.card-body>:last-child{margin-bottom:0}.card-footer{border-top:1px solid rgba(0,0,0,.12);padding:1rem 1rem}.card-footer:first-child{border-top-left-radius:2px;border-top-right-radius:2px;border-top:0}.card-footer:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.card-footer>:last-child{margin-bottom:0}.card-header,.card-header-dp-none{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:0;padding:1rem 1rem}.card-header-dp-none:first-child,.card-header:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.card-header-dp-none:last-child,.card-header:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px;border-bottom:0}.card-header+.list-group .list-group-item:first-child,.card-header-dp-none+.list-group .list-group-item:first-child{border-top:0}.card-header-pills{margin:-1rem -1rem;padding:.5rem 0 .25rem .5rem}.card-header-pills .nav-link{margin-right:.5rem;margin-bottom:.25rem;padding-right:.5rem;padding-left:.5rem}.card-header-tabs{margin:-1rem -1rem calc(-1rem - 1px)}.card-img{border-radius:2px}.card-img-bottom{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.card-img-top{border-top-left-radius:2px;border-top-right-radius:2px}.card-img-overlay{max-height:100%;padding:1rem 1rem;position:absolute;right:0;bottom:0;left:0}.card-columns{-webkit-column-count:2;column-count:2;-webkit-column-gap:.5rem;column-gap:.5rem;margin-top:-.25rem;margin-bottom:.25rem;orphans:1;widows:1}@media (min-width:768px){.card-columns{-webkit-column-count:3;column-count:3}}.card-columns .card{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-top:.25rem;margin-bottom:.25rem;width:100%}@media (min-width:576px){.card-deck{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-.25rem;margin-left:-.25rem}}.card-deck .card{margin-bottom:.5rem}@media (min-width:576px){.card-deck .card{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;margin-right:.25rem;margin-left:.25rem}}@media (min-width:576px){.card-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}}.card-group .card{margin-bottom:.5rem}@media (min-width:576px){.card-group .card{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0}.card-group .card:first-child:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group .card:first-child:not(:last-child) .card-actions,.card-group .card:first-child:not(:last-child) .card-body,.card-group .card:first-child:not(:last-child) .card-footer,.card-group .card:first-child:not(:last-child) .card-header,.card-group .card:first-child:not(:last-child) .card-header-dp-none,.card-group .card:first-child:not(:last-child) .card-img,.card-group .card:first-child:not(:last-child) .card-img-bottom,.card-group .card:first-child:not(:last-child) .card-img-top{border-top-right-radius:0;border-bottom-right-radius:0}.card-group .card:last-child:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group .card:last-child:not(:first-child) .card-actions,.card-group .card:last-child:not(:first-child) .card-body,.card-group .card:last-child:not(:first-child) .card-footer,.card-group .card:last-child:not(:first-child) .card-header,.card-group .card:last-child:not(:first-child) .card-header-dp-none,.card-group .card:last-child:not(:first-child) .card-img,.card-group .card:last-child:not(:first-child) .card-img-bottom,.card-group .card:last-child:not(:first-child) .card-img-top{border-top-left-radius:0;border-bottom-left-radius:0}.card-group .card:not(:first-child):not(:last-child){border-radius:0}.card-group .card:not(:first-child):not(:last-child) .card-actions,.card-group .card:not(:first-child):not(:last-child) .card-body,.card-group .card:not(:first-child):not(:last-child) .card-footer,.card-group .card:not(:first-child):not(:last-child) .card-header,.card-group .card:not(:first-child):not(:last-child) .card-header-dp-none,.card-group .card:not(:first-child):not(:last-child) .card-img,.card-group .card:not(:first-child):not(:last-child) .card-img-bottom,.card-group .card:not(:first-child):not(:last-child) .card-img-top{border-radius:0}}.card-link:active,.card-link:focus,.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1rem}.card-subtitle{font-size:.875rem;font-weight:400;letter-spacing:0;line-height:1.42857;margin-top:-1rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-title{font-size:1.5rem;font-weight:400;letter-spacing:0;line-height:1.33333;margin-bottom:1rem}.card-title:last-child{margin-bottom:0}.chip{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#e0e0e0;border:0;border-radius:1rem;color:rgba(0,0,0,.87);display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-size:.875rem;font-weight:400;height:2rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;line-height:1;padding-right:.75rem;padding-left:.75rem;position:relative;text-align:center;vertical-align:middle;white-space:nowrap}.chip:empty{display:none}.chip .close{font-size:inherit;line-height:inherit;margin-right:-.5rem;margin-left:.25rem;min-height:1.5rem;min-width:1.5rem;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.chip-primary{background-color:#f07206;color:#fff}.chip-secondary{background-color:#f07206;color:#fff}.chip-danger{background-color:#f44336;color:#fff}.chip-info{background-color:#2196f3;color:#fff}.chip-success{background-color:#4caf50;color:#fff}.chip-warning{background-color:#ff9800;color:rgba(0,0,0,.87)}.chip-dark{background-color:#424242;color:#fff}.chip-light{background-color:#f5f5f5;color:rgba(0,0,0,.87)}.chip-similar{background-color:#f83207;color:#fff}.chip-tertiary{background-color:#f07206;color:#fff}.chip-complementary{background-color:#0087a3;color:#fff}.chip-action{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:background-color,-webkit-box-shadow;transition-property:background-color,-webkit-box-shadow;transition-property:background-color,box-shadow;transition-property:background-color,box-shadow,-webkit-box-shadow;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1)}@media (min-width:576px){.chip-action{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.chip-action{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.chip-action{-webkit-transition:none;transition:none}}.chip-action:active,.chip-action:focus,.chip-action:hover{-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2);box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2);color:rgba(0,0,0,.87);text-decoration:none}.chip-action:active{background-color:#bdbdbd}.chip-action:focus{outline:0}.chip-icon{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#f07206;border-radius:1rem;color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-negative:0;flex-shrink:0;font-size:1rem;font-style:normal;font-weight:400;height:2rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:.5rem;margin-left:-.75rem;-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1;text-align:center;width:2rem}.chip-img{border-radius:1rem;-ms-flex-negative:0;flex-shrink:0;height:2rem;margin-right:.5rem;margin-left:-.75rem;-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1;width:auto}.table{background-color:#fff;border:0;margin-bottom:1rem;max-width:100%;width:100%}.table td,.table th{border-top:1px solid #e1e1e1;line-height:1.42857;padding-right:1.75rem;padding-left:1.75rem;vertical-align:top}.table td:first-child,.table th:first-child{padding-left:1.5rem}.table td:last-child,.table th:last-child{padding-right:1.5rem}.table tbody{color:rgba(0,0,0,.87)}.table tbody td,.table tbody th{font-size:.8125rem;font-weight:400;height:3rem;padding-top:.91964rem;padding-bottom:.91964rem}.table tfoot{color:rgba(0,0,0,.54)}.table tfoot td,.table tfoot th{font-size:.75rem;font-weight:400;height:3.5rem;padding-top:1.21429rem;padding-bottom:1.21429rem}.table thead{color:rgba(0,0,0,.54)}.table thead td,.table thead th{font-size:.75rem;font-weight:500;height:3.5rem;padding-top:1.21429rem;padding-bottom:1.21429rem}.card>.table:first-child,.card>.table:first-child>:first-child,.card>.table:first-child>:first-child>tr:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.card>.table:first-child>:first-child>tr:first-child td:first-child,.card>.table:first-child>:first-child>tr:first-child th:first-child{border-top-left-radius:2px}.card>.table:first-child>:first-child>tr:first-child td:last-child,.card>.table:first-child>:first-child>tr:first-child th:last-child{border-top-right-radius:2px}.card>.table:last-child,.card>.table:last-child>:last-child,.card>.table:last-child>:last-child>tr:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.card>.table:last-child>:last-child>tr:last-child td:first-child,.card>.table:last-child>:last-child>tr:last-child th:first-child{border-bottom-left-radius:2px}.card>.table:last-child>:last-child>tr:last-child td:last-child,.card>.table:last-child>:last-child>tr:last-child th:last-child{border-bottom-right-radius:2px}.table .table{border-top:1px solid #e1e1e1}.table>:first-child>tr:first-child td,.table>:first-child>tr:first-child th{border-top:0}.table-borderless .table,.table-borderless td,.table-borderless th{border:0}.table-bordered{border:1px solid #e1e1e1}.card>.table-bordered{border:0}.table-sm td,.table-sm th{padding-right:1rem;padding-left:1rem}.table-sm td:first-child,.table-sm th:first-child{padding-left:1rem}.table-sm td:last-child,.table-sm th:last-child{padding-right:1rem}.table-sm tbody td,.table-sm tbody th{height:2.25rem;padding-top:.54464rem;padding-bottom:.54464rem}.table-sm tfoot td,.table-sm tfoot th{padding-top:.71429rem;padding-bottom:.71429rem}.table-sm thead td,.table-sm thead th{height:2.5rem;padding-top:.71429rem;padding-bottom:.71429rem}.table-striped tbody tr:nth-of-type(odd){background-color:#f5f5f5}.table-hover tbody tr:hover{background-color:#eee}.table-primary,.table-primary>td,.table-primary>th{background-color:#fa8d2f;color:rgba(0,0,0,.87)}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#f07206;color:#fff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#fa8d2f;color:rgba(0,0,0,.87)}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#f07206;color:#fff}.table-danger,.table-danger>td,.table-danger>th{background-color:#ffcdd2;color:rgba(0,0,0,.87)}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f44336;color:#fff}.table-info,.table-info>td,.table-info>th{background-color:#bbdefb;color:rgba(0,0,0,.87)}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#2196f3;color:#fff}.table-success,.table-success>td,.table-success>th{background-color:#c8e6c9;color:rgba(0,0,0,.87)}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#4caf50;color:#fff}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffe0b2;color:rgba(0,0,0,.87)}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ff9800;color:rgba(0,0,0,.87)}.table-dark,.table-dark>td,.table-dark>th{background-color:#757575;color:#fff}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#424242;color:#fff}.table-light,.table-light>td,.table-light>th{background-color:#fafafa;color:rgba(0,0,0,.87)}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#f5f5f5;color:rgba(0,0,0,.87)}.table-similar,.table-similar>td,.table-similar>th{background-color:#f95b39;color:#fff}.table-hover .table-similar:hover,.table-hover .table-similar:hover>td,.table-hover .table-similar:hover>th{background-color:#f83207;color:#fff}.table-tertiary,.table-tertiary>td,.table-tertiary>th{background-color:#fa8d2f;color:rgba(0,0,0,.87)}.table-hover .table-tertiary:hover,.table-hover .table-tertiary:hover>td,.table-hover .table-tertiary:hover>th{background-color:#f07206;color:#fff}.table-complementary,.table-complementary>td,.table-complementary>th{background-color:#00b1d6;color:#fff}.table-hover .table-complementary:hover,.table-hover .table-complementary:hover>td,.table-hover .table-complementary:hover>th{background-color:#0087a3;color:#fff}.table-active,.table-active>td,.table-active>th{background-color:#eee;color:rgba(0,0,0,.87)}.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:#e0e0e0;color:rgba(0,0,0,.87)}.table .thead-dark td,.table .thead-dark th{background-color:#424242;color:#fff}.table .thead-light td,.table .thead-light th{background-color:#f5f5f5;color:rgba(0,0,0,.54)}.table-dark{background-color:#424242;color:#fff}.table-dark.table-bordered{border-color:#303030}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:#303030}.table-dark.table-hover tbody tr:hover{background-color:#212121}.table-dark tbody,.table-dark tfoot,.table-dark thead{color:inherit}.table-dark .table,.table-dark td,.table-dark th{border-color:#303030}@media (max-width:575.98px){.table-responsive-sm{display:block;overflow-x:auto;width:100%;-ms-overflow-style:-ms-autohiding-scrollbar}}@media (max-width:767.98px){.table-responsive-md{display:block;overflow-x:auto;width:100%;-ms-overflow-style:-ms-autohiding-scrollbar}}@media (max-width:991.98px){.table-responsive-lg{display:block;overflow-x:auto;width:100%;-ms-overflow-style:-ms-autohiding-scrollbar}}@media (max-width:1199.98px){.table-responsive-xl{display:block;overflow-x:auto;width:100%;-ms-overflow-style:-ms-autohiding-scrollbar}}.table-responsive{display:block;overflow-x:auto;width:100%;-ms-overflow-style:-ms-autohiding-scrollbar}.modal{display:none;outline:0;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:240}.modal.fade{-webkit-transition-duration:375ms;transition-duration:375ms;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1)}@media (min-width:576px){.modal.fade{-webkit-transition-duration:.4875s;transition-duration:.4875s}}@media (min-width:992px){.modal.fade{-webkit-transition-duration:.25s;transition-duration:.25s}}@media screen and (prefers-reduced-motion:reduce){.modal.fade{-webkit-transition:none;transition:none}}.modal.fade .modal-dialog{-webkit-transition-duration:375ms;transition-duration:375ms;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transform:scale(.87);transform:scale(.87)}@media (min-width:576px){.modal.fade .modal-dialog{-webkit-transition-duration:.4875s;transition-duration:.4875s}}@media (min-width:992px){.modal.fade .modal-dialog{-webkit-transition-duration:.25s;transition-duration:.25s}}@media screen and (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{-webkit-transition:none;transition:none}}.modal.show .modal-dialog{-webkit-transform:scale(1);transform:scale(1)}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-backdrop{background-color:rgba(0,0,0,.38);position:fixed;top:0;right:0;bottom:0;left:0;z-index:239}.modal-content{border-radius:2px;background-color:#fff;-webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,.14),0 4px 5px 0 rgba(0,0,0,.12),0 1px 10px 0 rgba(0,0,0,.2);box-shadow:0 2px 4px 0 rgba(0,0,0,.14),0 4px 5px 0 rgba(0,0,0,.12),0 1px 10px 0 rgba(0,0,0,.2);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;outline:0;pointer-events:auto;position:relative;vertical-align:baseline;width:100%}.modal-dialog{margin:1.5rem auto;max-width:35rem;pointer-events:none;position:relative;width:calc(100% - 1.5rem * 2)}.modal-dialog-centered{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;min-height:calc(100% - 1.5rem * 2)}.modal-lg{max-width:52.5rem}.modal-sm{max-width:17.5rem}.modal-body{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem 1.5rem;position:relative}.modal-body:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.modal-body:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.modal-header+.modal-body{padding-top:0}.modal-body>:last-child{margin-bottom:0}.modal-footer{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;padding:.5rem .5rem .5rem 0}.modal-footer:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.modal-footer:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.modal-footer .btn,.modal-footer .tag-cloud-link,.modal-footer .wpcf7 input[type=submit],.wpcf7 .modal-footer input[type=submit]{background-color:transparent;-webkit-box-shadow:none;box-shadow:none;max-width:calc(50% - .5rem);min-width:4rem;overflow:hidden;padding-right:.5rem;padding-left:.5rem;text-overflow:ellipsis}.modal-footer .btn-primary,.modal-footer .btn-primary:active,.modal-footer .btn-primary:focus,.modal-footer .btn-primary:hover,.modal-footer .tag-cloud-link,.modal-footer .tag-cloud-link:active,.modal-footer .tag-cloud-link:focus,.modal-footer .tag-cloud-link:hover,.modal-footer .wpcf7 input:active[type=submit],.modal-footer .wpcf7 input:focus[type=submit],.modal-footer .wpcf7 input:hover[type=submit],.modal-footer .wpcf7 input[type=submit],.wpcf7 .modal-footer input:active[type=submit],.wpcf7 .modal-footer input:focus[type=submit],.wpcf7 .modal-footer input:hover[type=submit],.wpcf7 .modal-footer input[type=submit]{color:#f07206}.modal-footer .btn-primary.disabled,.modal-footer .btn-primary:disabled,.modal-footer .disabled.tag-cloud-link,.modal-footer .tag-cloud-link:disabled,.modal-footer .wpcf7 input.disabled[type=submit],.modal-footer .wpcf7 input:disabled[type=submit],.wpcf7 .modal-footer input.disabled[type=submit],.wpcf7 .modal-footer input:disabled[type=submit]{color:rgba(0,0,0,.26)}.modal-footer .btn-complementary,.modal-footer .btn-complementary:active,.modal-footer .btn-complementary:focus,.modal-footer .btn-complementary:hover,.modal-footer .btn-secondary,.modal-footer .btn-secondary:active,.modal-footer .btn-secondary:focus,.modal-footer .btn-secondary:hover,.modal-footer .btn-tertiary,.modal-footer .btn-tertiary:active,.modal-footer .btn-tertiary:focus,.modal-footer .btn-tertiary:hover{color:#f07206}.modal-footer .btn-complementary:disabled,.modal-footer .btn-secondary.disabled,.modal-footer .btn-secondary:disabled,.modal-footer .btn-tertiary:disabled,.modal-footer .disabled.btn-complementary,.modal-footer .disabled.btn-tertiary{color:rgba(0,0,0,.26)}.modal-footer .btn-danger,.modal-footer .btn-danger:active,.modal-footer .btn-danger:focus,.modal-footer .btn-danger:hover{color:#f44336}.modal-footer .btn-danger.disabled,.modal-footer .btn-danger:disabled{color:rgba(0,0,0,.26)}.modal-footer .btn-info,.modal-footer .btn-info:active,.modal-footer .btn-info:focus,.modal-footer .btn-info:hover{color:#2196f3}.modal-footer .btn-info.disabled,.modal-footer .btn-info:disabled{color:rgba(0,0,0,.26)}.modal-footer .btn-success,.modal-footer .btn-success:active,.modal-footer .btn-success:focus,.modal-footer .btn-success:hover{color:#4caf50}.modal-footer .btn-success.disabled,.modal-footer .btn-success:disabled{color:rgba(0,0,0,.26)}.modal-footer .btn-warning,.modal-footer .btn-warning:active,.modal-footer .btn-warning:focus,.modal-footer .btn-warning:hover{color:#ff9800}.modal-footer .btn-warning.disabled,.modal-footer .btn-warning:disabled{color:rgba(0,0,0,.26)}.modal-footer .btn-dark,.modal-footer .btn-dark:active,.modal-footer .btn-dark:focus,.modal-footer .btn-dark:hover{color:#424242}.modal-footer .btn-dark.disabled,.modal-footer .btn-dark:disabled{color:rgba(0,0,0,.26)}.modal-footer .btn-light,.modal-footer .btn-light:active,.modal-footer .btn-light:focus,.modal-footer .btn-light:hover{color:#f5f5f5}.modal-footer .btn-light.disabled,.modal-footer .btn-light:disabled{color:rgba(0,0,0,.26)}.modal-footer .btn-similar,.modal-footer .btn-similar:active,.modal-footer .btn-similar:focus,.modal-footer .btn-similar:hover{color:#f83207}.modal-footer .btn-similar.disabled,.modal-footer .btn-similar:disabled{color:rgba(0,0,0,.26)}.modal-footer .btn-tertiary,.modal-footer .btn-tertiary:active,.modal-footer .btn-tertiary:focus,.modal-footer .btn-tertiary:hover{color:#f07206}.modal-footer .btn-tertiary.disabled,.modal-footer .btn-tertiary:disabled{color:rgba(0,0,0,.26)}.modal-footer .btn-complementary,.modal-footer .btn-complementary:active,.modal-footer .btn-complementary:focus,.modal-footer .btn-complementary:hover{color:#0087a3}.modal-footer .btn-complementary.disabled,.modal-footer .btn-complementary:disabled{color:rgba(0,0,0,.26)}.modal-footer .active.tag-cloud-link,.modal-footer .btn.active,.modal-footer .btn:active,.modal-footer .tag-cloud-link:active,.modal-footer .wpcf7 input.active[type=submit],.modal-footer .wpcf7 input:active[type=submit],.wpcf7 .modal-footer input.active[type=submit],.wpcf7 .modal-footer input:active[type=submit]{background-color:rgba(153,153,153,.4);-webkit-box-shadow:none;box-shadow:none}.modal-footer .btn.disabled,.modal-footer .btn:disabled,.modal-footer .disabled.tag-cloud-link,.modal-footer .tag-cloud-link:disabled,.modal-footer .wpcf7 input.disabled[type=submit],.modal-footer .wpcf7 input:disabled[type=submit],.wpcf7 .modal-footer input.disabled[type=submit],.wpcf7 .modal-footer input:disabled[type=submit]{background-color:transparent}.modal-footer>*{margin-left:.5rem}.modal-footer-stacked{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-top:0;padding-right:0;padding-left:0}.modal-footer-stacked .btn,.modal-footer-stacked .tag-cloud-link,.modal-footer-stacked .wpcf7 input[type=submit],.wpcf7 .modal-footer-stacked input[type=submit]{text-align:right;text-align:end;border-radius:0;margin-left:0;max-width:none;padding:1.0625rem 1rem}.wpcf7 [dir=rtl] .modal-footer-stacked input[type=submit],[dir=rtl] .modal-footer-stacked .btn,[dir=rtl] .modal-footer-stacked .tag-cloud-link,[dir=rtl] .modal-footer-stacked .wpcf7 input[type=submit]{text-align:left;text-align:end}.modal-header{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:1.25rem 1.5rem}.modal-header:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.modal-header:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.modal-title{font-size:1.25rem;font-weight:500;letter-spacing:.02em;line-height:1.4;margin:0}.modal-scrollbar-measure{height:50px;overflow:scroll;position:absolute;top:-99999px;width:50px}.list-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-bottom:0;padding-left:0}.list-group-item{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:background-color,color;transition-property:background-color,color;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:#fff;border:0;-webkit-box-shadow:0 0 2px 0 rgba(0,0,0,.14),0 2px 2px 0 rgba(0,0,0,.12),0 1px 3px 0 rgba(0,0,0,.2);box-shadow:0 0 2px 0 rgba(0,0,0,.14),0 2px 2px 0 rgba(0,0,0,.12),0 1px 3px 0 rgba(0,0,0,.2);color:rgba(0,0,0,.87);display:block;font-size:.9375rem;line-height:1.42857;min-height:3rem;padding:.83036rem 1.5rem;position:relative}@media (min-width:576px){.list-group-item{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.list-group-item{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.list-group-item{-webkit-transition:none;transition:none}}.list-group-item:active,.list-group-item:focus,.list-group-item:hover{color:rgba(0,0,0,.87);text-decoration:none}.list-group-item.active{background-color:#eee;color:rgba(0,0,0,.87)}.list-group-item.disabled,.list-group-item:disabled{background-color:#fff;color:rgba(0,0,0,.38)}.list-group-item:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.list-group-item:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.card .list-group-item{padding-right:1rem;padding-left:1rem}.list-group-item-action{color:rgba(0,0,0,.87);text-align:inherit;width:100%}.list-group-item-action:active,.list-group-item-action:focus,.list-group-item-action:hover{background-color:#eee;color:rgba(0,0,0,.87);text-decoration:none}.list-group-item-action.disabled,.list-group-item-action:disabled{background-color:#fff;color:rgba(0,0,0,.38)}.list-group-item-action:focus{outline:0}.list-group-item-primary{background-color:#fa8d2f;color:rgba(0,0,0,.87)}.list-group-item-primary.active{background-color:#f07206;color:#fff}.list-group-item-primary.list-group-item-action:active,.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{background-color:#f07206;color:#fff}.list-group-item-secondary{background-color:#fa8d2f;color:rgba(0,0,0,.87)}.list-group-item-secondary.active{background-color:#f07206;color:#fff}.list-group-item-secondary.list-group-item-action:active,.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{background-color:#f07206;color:#fff}.list-group-item-danger{background-color:#ffcdd2;color:rgba(0,0,0,.87)}.list-group-item-danger.active{background-color:#f44336;color:#fff}.list-group-item-danger.list-group-item-action:active,.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{background-color:#f44336;color:#fff}.list-group-item-info{background-color:#bbdefb;color:rgba(0,0,0,.87)}.list-group-item-info.active{background-color:#2196f3;color:#fff}.list-group-item-info.list-group-item-action:active,.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{background-color:#2196f3;color:#fff}.list-group-item-success{background-color:#c8e6c9;color:rgba(0,0,0,.87)}.list-group-item-success.active{background-color:#4caf50;color:#fff}.list-group-item-success.list-group-item-action:active,.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{background-color:#4caf50;color:#fff}.list-group-item-warning{background-color:#ffe0b2;color:rgba(0,0,0,.87)}.list-group-item-warning.active{background-color:#ff9800;color:rgba(0,0,0,.87)}.list-group-item-warning.list-group-item-action:active,.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{background-color:#ff9800;color:rgba(0,0,0,.87)}.list-group-item-dark{background-color:#757575;color:#fff}.list-group-item-dark.active{background-color:#424242;color:#fff}.list-group-item-dark.list-group-item-action:active,.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{background-color:#424242;color:#fff}.list-group-item-light{background-color:#fafafa;color:rgba(0,0,0,.87)}.list-group-item-light.active{background-color:#f5f5f5;color:rgba(0,0,0,.87)}.list-group-item-light.list-group-item-action:active,.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{background-color:#f5f5f5;color:rgba(0,0,0,.87)}.list-group-item-similar{background-color:#f95b39;color:#fff}.list-group-item-similar.active{background-color:#f83207;color:#fff}.list-group-item-similar.list-group-item-action:active,.list-group-item-similar.list-group-item-action:focus,.list-group-item-similar.list-group-item-action:hover{background-color:#f83207;color:#fff}.list-group-item-tertiary{background-color:#fa8d2f;color:rgba(0,0,0,.87)}.list-group-item-tertiary.active{background-color:#f07206;color:#fff}.list-group-item-tertiary.list-group-item-action:active,.list-group-item-tertiary.list-group-item-action:focus,.list-group-item-tertiary.list-group-item-action:hover{background-color:#f07206;color:#fff}.list-group-item-complementary{background-color:#00b1d6;color:#fff}.list-group-item-complementary.active{background-color:#0087a3;color:#fff}.list-group-item-complementary.list-group-item-action:active,.list-group-item-complementary.list-group-item-action:focus,.list-group-item-complementary.list-group-item-action:hover{background-color:#0087a3;color:#fff}.expansion-panel{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:background-color,color,margin;transition-property:background-color,color,margin;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);padding:0}@media (min-width:576px){.expansion-panel{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.expansion-panel{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.expansion-panel{-webkit-transition:none;transition:none}}.expansion-panel.show{border-radius:2px}.expansion-panel.show:not(:first-child){margin-top:1rem}.card .expansion-panel.show:not(:first-child){margin-top:0}.expansion-panel.show:not(:last-child){margin-bottom:1rem}.card .expansion-panel.show:not(:last-child){margin-bottom:0}.expansion-panel.show+.expansion-panel{border-top-left-radius:2px;border-top-right-radius:2px}.expansion-panel.show+.expansion-panel.show{margin-top:0}.card .expansion-panel.show+.expansion-panel{border-top-left-radius:0;border-top-right-radius:0}.expansion-panel.show-predecessor{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.card .expansion-panel.show-predecessor{border-bottom-right-radius:0;border-bottom-left-radius:0}.card .expansion-panel{padding-right:0;padding-left:0}.expansion-panel-body{padding:1rem 1.5rem}.card .expansion-panel-body{padding-right:1rem;padding-left:1rem}.expansion-panel-footer{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;border-top:1px solid rgba(0,0,0,.12);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;padding:1rem .5rem .75rem 0}.card .expansion-panel-footer{padding-right:1rem;padding-left:.5rem}.expansion-panel-footer .btn,.expansion-panel-footer .tag-cloud-link,.expansion-panel-footer .wpcf7 input[type=submit],.wpcf7 .expansion-panel-footer input[type=submit]{margin-bottom:.25rem;margin-left:.5rem;min-width:4rem;padding-right:.5rem;padding-left:.5rem}.card .expansion-panel-footer .btn,.card .expansion-panel-footer .tag-cloud-link,.card .expansion-panel-footer .wpcf7 input[type=submit],.wpcf7 .card .expansion-panel-footer input[type=submit]{padding-right:.5rem;padding-left:.5rem}.expansion-panel-icon{-ms-flex-negative:0;flex-shrink:0;margin-left:1rem}[data-toggle=collapse].collapsed .expansion-panel-icon .collapsed-hide{display:none}[data-toggle=collapse]:not(.collapsed) .expansion-panel-icon .collapsed-show{display:none}.expansion-panel-toggler{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;min-height:3rem;padding:.83036rem 1.5rem;text-align:inherit;width:100%}.expansion-panel-toggler:active,.expansion-panel-toggler:focus,.expansion-panel-toggler:hover{background-color:#eee;color:rgba(0,0,0,.87);text-decoration:none}.expansion-panel-toggler.disabled,.expansion-panel-toggler:disabled{background-color:#fff;color:rgba(0,0,0,.38)}.expansion-panel-toggler:focus{outline:0}.card .expansion-panel-toggler{padding-right:1rem;padding-left:1rem}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{border-bottom:0}.list-group-flush .list-group-item{border-top:1px solid rgba(0,0,0,.12);border-radius:0;-webkit-box-shadow:none;box-shadow:none}.list-group-flush .list-group-item:last-child{border-bottom:1px solid rgba(0,0,0,.12)}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-menu{border-radius:2px;text-align:left;text-align:start;background-color:transparent;color:inherit;display:none;float:left;font-size:1rem;font-weight:400;line-height:1.5rem;list-style:none;margin:0;min-width:7rem;padding:.5rem 0;position:absolute;top:100%;left:0;z-index:80}[dir=rtl] .dropdown-menu{text-align:right;text-align:start}.dropdown-menu.show{display:block}.dropdown-menu.show::before,.dropdown-menu.show>*{-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1)}@media (min-width:576px){.dropdown-menu.show::before,.dropdown-menu.show>*{-webkit-animation-duration:.39s;animation-duration:.39s}}@media (min-width:992px){.dropdown-menu.show::before,.dropdown-menu.show>*{-webkit-animation-duration:.2s;animation-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.dropdown-menu.show::before,.dropdown-menu.show>*{-webkit-animation:none;animation:none}}.dropdown-menu.show::before{-webkit-animation-name:dropdown-menu-show;animation-name:dropdown-menu-show}.dropdown-menu.show>*{-webkit-animation-name:dropdown-item-show;animation-name:dropdown-item-show}.dropdown-menu.show>:nth-child(1){-webkit-animation-name:dropdown-item-show-1;animation-name:dropdown-item-show-1}.dropdown-menu.show>:nth-child(2){-webkit-animation-name:dropdown-item-show-2;animation-name:dropdown-item-show-2}.dropdown-menu.show>:nth-child(3){-webkit-animation-name:dropdown-item-show-3;animation-name:dropdown-item-show-3}.dropdown-menu::before{border-radius:2px;background-color:#fff;-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2);box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2);content:'';display:block;position:absolute;top:0;right:0;bottom:0;left:0;-webkit-transform-origin:0 0;transform-origin:0 0;z-index:-1}.nav:not(.flex-column):not(.flex-column-reverse) .dropdown-menu{min-width:100%}.menu{margin-top:-3.125rem}.menu::before{-webkit-transform-origin:0 2rem;transform-origin:0 2rem}.show>a{outline:0}.dropdown-menu-right:not([x-placement]){right:0;left:auto}.dropdown-menu-right:not([x-placement]).menu::before{-webkit-transform-origin:100% 2rem;transform-origin:100% 2rem}.dropdown-menu-right:not([x-placement])::before{-webkit-transform-origin:100% 0;transform-origin:100% 0}.dropleft .dropdown-menu:not([x-placement]){top:0;right:100%;left:auto}.dropleft .dropdown-menu:not([x-placement]).menu{margin-top:0}.dropleft .dropdown-menu:not([x-placement])::before{-webkit-transform-origin:100% 0;transform-origin:100% 0}.dropright .dropdown-menu:not([x-placement]){top:0;left:100%}.dropright .dropdown-menu:not([x-placement]).menu{margin-top:0}.dropright .dropdown-menu:not([x-placement])::before{-webkit-transform-origin:0 0;transform-origin:0 0}.dropup .dropdown-menu:not([x-placement]){top:auto;bottom:100%}.dropup .dropdown-menu:not([x-placement]).menu{margin-top:0;margin-bottom:-3.125rem}.dropup .dropdown-menu:not([x-placement]).menu::before{-webkit-transform-origin:0 calc(100% - 2rem);transform-origin:0 calc(100% - 2rem)}.dropup .dropdown-menu:not([x-placement])::before{-webkit-transform-origin:0 100%;transform-origin:0 100%}.dropup .dropdown-menu:not([x-placement])>:nth-child(1),.dropup .dropdown-menu:not([x-placement])>:nth-child(2),.dropup .dropdown-menu:not([x-placement])>:nth-child(3){-webkit-animation-name:dropdown-item-show;animation-name:dropdown-item-show}.dropup .dropdown-menu:not([x-placement])>:nth-last-child(1){-webkit-animation-name:dropdown-item-show-1;animation-name:dropdown-item-show-1}.dropup .dropdown-menu:not([x-placement])>:nth-last-child(2){-webkit-animation-name:dropdown-item-show-2;animation-name:dropdown-item-show-2}.dropup .dropdown-menu:not([x-placement])>:nth-last-child(3){-webkit-animation-name:dropdown-item-show-3;animation-name:dropdown-item-show-3}.dropup .dropdown-menu-right:not([x-placement]).menu::before{-webkit-transform-origin:100% calc(100% - 2rem);transform-origin:100% calc(100% - 2rem)}.dropup .dropdown-menu-right:not([x-placement])::before{-webkit-transform-origin:100% 100%;transform-origin:100% 100%}.dropdown-menu[x-placement=bottom-end]::before,.dropdown-menu[x-placement=left-start]::before{-webkit-transform-origin:100% 0;transform-origin:100% 0}.dropdown-menu[x-placement=top-end].show>:nth-child(1),.dropdown-menu[x-placement=top-end].show>:nth-child(2),.dropdown-menu[x-placement=top-end].show>:nth-child(3),.dropdown-menu[x-placement=top-start].show>:nth-child(1),.dropdown-menu[x-placement=top-start].show>:nth-child(2),.dropdown-menu[x-placement=top-start].show>:nth-child(3){-webkit-animation-name:dropdown-item-show;animation-name:dropdown-item-show}.dropdown-menu[x-placement=top-end].show>:nth-last-child(1),.dropdown-menu[x-placement=top-start].show>:nth-last-child(1){-webkit-animation-name:dropdown-item-show-1;animation-name:dropdown-item-show-1}.dropdown-menu[x-placement=top-end].show>:nth-last-child(2),.dropdown-menu[x-placement=top-start].show>:nth-last-child(2){-webkit-animation-name:dropdown-item-show-2;animation-name:dropdown-item-show-2}.dropdown-menu[x-placement=top-end].show>:nth-last-child(3),.dropdown-menu[x-placement=top-start].show>:nth-last-child(3){-webkit-animation-name:dropdown-item-show-3;animation-name:dropdown-item-show-3}.dropdown-menu[x-placement=top-end]::before{-webkit-transform-origin:100% 100%;transform-origin:100% 100%}.dropdown-menu[x-placement=top-start]::before{-webkit-transform-origin:0 100%;transform-origin:0 100%}.menu[x-placement=bottom-end]::before{-webkit-transform-origin:100% 2rem;transform-origin:100% 2rem}.menu[x-placement=left-start],.menu[x-placement=right-start]{margin-top:0}.menu[x-placement=left-start]::before{-webkit-transform-origin:100% 0;transform-origin:100% 0}.menu[x-placement=right-start]::before{-webkit-transform-origin:0 0;transform-origin:0 0}.menu[x-placement=top-end],.menu[x-placement=top-start]{margin-top:0;margin-bottom:-3.125rem}.menu[x-placement=top-end]::before{-webkit-transform-origin:100% calc(100% - 2rem);transform-origin:100% calc(100% - 2rem)}.menu[x-placement=top-start]::before{-webkit-transform-origin:0 calc(100% - 2rem);transform-origin:0 calc(100% - 2rem)}@-webkit-keyframes dropdown-item-show{0%{opacity:0}99%{opacity:0}100%{opacity:1}}@keyframes dropdown-item-show{0%{opacity:0}99%{opacity:0}100%{opacity:1}}@-webkit-keyframes dropdown-item-show-1{0%{opacity:0}40%{opacity:0}100%{opacity:1}}@keyframes dropdown-item-show-1{0%{opacity:0}40%{opacity:0}100%{opacity:1}}@-webkit-keyframes dropdown-item-show-2{0%{opacity:0}60%{opacity:0}100%{opacity:1}}@keyframes dropdown-item-show-2{0%{opacity:0}60%{opacity:0}100%{opacity:1}}@-webkit-keyframes dropdown-item-show-3{0%{opacity:0}80%{opacity:0}100%{opacity:1}}@keyframes dropdown-item-show-3{0%{opacity:0}80%{opacity:0}100%{opacity:1}}@-webkit-keyframes dropdown-menu-show{0%{-webkit-transform:scale(0,0);transform:scale(0,0)}20%{-webkit-transform:scale(.33333,0);transform:scale(.33333,0)}40%{-webkit-transform:scale(.66667,.25);transform:scale(.66667,.25)}60%{-webkit-transform:scale(1,.5);transform:scale(1,.5)}80%{-webkit-transform:scale(1,.75);transform:scale(1,.75)}100%{-webkit-transform:scale(1,1);transform:scale(1,1)}}@keyframes dropdown-menu-show{0%{-webkit-transform:scale(0,0);transform:scale(0,0)}20%{-webkit-transform:scale(.33333,0);transform:scale(.33333,0)}40%{-webkit-transform:scale(.66667,.25);transform:scale(.66667,.25)}60%{-webkit-transform:scale(1,.5);transform:scale(1,.5)}80%{-webkit-transform:scale(1,.75);transform:scale(1,.75)}100%{-webkit-transform:scale(1,1);transform:scale(1,1)}}@-webkit-keyframes menu-animation{0%{margin-top:-3.5rem}100%{margin-top:0}}@keyframes menu-animation{0%{margin-top:-3.5rem}100%{margin-top:0}}.dropdown-menu-sm,.menu-cascading{font-size:.9375rem;line-height:1.5rem;padding-top:1rem;padding-bottom:1rem}@media (min-width:576px){.dropdown-menu-sm,.menu-cascading{min-width:20rem}}.menu-cascading{margin-top:-2.75rem}.menu-cascading[x-placement=top-end],.menu-cascading[x-placement=top-start]{margin-top:0;margin-bottom:-2.75rem}.menu-cascading[x-placement=top-end]::before{-webkit-transform-origin:100% calc(100% - 2rem);transform-origin:100% calc(100% - 2rem)}.menu-cascading[x-placement=top-start]::before{-webkit-transform-origin:0 calc(100% - 2rem);transform-origin:0 calc(100% - 2rem)}.dropdown-divider{background-color:rgba(0,0,0,.12);height:1px;margin:.5rem 0;overflow:hidden}.dropdown-header{color:rgba(0,0,0,.87);display:block;font-size:1rem;font-weight:bolder;line-height:1.5rem;margin:0;padding:.75rem 1rem;white-space:nowrap}.dropdown-menu-sm .dropdown-header,.menu-cascading .dropdown-header{font-size:.9375rem;line-height:1.5rem;padding:.25rem 1.5rem}.dropdown-item{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:background-color,color;transition-property:background-color,color;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);background:0 0;border:0;clear:both;color:rgba(0,0,0,.87);display:block;font-weight:inherit;padding:.75rem 1rem;position:relative;text-align:inherit;-webkit-transform-origin:0 0;transform-origin:0 0;white-space:nowrap;width:100%}@media (min-width:576px){.dropdown-item{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.dropdown-item{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.dropdown-item{-webkit-transition:none;transition:none}}.dropdown-item:active,.dropdown-item:focus,.dropdown-item:hover{background-color:#f5f5f5;color:rgba(0,0,0,.87);text-decoration:none}.dropdown-item.active{background-color:#f5f5f5}.dropdown-item.disabled,.dropdown-item:disabled{background-color:transparent;color:rgba(0,0,0,.38);pointer-events:none}.dropdown-menu-sm .dropdown-item,.menu-cascading .dropdown-item{padding:.25rem 1.5rem}.dropdown-item-text{color:rgba(0,0,0,.87);display:block;font-weight:inherit;padding:.75rem 1rem;-webkit-transform-origin:0 0;transform-origin:0 0}.dropdown-menu-sm .dropdown-item-text,.menu-cascading .dropdown-item-text{padding:.25rem 1.5rem}.dropdown-toggle::after{font-size:1.71429em;line-height:.58333em;vertical-align:-.3022em;font-family:'Material Icons';-webkit-font-feature-settings:'liga';font-feature-settings:'liga';-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;letter-spacing:normal;text-rendering:optimizeLegibility;text-transform:none;white-space:nowrap;word-wrap:normal;content:"expand_more";display:inline-block;margin-right:-.2em;margin-left:.2em;vertical-align:top}.dropright .dropdown-toggle::after{content:"keyboard_arrow_right"}.dropup .dropdown-toggle::after{content:"expand_less"}.dropdown-toggle:empty::after{margin-left:-.2em}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{font-size:1.71429em;line-height:.58333em;vertical-align:-.3022em;font-family:'Material Icons';-webkit-font-feature-settings:'liga';font-feature-settings:'liga';-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;letter-spacing:normal;text-rendering:optimizeLegibility;text-transform:none;white-space:nowrap;word-wrap:normal;content:"keyboard_arrow_left";display:inline-block;margin-right:.2em;margin-left:-.2em}.navdrawer{display:none;outline:0;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:160}.navdrawer-backdrop{-webkit-transition-duration:375ms;transition-duration:375ms;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:rgba(0,0,0,.38);opacity:0;position:fixed;top:0;right:0;bottom:0;left:0;z-index:159}@media (min-width:576px){.navdrawer-backdrop{-webkit-transition-duration:.4875s;transition-duration:.4875s}}@media (min-width:992px){.navdrawer-backdrop{-webkit-transition-duration:.25s;transition-duration:.25s}}@media screen and (prefers-reduced-motion:reduce){.navdrawer-backdrop{-webkit-transition:none;transition:none}}.navdrawer-backdrop.show{opacity:1}.navdrawer-content{-webkit-transition-duration:195ms;transition-duration:195ms;-webkit-transition-property:-webkit-box-shadow,-webkit-transform;transition-property:-webkit-box-shadow,-webkit-transform;transition-property:box-shadow,transform;transition-property:box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.6,1);transition-timing-function:cubic-bezier(.4,0,.6,1);background-color:#fff;max-width:calc(100% - 3.5rem);overflow-x:hidden;overflow-y:auto;position:fixed;top:0;bottom:0;left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);width:17.5rem}@media (min-width:576px){.navdrawer-content{-webkit-transition-duration:.2535s;transition-duration:.2535s}}@media (min-width:992px){.navdrawer-content{-webkit-transition-duration:.13s;transition-duration:.13s}}@media screen and (prefers-reduced-motion:reduce){.navdrawer-content{-webkit-transition:none;transition:none}}.navdrawer-right .navdrawer-content{right:0;left:auto;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.navdrawer.show .navdrawer-content{-webkit-transition-duration:225ms;transition-duration:225ms;-webkit-transition-property:-webkit-box-shadow,-webkit-transform;transition-property:-webkit-box-shadow,-webkit-transform;transition-property:box-shadow,transform;transition-property:box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(0,0,.2,1);transition-timing-function:cubic-bezier(0,0,.2,1);-webkit-box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px 0 rgba(0,0,0,.2);box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px 0 rgba(0,0,0,.2);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}@media (min-width:576px){.navdrawer.show .navdrawer-content{-webkit-transition-duration:.2925s;transition-duration:.2925s}}@media (min-width:992px){.navdrawer.show .navdrawer-content{-webkit-transition-duration:.15s;transition-duration:.15s}}@media screen and (prefers-reduced-motion:reduce){.navdrawer.show .navdrawer-content{-webkit-transition:none;transition:none}}.navdrawer-body{margin-bottom:.5rem;padding-right:1rem;padding-left:1rem}.navdrawer-divider{background-color:rgba(0,0,0,.12);height:1px;margin:.5rem 0;overflow:hidden}.navdrawer-header{background-color:#f5f5f5;border-bottom:1px solid rgba(0,0,0,.12);display:block;margin-bottom:.5rem;padding:.625rem 1rem}.navdrawer-subheader{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:rgba(0,0,0,.38);display:block;font-weight:500;height:3rem;line-height:1;margin-top:0;margin-bottom:0;padding:1.0625rem 1rem}.navdrawer-divider+.navdrawer-subheader{margin-top:-.5rem}.navdrawer-nav{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;list-style:none;margin-top:.5rem;margin-bottom:.5rem;padding-left:0}.navdrawer-header+.navdrawer-nav,.navdrawer-subheader+.navdrawer-nav{margin-top:0}.navdrawer-nav .nav-link{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:background-color,color;transition-property:background-color,color;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);color:rgba(0,0,0,.87);font-size:.875rem;font-weight:500;line-height:1;padding:1.0625rem 1rem}@media (min-width:576px){.navdrawer-nav .nav-link{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.navdrawer-nav .nav-link{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.navdrawer-nav .nav-link{-webkit-transition:none;transition:none}}.navdrawer-nav .nav-link:active,.navdrawer-nav .nav-link:focus,.navdrawer-nav .nav-link:hover{background-color:#f5f5f5}.navdrawer-nav .nav-link.active,.navdrawer-nav .nav-link:active{color:#f07206}.navdrawer-nav .nav-link.disabled{background-color:transparent;color:rgba(0,0,0,.38)}.navdrawer-nav .nav-link:focus{outline:0}.navdrawer-nav .active>.nav-link{color:#f07206}.navdrawer-nav-icon{color:rgba(0,0,0,.54);width:3.5rem}.nav-link.active .navdrawer-nav-icon,.nav-link:active .navdrawer-nav-icon{color:#f07206}.active>.nav-link .navdrawer-nav-icon{color:#f07206}@media (min-width:576px){.navdrawer-backdrop-permanent-sm{display:none;-webkit-transition:none;transition:none}.navdrawer-backdrop-persistent-sm{display:none;-webkit-transition:none;transition:none}.navdrawer-backdrop-temporary-sm{display:none;-webkit-transition:none;transition:none}.navdrawer-permanent-sm{border-right:1px solid rgba(0,0,0,.12);display:block!important;right:auto;width:17.5rem;z-index:auto}.navdrawer-permanent-sm.navdrawer-permanent-clipped,.navdrawer-permanent-sm.navdrawer-permanent-float{top:3.5rem}.navdrawer-permanent-sm.navdrawer-permanent-float{border-right:0}.navdrawer-permanent-sm.navdrawer-permanent-float.navdrawer-right{border-left:0}.navdrawer-permanent-sm.navdrawer-permanent-float .navdrawer-content{background-color:transparent}.navdrawer-permanent-sm.navdrawer-right{border-right:0;border-left:1px solid rgba(0,0,0,.12);right:0;left:auto}.navdrawer-permanent-sm.show .navdrawer-content{-webkit-box-shadow:none;box-shadow:none}.navdrawer-permanent-sm .navdrawer-content{max-width:none;position:absolute;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);width:100%}.navdrawer-persistent-sm{right:auto;width:17.5rem;z-index:auto}.navdrawer-persistent-sm.navdrawer-persistent-clipped{border-top:1px solid rgba(0,0,0,.12);margin-top:-1px;top:3.5rem;z-index:39}.navdrawer-persistent-sm.navdrawer-right{right:0;left:auto}.navdrawer-persistent-sm.navdrawer-right .navdrawer-content{border-right:0;border-left:1px solid rgba(0,0,0,.12)}.navdrawer-persistent-sm.show .navdrawer-content{-webkit-box-shadow:none;box-shadow:none}.navdrawer-persistent-sm .navdrawer-content{border-right:1px solid rgba(0,0,0,.12);max-width:none;position:absolute;width:100%}.navdrawer-temporary-sm{overflow:visible;right:auto;width:17.5rem}.navdrawer-temporary-sm.navdrawer-right{right:0;left:auto}.navdrawer-temporary-sm .navdrawer-content{max-width:none;position:absolute;width:100%}}@media (min-width:768px){.navdrawer-backdrop-permanent-md{display:none;-webkit-transition:none;transition:none}.navdrawer-backdrop-persistent-md{display:none;-webkit-transition:none;transition:none}.navdrawer-backdrop-temporary-md{display:none;-webkit-transition:none;transition:none}.navdrawer-permanent-md{border-right:1px solid rgba(0,0,0,.12);display:block!important;right:auto;width:17.5rem;z-index:auto}.navdrawer-permanent-md.navdrawer-permanent-clipped,.navdrawer-permanent-md.navdrawer-permanent-float{top:3.5rem}.navdrawer-permanent-md.navdrawer-permanent-float{border-right:0}.navdrawer-permanent-md.navdrawer-permanent-float.navdrawer-right{border-left:0}.navdrawer-permanent-md.navdrawer-permanent-float .navdrawer-content{background-color:transparent}.navdrawer-permanent-md.navdrawer-right{border-right:0;border-left:1px solid rgba(0,0,0,.12);right:0;left:auto}.navdrawer-permanent-md.show .navdrawer-content{-webkit-box-shadow:none;box-shadow:none}.navdrawer-permanent-md .navdrawer-content{max-width:none;position:absolute;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);width:100%}.navdrawer-persistent-md{right:auto;width:17.5rem;z-index:auto}.navdrawer-persistent-md.navdrawer-persistent-clipped{border-top:1px solid rgba(0,0,0,.12);margin-top:-1px;top:3.5rem;z-index:39}.navdrawer-persistent-md.navdrawer-right{right:0;left:auto}.navdrawer-persistent-md.navdrawer-right .navdrawer-content{border-right:0;border-left:1px solid rgba(0,0,0,.12)}.navdrawer-persistent-md.show .navdrawer-content{-webkit-box-shadow:none;box-shadow:none}.navdrawer-persistent-md .navdrawer-content{border-right:1px solid rgba(0,0,0,.12);max-width:none;position:absolute;width:100%}.navdrawer-temporary-md{overflow:visible;right:auto;width:17.5rem}.navdrawer-temporary-md.navdrawer-right{right:0;left:auto}.navdrawer-temporary-md .navdrawer-content{max-width:none;position:absolute;width:100%}}@media (min-width:992px){.navdrawer-backdrop-permanent-lg{display:none;-webkit-transition:none;transition:none}.navdrawer-backdrop-persistent-lg{display:none;-webkit-transition:none;transition:none}.navdrawer-backdrop-temporary-lg{display:none;-webkit-transition:none;transition:none}.navdrawer-permanent-lg{border-right:1px solid rgba(0,0,0,.12);display:block!important;right:auto;width:17.5rem;z-index:auto}.navdrawer-permanent-lg.navdrawer-permanent-clipped,.navdrawer-permanent-lg.navdrawer-permanent-float{top:3.5rem}.navdrawer-permanent-lg.navdrawer-permanent-float{border-right:0}.navdrawer-permanent-lg.navdrawer-permanent-float.navdrawer-right{border-left:0}.navdrawer-permanent-lg.navdrawer-permanent-float .navdrawer-content{background-color:transparent}.navdrawer-permanent-lg.navdrawer-right{border-right:0;border-left:1px solid rgba(0,0,0,.12);right:0;left:auto}.navdrawer-permanent-lg.show .navdrawer-content{-webkit-box-shadow:none;box-shadow:none}.navdrawer-permanent-lg .navdrawer-content{max-width:none;position:absolute;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);width:100%}.navdrawer-persistent-lg{right:auto;width:17.5rem;z-index:auto}.navdrawer-persistent-lg.navdrawer-persistent-clipped{border-top:1px solid rgba(0,0,0,.12);margin-top:-1px;top:3.5rem;z-index:39}.navdrawer-persistent-lg.navdrawer-right{right:0;left:auto}.navdrawer-persistent-lg.navdrawer-right .navdrawer-content{border-right:0;border-left:1px solid rgba(0,0,0,.12)}.navdrawer-persistent-lg.show .navdrawer-content{-webkit-box-shadow:none;box-shadow:none}.navdrawer-persistent-lg .navdrawer-content{border-right:1px solid rgba(0,0,0,.12);max-width:none;position:absolute;width:100%}.navdrawer-temporary-lg{overflow:visible;right:auto;width:17.5rem}.navdrawer-temporary-lg.navdrawer-right{right:0;left:auto}.navdrawer-temporary-lg .navdrawer-content{max-width:none;position:absolute;width:100%}}@media (min-width:1200px){.navdrawer-backdrop-permanent-xl{display:none;-webkit-transition:none;transition:none}.navdrawer-backdrop-persistent-xl{display:none;-webkit-transition:none;transition:none}.navdrawer-backdrop-temporary-xl{display:none;-webkit-transition:none;transition:none}.navdrawer-permanent-xl{border-right:1px solid rgba(0,0,0,.12);display:block!important;right:auto;width:17.5rem;z-index:auto}.navdrawer-permanent-xl.navdrawer-permanent-clipped,.navdrawer-permanent-xl.navdrawer-permanent-float{top:3.5rem}.navdrawer-permanent-xl.navdrawer-permanent-float{border-right:0}.navdrawer-permanent-xl.navdrawer-permanent-float.navdrawer-right{border-left:0}.navdrawer-permanent-xl.navdrawer-permanent-float .navdrawer-content{background-color:transparent}.navdrawer-permanent-xl.navdrawer-right{border-right:0;border-left:1px solid rgba(0,0,0,.12);right:0;left:auto}.navdrawer-permanent-xl.show .navdrawer-content{-webkit-box-shadow:none;box-shadow:none}.navdrawer-permanent-xl .navdrawer-content{max-width:none;position:absolute;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);width:100%}.navdrawer-persistent-xl{right:auto;width:17.5rem;z-index:auto}.navdrawer-persistent-xl.navdrawer-persistent-clipped{border-top:1px solid rgba(0,0,0,.12);margin-top:-1px;top:3.5rem;z-index:39}.navdrawer-persistent-xl.navdrawer-right{right:0;left:auto}.navdrawer-persistent-xl.navdrawer-right .navdrawer-content{border-right:0;border-left:1px solid rgba(0,0,0,.12)}.navdrawer-persistent-xl.show .navdrawer-content{-webkit-box-shadow:none;box-shadow:none}.navdrawer-persistent-xl .navdrawer-content{border-right:1px solid rgba(0,0,0,.12);max-width:none;position:absolute;width:100%}.navdrawer-temporary-xl{overflow:visible;right:auto;width:17.5rem}.navdrawer-temporary-xl.navdrawer-right{right:0;left:auto}.navdrawer-temporary-xl .navdrawer-content{max-width:none;position:absolute;width:100%}}.navdrawer-backdrop-permanent{display:none;-webkit-transition:none;transition:none}.navdrawer-backdrop-persistent{display:none;-webkit-transition:none;transition:none}.navdrawer-backdrop-temporary{display:none;-webkit-transition:none;transition:none}.navdrawer-permanent{border-right:1px solid rgba(0,0,0,.12);display:block!important;right:auto;width:17.5rem;z-index:auto}.navdrawer-permanent.navdrawer-permanent-clipped,.navdrawer-permanent.navdrawer-permanent-float{top:3.5rem}.navdrawer-permanent.navdrawer-permanent-float{border-right:0}.navdrawer-permanent.navdrawer-permanent-float.navdrawer-right{border-left:0}.navdrawer-permanent.navdrawer-permanent-float .navdrawer-content{background-color:transparent}.navdrawer-permanent.navdrawer-right{border-right:0;border-left:1px solid rgba(0,0,0,.12);right:0;left:auto}.navdrawer-permanent.show .navdrawer-content{-webkit-box-shadow:none;box-shadow:none}.navdrawer-permanent .navdrawer-content{max-width:none;position:absolute;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);width:100%}.navdrawer-persistent{right:auto;width:17.5rem;z-index:auto}.navdrawer-persistent.navdrawer-persistent-clipped{border-top:1px solid rgba(0,0,0,.12);margin-top:-1px;top:3.5rem;z-index:39}.navdrawer-persistent.navdrawer-right{right:0;left:auto}.navdrawer-persistent.navdrawer-right .navdrawer-content{border-right:0;border-left:1px solid rgba(0,0,0,.12)}.navdrawer-persistent.show .navdrawer-content{-webkit-box-shadow:none;box-shadow:none}.navdrawer-persistent .navdrawer-content{border-right:1px solid rgba(0,0,0,.12);max-width:none;position:absolute;width:100%}.navdrawer-temporary{overflow:visible;right:auto;width:17.5rem}.navdrawer-temporary.navdrawer-right{right:0;left:auto}.navdrawer-temporary .navdrawer-content{max-width:none;position:absolute;width:100%}.picker{outline:0;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);-webkit-transition-delay:675ms;transition-delay:675ms;-webkit-transition-duration:0;transition-duration:0;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform;z-index:240}@media (min-width:576px){.picker{-webkit-transition-delay:.8775s;transition-delay:.8775s}}@media (min-width:992px){.picker{-webkit-transition-delay:.45s;transition-delay:.45s}}@media screen and (prefers-reduced-motion:reduce){.picker{-webkit-transition:none;transition:none}}.picker.picker-opened{overflow-x:hidden;overflow-y:auto;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:none;transition:none}.picker-frame{margin:1.5rem 1.5rem}.picker-holder{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:rgba(0,0,0,.38);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;min-height:100%;min-width:100%;opacity:0;pointer-events:none;-webkit-transition-delay:375ms;transition-delay:375ms}@media (min-width:576px){.picker-holder{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.picker-holder{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.picker-holder{-webkit-transition:none;transition:none}}@media (min-width:576px){.picker-holder{-webkit-transition-delay:.4875s;transition-delay:.4875s}}@media (min-width:992px){.picker-holder{-webkit-transition-delay:.25s;transition-delay:.25s}}.picker-opened .picker-holder{opacity:1;-webkit-transition-delay:0s;transition-delay:0s}.picker-wrap{border-radius:2px;-webkit-transition-duration:375ms;transition-duration:375ms;-webkit-transition-property:opacity,-webkit-transform;transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);font-size:.875rem;font-weight:400;letter-spacing:0;line-height:1.42857;-webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,.14),0 4px 5px 0 rgba(0,0,0,.12),0 1px 10px 0 rgba(0,0,0,.2);box-shadow:0 2px 4px 0 rgba(0,0,0,.14),0 4px 5px 0 rgba(0,0,0,.12),0 1px 10px 0 rgba(0,0,0,.2);max-width:18.5rem;opacity:0;outline:0;pointer-events:auto;position:relative;-webkit-transform:scale(.87);transform:scale(.87)}@media (min-width:576px){.picker-wrap{-webkit-transition-duration:.4875s;transition-duration:.4875s}}@media (min-width:992px){.picker-wrap{-webkit-transition-duration:.25s;transition-duration:.25s}}@media screen and (prefers-reduced-motion:reduce){.picker-wrap{-webkit-transition:none;transition:none}}@media (orientation:landscape){.picker-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;max-width:none}}.picker-opened .picker-wrap{opacity:1;-webkit-transform:scale(1);transform:scale(1)}.picker-footer{border-bottom-right-radius:2px;border-bottom-left-radius:2px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;padding:.5rem .5rem}@media (orientation:landscape){.picker-footer{border-radius:0 0 2px 0;padding-right:.75rem;padding-left:.75rem}}.picker-footer button{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;margin-left:.5rem;min-width:0}.picker-footer button:first-child{margin-left:0}.picker-header{height:2.5rem;line-height:2.5rem;margin-right:.5rem;margin-left:.5rem;padding-right:3rem;padding-left:3rem;position:relative;text-align:center}@media (orientation:landscape){.picker-header{margin-top:.5rem;margin-right:.75rem;margin-left:.75rem}}.picker-month,.picker-year{display:inline;margin-left:.5rem}.picker-month:first-child,.picker-year:first-child{margin-left:0}.picker-nav-next,.picker-nav-prev{height:2.5rem;margin-top:-1.25rem;position:absolute;top:50%;width:2.5rem}.picker-nav-next,.picker-nav-next.material-icons,.picker-nav-prev,.picker-nav-prev.material-icons{line-height:2.5rem}.picker-nav-next{right:0}.picker-nav-next::before{content:"keyboard_arrow_right"}.picker-nav-prev{left:0}.picker-nav-prev::before{content:"keyboard_arrow_left"}.picker-date-display{border-top-left-radius:2px;border-top-right-radius:2px;background-color:#f07206;color:#fff;padding:1rem 1.5rem}@media (orientation:landscape){.picker-date-display{border-top-left-radius:2px;border-bottom-left-radius:2px;border-top-right-radius:0;min-width:9.75rem;white-space:nowrap}}.picker-date-display-bottom{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:2.125rem;font-weight:400;letter-spacing:0;line-height:1.17647}.picker-day-display{margin-right:.5rem}.picker-weekday-display{margin-right:.5rem}@media (orientation:landscape){.picker-weekday-display{display:block;margin-right:0}}.picker-weekday-display::after{content:','}.picker-box{border-bottom-right-radius:2px;border-bottom-left-radius:2px;background-color:#fff;overflow:hidden}@media (orientation:landscape){.picker-box{border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}}.picker-input.form-control[readonly],.wpcf7 .picker-input.wpcf7-validation-errors[readonly],.wpcf7 input.picker-input[readonly][type=color],.wpcf7 input.picker-input[readonly][type=date],.wpcf7 input.picker-input[readonly][type=datetime-local],.wpcf7 input.picker-input[readonly][type=datetime],.wpcf7 input.picker-input[readonly][type=email],.wpcf7 input.picker-input[readonly][type=file],.wpcf7 input.picker-input[readonly][type=month],.wpcf7 input.picker-input[readonly][type=number],.wpcf7 input.picker-input[readonly][type=range],.wpcf7 input.picker-input[readonly][type=search],.wpcf7 input.picker-input[readonly][type=submit],.wpcf7 input.picker-input[readonly][type=tel],.wpcf7 input.picker-input[readonly][type=text],.wpcf7 input.picker-input[readonly][type=time],.wpcf7 input.picker-input[readonly][type=url],.wpcf7 input.picker-input[readonly][type=week],.wpcf7 select.picker-input[readonly],.wpcf7 textarea.picker-input[readonly]{border-bottom-style:solid;color:inherit;cursor:text}.picker-input.picker-input-active{border-bottom-color:#f07206}.picker-day{border-radius:50%;cursor:default;height:2.5rem;line-height:2.5rem;margin:auto;vertical-align:middle;width:2.5rem}@media (orientation:landscape){.picker-day{margin-right:.25rem;margin-left:.25rem}}.picker-day.picker-day-selected{background-color:#f07206;color:#fff}.picker-day-disabled{color:rgba(0,0,0,.38)}.picker-day-outfocus{display:none}.picker-day-today{color:#f07206;font-weight:bolder}.picker-table{border-collapse:collapse;border-spacing:0;margin:0 .5rem;table-layout:fixed}.picker-table td,.picker-table th{border:0;padding:0;text-align:center;vertical-align:middle}.picker-table th{font-weight:inherit}.picker-weekday{color:rgba(0,0,0,.38);height:2.5rem;vertical-align:middle;width:2.5rem}.picker-select-month,.picker-select-year{border-radius:2px;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:rgba(0,0,0,.12);background-image:none;background-position:100% 50%;background-size:auto 100%;border:0;-webkit-box-shadow:none;box-shadow:none;color:rgba(0,0,0,.87);display:inline-block;font-size:inherit;height:1.25rem;line-height:1.25rem;opacity:.7;padding:0 1.25rem 0 .5rem}@media (min-width:576px){.picker-select-month,.picker-select-year{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.picker-select-month,.picker-select-year{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.picker-select-month,.picker-select-year{-webkit-transition:none;transition:none}}.picker-select-month:focus,.picker-select-month:hover,.picker-select-year:focus,.picker-select-year:hover{opacity:1}@-moz-document url-prefix(''){.picker-select-month,.picker-select-year{background-image:url('data:image/svg+xml;charset=utf8,%3Csvg fill="%23000" fill-opacity="0.54" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M7 10l5 5 5-5z"/%3E%3Cpath d="M0 0h24v24H0z" fill="none"/%3E%3C/svg%3E');background-repeat:no-repeat}}@media (-webkit-min-device-pixel-ratio:0){.picker-select-month,.picker-select-year{background-image:url('data:image/svg+xml;charset=utf8,%3Csvg fill="%23000" fill-opacity="0.54" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M7 10l5 5 5-5z"/%3E%3Cpath d="M0 0h24v24H0z" fill="none"/%3E%3C/svg%3E');background-repeat:no-repeat}}.picker-select-month:focus,.picker-select-year:focus{outline:0}.picker-select-month{margin-left:.5rem}.progress{display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden;position:relative;z-index:1}.progress-bar{border-bottom:.25rem solid #3f51b5}.progress-bar.bg-primary{background-color:transparent!important;border-bottom-color:#f07206}.progress-bar.bg-primary::after{background-color:#fa8d2f}.progress-bar.bg-secondary{background-color:transparent!important;border-bottom-color:#f07206}.progress-bar.bg-secondary::after{background-color:#fa8d2f}.progress-bar.bg-danger{background-color:transparent!important;border-bottom-color:#f44336}.progress-bar.bg-danger::after{background-color:#ffcdd2}.progress-bar.bg-info{background-color:transparent!important;border-bottom-color:#2196f3}.progress-bar.bg-info::after{background-color:#bbdefb}.progress-bar.bg-success{background-color:transparent!important;border-bottom-color:#4caf50}.progress-bar.bg-success::after{background-color:#c8e6c9}.progress-bar.bg-warning{background-color:transparent!important;border-bottom-color:#ff9800}.progress-bar.bg-warning::after{background-color:#ffe0b2}.progress-bar.bg-dark{background-color:transparent!important;border-bottom-color:#424242}.progress-bar.bg-dark::after{background-color:#757575}.progress-bar.bg-light{background-color:transparent!important;border-bottom-color:#f5f5f5}.progress-bar.bg-light::after{background-color:#fafafa}.progress-bar.bg-similar{background-color:transparent!important;border-bottom-color:#f83207}.progress-bar.bg-similar::after{background-color:#f95b39}.progress-bar.bg-tertiary{background-color:transparent!important;border-bottom-color:#f07206}.progress-bar.bg-tertiary::after{background-color:#fa8d2f}.progress-bar.bg-complementary{background-color:transparent!important;border-bottom-color:#0087a3}.progress-bar.bg-complementary::after{background-color:#00b1d6}.progress-bar::after{background-color:#c5cae9;content:'';display:block;height:.25rem;position:absolute;right:0;bottom:0;left:0;z-index:-1}.progress-bar-animated::before{animation-direction:reverse;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:progress-bar-animation;animation-name:progress-bar-animation;-webkit-animation-timing-function:linear;animation-timing-function:linear}@media (min-width:576px){.progress-bar-animated::before{-webkit-animation-duration:.39s;animation-duration:.39s}}@media (min-width:992px){.progress-bar-animated::before{-webkit-animation-duration:.2s;animation-duration:.2s}}.progress-bar-animated,.progress-bar-striped{-webkit-box-sizing:content-box;box-sizing:content-box;position:relative}.progress-bar-animated.bg-primary::before,.progress-bar-striped.bg-primary::before{background-image:repeating-radial-gradient(.125rem .125rem,#fa8d2f,#fa8d2f .125rem,transparent .125rem,transparent 100%);background-image:-webkit-repeating-radial-gradient(.125rem .125rem,#fa8d2f,#fa8d2f .125rem,transparent .125rem,transparent 100%);background-image:-moz-repeating-radial-gradient(.125rem .125rem,#fa8d2f,#fa8d2f .125rem,transparent .125rem,transparent 100%)}.progress-bar-animated.bg-secondary::before,.progress-bar-striped.bg-secondary::before{background-image:repeating-radial-gradient(.125rem .125rem,#fa8d2f,#fa8d2f .125rem,transparent .125rem,transparent 100%);background-image:-webkit-repeating-radial-gradient(.125rem .125rem,#fa8d2f,#fa8d2f .125rem,transparent .125rem,transparent 100%);background-image:-moz-repeating-radial-gradient(.125rem .125rem,#fa8d2f,#fa8d2f .125rem,transparent .125rem,transparent 100%)}.progress-bar-animated.bg-danger::before,.progress-bar-striped.bg-danger::before{background-image:repeating-radial-gradient(.125rem .125rem,#ffcdd2,#ffcdd2 .125rem,transparent .125rem,transparent 100%);background-image:-webkit-repeating-radial-gradient(.125rem .125rem,#ffcdd2,#ffcdd2 .125rem,transparent .125rem,transparent 100%);background-image:-moz-repeating-radial-gradient(.125rem .125rem,#ffcdd2,#ffcdd2 .125rem,transparent .125rem,transparent 100%)}.progress-bar-animated.bg-info::before,.progress-bar-striped.bg-info::before{background-image:repeating-radial-gradient(.125rem .125rem,#bbdefb,#bbdefb .125rem,transparent .125rem,transparent 100%);background-image:-webkit-repeating-radial-gradient(.125rem .125rem,#bbdefb,#bbdefb .125rem,transparent .125rem,transparent 100%);background-image:-moz-repeating-radial-gradient(.125rem .125rem,#bbdefb,#bbdefb .125rem,transparent .125rem,transparent 100%)}.progress-bar-animated.bg-success::before,.progress-bar-striped.bg-success::before{background-image:repeating-radial-gradient(.125rem .125rem,#c8e6c9,#c8e6c9 .125rem,transparent .125rem,transparent 100%);background-image:-webkit-repeating-radial-gradient(.125rem .125rem,#c8e6c9,#c8e6c9 .125rem,transparent .125rem,transparent 100%);background-image:-moz-repeating-radial-gradient(.125rem .125rem,#c8e6c9,#c8e6c9 .125rem,transparent .125rem,transparent 100%)}.progress-bar-animated.bg-warning::before,.progress-bar-striped.bg-warning::before{background-image:repeating-radial-gradient(.125rem .125rem,#ffe0b2,#ffe0b2 .125rem,transparent .125rem,transparent 100%);background-image:-webkit-repeating-radial-gradient(.125rem .125rem,#ffe0b2,#ffe0b2 .125rem,transparent .125rem,transparent 100%);background-image:-moz-repeating-radial-gradient(.125rem .125rem,#ffe0b2,#ffe0b2 .125rem,transparent .125rem,transparent 100%)}.progress-bar-animated.bg-dark::before,.progress-bar-striped.bg-dark::before{background-image:repeating-radial-gradient(.125rem .125rem,#757575,#757575 .125rem,transparent .125rem,transparent 100%);background-image:-webkit-repeating-radial-gradient(.125rem .125rem,#757575,#757575 .125rem,transparent .125rem,transparent 100%);background-image:-moz-repeating-radial-gradient(.125rem .125rem,#757575,#757575 .125rem,transparent .125rem,transparent 100%)}.progress-bar-animated.bg-light::before,.progress-bar-striped.bg-light::before{background-image:repeating-radial-gradient(.125rem .125rem,#fafafa,#fafafa .125rem,transparent .125rem,transparent 100%);background-image:-webkit-repeating-radial-gradient(.125rem .125rem,#fafafa,#fafafa .125rem,transparent .125rem,transparent 100%);background-image:-moz-repeating-radial-gradient(.125rem .125rem,#fafafa,#fafafa .125rem,transparent .125rem,transparent 100%)}.progress-bar-animated.bg-similar::before,.progress-bar-striped.bg-similar::before{background-image:repeating-radial-gradient(.125rem .125rem,#f95b39,#f95b39 .125rem,transparent .125rem,transparent 100%);background-image:-webkit-repeating-radial-gradient(.125rem .125rem,#f95b39,#f95b39 .125rem,transparent .125rem,transparent 100%);background-image:-moz-repeating-radial-gradient(.125rem .125rem,#f95b39,#f95b39 .125rem,transparent .125rem,transparent 100%)}.progress-bar-animated.bg-tertiary::before,.progress-bar-striped.bg-tertiary::before{background-image:repeating-radial-gradient(.125rem .125rem,#fa8d2f,#fa8d2f .125rem,transparent .125rem,transparent 100%);background-image:-webkit-repeating-radial-gradient(.125rem .125rem,#fa8d2f,#fa8d2f .125rem,transparent .125rem,transparent 100%);background-image:-moz-repeating-radial-gradient(.125rem .125rem,#fa8d2f,#fa8d2f .125rem,transparent .125rem,transparent 100%)}.progress-bar-animated.bg-complementary::before,.progress-bar-striped.bg-complementary::before{background-image:repeating-radial-gradient(.125rem .125rem,#00b1d6,#00b1d6 .125rem,transparent .125rem,transparent 100%);background-image:-webkit-repeating-radial-gradient(.125rem .125rem,#00b1d6,#00b1d6 .125rem,transparent .125rem,transparent 100%);background-image:-moz-repeating-radial-gradient(.125rem .125rem,#00b1d6,#00b1d6 .125rem,transparent .125rem,transparent 100%)}.progress-bar-animated::after,.progress-bar-striped::after{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;right:-1.5rem;bottom:-.25rem}.progress-bar-animated::before,.progress-bar-striped::before{background-image:repeating-radial-gradient(.125rem .125rem,#c5cae9,#c5cae9 .125rem,transparent .125rem,transparent 100%);background-image:-webkit-repeating-radial-gradient(.125rem .125rem,#c5cae9,#c5cae9 .125rem,transparent .125rem,transparent 100%);background-image:-moz-repeating-radial-gradient(.125rem .125rem,#c5cae9,#c5cae9 .125rem,transparent .125rem,transparent 100%);background-position:0 0;background-repeat:repeat-x;background-size:.75rem .75rem;content:'';display:block;height:.25rem;position:absolute;right:-100vw;bottom:-.25rem;left:0;z-index:-1}@-webkit-keyframes progress-bar-animation{from{background-position:0 0}to{background-position:.75rem 0}}@keyframes progress-bar-animation{from{background-position:0 0}to{background-position:.75rem 0}}.progress-bar-indeterminate{border-bottom-color:#c5cae9;position:relative;width:100%}.progress-bar-indeterminate.bg-primary{border-bottom-color:#fa8d2f}.progress-bar-indeterminate.bg-primary::after,.progress-bar-indeterminate.bg-primary::before{background-color:#f07206}.progress-bar-indeterminate.bg-primary::before{background-image:none}.progress-bar-indeterminate.bg-secondary{border-bottom-color:#fa8d2f}.progress-bar-indeterminate.bg-secondary::after,.progress-bar-indeterminate.bg-secondary::before{background-color:#f07206}.progress-bar-indeterminate.bg-secondary::before{background-image:none}.progress-bar-indeterminate.bg-danger{border-bottom-color:#ffcdd2}.progress-bar-indeterminate.bg-danger::after,.progress-bar-indeterminate.bg-danger::before{background-color:#f44336}.progress-bar-indeterminate.bg-danger::before{background-image:none}.progress-bar-indeterminate.bg-info{border-bottom-color:#bbdefb}.progress-bar-indeterminate.bg-info::after,.progress-bar-indeterminate.bg-info::before{background-color:#2196f3}.progress-bar-indeterminate.bg-info::before{background-image:none}.progress-bar-indeterminate.bg-success{border-bottom-color:#c8e6c9}.progress-bar-indeterminate.bg-success::after,.progress-bar-indeterminate.bg-success::before{background-color:#4caf50}.progress-bar-indeterminate.bg-success::before{background-image:none}.progress-bar-indeterminate.bg-warning{border-bottom-color:#ffe0b2}.progress-bar-indeterminate.bg-warning::after,.progress-bar-indeterminate.bg-warning::before{background-color:#ff9800}.progress-bar-indeterminate.bg-warning::before{background-image:none}.progress-bar-indeterminate.bg-dark{border-bottom-color:#757575}.progress-bar-indeterminate.bg-dark::after,.progress-bar-indeterminate.bg-dark::before{background-color:#424242}.progress-bar-indeterminate.bg-dark::before{background-image:none}.progress-bar-indeterminate.bg-light{border-bottom-color:#fafafa}.progress-bar-indeterminate.bg-light::after,.progress-bar-indeterminate.bg-light::before{background-color:#f5f5f5}.progress-bar-indeterminate.bg-light::before{background-image:none}.progress-bar-indeterminate.bg-similar{border-bottom-color:#f95b39}.progress-bar-indeterminate.bg-similar::after,.progress-bar-indeterminate.bg-similar::before{background-color:#f83207}.progress-bar-indeterminate.bg-similar::before{background-image:none}.progress-bar-indeterminate.bg-tertiary{border-bottom-color:#fa8d2f}.progress-bar-indeterminate.bg-tertiary::after,.progress-bar-indeterminate.bg-tertiary::before{background-color:#f07206}.progress-bar-indeterminate.bg-tertiary::before{background-image:none}.progress-bar-indeterminate.bg-complementary{border-bottom-color:#00b1d6}.progress-bar-indeterminate.bg-complementary::after,.progress-bar-indeterminate.bg-complementary::before{background-color:#0087a3}.progress-bar-indeterminate.bg-complementary::before{background-image:none}.progress-bar-indeterminate::after,.progress-bar-indeterminate::before{border-radius:.25rem;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear;background-color:#3f51b5;width:0%}.progress-bar-indeterminate::after{-webkit-animation-name:progress-bar-indeterminate-after;animation-name:progress-bar-indeterminate-after;bottom:-.25rem;z-index:0}.progress-bar-indeterminate::before{-webkit-animation-name:progress-bar-indeterminate-before;animation-name:progress-bar-indeterminate-before;content:'';display:block;height:.25rem;position:absolute;bottom:-.25rem;z-index:0}@-webkit-keyframes progress-bar-indeterminate-after{0%{left:0;width:0%}50%{left:25%;width:75%}75%{left:100%;width:0%}}@keyframes progress-bar-indeterminate-after{0%{left:0;width:0%}50%{left:25%;width:75%}75%{left:100%;width:0%}}@-webkit-keyframes progress-bar-indeterminate-before{0%,62.5%{left:0;width:0%}71.875%{left:0;width:25%}81.25%{left:25%;width:50%}100%{left:100%;width:25%}}@keyframes progress-bar-indeterminate-before{0%,62.5%{left:0;width:0%}71.875%{left:0;width:25%}81.25%{left:25%;width:50%}100%{left:100%;width:25%}}.progress-circular{height:2.5rem;position:relative;width:2.5rem}.progress-circular-gap{border-top:.125rem solid #3f51b5;position:absolute;top:0;right:1.1875rem;bottom:0;left:1.1875rem}.progress-circular-inner{-webkit-animation:progress-circular-inner-rotate 5.332s cubic-bezier(.4,0,.2,1) infinite;animation:progress-circular-inner-rotate 5.332s cubic-bezier(.4,0,.2,1) infinite;height:2.5rem;position:relative;width:2.5rem}.progress-circular-left,.progress-circular-right{height:2.5rem;overflow:hidden;position:absolute;top:0;width:1.25rem}.progress-circular-left{left:0}.progress-circular-right{right:0}.progress-circular-spinner{border:.25rem solid #3f51b5;border-bottom-color:transparent;border-radius:50%;height:2.5rem;position:absolute;top:0;width:2.5rem}.progress-circular-left .progress-circular-spinner{-webkit-animation:progress-circular-spinner-left 1.333s cubic-bezier(.4,0,.2,1) infinite;animation:progress-circular-spinner-left 1.333s cubic-bezier(.4,0,.2,1) infinite;border-right-color:transparent;left:0}.progress-circular-right .progress-circular-spinner{-webkit-animation:progress-circular-spinner-right 1.333s cubic-bezier(.4,0,.2,1) infinite;animation:progress-circular-spinner-right 1.333s cubic-bezier(.4,0,.2,1) infinite;border-left-color:transparent;right:0}.progress-circular-wrapper{-webkit-animation:progress-circular-wrapper-rotate 2.666s linear infinite;animation:progress-circular-wrapper-rotate 2.666s linear infinite}@-webkit-keyframes progress-circular-inner-rotate{12.5%{-webkit-transform:rotate(135deg);transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg);transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg);transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg);transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg);transform:rotate(945deg)}100%{-webkit-transform:rotate(1080deg);transform:rotate(1080deg)}}@keyframes progress-circular-inner-rotate{12.5%{-webkit-transform:rotate(135deg);transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg);transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg);transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg);transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg);transform:rotate(945deg)}100%{-webkit-transform:rotate(1080deg);transform:rotate(1080deg)}}@-webkit-keyframes progress-circular-spinner-left{0%,100%{-webkit-transform:rotate(130deg);transform:rotate(130deg)}50%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}}@keyframes progress-circular-spinner-left{0%,100%{-webkit-transform:rotate(130deg);transform:rotate(130deg)}50%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}}@-webkit-keyframes progress-circular-spinner-right{0%,100%{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}50%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}}@keyframes progress-circular-spinner-right{0%,100%{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}50%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}}@-webkit-keyframes progress-circular-wrapper-rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes progress-circular-wrapper-rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.progress-circular-primary .progress-circular-gap,.progress-circular-primary .progress-circular-spinner{border-top-color:#f07206}.progress-circular-primary .progress-circular-left .progress-circular-spinner{border-left-color:#f07206}.progress-circular-primary .progress-circular-right .progress-circular-spinner{border-right-color:#f07206}.progress-circular-secondary .progress-circular-gap,.progress-circular-secondary .progress-circular-spinner{border-top-color:#f07206}.progress-circular-secondary .progress-circular-left .progress-circular-spinner{border-left-color:#f07206}.progress-circular-secondary .progress-circular-right .progress-circular-spinner{border-right-color:#f07206}.progress-circular-danger .progress-circular-gap,.progress-circular-danger .progress-circular-spinner{border-top-color:#f44336}.progress-circular-danger .progress-circular-left .progress-circular-spinner{border-left-color:#f44336}.progress-circular-danger .progress-circular-right .progress-circular-spinner{border-right-color:#f44336}.progress-circular-info .progress-circular-gap,.progress-circular-info .progress-circular-spinner{border-top-color:#2196f3}.progress-circular-info .progress-circular-left .progress-circular-spinner{border-left-color:#2196f3}.progress-circular-info .progress-circular-right .progress-circular-spinner{border-right-color:#2196f3}.progress-circular-success .progress-circular-gap,.progress-circular-success .progress-circular-spinner{border-top-color:#4caf50}.progress-circular-success .progress-circular-left .progress-circular-spinner{border-left-color:#4caf50}.progress-circular-success .progress-circular-right .progress-circular-spinner{border-right-color:#4caf50}.progress-circular-warning .progress-circular-gap,.progress-circular-warning .progress-circular-spinner{border-top-color:#ff9800}.progress-circular-warning .progress-circular-left .progress-circular-spinner{border-left-color:#ff9800}.progress-circular-warning .progress-circular-right .progress-circular-spinner{border-right-color:#ff9800}.progress-circular-dark .progress-circular-gap,.progress-circular-dark .progress-circular-spinner{border-top-color:#424242}.progress-circular-dark .progress-circular-left .progress-circular-spinner{border-left-color:#424242}.progress-circular-dark .progress-circular-right .progress-circular-spinner{border-right-color:#424242}.progress-circular-light .progress-circular-gap,.progress-circular-light .progress-circular-spinner{border-top-color:#f5f5f5}.progress-circular-light .progress-circular-left .progress-circular-spinner{border-left-color:#f5f5f5}.progress-circular-light .progress-circular-right .progress-circular-spinner{border-right-color:#f5f5f5}.progress-circular-similar .progress-circular-gap,.progress-circular-similar .progress-circular-spinner{border-top-color:#f83207}.progress-circular-similar .progress-circular-left .progress-circular-spinner{border-left-color:#f83207}.progress-circular-similar .progress-circular-right .progress-circular-spinner{border-right-color:#f83207}.progress-circular-tertiary .progress-circular-gap,.progress-circular-tertiary .progress-circular-spinner{border-top-color:#f07206}.progress-circular-tertiary .progress-circular-left .progress-circular-spinner{border-left-color:#f07206}.progress-circular-tertiary .progress-circular-right .progress-circular-spinner{border-right-color:#f07206}.progress-circular-complementary .progress-circular-gap,.progress-circular-complementary .progress-circular-spinner{border-top-color:#0087a3}.progress-circular-complementary .progress-circular-left .progress-circular-spinner{border-left-color:#0087a3}.progress-circular-complementary .progress-circular-right .progress-circular-spinner{border-right-color:#0087a3}.custom-control{display:block;min-height:1.25rem;padding-left:2.25rem;position:relative}.custom-control+.custom-control{margin-top:.75rem}.custom-control-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-right:1.5rem}.custom-control-inline+.custom-control-inline{margin-top:0}.custom-control-label{color:inherit;font-size:.875rem;line-height:inherit;margin-bottom:0}.custom-control-label::after{color:rgba(0,0,0,.54);position:absolute;top:-.125rem;left:0}.custom-control-label::before{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:background-color,opacity,-webkit-transform;transition-property:background-color,opacity,-webkit-transform;transition-property:background-color,opacity,transform;transition-property:background-color,opacity,transform,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:currentColor;border-radius:50%;color:rgba(0,0,0,.54);content:'';display:block;height:3rem;margin-top:-.875rem;margin-left:-.75rem;opacity:0;position:absolute;top:0;left:0;-webkit-transform:scale(.87,.87) translateZ(0);transform:scale(.87,.87) translateZ(0);width:3rem}@media (min-width:576px){.custom-control-label::before{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.custom-control-label::before{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.custom-control-label::before{-webkit-transition:none;transition:none}}.custom-control-input{opacity:0;position:absolute;z-index:-1}.custom-control-input.focus~.custom-control-label::before,.custom-control-input:active~.custom-control-label::before{opacity:.12;-webkit-transform:scale(1,1) translateZ(0);transform:scale(1,1) translateZ(0)}.custom-control-input:checked~.custom-control-label::after{color:#f07206}.custom-control-input:checked~.custom-control-label::before{background-color:#f07206}.custom-control-input:disabled~.custom-control-label{color:rgba(0,0,0,.26)}.custom-control-input:disabled~.custom-control-label::after{color:rgba(0,0,0,.26)}.custom-control-input:disabled~.custom-control-label::before{display:none}.custom-checkbox .custom-control-label::after{font-size:1.71429em;line-height:.58333em;vertical-align:-.3022em;font-family:'Material Icons';-webkit-font-feature-settings:'liga';font-feature-settings:'liga';-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;letter-spacing:normal;text-rendering:optimizeLegibility;text-transform:none;white-space:nowrap;word-wrap:normal;content:"check_box_outline_blank";line-height:1;vertical-align:middle}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{content:"check_box"}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{content:"indeterminate_check_box"}.custom-radio .custom-control-label::after{font-size:1.71429em;line-height:.58333em;vertical-align:-.3022em;font-family:'Material Icons';-webkit-font-feature-settings:'liga';font-feature-settings:'liga';-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;letter-spacing:normal;text-rendering:optimizeLegibility;text-transform:none;white-space:nowrap;word-wrap:normal;content:"radio_button_unchecked";line-height:1;vertical-align:middle}.custom-radio .custom-control-input:checked~.custom-control-label::after{content:"radio_button_checked"}.custom-switch{padding-left:3.75rem}.custom-switch .custom-control-label{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:background-color;transition-property:background-color;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1)}@media (min-width:576px){.custom-switch .custom-control-label{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.custom-switch .custom-control-label{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.custom-switch .custom-control-label{-webkit-transition:none;transition:none}}.custom-switch .custom-control-label::after{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:background-color,-webkit-transform;transition-property:background-color,-webkit-transform;transition-property:background-color,transform;transition-property:background-color,transform,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:#fafafa;border-radius:50%;-webkit-box-shadow:0 1px 5px 0 rgba(0,0,0,.54);box-shadow:0 1px 5px 0 rgba(0,0,0,.54);content:'';display:block;height:1.5rem;position:absolute;width:1.5rem}@media (min-width:576px){.custom-switch .custom-control-label::after{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.custom-switch .custom-control-label::after{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{-webkit-transition:none;transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after,.custom-switch .custom-control-input:checked~.custom-control-label::before{-webkit-transform:translateX(1.5rem);transform:translateX(1.5rem)}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#f07206}.custom-switch .custom-control-input:checked~.custom-control-track{background-color:rgba(240,114,6,.5)}.custom-switch .custom-control-input:disabled~.custom-control-label::after{background-color:#bdbdbd}.custom-switch .custom-control-input:disabled~.custom-control-track{background-color:rgba(0,0,0,.12)}.custom-switch .custom-control-track{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:background-color;transition-property:background-color;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);background-clip:content-box;background-color:rgba(0,0,0,.38);border:.25rem solid transparent;border-radius:1rem;content:'';display:block;height:1.5rem;position:absolute;top:-.125rem;left:0;width:3rem}@media (min-width:576px){.custom-switch .custom-control-track{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.custom-switch .custom-control-track{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.custom-switch .custom-control-track{-webkit-transition:none;transition:none}}.custom-range{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;padding-left:0;width:100%}.custom-range:active::-moz-range-track,.custom-range:focus::-moz-range-track{background-color:rgba(0,0,0,.38)}.custom-range:active::-ms-fill-upper,.custom-range:focus::-ms-fill-upper{background-color:rgba(0,0,0,.38)}.custom-range:active::-webkit-slider-runnable-track,.custom-range:focus::-webkit-slider-runnable-track{background-color:rgba(0,0,0,.38)}.custom-range:focus{outline:0}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 .75rem rgba(240,114,6,.12)}.custom-range:focus::-ms-range-thumb{box-shadow:0 0 0 .75rem rgba(240,114,6,.12)}.custom-range:focus::-webkit-slider-thumb{-webkit-box-shadow:0 0 0 .75rem rgba(240,114,6,.12);box-shadow:0 0 0 .75rem rgba(240,114,6,.12)}.custom-range::-moz-focus-outer{border:0}.custom-range::-moz-range-progress{background-color:#f07206}.custom-range::-moz-range-thumb{transition-duration:.3s;-webkit-transition-property:height,width,-webkit-box-shadow;transition-property:height,width,-webkit-box-shadow;transition-property:box-shadow,height,width;transition-property:box-shadow,height,width,-webkit-box-shadow;transition-timing-function:cubic-bezier(.4,0,.2,1);-moz-appearance:none;appearance:none;background-color:#f07206;border:0;border-radius:50%;height:.75rem;width:.75rem}@media (min-width:576px){.custom-range::-moz-range-thumb{transition-duration:.39s}}@media (min-width:992px){.custom-range::-moz-range-thumb{transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-webkit-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{box-shadow:none;height:1.5rem;width:1.5rem}.custom-range::-moz-range-thumb:focus{outline:0}.custom-range::-moz-range-track{transition-duration:.3s;-webkit-transition-property:background-color;transition-property:background-color;transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:rgba(0,0,0,.26);border-color:transparent;border-radius:0;color:transparent;cursor:pointer;height:.125rem;width:100%}@media (min-width:576px){.custom-range::-moz-range-track{transition-duration:.39s}}@media (min-width:992px){.custom-range::-moz-range-track{transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.custom-range::-moz-range-track{-webkit-transition:none;transition:none}}.custom-range::-ms-fill-lower{background-color:#f07206;height:.125rem;margin-bottom:.125rem;margin-left:.375rem}.custom-range::-ms-fill-upper{background-color:rgba(0,0,0,.26);height:.125rem;margin-right:.375rem;margin-bottom:.125rem}.custom-range::-ms-thumb{transition-duration:.3s;-webkit-transition-property:-webkit-box-shadow;transition-property:-webkit-box-shadow;transition-property:box-shadow;transition-property:box-shadow,-webkit-box-shadow;transition-timing-function:cubic-bezier(.4,0,.2,1);appearance:none;background-color:#f07206;border:0;border-radius:50%;height:.75rem;margin-right:.375rem;margin-left:.375rem;width:.75rem}@media (min-width:576px){.custom-range::-ms-thumb{transition-duration:.39s}}@media (min-width:992px){.custom-range::-ms-thumb{transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-webkit-transition:none;transition:none}}.custom-range::-ms-thumb:active{box-shadow:0 0 0 .375rem #f07206}.custom-range::-ms-thumb:focus{outline:0}.custom-range::-ms-track{transition-duration:.3s;-webkit-transition-property:background-color;transition-property:background-color;transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:transparent;border-color:transparent;border-width:.875rem 0;color:transparent;cursor:pointer;height:.125rem;width:100%}@media (min-width:576px){.custom-range::-ms-track{transition-duration:.39s}}@media (min-width:992px){.custom-range::-ms-track{transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.custom-range::-ms-track{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-runnable-track{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:background-color;transition-property:background-color;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:rgba(0,0,0,.26);border-color:transparent;border-radius:0;color:transparent;cursor:pointer;height:.125rem;width:100%}@media (min-width:576px){.custom-range::-webkit-slider-runnable-track{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.custom-range::-webkit-slider-runnable-track{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-runnable-track{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:-webkit-box-shadow;transition-property:-webkit-box-shadow;transition-property:box-shadow;transition-property:box-shadow,-webkit-box-shadow;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-appearance:none;appearance:none;background-color:#f07206;border:0;border-radius:50%;height:.75rem;margin-top:-.3125rem;width:.75rem}@media (min-width:576px){.custom-range::-webkit-slider-thumb{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.custom-range::-webkit-slider-thumb{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{-webkit-box-shadow:0 0 0 .375rem #f07206;box-shadow:0 0 0 .375rem #f07206}.custom-range::-webkit-slider-thumb:focus{outline:0}.snackbar{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#323232;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:.875rem;line-height:1.42857;opacity:0;padding:.875rem 1.5rem;position:fixed;bottom:0;left:0;-webkit-transform:translateY(100%);transform:translateY(100%);-webkit-transition:opacity 0s 195ms,-webkit-transform 195ms cubic-bezier(.4,0,1,1);transition:opacity 0s 195ms,-webkit-transform 195ms cubic-bezier(.4,0,1,1);transition:opacity 0s 195ms,transform 195ms cubic-bezier(.4,0,1,1);transition:opacity 0s 195ms,transform 195ms cubic-bezier(.4,0,1,1),-webkit-transform 195ms cubic-bezier(.4,0,1,1);width:100%;z-index:60}@media (min-width:576px){.snackbar{border-radius:2px;max-width:35.5rem;min-width:18rem;left:50%;-webkit-transform:translate(-50%,100%);transform:translate(-50%,100%);width:auto}}@media (min-width:576px){.snackbar{-webkit-transition:opacity 0s .2535s,-webkit-transform .2535s cubic-bezier(.4,0,1,1);transition:opacity 0s .2535s,-webkit-transform .2535s cubic-bezier(.4,0,1,1);transition:opacity 0s .2535s,transform .2535s cubic-bezier(.4,0,1,1);transition:opacity 0s .2535s,transform .2535s cubic-bezier(.4,0,1,1),-webkit-transform .2535s cubic-bezier(.4,0,1,1)}}@media (min-width:992px){.snackbar{-webkit-transition:opacity 0s .13s,-webkit-transform .13s cubic-bezier(.4,0,1,1);transition:opacity 0s .13s,-webkit-transform .13s cubic-bezier(.4,0,1,1);transition:opacity 0s .13s,transform .13s cubic-bezier(.4,0,1,1);transition:opacity 0s .13s,transform .13s cubic-bezier(.4,0,1,1),-webkit-transform .13s cubic-bezier(.4,0,1,1)}}@media screen and (prefers-reduced-motion:reduce){.snackbar{-webkit-transition:none;transition:none}}.snackbar.show{-webkit-transition-duration:225ms;transition-duration:225ms;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(0,0,.2,1);transition-timing-function:cubic-bezier(0,0,.2,1);opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}@media (min-width:576px){.snackbar.show{-webkit-transition-duration:.2925s;transition-duration:.2925s}}@media (min-width:992px){.snackbar.show{-webkit-transition-duration:.15s;transition-duration:.15s}}@media screen and (prefers-reduced-motion:reduce){.snackbar.show{-webkit-transition:none;transition:none}}@media (min-width:576px){.snackbar.show{-webkit-transform:translate(-50%,0);transform:translate(-50%,0)}}.snackbar-body{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-right:auto;max-height:100%;min-width:0}.snackbar-btn{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:background-color,background-image;transition-property:background-color,background-image;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:transparent;background-image:none;border:0;color:#f07206;cursor:pointer;display:block;-ms-flex-negative:0;flex-shrink:0;font-size:inherit;font-weight:500;line-height:inherit;margin-left:1.5rem;padding:0;text-transform:uppercase;white-space:nowrap}@media (min-width:576px){.snackbar-btn{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.snackbar-btn{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.snackbar-btn{-webkit-transition:none;transition:none}}.snackbar-btn:focus,.snackbar-btn:hover{color:#fa8d2f;text-decoration:none}@media (min-width:576px){.snackbar-btn{margin-left:3rem}}.snackbar-btn:focus{outline:0}@media (min-width:576px){.snackbar-left,.snackbar-right{-webkit-transform:translateY(100%);transform:translateY(100%)}.snackbar-left.show,.snackbar-right.show{-webkit-transform:translateY(-1.5rem);transform:translateY(-1.5rem)}}@media (min-width:576px){.snackbar-left{left:1.5rem}}@media (min-width:576px){.snackbar-right{right:1.5rem;left:auto}}.snackbar-multi-line{height:5rem;padding-top:1.25rem;padding-bottom:1.25rem}.snackbar-multi-line .snackbar-body{white-space:normal}.stepper{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-negative:0;flex-shrink:0;overflow:hidden;padding:1.5rem 1.5rem;position:relative}.stepper::after,.stepper::before{border-top:1px solid #bdbdbd;content:'';display:block;position:absolute}.stepper:first-child::before{display:none}.stepper:last-child::after{display:none}.stepper-horiz{background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;overflow-x:auto;overflow-y:hidden;position:relative}.stepper-horiz::before{border-top:1px solid #bdbdbd;content:'';display:block;position:absolute;top:50%;right:1.5rem;left:1.5rem}.stepper-horiz .stepper::after,.stepper-horiz .stepper::before{border-top:1px solid #bdbdbd;top:50%;width:1rem}.stepper-horiz .stepper::after{right:0}.stepper-horiz .stepper::before{left:0}.stepper-vert{background-color:#fff;position:relative}.stepper-vert .stepper::after,.stepper-vert .stepper::before{border-left:1px solid #bdbdbd;height:1rem;left:2.25rem}.stepper-vert .stepper::after{bottom:0}.stepper-vert .stepper::before{top:0}.stepper-icon{background-color:rgba(0,0,0,.38);border-radius:50%;color:#fff;font-size:.75rem;font-weight:400;height:1.5rem;line-height:1.5rem;margin-right:.5rem;position:relative;text-align:center;vertical-align:middle;width:1.5rem}.stepper.active .stepper-icon,.stepper.done .stepper-icon{background-color:#f07206;color:#fff}.stepper-icon .material-icons{font-size:1.333em}.stepper-text{color:rgba(0,0,0,.38);font-size:.875rem;font-weight:400;position:relative}.stepper.active .stepper-text,.stepper.done .stepper-text{color:rgba(0,0,0,.87)}.stepper.active .stepper-text{font-weight:bolder}.nav-tabs{-webkit-box-shadow:inset 0 -2px 0 -1px rgba(0,0,0,.12);box-shadow:inset 0 -2px 0 -1px rgba(0,0,0,.12)}.nav-tabs.border-0,.nav-tabs.border-bottom-0{-webkit-box-shadow:none;box-shadow:none}.nav-tabs .nav-link{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:background-color,color,opacity;transition-property:background-color,color,opacity;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);color:rgba(0,0,0,.87);font-size:.875rem;font-weight:500;line-height:1;min-height:3rem;opacity:.7;padding:1.0625rem .75rem;position:relative;text-transform:uppercase}@media (min-width:576px){.nav-tabs .nav-link{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.nav-tabs .nav-link{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.nav-tabs .nav-link{-webkit-transition:none;transition:none}}.nav-tabs .nav-link:active,.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{background-color:rgba(0,0,0,.12)}.nav-tabs .nav-link.active,.nav-tabs .nav-link:active{opacity:1}.nav-tabs .nav-link.active{color:#f07206}.nav-tabs .nav-link.active::before{opacity:1}.nav-tabs .nav-link.disabled{background-color:transparent;color:rgba(0,0,0,.38);opacity:1}.nav-tabs .nav-link::before{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:#f07206;content:'';display:block;height:.125rem;opacity:0;position:absolute;right:0;bottom:0;left:0}@media (min-width:576px){.nav-tabs .nav-link::before{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.nav-tabs .nav-link::before{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.nav-tabs .nav-link::before{-webkit-transition:none;transition:none}}.nav-tabs .nav-item.show .nav-link{background-color:rgba(0,0,0,.12);opacity:1}.nav-tabs-material{position:relative}.nav-tabs-material.animate .nav-link::before{opacity:0}.nav-tabs-material.animate .nav-tabs-indicator{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:left,right;transition-property:left,right;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1)}@media (min-width:576px){.nav-tabs-material.animate .nav-tabs-indicator{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.nav-tabs-material.animate .nav-tabs-indicator{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.nav-tabs-material.animate .nav-tabs-indicator{-webkit-transition:none;transition:none}}.nav-tabs-material .nav-link::before{-webkit-transition:none;transition:none}.nav-tabs-material .nav-tabs-indicator{background-color:#f07206;display:none;height:.125rem;position:absolute;bottom:0}.nav-tabs-material .nav-tabs-indicator.show{display:block}.nav-tabs-scrollable .nav-tabs-material .nav-tabs-indicator{bottom:3rem}.nav-tabs-scrollable{-webkit-box-shadow:inset 0 -2px 0 -1px rgba(0,0,0,.12);box-shadow:inset 0 -2px 0 -1px rgba(0,0,0,.12);height:3rem;overflow:hidden}.nav-tabs-scrollable .nav-tabs{-webkit-box-shadow:none;box-shadow:none;-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto;overflow-y:hidden;padding-bottom:3rem}.nav-tabs-scrollable .nav-tabs::-webkit-scrollbar{display:none}.custom-select,.form-control,.form-control-file,.wpcf7 .wpcf7-validation-errors,.wpcf7 input[type=color],.wpcf7 input[type=date],.wpcf7 input[type=datetime-local],.wpcf7 input[type=datetime],.wpcf7 input[type=email],.wpcf7 input[type=file],.wpcf7 input[type=month],.wpcf7 input[type=number],.wpcf7 input[type=range],.wpcf7 input[type=search],.wpcf7 input[type=submit],.wpcf7 input[type=tel],.wpcf7 input[type=text],.wpcf7 input[type=time],.wpcf7 input[type=url],.wpcf7 input[type=week],.wpcf7 select,.wpcf7 textarea{background-clip:padding-box;background-color:transparent;border-color:rgba(0,0,0,.42);border-radius:0;border-style:solid;border-width:0 0 1px;-webkit-box-shadow:none;box-shadow:none;color:rgba(0,0,0,.87);display:block;font-size:1rem;line-height:1.5;padding:.375rem 0 calc(.375rem - 1px);width:100%}.custom-select:hover,.form-control-file:hover,.form-control:hover,.wpcf7 .wpcf7-validation-errors:hover,.wpcf7 input:hover[type=color],.wpcf7 input:hover[type=date],.wpcf7 input:hover[type=datetime-local],.wpcf7 input:hover[type=datetime],.wpcf7 input:hover[type=email],.wpcf7 input:hover[type=file],.wpcf7 input:hover[type=month],.wpcf7 input:hover[type=number],.wpcf7 input:hover[type=range],.wpcf7 input:hover[type=search],.wpcf7 input:hover[type=submit],.wpcf7 input:hover[type=tel],.wpcf7 input:hover[type=text],.wpcf7 input:hover[type=time],.wpcf7 input:hover[type=url],.wpcf7 input:hover[type=week],.wpcf7 select:hover,.wpcf7 textarea:hover{border-color:rgba(0,0,0,.87);-webkit-box-shadow:inset 0 -2px 0 -1px rgba(0,0,0,.87);box-shadow:inset 0 -2px 0 -1px rgba(0,0,0,.87)}.custom-select::-ms-expand,.form-control-file::-ms-expand,.form-control::-ms-expand,.wpcf7 .wpcf7-validation-errors::-ms-expand,.wpcf7 input[type=color]::-ms-expand,.wpcf7 input[type=date]::-ms-expand,.wpcf7 input[type=datetime-local]::-ms-expand,.wpcf7 input[type=datetime]::-ms-expand,.wpcf7 input[type=email]::-ms-expand,.wpcf7 input[type=file]::-ms-expand,.wpcf7 input[type=month]::-ms-expand,.wpcf7 input[type=number]::-ms-expand,.wpcf7 input[type=range]::-ms-expand,.wpcf7 input[type=search]::-ms-expand,.wpcf7 input[type=submit]::-ms-expand,.wpcf7 input[type=tel]::-ms-expand,.wpcf7 input[type=text]::-ms-expand,.wpcf7 input[type=time]::-ms-expand,.wpcf7 input[type=url]::-ms-expand,.wpcf7 input[type=week]::-ms-expand,.wpcf7 select::-ms-expand,.wpcf7 textarea::-ms-expand{background-color:transparent;border:0}.custom-select::-webkit-input-placeholder,.form-control-file::-webkit-input-placeholder,.form-control::-webkit-input-placeholder,.wpcf7 .wpcf7-validation-errors::-webkit-input-placeholder,.wpcf7 input[type=color]::-webkit-input-placeholder,.wpcf7 input[type=date]::-webkit-input-placeholder,.wpcf7 input[type=datetime-local]::-webkit-input-placeholder,.wpcf7 input[type=datetime]::-webkit-input-placeholder,.wpcf7 input[type=email]::-webkit-input-placeholder,.wpcf7 input[type=file]::-webkit-input-placeholder,.wpcf7 input[type=month]::-webkit-input-placeholder,.wpcf7 input[type=number]::-webkit-input-placeholder,.wpcf7 input[type=range]::-webkit-input-placeholder,.wpcf7 input[type=search]::-webkit-input-placeholder,.wpcf7 input[type=submit]::-webkit-input-placeholder,.wpcf7 input[type=tel]::-webkit-input-placeholder,.wpcf7 input[type=text]::-webkit-input-placeholder,.wpcf7 input[type=time]::-webkit-input-placeholder,.wpcf7 input[type=url]::-webkit-input-placeholder,.wpcf7 input[type=week]::-webkit-input-placeholder,.wpcf7 select::-webkit-input-placeholder,.wpcf7 textarea::-webkit-input-placeholder{color:rgba(0,0,0,.38);opacity:1}.custom-select::-ms-input-placeholder,.form-control-file::-ms-input-placeholder,.form-control::-ms-input-placeholder,.wpcf7 .wpcf7-validation-errors::-ms-input-placeholder,.wpcf7 input[type=color]::-ms-input-placeholder,.wpcf7 input[type=date]::-ms-input-placeholder,.wpcf7 input[type=datetime-local]::-ms-input-placeholder,.wpcf7 input[type=datetime]::-ms-input-placeholder,.wpcf7 input[type=email]::-ms-input-placeholder,.wpcf7 input[type=file]::-ms-input-placeholder,.wpcf7 input[type=month]::-ms-input-placeholder,.wpcf7 input[type=number]::-ms-input-placeholder,.wpcf7 input[type=range]::-ms-input-placeholder,.wpcf7 input[type=search]::-ms-input-placeholder,.wpcf7 input[type=submit]::-ms-input-placeholder,.wpcf7 input[type=tel]::-ms-input-placeholder,.wpcf7 input[type=text]::-ms-input-placeholder,.wpcf7 input[type=time]::-ms-input-placeholder,.wpcf7 input[type=url]::-ms-input-placeholder,.wpcf7 input[type=week]::-ms-input-placeholder,.wpcf7 select::-ms-input-placeholder,.wpcf7 textarea::-ms-input-placeholder{color:rgba(0,0,0,.38);opacity:1}.custom-select::placeholder,.form-control-file::placeholder,.form-control::placeholder,.wpcf7 .wpcf7-validation-errors::placeholder,.wpcf7 input[type=color]::placeholder,.wpcf7 input[type=date]::placeholder,.wpcf7 input[type=datetime-local]::placeholder,.wpcf7 input[type=datetime]::placeholder,.wpcf7 input[type=email]::placeholder,.wpcf7 input[type=file]::placeholder,.wpcf7 input[type=month]::placeholder,.wpcf7 input[type=number]::placeholder,.wpcf7 input[type=range]::placeholder,.wpcf7 input[type=search]::placeholder,.wpcf7 input[type=submit]::placeholder,.wpcf7 input[type=tel]::placeholder,.wpcf7 input[type=text]::placeholder,.wpcf7 input[type=time]::placeholder,.wpcf7 input[type=url]::placeholder,.wpcf7 input[type=week]::placeholder,.wpcf7 select::placeholder,.wpcf7 textarea::placeholder{color:rgba(0,0,0,.38);opacity:1}.custom-select:disabled,.custom-select[readonly],.form-control-file:disabled,.form-control-file[readonly],.form-control:disabled,.form-control[readonly],.wpcf7 .wpcf7-validation-errors:disabled,.wpcf7 .wpcf7-validation-errors[readonly],.wpcf7 input:disabled[type=color],.wpcf7 input:disabled[type=date],.wpcf7 input:disabled[type=datetime-local],.wpcf7 input:disabled[type=datetime],.wpcf7 input:disabled[type=email],.wpcf7 input:disabled[type=file],.wpcf7 input:disabled[type=month],.wpcf7 input:disabled[type=number],.wpcf7 input:disabled[type=range],.wpcf7 input:disabled[type=search],.wpcf7 input:disabled[type=submit],.wpcf7 input:disabled[type=tel],.wpcf7 input:disabled[type=text],.wpcf7 input:disabled[type=time],.wpcf7 input:disabled[type=url],.wpcf7 input:disabled[type=week],.wpcf7 input[readonly][type=color],.wpcf7 input[readonly][type=date],.wpcf7 input[readonly][type=datetime-local],.wpcf7 input[readonly][type=datetime],.wpcf7 input[readonly][type=email],.wpcf7 input[readonly][type=file],.wpcf7 input[readonly][type=month],.wpcf7 input[readonly][type=number],.wpcf7 input[readonly][type=range],.wpcf7 input[readonly][type=search],.wpcf7 input[readonly][type=submit],.wpcf7 input[readonly][type=tel],.wpcf7 input[readonly][type=text],.wpcf7 input[readonly][type=time],.wpcf7 input[readonly][type=url],.wpcf7 input[readonly][type=week],.wpcf7 select:disabled,.wpcf7 select[readonly],.wpcf7 textarea:disabled,.wpcf7 textarea[readonly]{border-style:dotted;color:rgba(0,0,0,.38);opacity:1}.custom-select:disabled:focus,.custom-select:disabled:hover,.custom-select[readonly]:focus,.custom-select[readonly]:hover,.form-control-file:disabled:focus,.form-control-file:disabled:hover,.form-control-file[readonly]:focus,.form-control-file[readonly]:hover,.form-control:disabled:focus,.form-control:disabled:hover,.form-control[readonly]:focus,.form-control[readonly]:hover,.wpcf7 .wpcf7-validation-errors:disabled:focus,.wpcf7 .wpcf7-validation-errors:disabled:hover,.wpcf7 .wpcf7-validation-errors[readonly]:focus,.wpcf7 .wpcf7-validation-errors[readonly]:hover,.wpcf7 input:disabled:focus[type=color],.wpcf7 input:disabled:focus[type=date],.wpcf7 input:disabled:focus[type=datetime-local],.wpcf7 input:disabled:focus[type=datetime],.wpcf7 input:disabled:focus[type=email],.wpcf7 input:disabled:focus[type=file],.wpcf7 input:disabled:focus[type=month],.wpcf7 input:disabled:focus[type=number],.wpcf7 input:disabled:focus[type=range],.wpcf7 input:disabled:focus[type=search],.wpcf7 input:disabled:focus[type=submit],.wpcf7 input:disabled:focus[type=tel],.wpcf7 input:disabled:focus[type=text],.wpcf7 input:disabled:focus[type=time],.wpcf7 input:disabled:focus[type=url],.wpcf7 input:disabled:focus[type=week],.wpcf7 input:disabled:hover[type=color],.wpcf7 input:disabled:hover[type=date],.wpcf7 input:disabled:hover[type=datetime-local],.wpcf7 input:disabled:hover[type=datetime],.wpcf7 input:disabled:hover[type=email],.wpcf7 input:disabled:hover[type=file],.wpcf7 input:disabled:hover[type=month],.wpcf7 input:disabled:hover[type=number],.wpcf7 input:disabled:hover[type=range],.wpcf7 input:disabled:hover[type=search],.wpcf7 input:disabled:hover[type=submit],.wpcf7 input:disabled:hover[type=tel],.wpcf7 input:disabled:hover[type=text],.wpcf7 input:disabled:hover[type=time],.wpcf7 input:disabled:hover[type=url],.wpcf7 input:disabled:hover[type=week],.wpcf7 input[readonly]:focus[type=color],.wpcf7 input[readonly]:focus[type=date],.wpcf7 input[readonly]:focus[type=datetime-local],.wpcf7 input[readonly]:focus[type=datetime],.wpcf7 input[readonly]:focus[type=email],.wpcf7 input[readonly]:focus[type=file],.wpcf7 input[readonly]:focus[type=month],.wpcf7 input[readonly]:focus[type=number],.wpcf7 input[readonly]:focus[type=range],.wpcf7 input[readonly]:focus[type=search],.wpcf7 input[readonly]:focus[type=submit],.wpcf7 input[readonly]:focus[type=tel],.wpcf7 input[readonly]:focus[type=text],.wpcf7 input[readonly]:focus[type=time],.wpcf7 input[readonly]:focus[type=url],.wpcf7 input[readonly]:focus[type=week],.wpcf7 input[readonly]:hover[type=color],.wpcf7 input[readonly]:hover[type=date],.wpcf7 input[readonly]:hover[type=datetime-local],.wpcf7 input[readonly]:hover[type=datetime],.wpcf7 input[readonly]:hover[type=email],.wpcf7 input[readonly]:hover[type=file],.wpcf7 input[readonly]:hover[type=month],.wpcf7 input[readonly]:hover[type=number],.wpcf7 input[readonly]:hover[type=range],.wpcf7 input[readonly]:hover[type=search],.wpcf7 input[readonly]:hover[type=submit],.wpcf7 input[readonly]:hover[type=tel],.wpcf7 input[readonly]:hover[type=text],.wpcf7 input[readonly]:hover[type=time],.wpcf7 input[readonly]:hover[type=url],.wpcf7 input[readonly]:hover[type=week],.wpcf7 select:disabled:focus,.wpcf7 select:disabled:hover,.wpcf7 select[readonly]:focus,.wpcf7 select[readonly]:hover,.wpcf7 textarea:disabled:focus,.wpcf7 textarea:disabled:hover,.wpcf7 textarea[readonly]:focus,.wpcf7 textarea[readonly]:hover{border-color:rgba(0,0,0,.42);-webkit-box-shadow:none;box-shadow:none}.custom-select:focus,.form-control-file:focus,.form-control:focus,.wpcf7 .wpcf7-validation-errors:focus,.wpcf7 input:focus[type=color],.wpcf7 input:focus[type=date],.wpcf7 input:focus[type=datetime-local],.wpcf7 input:focus[type=datetime],.wpcf7 input:focus[type=email],.wpcf7 input:focus[type=file],.wpcf7 input:focus[type=month],.wpcf7 input:focus[type=number],.wpcf7 input:focus[type=range],.wpcf7 input:focus[type=search],.wpcf7 input:focus[type=submit],.wpcf7 input:focus[type=tel],.wpcf7 input:focus[type=text],.wpcf7 input:focus[type=time],.wpcf7 input:focus[type=url],.wpcf7 input:focus[type=week],.wpcf7 select:focus,.wpcf7 textarea:focus{border-color:#f07206;-webkit-box-shadow:inset 0 -2px 0 -1px #f07206;box-shadow:inset 0 -2px 0 -1px #f07206;outline:0}.custom-select:invalid:required,.form-control-file:invalid:required,.form-control:invalid:required,.wpcf7 .wpcf7-validation-errors:invalid:required,.wpcf7 input:invalid:required[type=color],.wpcf7 input:invalid:required[type=date],.wpcf7 input:invalid:required[type=datetime-local],.wpcf7 input:invalid:required[type=datetime],.wpcf7 input:invalid:required[type=email],.wpcf7 input:invalid:required[type=file],.wpcf7 input:invalid:required[type=month],.wpcf7 input:invalid:required[type=number],.wpcf7 input:invalid:required[type=range],.wpcf7 input:invalid:required[type=search],.wpcf7 input:invalid:required[type=submit],.wpcf7 input:invalid:required[type=tel],.wpcf7 input:invalid:required[type=text],.wpcf7 input:invalid:required[type=time],.wpcf7 input:invalid:required[type=url],.wpcf7 input:invalid:required[type=week],.wpcf7 select:invalid:required,.wpcf7 textarea:invalid:required{outline:0}.form-control[type=file],.wpcf7 .wpcf7-validation-errors[type=file],.wpcf7 input[type=file][type=color],.wpcf7 input[type=file][type=date],.wpcf7 input[type=file][type=datetime-local],.wpcf7 input[type=file][type=datetime],.wpcf7 input[type=file][type=email],.wpcf7 input[type=file][type=file],.wpcf7 input[type=file][type=month],.wpcf7 input[type=file][type=number],.wpcf7 input[type=file][type=range],.wpcf7 input[type=file][type=search],.wpcf7 input[type=file][type=submit],.wpcf7 input[type=file][type=tel],.wpcf7 input[type=file][type=text],.wpcf7 input[type=file][type=time],.wpcf7 input[type=file][type=url],.wpcf7 input[type=file][type=week],.wpcf7 select[type=file],.wpcf7 textarea[type=file]{max-height:2.25rem}.form-control-lg{font-size:2.125rem;line-height:1.17647;padding:.625rem 0 calc(.625rem - 1px)}.form-control-lg[type=file]{max-height:3.75rem}.form-control-sm{font-size:.8125rem;line-height:1.53846;padding:.375rem 0 calc(.375rem - 1px)}.form-control-sm[type=file]{max-height:2rem}.custom-select,.wpcf7 select,.wpcf7 select.wpcf7-validation-errors,select.form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}@-moz-document url-prefix(''){.custom-select,.wpcf7 select,.wpcf7 select.wpcf7-validation-errors,select.form-control{background-image:url('data:image/svg+xml;charset=utf8,%3Csvg fill="%23000" fill-opacity="0.54" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M7 10l5 5 5-5z"/%3E%3Cpath d="M0 0h24v24H0z" fill="none"/%3E%3C/svg%3E');background-position:100% 50%;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:1.5em}.custom-select[multiple],.custom-select[size]:not([size='1']),.wpcf7 select[multiple],.wpcf7 select[size]:not([size='1']),select.form-control[multiple],select.form-control[size]:not([size='1']){background-image:none}}@media (-webkit-min-device-pixel-ratio:0){.custom-select,.wpcf7 select,.wpcf7 select.wpcf7-validation-errors,select.form-control{background-image:url('data:image/svg+xml;charset=utf8,%3Csvg fill="%23000" fill-opacity="0.54" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M7 10l5 5 5-5z"/%3E%3Cpath d="M0 0h24v24H0z" fill="none"/%3E%3C/svg%3E');background-position:100% 50%;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:1.5em}.custom-select[multiple],.custom-select[size]:not([size='1']),.wpcf7 select[multiple],.wpcf7 select[size]:not([size='1']),select.form-control[multiple],select.form-control[size]:not([size='1']){background-image:none}}.custom-select[multiple],.custom-select[size]:not([size='1']),.wpcf7 select[multiple],.wpcf7 select[size]:not([size='1']),.wpcf7 textarea:not([rows='1']),select.form-control[multiple],select.form-control[size]:not([size='1']),textarea.form-control:not([rows='1']){border-radius:4px;border-width:1px;min-height:3.5rem;padding:calc(1rem - 1px) 1rem}.custom-select:hover[multiple],.custom-select:hover[size]:not([size='1']),.wpcf7 select:hover[multiple],.wpcf7 select:hover[size]:not([size='1']),.wpcf7 textarea:hover:not([rows='1']),select.form-control:hover[multiple],select.form-control:hover[size]:not([size='1']),textarea.form-control:hover:not([rows='1']){-webkit-box-shadow:inset 2px 2px 0 -1px rgba(0,0,0,.87),inset -2px -2px 0 -1px rgba(0,0,0,.87);box-shadow:inset 2px 2px 0 -1px rgba(0,0,0,.87),inset -2px -2px 0 -1px rgba(0,0,0,.87)}.custom-select:focus[multiple],.custom-select:focus[size]:not([size='1']),.wpcf7 select:focus[multiple],.wpcf7 select:focus[size]:not([size='1']),.wpcf7 textarea:focus:not([rows='1']),select.form-control:focus[multiple],select.form-control:focus[size]:not([size='1']),textarea.form-control:focus:not([rows='1']){-webkit-box-shadow:inset 2px 2px 0 -1px #f07206,inset -2px -2px 0 -1px #f07206;box-shadow:inset 2px 2px 0 -1px #f07206,inset -2px -2px 0 -1px #f07206}select.form-control-lg[multiple],select.form-control-lg[size]:not([size='1']){padding:calc(.875rem - 1px) 1rem}select.form-control-sm[multiple],select.form-control-sm[size]:not([size='1']){padding:calc(.75rem - 1px) .75rem}.wpcf7 textarea,.wpcf7 textarea.wpcf7-validation-errors,textarea.form-control{min-height:2.25rem}textarea.form-control-lg{min-height:3.75rem}textarea.form-control-lg:not([rows='1']){min-height:4.25rem;padding:calc(.875rem - 1px) 1rem}textarea.form-control-sm{min-height:2rem}textarea.form-control-sm:not([rows='1']){min-height:2.75rem;padding:calc(.75rem - 1px) .75rem}.custom-file{display:inline-block;height:2.25rem;margin-bottom:0;position:relative;width:100%}.custom-file-input{height:2.25rem;margin:0;opacity:0;position:relative;width:100%;z-index:1}.custom-file-input:focus~.custom-file-label,.custom-file-input:hover~.custom-file-label{border-bottom-color:#f07206;-webkit-box-shadow:inset 0 -2px 0 -1px #f07206;box-shadow:inset 0 -2px 0 -1px #f07206}.custom-file-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:border-color,-webkit-box-shadow;transition-property:border-color,-webkit-box-shadow;transition-property:border-color,box-shadow;transition-property:border-color,box-shadow,-webkit-box-shadow;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);border-bottom:1px solid rgba(0,0,0,.42);color:rgba(0,0,0,.38);font-size:1rem;height:2.25rem;line-height:1.5;padding:.375rem 2.25rem calc(.375rem - 1px) 0;position:absolute;top:0;right:0;left:0}@media (min-width:576px){.custom-file-label{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.custom-file-label{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.custom-file-label{-webkit-transition:none;transition:none}}.custom-file-label::after{font-size:1.71429em;line-height:.58333em;vertical-align:-.3022em;font-family:'Material Icons';-webkit-font-feature-settings:'liga';font-feature-settings:'liga';-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;letter-spacing:normal;text-rendering:optimizeLegibility;text-transform:none;white-space:nowrap;word-wrap:normal;content:"attachment";position:absolute;top:50%;right:0;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.custom-select-lg{font-size:2.125rem;line-height:1.17647;padding:.625rem 1.5em calc(.625rem - 1px) 0}.custom-select-lg[multiple],.custom-select-lg[size]:not([size='1']){padding:calc(.875rem - 1px) 1rem}.custom-select-sm{font-size:.8125rem;line-height:1.53846;padding:.375rem 1.5em calc(.375rem - 1px) 0}.custom-select-sm[multiple],.custom-select-sm[size]:not([size='1']){padding:calc(.75rem - 1px) .75rem}.form-control-file{max-height:2.25rem}.form-control-range{display:block;width:100%}.invalid-feedback{font-size:.75rem;font-weight:400;letter-spacing:0;line-height:1.5;color:#f44336;display:none;margin-top:.5rem;width:100%}.form-control-lg+.invalid-feedback{margin-top:.75rem}.form-control-sm+.invalid-feedback{margin-top:.25rem}.invalid-tooltip{border-radius:2px;background-color:#f44336;color:#fff;display:none;font-size:.875rem;line-height:1.42857;margin-top:.5rem;max-width:100%;opacity:.9;padding:.375rem 1rem;position:absolute;top:100%;text-align:center;word-break:break-word;z-index:240}@media (min-width:768px){.invalid-tooltip{font-size:.625rem;padding:.24107rem .5rem}}.form-control-lg+.invalid-tooltip{margin-top:.75rem}.form-control-sm+.invalid-tooltip{margin-top:.25rem}.custom-control-input.is-invalid~.custom-control-label,.custom-control-input.is-invalid~.custom-control-label::after,.was-validated .custom-control-input:invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label::after{color:#f44336}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{background-color:#f44336}.custom-control-input.is-invalid~.custom-control-track,.was-validated .custom-control-input:invalid~.custom-control-track{background-color:rgba(244,67,54,.5)}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.custom-file-input.is-invalid:hover~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:hover~.custom-file-label{border-bottom-color:#f44336;-webkit-box-shadow:inset 0 -2px 0 -1px #f44336;box-shadow:inset 0 -2px 0 -1px #f44336}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-bottom-color:#f44336}.custom-file-input.is-invalid~.custom-file-label:hover,.was-validated .custom-file-input:invalid~.custom-file-label:hover{border-bottom-color:#f44336;-webkit-box-shadow:inset 0 -2px 0 -1px #f44336;box-shadow:inset 0 -2px 0 -1px #f44336}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-switch .custom-control-input.is-invalid~.custom-control-label::after,.was-validated .custom-switch .custom-control-input:invalid~.custom-control-label::after{background-color:#f44336}.form-check-input.is-invalid+.form-check-label,.was-validated .form-check-input:invalid+.form-check-label{color:#f44336}.is-invalid.custom-select,.is-invalid.form-control,.is-invalid.form-control-file,.was-validated .custom-select:invalid,.was-validated .form-control-file:invalid,.was-validated .form-control:invalid,.was-validated .wpcf7 .wpcf7-validation-errors:invalid,.was-validated .wpcf7 input:invalid[type=color],.was-validated .wpcf7 input:invalid[type=date],.was-validated .wpcf7 input:invalid[type=datetime-local],.was-validated .wpcf7 input:invalid[type=datetime],.was-validated .wpcf7 input:invalid[type=email],.was-validated .wpcf7 input:invalid[type=file],.was-validated .wpcf7 input:invalid[type=month],.was-validated .wpcf7 input:invalid[type=number],.was-validated .wpcf7 input:invalid[type=range],.was-validated .wpcf7 input:invalid[type=search],.was-validated .wpcf7 input:invalid[type=submit],.was-validated .wpcf7 input:invalid[type=tel],.was-validated .wpcf7 input:invalid[type=text],.was-validated .wpcf7 input:invalid[type=time],.was-validated .wpcf7 input:invalid[type=url],.was-validated .wpcf7 input:invalid[type=week],.was-validated .wpcf7 select:invalid,.was-validated .wpcf7 textarea:invalid,.wpcf7 .is-invalid.wpcf7-validation-errors,.wpcf7 .was-validated .wpcf7-validation-errors:invalid,.wpcf7 .was-validated input:invalid[type=color],.wpcf7 .was-validated input:invalid[type=date],.wpcf7 .was-validated input:invalid[type=datetime-local],.wpcf7 .was-validated input:invalid[type=datetime],.wpcf7 .was-validated input:invalid[type=email],.wpcf7 .was-validated input:invalid[type=file],.wpcf7 .was-validated input:invalid[type=month],.wpcf7 .was-validated input:invalid[type=number],.wpcf7 .was-validated input:invalid[type=range],.wpcf7 .was-validated input:invalid[type=search],.wpcf7 .was-validated input:invalid[type=submit],.wpcf7 .was-validated input:invalid[type=tel],.wpcf7 .was-validated input:invalid[type=text],.wpcf7 .was-validated input:invalid[type=time],.wpcf7 .was-validated input:invalid[type=url],.wpcf7 .was-validated input:invalid[type=week],.wpcf7 .was-validated select:invalid,.wpcf7 .was-validated textarea:invalid,.wpcf7 input.is-invalid[type=color],.wpcf7 input.is-invalid[type=date],.wpcf7 input.is-invalid[type=datetime-local],.wpcf7 input.is-invalid[type=datetime],.wpcf7 input.is-invalid[type=email],.wpcf7 input.is-invalid[type=file],.wpcf7 input.is-invalid[type=month],.wpcf7 input.is-invalid[type=number],.wpcf7 input.is-invalid[type=range],.wpcf7 input.is-invalid[type=search],.wpcf7 input.is-invalid[type=submit],.wpcf7 input.is-invalid[type=tel],.wpcf7 input.is-invalid[type=text],.wpcf7 input.is-invalid[type=time],.wpcf7 input.is-invalid[type=url],.wpcf7 input.is-invalid[type=week],.wpcf7 select.is-invalid,.wpcf7 textarea.is-invalid{border-color:#f44336}.is-invalid.custom-select:focus,.is-invalid.custom-select:hover,.is-invalid.form-control-file:focus,.is-invalid.form-control-file:hover,.is-invalid.form-control:focus,.is-invalid.form-control:hover,.was-validated .custom-select:invalid:focus,.was-validated .custom-select:invalid:hover,.was-validated .form-control-file:invalid:focus,.was-validated .form-control-file:invalid:hover,.was-validated .form-control:invalid:focus,.was-validated .form-control:invalid:hover,.was-validated .wpcf7 .wpcf7-validation-errors:invalid:focus,.was-validated .wpcf7 .wpcf7-validation-errors:invalid:hover,.was-validated .wpcf7 input:invalid:focus[type=color],.was-validated .wpcf7 input:invalid:focus[type=date],.was-validated .wpcf7 input:invalid:focus[type=datetime-local],.was-validated .wpcf7 input:invalid:focus[type=datetime],.was-validated .wpcf7 input:invalid:focus[type=email],.was-validated .wpcf7 input:invalid:focus[type=file],.was-validated .wpcf7 input:invalid:focus[type=month],.was-validated .wpcf7 input:invalid:focus[type=number],.was-validated .wpcf7 input:invalid:focus[type=range],.was-validated .wpcf7 input:invalid:focus[type=search],.was-validated .wpcf7 input:invalid:focus[type=submit],.was-validated .wpcf7 input:invalid:focus[type=tel],.was-validated .wpcf7 input:invalid:focus[type=text],.was-validated .wpcf7 input:invalid:focus[type=time],.was-validated .wpcf7 input:invalid:focus[type=url],.was-validated .wpcf7 input:invalid:focus[type=week],.was-validated .wpcf7 input:invalid:hover[type=color],.was-validated .wpcf7 input:invalid:hover[type=date],.was-validated .wpcf7 input:invalid:hover[type=datetime-local],.was-validated .wpcf7 input:invalid:hover[type=datetime],.was-validated .wpcf7 input:invalid:hover[type=email],.was-validated .wpcf7 input:invalid:hover[type=file],.was-validated .wpcf7 input:invalid:hover[type=month],.was-validated .wpcf7 input:invalid:hover[type=number],.was-validated .wpcf7 input:invalid:hover[type=range],.was-validated .wpcf7 input:invalid:hover[type=search],.was-validated .wpcf7 input:invalid:hover[type=submit],.was-validated .wpcf7 input:invalid:hover[type=tel],.was-validated .wpcf7 input:invalid:hover[type=text],.was-validated .wpcf7 input:invalid:hover[type=time],.was-validated .wpcf7 input:invalid:hover[type=url],.was-validated .wpcf7 input:invalid:hover[type=week],.was-validated .wpcf7 select:invalid:focus,.was-validated .wpcf7 select:invalid:hover,.was-validated .wpcf7 textarea:invalid:focus,.was-validated .wpcf7 textarea:invalid:hover,.wpcf7 .is-invalid.wpcf7-validation-errors:focus,.wpcf7 .is-invalid.wpcf7-validation-errors:hover,.wpcf7 .was-validated .wpcf7-validation-errors:invalid:focus,.wpcf7 .was-validated .wpcf7-validation-errors:invalid:hover,.wpcf7 .was-validated input:invalid:focus[type=color],.wpcf7 .was-validated input:invalid:focus[type=date],.wpcf7 .was-validated input:invalid:focus[type=datetime-local],.wpcf7 .was-validated input:invalid:focus[type=datetime],.wpcf7 .was-validated input:invalid:focus[type=email],.wpcf7 .was-validated input:invalid:focus[type=file],.wpcf7 .was-validated input:invalid:focus[type=month],.wpcf7 .was-validated input:invalid:focus[type=number],.wpcf7 .was-validated input:invalid:focus[type=range],.wpcf7 .was-validated input:invalid:focus[type=search],.wpcf7 .was-validated input:invalid:focus[type=submit],.wpcf7 .was-validated input:invalid:focus[type=tel],.wpcf7 .was-validated input:invalid:focus[type=text],.wpcf7 .was-validated input:invalid:focus[type=time],.wpcf7 .was-validated input:invalid:focus[type=url],.wpcf7 .was-validated input:invalid:focus[type=week],.wpcf7 .was-validated input:invalid:hover[type=color],.wpcf7 .was-validated input:invalid:hover[type=date],.wpcf7 .was-validated input:invalid:hover[type=datetime-local],.wpcf7 .was-validated input:invalid:hover[type=datetime],.wpcf7 .was-validated input:invalid:hover[type=email],.wpcf7 .was-validated input:invalid:hover[type=file],.wpcf7 .was-validated input:invalid:hover[type=month],.wpcf7 .was-validated input:invalid:hover[type=number],.wpcf7 .was-validated input:invalid:hover[type=range],.wpcf7 .was-validated input:invalid:hover[type=search],.wpcf7 .was-validated input:invalid:hover[type=submit],.wpcf7 .was-validated input:invalid:hover[type=tel],.wpcf7 .was-validated input:invalid:hover[type=text],.wpcf7 .was-validated input:invalid:hover[type=time],.wpcf7 .was-validated input:invalid:hover[type=url],.wpcf7 .was-validated input:invalid:hover[type=week],.wpcf7 .was-validated select:invalid:focus,.wpcf7 .was-validated select:invalid:hover,.wpcf7 .was-validated textarea:invalid:focus,.wpcf7 .was-validated textarea:invalid:hover,.wpcf7 input.is-invalid:focus[type=color],.wpcf7 input.is-invalid:focus[type=date],.wpcf7 input.is-invalid:focus[type=datetime-local],.wpcf7 input.is-invalid:focus[type=datetime],.wpcf7 input.is-invalid:focus[type=email],.wpcf7 input.is-invalid:focus[type=file],.wpcf7 input.is-invalid:focus[type=month],.wpcf7 input.is-invalid:focus[type=number],.wpcf7 input.is-invalid:focus[type=range],.wpcf7 input.is-invalid:focus[type=search],.wpcf7 input.is-invalid:focus[type=submit],.wpcf7 input.is-invalid:focus[type=tel],.wpcf7 input.is-invalid:focus[type=text],.wpcf7 input.is-invalid:focus[type=time],.wpcf7 input.is-invalid:focus[type=url],.wpcf7 input.is-invalid:focus[type=week],.wpcf7 input.is-invalid:hover[type=color],.wpcf7 input.is-invalid:hover[type=date],.wpcf7 input.is-invalid:hover[type=datetime-local],.wpcf7 input.is-invalid:hover[type=datetime],.wpcf7 input.is-invalid:hover[type=email],.wpcf7 input.is-invalid:hover[type=file],.wpcf7 input.is-invalid:hover[type=month],.wpcf7 input.is-invalid:hover[type=number],.wpcf7 input.is-invalid:hover[type=range],.wpcf7 input.is-invalid:hover[type=search],.wpcf7 input.is-invalid:hover[type=submit],.wpcf7 input.is-invalid:hover[type=tel],.wpcf7 input.is-invalid:hover[type=text],.wpcf7 input.is-invalid:hover[type=time],.wpcf7 input.is-invalid:hover[type=url],.wpcf7 input.is-invalid:hover[type=week],.wpcf7 select.is-invalid:focus,.wpcf7 select.is-invalid:hover,.wpcf7 textarea.is-invalid:focus,.wpcf7 textarea.is-invalid:hover{border-color:#f44336;-webkit-box-shadow:inset 0 -2px 0 -1px #f44336;box-shadow:inset 0 -2px 0 -1px #f44336}.is-invalid.custom-select~.invalid-feedback,.is-invalid.custom-select~.invalid-tooltip,.is-invalid.form-control-file~.invalid-feedback,.is-invalid.form-control-file~.invalid-tooltip,.is-invalid.form-control~.invalid-feedback,.is-invalid.form-control~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip,.was-validated .wpcf7 .wpcf7-validation-errors:invalid~.invalid-feedback,.was-validated .wpcf7 .wpcf7-validation-errors:invalid~.invalid-tooltip,.was-validated .wpcf7 input:invalid[type=color]~.invalid-feedback,.was-validated .wpcf7 input:invalid[type=color]~.invalid-tooltip,.was-validated .wpcf7 input:invalid[type=date]~.invalid-feedback,.was-validated .wpcf7 input:invalid[type=date]~.invalid-tooltip,.was-validated .wpcf7 input:invalid[type=datetime-local]~.invalid-feedback,.was-validated .wpcf7 input:invalid[type=datetime-local]~.invalid-tooltip,.was-validated .wpcf7 input:invalid[type=datetime]~.invalid-feedback,.was-validated .wpcf7 input:invalid[type=datetime]~.invalid-tooltip,.was-validated .wpcf7 input:invalid[type=email]~.invalid-feedback,.was-validated .wpcf7 input:invalid[type=email]~.invalid-tooltip,.was-validated .wpcf7 input:invalid[type=file]~.invalid-feedback,.was-validated .wpcf7 input:invalid[type=file]~.invalid-tooltip,.was-validated .wpcf7 input:invalid[type=month]~.invalid-feedback,.was-validated .wpcf7 input:invalid[type=month]~.invalid-tooltip,.was-validated .wpcf7 input:invalid[type=number]~.invalid-feedback,.was-validated .wpcf7 input:invalid[type=number]~.invalid-tooltip,.was-validated .wpcf7 input:invalid[type=range]~.invalid-feedback,.was-validated .wpcf7 input:invalid[type=range]~.invalid-tooltip,.was-validated .wpcf7 input:invalid[type=search]~.invalid-feedback,.was-validated .wpcf7 input:invalid[type=search]~.invalid-tooltip,.was-validated .wpcf7 input:invalid[type=submit]~.invalid-feedback,.was-validated .wpcf7 input:invalid[type=submit]~.invalid-tooltip,.was-validated .wpcf7 input:invalid[type=tel]~.invalid-feedback,.was-validated .wpcf7 input:invalid[type=tel]~.invalid-tooltip,.was-validated .wpcf7 input:invalid[type=text]~.invalid-feedback,.was-validated .wpcf7 input:invalid[type=text]~.invalid-tooltip,.was-validated .wpcf7 input:invalid[type=time]~.invalid-feedback,.was-validated .wpcf7 input:invalid[type=time]~.invalid-tooltip,.was-validated .wpcf7 input:invalid[type=url]~.invalid-feedback,.was-validated .wpcf7 input:invalid[type=url]~.invalid-tooltip,.was-validated .wpcf7 input:invalid[type=week]~.invalid-feedback,.was-validated .wpcf7 input:invalid[type=week]~.invalid-tooltip,.was-validated .wpcf7 select:invalid~.invalid-feedback,.was-validated .wpcf7 select:invalid~.invalid-tooltip,.was-validated .wpcf7 textarea:invalid~.invalid-feedback,.was-validated .wpcf7 textarea:invalid~.invalid-tooltip,.wpcf7 .is-invalid.wpcf7-validation-errors~.invalid-feedback,.wpcf7 .is-invalid.wpcf7-validation-errors~.invalid-tooltip,.wpcf7 .was-validated .wpcf7-validation-errors:invalid~.invalid-feedback,.wpcf7 .was-validated .wpcf7-validation-errors:invalid~.invalid-tooltip,.wpcf7 .was-validated input:invalid[type=color]~.invalid-feedback,.wpcf7 .was-validated input:invalid[type=color]~.invalid-tooltip,.wpcf7 .was-validated input:invalid[type=date]~.invalid-feedback,.wpcf7 .was-validated input:invalid[type=date]~.invalid-tooltip,.wpcf7 .was-validated input:invalid[type=datetime-local]~.invalid-feedback,.wpcf7 .was-validated input:invalid[type=datetime-local]~.invalid-tooltip,.wpcf7 .was-validated input:invalid[type=datetime]~.invalid-feedback,.wpcf7 .was-validated input:invalid[type=datetime]~.invalid-tooltip,.wpcf7 .was-validated input:invalid[type=email]~.invalid-feedback,.wpcf7 .was-validated input:invalid[type=email]~.invalid-tooltip,.wpcf7 .was-validated input:invalid[type=file]~.invalid-feedback,.wpcf7 .was-validated input:invalid[type=file]~.invalid-tooltip,.wpcf7 .was-validated input:invalid[type=month]~.invalid-feedback,.wpcf7 .was-validated input:invalid[type=month]~.invalid-tooltip,.wpcf7 .was-validated input:invalid[type=number]~.invalid-feedback,.wpcf7 .was-validated input:invalid[type=number]~.invalid-tooltip,.wpcf7 .was-validated input:invalid[type=range]~.invalid-feedback,.wpcf7 .was-validated input:invalid[type=range]~.invalid-tooltip,.wpcf7 .was-validated input:invalid[type=search]~.invalid-feedback,.wpcf7 .was-validated input:invalid[type=search]~.invalid-tooltip,.wpcf7 .was-validated input:invalid[type=submit]~.invalid-feedback,.wpcf7 .was-validated input:invalid[type=submit]~.invalid-tooltip,.wpcf7 .was-validated input:invalid[type=tel]~.invalid-feedback,.wpcf7 .was-validated input:invalid[type=tel]~.invalid-tooltip,.wpcf7 .was-validated input:invalid[type=text]~.invalid-feedback,.wpcf7 .was-validated input:invalid[type=text]~.invalid-tooltip,.wpcf7 .was-validated input:invalid[type=time]~.invalid-feedback,.wpcf7 .was-validated input:invalid[type=time]~.invalid-tooltip,.wpcf7 .was-validated input:invalid[type=url]~.invalid-feedback,.wpcf7 .was-validated input:invalid[type=url]~.invalid-tooltip,.wpcf7 .was-validated input:invalid[type=week]~.invalid-feedback,.wpcf7 .was-validated input:invalid[type=week]~.invalid-tooltip,.wpcf7 .was-validated select:invalid~.invalid-feedback,.wpcf7 .was-validated select:invalid~.invalid-tooltip,.wpcf7 .was-validated textarea:invalid~.invalid-feedback,.wpcf7 .was-validated textarea:invalid~.invalid-tooltip,.wpcf7 input.is-invalid[type=color]~.invalid-feedback,.wpcf7 input.is-invalid[type=color]~.invalid-tooltip,.wpcf7 input.is-invalid[type=date]~.invalid-feedback,.wpcf7 input.is-invalid[type=date]~.invalid-tooltip,.wpcf7 input.is-invalid[type=datetime-local]~.invalid-feedback,.wpcf7 input.is-invalid[type=datetime-local]~.invalid-tooltip,.wpcf7 input.is-invalid[type=datetime]~.invalid-feedback,.wpcf7 input.is-invalid[type=datetime]~.invalid-tooltip,.wpcf7 input.is-invalid[type=email]~.invalid-feedback,.wpcf7 input.is-invalid[type=email]~.invalid-tooltip,.wpcf7 input.is-invalid[type=file]~.invalid-feedback,.wpcf7 input.is-invalid[type=file]~.invalid-tooltip,.wpcf7 input.is-invalid[type=month]~.invalid-feedback,.wpcf7 input.is-invalid[type=month]~.invalid-tooltip,.wpcf7 input.is-invalid[type=number]~.invalid-feedback,.wpcf7 input.is-invalid[type=number]~.invalid-tooltip,.wpcf7 input.is-invalid[type=range]~.invalid-feedback,.wpcf7 input.is-invalid[type=range]~.invalid-tooltip,.wpcf7 input.is-invalid[type=search]~.invalid-feedback,.wpcf7 input.is-invalid[type=search]~.invalid-tooltip,.wpcf7 input.is-invalid[type=submit]~.invalid-feedback,.wpcf7 input.is-invalid[type=submit]~.invalid-tooltip,.wpcf7 input.is-invalid[type=tel]~.invalid-feedback,.wpcf7 input.is-invalid[type=tel]~.invalid-tooltip,.wpcf7 input.is-invalid[type=text]~.invalid-feedback,.wpcf7 input.is-invalid[type=text]~.invalid-tooltip,.wpcf7 input.is-invalid[type=time]~.invalid-feedback,.wpcf7 input.is-invalid[type=time]~.invalid-tooltip,.wpcf7 input.is-invalid[type=url]~.invalid-feedback,.wpcf7 input.is-invalid[type=url]~.invalid-tooltip,.wpcf7 input.is-invalid[type=week]~.invalid-feedback,.wpcf7 input.is-invalid[type=week]~.invalid-tooltip,.wpcf7 select.is-invalid~.invalid-feedback,.wpcf7 select.is-invalid~.invalid-tooltip,.wpcf7 textarea.is-invalid~.invalid-feedback,.wpcf7 textarea.is-invalid~.invalid-tooltip{display:block}.is-invalid.custom-select:focus[multiple],.is-invalid.custom-select:focus[size]:not([size='1']),.is-invalid.custom-select:hover[multiple],.is-invalid.custom-select:hover[size]:not([size='1']),.was-validated .custom-select:invalid:focus[multiple],.was-validated .custom-select:invalid:focus[size]:not([size='1']),.was-validated .custom-select:invalid:hover[multiple],.was-validated .custom-select:invalid:hover[size]:not([size='1']),.was-validated .wpcf7 select:invalid:focus[multiple],.was-validated .wpcf7 select:invalid:focus[size]:not([size='1']),.was-validated .wpcf7 select:invalid:hover[multiple],.was-validated .wpcf7 select:invalid:hover[size]:not([size='1']),.was-validated .wpcf7 textarea:invalid:focus:not([rows='1']),.was-validated .wpcf7 textarea:invalid:hover:not([rows='1']),.was-validated select.form-control:invalid:focus[multiple],.was-validated select.form-control:invalid:focus[size]:not([size='1']),.was-validated select.form-control:invalid:hover[multiple],.was-validated select.form-control:invalid:hover[size]:not([size='1']),.was-validated textarea.form-control:invalid:focus:not([rows='1']),.was-validated textarea.form-control:invalid:hover:not([rows='1']),.wpcf7 .was-validated select:invalid:focus[multiple],.wpcf7 .was-validated select:invalid:focus[size]:not([size='1']),.wpcf7 .was-validated select:invalid:hover[multiple],.wpcf7 .was-validated select:invalid:hover[size]:not([size='1']),.wpcf7 .was-validated textarea:invalid:focus:not([rows='1']),.wpcf7 .was-validated textarea:invalid:hover:not([rows='1']),.wpcf7 select.is-invalid:focus[multiple],.wpcf7 select.is-invalid:focus[size]:not([size='1']),.wpcf7 select.is-invalid:hover[multiple],.wpcf7 select.is-invalid:hover[size]:not([size='1']),.wpcf7 textarea.is-invalid:focus:not([rows='1']),.wpcf7 textarea.is-invalid:hover:not([rows='1']),select.is-invalid.form-control:focus[multiple],select.is-invalid.form-control:focus[size]:not([size='1']),select.is-invalid.form-control:hover[multiple],select.is-invalid.form-control:hover[size]:not([size='1']),textarea.is-invalid.form-control:focus:not([rows='1']),textarea.is-invalid.form-control:hover:not([rows='1']){-webkit-box-shadow:inset 2px 2px 0 -1px #f44336,inset -2px -2px 0 -1px #f44336;box-shadow:inset 2px 2px 0 -1px #f44336,inset -2px -2px 0 -1px #f44336}.textfield-box .is-invalid.custom-select:focus[multiple],.textfield-box .is-invalid.custom-select:focus[size]:not([size='1']),.textfield-box .is-invalid.custom-select:hover[multiple],.textfield-box .is-invalid.custom-select:hover[size]:not([size='1']),.textfield-box .wpcf7 select.is-invalid:focus[multiple],.textfield-box .wpcf7 select.is-invalid:focus[size]:not([size='1']),.textfield-box .wpcf7 select.is-invalid:hover[multiple],.textfield-box .wpcf7 select.is-invalid:hover[size]:not([size='1']),.textfield-box .wpcf7 textarea.is-invalid:focus:not([rows='1']),.textfield-box .wpcf7 textarea.is-invalid:hover:not([rows='1']),.textfield-box select.is-invalid.form-control:focus[multiple],.textfield-box select.is-invalid.form-control:focus[size]:not([size='1']),.textfield-box select.is-invalid.form-control:hover[multiple],.textfield-box select.is-invalid.form-control:hover[size]:not([size='1']),.textfield-box textarea.is-invalid.form-control:focus:not([rows='1']),.textfield-box textarea.is-invalid.form-control:hover:not([rows='1']),.was-validated .textfield-box .custom-select:invalid:focus[multiple],.was-validated .textfield-box .custom-select:invalid:focus[size]:not([size='1']),.was-validated .textfield-box .custom-select:invalid:hover[multiple],.was-validated .textfield-box .custom-select:invalid:hover[size]:not([size='1']),.was-validated .textfield-box .wpcf7 select:invalid:focus[multiple],.was-validated .textfield-box .wpcf7 select:invalid:focus[size]:not([size='1']),.was-validated .textfield-box .wpcf7 select:invalid:hover[multiple],.was-validated .textfield-box .wpcf7 select:invalid:hover[size]:not([size='1']),.was-validated .textfield-box .wpcf7 textarea:invalid:focus:not([rows='1']),.was-validated .textfield-box .wpcf7 textarea:invalid:hover:not([rows='1']),.was-validated .textfield-box select.form-control:invalid:focus[multiple],.was-validated .textfield-box select.form-control:invalid:focus[size]:not([size='1']),.was-validated .textfield-box select.form-control:invalid:hover[multiple],.was-validated .textfield-box select.form-control:invalid:hover[size]:not([size='1']),.was-validated .textfield-box textarea.form-control:invalid:focus:not([rows='1']),.was-validated .textfield-box textarea.form-control:invalid:hover:not([rows='1']),.wpcf7 .textfield-box select.is-invalid:focus[multiple],.wpcf7 .textfield-box select.is-invalid:focus[size]:not([size='1']),.wpcf7 .textfield-box select.is-invalid:hover[multiple],.wpcf7 .textfield-box select.is-invalid:hover[size]:not([size='1']),.wpcf7 .textfield-box textarea.is-invalid:focus:not([rows='1']),.wpcf7 .textfield-box textarea.is-invalid:hover:not([rows='1']),.wpcf7 .was-validated .textfield-box select:invalid:focus[multiple],.wpcf7 .was-validated .textfield-box select:invalid:focus[size]:not([size='1']),.wpcf7 .was-validated .textfield-box select:invalid:hover[multiple],.wpcf7 .was-validated .textfield-box select:invalid:hover[size]:not([size='1']),.wpcf7 .was-validated .textfield-box textarea:invalid:focus:not([rows='1']),.wpcf7 .was-validated .textfield-box textarea:invalid:hover:not([rows='1']){-webkit-box-shadow:inset 0 -2px 0 -1px #f44336;box-shadow:inset 0 -2px 0 -1px #f44336}.valid-feedback{font-size:.75rem;font-weight:400;letter-spacing:0;line-height:1.5;color:#4caf50;display:none;margin-top:.5rem;width:100%}.form-control-lg+.valid-feedback{margin-top:.75rem}.form-control-sm+.valid-feedback{margin-top:.25rem}.valid-tooltip{border-radius:2px;background-color:#4caf50;color:#fff;display:none;font-size:.875rem;line-height:1.42857;margin-top:.5rem;max-width:100%;opacity:.9;padding:.375rem 1rem;position:absolute;top:100%;text-align:center;word-break:break-word;z-index:240}@media (min-width:768px){.valid-tooltip{font-size:.625rem;padding:.24107rem .5rem}}.form-control-lg+.valid-tooltip{margin-top:.75rem}.form-control-sm+.valid-tooltip{margin-top:.25rem}.custom-control-input.is-valid~.custom-control-label,.custom-control-input.is-valid~.custom-control-label::after,.was-validated .custom-control-input:valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label::after{color:#4caf50}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{background-color:#4caf50}.custom-control-input.is-valid~.custom-control-track,.was-validated .custom-control-input:valid~.custom-control-track{background-color:rgba(76,175,80,.5)}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.custom-file-input.is-valid:hover~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:hover~.custom-file-label{border-bottom-color:#4caf50;-webkit-box-shadow:inset 0 -2px 0 -1px #4caf50;box-shadow:inset 0 -2px 0 -1px #4caf50}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-bottom-color:#4caf50}.custom-file-input.is-valid~.custom-file-label:hover,.was-validated .custom-file-input:valid~.custom-file-label:hover{border-bottom-color:#4caf50;-webkit-box-shadow:inset 0 -2px 0 -1px #4caf50;box-shadow:inset 0 -2px 0 -1px #4caf50}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-switch .custom-control-input.is-valid~.custom-control-label::after,.was-validated .custom-switch .custom-control-input:valid~.custom-control-label::after{background-color:#4caf50}.form-check-input.is-valid+.form-check-label,.was-validated .form-check-input:valid+.form-check-label{color:#4caf50}.is-valid.custom-select,.is-valid.form-control,.is-valid.form-control-file,.was-validated .custom-select:valid,.was-validated .form-control-file:valid,.was-validated .form-control:valid,.was-validated .wpcf7 .wpcf7-validation-errors:valid,.was-validated .wpcf7 input:valid[type=color],.was-validated .wpcf7 input:valid[type=date],.was-validated .wpcf7 input:valid[type=datetime-local],.was-validated .wpcf7 input:valid[type=datetime],.was-validated .wpcf7 input:valid[type=email],.was-validated .wpcf7 input:valid[type=file],.was-validated .wpcf7 input:valid[type=month],.was-validated .wpcf7 input:valid[type=number],.was-validated .wpcf7 input:valid[type=range],.was-validated .wpcf7 input:valid[type=search],.was-validated .wpcf7 input:valid[type=submit],.was-validated .wpcf7 input:valid[type=tel],.was-validated .wpcf7 input:valid[type=text],.was-validated .wpcf7 input:valid[type=time],.was-validated .wpcf7 input:valid[type=url],.was-validated .wpcf7 input:valid[type=week],.was-validated .wpcf7 select:valid,.was-validated .wpcf7 textarea:valid,.wpcf7 .is-valid.wpcf7-validation-errors,.wpcf7 .was-validated .wpcf7-validation-errors:valid,.wpcf7 .was-validated input:valid[type=color],.wpcf7 .was-validated input:valid[type=date],.wpcf7 .was-validated input:valid[type=datetime-local],.wpcf7 .was-validated input:valid[type=datetime],.wpcf7 .was-validated input:valid[type=email],.wpcf7 .was-validated input:valid[type=file],.wpcf7 .was-validated input:valid[type=month],.wpcf7 .was-validated input:valid[type=number],.wpcf7 .was-validated input:valid[type=range],.wpcf7 .was-validated input:valid[type=search],.wpcf7 .was-validated input:valid[type=submit],.wpcf7 .was-validated input:valid[type=tel],.wpcf7 .was-validated input:valid[type=text],.wpcf7 .was-validated input:valid[type=time],.wpcf7 .was-validated input:valid[type=url],.wpcf7 .was-validated input:valid[type=week],.wpcf7 .was-validated select:valid,.wpcf7 .was-validated textarea:valid,.wpcf7 input.is-valid[type=color],.wpcf7 input.is-valid[type=date],.wpcf7 input.is-valid[type=datetime-local],.wpcf7 input.is-valid[type=datetime],.wpcf7 input.is-valid[type=email],.wpcf7 input.is-valid[type=file],.wpcf7 input.is-valid[type=month],.wpcf7 input.is-valid[type=number],.wpcf7 input.is-valid[type=range],.wpcf7 input.is-valid[type=search],.wpcf7 input.is-valid[type=submit],.wpcf7 input.is-valid[type=tel],.wpcf7 input.is-valid[type=text],.wpcf7 input.is-valid[type=time],.wpcf7 input.is-valid[type=url],.wpcf7 input.is-valid[type=week],.wpcf7 select.is-valid,.wpcf7 textarea.is-valid{border-color:#4caf50}.is-valid.custom-select:focus,.is-valid.custom-select:hover,.is-valid.form-control-file:focus,.is-valid.form-control-file:hover,.is-valid.form-control:focus,.is-valid.form-control:hover,.was-validated .custom-select:valid:focus,.was-validated .custom-select:valid:hover,.was-validated .form-control-file:valid:focus,.was-validated .form-control-file:valid:hover,.was-validated .form-control:valid:focus,.was-validated .form-control:valid:hover,.was-validated .wpcf7 .wpcf7-validation-errors:valid:focus,.was-validated .wpcf7 .wpcf7-validation-errors:valid:hover,.was-validated .wpcf7 input:valid:focus[type=color],.was-validated .wpcf7 input:valid:focus[type=date],.was-validated .wpcf7 input:valid:focus[type=datetime-local],.was-validated .wpcf7 input:valid:focus[type=datetime],.was-validated .wpcf7 input:valid:focus[type=email],.was-validated .wpcf7 input:valid:focus[type=file],.was-validated .wpcf7 input:valid:focus[type=month],.was-validated .wpcf7 input:valid:focus[type=number],.was-validated .wpcf7 input:valid:focus[type=range],.was-validated .wpcf7 input:valid:focus[type=search],.was-validated .wpcf7 input:valid:focus[type=submit],.was-validated .wpcf7 input:valid:focus[type=tel],.was-validated .wpcf7 input:valid:focus[type=text],.was-validated .wpcf7 input:valid:focus[type=time],.was-validated .wpcf7 input:valid:focus[type=url],.was-validated .wpcf7 input:valid:focus[type=week],.was-validated .wpcf7 input:valid:hover[type=color],.was-validated .wpcf7 input:valid:hover[type=date],.was-validated .wpcf7 input:valid:hover[type=datetime-local],.was-validated .wpcf7 input:valid:hover[type=datetime],.was-validated .wpcf7 input:valid:hover[type=email],.was-validated .wpcf7 input:valid:hover[type=file],.was-validated .wpcf7 input:valid:hover[type=month],.was-validated .wpcf7 input:valid:hover[type=number],.was-validated .wpcf7 input:valid:hover[type=range],.was-validated .wpcf7 input:valid:hover[type=search],.was-validated .wpcf7 input:valid:hover[type=submit],.was-validated .wpcf7 input:valid:hover[type=tel],.was-validated .wpcf7 input:valid:hover[type=text],.was-validated .wpcf7 input:valid:hover[type=time],.was-validated .wpcf7 input:valid:hover[type=url],.was-validated .wpcf7 input:valid:hover[type=week],.was-validated .wpcf7 select:valid:focus,.was-validated .wpcf7 select:valid:hover,.was-validated .wpcf7 textarea:valid:focus,.was-validated .wpcf7 textarea:valid:hover,.wpcf7 .is-valid.wpcf7-validation-errors:focus,.wpcf7 .is-valid.wpcf7-validation-errors:hover,.wpcf7 .was-validated .wpcf7-validation-errors:valid:focus,.wpcf7 .was-validated .wpcf7-validation-errors:valid:hover,.wpcf7 .was-validated input:valid:focus[type=color],.wpcf7 .was-validated input:valid:focus[type=date],.wpcf7 .was-validated input:valid:focus[type=datetime-local],.wpcf7 .was-validated input:valid:focus[type=datetime],.wpcf7 .was-validated input:valid:focus[type=email],.wpcf7 .was-validated input:valid:focus[type=file],.wpcf7 .was-validated input:valid:focus[type=month],.wpcf7 .was-validated input:valid:focus[type=number],.wpcf7 .was-validated input:valid:focus[type=range],.wpcf7 .was-validated input:valid:focus[type=search],.wpcf7 .was-validated input:valid:focus[type=submit],.wpcf7 .was-validated input:valid:focus[type=tel],.wpcf7 .was-validated input:valid:focus[type=text],.wpcf7 .was-validated input:valid:focus[type=time],.wpcf7 .was-validated input:valid:focus[type=url],.wpcf7 .was-validated input:valid:focus[type=week],.wpcf7 .was-validated input:valid:hover[type=color],.wpcf7 .was-validated input:valid:hover[type=date],.wpcf7 .was-validated input:valid:hover[type=datetime-local],.wpcf7 .was-validated input:valid:hover[type=datetime],.wpcf7 .was-validated input:valid:hover[type=email],.wpcf7 .was-validated input:valid:hover[type=file],.wpcf7 .was-validated input:valid:hover[type=month],.wpcf7 .was-validated input:valid:hover[type=number],.wpcf7 .was-validated input:valid:hover[type=range],.wpcf7 .was-validated input:valid:hover[type=search],.wpcf7 .was-validated input:valid:hover[type=submit],.wpcf7 .was-validated input:valid:hover[type=tel],.wpcf7 .was-validated input:valid:hover[type=text],.wpcf7 .was-validated input:valid:hover[type=time],.wpcf7 .was-validated input:valid:hover[type=url],.wpcf7 .was-validated input:valid:hover[type=week],.wpcf7 .was-validated select:valid:focus,.wpcf7 .was-validated select:valid:hover,.wpcf7 .was-validated textarea:valid:focus,.wpcf7 .was-validated textarea:valid:hover,.wpcf7 input.is-valid:focus[type=color],.wpcf7 input.is-valid:focus[type=date],.wpcf7 input.is-valid:focus[type=datetime-local],.wpcf7 input.is-valid:focus[type=datetime],.wpcf7 input.is-valid:focus[type=email],.wpcf7 input.is-valid:focus[type=file],.wpcf7 input.is-valid:focus[type=month],.wpcf7 input.is-valid:focus[type=number],.wpcf7 input.is-valid:focus[type=range],.wpcf7 input.is-valid:focus[type=search],.wpcf7 input.is-valid:focus[type=submit],.wpcf7 input.is-valid:focus[type=tel],.wpcf7 input.is-valid:focus[type=text],.wpcf7 input.is-valid:focus[type=time],.wpcf7 input.is-valid:focus[type=url],.wpcf7 input.is-valid:focus[type=week],.wpcf7 input.is-valid:hover[type=color],.wpcf7 input.is-valid:hover[type=date],.wpcf7 input.is-valid:hover[type=datetime-local],.wpcf7 input.is-valid:hover[type=datetime],.wpcf7 input.is-valid:hover[type=email],.wpcf7 input.is-valid:hover[type=file],.wpcf7 input.is-valid:hover[type=month],.wpcf7 input.is-valid:hover[type=number],.wpcf7 input.is-valid:hover[type=range],.wpcf7 input.is-valid:hover[type=search],.wpcf7 input.is-valid:hover[type=submit],.wpcf7 input.is-valid:hover[type=tel],.wpcf7 input.is-valid:hover[type=text],.wpcf7 input.is-valid:hover[type=time],.wpcf7 input.is-valid:hover[type=url],.wpcf7 input.is-valid:hover[type=week],.wpcf7 select.is-valid:focus,.wpcf7 select.is-valid:hover,.wpcf7 textarea.is-valid:focus,.wpcf7 textarea.is-valid:hover{border-color:#4caf50;-webkit-box-shadow:inset 0 -2px 0 -1px #4caf50;box-shadow:inset 0 -2px 0 -1px #4caf50}.is-valid.custom-select~.valid-feedback,.is-valid.custom-select~.valid-tooltip,.is-valid.form-control-file~.valid-feedback,.is-valid.form-control-file~.valid-tooltip,.is-valid.form-control~.valid-feedback,.is-valid.form-control~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip,.was-validated .wpcf7 .wpcf7-validation-errors:valid~.valid-feedback,.was-validated .wpcf7 .wpcf7-validation-errors:valid~.valid-tooltip,.was-validated .wpcf7 input:valid[type=color]~.valid-feedback,.was-validated .wpcf7 input:valid[type=color]~.valid-tooltip,.was-validated .wpcf7 input:valid[type=date]~.valid-feedback,.was-validated .wpcf7 input:valid[type=date]~.valid-tooltip,.was-validated .wpcf7 input:valid[type=datetime-local]~.valid-feedback,.was-validated .wpcf7 input:valid[type=datetime-local]~.valid-tooltip,.was-validated .wpcf7 input:valid[type=datetime]~.valid-feedback,.was-validated .wpcf7 input:valid[type=datetime]~.valid-tooltip,.was-validated .wpcf7 input:valid[type=email]~.valid-feedback,.was-validated .wpcf7 input:valid[type=email]~.valid-tooltip,.was-validated .wpcf7 input:valid[type=file]~.valid-feedback,.was-validated .wpcf7 input:valid[type=file]~.valid-tooltip,.was-validated .wpcf7 input:valid[type=month]~.valid-feedback,.was-validated .wpcf7 input:valid[type=month]~.valid-tooltip,.was-validated .wpcf7 input:valid[type=number]~.valid-feedback,.was-validated .wpcf7 input:valid[type=number]~.valid-tooltip,.was-validated .wpcf7 input:valid[type=range]~.valid-feedback,.was-validated .wpcf7 input:valid[type=range]~.valid-tooltip,.was-validated .wpcf7 input:valid[type=search]~.valid-feedback,.was-validated .wpcf7 input:valid[type=search]~.valid-tooltip,.was-validated .wpcf7 input:valid[type=submit]~.valid-feedback,.was-validated .wpcf7 input:valid[type=submit]~.valid-tooltip,.was-validated .wpcf7 input:valid[type=tel]~.valid-feedback,.was-validated .wpcf7 input:valid[type=tel]~.valid-tooltip,.was-validated .wpcf7 input:valid[type=text]~.valid-feedback,.was-validated .wpcf7 input:valid[type=text]~.valid-tooltip,.was-validated .wpcf7 input:valid[type=time]~.valid-feedback,.was-validated .wpcf7 input:valid[type=time]~.valid-tooltip,.was-validated .wpcf7 input:valid[type=url]~.valid-feedback,.was-validated .wpcf7 input:valid[type=url]~.valid-tooltip,.was-validated .wpcf7 input:valid[type=week]~.valid-feedback,.was-validated .wpcf7 input:valid[type=week]~.valid-tooltip,.was-validated .wpcf7 select:valid~.valid-feedback,.was-validated .wpcf7 select:valid~.valid-tooltip,.was-validated .wpcf7 textarea:valid~.valid-feedback,.was-validated .wpcf7 textarea:valid~.valid-tooltip,.wpcf7 .is-valid.wpcf7-validation-errors~.valid-feedback,.wpcf7 .is-valid.wpcf7-validation-errors~.valid-tooltip,.wpcf7 .was-validated .wpcf7-validation-errors:valid~.valid-feedback,.wpcf7 .was-validated .wpcf7-validation-errors:valid~.valid-tooltip,.wpcf7 .was-validated input:valid[type=color]~.valid-feedback,.wpcf7 .was-validated input:valid[type=color]~.valid-tooltip,.wpcf7 .was-validated input:valid[type=date]~.valid-feedback,.wpcf7 .was-validated input:valid[type=date]~.valid-tooltip,.wpcf7 .was-validated input:valid[type=datetime-local]~.valid-feedback,.wpcf7 .was-validated input:valid[type=datetime-local]~.valid-tooltip,.wpcf7 .was-validated input:valid[type=datetime]~.valid-feedback,.wpcf7 .was-validated input:valid[type=datetime]~.valid-tooltip,.wpcf7 .was-validated input:valid[type=email]~.valid-feedback,.wpcf7 .was-validated input:valid[type=email]~.valid-tooltip,.wpcf7 .was-validated input:valid[type=file]~.valid-feedback,.wpcf7 .was-validated input:valid[type=file]~.valid-tooltip,.wpcf7 .was-validated input:valid[type=month]~.valid-feedback,.wpcf7 .was-validated input:valid[type=month]~.valid-tooltip,.wpcf7 .was-validated input:valid[type=number]~.valid-feedback,.wpcf7 .was-validated input:valid[type=number]~.valid-tooltip,.wpcf7 .was-validated input:valid[type=range]~.valid-feedback,.wpcf7 .was-validated input:valid[type=range]~.valid-tooltip,.wpcf7 .was-validated input:valid[type=search]~.valid-feedback,.wpcf7 .was-validated input:valid[type=search]~.valid-tooltip,.wpcf7 .was-validated input:valid[type=submit]~.valid-feedback,.wpcf7 .was-validated input:valid[type=submit]~.valid-tooltip,.wpcf7 .was-validated input:valid[type=tel]~.valid-feedback,.wpcf7 .was-validated input:valid[type=tel]~.valid-tooltip,.wpcf7 .was-validated input:valid[type=text]~.valid-feedback,.wpcf7 .was-validated input:valid[type=text]~.valid-tooltip,.wpcf7 .was-validated input:valid[type=time]~.valid-feedback,.wpcf7 .was-validated input:valid[type=time]~.valid-tooltip,.wpcf7 .was-validated input:valid[type=url]~.valid-feedback,.wpcf7 .was-validated input:valid[type=url]~.valid-tooltip,.wpcf7 .was-validated input:valid[type=week]~.valid-feedback,.wpcf7 .was-validated input:valid[type=week]~.valid-tooltip,.wpcf7 .was-validated select:valid~.valid-feedback,.wpcf7 .was-validated select:valid~.valid-tooltip,.wpcf7 .was-validated textarea:valid~.valid-feedback,.wpcf7 .was-validated textarea:valid~.valid-tooltip,.wpcf7 input.is-valid[type=color]~.valid-feedback,.wpcf7 input.is-valid[type=color]~.valid-tooltip,.wpcf7 input.is-valid[type=date]~.valid-feedback,.wpcf7 input.is-valid[type=date]~.valid-tooltip,.wpcf7 input.is-valid[type=datetime-local]~.valid-feedback,.wpcf7 input.is-valid[type=datetime-local]~.valid-tooltip,.wpcf7 input.is-valid[type=datetime]~.valid-feedback,.wpcf7 input.is-valid[type=datetime]~.valid-tooltip,.wpcf7 input.is-valid[type=email]~.valid-feedback,.wpcf7 input.is-valid[type=email]~.valid-tooltip,.wpcf7 input.is-valid[type=file]~.valid-feedback,.wpcf7 input.is-valid[type=file]~.valid-tooltip,.wpcf7 input.is-valid[type=month]~.valid-feedback,.wpcf7 input.is-valid[type=month]~.valid-tooltip,.wpcf7 input.is-valid[type=number]~.valid-feedback,.wpcf7 input.is-valid[type=number]~.valid-tooltip,.wpcf7 input.is-valid[type=range]~.valid-feedback,.wpcf7 input.is-valid[type=range]~.valid-tooltip,.wpcf7 input.is-valid[type=search]~.valid-feedback,.wpcf7 input.is-valid[type=search]~.valid-tooltip,.wpcf7 input.is-valid[type=submit]~.valid-feedback,.wpcf7 input.is-valid[type=submit]~.valid-tooltip,.wpcf7 input.is-valid[type=tel]~.valid-feedback,.wpcf7 input.is-valid[type=tel]~.valid-tooltip,.wpcf7 input.is-valid[type=text]~.valid-feedback,.wpcf7 input.is-valid[type=text]~.valid-tooltip,.wpcf7 input.is-valid[type=time]~.valid-feedback,.wpcf7 input.is-valid[type=time]~.valid-tooltip,.wpcf7 input.is-valid[type=url]~.valid-feedback,.wpcf7 input.is-valid[type=url]~.valid-tooltip,.wpcf7 input.is-valid[type=week]~.valid-feedback,.wpcf7 input.is-valid[type=week]~.valid-tooltip,.wpcf7 select.is-valid~.valid-feedback,.wpcf7 select.is-valid~.valid-tooltip,.wpcf7 textarea.is-valid~.valid-feedback,.wpcf7 textarea.is-valid~.valid-tooltip{display:block}.is-valid.custom-select:focus[multiple],.is-valid.custom-select:focus[size]:not([size='1']),.is-valid.custom-select:hover[multiple],.is-valid.custom-select:hover[size]:not([size='1']),.was-validated .custom-select:valid:focus[multiple],.was-validated .custom-select:valid:focus[size]:not([size='1']),.was-validated .custom-select:valid:hover[multiple],.was-validated .custom-select:valid:hover[size]:not([size='1']),.was-validated .wpcf7 select:valid:focus[multiple],.was-validated .wpcf7 select:valid:focus[size]:not([size='1']),.was-validated .wpcf7 select:valid:hover[multiple],.was-validated .wpcf7 select:valid:hover[size]:not([size='1']),.was-validated .wpcf7 textarea:valid:focus:not([rows='1']),.was-validated .wpcf7 textarea:valid:hover:not([rows='1']),.was-validated select.form-control:valid:focus[multiple],.was-validated select.form-control:valid:focus[size]:not([size='1']),.was-validated select.form-control:valid:hover[multiple],.was-validated select.form-control:valid:hover[size]:not([size='1']),.was-validated textarea.form-control:valid:focus:not([rows='1']),.was-validated textarea.form-control:valid:hover:not([rows='1']),.wpcf7 .was-validated select:valid:focus[multiple],.wpcf7 .was-validated select:valid:focus[size]:not([size='1']),.wpcf7 .was-validated select:valid:hover[multiple],.wpcf7 .was-validated select:valid:hover[size]:not([size='1']),.wpcf7 .was-validated textarea:valid:focus:not([rows='1']),.wpcf7 .was-validated textarea:valid:hover:not([rows='1']),.wpcf7 select.is-valid:focus[multiple],.wpcf7 select.is-valid:focus[size]:not([size='1']),.wpcf7 select.is-valid:hover[multiple],.wpcf7 select.is-valid:hover[size]:not([size='1']),.wpcf7 textarea.is-valid:focus:not([rows='1']),.wpcf7 textarea.is-valid:hover:not([rows='1']),select.is-valid.form-control:focus[multiple],select.is-valid.form-control:focus[size]:not([size='1']),select.is-valid.form-control:hover[multiple],select.is-valid.form-control:hover[size]:not([size='1']),textarea.is-valid.form-control:focus:not([rows='1']),textarea.is-valid.form-control:hover:not([rows='1']){-webkit-box-shadow:inset 2px 2px 0 -1px #4caf50,inset -2px -2px 0 -1px #4caf50;box-shadow:inset 2px 2px 0 -1px #4caf50,inset -2px -2px 0 -1px #4caf50}.textfield-box .is-valid.custom-select:focus[multiple],.textfield-box .is-valid.custom-select:focus[size]:not([size='1']),.textfield-box .is-valid.custom-select:hover[multiple],.textfield-box .is-valid.custom-select:hover[size]:not([size='1']),.textfield-box .wpcf7 select.is-valid:focus[multiple],.textfield-box .wpcf7 select.is-valid:focus[size]:not([size='1']),.textfield-box .wpcf7 select.is-valid:hover[multiple],.textfield-box .wpcf7 select.is-valid:hover[size]:not([size='1']),.textfield-box .wpcf7 textarea.is-valid:focus:not([rows='1']),.textfield-box .wpcf7 textarea.is-valid:hover:not([rows='1']),.textfield-box select.is-valid.form-control:focus[multiple],.textfield-box select.is-valid.form-control:focus[size]:not([size='1']),.textfield-box select.is-valid.form-control:hover[multiple],.textfield-box select.is-valid.form-control:hover[size]:not([size='1']),.textfield-box textarea.is-valid.form-control:focus:not([rows='1']),.textfield-box textarea.is-valid.form-control:hover:not([rows='1']),.was-validated .textfield-box .custom-select:valid:focus[multiple],.was-validated .textfield-box .custom-select:valid:focus[size]:not([size='1']),.was-validated .textfield-box .custom-select:valid:hover[multiple],.was-validated .textfield-box .custom-select:valid:hover[size]:not([size='1']),.was-validated .textfield-box .wpcf7 select:valid:focus[multiple],.was-validated .textfield-box .wpcf7 select:valid:focus[size]:not([size='1']),.was-validated .textfield-box .wpcf7 select:valid:hover[multiple],.was-validated .textfield-box .wpcf7 select:valid:hover[size]:not([size='1']),.was-validated .textfield-box .wpcf7 textarea:valid:focus:not([rows='1']),.was-validated .textfield-box .wpcf7 textarea:valid:hover:not([rows='1']),.was-validated .textfield-box select.form-control:valid:focus[multiple],.was-validated .textfield-box select.form-control:valid:focus[size]:not([size='1']),.was-validated .textfield-box select.form-control:valid:hover[multiple],.was-validated .textfield-box select.form-control:valid:hover[size]:not([size='1']),.was-validated .textfield-box textarea.form-control:valid:focus:not([rows='1']),.was-validated .textfield-box textarea.form-control:valid:hover:not([rows='1']),.wpcf7 .textfield-box select.is-valid:focus[multiple],.wpcf7 .textfield-box select.is-valid:focus[size]:not([size='1']),.wpcf7 .textfield-box select.is-valid:hover[multiple],.wpcf7 .textfield-box select.is-valid:hover[size]:not([size='1']),.wpcf7 .textfield-box textarea.is-valid:focus:not([rows='1']),.wpcf7 .textfield-box textarea.is-valid:hover:not([rows='1']),.wpcf7 .was-validated .textfield-box select:valid:focus[multiple],.wpcf7 .was-validated .textfield-box select:valid:focus[size]:not([size='1']),.wpcf7 .was-validated .textfield-box select:valid:hover[multiple],.wpcf7 .was-validated .textfield-box select:valid:hover[size]:not([size='1']),.wpcf7 .was-validated .textfield-box textarea:valid:focus:not([rows='1']),.wpcf7 .was-validated .textfield-box textarea:valid:hover:not([rows='1']){-webkit-box-shadow:inset 0 -2px 0 -1px #4caf50;box-shadow:inset 0 -2px 0 -1px #4caf50}.textfield-box .custom-select,.textfield-box .form-control,.textfield-box .form-control-file,.textfield-box .wpcf7 .wpcf7-validation-errors,.textfield-box .wpcf7 input[type=color],.textfield-box .wpcf7 input[type=date],.textfield-box .wpcf7 input[type=datetime-local],.textfield-box .wpcf7 input[type=datetime],.textfield-box .wpcf7 input[type=email],.textfield-box .wpcf7 input[type=file],.textfield-box .wpcf7 input[type=month],.textfield-box .wpcf7 input[type=number],.textfield-box .wpcf7 input[type=range],.textfield-box .wpcf7 input[type=search],.textfield-box .wpcf7 input[type=submit],.textfield-box .wpcf7 input[type=tel],.textfield-box .wpcf7 input[type=text],.textfield-box .wpcf7 input[type=time],.textfield-box .wpcf7 input[type=url],.textfield-box .wpcf7 input[type=week],.textfield-box .wpcf7 select,.textfield-box .wpcf7 textarea,.wpcf7 .textfield-box .wpcf7-validation-errors,.wpcf7 .textfield-box input[type=color],.wpcf7 .textfield-box input[type=date],.wpcf7 .textfield-box input[type=datetime-local],.wpcf7 .textfield-box input[type=datetime],.wpcf7 .textfield-box input[type=email],.wpcf7 .textfield-box input[type=file],.wpcf7 .textfield-box input[type=month],.wpcf7 .textfield-box input[type=number],.wpcf7 .textfield-box input[type=range],.wpcf7 .textfield-box input[type=search],.wpcf7 .textfield-box input[type=submit],.wpcf7 .textfield-box input[type=tel],.wpcf7 .textfield-box input[type=text],.wpcf7 .textfield-box input[type=time],.wpcf7 .textfield-box input[type=url],.wpcf7 .textfield-box input[type=week],.wpcf7 .textfield-box select,.wpcf7 .textfield-box textarea{background-color:rgba(0,0,0,.06);border-radius:4px;padding:1rem 1rem calc(1rem - 1px)}.textfield-box .custom-select,.textfield-box .wpcf7 select,.textfield-box select.form-control,.wpcf7 .textfield-box select{padding-right:1.5em}.textfield-box .custom-select[multiple],.textfield-box .custom-select[size]:not([size='1']),.textfield-box .wpcf7 select[multiple],.textfield-box .wpcf7 select[size]:not([size='1']),.textfield-box .wpcf7 textarea:not([rows='1']),.textfield-box select.form-control[multiple],.textfield-box select.form-control[size]:not([size='1']),.textfield-box textarea.form-control:not([rows='1']),.wpcf7 .textfield-box select[multiple],.wpcf7 .textfield-box select[size]:not([size='1']),.wpcf7 .textfield-box textarea:not([rows='1']){border-width:0 0 1px;padding:1rem 1rem calc(1rem - 1px)}.textfield-box .custom-select:hover[multiple],.textfield-box .custom-select:hover[size]:not([size='1']),.textfield-box .wpcf7 select:hover[multiple],.textfield-box .wpcf7 select:hover[size]:not([size='1']),.textfield-box .wpcf7 textarea:hover:not([rows='1']),.textfield-box select.form-control:hover[multiple],.textfield-box select.form-control:hover[size]:not([size='1']),.textfield-box textarea.form-control:hover:not([rows='1']),.wpcf7 .textfield-box select:hover[multiple],.wpcf7 .textfield-box select:hover[size]:not([size='1']),.wpcf7 .textfield-box textarea:hover:not([rows='1']){-webkit-box-shadow:inset 0 -2px 0 -1px rgba(0,0,0,.87);box-shadow:inset 0 -2px 0 -1px rgba(0,0,0,.87)}.textfield-box .custom-select:focus[multiple],.textfield-box .custom-select:focus[size]:not([size='1']),.textfield-box .wpcf7 select:focus[multiple],.textfield-box .wpcf7 select:focus[size]:not([size='1']),.textfield-box .wpcf7 textarea:focus:not([rows='1']),.textfield-box select.form-control:focus[multiple],.textfield-box select.form-control:focus[size]:not([size='1']),.textfield-box textarea.form-control:focus:not([rows='1']),.wpcf7 .textfield-box select:focus[multiple],.wpcf7 .textfield-box select:focus[size]:not([size='1']),.wpcf7 .textfield-box textarea:focus:not([rows='1']){-webkit-box-shadow:inset 0 -2px 0 -1px #f07206;box-shadow:inset 0 -2px 0 -1px #f07206}.textfield-box .wpcf7 textarea,.textfield-box textarea.form-control,.wpcf7 .textfield-box textarea{min-height:3.5rem}.textfield-box .form-control-file,.textfield-box .form-control[type=file],.textfield-box .wpcf7 .wpcf7-validation-errors[type=file],.textfield-box .wpcf7 input[type=file][type=color],.textfield-box .wpcf7 input[type=file][type=date],.textfield-box .wpcf7 input[type=file][type=datetime-local],.textfield-box .wpcf7 input[type=file][type=datetime],.textfield-box .wpcf7 input[type=file][type=email],.textfield-box .wpcf7 input[type=file][type=file],.textfield-box .wpcf7 input[type=file][type=month],.textfield-box .wpcf7 input[type=file][type=number],.textfield-box .wpcf7 input[type=file][type=range],.textfield-box .wpcf7 input[type=file][type=search],.textfield-box .wpcf7 input[type=file][type=submit],.textfield-box .wpcf7 input[type=file][type=tel],.textfield-box .wpcf7 input[type=file][type=text],.textfield-box .wpcf7 input[type=file][type=time],.textfield-box .wpcf7 input[type=file][type=url],.textfield-box .wpcf7 input[type=file][type=week],.textfield-box .wpcf7 select[type=file],.textfield-box .wpcf7 textarea[type=file],.wpcf7 .textfield-box .wpcf7-validation-errors[type=file],.wpcf7 .textfield-box input[type=file][type=color],.wpcf7 .textfield-box input[type=file][type=date],.wpcf7 .textfield-box input[type=file][type=datetime-local],.wpcf7 .textfield-box input[type=file][type=datetime],.wpcf7 .textfield-box input[type=file][type=email],.wpcf7 .textfield-box input[type=file][type=file],.wpcf7 .textfield-box input[type=file][type=month],.wpcf7 .textfield-box input[type=file][type=number],.wpcf7 .textfield-box input[type=file][type=range],.wpcf7 .textfield-box input[type=file][type=search],.wpcf7 .textfield-box input[type=file][type=submit],.wpcf7 .textfield-box input[type=file][type=tel],.wpcf7 .textfield-box input[type=file][type=text],.wpcf7 .textfield-box input[type=file][type=time],.wpcf7 .textfield-box input[type=file][type=url],.wpcf7 .textfield-box input[type=file][type=week],.wpcf7 .textfield-box select[type=file],.wpcf7 .textfield-box textarea[type=file]{max-height:3.5rem}.input-group-lg>.textfield-box .custom-select,.input-group-lg>.textfield-box .form-control,.input-group-lg>.textfield-box .form-control-file,.input-group-lg>.textfield-box .wpcf7 .wpcf7-validation-errors,.input-group-lg>.textfield-box .wpcf7 input[type=color],.input-group-lg>.textfield-box .wpcf7 input[type=date],.input-group-lg>.textfield-box .wpcf7 input[type=datetime-local],.input-group-lg>.textfield-box .wpcf7 input[type=datetime],.input-group-lg>.textfield-box .wpcf7 input[type=email],.input-group-lg>.textfield-box .wpcf7 input[type=file],.input-group-lg>.textfield-box .wpcf7 input[type=month],.input-group-lg>.textfield-box .wpcf7 input[type=number],.input-group-lg>.textfield-box .wpcf7 input[type=range],.input-group-lg>.textfield-box .wpcf7 input[type=search],.input-group-lg>.textfield-box .wpcf7 input[type=submit],.input-group-lg>.textfield-box .wpcf7 input[type=tel],.input-group-lg>.textfield-box .wpcf7 input[type=text],.input-group-lg>.textfield-box .wpcf7 input[type=time],.input-group-lg>.textfield-box .wpcf7 input[type=url],.input-group-lg>.textfield-box .wpcf7 input[type=week],.input-group-lg>.textfield-box .wpcf7 select,.input-group-lg>.textfield-box .wpcf7 textarea,.textfield-box-lg .custom-select,.textfield-box-lg .form-control,.textfield-box-lg .form-control-file,.textfield-box-lg .wpcf7 .wpcf7-validation-errors,.textfield-box-lg .wpcf7 input[type=color],.textfield-box-lg .wpcf7 input[type=date],.textfield-box-lg .wpcf7 input[type=datetime-local],.textfield-box-lg .wpcf7 input[type=datetime],.textfield-box-lg .wpcf7 input[type=email],.textfield-box-lg .wpcf7 input[type=file],.textfield-box-lg .wpcf7 input[type=month],.textfield-box-lg .wpcf7 input[type=number],.textfield-box-lg .wpcf7 input[type=range],.textfield-box-lg .wpcf7 input[type=search],.textfield-box-lg .wpcf7 input[type=submit],.textfield-box-lg .wpcf7 input[type=tel],.textfield-box-lg .wpcf7 input[type=text],.textfield-box-lg .wpcf7 input[type=time],.textfield-box-lg .wpcf7 input[type=url],.textfield-box-lg .wpcf7 input[type=week],.textfield-box-lg .wpcf7 select,.textfield-box-lg .wpcf7 textarea,.wpcf7 .input-group-lg>.textfield-box .wpcf7-validation-errors,.wpcf7 .input-group-lg>.textfield-box input[type=color],.wpcf7 .input-group-lg>.textfield-box input[type=date],.wpcf7 .input-group-lg>.textfield-box input[type=datetime-local],.wpcf7 .input-group-lg>.textfield-box input[type=datetime],.wpcf7 .input-group-lg>.textfield-box input[type=email],.wpcf7 .input-group-lg>.textfield-box input[type=file],.wpcf7 .input-group-lg>.textfield-box input[type=month],.wpcf7 .input-group-lg>.textfield-box input[type=number],.wpcf7 .input-group-lg>.textfield-box input[type=range],.wpcf7 .input-group-lg>.textfield-box input[type=search],.wpcf7 .input-group-lg>.textfield-box input[type=submit],.wpcf7 .input-group-lg>.textfield-box input[type=tel],.wpcf7 .input-group-lg>.textfield-box input[type=text],.wpcf7 .input-group-lg>.textfield-box input[type=time],.wpcf7 .input-group-lg>.textfield-box input[type=url],.wpcf7 .input-group-lg>.textfield-box input[type=week],.wpcf7 .input-group-lg>.textfield-box select,.wpcf7 .input-group-lg>.textfield-box textarea,.wpcf7 .textfield-box-lg .wpcf7-validation-errors,.wpcf7 .textfield-box-lg input[type=color],.wpcf7 .textfield-box-lg input[type=date],.wpcf7 .textfield-box-lg input[type=datetime-local],.wpcf7 .textfield-box-lg input[type=datetime],.wpcf7 .textfield-box-lg input[type=email],.wpcf7 .textfield-box-lg input[type=file],.wpcf7 .textfield-box-lg input[type=month],.wpcf7 .textfield-box-lg input[type=number],.wpcf7 .textfield-box-lg input[type=range],.wpcf7 .textfield-box-lg input[type=search],.wpcf7 .textfield-box-lg input[type=submit],.wpcf7 .textfield-box-lg input[type=tel],.wpcf7 .textfield-box-lg input[type=text],.wpcf7 .textfield-box-lg input[type=time],.wpcf7 .textfield-box-lg input[type=url],.wpcf7 .textfield-box-lg input[type=week],.wpcf7 .textfield-box-lg select,.wpcf7 .textfield-box-lg textarea{font-size:2.125rem;line-height:1.17647;padding:.875rem 1rem calc(.875rem - 1px)}.input-group-lg>.textfield-box .custom-select[multiple],.input-group-lg>.textfield-box .custom-select[size]:not([size='1']),.input-group-lg>.textfield-box .wpcf7 select[multiple],.input-group-lg>.textfield-box .wpcf7 select[size]:not([size='1']),.input-group-lg>.textfield-box .wpcf7 textarea:not([rows='1']),.input-group-lg>.textfield-box select.form-control[multiple],.input-group-lg>.textfield-box select.form-control[size]:not([size='1']),.input-group-lg>.textfield-box textarea.form-control:not([rows='1']),.textfield-box-lg .custom-select[multiple],.textfield-box-lg .custom-select[size]:not([size='1']),.textfield-box-lg .wpcf7 select[multiple],.textfield-box-lg .wpcf7 select[size]:not([size='1']),.textfield-box-lg .wpcf7 textarea:not([rows='1']),.textfield-box-lg select.form-control[multiple],.textfield-box-lg select.form-control[size]:not([size='1']),.textfield-box-lg textarea.form-control:not([rows='1']),.wpcf7 .input-group-lg>.textfield-box select[multiple],.wpcf7 .input-group-lg>.textfield-box select[size]:not([size='1']),.wpcf7 .input-group-lg>.textfield-box textarea:not([rows='1']),.wpcf7 .textfield-box-lg select[multiple],.wpcf7 .textfield-box-lg select[size]:not([size='1']),.wpcf7 .textfield-box-lg textarea:not([rows='1']){padding:.875rem 1rem calc(.875rem - 1px)}.input-group-lg>.textfield-box .wpcf7 textarea,.input-group-lg>.textfield-box textarea.form-control,.textfield-box-lg .wpcf7 textarea,.textfield-box-lg textarea.form-control,.wpcf7 .input-group-lg>.textfield-box textarea,.wpcf7 .textfield-box-lg textarea{min-height:4.25rem}.input-group-lg>.textfield-box .custom-select,.textfield-box-lg .custom-select{padding-right:1.5em}.input-group-lg>.textfield-box .form-control-file,.input-group-lg>.textfield-box .form-control[type=file],.input-group-lg>.textfield-box .wpcf7 .wpcf7-validation-errors[type=file],.input-group-lg>.textfield-box .wpcf7 input[type=file][type=color],.input-group-lg>.textfield-box .wpcf7 input[type=file][type=date],.input-group-lg>.textfield-box .wpcf7 input[type=file][type=datetime-local],.input-group-lg>.textfield-box .wpcf7 input[type=file][type=datetime],.input-group-lg>.textfield-box .wpcf7 input[type=file][type=email],.input-group-lg>.textfield-box .wpcf7 input[type=file][type=file],.input-group-lg>.textfield-box .wpcf7 input[type=file][type=month],.input-group-lg>.textfield-box .wpcf7 input[type=file][type=number],.input-group-lg>.textfield-box .wpcf7 input[type=file][type=range],.input-group-lg>.textfield-box .wpcf7 input[type=file][type=search],.input-group-lg>.textfield-box .wpcf7 input[type=file][type=submit],.input-group-lg>.textfield-box .wpcf7 input[type=file][type=tel],.input-group-lg>.textfield-box .wpcf7 input[type=file][type=text],.input-group-lg>.textfield-box .wpcf7 input[type=file][type=time],.input-group-lg>.textfield-box .wpcf7 input[type=file][type=url],.input-group-lg>.textfield-box .wpcf7 input[type=file][type=week],.input-group-lg>.textfield-box .wpcf7 select[type=file],.input-group-lg>.textfield-box .wpcf7 textarea[type=file],.textfield-box-lg .form-control-file,.textfield-box-lg .form-control[type=file],.textfield-box-lg .wpcf7 .wpcf7-validation-errors[type=file],.textfield-box-lg .wpcf7 input[type=file][type=color],.textfield-box-lg .wpcf7 input[type=file][type=date],.textfield-box-lg .wpcf7 input[type=file][type=datetime-local],.textfield-box-lg .wpcf7 input[type=file][type=datetime],.textfield-box-lg .wpcf7 input[type=file][type=email],.textfield-box-lg .wpcf7 input[type=file][type=file],.textfield-box-lg .wpcf7 input[type=file][type=month],.textfield-box-lg .wpcf7 input[type=file][type=number],.textfield-box-lg .wpcf7 input[type=file][type=range],.textfield-box-lg .wpcf7 input[type=file][type=search],.textfield-box-lg .wpcf7 input[type=file][type=submit],.textfield-box-lg .wpcf7 input[type=file][type=tel],.textfield-box-lg .wpcf7 input[type=file][type=text],.textfield-box-lg .wpcf7 input[type=file][type=time],.textfield-box-lg .wpcf7 input[type=file][type=url],.textfield-box-lg .wpcf7 input[type=file][type=week],.textfield-box-lg .wpcf7 select[type=file],.textfield-box-lg .wpcf7 textarea[type=file],.wpcf7 .input-group-lg>.textfield-box .wpcf7-validation-errors[type=file],.wpcf7 .input-group-lg>.textfield-box input[type=file][type=color],.wpcf7 .input-group-lg>.textfield-box input[type=file][type=date],.wpcf7 .input-group-lg>.textfield-box input[type=file][type=datetime-local],.wpcf7 .input-group-lg>.textfield-box input[type=file][type=datetime],.wpcf7 .input-group-lg>.textfield-box input[type=file][type=email],.wpcf7 .input-group-lg>.textfield-box input[type=file][type=file],.wpcf7 .input-group-lg>.textfield-box input[type=file][type=month],.wpcf7 .input-group-lg>.textfield-box input[type=file][type=number],.wpcf7 .input-group-lg>.textfield-box input[type=file][type=range],.wpcf7 .input-group-lg>.textfield-box input[type=file][type=search],.wpcf7 .input-group-lg>.textfield-box input[type=file][type=submit],.wpcf7 .input-group-lg>.textfield-box input[type=file][type=tel],.wpcf7 .input-group-lg>.textfield-box input[type=file][type=text],.wpcf7 .input-group-lg>.textfield-box input[type=file][type=time],.wpcf7 .input-group-lg>.textfield-box input[type=file][type=url],.wpcf7 .input-group-lg>.textfield-box input[type=file][type=week],.wpcf7 .input-group-lg>.textfield-box select[type=file],.wpcf7 .input-group-lg>.textfield-box textarea[type=file],.wpcf7 .textfield-box-lg .wpcf7-validation-errors[type=file],.wpcf7 .textfield-box-lg input[type=file][type=color],.wpcf7 .textfield-box-lg input[type=file][type=date],.wpcf7 .textfield-box-lg input[type=file][type=datetime-local],.wpcf7 .textfield-box-lg input[type=file][type=datetime],.wpcf7 .textfield-box-lg input[type=file][type=email],.wpcf7 .textfield-box-lg input[type=file][type=file],.wpcf7 .textfield-box-lg input[type=file][type=month],.wpcf7 .textfield-box-lg input[type=file][type=number],.wpcf7 .textfield-box-lg input[type=file][type=range],.wpcf7 .textfield-box-lg input[type=file][type=search],.wpcf7 .textfield-box-lg input[type=file][type=submit],.wpcf7 .textfield-box-lg input[type=file][type=tel],.wpcf7 .textfield-box-lg input[type=file][type=text],.wpcf7 .textfield-box-lg input[type=file][type=time],.wpcf7 .textfield-box-lg input[type=file][type=url],.wpcf7 .textfield-box-lg input[type=file][type=week],.wpcf7 .textfield-box-lg select[type=file],.wpcf7 .textfield-box-lg textarea[type=file]{max-height:4.25rem}.input-group-sm>.textfield-box .custom-select,.input-group-sm>.textfield-box .form-control,.input-group-sm>.textfield-box .form-control-file,.input-group-sm>.textfield-box .wpcf7 .wpcf7-validation-errors,.input-group-sm>.textfield-box .wpcf7 input[type=color],.input-group-sm>.textfield-box .wpcf7 input[type=date],.input-group-sm>.textfield-box .wpcf7 input[type=datetime-local],.input-group-sm>.textfield-box .wpcf7 input[type=datetime],.input-group-sm>.textfield-box .wpcf7 input[type=email],.input-group-sm>.textfield-box .wpcf7 input[type=file],.input-group-sm>.textfield-box .wpcf7 input[type=month],.input-group-sm>.textfield-box .wpcf7 input[type=number],.input-group-sm>.textfield-box .wpcf7 input[type=range],.input-group-sm>.textfield-box .wpcf7 input[type=search],.input-group-sm>.textfield-box .wpcf7 input[type=submit],.input-group-sm>.textfield-box .wpcf7 input[type=tel],.input-group-sm>.textfield-box .wpcf7 input[type=text],.input-group-sm>.textfield-box .wpcf7 input[type=time],.input-group-sm>.textfield-box .wpcf7 input[type=url],.input-group-sm>.textfield-box .wpcf7 input[type=week],.input-group-sm>.textfield-box .wpcf7 select,.input-group-sm>.textfield-box .wpcf7 textarea,.textfield-box-sm .custom-select,.textfield-box-sm .form-control,.textfield-box-sm .form-control-file,.textfield-box-sm .wpcf7 .wpcf7-validation-errors,.textfield-box-sm .wpcf7 input[type=color],.textfield-box-sm .wpcf7 input[type=date],.textfield-box-sm .wpcf7 input[type=datetime-local],.textfield-box-sm .wpcf7 input[type=datetime],.textfield-box-sm .wpcf7 input[type=email],.textfield-box-sm .wpcf7 input[type=file],.textfield-box-sm .wpcf7 input[type=month],.textfield-box-sm .wpcf7 input[type=number],.textfield-box-sm .wpcf7 input[type=range],.textfield-box-sm .wpcf7 input[type=search],.textfield-box-sm .wpcf7 input[type=submit],.textfield-box-sm .wpcf7 input[type=tel],.textfield-box-sm .wpcf7 input[type=text],.textfield-box-sm .wpcf7 input[type=time],.textfield-box-sm .wpcf7 input[type=url],.textfield-box-sm .wpcf7 input[type=week],.textfield-box-sm .wpcf7 select,.textfield-box-sm .wpcf7 textarea,.wpcf7 .input-group-sm>.textfield-box .wpcf7-validation-errors,.wpcf7 .input-group-sm>.textfield-box input[type=color],.wpcf7 .input-group-sm>.textfield-box input[type=date],.wpcf7 .input-group-sm>.textfield-box input[type=datetime-local],.wpcf7 .input-group-sm>.textfield-box input[type=datetime],.wpcf7 .input-group-sm>.textfield-box input[type=email],.wpcf7 .input-group-sm>.textfield-box input[type=file],.wpcf7 .input-group-sm>.textfield-box input[type=month],.wpcf7 .input-group-sm>.textfield-box input[type=number],.wpcf7 .input-group-sm>.textfield-box input[type=range],.wpcf7 .input-group-sm>.textfield-box input[type=search],.wpcf7 .input-group-sm>.textfield-box input[type=submit],.wpcf7 .input-group-sm>.textfield-box input[type=tel],.wpcf7 .input-group-sm>.textfield-box input[type=text],.wpcf7 .input-group-sm>.textfield-box input[type=time],.wpcf7 .input-group-sm>.textfield-box input[type=url],.wpcf7 .input-group-sm>.textfield-box input[type=week],.wpcf7 .input-group-sm>.textfield-box select,.wpcf7 .input-group-sm>.textfield-box textarea,.wpcf7 .textfield-box-sm .wpcf7-validation-errors,.wpcf7 .textfield-box-sm input[type=color],.wpcf7 .textfield-box-sm input[type=date],.wpcf7 .textfield-box-sm input[type=datetime-local],.wpcf7 .textfield-box-sm input[type=datetime],.wpcf7 .textfield-box-sm input[type=email],.wpcf7 .textfield-box-sm input[type=file],.wpcf7 .textfield-box-sm input[type=month],.wpcf7 .textfield-box-sm input[type=number],.wpcf7 .textfield-box-sm input[type=range],.wpcf7 .textfield-box-sm input[type=search],.wpcf7 .textfield-box-sm input[type=submit],.wpcf7 .textfield-box-sm input[type=tel],.wpcf7 .textfield-box-sm input[type=text],.wpcf7 .textfield-box-sm input[type=time],.wpcf7 .textfield-box-sm input[type=url],.wpcf7 .textfield-box-sm input[type=week],.wpcf7 .textfield-box-sm select,.wpcf7 .textfield-box-sm textarea{font-size:.8125rem;line-height:1.53846;padding:.75rem .75rem calc(.75rem - 1px)}.input-group-sm>.textfield-box .custom-select[multiple],.input-group-sm>.textfield-box .custom-select[size]:not([size='1']),.input-group-sm>.textfield-box .wpcf7 select[multiple],.input-group-sm>.textfield-box .wpcf7 select[size]:not([size='1']),.input-group-sm>.textfield-box .wpcf7 textarea:not([rows='1']),.input-group-sm>.textfield-box select.form-control[multiple],.input-group-sm>.textfield-box select.form-control[size]:not([size='1']),.input-group-sm>.textfield-box textarea.form-control:not([rows='1']),.textfield-box-sm .custom-select[multiple],.textfield-box-sm .custom-select[size]:not([size='1']),.textfield-box-sm .wpcf7 select[multiple],.textfield-box-sm .wpcf7 select[size]:not([size='1']),.textfield-box-sm .wpcf7 textarea:not([rows='1']),.textfield-box-sm select.form-control[multiple],.textfield-box-sm select.form-control[size]:not([size='1']),.textfield-box-sm textarea.form-control:not([rows='1']),.wpcf7 .input-group-sm>.textfield-box select[multiple],.wpcf7 .input-group-sm>.textfield-box select[size]:not([size='1']),.wpcf7 .input-group-sm>.textfield-box textarea:not([rows='1']),.wpcf7 .textfield-box-sm select[multiple],.wpcf7 .textfield-box-sm select[size]:not([size='1']),.wpcf7 .textfield-box-sm textarea:not([rows='1']){padding:.75rem .75rem calc(.75rem - 1px)}.input-group-sm>.textfield-box .wpcf7 textarea,.input-group-sm>.textfield-box textarea.form-control,.textfield-box-sm .wpcf7 textarea,.textfield-box-sm textarea.form-control,.wpcf7 .input-group-sm>.textfield-box textarea,.wpcf7 .textfield-box-sm textarea{min-height:2.75rem}.input-group-sm>.textfield-box .custom-select,.textfield-box-sm .custom-select{padding-right:1.5em}.input-group-sm>.textfield-box .form-control-file,.input-group-sm>.textfield-box .form-control[type=file],.input-group-sm>.textfield-box .wpcf7 .wpcf7-validation-errors[type=file],.input-group-sm>.textfield-box .wpcf7 input[type=file][type=color],.input-group-sm>.textfield-box .wpcf7 input[type=file][type=date],.input-group-sm>.textfield-box .wpcf7 input[type=file][type=datetime-local],.input-group-sm>.textfield-box .wpcf7 input[type=file][type=datetime],.input-group-sm>.textfield-box .wpcf7 input[type=file][type=email],.input-group-sm>.textfield-box .wpcf7 input[type=file][type=file],.input-group-sm>.textfield-box .wpcf7 input[type=file][type=month],.input-group-sm>.textfield-box .wpcf7 input[type=file][type=number],.input-group-sm>.textfield-box .wpcf7 input[type=file][type=range],.input-group-sm>.textfield-box .wpcf7 input[type=file][type=search],.input-group-sm>.textfield-box .wpcf7 input[type=file][type=submit],.input-group-sm>.textfield-box .wpcf7 input[type=file][type=tel],.input-group-sm>.textfield-box .wpcf7 input[type=file][type=text],.input-group-sm>.textfield-box .wpcf7 input[type=file][type=time],.input-group-sm>.textfield-box .wpcf7 input[type=file][type=url],.input-group-sm>.textfield-box .wpcf7 input[type=file][type=week],.input-group-sm>.textfield-box .wpcf7 select[type=file],.input-group-sm>.textfield-box .wpcf7 textarea[type=file],.textfield-box-sm .form-control-file,.textfield-box-sm .form-control[type=file],.textfield-box-sm .wpcf7 .wpcf7-validation-errors[type=file],.textfield-box-sm .wpcf7 input[type=file][type=color],.textfield-box-sm .wpcf7 input[type=file][type=date],.textfield-box-sm .wpcf7 input[type=file][type=datetime-local],.textfield-box-sm .wpcf7 input[type=file][type=datetime],.textfield-box-sm .wpcf7 input[type=file][type=email],.textfield-box-sm .wpcf7 input[type=file][type=file],.textfield-box-sm .wpcf7 input[type=file][type=month],.textfield-box-sm .wpcf7 input[type=file][type=number],.textfield-box-sm .wpcf7 input[type=file][type=range],.textfield-box-sm .wpcf7 input[type=file][type=search],.textfield-box-sm .wpcf7 input[type=file][type=submit],.textfield-box-sm .wpcf7 input[type=file][type=tel],.textfield-box-sm .wpcf7 input[type=file][type=text],.textfield-box-sm .wpcf7 input[type=file][type=time],.textfield-box-sm .wpcf7 input[type=file][type=url],.textfield-box-sm .wpcf7 input[type=file][type=week],.textfield-box-sm .wpcf7 select[type=file],.textfield-box-sm .wpcf7 textarea[type=file],.wpcf7 .input-group-sm>.textfield-box .wpcf7-validation-errors[type=file],.wpcf7 .input-group-sm>.textfield-box input[type=file][type=color],.wpcf7 .input-group-sm>.textfield-box input[type=file][type=date],.wpcf7 .input-group-sm>.textfield-box input[type=file][type=datetime-local],.wpcf7 .input-group-sm>.textfield-box input[type=file][type=datetime],.wpcf7 .input-group-sm>.textfield-box input[type=file][type=email],.wpcf7 .input-group-sm>.textfield-box input[type=file][type=file],.wpcf7 .input-group-sm>.textfield-box input[type=file][type=month],.wpcf7 .input-group-sm>.textfield-box input[type=file][type=number],.wpcf7 .input-group-sm>.textfield-box input[type=file][type=range],.wpcf7 .input-group-sm>.textfield-box input[type=file][type=search],.wpcf7 .input-group-sm>.textfield-box input[type=file][type=submit],.wpcf7 .input-group-sm>.textfield-box input[type=file][type=tel],.wpcf7 .input-group-sm>.textfield-box input[type=file][type=text],.wpcf7 .input-group-sm>.textfield-box input[type=file][type=time],.wpcf7 .input-group-sm>.textfield-box input[type=file][type=url],.wpcf7 .input-group-sm>.textfield-box input[type=file][type=week],.wpcf7 .input-group-sm>.textfield-box select[type=file],.wpcf7 .input-group-sm>.textfield-box textarea[type=file],.wpcf7 .textfield-box-sm .wpcf7-validation-errors[type=file],.wpcf7 .textfield-box-sm input[type=file][type=color],.wpcf7 .textfield-box-sm input[type=file][type=date],.wpcf7 .textfield-box-sm input[type=file][type=datetime-local],.wpcf7 .textfield-box-sm input[type=file][type=datetime],.wpcf7 .textfield-box-sm input[type=file][type=email],.wpcf7 .textfield-box-sm input[type=file][type=file],.wpcf7 .textfield-box-sm input[type=file][type=month],.wpcf7 .textfield-box-sm input[type=file][type=number],.wpcf7 .textfield-box-sm input[type=file][type=range],.wpcf7 .textfield-box-sm input[type=file][type=search],.wpcf7 .textfield-box-sm input[type=file][type=submit],.wpcf7 .textfield-box-sm input[type=file][type=tel],.wpcf7 .textfield-box-sm input[type=file][type=text],.wpcf7 .textfield-box-sm input[type=file][type=time],.wpcf7 .textfield-box-sm input[type=file][type=url],.wpcf7 .textfield-box-sm input[type=file][type=week],.wpcf7 .textfield-box-sm select[type=file],.wpcf7 .textfield-box-sm textarea[type=file]{max-height:2.75rem}.floating-label{padding-top:.75rem;position:relative}.floating-label.has-value label,.floating-label.is-focused label{top:0;-webkit-transform:scale(.75);transform:scale(.75)}.floating-label.is-focused label{color:#f07206}.floating-label:not(.has-value):not(.is-focused) .form-control[type=date],.floating-label:not(.has-value):not(.is-focused) .form-control[type=datetime-local],.floating-label:not(.has-value):not(.is-focused) .form-control[type=time],.floating-label:not(.has-value):not(.is-focused) .wpcf7 .wpcf7-validation-errors[type=date],.floating-label:not(.has-value):not(.is-focused) .wpcf7 .wpcf7-validation-errors[type=datetime-local],.floating-label:not(.has-value):not(.is-focused) .wpcf7 .wpcf7-validation-errors[type=time],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=date][type=color],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=date][type=date],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=date][type=datetime-local],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=date][type=datetime],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=date][type=email],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=date][type=file],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=date][type=month],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=date][type=number],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=date][type=range],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=date][type=search],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=date][type=submit],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=date][type=tel],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=date][type=text],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=date][type=time],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=date][type=url],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=date][type=week],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=datetime-local][type=color],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=datetime-local][type=date],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=datetime-local][type=datetime-local],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=datetime-local][type=datetime],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=datetime-local][type=email],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=datetime-local][type=file],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=datetime-local][type=month],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=datetime-local][type=number],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=datetime-local][type=range],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=datetime-local][type=search],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=datetime-local][type=submit],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=datetime-local][type=tel],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=datetime-local][type=text],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=datetime-local][type=time],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=datetime-local][type=url],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=datetime-local][type=week],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=time][type=color],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=time][type=date],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=time][type=datetime-local],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=time][type=datetime],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=time][type=email],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=time][type=file],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=time][type=month],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=time][type=number],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=time][type=range],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=time][type=search],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=time][type=submit],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=time][type=tel],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=time][type=text],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=time][type=time],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=time][type=url],.floating-label:not(.has-value):not(.is-focused) .wpcf7 input[type=time][type=week],.floating-label:not(.has-value):not(.is-focused) .wpcf7 select[type=date],.floating-label:not(.has-value):not(.is-focused) .wpcf7 select[type=datetime-local],.floating-label:not(.has-value):not(.is-focused) .wpcf7 select[type=time],.floating-label:not(.has-value):not(.is-focused) .wpcf7 textarea[type=date],.floating-label:not(.has-value):not(.is-focused) .wpcf7 textarea[type=datetime-local],.floating-label:not(.has-value):not(.is-focused) .wpcf7 textarea[type=time],.wpcf7 .floating-label:not(.has-value):not(.is-focused) .wpcf7-validation-errors[type=date],.wpcf7 .floating-label:not(.has-value):not(.is-focused) .wpcf7-validation-errors[type=datetime-local],.wpcf7 .floating-label:not(.has-value):not(.is-focused) .wpcf7-validation-errors[type=time],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=date][type=color],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=date][type=date],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=date][type=datetime-local],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=date][type=datetime],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=date][type=email],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=date][type=file],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=date][type=month],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=date][type=number],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=date][type=range],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=date][type=search],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=date][type=submit],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=date][type=tel],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=date][type=text],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=date][type=time],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=date][type=url],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=date][type=week],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=datetime-local][type=color],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=datetime-local][type=date],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=datetime-local][type=datetime-local],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=datetime-local][type=datetime],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=datetime-local][type=email],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=datetime-local][type=file],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=datetime-local][type=month],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=datetime-local][type=number],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=datetime-local][type=range],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=datetime-local][type=search],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=datetime-local][type=submit],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=datetime-local][type=tel],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=datetime-local][type=text],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=datetime-local][type=time],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=datetime-local][type=url],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=datetime-local][type=week],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=time][type=color],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=time][type=date],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=time][type=datetime-local],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=time][type=datetime],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=time][type=email],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=time][type=file],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=time][type=month],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=time][type=number],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=time][type=range],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=time][type=search],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=time][type=submit],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=time][type=tel],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=time][type=text],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=time][type=time],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=time][type=url],.wpcf7 .floating-label:not(.has-value):not(.is-focused) input[type=time][type=week],.wpcf7 .floating-label:not(.has-value):not(.is-focused) select[type=date],.wpcf7 .floating-label:not(.has-value):not(.is-focused) select[type=datetime-local],.wpcf7 .floating-label:not(.has-value):not(.is-focused) select[type=time],.wpcf7 .floating-label:not(.has-value):not(.is-focused) textarea[type=date],.wpcf7 .floating-label:not(.has-value):not(.is-focused) textarea[type=datetime-local],.wpcf7 .floating-label:not(.has-value):not(.is-focused) textarea[type=time]{color:transparent}.floating-label label{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:color,top,-webkit-transform;transition-property:color,top,-webkit-transform;transition-property:color,top,transform;transition-property:color,top,transform,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);color:rgba(0,0,0,.38);display:block;font-size:1rem;line-height:1.5;margin:0;padding:0;position:absolute;top:1.125rem;left:0;-webkit-transform-origin:0 0;transform-origin:0 0}@media (min-width:576px){.floating-label label{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.floating-label label{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.floating-label label{-webkit-transition:none;transition:none}}.floating-label .custom-select,.floating-label .form-control,.floating-label .form-control-file,.floating-label .wpcf7 .wpcf7-validation-errors,.floating-label .wpcf7 input[type=color],.floating-label .wpcf7 input[type=date],.floating-label .wpcf7 input[type=datetime-local],.floating-label .wpcf7 input[type=datetime],.floating-label .wpcf7 input[type=email],.floating-label .wpcf7 input[type=file],.floating-label .wpcf7 input[type=month],.floating-label .wpcf7 input[type=number],.floating-label .wpcf7 input[type=range],.floating-label .wpcf7 input[type=search],.floating-label .wpcf7 input[type=submit],.floating-label .wpcf7 input[type=tel],.floating-label .wpcf7 input[type=text],.floating-label .wpcf7 input[type=time],.floating-label .wpcf7 input[type=url],.floating-label .wpcf7 input[type=week],.floating-label .wpcf7 select,.floating-label .wpcf7 textarea,.wpcf7 .floating-label .wpcf7-validation-errors,.wpcf7 .floating-label input[type=color],.wpcf7 .floating-label input[type=date],.wpcf7 .floating-label input[type=datetime-local],.wpcf7 .floating-label input[type=datetime],.wpcf7 .floating-label input[type=email],.wpcf7 .floating-label input[type=file],.wpcf7 .floating-label input[type=month],.wpcf7 .floating-label input[type=number],.wpcf7 .floating-label input[type=range],.wpcf7 .floating-label input[type=search],.wpcf7 .floating-label input[type=submit],.wpcf7 .floating-label input[type=tel],.wpcf7 .floating-label input[type=text],.wpcf7 .floating-label input[type=time],.wpcf7 .floating-label input[type=url],.wpcf7 .floating-label input[type=week],.wpcf7 .floating-label select,.wpcf7 .floating-label textarea{position:relative}.floating-label .custom-select:focus::-webkit-input-placeholder,.floating-label .form-control-file:focus::-webkit-input-placeholder,.floating-label .form-control:focus::-webkit-input-placeholder,.floating-label .wpcf7 .wpcf7-validation-errors:focus::-webkit-input-placeholder,.floating-label .wpcf7 input[type=color]:focus::-webkit-input-placeholder,.floating-label .wpcf7 input[type=date]:focus::-webkit-input-placeholder,.floating-label .wpcf7 input[type=datetime-local]:focus::-webkit-input-placeholder,.floating-label .wpcf7 input[type=datetime]:focus::-webkit-input-placeholder,.floating-label .wpcf7 input[type=email]:focus::-webkit-input-placeholder,.floating-label .wpcf7 input[type=file]:focus::-webkit-input-placeholder,.floating-label .wpcf7 input[type=month]:focus::-webkit-input-placeholder,.floating-label .wpcf7 input[type=number]:focus::-webkit-input-placeholder,.floating-label .wpcf7 input[type=range]:focus::-webkit-input-placeholder,.floating-label .wpcf7 input[type=search]:focus::-webkit-input-placeholder,.floating-label .wpcf7 input[type=submit]:focus::-webkit-input-placeholder,.floating-label .wpcf7 input[type=tel]:focus::-webkit-input-placeholder,.floating-label .wpcf7 input[type=text]:focus::-webkit-input-placeholder,.floating-label .wpcf7 input[type=time]:focus::-webkit-input-placeholder,.floating-label .wpcf7 input[type=url]:focus::-webkit-input-placeholder,.floating-label .wpcf7 input[type=week]:focus::-webkit-input-placeholder,.floating-label .wpcf7 select:focus::-webkit-input-placeholder,.floating-label .wpcf7 textarea:focus::-webkit-input-placeholder,.wpcf7 .floating-label .wpcf7-validation-errors:focus::-webkit-input-placeholder,.wpcf7 .floating-label input[type=color]:focus::-webkit-input-placeholder,.wpcf7 .floating-label input[type=date]:focus::-webkit-input-placeholder,.wpcf7 .floating-label input[type=datetime-local]:focus::-webkit-input-placeholder,.wpcf7 .floating-label input[type=datetime]:focus::-webkit-input-placeholder,.wpcf7 .floating-label input[type=email]:focus::-webkit-input-placeholder,.wpcf7 .floating-label input[type=file]:focus::-webkit-input-placeholder,.wpcf7 .floating-label input[type=month]:focus::-webkit-input-placeholder,.wpcf7 .floating-label input[type=number]:focus::-webkit-input-placeholder,.wpcf7 .floating-label input[type=range]:focus::-webkit-input-placeholder,.wpcf7 .floating-label input[type=search]:focus::-webkit-input-placeholder,.wpcf7 .floating-label input[type=submit]:focus::-webkit-input-placeholder,.wpcf7 .floating-label input[type=tel]:focus::-webkit-input-placeholder,.wpcf7 .floating-label input[type=text]:focus::-webkit-input-placeholder,.wpcf7 .floating-label input[type=time]:focus::-webkit-input-placeholder,.wpcf7 .floating-label input[type=url]:focus::-webkit-input-placeholder,.wpcf7 .floating-label input[type=week]:focus::-webkit-input-placeholder,.wpcf7 .floating-label select:focus::-webkit-input-placeholder,.wpcf7 .floating-label textarea:focus::-webkit-input-placeholder{color:rgba(0,0,0,.38);opacity:1}.floating-label .custom-select:focus::-ms-input-placeholder,.floating-label .form-control-file:focus::-ms-input-placeholder,.floating-label .form-control:focus::-ms-input-placeholder,.floating-label .wpcf7 .wpcf7-validation-errors:focus::-ms-input-placeholder,.floating-label .wpcf7 input[type=color]:focus::-ms-input-placeholder,.floating-label .wpcf7 input[type=date]:focus::-ms-input-placeholder,.floating-label .wpcf7 input[type=datetime-local]:focus::-ms-input-placeholder,.floating-label .wpcf7 input[type=datetime]:focus::-ms-input-placeholder,.floating-label .wpcf7 input[type=email]:focus::-ms-input-placeholder,.floating-label .wpcf7 input[type=file]:focus::-ms-input-placeholder,.floating-label .wpcf7 input[type=month]:focus::-ms-input-placeholder,.floating-label .wpcf7 input[type=number]:focus::-ms-input-placeholder,.floating-label .wpcf7 input[type=range]:focus::-ms-input-placeholder,.floating-label .wpcf7 input[type=search]:focus::-ms-input-placeholder,.floating-label .wpcf7 input[type=submit]:focus::-ms-input-placeholder,.floating-label .wpcf7 input[type=tel]:focus::-ms-input-placeholder,.floating-label .wpcf7 input[type=text]:focus::-ms-input-placeholder,.floating-label .wpcf7 input[type=time]:focus::-ms-input-placeholder,.floating-label .wpcf7 input[type=url]:focus::-ms-input-placeholder,.floating-label .wpcf7 input[type=week]:focus::-ms-input-placeholder,.floating-label .wpcf7 select:focus::-ms-input-placeholder,.floating-label .wpcf7 textarea:focus::-ms-input-placeholder,.wpcf7 .floating-label .wpcf7-validation-errors:focus::-ms-input-placeholder,.wpcf7 .floating-label input[type=color]:focus::-ms-input-placeholder,.wpcf7 .floating-label input[type=date]:focus::-ms-input-placeholder,.wpcf7 .floating-label input[type=datetime-local]:focus::-ms-input-placeholder,.wpcf7 .floating-label input[type=datetime]:focus::-ms-input-placeholder,.wpcf7 .floating-label input[type=email]:focus::-ms-input-placeholder,.wpcf7 .floating-label input[type=file]:focus::-ms-input-placeholder,.wpcf7 .floating-label input[type=month]:focus::-ms-input-placeholder,.wpcf7 .floating-label input[type=number]:focus::-ms-input-placeholder,.wpcf7 .floating-label input[type=range]:focus::-ms-input-placeholder,.wpcf7 .floating-label input[type=search]:focus::-ms-input-placeholder,.wpcf7 .floating-label input[type=submit]:focus::-ms-input-placeholder,.wpcf7 .floating-label input[type=tel]:focus::-ms-input-placeholder,.wpcf7 .floating-label input[type=text]:focus::-ms-input-placeholder,.wpcf7 .floating-label input[type=time]:focus::-ms-input-placeholder,.wpcf7 .floating-label input[type=url]:focus::-ms-input-placeholder,.wpcf7 .floating-label input[type=week]:focus::-ms-input-placeholder,.wpcf7 .floating-label select:focus::-ms-input-placeholder,.wpcf7 .floating-label textarea:focus::-ms-input-placeholder{color:rgba(0,0,0,.38);opacity:1}.floating-label .custom-select:focus::placeholder,.floating-label .form-control-file:focus::placeholder,.floating-label .form-control:focus::placeholder,.floating-label .wpcf7 .wpcf7-validation-errors:focus::placeholder,.floating-label .wpcf7 input[type=color]:focus::placeholder,.floating-label .wpcf7 input[type=date]:focus::placeholder,.floating-label .wpcf7 input[type=datetime-local]:focus::placeholder,.floating-label .wpcf7 input[type=datetime]:focus::placeholder,.floating-label .wpcf7 input[type=email]:focus::placeholder,.floating-label .wpcf7 input[type=file]:focus::placeholder,.floating-label .wpcf7 input[type=month]:focus::placeholder,.floating-label .wpcf7 input[type=number]:focus::placeholder,.floating-label .wpcf7 input[type=range]:focus::placeholder,.floating-label .wpcf7 input[type=search]:focus::placeholder,.floating-label .wpcf7 input[type=submit]:focus::placeholder,.floating-label .wpcf7 input[type=tel]:focus::placeholder,.floating-label .wpcf7 input[type=text]:focus::placeholder,.floating-label .wpcf7 input[type=time]:focus::placeholder,.floating-label .wpcf7 input[type=url]:focus::placeholder,.floating-label .wpcf7 input[type=week]:focus::placeholder,.floating-label .wpcf7 select:focus::placeholder,.floating-label .wpcf7 textarea:focus::placeholder,.wpcf7 .floating-label .wpcf7-validation-errors:focus::placeholder,.wpcf7 .floating-label input[type=color]:focus::placeholder,.wpcf7 .floating-label input[type=date]:focus::placeholder,.wpcf7 .floating-label input[type=datetime-local]:focus::placeholder,.wpcf7 .floating-label input[type=datetime]:focus::placeholder,.wpcf7 .floating-label input[type=email]:focus::placeholder,.wpcf7 .floating-label input[type=file]:focus::placeholder,.wpcf7 .floating-label input[type=month]:focus::placeholder,.wpcf7 .floating-label input[type=number]:focus::placeholder,.wpcf7 .floating-label input[type=range]:focus::placeholder,.wpcf7 .floating-label input[type=search]:focus::placeholder,.wpcf7 .floating-label input[type=submit]:focus::placeholder,.wpcf7 .floating-label input[type=tel]:focus::placeholder,.wpcf7 .floating-label input[type=text]:focus::placeholder,.wpcf7 .floating-label input[type=time]:focus::placeholder,.wpcf7 .floating-label input[type=url]:focus::placeholder,.wpcf7 .floating-label input[type=week]:focus::placeholder,.wpcf7 .floating-label select:focus::placeholder,.wpcf7 .floating-label textarea:focus::placeholder{color:rgba(0,0,0,.38);opacity:1}.floating-label .custom-select::-webkit-input-placeholder,.floating-label .form-control-file::-webkit-input-placeholder,.floating-label .form-control::-webkit-input-placeholder,.floating-label .wpcf7 .wpcf7-validation-errors::-webkit-input-placeholder,.floating-label .wpcf7 input[type=color]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=date]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=datetime-local]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=datetime]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=email]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=file]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=month]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=number]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=range]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=search]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=submit]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=tel]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=text]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=time]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=url]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=week]::-webkit-input-placeholder,.floating-label .wpcf7 select::-webkit-input-placeholder,.floating-label .wpcf7 textarea::-webkit-input-placeholder,.wpcf7 .floating-label .wpcf7-validation-errors::-webkit-input-placeholder,.wpcf7 .floating-label input[type=color]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=date]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=datetime-local]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=datetime]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=email]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=file]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=month]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=number]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=range]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=search]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=submit]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=tel]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=text]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=time]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=url]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=week]::-webkit-input-placeholder,.wpcf7 .floating-label select::-webkit-input-placeholder,.wpcf7 .floating-label textarea::-webkit-input-placeholder{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);color:transparent;opacity:0}.floating-label .custom-select::-ms-input-placeholder,.floating-label .form-control-file::-ms-input-placeholder,.floating-label .form-control::-ms-input-placeholder,.floating-label .wpcf7 .wpcf7-validation-errors::-ms-input-placeholder,.floating-label .wpcf7 input[type=color]::-ms-input-placeholder,.floating-label .wpcf7 input[type=date]::-ms-input-placeholder,.floating-label .wpcf7 input[type=datetime-local]::-ms-input-placeholder,.floating-label .wpcf7 input[type=datetime]::-ms-input-placeholder,.floating-label .wpcf7 input[type=email]::-ms-input-placeholder,.floating-label .wpcf7 input[type=file]::-ms-input-placeholder,.floating-label .wpcf7 input[type=month]::-ms-input-placeholder,.floating-label .wpcf7 input[type=number]::-ms-input-placeholder,.floating-label .wpcf7 input[type=range]::-ms-input-placeholder,.floating-label .wpcf7 input[type=search]::-ms-input-placeholder,.floating-label .wpcf7 input[type=submit]::-ms-input-placeholder,.floating-label .wpcf7 input[type=tel]::-ms-input-placeholder,.floating-label .wpcf7 input[type=text]::-ms-input-placeholder,.floating-label .wpcf7 input[type=time]::-ms-input-placeholder,.floating-label .wpcf7 input[type=url]::-ms-input-placeholder,.floating-label .wpcf7 input[type=week]::-ms-input-placeholder,.floating-label .wpcf7 select::-ms-input-placeholder,.floating-label .wpcf7 textarea::-ms-input-placeholder,.wpcf7 .floating-label .wpcf7-validation-errors::-ms-input-placeholder,.wpcf7 .floating-label input[type=color]::-ms-input-placeholder,.wpcf7 .floating-label input[type=date]::-ms-input-placeholder,.wpcf7 .floating-label input[type=datetime-local]::-ms-input-placeholder,.wpcf7 .floating-label input[type=datetime]::-ms-input-placeholder,.wpcf7 .floating-label input[type=email]::-ms-input-placeholder,.wpcf7 .floating-label input[type=file]::-ms-input-placeholder,.wpcf7 .floating-label input[type=month]::-ms-input-placeholder,.wpcf7 .floating-label input[type=number]::-ms-input-placeholder,.wpcf7 .floating-label input[type=range]::-ms-input-placeholder,.wpcf7 .floating-label input[type=search]::-ms-input-placeholder,.wpcf7 .floating-label input[type=submit]::-ms-input-placeholder,.wpcf7 .floating-label input[type=tel]::-ms-input-placeholder,.wpcf7 .floating-label input[type=text]::-ms-input-placeholder,.wpcf7 .floating-label input[type=time]::-ms-input-placeholder,.wpcf7 .floating-label input[type=url]::-ms-input-placeholder,.wpcf7 .floating-label input[type=week]::-ms-input-placeholder,.wpcf7 .floating-label select::-ms-input-placeholder,.wpcf7 .floating-label textarea::-ms-input-placeholder{transition-duration:.3s;-webkit-transition-property:opacity;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);color:transparent;opacity:0}.floating-label .custom-select::placeholder,.floating-label .form-control-file::placeholder,.floating-label .form-control::placeholder,.floating-label .wpcf7 .wpcf7-validation-errors::placeholder,.floating-label .wpcf7 input[type=color]::placeholder,.floating-label .wpcf7 input[type=date]::placeholder,.floating-label .wpcf7 input[type=datetime-local]::placeholder,.floating-label .wpcf7 input[type=datetime]::placeholder,.floating-label .wpcf7 input[type=email]::placeholder,.floating-label .wpcf7 input[type=file]::placeholder,.floating-label .wpcf7 input[type=month]::placeholder,.floating-label .wpcf7 input[type=number]::placeholder,.floating-label .wpcf7 input[type=range]::placeholder,.floating-label .wpcf7 input[type=search]::placeholder,.floating-label .wpcf7 input[type=submit]::placeholder,.floating-label .wpcf7 input[type=tel]::placeholder,.floating-label .wpcf7 input[type=text]::placeholder,.floating-label .wpcf7 input[type=time]::placeholder,.floating-label .wpcf7 input[type=url]::placeholder,.floating-label .wpcf7 input[type=week]::placeholder,.floating-label .wpcf7 select::placeholder,.floating-label .wpcf7 textarea::placeholder,.wpcf7 .floating-label .wpcf7-validation-errors::placeholder,.wpcf7 .floating-label input[type=color]::placeholder,.wpcf7 .floating-label input[type=date]::placeholder,.wpcf7 .floating-label input[type=datetime-local]::placeholder,.wpcf7 .floating-label input[type=datetime]::placeholder,.wpcf7 .floating-label input[type=email]::placeholder,.wpcf7 .floating-label input[type=file]::placeholder,.wpcf7 .floating-label input[type=month]::placeholder,.wpcf7 .floating-label input[type=number]::placeholder,.wpcf7 .floating-label input[type=range]::placeholder,.wpcf7 .floating-label input[type=search]::placeholder,.wpcf7 .floating-label input[type=submit]::placeholder,.wpcf7 .floating-label input[type=tel]::placeholder,.wpcf7 .floating-label input[type=text]::placeholder,.wpcf7 .floating-label input[type=time]::placeholder,.wpcf7 .floating-label input[type=url]::placeholder,.wpcf7 .floating-label input[type=week]::placeholder,.wpcf7 .floating-label select::placeholder,.wpcf7 .floating-label textarea::placeholder{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);color:transparent;opacity:0}@media (min-width:576px){.floating-label .custom-select::-webkit-input-placeholder,.floating-label .form-control-file::-webkit-input-placeholder,.floating-label .form-control::-webkit-input-placeholder,.floating-label .wpcf7 .wpcf7-validation-errors::-webkit-input-placeholder,.floating-label .wpcf7 input[type=color]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=date]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=datetime-local]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=datetime]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=email]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=file]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=month]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=number]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=range]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=search]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=submit]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=tel]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=text]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=time]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=url]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=week]::-webkit-input-placeholder,.floating-label .wpcf7 select::-webkit-input-placeholder,.floating-label .wpcf7 textarea::-webkit-input-placeholder,.wpcf7 .floating-label .wpcf7-validation-errors::-webkit-input-placeholder,.wpcf7 .floating-label input[type=color]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=date]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=datetime-local]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=datetime]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=email]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=file]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=month]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=number]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=range]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=search]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=submit]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=tel]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=text]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=time]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=url]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=week]::-webkit-input-placeholder,.wpcf7 .floating-label select::-webkit-input-placeholder,.wpcf7 .floating-label textarea::-webkit-input-placeholder{-webkit-transition-duration:.39s;transition-duration:.39s}.floating-label .custom-select::-ms-input-placeholder,.floating-label .form-control-file::-ms-input-placeholder,.floating-label .form-control::-ms-input-placeholder,.floating-label .wpcf7 .wpcf7-validation-errors::-ms-input-placeholder,.floating-label .wpcf7 input[type=color]::-ms-input-placeholder,.floating-label .wpcf7 input[type=date]::-ms-input-placeholder,.floating-label .wpcf7 input[type=datetime-local]::-ms-input-placeholder,.floating-label .wpcf7 input[type=datetime]::-ms-input-placeholder,.floating-label .wpcf7 input[type=email]::-ms-input-placeholder,.floating-label .wpcf7 input[type=file]::-ms-input-placeholder,.floating-label .wpcf7 input[type=month]::-ms-input-placeholder,.floating-label .wpcf7 input[type=number]::-ms-input-placeholder,.floating-label .wpcf7 input[type=range]::-ms-input-placeholder,.floating-label .wpcf7 input[type=search]::-ms-input-placeholder,.floating-label .wpcf7 input[type=submit]::-ms-input-placeholder,.floating-label .wpcf7 input[type=tel]::-ms-input-placeholder,.floating-label .wpcf7 input[type=text]::-ms-input-placeholder,.floating-label .wpcf7 input[type=time]::-ms-input-placeholder,.floating-label .wpcf7 input[type=url]::-ms-input-placeholder,.floating-label .wpcf7 input[type=week]::-ms-input-placeholder,.floating-label .wpcf7 select::-ms-input-placeholder,.floating-label .wpcf7 textarea::-ms-input-placeholder,.wpcf7 .floating-label .wpcf7-validation-errors::-ms-input-placeholder,.wpcf7 .floating-label input[type=color]::-ms-input-placeholder,.wpcf7 .floating-label input[type=date]::-ms-input-placeholder,.wpcf7 .floating-label input[type=datetime-local]::-ms-input-placeholder,.wpcf7 .floating-label input[type=datetime]::-ms-input-placeholder,.wpcf7 .floating-label input[type=email]::-ms-input-placeholder,.wpcf7 .floating-label input[type=file]::-ms-input-placeholder,.wpcf7 .floating-label input[type=month]::-ms-input-placeholder,.wpcf7 .floating-label input[type=number]::-ms-input-placeholder,.wpcf7 .floating-label input[type=range]::-ms-input-placeholder,.wpcf7 .floating-label input[type=search]::-ms-input-placeholder,.wpcf7 .floating-label input[type=submit]::-ms-input-placeholder,.wpcf7 .floating-label input[type=tel]::-ms-input-placeholder,.wpcf7 .floating-label input[type=text]::-ms-input-placeholder,.wpcf7 .floating-label input[type=time]::-ms-input-placeholder,.wpcf7 .floating-label input[type=url]::-ms-input-placeholder,.wpcf7 .floating-label input[type=week]::-ms-input-placeholder,.wpcf7 .floating-label select::-ms-input-placeholder,.wpcf7 .floating-label textarea::-ms-input-placeholder{transition-duration:.39s}.floating-label .custom-select::placeholder,.floating-label .form-control-file::placeholder,.floating-label .form-control::placeholder,.floating-label .wpcf7 .wpcf7-validation-errors::placeholder,.floating-label .wpcf7 input[type=color]::placeholder,.floating-label .wpcf7 input[type=date]::placeholder,.floating-label .wpcf7 input[type=datetime-local]::placeholder,.floating-label .wpcf7 input[type=datetime]::placeholder,.floating-label .wpcf7 input[type=email]::placeholder,.floating-label .wpcf7 input[type=file]::placeholder,.floating-label .wpcf7 input[type=month]::placeholder,.floating-label .wpcf7 input[type=number]::placeholder,.floating-label .wpcf7 input[type=range]::placeholder,.floating-label .wpcf7 input[type=search]::placeholder,.floating-label .wpcf7 input[type=submit]::placeholder,.floating-label .wpcf7 input[type=tel]::placeholder,.floating-label .wpcf7 input[type=text]::placeholder,.floating-label .wpcf7 input[type=time]::placeholder,.floating-label .wpcf7 input[type=url]::placeholder,.floating-label .wpcf7 input[type=week]::placeholder,.floating-label .wpcf7 select::placeholder,.floating-label .wpcf7 textarea::placeholder,.wpcf7 .floating-label .wpcf7-validation-errors::placeholder,.wpcf7 .floating-label input[type=color]::placeholder,.wpcf7 .floating-label input[type=date]::placeholder,.wpcf7 .floating-label input[type=datetime-local]::placeholder,.wpcf7 .floating-label input[type=datetime]::placeholder,.wpcf7 .floating-label input[type=email]::placeholder,.wpcf7 .floating-label input[type=file]::placeholder,.wpcf7 .floating-label input[type=month]::placeholder,.wpcf7 .floating-label input[type=number]::placeholder,.wpcf7 .floating-label input[type=range]::placeholder,.wpcf7 .floating-label input[type=search]::placeholder,.wpcf7 .floating-label input[type=submit]::placeholder,.wpcf7 .floating-label input[type=tel]::placeholder,.wpcf7 .floating-label input[type=text]::placeholder,.wpcf7 .floating-label input[type=time]::placeholder,.wpcf7 .floating-label input[type=url]::placeholder,.wpcf7 .floating-label input[type=week]::placeholder,.wpcf7 .floating-label select::placeholder,.wpcf7 .floating-label textarea::placeholder{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.floating-label .custom-select::-webkit-input-placeholder,.floating-label .form-control-file::-webkit-input-placeholder,.floating-label .form-control::-webkit-input-placeholder,.floating-label .wpcf7 .wpcf7-validation-errors::-webkit-input-placeholder,.floating-label .wpcf7 input[type=color]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=date]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=datetime-local]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=datetime]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=email]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=file]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=month]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=number]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=range]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=search]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=submit]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=tel]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=text]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=time]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=url]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=week]::-webkit-input-placeholder,.floating-label .wpcf7 select::-webkit-input-placeholder,.floating-label .wpcf7 textarea::-webkit-input-placeholder,.wpcf7 .floating-label .wpcf7-validation-errors::-webkit-input-placeholder,.wpcf7 .floating-label input[type=color]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=date]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=datetime-local]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=datetime]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=email]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=file]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=month]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=number]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=range]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=search]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=submit]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=tel]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=text]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=time]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=url]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=week]::-webkit-input-placeholder,.wpcf7 .floating-label select::-webkit-input-placeholder,.wpcf7 .floating-label textarea::-webkit-input-placeholder{-webkit-transition-duration:.2s;transition-duration:.2s}.floating-label .custom-select::-ms-input-placeholder,.floating-label .form-control-file::-ms-input-placeholder,.floating-label .form-control::-ms-input-placeholder,.floating-label .wpcf7 .wpcf7-validation-errors::-ms-input-placeholder,.floating-label .wpcf7 input[type=color]::-ms-input-placeholder,.floating-label .wpcf7 input[type=date]::-ms-input-placeholder,.floating-label .wpcf7 input[type=datetime-local]::-ms-input-placeholder,.floating-label .wpcf7 input[type=datetime]::-ms-input-placeholder,.floating-label .wpcf7 input[type=email]::-ms-input-placeholder,.floating-label .wpcf7 input[type=file]::-ms-input-placeholder,.floating-label .wpcf7 input[type=month]::-ms-input-placeholder,.floating-label .wpcf7 input[type=number]::-ms-input-placeholder,.floating-label .wpcf7 input[type=range]::-ms-input-placeholder,.floating-label .wpcf7 input[type=search]::-ms-input-placeholder,.floating-label .wpcf7 input[type=submit]::-ms-input-placeholder,.floating-label .wpcf7 input[type=tel]::-ms-input-placeholder,.floating-label .wpcf7 input[type=text]::-ms-input-placeholder,.floating-label .wpcf7 input[type=time]::-ms-input-placeholder,.floating-label .wpcf7 input[type=url]::-ms-input-placeholder,.floating-label .wpcf7 input[type=week]::-ms-input-placeholder,.floating-label .wpcf7 select::-ms-input-placeholder,.floating-label .wpcf7 textarea::-ms-input-placeholder,.wpcf7 .floating-label .wpcf7-validation-errors::-ms-input-placeholder,.wpcf7 .floating-label input[type=color]::-ms-input-placeholder,.wpcf7 .floating-label input[type=date]::-ms-input-placeholder,.wpcf7 .floating-label input[type=datetime-local]::-ms-input-placeholder,.wpcf7 .floating-label input[type=datetime]::-ms-input-placeholder,.wpcf7 .floating-label input[type=email]::-ms-input-placeholder,.wpcf7 .floating-label input[type=file]::-ms-input-placeholder,.wpcf7 .floating-label input[type=month]::-ms-input-placeholder,.wpcf7 .floating-label input[type=number]::-ms-input-placeholder,.wpcf7 .floating-label input[type=range]::-ms-input-placeholder,.wpcf7 .floating-label input[type=search]::-ms-input-placeholder,.wpcf7 .floating-label input[type=submit]::-ms-input-placeholder,.wpcf7 .floating-label input[type=tel]::-ms-input-placeholder,.wpcf7 .floating-label input[type=text]::-ms-input-placeholder,.wpcf7 .floating-label input[type=time]::-ms-input-placeholder,.wpcf7 .floating-label input[type=url]::-ms-input-placeholder,.wpcf7 .floating-label input[type=week]::-ms-input-placeholder,.wpcf7 .floating-label select::-ms-input-placeholder,.wpcf7 .floating-label textarea::-ms-input-placeholder{transition-duration:.2s}.floating-label .custom-select::placeholder,.floating-label .form-control-file::placeholder,.floating-label .form-control::placeholder,.floating-label .wpcf7 .wpcf7-validation-errors::placeholder,.floating-label .wpcf7 input[type=color]::placeholder,.floating-label .wpcf7 input[type=date]::placeholder,.floating-label .wpcf7 input[type=datetime-local]::placeholder,.floating-label .wpcf7 input[type=datetime]::placeholder,.floating-label .wpcf7 input[type=email]::placeholder,.floating-label .wpcf7 input[type=file]::placeholder,.floating-label .wpcf7 input[type=month]::placeholder,.floating-label .wpcf7 input[type=number]::placeholder,.floating-label .wpcf7 input[type=range]::placeholder,.floating-label .wpcf7 input[type=search]::placeholder,.floating-label .wpcf7 input[type=submit]::placeholder,.floating-label .wpcf7 input[type=tel]::placeholder,.floating-label .wpcf7 input[type=text]::placeholder,.floating-label .wpcf7 input[type=time]::placeholder,.floating-label .wpcf7 input[type=url]::placeholder,.floating-label .wpcf7 input[type=week]::placeholder,.floating-label .wpcf7 select::placeholder,.floating-label .wpcf7 textarea::placeholder,.wpcf7 .floating-label .wpcf7-validation-errors::placeholder,.wpcf7 .floating-label input[type=color]::placeholder,.wpcf7 .floating-label input[type=date]::placeholder,.wpcf7 .floating-label input[type=datetime-local]::placeholder,.wpcf7 .floating-label input[type=datetime]::placeholder,.wpcf7 .floating-label input[type=email]::placeholder,.wpcf7 .floating-label input[type=file]::placeholder,.wpcf7 .floating-label input[type=month]::placeholder,.wpcf7 .floating-label input[type=number]::placeholder,.wpcf7 .floating-label input[type=range]::placeholder,.wpcf7 .floating-label input[type=search]::placeholder,.wpcf7 .floating-label input[type=submit]::placeholder,.wpcf7 .floating-label input[type=tel]::placeholder,.wpcf7 .floating-label input[type=text]::placeholder,.wpcf7 .floating-label input[type=time]::placeholder,.wpcf7 .floating-label input[type=url]::placeholder,.wpcf7 .floating-label input[type=week]::placeholder,.wpcf7 .floating-label select::placeholder,.wpcf7 .floating-label textarea::placeholder{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.floating-label .custom-select::-webkit-input-placeholder,.floating-label .form-control-file::-webkit-input-placeholder,.floating-label .form-control::-webkit-input-placeholder,.floating-label .wpcf7 .wpcf7-validation-errors::-webkit-input-placeholder,.floating-label .wpcf7 input[type=color]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=date]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=datetime-local]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=datetime]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=email]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=file]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=month]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=number]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=range]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=search]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=submit]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=tel]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=text]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=time]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=url]::-webkit-input-placeholder,.floating-label .wpcf7 input[type=week]::-webkit-input-placeholder,.floating-label .wpcf7 select::-webkit-input-placeholder,.floating-label .wpcf7 textarea::-webkit-input-placeholder,.wpcf7 .floating-label .wpcf7-validation-errors::-webkit-input-placeholder,.wpcf7 .floating-label input[type=color]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=date]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=datetime-local]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=datetime]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=email]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=file]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=month]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=number]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=range]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=search]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=submit]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=tel]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=text]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=time]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=url]::-webkit-input-placeholder,.wpcf7 .floating-label input[type=week]::-webkit-input-placeholder,.wpcf7 .floating-label select::-webkit-input-placeholder,.wpcf7 .floating-label textarea::-webkit-input-placeholder{-webkit-transition:none;transition:none}.floating-label .custom-select::-ms-input-placeholder,.floating-label .form-control-file::-ms-input-placeholder,.floating-label .form-control::-ms-input-placeholder,.floating-label .wpcf7 .wpcf7-validation-errors::-ms-input-placeholder,.floating-label .wpcf7 input[type=color]::-ms-input-placeholder,.floating-label .wpcf7 input[type=date]::-ms-input-placeholder,.floating-label .wpcf7 input[type=datetime-local]::-ms-input-placeholder,.floating-label .wpcf7 input[type=datetime]::-ms-input-placeholder,.floating-label .wpcf7 input[type=email]::-ms-input-placeholder,.floating-label .wpcf7 input[type=file]::-ms-input-placeholder,.floating-label .wpcf7 input[type=month]::-ms-input-placeholder,.floating-label .wpcf7 input[type=number]::-ms-input-placeholder,.floating-label .wpcf7 input[type=range]::-ms-input-placeholder,.floating-label .wpcf7 input[type=search]::-ms-input-placeholder,.floating-label .wpcf7 input[type=submit]::-ms-input-placeholder,.floating-label .wpcf7 input[type=tel]::-ms-input-placeholder,.floating-label .wpcf7 input[type=text]::-ms-input-placeholder,.floating-label .wpcf7 input[type=time]::-ms-input-placeholder,.floating-label .wpcf7 input[type=url]::-ms-input-placeholder,.floating-label .wpcf7 input[type=week]::-ms-input-placeholder,.floating-label .wpcf7 select::-ms-input-placeholder,.floating-label .wpcf7 textarea::-ms-input-placeholder,.wpcf7 .floating-label .wpcf7-validation-errors::-ms-input-placeholder,.wpcf7 .floating-label input[type=color]::-ms-input-placeholder,.wpcf7 .floating-label input[type=date]::-ms-input-placeholder,.wpcf7 .floating-label input[type=datetime-local]::-ms-input-placeholder,.wpcf7 .floating-label input[type=datetime]::-ms-input-placeholder,.wpcf7 .floating-label input[type=email]::-ms-input-placeholder,.wpcf7 .floating-label input[type=file]::-ms-input-placeholder,.wpcf7 .floating-label input[type=month]::-ms-input-placeholder,.wpcf7 .floating-label input[type=number]::-ms-input-placeholder,.wpcf7 .floating-label input[type=range]::-ms-input-placeholder,.wpcf7 .floating-label input[type=search]::-ms-input-placeholder,.wpcf7 .floating-label input[type=submit]::-ms-input-placeholder,.wpcf7 .floating-label input[type=tel]::-ms-input-placeholder,.wpcf7 .floating-label input[type=text]::-ms-input-placeholder,.wpcf7 .floating-label input[type=time]::-ms-input-placeholder,.wpcf7 .floating-label input[type=url]::-ms-input-placeholder,.wpcf7 .floating-label input[type=week]::-ms-input-placeholder,.wpcf7 .floating-label select::-ms-input-placeholder,.wpcf7 .floating-label textarea::-ms-input-placeholder{-webkit-transition:none;transition:none}.floating-label .custom-select::placeholder,.floating-label .form-control-file::placeholder,.floating-label .form-control::placeholder,.floating-label .wpcf7 .wpcf7-validation-errors::placeholder,.floating-label .wpcf7 input[type=color]::placeholder,.floating-label .wpcf7 input[type=date]::placeholder,.floating-label .wpcf7 input[type=datetime-local]::placeholder,.floating-label .wpcf7 input[type=datetime]::placeholder,.floating-label .wpcf7 input[type=email]::placeholder,.floating-label .wpcf7 input[type=file]::placeholder,.floating-label .wpcf7 input[type=month]::placeholder,.floating-label .wpcf7 input[type=number]::placeholder,.floating-label .wpcf7 input[type=range]::placeholder,.floating-label .wpcf7 input[type=search]::placeholder,.floating-label .wpcf7 input[type=submit]::placeholder,.floating-label .wpcf7 input[type=tel]::placeholder,.floating-label .wpcf7 input[type=text]::placeholder,.floating-label .wpcf7 input[type=time]::placeholder,.floating-label .wpcf7 input[type=url]::placeholder,.floating-label .wpcf7 input[type=week]::placeholder,.floating-label .wpcf7 select::placeholder,.floating-label .wpcf7 textarea::placeholder,.wpcf7 .floating-label .wpcf7-validation-errors::placeholder,.wpcf7 .floating-label input[type=color]::placeholder,.wpcf7 .floating-label input[type=date]::placeholder,.wpcf7 .floating-label input[type=datetime-local]::placeholder,.wpcf7 .floating-label input[type=datetime]::placeholder,.wpcf7 .floating-label input[type=email]::placeholder,.wpcf7 .floating-label input[type=file]::placeholder,.wpcf7 .floating-label input[type=month]::placeholder,.wpcf7 .floating-label input[type=number]::placeholder,.wpcf7 .floating-label input[type=range]::placeholder,.wpcf7 .floating-label input[type=search]::placeholder,.wpcf7 .floating-label input[type=submit]::placeholder,.wpcf7 .floating-label input[type=tel]::placeholder,.wpcf7 .floating-label input[type=text]::placeholder,.wpcf7 .floating-label input[type=time]::placeholder,.wpcf7 .floating-label input[type=url]::placeholder,.wpcf7 .floating-label input[type=week]::placeholder,.wpcf7 .floating-label select::placeholder,.wpcf7 .floating-label textarea::placeholder{-webkit-transition:none;transition:none}}.floating-label-lg.has-value label,.floating-label-lg.is-focused label,.input-group-lg>.has-value.floating-label label,.input-group-lg>.is-focused.floating-label label{-webkit-transform:scale(.41176);transform:scale(.41176)}.floating-label-lg label,.input-group-lg>.floating-label label{font-size:2.125rem;line-height:1.17647;top:1.5rem}.floating-label-lg .custom-select,.floating-label-lg .form-control,.floating-label-lg .form-control-file,.floating-label-lg .wpcf7 .wpcf7-validation-errors,.floating-label-lg .wpcf7 input[type=color],.floating-label-lg .wpcf7 input[type=date],.floating-label-lg .wpcf7 input[type=datetime-local],.floating-label-lg .wpcf7 input[type=datetime],.floating-label-lg .wpcf7 input[type=email],.floating-label-lg .wpcf7 input[type=file],.floating-label-lg .wpcf7 input[type=month],.floating-label-lg .wpcf7 input[type=number],.floating-label-lg .wpcf7 input[type=range],.floating-label-lg .wpcf7 input[type=search],.floating-label-lg .wpcf7 input[type=submit],.floating-label-lg .wpcf7 input[type=tel],.floating-label-lg .wpcf7 input[type=text],.floating-label-lg .wpcf7 input[type=time],.floating-label-lg .wpcf7 input[type=url],.floating-label-lg .wpcf7 input[type=week],.floating-label-lg .wpcf7 select,.floating-label-lg .wpcf7 textarea,.input-group-lg>.floating-label .custom-select,.input-group-lg>.floating-label .form-control,.input-group-lg>.floating-label .form-control-file,.input-group-lg>.floating-label .wpcf7 .wpcf7-validation-errors,.input-group-lg>.floating-label .wpcf7 input[type=color],.input-group-lg>.floating-label .wpcf7 input[type=date],.input-group-lg>.floating-label .wpcf7 input[type=datetime-local],.input-group-lg>.floating-label .wpcf7 input[type=datetime],.input-group-lg>.floating-label .wpcf7 input[type=email],.input-group-lg>.floating-label .wpcf7 input[type=file],.input-group-lg>.floating-label .wpcf7 input[type=month],.input-group-lg>.floating-label .wpcf7 input[type=number],.input-group-lg>.floating-label .wpcf7 input[type=range],.input-group-lg>.floating-label .wpcf7 input[type=search],.input-group-lg>.floating-label .wpcf7 input[type=submit],.input-group-lg>.floating-label .wpcf7 input[type=tel],.input-group-lg>.floating-label .wpcf7 input[type=text],.input-group-lg>.floating-label .wpcf7 input[type=time],.input-group-lg>.floating-label .wpcf7 input[type=url],.input-group-lg>.floating-label .wpcf7 input[type=week],.input-group-lg>.floating-label .wpcf7 select,.input-group-lg>.floating-label .wpcf7 textarea,.wpcf7 .floating-label-lg .wpcf7-validation-errors,.wpcf7 .floating-label-lg input[type=color],.wpcf7 .floating-label-lg input[type=date],.wpcf7 .floating-label-lg input[type=datetime-local],.wpcf7 .floating-label-lg input[type=datetime],.wpcf7 .floating-label-lg input[type=email],.wpcf7 .floating-label-lg input[type=file],.wpcf7 .floating-label-lg input[type=month],.wpcf7 .floating-label-lg input[type=number],.wpcf7 .floating-label-lg input[type=range],.wpcf7 .floating-label-lg input[type=search],.wpcf7 .floating-label-lg input[type=submit],.wpcf7 .floating-label-lg input[type=tel],.wpcf7 .floating-label-lg input[type=text],.wpcf7 .floating-label-lg input[type=time],.wpcf7 .floating-label-lg input[type=url],.wpcf7 .floating-label-lg input[type=week],.wpcf7 .floating-label-lg select,.wpcf7 .floating-label-lg textarea,.wpcf7 .input-group-lg>.floating-label .wpcf7-validation-errors,.wpcf7 .input-group-lg>.floating-label input[type=color],.wpcf7 .input-group-lg>.floating-label input[type=date],.wpcf7 .input-group-lg>.floating-label input[type=datetime-local],.wpcf7 .input-group-lg>.floating-label input[type=datetime],.wpcf7 .input-group-lg>.floating-label input[type=email],.wpcf7 .input-group-lg>.floating-label input[type=file],.wpcf7 .input-group-lg>.floating-label input[type=month],.wpcf7 .input-group-lg>.floating-label input[type=number],.wpcf7 .input-group-lg>.floating-label input[type=range],.wpcf7 .input-group-lg>.floating-label input[type=search],.wpcf7 .input-group-lg>.floating-label input[type=submit],.wpcf7 .input-group-lg>.floating-label input[type=tel],.wpcf7 .input-group-lg>.floating-label input[type=text],.wpcf7 .input-group-lg>.floating-label input[type=time],.wpcf7 .input-group-lg>.floating-label input[type=url],.wpcf7 .input-group-lg>.floating-label input[type=week],.wpcf7 .input-group-lg>.floating-label select,.wpcf7 .input-group-lg>.floating-label textarea{font-size:2.125rem;line-height:1.17647;padding:.625rem 0 calc(.625rem - 1px)}.floating-label-lg .custom-select,.floating-label-lg .wpcf7 select,.floating-label-lg select.form-control,.input-group-lg>.floating-label .custom-select,.input-group-lg>.floating-label .wpcf7 select,.input-group-lg>.floating-label select.form-control,.wpcf7 .floating-label-lg select,.wpcf7 .input-group-lg>.floating-label select{padding-right:1.5em}.floating-label-lg .custom-select[multiple],.floating-label-lg .custom-select[size]:not([size='1']),.floating-label-lg .wpcf7 select[multiple],.floating-label-lg .wpcf7 select[size]:not([size='1']),.floating-label-lg .wpcf7 textarea:not([rows='1']),.floating-label-lg select.form-control[multiple],.floating-label-lg select.form-control[size]:not([size='1']),.floating-label-lg textarea.form-control:not([rows='1']),.input-group-lg>.floating-label .custom-select[multiple],.input-group-lg>.floating-label .custom-select[size]:not([size='1']),.input-group-lg>.floating-label .wpcf7 select[multiple],.input-group-lg>.floating-label .wpcf7 select[size]:not([size='1']),.input-group-lg>.floating-label .wpcf7 textarea:not([rows='1']),.input-group-lg>.floating-label select.form-control[multiple],.input-group-lg>.floating-label select.form-control[size]:not([size='1']),.input-group-lg>.floating-label textarea.form-control:not([rows='1']),.wpcf7 .floating-label-lg select[multiple],.wpcf7 .floating-label-lg select[size]:not([size='1']),.wpcf7 .floating-label-lg textarea:not([rows='1']),.wpcf7 .input-group-lg>.floating-label select[multiple],.wpcf7 .input-group-lg>.floating-label select[size]:not([size='1']),.wpcf7 .input-group-lg>.floating-label textarea:not([rows='1']){padding:.875rem 1rem calc(.875rem - 1px)}.floating-label-sm.has-value label,.floating-label-sm.is-focused label,.input-group-sm>.has-value.floating-label label,.input-group-sm>.is-focused.floating-label label{-webkit-transform:scale(.76923);transform:scale(.76923)}.floating-label-sm label,.input-group-sm>.floating-label label{font-size:.8125rem;line-height:1.53846;top:1rem}.floating-label-sm .custom-select,.floating-label-sm .form-control,.floating-label-sm .form-control-file,.floating-label-sm .wpcf7 .wpcf7-validation-errors,.floating-label-sm .wpcf7 input[type=color],.floating-label-sm .wpcf7 input[type=date],.floating-label-sm .wpcf7 input[type=datetime-local],.floating-label-sm .wpcf7 input[type=datetime],.floating-label-sm .wpcf7 input[type=email],.floating-label-sm .wpcf7 input[type=file],.floating-label-sm .wpcf7 input[type=month],.floating-label-sm .wpcf7 input[type=number],.floating-label-sm .wpcf7 input[type=range],.floating-label-sm .wpcf7 input[type=search],.floating-label-sm .wpcf7 input[type=submit],.floating-label-sm .wpcf7 input[type=tel],.floating-label-sm .wpcf7 input[type=text],.floating-label-sm .wpcf7 input[type=time],.floating-label-sm .wpcf7 input[type=url],.floating-label-sm .wpcf7 input[type=week],.floating-label-sm .wpcf7 select,.floating-label-sm .wpcf7 textarea,.input-group-sm>.floating-label .custom-select,.input-group-sm>.floating-label .form-control,.input-group-sm>.floating-label .form-control-file,.input-group-sm>.floating-label .wpcf7 .wpcf7-validation-errors,.input-group-sm>.floating-label .wpcf7 input[type=color],.input-group-sm>.floating-label .wpcf7 input[type=date],.input-group-sm>.floating-label .wpcf7 input[type=datetime-local],.input-group-sm>.floating-label .wpcf7 input[type=datetime],.input-group-sm>.floating-label .wpcf7 input[type=email],.input-group-sm>.floating-label .wpcf7 input[type=file],.input-group-sm>.floating-label .wpcf7 input[type=month],.input-group-sm>.floating-label .wpcf7 input[type=number],.input-group-sm>.floating-label .wpcf7 input[type=range],.input-group-sm>.floating-label .wpcf7 input[type=search],.input-group-sm>.floating-label .wpcf7 input[type=submit],.input-group-sm>.floating-label .wpcf7 input[type=tel],.input-group-sm>.floating-label .wpcf7 input[type=text],.input-group-sm>.floating-label .wpcf7 input[type=time],.input-group-sm>.floating-label .wpcf7 input[type=url],.input-group-sm>.floating-label .wpcf7 input[type=week],.input-group-sm>.floating-label .wpcf7 select,.input-group-sm>.floating-label .wpcf7 textarea,.wpcf7 .floating-label-sm .wpcf7-validation-errors,.wpcf7 .floating-label-sm input[type=color],.wpcf7 .floating-label-sm input[type=date],.wpcf7 .floating-label-sm input[type=datetime-local],.wpcf7 .floating-label-sm input[type=datetime],.wpcf7 .floating-label-sm input[type=email],.wpcf7 .floating-label-sm input[type=file],.wpcf7 .floating-label-sm input[type=month],.wpcf7 .floating-label-sm input[type=number],.wpcf7 .floating-label-sm input[type=range],.wpcf7 .floating-label-sm input[type=search],.wpcf7 .floating-label-sm input[type=submit],.wpcf7 .floating-label-sm input[type=tel],.wpcf7 .floating-label-sm input[type=text],.wpcf7 .floating-label-sm input[type=time],.wpcf7 .floating-label-sm input[type=url],.wpcf7 .floating-label-sm input[type=week],.wpcf7 .floating-label-sm select,.wpcf7 .floating-label-sm textarea,.wpcf7 .input-group-sm>.floating-label .wpcf7-validation-errors,.wpcf7 .input-group-sm>.floating-label input[type=color],.wpcf7 .input-group-sm>.floating-label input[type=date],.wpcf7 .input-group-sm>.floating-label input[type=datetime-local],.wpcf7 .input-group-sm>.floating-label input[type=datetime],.wpcf7 .input-group-sm>.floating-label input[type=email],.wpcf7 .input-group-sm>.floating-label input[type=file],.wpcf7 .input-group-sm>.floating-label input[type=month],.wpcf7 .input-group-sm>.floating-label input[type=number],.wpcf7 .input-group-sm>.floating-label input[type=range],.wpcf7 .input-group-sm>.floating-label input[type=search],.wpcf7 .input-group-sm>.floating-label input[type=submit],.wpcf7 .input-group-sm>.floating-label input[type=tel],.wpcf7 .input-group-sm>.floating-label input[type=text],.wpcf7 .input-group-sm>.floating-label input[type=time],.wpcf7 .input-group-sm>.floating-label input[type=url],.wpcf7 .input-group-sm>.floating-label input[type=week],.wpcf7 .input-group-sm>.floating-label select,.wpcf7 .input-group-sm>.floating-label textarea{font-size:.8125rem;line-height:1.53846;padding:.375rem 0 calc(.375rem - 1px)}.floating-label-sm .custom-select,.floating-label-sm .wpcf7 select,.floating-label-sm select.form-control,.input-group-sm>.floating-label .custom-select,.input-group-sm>.floating-label .wpcf7 select,.input-group-sm>.floating-label select.form-control,.wpcf7 .floating-label-sm select,.wpcf7 .input-group-sm>.floating-label select{padding-right:1.5em}.floating-label-sm .custom-select[multiple],.floating-label-sm .custom-select[size]:not([size='1']),.floating-label-sm .wpcf7 select[multiple],.floating-label-sm .wpcf7 select[size]:not([size='1']),.floating-label-sm .wpcf7 textarea:not([rows='1']),.floating-label-sm select.form-control[multiple],.floating-label-sm select.form-control[size]:not([size='1']),.floating-label-sm textarea.form-control:not([rows='1']),.input-group-sm>.floating-label .custom-select[multiple],.input-group-sm>.floating-label .custom-select[size]:not([size='1']),.input-group-sm>.floating-label .wpcf7 select[multiple],.input-group-sm>.floating-label .wpcf7 select[size]:not([size='1']),.input-group-sm>.floating-label .wpcf7 textarea:not([rows='1']),.input-group-sm>.floating-label select.form-control[multiple],.input-group-sm>.floating-label select.form-control[size]:not([size='1']),.input-group-sm>.floating-label textarea.form-control:not([rows='1']),.wpcf7 .floating-label-sm select[multiple],.wpcf7 .floating-label-sm select[size]:not([size='1']),.wpcf7 .floating-label-sm textarea:not([rows='1']),.wpcf7 .input-group-sm>.floating-label select[multiple],.wpcf7 .input-group-sm>.floating-label select[size]:not([size='1']),.wpcf7 .input-group-sm>.floating-label textarea:not([rows='1']){padding:.75rem .75rem calc(.75rem - 1px)}.floating-label.textfield-box{padding-top:0}.floating-label.textfield-box.has-value label,.floating-label.textfield-box.is-focused label{line-height:1;top:.5rem}.floating-label.textfield-box label{top:1rem;left:1rem}.floating-label.textfield-box .custom-select,.floating-label.textfield-box .custom-select[multiple],.floating-label.textfield-box .custom-select[size]:not([size='1']),.floating-label.textfield-box .form-control,.floating-label.textfield-box .form-control-file,.floating-label.textfield-box .wpcf7 .wpcf7-validation-errors,.floating-label.textfield-box .wpcf7 input[type=color],.floating-label.textfield-box .wpcf7 input[type=date],.floating-label.textfield-box .wpcf7 input[type=datetime-local],.floating-label.textfield-box .wpcf7 input[type=datetime],.floating-label.textfield-box .wpcf7 input[type=email],.floating-label.textfield-box .wpcf7 input[type=file],.floating-label.textfield-box .wpcf7 input[type=month],.floating-label.textfield-box .wpcf7 input[type=number],.floating-label.textfield-box .wpcf7 input[type=range],.floating-label.textfield-box .wpcf7 input[type=search],.floating-label.textfield-box .wpcf7 input[type=submit],.floating-label.textfield-box .wpcf7 input[type=tel],.floating-label.textfield-box .wpcf7 input[type=text],.floating-label.textfield-box .wpcf7 input[type=time],.floating-label.textfield-box .wpcf7 input[type=url],.floating-label.textfield-box .wpcf7 input[type=week],.floating-label.textfield-box .wpcf7 select,.floating-label.textfield-box .wpcf7 select[multiple],.floating-label.textfield-box .wpcf7 select[size]:not([size='1']),.floating-label.textfield-box .wpcf7 textarea,.floating-label.textfield-box .wpcf7 textarea:not([rows='1']),.floating-label.textfield-box select.form-control[multiple],.floating-label.textfield-box select.form-control[size]:not([size='1']),.floating-label.textfield-box textarea.form-control:not([rows='1']),.wpcf7 .floating-label.textfield-box .wpcf7-validation-errors,.wpcf7 .floating-label.textfield-box input[type=color],.wpcf7 .floating-label.textfield-box input[type=date],.wpcf7 .floating-label.textfield-box input[type=datetime-local],.wpcf7 .floating-label.textfield-box input[type=datetime],.wpcf7 .floating-label.textfield-box input[type=email],.wpcf7 .floating-label.textfield-box input[type=file],.wpcf7 .floating-label.textfield-box input[type=month],.wpcf7 .floating-label.textfield-box input[type=number],.wpcf7 .floating-label.textfield-box input[type=range],.wpcf7 .floating-label.textfield-box input[type=search],.wpcf7 .floating-label.textfield-box input[type=submit],.wpcf7 .floating-label.textfield-box input[type=tel],.wpcf7 .floating-label.textfield-box input[type=text],.wpcf7 .floating-label.textfield-box input[type=time],.wpcf7 .floating-label.textfield-box input[type=url],.wpcf7 .floating-label.textfield-box input[type=week],.wpcf7 .floating-label.textfield-box select,.wpcf7 .floating-label.textfield-box select[multiple],.wpcf7 .floating-label.textfield-box select[size]:not([size='1']),.wpcf7 .floating-label.textfield-box textarea,.wpcf7 .floating-label.textfield-box textarea:not([rows='1']){padding-top:1.5rem}.floating-label.textfield-box .custom-select,.floating-label.textfield-box .form-control,.floating-label.textfield-box .form-control-file,.floating-label.textfield-box .wpcf7 .wpcf7-validation-errors,.floating-label.textfield-box .wpcf7 input[type=color],.floating-label.textfield-box .wpcf7 input[type=date],.floating-label.textfield-box .wpcf7 input[type=datetime-local],.floating-label.textfield-box .wpcf7 input[type=datetime],.floating-label.textfield-box .wpcf7 input[type=email],.floating-label.textfield-box .wpcf7 input[type=file],.floating-label.textfield-box .wpcf7 input[type=month],.floating-label.textfield-box .wpcf7 input[type=number],.floating-label.textfield-box .wpcf7 input[type=range],.floating-label.textfield-box .wpcf7 input[type=search],.floating-label.textfield-box .wpcf7 input[type=submit],.floating-label.textfield-box .wpcf7 input[type=tel],.floating-label.textfield-box .wpcf7 input[type=text],.floating-label.textfield-box .wpcf7 input[type=time],.floating-label.textfield-box .wpcf7 input[type=url],.floating-label.textfield-box .wpcf7 input[type=week],.floating-label.textfield-box .wpcf7 select,.floating-label.textfield-box .wpcf7 textarea,.wpcf7 .floating-label.textfield-box .wpcf7-validation-errors,.wpcf7 .floating-label.textfield-box input[type=color],.wpcf7 .floating-label.textfield-box input[type=date],.wpcf7 .floating-label.textfield-box input[type=datetime-local],.wpcf7 .floating-label.textfield-box input[type=datetime],.wpcf7 .floating-label.textfield-box input[type=email],.wpcf7 .floating-label.textfield-box input[type=file],.wpcf7 .floating-label.textfield-box input[type=month],.wpcf7 .floating-label.textfield-box input[type=number],.wpcf7 .floating-label.textfield-box input[type=range],.wpcf7 .floating-label.textfield-box input[type=search],.wpcf7 .floating-label.textfield-box input[type=submit],.wpcf7 .floating-label.textfield-box input[type=tel],.wpcf7 .floating-label.textfield-box input[type=text],.wpcf7 .floating-label.textfield-box input[type=time],.wpcf7 .floating-label.textfield-box input[type=url],.wpcf7 .floating-label.textfield-box input[type=week],.wpcf7 .floating-label.textfield-box select,.wpcf7 .floating-label.textfield-box textarea{padding-bottom:calc(.5rem - 1px)}.floating-label-lg.textfield-box label,.input-group-lg>.textfield-box.floating-label label{top:.875rem;left:1rem}.floating-label-lg.textfield-box .custom-select,.floating-label-lg.textfield-box .custom-select[multiple],.floating-label-lg.textfield-box .custom-select[size]:not([size='1']),.floating-label-lg.textfield-box .form-control,.floating-label-lg.textfield-box .form-control-file,.floating-label-lg.textfield-box .wpcf7 .wpcf7-validation-errors,.floating-label-lg.textfield-box .wpcf7 input[type=color],.floating-label-lg.textfield-box .wpcf7 input[type=date],.floating-label-lg.textfield-box .wpcf7 input[type=datetime-local],.floating-label-lg.textfield-box .wpcf7 input[type=datetime],.floating-label-lg.textfield-box .wpcf7 input[type=email],.floating-label-lg.textfield-box .wpcf7 input[type=file],.floating-label-lg.textfield-box .wpcf7 input[type=month],.floating-label-lg.textfield-box .wpcf7 input[type=number],.floating-label-lg.textfield-box .wpcf7 input[type=range],.floating-label-lg.textfield-box .wpcf7 input[type=search],.floating-label-lg.textfield-box .wpcf7 input[type=submit],.floating-label-lg.textfield-box .wpcf7 input[type=tel],.floating-label-lg.textfield-box .wpcf7 input[type=text],.floating-label-lg.textfield-box .wpcf7 input[type=time],.floating-label-lg.textfield-box .wpcf7 input[type=url],.floating-label-lg.textfield-box .wpcf7 input[type=week],.floating-label-lg.textfield-box .wpcf7 select,.floating-label-lg.textfield-box .wpcf7 select[multiple],.floating-label-lg.textfield-box .wpcf7 select[size]:not([size='1']),.floating-label-lg.textfield-box .wpcf7 textarea,.floating-label-lg.textfield-box .wpcf7 textarea:not([rows='1']),.floating-label-lg.textfield-box select.form-control[multiple],.floating-label-lg.textfield-box select.form-control[size]:not([size='1']),.floating-label-lg.textfield-box textarea.form-control:not([rows='1']),.input-group-lg>.textfield-box.floating-label .custom-select,.input-group-lg>.textfield-box.floating-label .custom-select[multiple],.input-group-lg>.textfield-box.floating-label .custom-select[size]:not([size='1']),.input-group-lg>.textfield-box.floating-label .form-control,.input-group-lg>.textfield-box.floating-label .form-control-file,.input-group-lg>.textfield-box.floating-label .wpcf7 .wpcf7-validation-errors,.input-group-lg>.textfield-box.floating-label .wpcf7 input[type=color],.input-group-lg>.textfield-box.floating-label .wpcf7 input[type=date],.input-group-lg>.textfield-box.floating-label .wpcf7 input[type=datetime-local],.input-group-lg>.textfield-box.floating-label .wpcf7 input[type=datetime],.input-group-lg>.textfield-box.floating-label .wpcf7 input[type=email],.input-group-lg>.textfield-box.floating-label .wpcf7 input[type=file],.input-group-lg>.textfield-box.floating-label .wpcf7 input[type=month],.input-group-lg>.textfield-box.floating-label .wpcf7 input[type=number],.input-group-lg>.textfield-box.floating-label .wpcf7 input[type=range],.input-group-lg>.textfield-box.floating-label .wpcf7 input[type=search],.input-group-lg>.textfield-box.floating-label .wpcf7 input[type=submit],.input-group-lg>.textfield-box.floating-label .wpcf7 input[type=tel],.input-group-lg>.textfield-box.floating-label .wpcf7 input[type=text],.input-group-lg>.textfield-box.floating-label .wpcf7 input[type=time],.input-group-lg>.textfield-box.floating-label .wpcf7 input[type=url],.input-group-lg>.textfield-box.floating-label .wpcf7 input[type=week],.input-group-lg>.textfield-box.floating-label .wpcf7 select,.input-group-lg>.textfield-box.floating-label .wpcf7 select[multiple],.input-group-lg>.textfield-box.floating-label .wpcf7 select[size]:not([size='1']),.input-group-lg>.textfield-box.floating-label .wpcf7 textarea,.input-group-lg>.textfield-box.floating-label .wpcf7 textarea:not([rows='1']),.input-group-lg>.textfield-box.floating-label select.form-control[multiple],.input-group-lg>.textfield-box.floating-label select.form-control[size]:not([size='1']),.input-group-lg>.textfield-box.floating-label textarea.form-control:not([rows='1']),.wpcf7 .floating-label-lg.textfield-box .wpcf7-validation-errors,.wpcf7 .floating-label-lg.textfield-box input[type=color],.wpcf7 .floating-label-lg.textfield-box input[type=date],.wpcf7 .floating-label-lg.textfield-box input[type=datetime-local],.wpcf7 .floating-label-lg.textfield-box input[type=datetime],.wpcf7 .floating-label-lg.textfield-box input[type=email],.wpcf7 .floating-label-lg.textfield-box input[type=file],.wpcf7 .floating-label-lg.textfield-box input[type=month],.wpcf7 .floating-label-lg.textfield-box input[type=number],.wpcf7 .floating-label-lg.textfield-box input[type=range],.wpcf7 .floating-label-lg.textfield-box input[type=search],.wpcf7 .floating-label-lg.textfield-box input[type=submit],.wpcf7 .floating-label-lg.textfield-box input[type=tel],.wpcf7 .floating-label-lg.textfield-box input[type=text],.wpcf7 .floating-label-lg.textfield-box input[type=time],.wpcf7 .floating-label-lg.textfield-box input[type=url],.wpcf7 .floating-label-lg.textfield-box input[type=week],.wpcf7 .floating-label-lg.textfield-box select,.wpcf7 .floating-label-lg.textfield-box select[multiple],.wpcf7 .floating-label-lg.textfield-box select[size]:not([size='1']),.wpcf7 .floating-label-lg.textfield-box textarea,.wpcf7 .floating-label-lg.textfield-box textarea:not([rows='1']),.wpcf7 .input-group-lg>.textfield-box.floating-label .wpcf7-validation-errors,.wpcf7 .input-group-lg>.textfield-box.floating-label input[type=color],.wpcf7 .input-group-lg>.textfield-box.floating-label input[type=date],.wpcf7 .input-group-lg>.textfield-box.floating-label input[type=datetime-local],.wpcf7 .input-group-lg>.textfield-box.floating-label input[type=datetime],.wpcf7 .input-group-lg>.textfield-box.floating-label input[type=email],.wpcf7 .input-group-lg>.textfield-box.floating-label input[type=file],.wpcf7 .input-group-lg>.textfield-box.floating-label input[type=month],.wpcf7 .input-group-lg>.textfield-box.floating-label input[type=number],.wpcf7 .input-group-lg>.textfield-box.floating-label input[type=range],.wpcf7 .input-group-lg>.textfield-box.floating-label input[type=search],.wpcf7 .input-group-lg>.textfield-box.floating-label input[type=submit],.wpcf7 .input-group-lg>.textfield-box.floating-label input[type=tel],.wpcf7 .input-group-lg>.textfield-box.floating-label input[type=text],.wpcf7 .input-group-lg>.textfield-box.floating-label input[type=time],.wpcf7 .input-group-lg>.textfield-box.floating-label input[type=url],.wpcf7 .input-group-lg>.textfield-box.floating-label input[type=week],.wpcf7 .input-group-lg>.textfield-box.floating-label select,.wpcf7 .input-group-lg>.textfield-box.floating-label select[multiple],.wpcf7 .input-group-lg>.textfield-box.floating-label select[size]:not([size='1']),.wpcf7 .input-group-lg>.textfield-box.floating-label textarea,.wpcf7 .input-group-lg>.textfield-box.floating-label textarea:not([rows='1']){padding-top:1.25rem;padding-right:1rem;padding-left:1rem}.floating-label-lg.textfield-box .custom-select,.floating-label-lg.textfield-box .wpcf7 select,.floating-label-lg.textfield-box select.form-control,.input-group-lg>.textfield-box.floating-label .custom-select,.input-group-lg>.textfield-box.floating-label .wpcf7 select,.input-group-lg>.textfield-box.floating-label select.form-control,.wpcf7 .floating-label-lg.textfield-box select,.wpcf7 .input-group-lg>.textfield-box.floating-label select{padding-right:1.5em}.floating-label-sm.textfield-box label,.input-group-sm>.textfield-box.floating-label label{top:.75rem;left:.75rem}.floating-label-sm.textfield-box .custom-select,.floating-label-sm.textfield-box .custom-select[multiple],.floating-label-sm.textfield-box .custom-select[size]:not([size='1']),.floating-label-sm.textfield-box .form-control,.floating-label-sm.textfield-box .form-control-file,.floating-label-sm.textfield-box .wpcf7 .wpcf7-validation-errors,.floating-label-sm.textfield-box .wpcf7 input[type=color],.floating-label-sm.textfield-box .wpcf7 input[type=date],.floating-label-sm.textfield-box .wpcf7 input[type=datetime-local],.floating-label-sm.textfield-box .wpcf7 input[type=datetime],.floating-label-sm.textfield-box .wpcf7 input[type=email],.floating-label-sm.textfield-box .wpcf7 input[type=file],.floating-label-sm.textfield-box .wpcf7 input[type=month],.floating-label-sm.textfield-box .wpcf7 input[type=number],.floating-label-sm.textfield-box .wpcf7 input[type=range],.floating-label-sm.textfield-box .wpcf7 input[type=search],.floating-label-sm.textfield-box .wpcf7 input[type=submit],.floating-label-sm.textfield-box .wpcf7 input[type=tel],.floating-label-sm.textfield-box .wpcf7 input[type=text],.floating-label-sm.textfield-box .wpcf7 input[type=time],.floating-label-sm.textfield-box .wpcf7 input[type=url],.floating-label-sm.textfield-box .wpcf7 input[type=week],.floating-label-sm.textfield-box .wpcf7 select,.floating-label-sm.textfield-box .wpcf7 select[multiple],.floating-label-sm.textfield-box .wpcf7 select[size]:not([size='1']),.floating-label-sm.textfield-box .wpcf7 textarea,.floating-label-sm.textfield-box .wpcf7 textarea:not([rows='1']),.floating-label-sm.textfield-box select.form-control[multiple],.floating-label-sm.textfield-box select.form-control[size]:not([size='1']),.floating-label-sm.textfield-box textarea.form-control:not([rows='1']),.input-group-sm>.textfield-box.floating-label .custom-select,.input-group-sm>.textfield-box.floating-label .custom-select[multiple],.input-group-sm>.textfield-box.floating-label .custom-select[size]:not([size='1']),.input-group-sm>.textfield-box.floating-label .form-control,.input-group-sm>.textfield-box.floating-label .form-control-file,.input-group-sm>.textfield-box.floating-label .wpcf7 .wpcf7-validation-errors,.input-group-sm>.textfield-box.floating-label .wpcf7 input[type=color],.input-group-sm>.textfield-box.floating-label .wpcf7 input[type=date],.input-group-sm>.textfield-box.floating-label .wpcf7 input[type=datetime-local],.input-group-sm>.textfield-box.floating-label .wpcf7 input[type=datetime],.input-group-sm>.textfield-box.floating-label .wpcf7 input[type=email],.input-group-sm>.textfield-box.floating-label .wpcf7 input[type=file],.input-group-sm>.textfield-box.floating-label .wpcf7 input[type=month],.input-group-sm>.textfield-box.floating-label .wpcf7 input[type=number],.input-group-sm>.textfield-box.floating-label .wpcf7 input[type=range],.input-group-sm>.textfield-box.floating-label .wpcf7 input[type=search],.input-group-sm>.textfield-box.floating-label .wpcf7 input[type=submit],.input-group-sm>.textfield-box.floating-label .wpcf7 input[type=tel],.input-group-sm>.textfield-box.floating-label .wpcf7 input[type=text],.input-group-sm>.textfield-box.floating-label .wpcf7 input[type=time],.input-group-sm>.textfield-box.floating-label .wpcf7 input[type=url],.input-group-sm>.textfield-box.floating-label .wpcf7 input[type=week],.input-group-sm>.textfield-box.floating-label .wpcf7 select,.input-group-sm>.textfield-box.floating-label .wpcf7 select[multiple],.input-group-sm>.textfield-box.floating-label .wpcf7 select[size]:not([size='1']),.input-group-sm>.textfield-box.floating-label .wpcf7 textarea,.input-group-sm>.textfield-box.floating-label .wpcf7 textarea:not([rows='1']),.input-group-sm>.textfield-box.floating-label select.form-control[multiple],.input-group-sm>.textfield-box.floating-label select.form-control[size]:not([size='1']),.input-group-sm>.textfield-box.floating-label textarea.form-control:not([rows='1']),.wpcf7 .floating-label-sm.textfield-box .wpcf7-validation-errors,.wpcf7 .floating-label-sm.textfield-box input[type=color],.wpcf7 .floating-label-sm.textfield-box input[type=date],.wpcf7 .floating-label-sm.textfield-box input[type=datetime-local],.wpcf7 .floating-label-sm.textfield-box input[type=datetime],.wpcf7 .floating-label-sm.textfield-box input[type=email],.wpcf7 .floating-label-sm.textfield-box input[type=file],.wpcf7 .floating-label-sm.textfield-box input[type=month],.wpcf7 .floating-label-sm.textfield-box input[type=number],.wpcf7 .floating-label-sm.textfield-box input[type=range],.wpcf7 .floating-label-sm.textfield-box input[type=search],.wpcf7 .floating-label-sm.textfield-box input[type=submit],.wpcf7 .floating-label-sm.textfield-box input[type=tel],.wpcf7 .floating-label-sm.textfield-box input[type=text],.wpcf7 .floating-label-sm.textfield-box input[type=time],.wpcf7 .floating-label-sm.textfield-box input[type=url],.wpcf7 .floating-label-sm.textfield-box input[type=week],.wpcf7 .floating-label-sm.textfield-box select,.wpcf7 .floating-label-sm.textfield-box select[multiple],.wpcf7 .floating-label-sm.textfield-box select[size]:not([size='1']),.wpcf7 .floating-label-sm.textfield-box textarea,.wpcf7 .floating-label-sm.textfield-box textarea:not([rows='1']),.wpcf7 .input-group-sm>.textfield-box.floating-label .wpcf7-validation-errors,.wpcf7 .input-group-sm>.textfield-box.floating-label input[type=color],.wpcf7 .input-group-sm>.textfield-box.floating-label input[type=date],.wpcf7 .input-group-sm>.textfield-box.floating-label input[type=datetime-local],.wpcf7 .input-group-sm>.textfield-box.floating-label input[type=datetime],.wpcf7 .input-group-sm>.textfield-box.floating-label input[type=email],.wpcf7 .input-group-sm>.textfield-box.floating-label input[type=file],.wpcf7 .input-group-sm>.textfield-box.floating-label input[type=month],.wpcf7 .input-group-sm>.textfield-box.floating-label input[type=number],.wpcf7 .input-group-sm>.textfield-box.floating-label input[type=range],.wpcf7 .input-group-sm>.textfield-box.floating-label input[type=search],.wpcf7 .input-group-sm>.textfield-box.floating-label input[type=submit],.wpcf7 .input-group-sm>.textfield-box.floating-label input[type=tel],.wpcf7 .input-group-sm>.textfield-box.floating-label input[type=text],.wpcf7 .input-group-sm>.textfield-box.floating-label input[type=time],.wpcf7 .input-group-sm>.textfield-box.floating-label input[type=url],.wpcf7 .input-group-sm>.textfield-box.floating-label input[type=week],.wpcf7 .input-group-sm>.textfield-box.floating-label select,.wpcf7 .input-group-sm>.textfield-box.floating-label select[multiple],.wpcf7 .input-group-sm>.textfield-box.floating-label select[size]:not([size='1']),.wpcf7 .input-group-sm>.textfield-box.floating-label textarea,.wpcf7 .input-group-sm>.textfield-box.floating-label textarea:not([rows='1']){padding-top:1rem;padding-right:.75rem;padding-left:.75rem}.floating-label-sm.textfield-box .custom-select,.floating-label-sm.textfield-box .wpcf7 select,.floating-label-sm.textfield-box select.form-control,.input-group-sm>.textfield-box.floating-label .custom-select,.input-group-sm>.textfield-box.floating-label .wpcf7 select,.input-group-sm>.textfield-box.floating-label select.form-control,.wpcf7 .floating-label-sm.textfield-box select,.wpcf7 .input-group-sm>.textfield-box.floating-label select{padding-right:1.5em}.input-group{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;position:relative;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.floating-label,.input-group>.form-control,.input-group>.form-control-file,.input-group>.textfield-box,.wpcf7 .input-group>.wpcf7-validation-errors,.wpcf7 .input-group>input[type=color],.wpcf7 .input-group>input[type=date],.wpcf7 .input-group>input[type=datetime-local],.wpcf7 .input-group>input[type=datetime],.wpcf7 .input-group>input[type=email],.wpcf7 .input-group>input[type=file],.wpcf7 .input-group>input[type=month],.wpcf7 .input-group>input[type=number],.wpcf7 .input-group>input[type=range],.wpcf7 .input-group>input[type=search],.wpcf7 .input-group>input[type=submit],.wpcf7 .input-group>input[type=tel],.wpcf7 .input-group>input[type=text],.wpcf7 .input-group>input[type=time],.wpcf7 .input-group>input[type=url],.wpcf7 .input-group>input[type=week],.wpcf7 .input-group>select,.wpcf7 .input-group>textarea{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;margin-bottom:0;width:1%}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.floating-label,.input-group>.custom-file+.form-control,.input-group>.custom-file+.form-control-file,.input-group>.custom-file+.textfield-box,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.floating-label,.input-group>.custom-select+.form-control,.input-group>.custom-select+.form-control-file,.input-group>.custom-select+.textfield-box,.input-group>.floating-label+.custom-file,.input-group>.floating-label+.custom-select,.input-group>.floating-label+.floating-label,.input-group>.floating-label+.form-control,.input-group>.floating-label+.form-control-file,.input-group>.floating-label+.textfield-box,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.floating-label,.input-group>.form-control+.form-control,.input-group>.form-control+.form-control-file,.input-group>.form-control+.textfield-box,.input-group>.form-control-file+.custom-file,.input-group>.form-control-file+.custom-select,.input-group>.form-control-file+.floating-label,.input-group>.form-control-file+.form-control,.input-group>.form-control-file+.form-control-file,.input-group>.form-control-file+.textfield-box,.input-group>.textfield-box+.custom-file,.input-group>.textfield-box+.custom-select,.input-group>.textfield-box+.floating-label,.input-group>.textfield-box+.form-control,.input-group>.textfield-box+.form-control-file,.input-group>.textfield-box+.textfield-box,.wpcf7 .input-group>.custom-file+.wpcf7-validation-errors,.wpcf7 .input-group>.custom-file+input[type=color],.wpcf7 .input-group>.custom-file+input[type=date],.wpcf7 .input-group>.custom-file+input[type=datetime-local],.wpcf7 .input-group>.custom-file+input[type=datetime],.wpcf7 .input-group>.custom-file+input[type=email],.wpcf7 .input-group>.custom-file+input[type=file],.wpcf7 .input-group>.custom-file+input[type=month],.wpcf7 .input-group>.custom-file+input[type=number],.wpcf7 .input-group>.custom-file+input[type=range],.wpcf7 .input-group>.custom-file+input[type=search],.wpcf7 .input-group>.custom-file+input[type=submit],.wpcf7 .input-group>.custom-file+input[type=tel],.wpcf7 .input-group>.custom-file+input[type=text],.wpcf7 .input-group>.custom-file+input[type=time],.wpcf7 .input-group>.custom-file+input[type=url],.wpcf7 .input-group>.custom-file+input[type=week],.wpcf7 .input-group>.custom-file+select,.wpcf7 .input-group>.custom-file+textarea,.wpcf7 .input-group>.custom-select+.wpcf7-validation-errors,.wpcf7 .input-group>.custom-select+input[type=color],.wpcf7 .input-group>.custom-select+input[type=date],.wpcf7 .input-group>.custom-select+input[type=datetime-local],.wpcf7 .input-group>.custom-select+input[type=datetime],.wpcf7 .input-group>.custom-select+input[type=email],.wpcf7 .input-group>.custom-select+input[type=file],.wpcf7 .input-group>.custom-select+input[type=month],.wpcf7 .input-group>.custom-select+input[type=number],.wpcf7 .input-group>.custom-select+input[type=range],.wpcf7 .input-group>.custom-select+input[type=search],.wpcf7 .input-group>.custom-select+input[type=submit],.wpcf7 .input-group>.custom-select+input[type=tel],.wpcf7 .input-group>.custom-select+input[type=text],.wpcf7 .input-group>.custom-select+input[type=time],.wpcf7 .input-group>.custom-select+input[type=url],.wpcf7 .input-group>.custom-select+input[type=week],.wpcf7 .input-group>.custom-select+select,.wpcf7 .input-group>.custom-select+textarea,.wpcf7 .input-group>.floating-label+.wpcf7-validation-errors,.wpcf7 .input-group>.floating-label+input[type=color],.wpcf7 .input-group>.floating-label+input[type=date],.wpcf7 .input-group>.floating-label+input[type=datetime-local],.wpcf7 .input-group>.floating-label+input[type=datetime],.wpcf7 .input-group>.floating-label+input[type=email],.wpcf7 .input-group>.floating-label+input[type=file],.wpcf7 .input-group>.floating-label+input[type=month],.wpcf7 .input-group>.floating-label+input[type=number],.wpcf7 .input-group>.floating-label+input[type=range],.wpcf7 .input-group>.floating-label+input[type=search],.wpcf7 .input-group>.floating-label+input[type=submit],.wpcf7 .input-group>.floating-label+input[type=tel],.wpcf7 .input-group>.floating-label+input[type=text],.wpcf7 .input-group>.floating-label+input[type=time],.wpcf7 .input-group>.floating-label+input[type=url],.wpcf7 .input-group>.floating-label+input[type=week],.wpcf7 .input-group>.floating-label+select,.wpcf7 .input-group>.floating-label+textarea,.wpcf7 .input-group>.form-control+.wpcf7-validation-errors,.wpcf7 .input-group>.form-control+input[type=color],.wpcf7 .input-group>.form-control+input[type=date],.wpcf7 .input-group>.form-control+input[type=datetime-local],.wpcf7 .input-group>.form-control+input[type=datetime],.wpcf7 .input-group>.form-control+input[type=email],.wpcf7 .input-group>.form-control+input[type=file],.wpcf7 .input-group>.form-control+input[type=month],.wpcf7 .input-group>.form-control+input[type=number],.wpcf7 .input-group>.form-control+input[type=range],.wpcf7 .input-group>.form-control+input[type=search],.wpcf7 .input-group>.form-control+input[type=submit],.wpcf7 .input-group>.form-control+input[type=tel],.wpcf7 .input-group>.form-control+input[type=text],.wpcf7 .input-group>.form-control+input[type=time],.wpcf7 .input-group>.form-control+input[type=url],.wpcf7 .input-group>.form-control+input[type=week],.wpcf7 .input-group>.form-control+select,.wpcf7 .input-group>.form-control+textarea,.wpcf7 .input-group>.form-control-file+.wpcf7-validation-errors,.wpcf7 .input-group>.form-control-file+input[type=color],.wpcf7 .input-group>.form-control-file+input[type=date],.wpcf7 .input-group>.form-control-file+input[type=datetime-local],.wpcf7 .input-group>.form-control-file+input[type=datetime],.wpcf7 .input-group>.form-control-file+input[type=email],.wpcf7 .input-group>.form-control-file+input[type=file],.wpcf7 .input-group>.form-control-file+input[type=month],.wpcf7 .input-group>.form-control-file+input[type=number],.wpcf7 .input-group>.form-control-file+input[type=range],.wpcf7 .input-group>.form-control-file+input[type=search],.wpcf7 .input-group>.form-control-file+input[type=submit],.wpcf7 .input-group>.form-control-file+input[type=tel],.wpcf7 .input-group>.form-control-file+input[type=text],.wpcf7 .input-group>.form-control-file+input[type=time],.wpcf7 .input-group>.form-control-file+input[type=url],.wpcf7 .input-group>.form-control-file+input[type=week],.wpcf7 .input-group>.form-control-file+select,.wpcf7 .input-group>.form-control-file+textarea,.wpcf7 .input-group>.textfield-box+.wpcf7-validation-errors,.wpcf7 .input-group>.textfield-box+input[type=color],.wpcf7 .input-group>.textfield-box+input[type=date],.wpcf7 .input-group>.textfield-box+input[type=datetime-local],.wpcf7 .input-group>.textfield-box+input[type=datetime],.wpcf7 .input-group>.textfield-box+input[type=email],.wpcf7 .input-group>.textfield-box+input[type=file],.wpcf7 .input-group>.textfield-box+input[type=month],.wpcf7 .input-group>.textfield-box+input[type=number],.wpcf7 .input-group>.textfield-box+input[type=range],.wpcf7 .input-group>.textfield-box+input[type=search],.wpcf7 .input-group>.textfield-box+input[type=submit],.wpcf7 .input-group>.textfield-box+input[type=tel],.wpcf7 .input-group>.textfield-box+input[type=text],.wpcf7 .input-group>.textfield-box+input[type=time],.wpcf7 .input-group>.textfield-box+input[type=url],.wpcf7 .input-group>.textfield-box+input[type=week],.wpcf7 .input-group>.textfield-box+select,.wpcf7 .input-group>.textfield-box+textarea,.wpcf7 .input-group>.wpcf7-validation-errors+.custom-file,.wpcf7 .input-group>.wpcf7-validation-errors+.custom-select,.wpcf7 .input-group>.wpcf7-validation-errors+.floating-label,.wpcf7 .input-group>.wpcf7-validation-errors+.form-control,.wpcf7 .input-group>.wpcf7-validation-errors+.form-control-file,.wpcf7 .input-group>.wpcf7-validation-errors+.textfield-box,.wpcf7 .input-group>.wpcf7-validation-errors+.wpcf7-validation-errors,.wpcf7 .input-group>.wpcf7-validation-errors+input[type=color],.wpcf7 .input-group>.wpcf7-validation-errors+input[type=date],.wpcf7 .input-group>.wpcf7-validation-errors+input[type=datetime-local],.wpcf7 .input-group>.wpcf7-validation-errors+input[type=datetime],.wpcf7 .input-group>.wpcf7-validation-errors+input[type=email],.wpcf7 .input-group>.wpcf7-validation-errors+input[type=file],.wpcf7 .input-group>.wpcf7-validation-errors+input[type=month],.wpcf7 .input-group>.wpcf7-validation-errors+input[type=number],.wpcf7 .input-group>.wpcf7-validation-errors+input[type=range],.wpcf7 .input-group>.wpcf7-validation-errors+input[type=search],.wpcf7 .input-group>.wpcf7-validation-errors+input[type=submit],.wpcf7 .input-group>.wpcf7-validation-errors+input[type=tel],.wpcf7 .input-group>.wpcf7-validation-errors+input[type=text],.wpcf7 .input-group>.wpcf7-validation-errors+input[type=time],.wpcf7 .input-group>.wpcf7-validation-errors+input[type=url],.wpcf7 .input-group>.wpcf7-validation-errors+input[type=week],.wpcf7 .input-group>.wpcf7-validation-errors+select,.wpcf7 .input-group>.wpcf7-validation-errors+textarea,.wpcf7 .input-group>input[type=color]+.custom-file,.wpcf7 .input-group>input[type=color]+.custom-select,.wpcf7 .input-group>input[type=color]+.floating-label,.wpcf7 .input-group>input[type=color]+.form-control,.wpcf7 .input-group>input[type=color]+.form-control-file,.wpcf7 .input-group>input[type=color]+.textfield-box,.wpcf7 .input-group>input[type=color]+.wpcf7-validation-errors,.wpcf7 .input-group>input[type=color]+input[type=color],.wpcf7 .input-group>input[type=color]+input[type=date],.wpcf7 .input-group>input[type=color]+input[type=datetime-local],.wpcf7 .input-group>input[type=color]+input[type=datetime],.wpcf7 .input-group>input[type=color]+input[type=email],.wpcf7 .input-group>input[type=color]+input[type=file],.wpcf7 .input-group>input[type=color]+input[type=month],.wpcf7 .input-group>input[type=color]+input[type=number],.wpcf7 .input-group>input[type=color]+input[type=range],.wpcf7 .input-group>input[type=color]+input[type=search],.wpcf7 .input-group>input[type=color]+input[type=submit],.wpcf7 .input-group>input[type=color]+input[type=tel],.wpcf7 .input-group>input[type=color]+input[type=text],.wpcf7 .input-group>input[type=color]+input[type=time],.wpcf7 .input-group>input[type=color]+input[type=url],.wpcf7 .input-group>input[type=color]+input[type=week],.wpcf7 .input-group>input[type=color]+select,.wpcf7 .input-group>input[type=color]+textarea,.wpcf7 .input-group>input[type=date]+.custom-file,.wpcf7 .input-group>input[type=date]+.custom-select,.wpcf7 .input-group>input[type=date]+.floating-label,.wpcf7 .input-group>input[type=date]+.form-control,.wpcf7 .input-group>input[type=date]+.form-control-file,.wpcf7 .input-group>input[type=date]+.textfield-box,.wpcf7 .input-group>input[type=date]+.wpcf7-validation-errors,.wpcf7 .input-group>input[type=date]+input[type=color],.wpcf7 .input-group>input[type=date]+input[type=date],.wpcf7 .input-group>input[type=date]+input[type=datetime-local],.wpcf7 .input-group>input[type=date]+input[type=datetime],.wpcf7 .input-group>input[type=date]+input[type=email],.wpcf7 .input-group>input[type=date]+input[type=file],.wpcf7 .input-group>input[type=date]+input[type=month],.wpcf7 .input-group>input[type=date]+input[type=number],.wpcf7 .input-group>input[type=date]+input[type=range],.wpcf7 .input-group>input[type=date]+input[type=search],.wpcf7 .input-group>input[type=date]+input[type=submit],.wpcf7 .input-group>input[type=date]+input[type=tel],.wpcf7 .input-group>input[type=date]+input[type=text],.wpcf7 .input-group>input[type=date]+input[type=time],.wpcf7 .input-group>input[type=date]+input[type=url],.wpcf7 .input-group>input[type=date]+input[type=week],.wpcf7 .input-group>input[type=date]+select,.wpcf7 .input-group>input[type=date]+textarea,.wpcf7 .input-group>input[type=datetime-local]+.custom-file,.wpcf7 .input-group>input[type=datetime-local]+.custom-select,.wpcf7 .input-group>input[type=datetime-local]+.floating-label,.wpcf7 .input-group>input[type=datetime-local]+.form-control,.wpcf7 .input-group>input[type=datetime-local]+.form-control-file,.wpcf7 .input-group>input[type=datetime-local]+.textfield-box,.wpcf7 .input-group>input[type=datetime-local]+.wpcf7-validation-errors,.wpcf7 .input-group>input[type=datetime-local]+input[type=color],.wpcf7 .input-group>input[type=datetime-local]+input[type=date],.wpcf7 .input-group>input[type=datetime-local]+input[type=datetime-local],.wpcf7 .input-group>input[type=datetime-local]+input[type=datetime],.wpcf7 .input-group>input[type=datetime-local]+input[type=email],.wpcf7 .input-group>input[type=datetime-local]+input[type=file],.wpcf7 .input-group>input[type=datetime-local]+input[type=month],.wpcf7 .input-group>input[type=datetime-local]+input[type=number],.wpcf7 .input-group>input[type=datetime-local]+input[type=range],.wpcf7 .input-group>input[type=datetime-local]+input[type=search],.wpcf7 .input-group>input[type=datetime-local]+input[type=submit],.wpcf7 .input-group>input[type=datetime-local]+input[type=tel],.wpcf7 .input-group>input[type=datetime-local]+input[type=text],.wpcf7 .input-group>input[type=datetime-local]+input[type=time],.wpcf7 .input-group>input[type=datetime-local]+input[type=url],.wpcf7 .input-group>input[type=datetime-local]+input[type=week],.wpcf7 .input-group>input[type=datetime-local]+select,.wpcf7 .input-group>input[type=datetime-local]+textarea,.wpcf7 .input-group>input[type=datetime]+.custom-file,.wpcf7 .input-group>input[type=datetime]+.custom-select,.wpcf7 .input-group>input[type=datetime]+.floating-label,.wpcf7 .input-group>input[type=datetime]+.form-control,.wpcf7 .input-group>input[type=datetime]+.form-control-file,.wpcf7 .input-group>input[type=datetime]+.textfield-box,.wpcf7 .input-group>input[type=datetime]+.wpcf7-validation-errors,.wpcf7 .input-group>input[type=datetime]+input[type=color],.wpcf7 .input-group>input[type=datetime]+input[type=date],.wpcf7 .input-group>input[type=datetime]+input[type=datetime-local],.wpcf7 .input-group>input[type=datetime]+input[type=datetime],.wpcf7 .input-group>input[type=datetime]+input[type=email],.wpcf7 .input-group>input[type=datetime]+input[type=file],.wpcf7 .input-group>input[type=datetime]+input[type=month],.wpcf7 .input-group>input[type=datetime]+input[type=number],.wpcf7 .input-group>input[type=datetime]+input[type=range],.wpcf7 .input-group>input[type=datetime]+input[type=search],.wpcf7 .input-group>input[type=datetime]+input[type=submit],.wpcf7 .input-group>input[type=datetime]+input[type=tel],.wpcf7 .input-group>input[type=datetime]+input[type=text],.wpcf7 .input-group>input[type=datetime]+input[type=time],.wpcf7 .input-group>input[type=datetime]+input[type=url],.wpcf7 .input-group>input[type=datetime]+input[type=week],.wpcf7 .input-group>input[type=datetime]+select,.wpcf7 .input-group>input[type=datetime]+textarea,.wpcf7 .input-group>input[type=email]+.custom-file,.wpcf7 .input-group>input[type=email]+.custom-select,.wpcf7 .input-group>input[type=email]+.floating-label,.wpcf7 .input-group>input[type=email]+.form-control,.wpcf7 .input-group>input[type=email]+.form-control-file,.wpcf7 .input-group>input[type=email]+.textfield-box,.wpcf7 .input-group>input[type=email]+.wpcf7-validation-errors,.wpcf7 .input-group>input[type=email]+input[type=color],.wpcf7 .input-group>input[type=email]+input[type=date],.wpcf7 .input-group>input[type=email]+input[type=datetime-local],.wpcf7 .input-group>input[type=email]+input[type=datetime],.wpcf7 .input-group>input[type=email]+input[type=email],.wpcf7 .input-group>input[type=email]+input[type=file],.wpcf7 .input-group>input[type=email]+input[type=month],.wpcf7 .input-group>input[type=email]+input[type=number],.wpcf7 .input-group>input[type=email]+input[type=range],.wpcf7 .input-group>input[type=email]+input[type=search],.wpcf7 .input-group>input[type=email]+input[type=submit],.wpcf7 .input-group>input[type=email]+input[type=tel],.wpcf7 .input-group>input[type=email]+input[type=text],.wpcf7 .input-group>input[type=email]+input[type=time],.wpcf7 .input-group>input[type=email]+input[type=url],.wpcf7 .input-group>input[type=email]+input[type=week],.wpcf7 .input-group>input[type=email]+select,.wpcf7 .input-group>input[type=email]+textarea,.wpcf7 .input-group>input[type=file]+.custom-file,.wpcf7 .input-group>input[type=file]+.custom-select,.wpcf7 .input-group>input[type=file]+.floating-label,.wpcf7 .input-group>input[type=file]+.form-control,.wpcf7 .input-group>input[type=file]+.form-control-file,.wpcf7 .input-group>input[type=file]+.textfield-box,.wpcf7 .input-group>input[type=file]+.wpcf7-validation-errors,.wpcf7 .input-group>input[type=file]+input[type=color],.wpcf7 .input-group>input[type=file]+input[type=date],.wpcf7 .input-group>input[type=file]+input[type=datetime-local],.wpcf7 .input-group>input[type=file]+input[type=datetime],.wpcf7 .input-group>input[type=file]+input[type=email],.wpcf7 .input-group>input[type=file]+input[type=file],.wpcf7 .input-group>input[type=file]+input[type=month],.wpcf7 .input-group>input[type=file]+input[type=number],.wpcf7 .input-group>input[type=file]+input[type=range],.wpcf7 .input-group>input[type=file]+input[type=search],.wpcf7 .input-group>input[type=file]+input[type=submit],.wpcf7 .input-group>input[type=file]+input[type=tel],.wpcf7 .input-group>input[type=file]+input[type=text],.wpcf7 .input-group>input[type=file]+input[type=time],.wpcf7 .input-group>input[type=file]+input[type=url],.wpcf7 .input-group>input[type=file]+input[type=week],.wpcf7 .input-group>input[type=file]+select,.wpcf7 .input-group>input[type=file]+textarea,.wpcf7 .input-group>input[type=month]+.custom-file,.wpcf7 .input-group>input[type=month]+.custom-select,.wpcf7 .input-group>input[type=month]+.floating-label,.wpcf7 .input-group>input[type=month]+.form-control,.wpcf7 .input-group>input[type=month]+.form-control-file,.wpcf7 .input-group>input[type=month]+.textfield-box,.wpcf7 .input-group>input[type=month]+.wpcf7-validation-errors,.wpcf7 .input-group>input[type=month]+input[type=color],.wpcf7 .input-group>input[type=month]+input[type=date],.wpcf7 .input-group>input[type=month]+input[type=datetime-local],.wpcf7 .input-group>input[type=month]+input[type=datetime],.wpcf7 .input-group>input[type=month]+input[type=email],.wpcf7 .input-group>input[type=month]+input[type=file],.wpcf7 .input-group>input[type=month]+input[type=month],.wpcf7 .input-group>input[type=month]+input[type=number],.wpcf7 .input-group>input[type=month]+input[type=range],.wpcf7 .input-group>input[type=month]+input[type=search],.wpcf7 .input-group>input[type=month]+input[type=submit],.wpcf7 .input-group>input[type=month]+input[type=tel],.wpcf7 .input-group>input[type=month]+input[type=text],.wpcf7 .input-group>input[type=month]+input[type=time],.wpcf7 .input-group>input[type=month]+input[type=url],.wpcf7 .input-group>input[type=month]+input[type=week],.wpcf7 .input-group>input[type=month]+select,.wpcf7 .input-group>input[type=month]+textarea,.wpcf7 .input-group>input[type=number]+.custom-file,.wpcf7 .input-group>input[type=number]+.custom-select,.wpcf7 .input-group>input[type=number]+.floating-label,.wpcf7 .input-group>input[type=number]+.form-control,.wpcf7 .input-group>input[type=number]+.form-control-file,.wpcf7 .input-group>input[type=number]+.textfield-box,.wpcf7 .input-group>input[type=number]+.wpcf7-validation-errors,.wpcf7 .input-group>input[type=number]+input[type=color],.wpcf7 .input-group>input[type=number]+input[type=date],.wpcf7 .input-group>input[type=number]+input[type=datetime-local],.wpcf7 .input-group>input[type=number]+input[type=datetime],.wpcf7 .input-group>input[type=number]+input[type=email],.wpcf7 .input-group>input[type=number]+input[type=file],.wpcf7 .input-group>input[type=number]+input[type=month],.wpcf7 .input-group>input[type=number]+input[type=number],.wpcf7 .input-group>input[type=number]+input[type=range],.wpcf7 .input-group>input[type=number]+input[type=search],.wpcf7 .input-group>input[type=number]+input[type=submit],.wpcf7 .input-group>input[type=number]+input[type=tel],.wpcf7 .input-group>input[type=number]+input[type=text],.wpcf7 .input-group>input[type=number]+input[type=time],.wpcf7 .input-group>input[type=number]+input[type=url],.wpcf7 .input-group>input[type=number]+input[type=week],.wpcf7 .input-group>input[type=number]+select,.wpcf7 .input-group>input[type=number]+textarea,.wpcf7 .input-group>input[type=range]+.custom-file,.wpcf7 .input-group>input[type=range]+.custom-select,.wpcf7 .input-group>input[type=range]+.floating-label,.wpcf7 .input-group>input[type=range]+.form-control,.wpcf7 .input-group>input[type=range]+.form-control-file,.wpcf7 .input-group>input[type=range]+.textfield-box,.wpcf7 .input-group>input[type=range]+.wpcf7-validation-errors,.wpcf7 .input-group>input[type=range]+input[type=color],.wpcf7 .input-group>input[type=range]+input[type=date],.wpcf7 .input-group>input[type=range]+input[type=datetime-local],.wpcf7 .input-group>input[type=range]+input[type=datetime],.wpcf7 .input-group>input[type=range]+input[type=email],.wpcf7 .input-group>input[type=range]+input[type=file],.wpcf7 .input-group>input[type=range]+input[type=month],.wpcf7 .input-group>input[type=range]+input[type=number],.wpcf7 .input-group>input[type=range]+input[type=range],.wpcf7 .input-group>input[type=range]+input[type=search],.wpcf7 .input-group>input[type=range]+input[type=submit],.wpcf7 .input-group>input[type=range]+input[type=tel],.wpcf7 .input-group>input[type=range]+input[type=text],.wpcf7 .input-group>input[type=range]+input[type=time],.wpcf7 .input-group>input[type=range]+input[type=url],.wpcf7 .input-group>input[type=range]+input[type=week],.wpcf7 .input-group>input[type=range]+select,.wpcf7 .input-group>input[type=range]+textarea,.wpcf7 .input-group>input[type=search]+.custom-file,.wpcf7 .input-group>input[type=search]+.custom-select,.wpcf7 .input-group>input[type=search]+.floating-label,.wpcf7 .input-group>input[type=search]+.form-control,.wpcf7 .input-group>input[type=search]+.form-control-file,.wpcf7 .input-group>input[type=search]+.textfield-box,.wpcf7 .input-group>input[type=search]+.wpcf7-validation-errors,.wpcf7 .input-group>input[type=search]+input[type=color],.wpcf7 .input-group>input[type=search]+input[type=date],.wpcf7 .input-group>input[type=search]+input[type=datetime-local],.wpcf7 .input-group>input[type=search]+input[type=datetime],.wpcf7 .input-group>input[type=search]+input[type=email],.wpcf7 .input-group>input[type=search]+input[type=file],.wpcf7 .input-group>input[type=search]+input[type=month],.wpcf7 .input-group>input[type=search]+input[type=number],.wpcf7 .input-group>input[type=search]+input[type=range],.wpcf7 .input-group>input[type=search]+input[type=search],.wpcf7 .input-group>input[type=search]+input[type=submit],.wpcf7 .input-group>input[type=search]+input[type=tel],.wpcf7 .input-group>input[type=search]+input[type=text],.wpcf7 .input-group>input[type=search]+input[type=time],.wpcf7 .input-group>input[type=search]+input[type=url],.wpcf7 .input-group>input[type=search]+input[type=week],.wpcf7 .input-group>input[type=search]+select,.wpcf7 .input-group>input[type=search]+textarea,.wpcf7 .input-group>input[type=submit]+.custom-file,.wpcf7 .input-group>input[type=submit]+.custom-select,.wpcf7 .input-group>input[type=submit]+.floating-label,.wpcf7 .input-group>input[type=submit]+.form-control,.wpcf7 .input-group>input[type=submit]+.form-control-file,.wpcf7 .input-group>input[type=submit]+.textfield-box,.wpcf7 .input-group>input[type=submit]+.wpcf7-validation-errors,.wpcf7 .input-group>input[type=submit]+input[type=color],.wpcf7 .input-group>input[type=submit]+input[type=date],.wpcf7 .input-group>input[type=submit]+input[type=datetime-local],.wpcf7 .input-group>input[type=submit]+input[type=datetime],.wpcf7 .input-group>input[type=submit]+input[type=email],.wpcf7 .input-group>input[type=submit]+input[type=file],.wpcf7 .input-group>input[type=submit]+input[type=month],.wpcf7 .input-group>input[type=submit]+input[type=number],.wpcf7 .input-group>input[type=submit]+input[type=range],.wpcf7 .input-group>input[type=submit]+input[type=search],.wpcf7 .input-group>input[type=submit]+input[type=submit],.wpcf7 .input-group>input[type=submit]+input[type=tel],.wpcf7 .input-group>input[type=submit]+input[type=text],.wpcf7 .input-group>input[type=submit]+input[type=time],.wpcf7 .input-group>input[type=submit]+input[type=url],.wpcf7 .input-group>input[type=submit]+input[type=week],.wpcf7 .input-group>input[type=submit]+select,.wpcf7 .input-group>input[type=submit]+textarea,.wpcf7 .input-group>input[type=tel]+.custom-file,.wpcf7 .input-group>input[type=tel]+.custom-select,.wpcf7 .input-group>input[type=tel]+.floating-label,.wpcf7 .input-group>input[type=tel]+.form-control,.wpcf7 .input-group>input[type=tel]+.form-control-file,.wpcf7 .input-group>input[type=tel]+.textfield-box,.wpcf7 .input-group>input[type=tel]+.wpcf7-validation-errors,.wpcf7 .input-group>input[type=tel]+input[type=color],.wpcf7 .input-group>input[type=tel]+input[type=date],.wpcf7 .input-group>input[type=tel]+input[type=datetime-local],.wpcf7 .input-group>input[type=tel]+input[type=datetime],.wpcf7 .input-group>input[type=tel]+input[type=email],.wpcf7 .input-group>input[type=tel]+input[type=file],.wpcf7 .input-group>input[type=tel]+input[type=month],.wpcf7 .input-group>input[type=tel]+input[type=number],.wpcf7 .input-group>input[type=tel]+input[type=range],.wpcf7 .input-group>input[type=tel]+input[type=search],.wpcf7 .input-group>input[type=tel]+input[type=submit],.wpcf7 .input-group>input[type=tel]+input[type=tel],.wpcf7 .input-group>input[type=tel]+input[type=text],.wpcf7 .input-group>input[type=tel]+input[type=time],.wpcf7 .input-group>input[type=tel]+input[type=url],.wpcf7 .input-group>input[type=tel]+input[type=week],.wpcf7 .input-group>input[type=tel]+select,.wpcf7 .input-group>input[type=tel]+textarea,.wpcf7 .input-group>input[type=text]+.custom-file,.wpcf7 .input-group>input[type=text]+.custom-select,.wpcf7 .input-group>input[type=text]+.floating-label,.wpcf7 .input-group>input[type=text]+.form-control,.wpcf7 .input-group>input[type=text]+.form-control-file,.wpcf7 .input-group>input[type=text]+.textfield-box,.wpcf7 .input-group>input[type=text]+.wpcf7-validation-errors,.wpcf7 .input-group>input[type=text]+input[type=color],.wpcf7 .input-group>input[type=text]+input[type=date],.wpcf7 .input-group>input[type=text]+input[type=datetime-local],.wpcf7 .input-group>input[type=text]+input[type=datetime],.wpcf7 .input-group>input[type=text]+input[type=email],.wpcf7 .input-group>input[type=text]+input[type=file],.wpcf7 .input-group>input[type=text]+input[type=month],.wpcf7 .input-group>input[type=text]+input[type=number],.wpcf7 .input-group>input[type=text]+input[type=range],.wpcf7 .input-group>input[type=text]+input[type=search],.wpcf7 .input-group>input[type=text]+input[type=submit],.wpcf7 .input-group>input[type=text]+input[type=tel],.wpcf7 .input-group>input[type=text]+input[type=text],.wpcf7 .input-group>input[type=text]+input[type=time],.wpcf7 .input-group>input[type=text]+input[type=url],.wpcf7 .input-group>input[type=text]+input[type=week],.wpcf7 .input-group>input[type=text]+select,.wpcf7 .input-group>input[type=text]+textarea,.wpcf7 .input-group>input[type=time]+.custom-file,.wpcf7 .input-group>input[type=time]+.custom-select,.wpcf7 .input-group>input[type=time]+.floating-label,.wpcf7 .input-group>input[type=time]+.form-control,.wpcf7 .input-group>input[type=time]+.form-control-file,.wpcf7 .input-group>input[type=time]+.textfield-box,.wpcf7 .input-group>input[type=time]+.wpcf7-validation-errors,.wpcf7 .input-group>input[type=time]+input[type=color],.wpcf7 .input-group>input[type=time]+input[type=date],.wpcf7 .input-group>input[type=time]+input[type=datetime-local],.wpcf7 .input-group>input[type=time]+input[type=datetime],.wpcf7 .input-group>input[type=time]+input[type=email],.wpcf7 .input-group>input[type=time]+input[type=file],.wpcf7 .input-group>input[type=time]+input[type=month],.wpcf7 .input-group>input[type=time]+input[type=number],.wpcf7 .input-group>input[type=time]+input[type=range],.wpcf7 .input-group>input[type=time]+input[type=search],.wpcf7 .input-group>input[type=time]+input[type=submit],.wpcf7 .input-group>input[type=time]+input[type=tel],.wpcf7 .input-group>input[type=time]+input[type=text],.wpcf7 .input-group>input[type=time]+input[type=time],.wpcf7 .input-group>input[type=time]+input[type=url],.wpcf7 .input-group>input[type=time]+input[type=week],.wpcf7 .input-group>input[type=time]+select,.wpcf7 .input-group>input[type=time]+textarea,.wpcf7 .input-group>input[type=url]+.custom-file,.wpcf7 .input-group>input[type=url]+.custom-select,.wpcf7 .input-group>input[type=url]+.floating-label,.wpcf7 .input-group>input[type=url]+.form-control,.wpcf7 .input-group>input[type=url]+.form-control-file,.wpcf7 .input-group>input[type=url]+.textfield-box,.wpcf7 .input-group>input[type=url]+.wpcf7-validation-errors,.wpcf7 .input-group>input[type=url]+input[type=color],.wpcf7 .input-group>input[type=url]+input[type=date],.wpcf7 .input-group>input[type=url]+input[type=datetime-local],.wpcf7 .input-group>input[type=url]+input[type=datetime],.wpcf7 .input-group>input[type=url]+input[type=email],.wpcf7 .input-group>input[type=url]+input[type=file],.wpcf7 .input-group>input[type=url]+input[type=month],.wpcf7 .input-group>input[type=url]+input[type=number],.wpcf7 .input-group>input[type=url]+input[type=range],.wpcf7 .input-group>input[type=url]+input[type=search],.wpcf7 .input-group>input[type=url]+input[type=submit],.wpcf7 .input-group>input[type=url]+input[type=tel],.wpcf7 .input-group>input[type=url]+input[type=text],.wpcf7 .input-group>input[type=url]+input[type=time],.wpcf7 .input-group>input[type=url]+input[type=url],.wpcf7 .input-group>input[type=url]+input[type=week],.wpcf7 .input-group>input[type=url]+select,.wpcf7 .input-group>input[type=url]+textarea,.wpcf7 .input-group>input[type=week]+.custom-file,.wpcf7 .input-group>input[type=week]+.custom-select,.wpcf7 .input-group>input[type=week]+.floating-label,.wpcf7 .input-group>input[type=week]+.form-control,.wpcf7 .input-group>input[type=week]+.form-control-file,.wpcf7 .input-group>input[type=week]+.textfield-box,.wpcf7 .input-group>input[type=week]+.wpcf7-validation-errors,.wpcf7 .input-group>input[type=week]+input[type=color],.wpcf7 .input-group>input[type=week]+input[type=date],.wpcf7 .input-group>input[type=week]+input[type=datetime-local],.wpcf7 .input-group>input[type=week]+input[type=datetime],.wpcf7 .input-group>input[type=week]+input[type=email],.wpcf7 .input-group>input[type=week]+input[type=file],.wpcf7 .input-group>input[type=week]+input[type=month],.wpcf7 .input-group>input[type=week]+input[type=number],.wpcf7 .input-group>input[type=week]+input[type=range],.wpcf7 .input-group>input[type=week]+input[type=search],.wpcf7 .input-group>input[type=week]+input[type=submit],.wpcf7 .input-group>input[type=week]+input[type=tel],.wpcf7 .input-group>input[type=week]+input[type=text],.wpcf7 .input-group>input[type=week]+input[type=time],.wpcf7 .input-group>input[type=week]+input[type=url],.wpcf7 .input-group>input[type=week]+input[type=week],.wpcf7 .input-group>input[type=week]+select,.wpcf7 .input-group>input[type=week]+textarea,.wpcf7 .input-group>select+.custom-file,.wpcf7 .input-group>select+.custom-select,.wpcf7 .input-group>select+.floating-label,.wpcf7 .input-group>select+.form-control,.wpcf7 .input-group>select+.form-control-file,.wpcf7 .input-group>select+.textfield-box,.wpcf7 .input-group>select+.wpcf7-validation-errors,.wpcf7 .input-group>select+input[type=color],.wpcf7 .input-group>select+input[type=date],.wpcf7 .input-group>select+input[type=datetime-local],.wpcf7 .input-group>select+input[type=datetime],.wpcf7 .input-group>select+input[type=email],.wpcf7 .input-group>select+input[type=file],.wpcf7 .input-group>select+input[type=month],.wpcf7 .input-group>select+input[type=number],.wpcf7 .input-group>select+input[type=range],.wpcf7 .input-group>select+input[type=search],.wpcf7 .input-group>select+input[type=submit],.wpcf7 .input-group>select+input[type=tel],.wpcf7 .input-group>select+input[type=text],.wpcf7 .input-group>select+input[type=time],.wpcf7 .input-group>select+input[type=url],.wpcf7 .input-group>select+input[type=week],.wpcf7 .input-group>select+select,.wpcf7 .input-group>select+textarea,.wpcf7 .input-group>textarea+.custom-file,.wpcf7 .input-group>textarea+.custom-select,.wpcf7 .input-group>textarea+.floating-label,.wpcf7 .input-group>textarea+.form-control,.wpcf7 .input-group>textarea+.form-control-file,.wpcf7 .input-group>textarea+.textfield-box,.wpcf7 .input-group>textarea+.wpcf7-validation-errors,.wpcf7 .input-group>textarea+input[type=color],.wpcf7 .input-group>textarea+input[type=date],.wpcf7 .input-group>textarea+input[type=datetime-local],.wpcf7 .input-group>textarea+input[type=datetime],.wpcf7 .input-group>textarea+input[type=email],.wpcf7 .input-group>textarea+input[type=file],.wpcf7 .input-group>textarea+input[type=month],.wpcf7 .input-group>textarea+input[type=number],.wpcf7 .input-group>textarea+input[type=range],.wpcf7 .input-group>textarea+input[type=search],.wpcf7 .input-group>textarea+input[type=submit],.wpcf7 .input-group>textarea+input[type=tel],.wpcf7 .input-group>textarea+input[type=text],.wpcf7 .input-group>textarea+input[type=time],.wpcf7 .input-group>textarea+input[type=url],.wpcf7 .input-group>textarea+input[type=week],.wpcf7 .input-group>textarea+select,.wpcf7 .input-group>textarea+textarea{margin-left:1rem}.input-group-append,.input-group-prepend{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.input-group-append .btn,.input-group-append .tag-cloud-link,.input-group-append .wpcf7 input[type=submit],.input-group-prepend .btn,.input-group-prepend .tag-cloud-link,.input-group-prepend .wpcf7 input[type=submit],.wpcf7 .input-group-append input[type=submit],.wpcf7 .input-group-prepend input[type=submit]{min-width:0}.input-group-append .btn+.btn,.input-group-append .btn+.tag-cloud-link,.input-group-append .tag-cloud-link+.btn,.input-group-append .tag-cloud-link+.tag-cloud-link,.input-group-append .wpcf7 .btn+input[type=submit],.input-group-append .wpcf7 .tag-cloud-link+input[type=submit],.input-group-append .wpcf7 input[type=submit]+.btn,.input-group-append .wpcf7 input[type=submit]+.tag-cloud-link,.input-group-append .wpcf7 input[type=submit]+input[type=submit],.input-group-prepend .btn+.btn,.input-group-prepend .btn+.tag-cloud-link,.input-group-prepend .tag-cloud-link+.btn,.input-group-prepend .tag-cloud-link+.tag-cloud-link,.input-group-prepend .wpcf7 .btn+input[type=submit],.input-group-prepend .wpcf7 .tag-cloud-link+input[type=submit],.input-group-prepend .wpcf7 input[type=submit]+.btn,.input-group-prepend .wpcf7 input[type=submit]+.tag-cloud-link,.input-group-prepend .wpcf7 input[type=submit]+input[type=submit],.wpcf7 .input-group-append .btn+input[type=submit],.wpcf7 .input-group-append .tag-cloud-link+input[type=submit],.wpcf7 .input-group-append input[type=submit]+.btn,.wpcf7 .input-group-append input[type=submit]+.tag-cloud-link,.wpcf7 .input-group-append input[type=submit]+input[type=submit],.wpcf7 .input-group-prepend .btn+input[type=submit],.wpcf7 .input-group-prepend .tag-cloud-link+input[type=submit],.wpcf7 .input-group-prepend input[type=submit]+.btn,.wpcf7 .input-group-prepend input[type=submit]+.tag-cloud-link,.wpcf7 .input-group-prepend input[type=submit]+input[type=submit]{margin-left:-1px}.input-group-append{margin-left:1rem}.input-group-prepend{margin-right:1rem}.input-group-text{color:inherit;font-size:1rem;line-height:1.5;margin-bottom:0;white-space:nowrap}.input-group-text+.input-group-text{margin-left:.5rem}.input-group>.input-group-append>.btn:not(:first-of-type),.input-group>.input-group-append>.tag-cloud-link:not(:first-of-type),.input-group>.input-group-prepend>.btn:not(:first-of-type),.input-group>.input-group-prepend>.tag-cloud-link:not(:first-of-type),.wpcf7 .input-group>.input-group-append>input:not(:first-of-type)[type=submit],.wpcf7 .input-group>.input-group-prepend>input:not(:first-of-type)[type=submit]{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.input-group-append>.btn:not(:last-of-type),.input-group>.input-group-append>.tag-cloud-link:not(:last-of-type),.input-group>.input-group-prepend>.btn:not(:last-of-type),.input-group>.input-group-prepend>.tag-cloud-link:not(:last-of-type),.wpcf7 .input-group>.input-group-append>input:not(:last-of-type)[type=submit],.wpcf7 .input-group>.input-group-prepend>input:not(:last-of-type)[type=submit]{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-icon{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:color;transition-property:color;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);color:rgba(0,0,0,.42);font-size:.875rem;margin-right:1rem;-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}@media (min-width:576px){.input-group-icon{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.input-group-icon{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.input-group-icon{-webkit-transition:none;transition:none}}.input-group-icon:hover{color:rgba(0,0,0,.87)}.floating-label.is-focused~.input-group-icon,.form-control:focus~.input-group-icon,.wpcf7 .wpcf7-validation-errors:focus~.input-group-icon,.wpcf7 input:focus[type=color]~.input-group-icon,.wpcf7 input:focus[type=date]~.input-group-icon,.wpcf7 input:focus[type=datetime-local]~.input-group-icon,.wpcf7 input:focus[type=datetime]~.input-group-icon,.wpcf7 input:focus[type=email]~.input-group-icon,.wpcf7 input:focus[type=file]~.input-group-icon,.wpcf7 input:focus[type=month]~.input-group-icon,.wpcf7 input:focus[type=number]~.input-group-icon,.wpcf7 input:focus[type=range]~.input-group-icon,.wpcf7 input:focus[type=search]~.input-group-icon,.wpcf7 input:focus[type=submit]~.input-group-icon,.wpcf7 input:focus[type=tel]~.input-group-icon,.wpcf7 input:focus[type=text]~.input-group-icon,.wpcf7 input:focus[type=time]~.input-group-icon,.wpcf7 input:focus[type=url]~.input-group-icon,.wpcf7 input:focus[type=week]~.input-group-icon,.wpcf7 select:focus~.input-group-icon,.wpcf7 textarea:focus~.input-group-icon{color:#f07206}.floating-label:not(.textfield-box)~.input-group-icon{margin-top:.75rem}.input-group-lg>.floating-label.has-value label,.input-group-lg>.floating-label.is-focused label{top:0}.input-group-lg>.floating-label.textfield-box.has-value label,.input-group-lg>.floating-label.textfield-box.is-focused label{top:.5rem}.input-group-lg>.floating-label:not(.textfield-box)~.input-group-icon{margin-top:.875rem}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.form-control-file,.wpcf7 .input-group-lg>.wpcf7-validation-errors,.wpcf7 .input-group-lg>input[type=color],.wpcf7 .input-group-lg>input[type=date],.wpcf7 .input-group-lg>input[type=datetime-local],.wpcf7 .input-group-lg>input[type=datetime],.wpcf7 .input-group-lg>input[type=email],.wpcf7 .input-group-lg>input[type=file],.wpcf7 .input-group-lg>input[type=month],.wpcf7 .input-group-lg>input[type=number],.wpcf7 .input-group-lg>input[type=range],.wpcf7 .input-group-lg>input[type=search],.wpcf7 .input-group-lg>input[type=submit],.wpcf7 .input-group-lg>input[type=tel],.wpcf7 .input-group-lg>input[type=text],.wpcf7 .input-group-lg>input[type=time],.wpcf7 .input-group-lg>input[type=url],.wpcf7 .input-group-lg>input[type=week],.wpcf7 .input-group-lg>select,.wpcf7 .input-group-lg>textarea{font-size:2.125rem;line-height:1.17647;padding:.625rem 0 calc(.625rem - 1px)}.input-group-lg>.custom-select,.input-group-lg>select.form-control,.wpcf7 .input-group-lg>select{padding-right:1.5em}.input-group-lg>.custom-select[multiple],.input-group-lg>.custom-select[size]:not([size='1']),.input-group-lg>select.form-control[multiple],.input-group-lg>select.form-control[size]:not([size='1']),.input-group-lg>textarea.form-control:not([rows='1']),.wpcf7 .input-group-lg>select[multiple],.wpcf7 .input-group-lg>select[size]:not([size='1']),.wpcf7 .input-group-lg>textarea:not([rows='1']){padding:.875rem 1rem calc(.875rem - 1px)}.input-group-lg>.form-control-file,.input-group-lg>.form-control[type=file],.wpcf7 .input-group-lg>.wpcf7-validation-errors[type=file],.wpcf7 .input-group-lg>input[type=file][type=color],.wpcf7 .input-group-lg>input[type=file][type=date],.wpcf7 .input-group-lg>input[type=file][type=datetime-local],.wpcf7 .input-group-lg>input[type=file][type=datetime],.wpcf7 .input-group-lg>input[type=file][type=email],.wpcf7 .input-group-lg>input[type=file][type=file],.wpcf7 .input-group-lg>input[type=file][type=month],.wpcf7 .input-group-lg>input[type=file][type=number],.wpcf7 .input-group-lg>input[type=file][type=range],.wpcf7 .input-group-lg>input[type=file][type=search],.wpcf7 .input-group-lg>input[type=file][type=submit],.wpcf7 .input-group-lg>input[type=file][type=tel],.wpcf7 .input-group-lg>input[type=file][type=text],.wpcf7 .input-group-lg>input[type=file][type=time],.wpcf7 .input-group-lg>input[type=file][type=url],.wpcf7 .input-group-lg>input[type=file][type=week],.wpcf7 .input-group-lg>select[type=file],.wpcf7 .input-group-lg>textarea[type=file]{max-height:4.25rem}.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.input-group-text{font-size:2.125rem;line-height:1.17647}.input-group-lg>.input-group-icon{font-size:1.85938rem;line-height:1.17647}.input-group-sm>.floating-label.has-value label,.input-group-sm>.floating-label.is-focused label{top:0}.input-group-sm>.floating-label.textfield-box.has-value label,.input-group-sm>.floating-label.textfield-box.is-focused label{top:.5rem}.input-group-sm>.floating-label:not(.textfield-box)~.input-group-icon{margin-top:.625rem}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.form-control-file,.wpcf7 .input-group-sm>.wpcf7-validation-errors,.wpcf7 .input-group-sm>input[type=color],.wpcf7 .input-group-sm>input[type=date],.wpcf7 .input-group-sm>input[type=datetime-local],.wpcf7 .input-group-sm>input[type=datetime],.wpcf7 .input-group-sm>input[type=email],.wpcf7 .input-group-sm>input[type=file],.wpcf7 .input-group-sm>input[type=month],.wpcf7 .input-group-sm>input[type=number],.wpcf7 .input-group-sm>input[type=range],.wpcf7 .input-group-sm>input[type=search],.wpcf7 .input-group-sm>input[type=submit],.wpcf7 .input-group-sm>input[type=tel],.wpcf7 .input-group-sm>input[type=text],.wpcf7 .input-group-sm>input[type=time],.wpcf7 .input-group-sm>input[type=url],.wpcf7 .input-group-sm>input[type=week],.wpcf7 .input-group-sm>select,.wpcf7 .input-group-sm>textarea{font-size:.8125rem;line-height:1.53846;padding:.375rem 0 calc(.375rem - 1px)}.input-group-sm>.custom-select,.input-group-sm>select.form-control,.wpcf7 .input-group-sm>select{padding-right:1.5em}.input-group-sm>.custom-select[multiple],.input-group-sm>.custom-select[size]:not([size='1']),.input-group-sm>select.form-control[multiple],.input-group-sm>select.form-control[size]:not([size='1']),.input-group-sm>textarea.form-control:not([rows='1']),.wpcf7 .input-group-sm>select[multiple],.wpcf7 .input-group-sm>select[size]:not([size='1']),.wpcf7 .input-group-sm>textarea:not([rows='1']){padding:.75rem .75rem calc(.75rem - 1px)}.input-group-sm>.form-control-file,.input-group-sm>.form-control[type=file],.wpcf7 .input-group-sm>.wpcf7-validation-errors[type=file],.wpcf7 .input-group-sm>input[type=file][type=color],.wpcf7 .input-group-sm>input[type=file][type=date],.wpcf7 .input-group-sm>input[type=file][type=datetime-local],.wpcf7 .input-group-sm>input[type=file][type=datetime],.wpcf7 .input-group-sm>input[type=file][type=email],.wpcf7 .input-group-sm>input[type=file][type=file],.wpcf7 .input-group-sm>input[type=file][type=month],.wpcf7 .input-group-sm>input[type=file][type=number],.wpcf7 .input-group-sm>input[type=file][type=range],.wpcf7 .input-group-sm>input[type=file][type=search],.wpcf7 .input-group-sm>input[type=file][type=submit],.wpcf7 .input-group-sm>input[type=file][type=tel],.wpcf7 .input-group-sm>input[type=file][type=text],.wpcf7 .input-group-sm>input[type=file][type=time],.wpcf7 .input-group-sm>input[type=file][type=url],.wpcf7 .input-group-sm>input[type=file][type=week],.wpcf7 .input-group-sm>select[type=file],.wpcf7 .input-group-sm>textarea[type=file]{max-height:2.75rem}.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.input-group-text{font-size:.8125rem;line-height:1.53846}.input-group-sm>.input-group-icon{font-size:.71094rem;line-height:1.53846}.navbar{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:rgba(0,0,0,.87);display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;min-height:3.5rem;padding:.625rem 1rem;position:relative}.navbar .form-control,.navbar .wpcf7 .wpcf7-validation-errors,.navbar .wpcf7 input[type=color],.navbar .wpcf7 input[type=date],.navbar .wpcf7 input[type=datetime-local],.navbar .wpcf7 input[type=datetime],.navbar .wpcf7 input[type=email],.navbar .wpcf7 input[type=file],.navbar .wpcf7 input[type=month],.navbar .wpcf7 input[type=number],.navbar .wpcf7 input[type=range],.navbar .wpcf7 input[type=search],.navbar .wpcf7 input[type=submit],.navbar .wpcf7 input[type=tel],.navbar .wpcf7 input[type=text],.navbar .wpcf7 input[type=time],.navbar .wpcf7 input[type=url],.navbar .wpcf7 input[type=week],.navbar .wpcf7 select,.navbar .wpcf7 textarea,.wpcf7 .navbar .wpcf7-validation-errors,.wpcf7 .navbar input[type=color],.wpcf7 .navbar input[type=date],.wpcf7 .navbar input[type=datetime-local],.wpcf7 .navbar input[type=datetime],.wpcf7 .navbar input[type=email],.wpcf7 .navbar input[type=file],.wpcf7 .navbar input[type=month],.wpcf7 .navbar input[type=number],.wpcf7 .navbar input[type=range],.wpcf7 .navbar input[type=search],.wpcf7 .navbar input[type=submit],.wpcf7 .navbar input[type=tel],.wpcf7 .navbar input[type=text],.wpcf7 .navbar input[type=time],.wpcf7 .navbar input[type=url],.wpcf7 .navbar input[type=week],.wpcf7 .navbar select,.wpcf7 .navbar textarea{border-radius:2px;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:rgba(0,0,0,.12);border:0;color:inherit;opacity:.7;padding:.375rem 1rem}@media (min-width:576px){.navbar .form-control,.navbar .wpcf7 .wpcf7-validation-errors,.navbar .wpcf7 input[type=color],.navbar .wpcf7 input[type=date],.navbar .wpcf7 input[type=datetime-local],.navbar .wpcf7 input[type=datetime],.navbar .wpcf7 input[type=email],.navbar .wpcf7 input[type=file],.navbar .wpcf7 input[type=month],.navbar .wpcf7 input[type=number],.navbar .wpcf7 input[type=range],.navbar .wpcf7 input[type=search],.navbar .wpcf7 input[type=submit],.navbar .wpcf7 input[type=tel],.navbar .wpcf7 input[type=text],.navbar .wpcf7 input[type=time],.navbar .wpcf7 input[type=url],.navbar .wpcf7 input[type=week],.navbar .wpcf7 select,.navbar .wpcf7 textarea,.wpcf7 .navbar .wpcf7-validation-errors,.wpcf7 .navbar input[type=color],.wpcf7 .navbar input[type=date],.wpcf7 .navbar input[type=datetime-local],.wpcf7 .navbar input[type=datetime],.wpcf7 .navbar input[type=email],.wpcf7 .navbar input[type=file],.wpcf7 .navbar input[type=month],.wpcf7 .navbar input[type=number],.wpcf7 .navbar input[type=range],.wpcf7 .navbar input[type=search],.wpcf7 .navbar input[type=submit],.wpcf7 .navbar input[type=tel],.wpcf7 .navbar input[type=text],.wpcf7 .navbar input[type=time],.wpcf7 .navbar input[type=url],.wpcf7 .navbar input[type=week],.wpcf7 .navbar select,.wpcf7 .navbar textarea{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.navbar .form-control,.navbar .wpcf7 .wpcf7-validation-errors,.navbar .wpcf7 input[type=color],.navbar .wpcf7 input[type=date],.navbar .wpcf7 input[type=datetime-local],.navbar .wpcf7 input[type=datetime],.navbar .wpcf7 input[type=email],.navbar .wpcf7 input[type=file],.navbar .wpcf7 input[type=month],.navbar .wpcf7 input[type=number],.navbar .wpcf7 input[type=range],.navbar .wpcf7 input[type=search],.navbar .wpcf7 input[type=submit],.navbar .wpcf7 input[type=tel],.navbar .wpcf7 input[type=text],.navbar .wpcf7 input[type=time],.navbar .wpcf7 input[type=url],.navbar .wpcf7 input[type=week],.navbar .wpcf7 select,.navbar .wpcf7 textarea,.wpcf7 .navbar .wpcf7-validation-errors,.wpcf7 .navbar input[type=color],.wpcf7 .navbar input[type=date],.wpcf7 .navbar input[type=datetime-local],.wpcf7 .navbar input[type=datetime],.wpcf7 .navbar input[type=email],.wpcf7 .navbar input[type=file],.wpcf7 .navbar input[type=month],.wpcf7 .navbar input[type=number],.wpcf7 .navbar input[type=range],.wpcf7 .navbar input[type=search],.wpcf7 .navbar input[type=submit],.wpcf7 .navbar input[type=tel],.wpcf7 .navbar input[type=text],.wpcf7 .navbar input[type=time],.wpcf7 .navbar input[type=url],.wpcf7 .navbar input[type=week],.wpcf7 .navbar select,.wpcf7 .navbar textarea{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.navbar .form-control,.navbar .wpcf7 .wpcf7-validation-errors,.navbar .wpcf7 input[type=color],.navbar .wpcf7 input[type=date],.navbar .wpcf7 input[type=datetime-local],.navbar .wpcf7 input[type=datetime],.navbar .wpcf7 input[type=email],.navbar .wpcf7 input[type=file],.navbar .wpcf7 input[type=month],.navbar .wpcf7 input[type=number],.navbar .wpcf7 input[type=range],.navbar .wpcf7 input[type=search],.navbar .wpcf7 input[type=submit],.navbar .wpcf7 input[type=tel],.navbar .wpcf7 input[type=text],.navbar .wpcf7 input[type=time],.navbar .wpcf7 input[type=url],.navbar .wpcf7 input[type=week],.navbar .wpcf7 select,.navbar .wpcf7 textarea,.wpcf7 .navbar .wpcf7-validation-errors,.wpcf7 .navbar input[type=color],.wpcf7 .navbar input[type=date],.wpcf7 .navbar input[type=datetime-local],.wpcf7 .navbar input[type=datetime],.wpcf7 .navbar input[type=email],.wpcf7 .navbar input[type=file],.wpcf7 .navbar input[type=month],.wpcf7 .navbar input[type=number],.wpcf7 .navbar input[type=range],.wpcf7 .navbar input[type=search],.wpcf7 .navbar input[type=submit],.wpcf7 .navbar input[type=tel],.wpcf7 .navbar input[type=text],.wpcf7 .navbar input[type=time],.wpcf7 .navbar input[type=url],.wpcf7 .navbar input[type=week],.wpcf7 .navbar select,.wpcf7 .navbar textarea{-webkit-transition:none;transition:none}}.navbar .form-control:focus,.navbar .form-control:hover,.navbar .wpcf7 .wpcf7-validation-errors:focus,.navbar .wpcf7 .wpcf7-validation-errors:hover,.navbar .wpcf7 input:focus[type=color],.navbar .wpcf7 input:focus[type=date],.navbar .wpcf7 input:focus[type=datetime-local],.navbar .wpcf7 input:focus[type=datetime],.navbar .wpcf7 input:focus[type=email],.navbar .wpcf7 input:focus[type=file],.navbar .wpcf7 input:focus[type=month],.navbar .wpcf7 input:focus[type=number],.navbar .wpcf7 input:focus[type=range],.navbar .wpcf7 input:focus[type=search],.navbar .wpcf7 input:focus[type=submit],.navbar .wpcf7 input:focus[type=tel],.navbar .wpcf7 input:focus[type=text],.navbar .wpcf7 input:focus[type=time],.navbar .wpcf7 input:focus[type=url],.navbar .wpcf7 input:focus[type=week],.navbar .wpcf7 input:hover[type=color],.navbar .wpcf7 input:hover[type=date],.navbar .wpcf7 input:hover[type=datetime-local],.navbar .wpcf7 input:hover[type=datetime],.navbar .wpcf7 input:hover[type=email],.navbar .wpcf7 input:hover[type=file],.navbar .wpcf7 input:hover[type=month],.navbar .wpcf7 input:hover[type=number],.navbar .wpcf7 input:hover[type=range],.navbar .wpcf7 input:hover[type=search],.navbar .wpcf7 input:hover[type=submit],.navbar .wpcf7 input:hover[type=tel],.navbar .wpcf7 input:hover[type=text],.navbar .wpcf7 input:hover[type=time],.navbar .wpcf7 input:hover[type=url],.navbar .wpcf7 input:hover[type=week],.navbar .wpcf7 select:focus,.navbar .wpcf7 select:hover,.navbar .wpcf7 textarea:focus,.navbar .wpcf7 textarea:hover,.wpcf7 .navbar .wpcf7-validation-errors:focus,.wpcf7 .navbar .wpcf7-validation-errors:hover,.wpcf7 .navbar input:focus[type=color],.wpcf7 .navbar input:focus[type=date],.wpcf7 .navbar input:focus[type=datetime-local],.wpcf7 .navbar input:focus[type=datetime],.wpcf7 .navbar input:focus[type=email],.wpcf7 .navbar input:focus[type=file],.wpcf7 .navbar input:focus[type=month],.wpcf7 .navbar input:focus[type=number],.wpcf7 .navbar input:focus[type=range],.wpcf7 .navbar input:focus[type=search],.wpcf7 .navbar input:focus[type=submit],.wpcf7 .navbar input:focus[type=tel],.wpcf7 .navbar input:focus[type=text],.wpcf7 .navbar input:focus[type=time],.wpcf7 .navbar input:focus[type=url],.wpcf7 .navbar input:focus[type=week],.wpcf7 .navbar input:hover[type=color],.wpcf7 .navbar input:hover[type=date],.wpcf7 .navbar input:hover[type=datetime-local],.wpcf7 .navbar input:hover[type=datetime],.wpcf7 .navbar input:hover[type=email],.wpcf7 .navbar input:hover[type=file],.wpcf7 .navbar input:hover[type=month],.wpcf7 .navbar input:hover[type=number],.wpcf7 .navbar input:hover[type=range],.wpcf7 .navbar input:hover[type=search],.wpcf7 .navbar input:hover[type=submit],.wpcf7 .navbar input:hover[type=tel],.wpcf7 .navbar input:hover[type=text],.wpcf7 .navbar input:hover[type=time],.wpcf7 .navbar input:hover[type=url],.wpcf7 .navbar input:hover[type=week],.wpcf7 .navbar select:focus,.wpcf7 .navbar select:hover,.wpcf7 .navbar textarea:focus,.wpcf7 .navbar textarea:hover{-webkit-box-shadow:none;box-shadow:none;opacity:1}.navbar .form-control-lg{padding-top:.625rem;padding-bottom:.625rem}.navbar .form-control-sm{padding-top:.375rem;padding-bottom:.375rem}.navbar .input-group{border-radius:2px;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:rgba(0,0,0,.12);opacity:.7}@media (min-width:576px){.navbar .input-group{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.navbar .input-group{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.navbar .input-group{-webkit-transition:none;transition:none}}.navbar .input-group:focus,.navbar .input-group:hover{opacity:1}.navbar .input-group .form-control,.navbar .input-group .wpcf7 .wpcf7-validation-errors,.navbar .input-group .wpcf7 input[type=color],.navbar .input-group .wpcf7 input[type=date],.navbar .input-group .wpcf7 input[type=datetime-local],.navbar .input-group .wpcf7 input[type=datetime],.navbar .input-group .wpcf7 input[type=email],.navbar .input-group .wpcf7 input[type=file],.navbar .input-group .wpcf7 input[type=month],.navbar .input-group .wpcf7 input[type=number],.navbar .input-group .wpcf7 input[type=range],.navbar .input-group .wpcf7 input[type=search],.navbar .input-group .wpcf7 input[type=submit],.navbar .input-group .wpcf7 input[type=tel],.navbar .input-group .wpcf7 input[type=text],.navbar .input-group .wpcf7 input[type=time],.navbar .input-group .wpcf7 input[type=url],.navbar .input-group .wpcf7 input[type=week],.navbar .input-group .wpcf7 select,.navbar .input-group .wpcf7 textarea,.wpcf7 .navbar .input-group .wpcf7-validation-errors,.wpcf7 .navbar .input-group input[type=color],.wpcf7 .navbar .input-group input[type=date],.wpcf7 .navbar .input-group input[type=datetime-local],.wpcf7 .navbar .input-group input[type=datetime],.wpcf7 .navbar .input-group input[type=email],.wpcf7 .navbar .input-group input[type=file],.wpcf7 .navbar .input-group input[type=month],.wpcf7 .navbar .input-group input[type=number],.wpcf7 .navbar .input-group input[type=range],.wpcf7 .navbar .input-group input[type=search],.wpcf7 .navbar .input-group input[type=submit],.wpcf7 .navbar .input-group input[type=tel],.wpcf7 .navbar .input-group input[type=text],.wpcf7 .navbar .input-group input[type=time],.wpcf7 .navbar .input-group input[type=url],.wpcf7 .navbar .input-group input[type=week],.wpcf7 .navbar .input-group select,.wpcf7 .navbar .input-group textarea{background-color:transparent;opacity:1}.navbar .input-group .form-control:not(:first-child),.navbar .input-group .wpcf7 .wpcf7-validation-errors:not(:first-child),.navbar .input-group .wpcf7 input:not(:first-child)[type=color],.navbar .input-group .wpcf7 input:not(:first-child)[type=date],.navbar .input-group .wpcf7 input:not(:first-child)[type=datetime-local],.navbar .input-group .wpcf7 input:not(:first-child)[type=datetime],.navbar .input-group .wpcf7 input:not(:first-child)[type=email],.navbar .input-group .wpcf7 input:not(:first-child)[type=file],.navbar .input-group .wpcf7 input:not(:first-child)[type=month],.navbar .input-group .wpcf7 input:not(:first-child)[type=number],.navbar .input-group .wpcf7 input:not(:first-child)[type=range],.navbar .input-group .wpcf7 input:not(:first-child)[type=search],.navbar .input-group .wpcf7 input:not(:first-child)[type=submit],.navbar .input-group .wpcf7 input:not(:first-child)[type=tel],.navbar .input-group .wpcf7 input:not(:first-child)[type=text],.navbar .input-group .wpcf7 input:not(:first-child)[type=time],.navbar .input-group .wpcf7 input:not(:first-child)[type=url],.navbar .input-group .wpcf7 input:not(:first-child)[type=week],.navbar .input-group .wpcf7 select:not(:first-child),.navbar .input-group .wpcf7 textarea:not(:first-child),.wpcf7 .navbar .input-group .wpcf7-validation-errors:not(:first-child),.wpcf7 .navbar .input-group input:not(:first-child)[type=color],.wpcf7 .navbar .input-group input:not(:first-child)[type=date],.wpcf7 .navbar .input-group input:not(:first-child)[type=datetime-local],.wpcf7 .navbar .input-group input:not(:first-child)[type=datetime],.wpcf7 .navbar .input-group input:not(:first-child)[type=email],.wpcf7 .navbar .input-group input:not(:first-child)[type=file],.wpcf7 .navbar .input-group input:not(:first-child)[type=month],.wpcf7 .navbar .input-group input:not(:first-child)[type=number],.wpcf7 .navbar .input-group input:not(:first-child)[type=range],.wpcf7 .navbar .input-group input:not(:first-child)[type=search],.wpcf7 .navbar .input-group input:not(:first-child)[type=submit],.wpcf7 .navbar .input-group input:not(:first-child)[type=tel],.wpcf7 .navbar .input-group input:not(:first-child)[type=text],.wpcf7 .navbar .input-group input:not(:first-child)[type=time],.wpcf7 .navbar .input-group input:not(:first-child)[type=url],.wpcf7 .navbar .input-group input:not(:first-child)[type=week],.wpcf7 .navbar .input-group select:not(:first-child),.wpcf7 .navbar .input-group textarea:not(:first-child){padding-left:0}.navbar .input-group .form-control:not(:last-child),.navbar .input-group .wpcf7 .wpcf7-validation-errors:not(:last-child),.navbar .input-group .wpcf7 input:not(:last-child)[type=color],.navbar .input-group .wpcf7 input:not(:last-child)[type=date],.navbar .input-group .wpcf7 input:not(:last-child)[type=datetime-local],.navbar .input-group .wpcf7 input:not(:last-child)[type=datetime],.navbar .input-group .wpcf7 input:not(:last-child)[type=email],.navbar .input-group .wpcf7 input:not(:last-child)[type=file],.navbar .input-group .wpcf7 input:not(:last-child)[type=month],.navbar .input-group .wpcf7 input:not(:last-child)[type=number],.navbar .input-group .wpcf7 input:not(:last-child)[type=range],.navbar .input-group .wpcf7 input:not(:last-child)[type=search],.navbar .input-group .wpcf7 input:not(:last-child)[type=submit],.navbar .input-group .wpcf7 input:not(:last-child)[type=tel],.navbar .input-group .wpcf7 input:not(:last-child)[type=text],.navbar .input-group .wpcf7 input:not(:last-child)[type=time],.navbar .input-group .wpcf7 input:not(:last-child)[type=url],.navbar .input-group .wpcf7 input:not(:last-child)[type=week],.navbar .input-group .wpcf7 select:not(:last-child),.navbar .input-group .wpcf7 textarea:not(:last-child),.wpcf7 .navbar .input-group .wpcf7-validation-errors:not(:last-child),.wpcf7 .navbar .input-group input:not(:last-child)[type=color],.wpcf7 .navbar .input-group input:not(:last-child)[type=date],.wpcf7 .navbar .input-group input:not(:last-child)[type=datetime-local],.wpcf7 .navbar .input-group input:not(:last-child)[type=datetime],.wpcf7 .navbar .input-group input:not(:last-child)[type=email],.wpcf7 .navbar .input-group input:not(:last-child)[type=file],.wpcf7 .navbar .input-group input:not(:last-child)[type=month],.wpcf7 .navbar .input-group input:not(:last-child)[type=number],.wpcf7 .navbar .input-group input:not(:last-child)[type=range],.wpcf7 .navbar .input-group input:not(:last-child)[type=search],.wpcf7 .navbar .input-group input:not(:last-child)[type=submit],.wpcf7 .navbar .input-group input:not(:last-child)[type=tel],.wpcf7 .navbar .input-group input:not(:last-child)[type=text],.wpcf7 .navbar .input-group input:not(:last-child)[type=time],.wpcf7 .navbar .input-group input:not(:last-child)[type=url],.wpcf7 .navbar .input-group input:not(:last-child)[type=week],.wpcf7 .navbar .input-group select:not(:last-child),.wpcf7 .navbar .input-group textarea:not(:last-child){padding-right:0}.navbar .input-group .input-group-append{margin-left:0;min-width:0}.navbar .input-group .input-group-prepend{margin-right:0;min-width:0}.navbar .input-group .input-group-text{margin-right:1rem;margin-left:1rem}.navbar .input-group-lg>.form-control,.navbar .wpcf7 .input-group-lg>.wpcf7-validation-errors,.navbar .wpcf7 .input-group-lg>input[type=color],.navbar .wpcf7 .input-group-lg>input[type=date],.navbar .wpcf7 .input-group-lg>input[type=datetime-local],.navbar .wpcf7 .input-group-lg>input[type=datetime],.navbar .wpcf7 .input-group-lg>input[type=email],.navbar .wpcf7 .input-group-lg>input[type=file],.navbar .wpcf7 .input-group-lg>input[type=month],.navbar .wpcf7 .input-group-lg>input[type=number],.navbar .wpcf7 .input-group-lg>input[type=range],.navbar .wpcf7 .input-group-lg>input[type=search],.navbar .wpcf7 .input-group-lg>input[type=submit],.navbar .wpcf7 .input-group-lg>input[type=tel],.navbar .wpcf7 .input-group-lg>input[type=text],.navbar .wpcf7 .input-group-lg>input[type=time],.navbar .wpcf7 .input-group-lg>input[type=url],.navbar .wpcf7 .input-group-lg>input[type=week],.navbar .wpcf7 .input-group-lg>select,.navbar .wpcf7 .input-group-lg>textarea,.wpcf7 .navbar .input-group-lg>.wpcf7-validation-errors,.wpcf7 .navbar .input-group-lg>input[type=color],.wpcf7 .navbar .input-group-lg>input[type=date],.wpcf7 .navbar .input-group-lg>input[type=datetime-local],.wpcf7 .navbar .input-group-lg>input[type=datetime],.wpcf7 .navbar .input-group-lg>input[type=email],.wpcf7 .navbar .input-group-lg>input[type=file],.wpcf7 .navbar .input-group-lg>input[type=month],.wpcf7 .navbar .input-group-lg>input[type=number],.wpcf7 .navbar .input-group-lg>input[type=range],.wpcf7 .navbar .input-group-lg>input[type=search],.wpcf7 .navbar .input-group-lg>input[type=submit],.wpcf7 .navbar .input-group-lg>input[type=tel],.wpcf7 .navbar .input-group-lg>input[type=text],.wpcf7 .navbar .input-group-lg>input[type=time],.wpcf7 .navbar .input-group-lg>input[type=url],.wpcf7 .navbar .input-group-lg>input[type=week],.wpcf7 .navbar .input-group-lg>select,.wpcf7 .navbar .input-group-lg>textarea{padding-top:.625rem;padding-bottom:.625rem}.navbar .input-group-sm>.form-control,.navbar .wpcf7 .input-group-sm>.wpcf7-validation-errors,.navbar .wpcf7 .input-group-sm>input[type=color],.navbar .wpcf7 .input-group-sm>input[type=date],.navbar .wpcf7 .input-group-sm>input[type=datetime-local],.navbar .wpcf7 .input-group-sm>input[type=datetime],.navbar .wpcf7 .input-group-sm>input[type=email],.navbar .wpcf7 .input-group-sm>input[type=file],.navbar .wpcf7 .input-group-sm>input[type=month],.navbar .wpcf7 .input-group-sm>input[type=number],.navbar .wpcf7 .input-group-sm>input[type=range],.navbar .wpcf7 .input-group-sm>input[type=search],.navbar .wpcf7 .input-group-sm>input[type=submit],.navbar .wpcf7 .input-group-sm>input[type=tel],.navbar .wpcf7 .input-group-sm>input[type=text],.navbar .wpcf7 .input-group-sm>input[type=time],.navbar .wpcf7 .input-group-sm>input[type=url],.navbar .wpcf7 .input-group-sm>input[type=week],.navbar .wpcf7 .input-group-sm>select,.navbar .wpcf7 .input-group-sm>textarea,.wpcf7 .navbar .input-group-sm>.wpcf7-validation-errors,.wpcf7 .navbar .input-group-sm>input[type=color],.wpcf7 .navbar .input-group-sm>input[type=date],.wpcf7 .navbar .input-group-sm>input[type=datetime-local],.wpcf7 .navbar .input-group-sm>input[type=datetime],.wpcf7 .navbar .input-group-sm>input[type=email],.wpcf7 .navbar .input-group-sm>input[type=file],.wpcf7 .navbar .input-group-sm>input[type=month],.wpcf7 .navbar .input-group-sm>input[type=number],.wpcf7 .navbar .input-group-sm>input[type=range],.wpcf7 .navbar .input-group-sm>input[type=search],.wpcf7 .navbar .input-group-sm>input[type=submit],.wpcf7 .navbar .input-group-sm>input[type=tel],.wpcf7 .navbar .input-group-sm>input[type=text],.wpcf7 .navbar .input-group-sm>input[type=time],.wpcf7 .navbar .input-group-sm>input[type=url],.wpcf7 .navbar .input-group-sm>input[type=week],.wpcf7 .navbar .input-group-sm>select,.wpcf7 .navbar .input-group-sm>textarea{padding-top:.375rem;padding-bottom:.375rem}.navbar .nav-tabs{margin-top:-.625rem;margin-bottom:-.625rem}.navbar .nav-tabs .nav-link{min-height:3.5rem;padding-top:1.3125rem;padding-bottom:1.3125rem}.navbar>.container{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.navbar-dark{color:#fff}.navbar-dark .form-control,.navbar-dark .input-group,.navbar-dark .navbar-brand::before,.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-toggler::before,.navbar-dark .wpcf7 .wpcf7-validation-errors,.navbar-dark .wpcf7 input[type=color],.navbar-dark .wpcf7 input[type=date],.navbar-dark .wpcf7 input[type=datetime-local],.navbar-dark .wpcf7 input[type=datetime],.navbar-dark .wpcf7 input[type=email],.navbar-dark .wpcf7 input[type=file],.navbar-dark .wpcf7 input[type=month],.navbar-dark .wpcf7 input[type=number],.navbar-dark .wpcf7 input[type=range],.navbar-dark .wpcf7 input[type=search],.navbar-dark .wpcf7 input[type=submit],.navbar-dark .wpcf7 input[type=tel],.navbar-dark .wpcf7 input[type=text],.navbar-dark .wpcf7 input[type=time],.navbar-dark .wpcf7 input[type=url],.navbar-dark .wpcf7 input[type=week],.navbar-dark .wpcf7 select,.navbar-dark .wpcf7 textarea,.wpcf7 .navbar-dark .wpcf7-validation-errors,.wpcf7 .navbar-dark input[type=color],.wpcf7 .navbar-dark input[type=date],.wpcf7 .navbar-dark input[type=datetime-local],.wpcf7 .navbar-dark input[type=datetime],.wpcf7 .navbar-dark input[type=email],.wpcf7 .navbar-dark input[type=file],.wpcf7 .navbar-dark input[type=month],.wpcf7 .navbar-dark input[type=number],.wpcf7 .navbar-dark input[type=range],.wpcf7 .navbar-dark input[type=search],.wpcf7 .navbar-dark input[type=submit],.wpcf7 .navbar-dark input[type=tel],.wpcf7 .navbar-dark input[type=text],.wpcf7 .navbar-dark input[type=time],.wpcf7 .navbar-dark input[type=url],.wpcf7 .navbar-dark input[type=week],.wpcf7 .navbar-dark select,.wpcf7 .navbar-dark textarea{background-color:rgba(255,255,255,.12)}.navbar-dark .form-control::-webkit-input-placeholder,.navbar-dark .navbar-nav .nav-link.disabled,.navbar-dark .wpcf7 .wpcf7-validation-errors::-webkit-input-placeholder,.navbar-dark .wpcf7 input[type=color]::-webkit-input-placeholder,.navbar-dark .wpcf7 input[type=date]::-webkit-input-placeholder,.navbar-dark .wpcf7 input[type=datetime-local]::-webkit-input-placeholder,.navbar-dark .wpcf7 input[type=datetime]::-webkit-input-placeholder,.navbar-dark .wpcf7 input[type=email]::-webkit-input-placeholder,.navbar-dark .wpcf7 input[type=file]::-webkit-input-placeholder,.navbar-dark .wpcf7 input[type=month]::-webkit-input-placeholder,.navbar-dark .wpcf7 input[type=number]::-webkit-input-placeholder,.navbar-dark .wpcf7 input[type=range]::-webkit-input-placeholder,.navbar-dark .wpcf7 input[type=search]::-webkit-input-placeholder,.navbar-dark .wpcf7 input[type=submit]::-webkit-input-placeholder,.navbar-dark .wpcf7 input[type=tel]::-webkit-input-placeholder,.navbar-dark .wpcf7 input[type=text]::-webkit-input-placeholder,.navbar-dark .wpcf7 input[type=time]::-webkit-input-placeholder,.navbar-dark .wpcf7 input[type=url]::-webkit-input-placeholder,.navbar-dark .wpcf7 input[type=week]::-webkit-input-placeholder,.navbar-dark .wpcf7 select::-webkit-input-placeholder,.navbar-dark .wpcf7 textarea::-webkit-input-placeholder,.wpcf7 .navbar-dark .wpcf7-validation-errors::-webkit-input-placeholder,.wpcf7 .navbar-dark input[type=color]::-webkit-input-placeholder,.wpcf7 .navbar-dark input[type=date]::-webkit-input-placeholder,.wpcf7 .navbar-dark input[type=datetime-local]::-webkit-input-placeholder,.wpcf7 .navbar-dark input[type=datetime]::-webkit-input-placeholder,.wpcf7 .navbar-dark input[type=email]::-webkit-input-placeholder,.wpcf7 .navbar-dark input[type=file]::-webkit-input-placeholder,.wpcf7 .navbar-dark input[type=month]::-webkit-input-placeholder,.wpcf7 .navbar-dark input[type=number]::-webkit-input-placeholder,.wpcf7 .navbar-dark input[type=range]::-webkit-input-placeholder,.wpcf7 .navbar-dark input[type=search]::-webkit-input-placeholder,.wpcf7 .navbar-dark input[type=submit]::-webkit-input-placeholder,.wpcf7 .navbar-dark input[type=tel]::-webkit-input-placeholder,.wpcf7 .navbar-dark input[type=text]::-webkit-input-placeholder,.wpcf7 .navbar-dark input[type=time]::-webkit-input-placeholder,.wpcf7 .navbar-dark input[type=url]::-webkit-input-placeholder,.wpcf7 .navbar-dark input[type=week]::-webkit-input-placeholder,.wpcf7 .navbar-dark select::-webkit-input-placeholder,.wpcf7 .navbar-dark textarea::-webkit-input-placeholder{color:rgba(255,255,255,.5)}.navbar-dark .form-control::-ms-input-placeholder,.navbar-dark .navbar-nav .nav-link.disabled,.navbar-dark .wpcf7 .wpcf7-validation-errors::-ms-input-placeholder,.navbar-dark .wpcf7 input[type=color]::-ms-input-placeholder,.navbar-dark .wpcf7 input[type=date]::-ms-input-placeholder,.navbar-dark .wpcf7 input[type=datetime-local]::-ms-input-placeholder,.navbar-dark .wpcf7 input[type=datetime]::-ms-input-placeholder,.navbar-dark .wpcf7 input[type=email]::-ms-input-placeholder,.navbar-dark .wpcf7 input[type=file]::-ms-input-placeholder,.navbar-dark .wpcf7 input[type=month]::-ms-input-placeholder,.navbar-dark .wpcf7 input[type=number]::-ms-input-placeholder,.navbar-dark .wpcf7 input[type=range]::-ms-input-placeholder,.navbar-dark .wpcf7 input[type=search]::-ms-input-placeholder,.navbar-dark .wpcf7 input[type=submit]::-ms-input-placeholder,.navbar-dark .wpcf7 input[type=tel]::-ms-input-placeholder,.navbar-dark .wpcf7 input[type=text]::-ms-input-placeholder,.navbar-dark .wpcf7 input[type=time]::-ms-input-placeholder,.navbar-dark .wpcf7 input[type=url]::-ms-input-placeholder,.navbar-dark .wpcf7 input[type=week]::-ms-input-placeholder,.navbar-dark .wpcf7 select::-ms-input-placeholder,.navbar-dark .wpcf7 textarea::-ms-input-placeholder,.wpcf7 .navbar-dark .wpcf7-validation-errors::-ms-input-placeholder,.wpcf7 .navbar-dark input[type=color]::-ms-input-placeholder,.wpcf7 .navbar-dark input[type=date]::-ms-input-placeholder,.wpcf7 .navbar-dark input[type=datetime-local]::-ms-input-placeholder,.wpcf7 .navbar-dark input[type=datetime]::-ms-input-placeholder,.wpcf7 .navbar-dark input[type=email]::-ms-input-placeholder,.wpcf7 .navbar-dark input[type=file]::-ms-input-placeholder,.wpcf7 .navbar-dark input[type=month]::-ms-input-placeholder,.wpcf7 .navbar-dark input[type=number]::-ms-input-placeholder,.wpcf7 .navbar-dark input[type=range]::-ms-input-placeholder,.wpcf7 .navbar-dark input[type=search]::-ms-input-placeholder,.wpcf7 .navbar-dark input[type=submit]::-ms-input-placeholder,.wpcf7 .navbar-dark input[type=tel]::-ms-input-placeholder,.wpcf7 .navbar-dark input[type=text]::-ms-input-placeholder,.wpcf7 .navbar-dark input[type=time]::-ms-input-placeholder,.wpcf7 .navbar-dark input[type=url]::-ms-input-placeholder,.wpcf7 .navbar-dark input[type=week]::-ms-input-placeholder,.wpcf7 .navbar-dark select::-ms-input-placeholder,.wpcf7 .navbar-dark textarea::-ms-input-placeholder{color:rgba(255,255,255,.5)}.navbar-dark .form-control::placeholder,.navbar-dark .navbar-nav .nav-link.disabled,.navbar-dark .wpcf7 .wpcf7-validation-errors::placeholder,.navbar-dark .wpcf7 input[type=color]::placeholder,.navbar-dark .wpcf7 input[type=date]::placeholder,.navbar-dark .wpcf7 input[type=datetime-local]::placeholder,.navbar-dark .wpcf7 input[type=datetime]::placeholder,.navbar-dark .wpcf7 input[type=email]::placeholder,.navbar-dark .wpcf7 input[type=file]::placeholder,.navbar-dark .wpcf7 input[type=month]::placeholder,.navbar-dark .wpcf7 input[type=number]::placeholder,.navbar-dark .wpcf7 input[type=range]::placeholder,.navbar-dark .wpcf7 input[type=search]::placeholder,.navbar-dark .wpcf7 input[type=submit]::placeholder,.navbar-dark .wpcf7 input[type=tel]::placeholder,.navbar-dark .wpcf7 input[type=text]::placeholder,.navbar-dark .wpcf7 input[type=time]::placeholder,.navbar-dark .wpcf7 input[type=url]::placeholder,.navbar-dark .wpcf7 input[type=week]::placeholder,.navbar-dark .wpcf7 select::placeholder,.navbar-dark .wpcf7 textarea::placeholder,.wpcf7 .navbar-dark .wpcf7-validation-errors::placeholder,.wpcf7 .navbar-dark input[type=color]::placeholder,.wpcf7 .navbar-dark input[type=date]::placeholder,.wpcf7 .navbar-dark input[type=datetime-local]::placeholder,.wpcf7 .navbar-dark input[type=datetime]::placeholder,.wpcf7 .navbar-dark input[type=email]::placeholder,.wpcf7 .navbar-dark input[type=file]::placeholder,.wpcf7 .navbar-dark input[type=month]::placeholder,.wpcf7 .navbar-dark input[type=number]::placeholder,.wpcf7 .navbar-dark input[type=range]::placeholder,.wpcf7 .navbar-dark input[type=search]::placeholder,.wpcf7 .navbar-dark input[type=submit]::placeholder,.wpcf7 .navbar-dark input[type=tel]::placeholder,.wpcf7 .navbar-dark input[type=text]::placeholder,.wpcf7 .navbar-dark input[type=time]::placeholder,.wpcf7 .navbar-dark input[type=url]::placeholder,.wpcf7 .navbar-dark input[type=week]::placeholder,.wpcf7 .navbar-dark select::placeholder,.wpcf7 .navbar-dark textarea::placeholder{color:rgba(255,255,255,.5)}.navbar-fixed-bottom,.navbar-fixed-top{-webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,.14),0 4px 5px 0 rgba(0,0,0,.12),0 1px 10px 0 rgba(0,0,0,.2);box-shadow:0 2px 4px 0 rgba(0,0,0,.14),0 4px 5px 0 rgba(0,0,0,.12),0 1px 10px 0 rgba(0,0,0,.2);position:fixed;right:0;left:0;z-index:40}.navbar-fixed-bottom{bottom:0}.navbar-fixed-top{top:0}.navbar-full{-webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,.14),0 4px 5px 0 rgba(0,0,0,.12),0 1px 10px 0 rgba(0,0,0,.2);box-shadow:0 2px 4px 0 rgba(0,0,0,.14),0 4px 5px 0 rgba(0,0,0,.12),0 1px 10px 0 rgba(0,0,0,.2);z-index:40}@supports ((position:-webkit-sticky) or (position:sticky)){.navbar-sticky-top{-webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,.14),0 4px 5px 0 rgba(0,0,0,.12),0 1px 10px 0 rgba(0,0,0,.2);box-shadow:0 2px 4px 0 rgba(0,0,0,.14),0 4px 5px 0 rgba(0,0,0,.12),0 1px 10px 0 rgba(0,0,0,.2);position:-webkit-sticky;position:sticky;top:0;z-index:40}}.toolbar-waterfall{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:background-color,-webkit-box-shadow;transition-property:background-color,-webkit-box-shadow;transition-property:background-color,box-shadow;transition-property:background-color,box-shadow,-webkit-box-shadow;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);position:absolute;top:0;right:0;left:0;z-index:40}@media (min-width:576px){.toolbar-waterfall{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.toolbar-waterfall{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.toolbar-waterfall{-webkit-transition:none;transition:none}}.toolbar-waterfall.waterfall{background-color:#f07206;-webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,.14),0 4px 5px 0 rgba(0,0,0,.12),0 1px 10px 0 rgba(0,0,0,.2);box-shadow:0 2px 4px 0 rgba(0,0,0,.14),0 4px 5px 0 rgba(0,0,0,.12),0 1px 10px 0 rgba(0,0,0,.2);position:fixed}.navbar-brand{font-size:1.25rem;font-weight:500;letter-spacing:.02em;line-height:1.4;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:inherit;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;height:2.25rem;position:relative;white-space:nowrap}.navbar-brand:active,.navbar-brand:focus,.navbar-brand:hover{color:inherit;text-decoration:none}.navbar-brand::before{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:rgba(0,0,0,.12);content:'';display:block;opacity:0;position:absolute;top:0;right:-.5rem;bottom:0;left:-.5rem}@media (min-width:576px){.navbar-brand::before{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.navbar-brand::before{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.navbar-brand::before{-webkit-transition:none;transition:none}}.navbar-brand:focus{outline:0}.navbar-brand:focus::before{opacity:1}.navbar-brand:not(:first-child){margin-left:1rem}.navbar-brand:not(:last-child){margin-right:1rem}.navbar-text{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:inherit;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-wrap:wrap;flex-wrap:wrap;height:2.25rem}.navbar-nav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style:none;margin-bottom:0;padding-left:0}.navbar-nav .nav-link{border-radius:2px;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:background-color,opacity;transition-property:background-color,opacity;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);color:inherit;font-size:1rem;height:2.25rem;line-height:1;opacity:.7;padding:.625rem 1rem}@media (min-width:576px){.navbar-nav .nav-link{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.navbar-nav .nav-link{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.navbar-nav .nav-link{-webkit-transition:none;transition:none}}.navbar-nav .nav-link:active,.navbar-nav .nav-link:focus,.navbar-nav .nav-link:hover{background-color:rgba(0,0,0,.12);opacity:1}.navbar-nav .nav-link.active,.navbar-nav .nav-link.disabled{opacity:1}.navbar-nav .nav-link.disabled{background-color:transparent;color:rgba(0,0,0,.38)}.navbar-nav .nav-link:focus{outline:0}.navbar-nav .active>.nav-link,.navbar-nav .show>.nav-link{opacity:1}.navbar-nav .show>.nav-link{background-color:rgba(0,0,0,.12)}.navbar-collapse{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .navbar-toggler:first-child+.navbar-brand{margin-left:0}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .navbar-toggler:first-child+.navbar-brand{margin-left:0}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .navbar-toggler:first-child+.navbar-brand{margin-left:0}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .navbar-toggler:first-child+.navbar-brand{margin-left:0}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}.navbar-expand{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .navbar-toggler:first-child+.navbar-brand{margin-left:0}.navbar-expand>.container,.navbar-expand>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-toggler{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:transparent;border:0;border-radius:50%;color:inherit;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-negative:0;flex-shrink:0;height:2.25rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;line-height:1;padding:0;position:relative;width:2.25rem}.navbar-toggler:active,.navbar-toggler:focus,.navbar-toggler:hover{color:inherit;text-decoration:none}.navbar-toggler:active::before,.navbar-toggler:focus::before,.navbar-toggler:hover::before{opacity:1}.navbar-toggler::before{-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:rgba(0,0,0,.12);border-radius:50%;content:'';display:block;opacity:0;position:absolute;top:0;right:0;bottom:0;left:0}@media (min-width:576px){.navbar-toggler::before{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.navbar-toggler::before{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.navbar-toggler::before{-webkit-transition:none;transition:none}}.navbar-toggler:focus{outline:0}.navbar-toggler:not(:disabled):not(.disabled){cursor:pointer}.navbar-toggler-icon{font-size:1.71429em;line-height:.58333em;vertical-align:-.3022em;font-family:'Material Icons';-webkit-font-feature-settings:'liga';font-feature-settings:'liga';-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;letter-spacing:normal;text-rendering:optimizeLegibility;text-transform:none;white-space:nowrap;word-wrap:normal;display:block}.navbar-toggler-icon::before{content:"menu"}.tooltip{text-align:left;text-align:start;font-family:Roboto,-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;display:block;font-size:.875rem;line-height:1.42857;margin:1.5rem;opacity:0;position:absolute;word-break:break-word;z-index:240}[dir=rtl] .tooltip{text-align:right;text-align:start}@media (min-width:768px){.tooltip{font-size:.625rem;margin:.875rem}}.tooltip.show{opacity:.9}.tooltip.show .tooltip-inner{-webkit-transform:scale(1);transform:scale(1)}.tooltip-inner{border-radius:2px;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:#616161;color:#fff;padding:.375rem 1rem;text-align:center;-webkit-transform:scale(.87);transform:scale(.87)}@media (min-width:576px){.tooltip-inner{-webkit-transition-duration:.39s;transition-duration:.39s}}@media (min-width:992px){.tooltip-inner{-webkit-transition-duration:.2s;transition-duration:.2s}}@media screen and (prefers-reduced-motion:reduce){.tooltip-inner{-webkit-transition:none;transition:none}}@media (min-width:768px){.tooltip-inner{padding:.24107rem .5rem}}.align-top{vertical-align:top!important}.align-text-top{vertical-align:text-top!important}.align-middle{vertical-align:middle!important}.align-baseline{vertical-align:baseline!important}.align-text-bottom{vertical-align:text-bottom!important}.align-bottom{vertical-align:bottom!important}.border{border:1px solid rgba(0,0,0,.12)!important}.border-0{border:0!important}.border-top{border-top:1px solid rgba(0,0,0,.12)!important}.border-top-0{border-top:0!important}.border-right{border-right:1px solid rgba(0,0,0,.12)!important}.border-right-0{border-right:0!important}.border-bottom{border-bottom:1px solid rgba(0,0,0,.12)!important}.border-bottom-0{border-bottom:0!important}.border-left{border-left:1px solid rgba(0,0,0,.12)!important}.border-left-0{border-left:0!important}.border-black{border-color:#000!important}.border-black-primary{border-color:rgba(0,0,0,.87)!important}.border-black-secondary{border-color:rgba(0,0,0,.54)!important}.border-black-hint{border-color:rgba(0,0,0,.38)!important}.border-black-divider{border-color:rgba(0,0,0,.12)!important}.border-white{border-color:#fff!important}.border-white-primary{border-color:#fff!important}.border-white-secondary{border-color:rgba(255,255,255,.7)!important}.border-white-hint{border-color:rgba(255,255,255,.5)!important}.border-white-divider{border-color:rgba(255,255,255,.12)!important}.border-primary{border-color:#f07206!important}.border-secondary{border-color:#f07206!important}.border-danger{border-color:#f44336!important}.border-info{border-color:#2196f3!important}.border-success{border-color:#4caf50!important}.border-warning{border-color:#ff9800!important}.border-dark{border-color:#424242!important}.border-light{border-color:#f5f5f5!important}.border-similar{border-color:#f83207!important}.border-tertiary{border-color:#f07206!important}.border-complementary{border-color:#0087a3!important}.rounded{border-radius:2px}.rounded-0{border-radius:0}.rounded-circle{border-radius:50%}.rounded-top{border-top-left-radius:2px;border-top-right-radius:2px}.rounded-right{border-top-right-radius:2px;border-bottom-right-radius:2px}.rounded-bottom{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.rounded-left{border-top-left-radius:2px;border-bottom-left-radius:2px}.bg-dark-1{background-color:#000!important}.bg-dark-2{background-color:#212121!important}.bg-dark-3{background-color:#303030!important}.bg-dark-4{background-color:#424242!important}.bg-light-1{background-color:#e0e0e0!important}.bg-light-2{background-color:#f5f5f5!important}.bg-light-3{background-color:#fafafa!important}.bg-light-4{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.bg-white{background-color:#fff!important}a.bg-primary:active,a.bg-primary:focus,a.bg-primary:hover{background-color:#be5a05!important}.bg-primary{background-color:#f07206!important}a.bg-secondary:active,a.bg-secondary:focus,a.bg-secondary:hover{background-color:#be5a05!important}.bg-secondary{background-color:#f07206!important}a.bg-danger:active,a.bg-danger:focus,a.bg-danger:hover{background-color:#d32f2f!important}.bg-danger{background-color:#f44336!important}a.bg-info:active,a.bg-info:focus,a.bg-info:hover{background-color:#1976d2!important}.bg-info{background-color:#2196f3!important}a.bg-success:active,a.bg-success:focus,a.bg-success:hover{background-color:#388e3c!important}.bg-success{background-color:#4caf50!important}a.bg-warning:active,a.bg-warning:focus,a.bg-warning:hover{background-color:#f57c00!important}.bg-warning{background-color:#ff9800!important}a.bg-dark:active,a.bg-dark:focus,a.bg-dark:hover{background-color:#212121!important}.bg-dark{background-color:#424242!important}a.bg-light:active,a.bg-light:focus,a.bg-light:hover{background-color:#e0e0e0!important}.bg-light{background-color:#f5f5f5!important}a.bg-similar:active,a.bg-similar:focus,a.bg-similar:hover{background-color:#c62806!important}.bg-similar{background-color:#f83207!important}a.bg-tertiary:active,a.bg-tertiary:focus,a.bg-tertiary:hover{background-color:#be5a05!important}.bg-tertiary{background-color:#f07206!important}a.bg-complementary:active,a.bg-complementary:focus,a.bg-complementary:hover{background-color:#005d70!important}.bg-complementary{background-color:#0087a3!important}.bg-primary-dark{background-color:#be5a05!important}.bg-primary-light{background-color:#fa8d2f!important}.bg-secondary-dark{background-color:#be5a05!important}.bg-secondary-light{background-color:#fa8d2f!important}.clearfix::after{clear:both;content:'';display:table}.d-block{display:block!important}.d-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.d-none{display:none!important}.d-table{display:table!important}.d-table-cell{display:table-cell!important}.d-table-row{display:table-row!important}@media (min-width:576px){.d-sm-block{display:block!important}.d-sm-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.d-sm-none{display:none!important}.d-sm-table{display:table!important}.d-sm-table-cell{display:table-cell!important}.d-sm-table-row{display:table-row!important}}@media (min-width:768px){.d-md-block{display:block!important}.d-md-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.d-md-none{display:none!important}.d-md-table{display:table!important}.d-md-table-cell{display:table-cell!important}.d-md-table-row{display:table-row!important}}@media (min-width:992px){.d-lg-block{display:block!important}.d-lg-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.d-lg-none{display:none!important}.d-lg-table{display:table!important}.d-lg-table-cell{display:table-cell!important}.d-lg-table-row{display:table-row!important}}@media (min-width:1200px){.d-xl-block{display:block!important}.d-xl-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.d-xl-none{display:none!important}.d-xl-table{display:table!important}.d-xl-table-cell{display:table-cell!important}.d-xl-table-row{display:table-row!important}}@media print{.d-print-block{display:block!important}.d-print-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.d-print-none{display:none!important}.d-print-table{display:table!important}.d-print-table-cell{display:table-cell!important}.d-print-table-row{display:table-row!important}}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-items-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.flex-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.justify-content-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}@media (min-width:576px){.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}}@media (min-width:768px){.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}}@media (min-width:992px){.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-lg-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}}@media (min-width:1200px){.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}}.float-left{float:left!important}.float-none{float:none!important}.float-right{float:right!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-none{float:none!important}.float-sm-right{float:right!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-none{float:none!important}.float-md-right{float:right!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-none{float:none!important}.float-lg-right{float:right!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-none{float:none!important}.float-xl-right{float:right!important}}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-relative{position:relative!important}.position-static{position:static!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:40}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:40}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:40}}.screen-reader-text,.sr-only{border:0;clip:rect(0,0,0,0);height:1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;overflow:visible;position:static;white-space:normal;width:auto}.shadow{-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2)!important;box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2)!important}.shadow-lg{-webkit-box-shadow:0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12),0 11px 15px 0 rgba(0,0,0,.2)!important;box-shadow:0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12),0 11px 15px 0 rgba(0,0,0,.2)!important}.shadow-none{-webkit-box-shadow:none!important;box-shadow:none!important}.shadow-sm{-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2)!important;box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2)!important}.shadow-24{-webkit-box-shadow:0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12),0 11px 15px 0 rgba(0,0,0,.2)!important;box-shadow:0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12),0 11px 15px 0 rgba(0,0,0,.2)!important}.shadow-16{-webkit-box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px 0 rgba(0,0,0,.2)!important;box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px 0 rgba(0,0,0,.2)!important}.shadow-12{-webkit-box-shadow:0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12),0 7px 8px 0 rgba(0,0,0,.2)!important;box-shadow:0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12),0 7px 8px 0 rgba(0,0,0,.2)!important}.shadow-8{-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2)!important;box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2)!important}.shadow-6{-webkit-box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px 0 rgba(0,0,0,.2)!important;box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px 0 rgba(0,0,0,.2)!important}.shadow-4{-webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,.14),0 4px 5px 0 rgba(0,0,0,.12),0 1px 10px 0 rgba(0,0,0,.2)!important;box-shadow:0 2px 4px 0 rgba(0,0,0,.14),0 4px 5px 0 rgba(0,0,0,.12),0 1px 10px 0 rgba(0,0,0,.2)!important}.shadow-2{-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2)!important;box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2)!important}.shadow-1{-webkit-box-shadow:0 0 2px 0 rgba(0,0,0,.14),0 2px 2px 0 rgba(0,0,0,.12),0 1px 3px 0 rgba(0,0,0,.2)!important;box-shadow:0 0 2px 0 rgba(0,0,0,.14),0 2px 2px 0 rgba(0,0,0,.12),0 1px 3px 0 rgba(0,0,0,.2)!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}.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}.mh-100{max-height:100%!important}.mw-100{max-width:100%!important}.m-0{margin:0!important}.mt-0{margin-top:0!important}.mr-0{margin-right:0!important}.mb-0{margin-bottom:0!important}.ml-0{margin-left:0!important}.mx-0{margin-right:0!important;margin-left:0!important}.my-0{margin-top:0!important;margin-bottom:0!important}.m-1{margin:.25rem!important}.mt-1{margin-top:.25rem!important}.mr-1{margin-right:.25rem!important}.mb-1{margin-bottom:.25rem!important}.ml-1{margin-left:.25rem!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.m-2{margin:.5rem!important}.mt-2{margin-top:.5rem!important}.mr-2{margin-right:.5rem!important}.mb-2{margin-bottom:.5rem!important}.ml-2{margin-left:.5rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.m-3{margin:1rem!important}.mt-3{margin-top:1rem!important}.mr-3{margin-right:1rem!important}.mb-3{margin-bottom:1rem!important}.ml-3{margin-left:1rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.m-4{margin:1.5rem!important}.mt-4{margin-top:1.5rem!important}.mr-4{margin-right:1.5rem!important}.mb-4{margin-bottom:1.5rem!important}.ml-4{margin-left:1.5rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.m-5{margin:3rem!important}.mt-5{margin-top:3rem!important}.mr-5{margin-right:3rem!important}.mb-5{margin-bottom:3rem!important}.ml-5{margin-left:3rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.p-0{padding:0!important}.pt-0{padding-top:0!important}.pr-0{padding-right:0!important}.pb-0{padding-bottom:0!important}.footer-menu .nav-link,.pl-0{padding-left:0!important}.px-0{padding-right:0!important;padding-left:0!important}.py-0{padding-top:0!important;padding-bottom:0!important}.p-1{padding:.25rem!important}.pt-1{padding-top:.25rem!important}.pr-1{padding-right:.25rem!important}.pb-1{padding-bottom:.25rem!important}.pl-1{padding-left:.25rem!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.p-2{padding:.5rem!important}.pt-2{padding-top:.5rem!important}.pr-2{padding-right:.5rem!important}.pb-2{padding-bottom:.5rem!important}.pl-2{padding-left:.5rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.p-3{padding:1rem!important}.pt-3{padding-top:1rem!important}.pr-3{padding-right:1rem!important}.pb-3{padding-bottom:1rem!important}.pl-3{padding-left:1rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.p-4{padding:1.5rem!important}.pt-4{padding-top:1.5rem!important}.pr-4{padding-right:1.5rem!important}.pb-4{padding-bottom:1.5rem!important}.pl-4{padding-left:1.5rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.p-5{padding:3rem!important}.pt-5{padding-top:3rem!important}.pr-5{padding-right:3rem!important}.pb-5{padding-bottom:3rem!important}.pl-5{padding-left:3rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.m-auto{margin:auto!important}.mt-auto{margin-top:auto!important}.mr-auto{margin-right:auto!important}.mb-auto{margin-bottom:auto!important}.ml-auto{margin-left:auto!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0{margin-top:0!important}.mr-sm-0{margin-right:0!important}.mb-sm-0{margin-bottom:0!important}.ml-sm-0{margin-left:0!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1{margin-top:.25rem!important}.mr-sm-1{margin-right:.25rem!important}.mb-sm-1{margin-bottom:.25rem!important}.ml-sm-1{margin-left:.25rem!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2{margin-top:.5rem!important}.mr-sm-2{margin-right:.5rem!important}.mb-sm-2{margin-bottom:.5rem!important}.ml-sm-2{margin-left:.5rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3{margin-top:1rem!important}.mr-sm-3{margin-right:1rem!important}.mb-sm-3{margin-bottom:1rem!important}.ml-sm-3{margin-left:1rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4{margin-top:1.5rem!important}.mr-sm-4{margin-right:1.5rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.ml-sm-4{margin-left:1.5rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5{margin-top:3rem!important}.mr-sm-5{margin-right:3rem!important}.mb-sm-5{margin-bottom:3rem!important}.ml-sm-5{margin-left:3rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0{padding-top:0!important}.pr-sm-0{padding-right:0!important}.pb-sm-0{padding-bottom:0!important}.pl-sm-0{padding-left:0!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1{padding-top:.25rem!important}.pr-sm-1{padding-right:.25rem!important}.pb-sm-1{padding-bottom:.25rem!important}.pl-sm-1{padding-left:.25rem!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2{padding-top:.5rem!important}.pr-sm-2{padding-right:.5rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pl-sm-2{padding-left:.5rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3{padding-top:1rem!important}.pr-sm-3{padding-right:1rem!important}.pb-sm-3{padding-bottom:1rem!important}.pl-sm-3{padding-left:1rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4{padding-top:1.5rem!important}.pr-sm-4{padding-right:1.5rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pl-sm-4{padding-left:1.5rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5{padding-top:3rem!important}.pr-sm-5{padding-right:3rem!important}.pb-sm-5{padding-bottom:3rem!important}.pl-sm-5{padding-left:3rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto{margin-top:auto!important}.mr-sm-auto{margin-right:auto!important}.mb-sm-auto{margin-bottom:auto!important}.ml-sm-auto{margin-left:auto!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0{margin-top:0!important}.mr-md-0{margin-right:0!important}.mb-md-0{margin-bottom:0!important}.ml-md-0{margin-left:0!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.m-md-1{margin:.25rem!important}.mt-md-1{margin-top:.25rem!important}.mr-md-1{margin-right:.25rem!important}.mb-md-1{margin-bottom:.25rem!important}.ml-md-1{margin-left:.25rem!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2{margin-top:.5rem!important}.mr-md-2{margin-right:.5rem!important}.mb-md-2{margin-bottom:.5rem!important}.ml-md-2{margin-left:.5rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3{margin-top:1rem!important}.mr-md-3{margin-right:1rem!important}.mb-md-3{margin-bottom:1rem!important}.ml-md-3{margin-left:1rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4{margin-top:1.5rem!important}.mr-md-4{margin-right:1.5rem!important}.mb-md-4{margin-bottom:1.5rem!important}.ml-md-4{margin-left:1.5rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5{margin-top:3rem!important}.mr-md-5{margin-right:3rem!important}.mb-md-5{margin-bottom:3rem!important}.ml-md-5{margin-left:3rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.p-md-0{padding:0!important}.pt-md-0{padding-top:0!important}.pr-md-0{padding-right:0!important}.pb-md-0{padding-bottom:0!important}.pl-md-0{padding-left:0!important}.px-md-0{padding-right:0!important;padding-left:0!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.p-md-1{padding:.25rem!important}.pt-md-1{padding-top:.25rem!important}.pr-md-1{padding-right:.25rem!important}.pb-md-1{padding-bottom:.25rem!important}.pl-md-1{padding-left:.25rem!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2{padding-top:.5rem!important}.pr-md-2{padding-right:.5rem!important}.pb-md-2{padding-bottom:.5rem!important}.pl-md-2{padding-left:.5rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3{padding-top:1rem!important}.pr-md-3{padding-right:1rem!important}.pb-md-3{padding-bottom:1rem!important}.pl-md-3{padding-left:1rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4{padding-top:1.5rem!important}.pr-md-4{padding-right:1.5rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pl-md-4{padding-left:1.5rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5{padding-top:3rem!important}.pr-md-5{padding-right:3rem!important}.pb-md-5{padding-bottom:3rem!important}.pl-md-5{padding-left:3rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto{margin-top:auto!important}.mr-md-auto{margin-right:auto!important}.mb-md-auto{margin-bottom:auto!important}.ml-md-auto{margin-left:auto!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0{margin-top:0!important}.mr-lg-0{margin-right:0!important}.mb-lg-0{margin-bottom:0!important}.ml-lg-0{margin-left:0!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1{margin-top:.25rem!important}.mr-lg-1{margin-right:.25rem!important}.mb-lg-1{margin-bottom:.25rem!important}.ml-lg-1{margin-left:.25rem!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2{margin-top:.5rem!important}.mr-lg-2{margin-right:.5rem!important}.mb-lg-2{margin-bottom:.5rem!important}.ml-lg-2{margin-left:.5rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3{margin-top:1rem!important}.mr-lg-3{margin-right:1rem!important}.mb-lg-3{margin-bottom:1rem!important}.ml-lg-3{margin-left:1rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4{margin-top:1.5rem!important}.mr-lg-4{margin-right:1.5rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.ml-lg-4{margin-left:1.5rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5{margin-top:3rem!important}.mr-lg-5{margin-right:3rem!important}.mb-lg-5{margin-bottom:3rem!important}.ml-lg-5{margin-left:3rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0{padding-top:0!important}.pr-lg-0{padding-right:0!important}.pb-lg-0{padding-bottom:0!important}.pl-lg-0{padding-left:0!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1{padding-top:.25rem!important}.pr-lg-1{padding-right:.25rem!important}.pb-lg-1{padding-bottom:.25rem!important}.pl-lg-1{padding-left:.25rem!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2{padding-top:.5rem!important}.pr-lg-2{padding-right:.5rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pl-lg-2{padding-left:.5rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3{padding-top:1rem!important}.pr-lg-3{padding-right:1rem!important}.pb-lg-3{padding-bottom:1rem!important}.pl-lg-3{padding-left:1rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4{padding-top:1.5rem!important}.pr-lg-4{padding-right:1.5rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pl-lg-4{padding-left:1.5rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5{padding-top:3rem!important}.pr-lg-5{padding-right:3rem!important}.pb-lg-5{padding-bottom:3rem!important}.pl-lg-5{padding-left:3rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto{margin-top:auto!important}.mr-lg-auto{margin-right:auto!important}.mb-lg-auto{margin-bottom:auto!important}.ml-lg-auto{margin-left:auto!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0{margin-top:0!important}.mr-xl-0{margin-right:0!important}.mb-xl-0{margin-bottom:0!important}.ml-xl-0{margin-left:0!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1{margin-top:.25rem!important}.mr-xl-1{margin-right:.25rem!important}.mb-xl-1{margin-bottom:.25rem!important}.ml-xl-1{margin-left:.25rem!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2{margin-top:.5rem!important}.mr-xl-2{margin-right:.5rem!important}.mb-xl-2{margin-bottom:.5rem!important}.ml-xl-2{margin-left:.5rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3{margin-top:1rem!important}.mr-xl-3{margin-right:1rem!important}.mb-xl-3{margin-bottom:1rem!important}.ml-xl-3{margin-left:1rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4{margin-top:1.5rem!important}.mr-xl-4{margin-right:1.5rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.ml-xl-4{margin-left:1.5rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5{margin-top:3rem!important}.mr-xl-5{margin-right:3rem!important}.mb-xl-5{margin-bottom:3rem!important}.ml-xl-5{margin-left:3rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0{padding-top:0!important}.pr-xl-0{padding-right:0!important}.pb-xl-0{padding-bottom:0!important}.pl-xl-0{padding-left:0!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1{padding-top:.25rem!important}.pr-xl-1{padding-right:.25rem!important}.pb-xl-1{padding-bottom:.25rem!important}.pl-xl-1{padding-left:.25rem!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2{padding-top:.5rem!important}.pr-xl-2{padding-right:.5rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pl-xl-2{padding-left:.5rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3{padding-top:1rem!important}.pr-xl-3{padding-right:1rem!important}.pb-xl-3{padding-bottom:1rem!important}.pl-xl-3{padding-left:1rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4{padding-top:1.5rem!important}.pr-xl-4{padding-right:1.5rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pl-xl-4{padding-left:1.5rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5{padding-top:3rem!important}.pr-xl-5{padding-right:3rem!important}.pb-xl-5{padding-bottom:3rem!important}.pl-xl-5{padding-left:3rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto{margin-top:auto!important}.mr-xl-auto{margin-right:auto!important}.mb-xl-auto{margin-bottom:auto!important}.ml-xl-auto{margin-left:auto!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}}.text-justify{text-align:justify!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-center{text-align:center!important}.text-left{text-align:left!important}.text-right{text-align:right!important}@media (min-width:576px){.text-sm-center{text-align:center!important}.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}}@media (min-width:768px){.text-md-center{text-align:center!important}.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}}@media (min-width:992px){.text-lg-center{text-align:center!important}.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}}@media (min-width:1200px){.text-xl-center{text-align:center!important}.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}}.text-black{color:#000!important}.text-black-primary{color:rgba(0,0,0,.87)!important}.text-black-secondary{color:rgba(0,0,0,.54)!important}.text-black-hint{color:rgba(0,0,0,.38)!important}.text-black-divider{color:rgba(0,0,0,.12)!important}.text-white{color:#fff!important}.text-white-primary{color:#fff!important}.text-white-secondary{color:rgba(255,255,255,.7)!important}.text-white-hint{color:rgba(255,255,255,.5)!important}.text-white-divider{color:rgba(255,255,255,.12)!important}.text-muted{color:rgba(0,0,0,.38)!important}a.text-primary:active,a.text-primary:focus,a.text-primary:hover{color:#be5a05!important}.text-primary{color:#f07206!important}a.text-secondary:active,a.text-secondary:focus,a.text-secondary:hover{color:#be5a05!important}.text-secondary{color:#f07206!important}a.text-danger:active,a.text-danger:focus,a.text-danger:hover{color:#d32f2f!important}.text-danger{color:#f44336!important}a.text-info:active,a.text-info:focus,a.text-info:hover{color:#1976d2!important}.text-info{color:#2196f3!important}a.text-success:active,a.text-success:focus,a.text-success:hover{color:#388e3c!important}.text-success{color:#4caf50!important}a.text-warning:active,a.text-warning:focus,a.text-warning:hover{color:#f57c00!important}.text-warning{color:#ff9800!important}a.text-dark:active,a.text-dark:focus,a.text-dark:hover{color:#212121!important}.text-dark{color:#424242!important}a.text-light:active,a.text-light:focus,a.text-light:hover{color:#e0e0e0!important}.text-light{color:#f5f5f5!important}a.text-similar:active,a.text-similar:focus,a.text-similar:hover{color:#c62806!important}.text-similar{color:#f83207!important}a.text-tertiary:active,a.text-tertiary:focus,a.text-tertiary:hover{color:#be5a05!important}.text-tertiary{color:#f07206!important}a.text-complementary:active,a.text-complementary:focus,a.text-complementary:hover{color:#005d70!important}.text-complementary{color:#0087a3!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-body{color:rgba(0,0,0,.87)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-monospace{font-family:"Roboto Mono",Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.font-italic{font-style:italic}.font-weight-bold,.font-weight-medium{font-weight:500}.font-weight-light{font-weight:300}.font-weight-normal,.font-weight-regular{font-weight:400}.text-hide{background-color:transparent;border:0;color:transparent;font:0/0 a;text-shadow:none}.text-capitalize{text-transform:capitalize!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.invisible{visibility:hidden!important}.visible{visibility:visible!important}.material-icons{font-size:1.71429em;line-height:.58333em;vertical-align:-.3022em}.material-icons-inline{font-size:inherit;line-height:1}@media print{@page{size:a3}*,::after,::before{-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important}a:not(.btn):not(.tag-cloud-link){text-decoration:underline}abbr[title]::after{content:' (" attr(title) ") '}blockquote{page-break-inside:avoid}body{min-width:992px!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-inside:avoid}img{page-break-inside:avoid}pre{page-break-inside:avoid;white-space:pre-wrap!important}thead{display:table-header-group}tr{page-break-inside:avoid}.card{border:1px solid #e1e1e1}.container{min-width:992px!important}.dropdown-menu{border:1px solid #e1e1e1}.list-group-item{border:1px solid #e1e1e1;margin-bottom:-1px}.list-group-item:last-child{margin-bottom:0}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{border-bottom:0}.list-group-flush .list-group-item{border-right:0;border-left:0}.nav-tabs{border-bottom:1px solid #e1e1e1}.navbar{display:none}.popover{border:1px solid #e1e1e1}.table td,.table th{background-color:#fff!important}.table-bordered{border:1px solid #e1e1e1}.table-dark{color:inherit}.table-dark .table,.table-dark td,.table-dark th{border-color:#e1e1e1}.table .thead-dark td,.table .thead-dark th{color:inherit}}.wrapper{padding:40px 0}#wrapper-hero{padding:0!important}.bypostauthor,.gallery-caption,.sticky{font-size:inherit}.wrapper#wrapper-sticky{border-bottom:1px solid #dee2e6}#wrapper-footer-full,#wrapper-static-hero{background-color:#e9ecef}.wp-caption{font-size:inherit}.wp-caption-text{font-size:inherit}.alignleft{display:inline;float:left;margin-right:1.5em}.alignright{display:inline;float:right;margin-left:1.5em}.aligncenter{margin:0 auto}.entry-footer span{padding-right:10px}figure.woocommerce-product-gallery__wrapper{max-width:inherit!important}#secondary img,article img,figure,img,img.wp-post-image{max-width:100%;height:auto}a.skip-link{position:fixed;z-index:1000;top:0;right:0}.jumbotron{margin-bottom:0}.navbar-dark .navbar-nav .dropdown-menu .nav-link{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529!important;text-align:inherit;white-space:nowrap;background:0 0;border:0}.navbar-dark .navbar-nav .dropdown-menu .nav-link:focus,.navbar-dark .navbar-nav .dropdown-menu .nav-link:hover{color:#16181b!important;text-decoration:none;background-color:#f8f9fa}.navbar-dark .navbar-nav .dropdown-menu .nav-link.active,.navbar-dark .navbar-nav .dropdown-menu .nav-link:active{color:#fff!important;text-decoration:none;background-color:#f07206}.navbar-dark .navbar-nav .dropdown-menu .nav-link.disabled,.navbar-dark .navbar-nav .dropdown-menu .nav-link:disabled{color:#6c757d!important;background-color:transparent}.navbar-light .navbar-brand a{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand a:focus,.navbar-light .navbar-brand a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand a{color:#fff}.navbar-dark .navbar-brand a:focus,.navbar-dark .navbar-brand a:hover{color:#fff}/*!
+ * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.7.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format("embedded-opentype"),url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format("woff2"),url(../fonts/fontawesome-webfont.woff?v=4.7.0) format("woff"),url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format("truetype"),url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14286em;width:2.14286em;top:.14286em;text-align:center}.fa-li.fa-lg{left:-1.85714em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{-webkit-filter:none;filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-close:before,.fa-remove:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-repeat:before,.fa-rotate-right:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-exclamation-triangle:before,.fa-warning:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-floppy-o:before,.fa-save:before{content:""}.fa-square:before{content:""}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-bolt:before,.fa-flash:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-clipboard:before,.fa-paste:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-chain-broken:before,.fa-unlink:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:""}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:""}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:""}.fa-eur:before,.fa-euro:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-inr:before,.fa-rupee:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:""}.fa-krw:before,.fa-won:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-try:before,.fa-turkish-lira:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-bank:before,.fa-institution:before,.fa-university:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:""}.fa-file-archive-o:before,.fa-file-zip-o:before{content:""}.fa-file-audio-o:before,.fa-file-sound-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:""}.fa-empire:before,.fa-ge:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-paper-plane:before,.fa-send:before{content:""}.fa-paper-plane-o:before,.fa-send-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-bed:before,.fa-hotel:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-y-combinator:before,.fa-yc:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-television:before,.fa-tv:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:""}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-sign-language:before,.fa-signing:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-address-card:before,.fa-vcard:before{content:""}.fa-address-card-o:before,.fa-vcard-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.screen-reader-text,.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.gallery{margin-bottom:1.5em}.gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery-columns-4 .gallery-item{max-width:25%}.gallery-columns-5 .gallery-item{max-width:20%}.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery-caption{display:block}.wpcf7{max-width:600px;margin:0 auto!important}.wpcf7 .wpcf7-form label{width:100%}.wpcf7 .wpcf7-not-valid-tip{color:#f44336}.wpcf7 .wpcf7-validation-errors{color:#f44336;border:1px solid #e9ecef}h1{font-size:2.5rem}.brand-url,.navbar-brand,.slogan{font-family:charterbold,charterregular}*{font-family:charterregular,charterbold}h1,h2,h3,h4,h5,h6{font-family:charterbold,charterregular!important}h1>a,h2>a,h3>a,h4>a,h5>a,h6>a{font-family:charterbold,charterregular!important}.charter-bold{font-family:charterbold,charterregular!important}.dropdown-item,.nav-link{font-size:18px!important}ul.dropdown-menu{min-width:100%}.brand-url{color:#f5f5f5!important}.entry-content,.entry-meta{font-size:19px}.slogan{font-size:25px;color:#424242;color:#f5f5f5}#searchform>.input-group>input{background-color:rgba(245,245,245,.2);padding-left:5px;border-radius:1px;width:13rem}@media (max-width:768px) and (min-width:576px){#searchform>.input-group>input{width:10rem}}#searchform>.input-group>.input-group-append{margin-left:0}.btn-border-dark{border:1px solid #646464}.nnavbar{background-image:url(/daemonite/images/paw.png);background-repeat:no-repeat}.navbar img{overflow:hidden}.main-header{background-color:#efefef;color:#f5f5f5;margin-top:0;padding-top:30px;padding-bottom:30px;background-repeat:no-repeat;background-size:cover}.main-header .form-control,.main-header .form-control::-webkit-input-placeholder,.main-header .wpcf7 .wpcf7-validation-errors,.main-header .wpcf7 .wpcf7-validation-errors::-webkit-input-placeholder,.main-header .wpcf7 input[type=color],.main-header .wpcf7 input[type=color]::-webkit-input-placeholder,.main-header .wpcf7 input[type=date],.main-header .wpcf7 input[type=date]::-webkit-input-placeholder,.main-header .wpcf7 input[type=datetime-local],.main-header .wpcf7 input[type=datetime-local]::-webkit-input-placeholder,.main-header .wpcf7 input[type=datetime],.main-header .wpcf7 input[type=datetime]::-webkit-input-placeholder,.main-header .wpcf7 input[type=email],.main-header .wpcf7 input[type=email]::-webkit-input-placeholder,.main-header .wpcf7 input[type=file],.main-header .wpcf7 input[type=file]::-webkit-input-placeholder,.main-header .wpcf7 input[type=month],.main-header .wpcf7 input[type=month]::-webkit-input-placeholder,.main-header .wpcf7 input[type=number],.main-header .wpcf7 input[type=number]::-webkit-input-placeholder,.main-header .wpcf7 input[type=range],.main-header .wpcf7 input[type=range]::-webkit-input-placeholder,.main-header .wpcf7 input[type=search],.main-header .wpcf7 input[type=search]::-webkit-input-placeholder,.main-header .wpcf7 input[type=submit],.main-header .wpcf7 input[type=submit]::-webkit-input-placeholder,.main-header .wpcf7 input[type=tel],.main-header .wpcf7 input[type=tel]::-webkit-input-placeholder,.main-header .wpcf7 input[type=text],.main-header .wpcf7 input[type=text]::-webkit-input-placeholder,.main-header .wpcf7 input[type=time],.main-header .wpcf7 input[type=time]::-webkit-input-placeholder,.main-header .wpcf7 input[type=url],.main-header .wpcf7 input[type=url]::-webkit-input-placeholder,.main-header .wpcf7 input[type=week],.main-header .wpcf7 input[type=week]::-webkit-input-placeholder,.main-header .wpcf7 select,.main-header .wpcf7 select::-webkit-input-placeholder,.main-header .wpcf7 textarea,.main-header .wpcf7 textarea::-webkit-input-placeholder,.wpcf7 .main-header .wpcf7-validation-errors,.wpcf7 .main-header .wpcf7-validation-errors::-webkit-input-placeholder,.wpcf7 .main-header input[type=color],.wpcf7 .main-header input[type=color]::-webkit-input-placeholder,.wpcf7 .main-header input[type=date],.wpcf7 .main-header input[type=date]::-webkit-input-placeholder,.wpcf7 .main-header input[type=datetime-local],.wpcf7 .main-header input[type=datetime-local]::-webkit-input-placeholder,.wpcf7 .main-header input[type=datetime],.wpcf7 .main-header input[type=datetime]::-webkit-input-placeholder,.wpcf7 .main-header input[type=email],.wpcf7 .main-header input[type=email]::-webkit-input-placeholder,.wpcf7 .main-header input[type=file],.wpcf7 .main-header input[type=file]::-webkit-input-placeholder,.wpcf7 .main-header input[type=month],.wpcf7 .main-header input[type=month]::-webkit-input-placeholder,.wpcf7 .main-header input[type=number],.wpcf7 .main-header input[type=number]::-webkit-input-placeholder,.wpcf7 .main-header input[type=range],.wpcf7 .main-header input[type=range]::-webkit-input-placeholder,.wpcf7 .main-header input[type=search],.wpcf7 .main-header input[type=search]::-webkit-input-placeholder,.wpcf7 .main-header input[type=submit],.wpcf7 .main-header input[type=submit]::-webkit-input-placeholder,.wpcf7 .main-header input[type=tel],.wpcf7 .main-header input[type=tel]::-webkit-input-placeholder,.wpcf7 .main-header input[type=text],.wpcf7 .main-header input[type=text]::-webkit-input-placeholder,.wpcf7 .main-header input[type=time],.wpcf7 .main-header input[type=time]::-webkit-input-placeholder,.wpcf7 .main-header input[type=url],.wpcf7 .main-header input[type=url]::-webkit-input-placeholder,.wpcf7 .main-header input[type=week],.wpcf7 .main-header input[type=week]::-webkit-input-placeholder,.wpcf7 .main-header select,.wpcf7 .main-header select::-webkit-input-placeholder,.wpcf7 .main-header textarea,.wpcf7 .main-header textarea::-webkit-input-placeholder{color:#f5f5f5;border-color:#f5f5f5}.main-header .form-control,.main-header .form-control::-ms-input-placeholder,.main-header .wpcf7 .wpcf7-validation-errors,.main-header .wpcf7 .wpcf7-validation-errors::-ms-input-placeholder,.main-header .wpcf7 input[type=color],.main-header .wpcf7 input[type=color]::-ms-input-placeholder,.main-header .wpcf7 input[type=date],.main-header .wpcf7 input[type=date]::-ms-input-placeholder,.main-header .wpcf7 input[type=datetime-local],.main-header .wpcf7 input[type=datetime-local]::-ms-input-placeholder,.main-header .wpcf7 input[type=datetime],.main-header .wpcf7 input[type=datetime]::-ms-input-placeholder,.main-header .wpcf7 input[type=email],.main-header .wpcf7 input[type=email]::-ms-input-placeholder,.main-header .wpcf7 input[type=file],.main-header .wpcf7 input[type=file]::-ms-input-placeholder,.main-header .wpcf7 input[type=month],.main-header .wpcf7 input[type=month]::-ms-input-placeholder,.main-header .wpcf7 input[type=number],.main-header .wpcf7 input[type=number]::-ms-input-placeholder,.main-header .wpcf7 input[type=range],.main-header .wpcf7 input[type=range]::-ms-input-placeholder,.main-header .wpcf7 input[type=search],.main-header .wpcf7 input[type=search]::-ms-input-placeholder,.main-header .wpcf7 input[type=submit],.main-header .wpcf7 input[type=submit]::-ms-input-placeholder,.main-header .wpcf7 input[type=tel],.main-header .wpcf7 input[type=tel]::-ms-input-placeholder,.main-header .wpcf7 input[type=text],.main-header .wpcf7 input[type=text]::-ms-input-placeholder,.main-header .wpcf7 input[type=time],.main-header .wpcf7 input[type=time]::-ms-input-placeholder,.main-header .wpcf7 input[type=url],.main-header .wpcf7 input[type=url]::-ms-input-placeholder,.main-header .wpcf7 input[type=week],.main-header .wpcf7 input[type=week]::-ms-input-placeholder,.main-header .wpcf7 select,.main-header .wpcf7 select::-ms-input-placeholder,.main-header .wpcf7 textarea,.main-header .wpcf7 textarea::-ms-input-placeholder,.wpcf7 .main-header .wpcf7-validation-errors,.wpcf7 .main-header .wpcf7-validation-errors::-ms-input-placeholder,.wpcf7 .main-header input[type=color],.wpcf7 .main-header input[type=color]::-ms-input-placeholder,.wpcf7 .main-header input[type=date],.wpcf7 .main-header input[type=date]::-ms-input-placeholder,.wpcf7 .main-header input[type=datetime-local],.wpcf7 .main-header input[type=datetime-local]::-ms-input-placeholder,.wpcf7 .main-header input[type=datetime],.wpcf7 .main-header input[type=datetime]::-ms-input-placeholder,.wpcf7 .main-header input[type=email],.wpcf7 .main-header input[type=email]::-ms-input-placeholder,.wpcf7 .main-header input[type=file],.wpcf7 .main-header input[type=file]::-ms-input-placeholder,.wpcf7 .main-header input[type=month],.wpcf7 .main-header input[type=month]::-ms-input-placeholder,.wpcf7 .main-header input[type=number],.wpcf7 .main-header input[type=number]::-ms-input-placeholder,.wpcf7 .main-header input[type=range],.wpcf7 .main-header input[type=range]::-ms-input-placeholder,.wpcf7 .main-header input[type=search],.wpcf7 .main-header input[type=search]::-ms-input-placeholder,.wpcf7 .main-header input[type=submit],.wpcf7 .main-header input[type=submit]::-ms-input-placeholder,.wpcf7 .main-header input[type=tel],.wpcf7 .main-header input[type=tel]::-ms-input-placeholder,.wpcf7 .main-header input[type=text],.wpcf7 .main-header input[type=text]::-ms-input-placeholder,.wpcf7 .main-header input[type=time],.wpcf7 .main-header input[type=time]::-ms-input-placeholder,.wpcf7 .main-header input[type=url],.wpcf7 .main-header input[type=url]::-ms-input-placeholder,.wpcf7 .main-header input[type=week],.wpcf7 .main-header input[type=week]::-ms-input-placeholder,.wpcf7 .main-header select,.wpcf7 .main-header select::-ms-input-placeholder,.wpcf7 .main-header textarea,.wpcf7 .main-header textarea::-ms-input-placeholder{color:#f5f5f5;border-color:#f5f5f5}.main-header .form-control,.main-header .form-control::placeholder,.main-header .wpcf7 .wpcf7-validation-errors,.main-header .wpcf7 .wpcf7-validation-errors::placeholder,.main-header .wpcf7 input[type=color],.main-header .wpcf7 input[type=color]::placeholder,.main-header .wpcf7 input[type=date],.main-header .wpcf7 input[type=date]::placeholder,.main-header .wpcf7 input[type=datetime-local],.main-header .wpcf7 input[type=datetime-local]::placeholder,.main-header .wpcf7 input[type=datetime],.main-header .wpcf7 input[type=datetime]::placeholder,.main-header .wpcf7 input[type=email],.main-header .wpcf7 input[type=email]::placeholder,.main-header .wpcf7 input[type=file],.main-header .wpcf7 input[type=file]::placeholder,.main-header .wpcf7 input[type=month],.main-header .wpcf7 input[type=month]::placeholder,.main-header .wpcf7 input[type=number],.main-header .wpcf7 input[type=number]::placeholder,.main-header .wpcf7 input[type=range],.main-header .wpcf7 input[type=range]::placeholder,.main-header .wpcf7 input[type=search],.main-header .wpcf7 input[type=search]::placeholder,.main-header .wpcf7 input[type=submit],.main-header .wpcf7 input[type=submit]::placeholder,.main-header .wpcf7 input[type=tel],.main-header .wpcf7 input[type=tel]::placeholder,.main-header .wpcf7 input[type=text],.main-header .wpcf7 input[type=text]::placeholder,.main-header .wpcf7 input[type=time],.main-header .wpcf7 input[type=time]::placeholder,.main-header .wpcf7 input[type=url],.main-header .wpcf7 input[type=url]::placeholder,.main-header .wpcf7 input[type=week],.main-header .wpcf7 input[type=week]::placeholder,.main-header .wpcf7 select,.main-header .wpcf7 select::placeholder,.main-header .wpcf7 textarea,.main-header .wpcf7 textarea::placeholder,.wpcf7 .main-header .wpcf7-validation-errors,.wpcf7 .main-header .wpcf7-validation-errors::placeholder,.wpcf7 .main-header input[type=color],.wpcf7 .main-header input[type=color]::placeholder,.wpcf7 .main-header input[type=date],.wpcf7 .main-header input[type=date]::placeholder,.wpcf7 .main-header input[type=datetime-local],.wpcf7 .main-header input[type=datetime-local]::placeholder,.wpcf7 .main-header input[type=datetime],.wpcf7 .main-header input[type=datetime]::placeholder,.wpcf7 .main-header input[type=email],.wpcf7 .main-header input[type=email]::placeholder,.wpcf7 .main-header input[type=file],.wpcf7 .main-header input[type=file]::placeholder,.wpcf7 .main-header input[type=month],.wpcf7 .main-header input[type=month]::placeholder,.wpcf7 .main-header input[type=number],.wpcf7 .main-header input[type=number]::placeholder,.wpcf7 .main-header input[type=range],.wpcf7 .main-header input[type=range]::placeholder,.wpcf7 .main-header input[type=search],.wpcf7 .main-header input[type=search]::placeholder,.wpcf7 .main-header input[type=submit],.wpcf7 .main-header input[type=submit]::placeholder,.wpcf7 .main-header input[type=tel],.wpcf7 .main-header input[type=tel]::placeholder,.wpcf7 .main-header input[type=text],.wpcf7 .main-header input[type=text]::placeholder,.wpcf7 .main-header input[type=time],.wpcf7 .main-header input[type=time]::placeholder,.wpcf7 .main-header input[type=url],.wpcf7 .main-header input[type=url]::placeholder,.wpcf7 .main-header input[type=week],.wpcf7 .main-header input[type=week]::placeholder,.wpcf7 .main-header select,.wpcf7 .main-header select::placeholder,.wpcf7 .main-header textarea,.wpcf7 .main-header textarea::placeholder{color:#f5f5f5;border-color:#f5f5f5}.main-header .form-control:focus,.main-header .wpcf7 .wpcf7-validation-errors:focus,.main-header .wpcf7 input:focus[type=color],.main-header .wpcf7 input:focus[type=date],.main-header .wpcf7 input:focus[type=datetime-local],.main-header .wpcf7 input:focus[type=datetime],.main-header .wpcf7 input:focus[type=email],.main-header .wpcf7 input:focus[type=file],.main-header .wpcf7 input:focus[type=month],.main-header .wpcf7 input:focus[type=number],.main-header .wpcf7 input:focus[type=range],.main-header .wpcf7 input:focus[type=search],.main-header .wpcf7 input:focus[type=submit],.main-header .wpcf7 input:focus[type=tel],.main-header .wpcf7 input:focus[type=text],.main-header .wpcf7 input:focus[type=time],.main-header .wpcf7 input:focus[type=url],.main-header .wpcf7 input:focus[type=week],.main-header .wpcf7 select:focus,.main-header .wpcf7 textarea:focus,.wpcf7 .main-header .wpcf7-validation-errors:focus,.wpcf7 .main-header input:focus[type=color],.wpcf7 .main-header input:focus[type=date],.wpcf7 .main-header input:focus[type=datetime-local],.wpcf7 .main-header input:focus[type=datetime],.wpcf7 .main-header input:focus[type=email],.wpcf7 .main-header input:focus[type=file],.wpcf7 .main-header input:focus[type=month],.wpcf7 .main-header input:focus[type=number],.wpcf7 .main-header input:focus[type=range],.wpcf7 .main-header input:focus[type=search],.wpcf7 .main-header input:focus[type=submit],.wpcf7 .main-header input:focus[type=tel],.wpcf7 .main-header input:focus[type=text],.wpcf7 .main-header input:focus[type=time],.wpcf7 .main-header input:focus[type=url],.wpcf7 .main-header input:focus[type=week],.wpcf7 .main-header select:focus,.wpcf7 .main-header textarea:focus{border-color:#424242!important}@media (max-width:768px){.flex-column-sm{-ms-flex-direction:column!important;-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;flex-direction:column!important;margin-top:10px}}@media (min-width:576px){.text-right-xs{text-align:right!important}}img.attachment-medium,img.size-medium{max-width:45%;width:auto;float:left;margin:0 15px 0 0;padding:4px;height:auto;border:1px solid #ededed}.entry-title>a{color:rgba(0,0,0,.87)}.entry-meta{font-size:17px}.entry-footer{font-size:17px;margin-top:10px}.entry-meta-single{margin-top:10px}.nav-next,.nav-previous{font-size:19px;padding:0}.comment-notes{font-size:17px}#commentform label{font-size:17px}.footer-menu a:hover{text-decoration:underline!important}.article-mb{margin-bottom:30px}.page-mt{margin-top:30px}.entry-header{margin-bottom:10px}.tag-category-icon{font-size:25px;opacity:.5}.tags-links>.tag-category-icon{margin-right:4px}#comments{margin-top:30px}.comment-content,ol.comment-list{font-size:17px!important}.cat-links a,.comment-metadata>a,.tags-links a{color:rgba(0,0,0,.38)!important}.back-to-top{cursor:pointer;position:fixed;bottom:20px;right:20px;display:none}.taxonomy-title{background-color:#eee}.taxonomy-description p{font-size:19px}.taxonomy-card{margin-bottom:30px}.taxonomy-card h1{font-size:2.125rem}.taxonomy-card .card-text{font-size:17px}.entry-footer span,.entry-footer span.tags-links{padding-right:20px!important}.tooltip{font-size:17px}.widget{margin-bottom:16px;padding-left:10px;padding-right:10px}.rpwwt-widget ul li{margin:0 0 0!important;padding-left:5px;padding-right:5px}span.rpwwt-post-title{font-size:19px!important;color:rgba(0,0,0,.87)!important}span.rpwwt-post-title:hover{-webkit-text-decoration-color:rgba(0,0,0,.87)!important;text-decoration-color:rgba(0,0,0,.87)!important}.icons-medium,.tagcloud{padding:5px}.yarpp-thumbnail-title{color:rgba(0,0,0,.87)!important}.yarpp-thumbnails-horizontal .yarpp-thumbnail{height:100%!important}.tag-cloud-link{color:#fff!important;margin-top:.1rem;margin-bottom:.1rem}.tag-cloud-link:hover{-webkit-text-decoration-color:#f07206;text-decoration-color:#f07206}.tag-cloud-link:hover{-webkit-text-decoration-color:rgba(0,0,0,.87);text-decoration-color:rgba(0,0,0,.87)}.wpcf7 input[type=submit]{background-color:#f07206!important}.wpcf7 input[type=submit]:hover{color:inherit}#cookie-law-info-bar span,#cookie-law-info-bar span a{font-size:17px}#cookie_action_close_header{margin-left:5px;margin-right:5px}@media (min-width:993px){.navbar-nav>li{position:relative}.navbar-nav .active a:not(.dropdown-item)::before{border-bottom:5px solid #f07206;bottom:-10px;content:" ";left:0;position:absolute;right:0}}@media (max-width:992px){#main-menu>li.active{text-decoration:underline!important}}.offer-page{margin-bottom:2rem}.card{margin-bottom:1rem}.card-img{padding:5px;padding-top:1rem}.card p{font-size:18px}.card-header,.card-header-dp-none{padding-bottom:0}.card-header-dp-none{border-bottom:inherit}.card-img-overlay-badge{bottom:inherit;left:inherit}.offer-index{margin-top:1%;margin-bottom:1%}.off-badge{color:#fff;background-color:#f83207!important;font-size:150%!important;padding-right:10px;padding-left:10px;opacity:.9}.new-price{color:#f83207}@media (min-width:768px){.card-img{padding:0;margin-left:1rem}.off-badge{margin-top:20px!important}}@media (max-width:768px){.card-header-dp-none{display:none!important}.off-badge{font-size:200%!important;margin-right:2rem}}@media (max-width:992px){.d-md-none{display:none}.dp-md-none{display:none}}.btn-tertiary{background-color:#0088a3}.btn-complementary{background-color:#0087a3}.btn-group{-webkit-box-shadow:inherit;box-shadow:inherit}.page-link{font-size:18px}.offer-title{color:rgba(0,0,0,.87);text-decoration:underline}.icon-small{font-size:inherit!important}.card-border-left{border-left:5px solid #f07206}.mt-10{margin-top:10px}.mt-20{margin-top:20px}.breadcrumb-item{font-size:17px}.breadcrumb{background-color:inherit;padding-left:0;-webkit-box-align:left;-ms-flex-align:left;align-items:left;border-radius:inherit}@media (max-width:768px){.breadcrumb-item.current-item.post-post{display:none}}
+/*# sourceMappingURL=theme.min.css.map */
diff --git a/public/fonts b/public/fonts
new file mode 120000
index 0000000..01f81d9
--- /dev/null
+++ b/public/fonts
@@ -0,0 +1 @@
+css/fonts
\ No newline at end of file
diff --git a/public/js/jquery.js b/public/js/jquery.js
new file mode 100644
index 0000000..bce453d
--- /dev/null
+++ b/public/js/jquery.js
@@ -0,0 +1,10873 @@
+/*!
+ * jQuery JavaScript Library v3.5.1
+ * https://jquery.com/
+ *
+ * Includes Sizzle.js
+ * https://sizzlejs.com/
+ *
+ * Copyright JS Foundation and other contributors
+ * Released under the MIT license
+ * https://jquery.org/license
+ *
+ * Date: 2020-05-04T22:49Z
+ */
+( function( global, factory ) {
+
+ "use strict";
+
+ if ( typeof module === "object" && typeof module.exports === "object" ) {
+
+ // For CommonJS and CommonJS-like environments where a proper `window`
+ // is present, execute the factory and get jQuery.
+ // For environments that do not have a `window` with a `document`
+ // (such as Node.js), expose a factory as module.exports.
+ // This accentuates the need for the creation of a real `window`.
+ // e.g. var jQuery = require("jquery")(window);
+ // See ticket #14549 for more info.
+ module.exports = global.document ?
+ factory( global, true ) :
+ function( w ) {
+ if ( !w.document ) {
+ throw new Error( "jQuery requires a window with a document" );
+ }
+ return factory( w );
+ };
+ } else {
+ factory( global );
+ }
+
+// Pass this if window is not defined yet
+} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
+
+// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
+// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
+// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
+// enough that all such attempts are guarded in a try block.
+"use strict";
+
+var arr = [];
+
+var getProto = Object.getPrototypeOf;
+
+var slice = arr.slice;
+
+var flat = arr.flat ? function( array ) {
+ return arr.flat.call( array );
+} : function( array ) {
+ return arr.concat.apply( [], array );
+};
+
+
+var push = arr.push;
+
+var indexOf = arr.indexOf;
+
+var class2type = {};
+
+var toString = class2type.toString;
+
+var hasOwn = class2type.hasOwnProperty;
+
+var fnToString = hasOwn.toString;
+
+var ObjectFunctionString = fnToString.call( Object );
+
+var support = {};
+
+var isFunction = function isFunction( obj ) {
+
+ // Support: Chrome <=57, Firefox <=52
+ // In some browsers, typeof returns "function" for HTML