diff --git a/Gruntfile.js b/Gruntfile.js
new file mode 100644
index 00000000..4fbdb612
--- /dev/null
+++ b/Gruntfile.js
@@ -0,0 +1,241 @@
+var jsCompatibilty = [
+ 'node_modules/promise-polyfill/dist/polyfill.min.js',
+ 'node_modules/es6-promise/dist/es6-promise.min.js'
+]
+
+var jsMain = [
+ 'node_modules/sweetalert2/dist/sweetalert2.all.min.js',
+ 'node_modules/inputmask/dist/min/jquery.inputmask.bundle.min.js',
+/* 'node_modules/summernote/dist/summernote.min.js',
+ 'node_modules/summernote/dist/lang/summernote-fr-FR.min.js',
+*/
+ 'node_modules/@activix/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js',
+ 'node_modules/@activix/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.fr.js',
+ 'node_modules/bootstrap-fileinput/js/plugins/piexif.min.js',
+ 'node_modules/bootstrap-slider/dist/bootstrap-slider.min.js',
+ 'node_modules/bootstrap-validate/dist/bootstrap-validate.js',
+ 'node_modules/jQuery-QueryBuilder/dist/js/jquery-builder.standalone.min.js',
+/* 'node_modules/jQuery-QueryBuilder/dist/i18n/query-builder.fr.js', */
+/* 'node_modules/isotope-layout/dist/isotope.pkgd.min.js', */
+ 'node_modules/wew.js/dist/wew.min.js',
+ 'node_modules/jquery.are-you-sure/jquery.are-you-sure.js',
+/* 'node_modules/letteringjs/jquery.lettering.js', */
+/* 'node_modules/textillate/jquery.textillate.js', */
+ 'node_modules/numeral/min/numeral.min.js',
+ 'node_modules/numeral/min/locales/fr.min.js',
+ 'build/js/url_on_tab.js',
+ 'build/js/set_options.js',
+ 'build/js/confirm.js',
+ 'build/js/appender.js',
+ 'build/js/app.js',
+]
+
+var cssMain = [
+ 'node_modules/sweetalert2/dist/sweetalert2.min.css',
+ 'node_modules/inputmask/css/inputmask.css',
+ 'node_modules/summernote/dist/summernote.css',
+ 'node_modules/@activix/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css',
+ 'node_modules/bootstrap-slider/dist/css/bootstrap-slider.min.css',
+ 'node_modules/jQuery-QueryBuilder/dist/css/query-builder.default.min.css',
+ 'node_modules/animate.css/animate.min.css',
+ 'build/css/modal-option.css',
+ 'build/css/shadow.css',
+ 'build/css/utility.css',
+ 'build/css/site.css',
+ 'build/css/admin.css'
+]
+
+var jsDataTables = [
+ 'node_modules/jszip/dist/jszip.min.js',
+ 'node_modules/pdfmake/build/pdfmake.min.js',
+ 'node_modules/pdfmake/build/vfs_fonts.js',
+ 'node_modules/datatables/media/js/jquery.dataTables.min.js',
+ 'node_modules/datatables.net-bs4/js/dataTables.bootstrap4.min.js',
+ 'node_modules/datatables.net-autofill/js/autoFill.min.js',
+ 'node_modules/datatables.net-autofill/js/autoFill.bootstrap.min.js',
+ 'node_modules/datatables.net-buttons/js/dataTables.buttons.min.js',
+ 'node_modules/datatables.net-buttons-bs4/js/buttons.bootstrap4.min.js',
+ 'node_modules/datatables.net-buttons/js/buttons.html5.min.js',
+ 'node_modules/datatables.net-buttons/js/buttons.print.min.js',
+ 'node_modules/datatables.net-buttons/js/buttons.colVis.min.js',
+ 'node_modules/datatables.net-colreorder/js/dataTables.colReorder.min.js',
+ 'node_modules/datatables.net-fixedheader/js/dataTables.fixedHeader.min.js',
+ 'node_modules/datatables.net-fixedheader-bs4/js/fixedHeader.bootstrap4.min.js',
+ 'node_modules/datatables.net-fixedcolumns/js/dataTables.fixedColumns.min.js',
+ 'node_modules/datatables.net-fixedcolumns-bs4/js/fixedColumns.bootstrap4.min.js',
+ 'node_modules/datatables.net-keytable/js/dataTables.keyTable.min.js',
+ 'node_modules/datatables.net-keytable-bs4/js/keyTable.bootstrap4.min.js',
+ 'node_modules/datatables.net-responsive/js/dataTables.responsive.min.js',
+ 'node_modules/datatables.net-scroller/js/dataTables.scroller.min.js',
+ 'node_modules/datatables.net-scroller-bs4/js/scroller.bootstrap4.min.js',
+ 'node_modules/datatables.net-select/js/dataTables.select.min.js',
+ 'node_modules/datatables.net-select-bs4/js/select.bootstrap4.min.js',
+ 'node_modules/yadcf/jquery.dataTables.yadcf.js',
+ 'build/js/modal.js',
+ 'build/js/datatables.js',
+];
+
+var cssDataTables = [
+ // 'node_modules/datatables/media/css/jquery.dataTables.min.css',
+ 'node_modules/datatables.net-bs4/css/dataTables.bootstrap4.min.css',
+ 'node_modules/dataTables.net-buttons-bs4/css/buttons.bootstrap4.min.css',
+ 'node_modules/datatables.net-autofill/css/autoFill.bootstrap.min.css',
+ 'node_modules/datatables.net-colreorder-bs4/css/colReorder.bootstrap4.min.css',
+ 'node_modules/datatables.net-fixedheader-bs4/css/fixedHeader.bootstrap4.min.css',
+ 'node_modules/datatables.net-fixedcolumns-bs4/css/fixedColumns.bootstrap4.min.css',
+ 'node_modules/datatables.net-keytable-bs4/css/keyTable.bootstrap4.min.css',
+ 'node_modules/datatables.net-scroller-bs4/css/scroller.bootstrap4.min.css',
+ 'node_modules/datatables.net-select-bs4/css/select.bootstrap4.min.css',
+ 'node_modules/yadcf/jquery.dataTables.yadcf.css',
+ 'build/dataTables.bootstrap.min.css',
+];
+
+var jsCalendar = [
+ 'node_modules/fullcalendar/dist/fullcalendar.min.js',
+ 'node_modules/fullcalendar/dist/locale/fr.js'
+]
+
+var cssCalendar = [
+ 'node_modules/fullcalendar/dist/fullcalendar.min.css',
+]
+
+module.exports = function(grunt) {
+
+ grunt.initConfig({
+ pkg: grunt.file.readJSON('package.json'),
+ uglify: {
+ options: {
+ banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n',
+ nameCache: 'built/<%= pkg.name %>.json'
+ },
+ build: {
+ files: [
+ {
+ 'public/js/main.min.js': jsMain,
+ 'public/js/datatables.min.js': jsDataTables,
+ 'public/js/calendar.min.js': jsCalendar
+ },
+ {
+ expand: true,
+ cwd: 'build/js/modules',
+ src: '**/*.js',
+ dest: 'public/js',
+ rename: function (dest, src) {
+ return dest + '/' + src.replace('.js', '.min.js');
+ }
+ },
+ ]
+ },
+ },
+ eslint: {
+ target: ['build/js/*']
+ },
+ webstandards: {
+ 'src': ['build/js/*']
+ },
+ concat: {
+ options: {
+ separator: '\n'
+ },
+ mainjs: {
+ src: jsMain,
+ dest: 'public/js/main.min.js'
+ },
+ maincss: {
+ src: cssMain,
+ dest: 'public/css/main.min.css'
+ },
+ datatablesjs: {
+ src: jsDataTables,
+ dest: 'public/js/datatables.min.js'
+ },
+ datatablescss: {
+ src: cssDataTables,
+ dest: 'public/css/datatables.min.css'
+ },
+ calendarjs: {
+ src: jsCalendar,
+ dest: 'public/js/calendar.min.js'
+ },
+ calendarcss: {
+ src: cssCalendar,
+ dest: 'public/css/calendar.min.css'
+ }
+ },
+ cssmin: {
+ options: {
+ shorthandCompacting: false,
+ roundingPrecision: -1
+ },
+ target: {
+ files: [
+ {
+ 'public/css/main.min.css': cssMain
+ },
+ ]
+ }
+ },
+ copy: {
+ main: {
+ files: [
+ {
+ expand: true,
+ cwd: 'node_modules/bootstrap/dist/fonts/',
+ src: ['**'],
+ dest: 'public/fonts/'
+ },
+ {
+ expand: true,
+ cwd: 'node_modules/font-awesome/fonts/',
+ src: ['**'],
+ dest: 'public/fonts/'
+ },
+ {
+ expand: true,
+ cwd: 'node_modules/summernote/dist/font/',
+ src: ['**'],
+ dest: 'public/css/font/'
+ },
+ {
+ expand: true,
+ cwd: 'node_modules/datatables/media/images/',
+ src: ['**'],
+ dest: 'public/images/'
+ },
+ {
+ expand: true,
+ cwd: 'build/img/',
+ src: ['**'],
+ dest: 'public/img/'
+ },
+ ],
+ }
+ },
+ watch: {
+ dist: {
+ files: [
+ 'build/*',
+ ],
+ tasks: ['concat', 'copy']
+ }
+ },
+ });
+
+ // Load the plugin that provides the "uglify" task.
+ grunt.loadNpmTasks('grunt-contrib-concat');
+ grunt.loadNpmTasks('grunt-contrib-copy');
+ grunt.loadNpmTasks('grunt-contrib-cssmin');
+ grunt.loadNpmTasks('grunt-contrib-handlebars');
+ grunt.loadNpmTasks('grunt-contrib-uglify');
+ grunt.loadNpmTasks('grunt-contrib-watch');
+ grunt.loadNpmTasks('grunt-eslint');
+ grunt.loadNpmTasks('grunt-webstandards');
+
+ // Default task(s).
+ grunt.registerTask('default', ['uglify', 'concat', 'cssmin', 'copy']);
+ grunt.registerTask('js', ['uglify']);
+ grunt.registerTask('css', ['cssmin', 'copy']);
+ grunt.registerTask('dev', ['concat', 'copy']);
+ grunt.registerTask('lint', ['eslint']);
+ grunt.registerTask('webstandards', ['webstandards']);
+};
diff --git a/app/Datatables/ProductsDataTable.php b/app/Datatables/ArticlesDataTable.php
similarity index 78%
rename from app/Datatables/ProductsDataTable.php
rename to app/Datatables/ArticlesDataTable.php
index b76fd131..c38ef69a 100644
--- a/app/Datatables/ProductsDataTable.php
+++ b/app/Datatables/ArticlesDataTable.php
@@ -4,13 +4,13 @@ namespace App\DataTables;
use Yajra\DataTables\Html\Column;
use App\DataTables\ParentDataTable as DataTable;
-use App\Models\Shop\Product;
+use App\Models\Shop\Article;
-class ProductsDataTable extends DataTable
+class ArticlesDataTable extends DataTable
{
- public $model_name = 'Products';
+ public $model_name = 'Articles';
- public function query(Product $model)
+ public function query(Article $model)
{
return self::buildQuery($model);
}
diff --git a/app/Datatables/CategoriesDataTable.php b/app/Datatables/CategoriesDataTable.php
new file mode 100644
index 00000000..5bd2ec9b
--- /dev/null
+++ b/app/Datatables/CategoriesDataTable.php
@@ -0,0 +1,30 @@
+exportable(false)
+ ->printable(false)
+ ->width(120)
+ ->addClass('text-center'),
+ ];
+ }
+
+}
diff --git a/app/Datatables/SpeciesDataTable.php b/app/Datatables/SpeciesDataTable.php
index 3114da95..87ba1910 100644
--- a/app/Datatables/SpeciesDataTable.php
+++ b/app/Datatables/SpeciesDataTable.php
@@ -12,16 +12,18 @@ class SpeciesDataTable extends DataTable
public function query(Specie $model)
{
+ $model = $model::withCount('varieties')->with('genre');
return self::buildQuery($model);
}
protected function getColumns()
{
return [
- Column::make('name'),
+ Column::make('name')->title('Nom'),
Column::make('alias'),
+ Column::make('genre_name'),
Column::make('latin'),
- Column::make('genre'),
+ Column::make('varieties_count')->title('Nb variétés'),
Column::computed('action')
->exportable(false)
->printable(false)
diff --git a/app/Http/Controllers/Shop/Admin/FamilyController.php b/app/Http/Controllers/Botanic/Admin/FamilyController.php
similarity index 66%
rename from app/Http/Controllers/Shop/Admin/FamilyController.php
rename to app/Http/Controllers/Botanic/Admin/FamilyController.php
index 5c5f2c07..b729a6e0 100644
--- a/app/Http/Controllers/Shop/Admin/FamilyController.php
+++ b/app/Http/Controllers/Botanic/Admin/FamilyController.php
@@ -1,11 +1,11 @@
render('Shop.Admin.Families.list');
+ return $dataTable->render('Botanic.Admin.Families.list');
}
public function getDatatable(Request $request)
@@ -24,25 +24,25 @@ class FamilyController extends Controller
public function create()
{
$data = [];
- return view('Shop.Admin.Families.create', $data);
+ return view('Botanic.Admin.Families.create', $data);
}
public function store(Request $request)
{
$ret = Families::store($request);
- return redirect()->route('Shop.Admin.Families.index');
+ return redirect()->route('Botanic.Admin.Families.index');
}
public function show($id)
{
$data = Families::get($id);
- return view('Shop.Admin.Families.view', $data);
+ return view('Botanic.Admin.Families.view', $data);
}
public function edit($id)
{
$data['family'] = Families::get($id)->toArray();
- return view('Shop.Admin.Families.edit', $data);
+ return view('Botanic.Admin.Families.edit', $data);
}
public function destroy($id)
diff --git a/app/Http/Controllers/Shop/Admin/GenreController.php b/app/Http/Controllers/Botanic/Admin/GenreController.php
similarity index 64%
rename from app/Http/Controllers/Shop/Admin/GenreController.php
rename to app/Http/Controllers/Botanic/Admin/GenreController.php
index 35cf3900..3ca3808b 100644
--- a/app/Http/Controllers/Shop/Admin/GenreController.php
+++ b/app/Http/Controllers/Botanic/Admin/GenreController.php
@@ -1,19 +1,19 @@
render('Shop.Admin.Genres.list');
+ return $dataTable->render('Botanic.Admin.Genres.list');
}
public function getDatatable(Request $request)
@@ -23,26 +23,26 @@ class GenreController extends Controller
public function create()
{
- return view('Shop.Admin.Genres.create');
+ return view('Botanic.Admin.Genres.create');
}
public function store(Request $request)
{
$ret = Genres::store($request);
- return redirect()->route('Shop.Admin.Genres.index');
+ return redirect()->route('Botanic.Admin.Genres.index');
}
public function show($id)
{
$data = Genres::get($id);
- return view('Shop.Admin.Genres.view', $data);
+ return view('Botanic.Admin.Genres.view', $data);
}
public function edit($id)
{
$data = Genres::get($id);
$data['families'] = Families::getOptions();
- return view('Shop.Admin.Genres.edit', $data);
+ return view('Botanic.Admin.Genres.edit', $data);
}
public function destroy($id)
diff --git a/app/Http/Controllers/Shop/Admin/SpecieController.php b/app/Http/Controllers/Botanic/Admin/SpecieController.php
similarity index 64%
rename from app/Http/Controllers/Shop/Admin/SpecieController.php
rename to app/Http/Controllers/Botanic/Admin/SpecieController.php
index eb2665fd..899769ad 100644
--- a/app/Http/Controllers/Shop/Admin/SpecieController.php
+++ b/app/Http/Controllers/Botanic/Admin/SpecieController.php
@@ -1,19 +1,19 @@
render('Shop.Admin.Species.list');
+ return $dataTable->render('Botanic.Admin.Species.list');
}
public function getDatatable(Request $request)
@@ -23,26 +23,26 @@ class SpecieController extends Controller
public function create()
{
- return view('Shop.Admin.Species.create');
+ return view('Botanic.Admin.Species.create');
}
public function store(Request $request)
{
$ret = Species::store($request);
- return redirect()->route('Shop.Admin.Species.index');
+ return redirect()->route('Botanic.Admin.Species.index');
}
public function show($id)
{
$data = Species::get($id);
- return view('Shop.Admin.Species.view', $data);
+ return view('Botanic.Admin.Species.view', $data);
}
public function edit($id)
{
$data = Species::get($id);
$data['genres'] = Genres::getOptions();
- return view('Shop.Admin.Species.edit', $data);
+ return view('Botanic.Admin.Species.edit', $data);
}
public function destroy($id)
diff --git a/app/Http/Controllers/Shop/Admin/VarietyController.php b/app/Http/Controllers/Botanic/Admin/VarietyController.php
similarity index 64%
rename from app/Http/Controllers/Shop/Admin/VarietyController.php
rename to app/Http/Controllers/Botanic/Admin/VarietyController.php
index b1c475f5..6054c386 100644
--- a/app/Http/Controllers/Shop/Admin/VarietyController.php
+++ b/app/Http/Controllers/Botanic/Admin/VarietyController.php
@@ -1,19 +1,19 @@
render('Shop.Admin.Varieties.list');
+ return $dataTable->render('Botanic.Admin.Varieties.list');
}
public function getDatatable(Request $request)
@@ -23,26 +23,26 @@ class VarietyController extends Controller
public function create()
{
- return view('Shop.Admin.Varieties.create');
+ return view('Botanic.Admin.Varieties.create');
}
public function store(Request $request)
{
$ret = Varieties::store($request);
- return redirect()->route('Shop.Admin.Varieties.index');
+ return redirect()->route('Botanic.Admin.Varieties.index');
}
public function show($id)
{
$data = Varieties::get($id);
- return view('Shop.Admin.Varieties.view', $data);
+ return view('Botanic.Admin.Varieties.view', $data);
}
public function edit($id)
{
$data = Varieties::get($id);
$data['species'] = Species::getOptions();
- return view('Shop.Admin.Varieties.edit', $data);
+ return view('Botanic.Admin.Varieties.edit', $data);
}
public function destroy($id)
diff --git a/app/Http/Controllers/Shop/Admin/ProductAttributeController.php b/app/Http/Controllers/Shop/Admin/ArticleAttributeController.php
similarity index 68%
rename from app/Http/Controllers/Shop/Admin/ProductAttributeController.php
rename to app/Http/Controllers/Shop/Admin/ArticleAttributeController.php
index 95d3cd5d..1fda5c36 100644
--- a/app/Http/Controllers/Shop/Admin/ProductAttributeController.php
+++ b/app/Http/Controllers/Shop/Admin/ArticleAttributeController.php
@@ -2,11 +2,11 @@
namespace App\Http\Controllers\Shop\Admin;
-use App\ProductAttribute;
+use App\Model\Shop\ArticleAttribute;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
-class ProductAttributeController extends Controller
+class ArticleAttributeController extends Controller
{
/**
* Display a listing of the resource.
@@ -42,10 +42,10 @@ class ProductAttributeController extends Controller
/**
* Display the specified resource.
*
- * @param \App\ProductAttribute $productAttribute
+ * @param \App\ArticleAttribute $ArticleAttribute
* @return \Illuminate\Http\Response
*/
- public function show(ProductAttribute $productAttribute)
+ public function show(ArticleAttribute $ArticleAttribute)
{
//
}
@@ -53,10 +53,10 @@ class ProductAttributeController extends Controller
/**
* Show the form for editing the specified resource.
*
- * @param \App\ProductAttribute $productAttribute
+ * @param \App\ArticleAttribute $ArticleAttribute
* @return \Illuminate\Http\Response
*/
- public function edit(ProductAttribute $productAttribute)
+ public function edit(ArticleAttribute $ArticleAttribute)
{
//
}
@@ -65,10 +65,10 @@ class ProductAttributeController extends Controller
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
- * @param \App\ProductAttribute $productAttribute
+ * @param \App\ArticleAttribute $ArticleAttribute
* @return \Illuminate\Http\Response
*/
- public function update(Request $request, ProductAttribute $productAttribute)
+ public function update(Request $request, ArticleAttribute $ArticleAttribute)
{
//
}
@@ -76,10 +76,10 @@ class ProductAttributeController extends Controller
/**
* Remove the specified resource from storage.
*
- * @param \App\ProductAttribute $productAttribute
+ * @param \App\ArticleAttribute $ArticleAttribute
* @return \Illuminate\Http\Response
*/
- public function destroy(ProductAttribute $productAttribute)
+ public function destroy(ArticleAttribute $ArticleAttribute)
{
//
}
diff --git a/app/Http/Controllers/Shop/Admin/ProductSectionController.php b/app/Http/Controllers/Shop/Admin/ArticleCategoryController.php
similarity index 100%
rename from app/Http/Controllers/Shop/Admin/ProductSectionController.php
rename to app/Http/Controllers/Shop/Admin/ArticleCategoryController.php
diff --git a/app/Http/Controllers/Shop/Admin/ProductController.php b/app/Http/Controllers/Shop/Admin/ArticleController.php
similarity index 73%
rename from app/Http/Controllers/Shop/Admin/ProductController.php
rename to app/Http/Controllers/Shop/Admin/ArticleController.php
index 93c48333..d29f8e77 100644
--- a/app/Http/Controllers/Shop/Admin/ProductController.php
+++ b/app/Http/Controllers/Shop/Admin/ArticleController.php
@@ -2,11 +2,13 @@
namespace App\Http\Controllers\Shop\Admin;
-use App\Product;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
-class ProductController extends Controller
+use App\Models\Shop\Article;
+use App\Repositories\Shop\Articles;
+
+class ArticleController extends Controller
{
/**
* Display a listing of the resource.
@@ -42,10 +44,10 @@ class ProductController extends Controller
/**
* Display the specified resource.
*
- * @param \App\Product $product
+ * @param \App\Article $Article
* @return \Illuminate\Http\Response
*/
- public function show(Product $product)
+ public function show(Article $Article)
{
//
}
@@ -53,10 +55,10 @@ class ProductController extends Controller
/**
* Show the form for editing the specified resource.
*
- * @param \App\Product $product
+ * @param \App\Article $Article
* @return \Illuminate\Http\Response
*/
- public function edit(Product $product)
+ public function edit(Article $Article)
{
//
}
@@ -65,10 +67,10 @@ class ProductController extends Controller
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
- * @param \App\Product $product
+ * @param \App\Article $Article
* @return \Illuminate\Http\Response
*/
- public function update(Request $request, Product $product)
+ public function update(Request $request, Article $Article)
{
//
}
@@ -76,10 +78,10 @@ class ProductController extends Controller
/**
* Remove the specified resource from storage.
*
- * @param \App\Product $product
+ * @param \App\Article $Article
* @return \Illuminate\Http\Response
*/
- public function destroy(Product $product)
+ public function destroy(Article $Article)
{
//
}
diff --git a/app/Http/Controllers/Shop/Admin/ProductPriceController.php b/app/Http/Controllers/Shop/Admin/ArticlePriceController.php
similarity index 69%
rename from app/Http/Controllers/Shop/Admin/ProductPriceController.php
rename to app/Http/Controllers/Shop/Admin/ArticlePriceController.php
index 39b66e4d..58662b90 100644
--- a/app/Http/Controllers/Shop/Admin/ProductPriceController.php
+++ b/app/Http/Controllers/Shop/Admin/ArticlePriceController.php
@@ -2,11 +2,13 @@
namespace App\Http\Controllers\Shop\Admin;
-use App\ProductPrice;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
-class ProductPriceController extends Controller
+use App\Models\Shop\ArticlePrice;
+use App\Repositories\Shop\ArticlePrices;
+
+class ArticlePriceController extends Controller
{
/**
* Display a listing of the resource.
@@ -42,10 +44,10 @@ class ProductPriceController extends Controller
/**
* Display the specified resource.
*
- * @param \App\ProductPrice $productPrice
+ * @param \App\ArticlePrice $ArticlePrice
* @return \Illuminate\Http\Response
*/
- public function show(ProductPrice $productPrice)
+ public function show(ArticlePrice $ArticlePrice)
{
//
}
@@ -53,10 +55,10 @@ class ProductPriceController extends Controller
/**
* Show the form for editing the specified resource.
*
- * @param \App\ProductPrice $productPrice
+ * @param \App\ArticlePrice $ArticlePrice
* @return \Illuminate\Http\Response
*/
- public function edit(ProductPrice $productPrice)
+ public function edit(ArticlePrice $ArticlePrice)
{
//
}
@@ -65,10 +67,10 @@ class ProductPriceController extends Controller
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
- * @param \App\ProductPrice $productPrice
+ * @param \App\ArticlePrice $ArticlePrice
* @return \Illuminate\Http\Response
*/
- public function update(Request $request, ProductPrice $productPrice)
+ public function update(Request $request, ArticlePrice $ArticlePrice)
{
//
}
@@ -76,10 +78,10 @@ class ProductPriceController extends Controller
/**
* Remove the specified resource from storage.
*
- * @param \App\ProductPrice $productPrice
+ * @param \App\ArticlePrice $ArticlePrice
* @return \Illuminate\Http\Response
*/
- public function destroy(ProductPrice $productPrice)
+ public function destroy(ArticlePrice $ArticlePrice)
{
//
}
diff --git a/app/Http/Controllers/Shop/Admin/SectionController.php b/app/Http/Controllers/Shop/Admin/CategoryController.php
similarity index 62%
rename from app/Http/Controllers/Shop/Admin/SectionController.php
rename to app/Http/Controllers/Shop/Admin/CategoryController.php
index 6d8f3800..7d0cbcca 100644
--- a/app/Http/Controllers/Shop/Admin/SectionController.php
+++ b/app/Http/Controllers/Shop/Admin/CategoryController.php
@@ -5,28 +5,20 @@ namespace App\Http\Controllers\Shop\Admin;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
-use App\Repositories\Shop\Sections;
+use App\Repositories\Shop\Categories;
+use App\DataTables\CategoriesDataTable;
-class SectionController extends Controller
+class CategoryController extends Controller
{
- /**
- * Display a listing of the resource.
- *
- * @return \Illuminate\Http\Response
- */
- public function index(Request $request)
+
+ public function index(CategoriesDataTable $dataTable)
{
- if ($request->ajax()) {
- return self::getDatatable($request);
- } else {
- $data = [];
- return view('Shop.Admin.Sections.list', $data);
- }
- }
+ return $dataTable->render('Shop.Admin.Categories.list');
+ }
public function getDatatable(Request $request)
{
- return Sections::getTables($request->all());
+ return Categories::getTables($request->all());
}
/**
@@ -37,7 +29,7 @@ class SectionController extends Controller
public function create()
{
$data = [];
- return view('Shop.Admin.Sections.create', $data);
+ return view('Shop.Admin.Categories.create', $data);
}
/**
@@ -48,8 +40,8 @@ class SectionController extends Controller
*/
public function store(Request $request)
{
- $ret = Sections::store($request);
- return redirect()->route('Shop.Admin.Sections.index');
+ $ret = Categories::store($request);
+ return redirect()->route('Shop.Admin.Categories.index');
}
/**
@@ -60,8 +52,8 @@ class SectionController extends Controller
*/
public function show($id)
{
- $data = Sections::get($id);
- return view('Shop.Admin.Sections.view', $data);
+ $data = Categories::get($id);
+ return view('Shop.Admin.Categories.view', $data);
}
/**
@@ -72,8 +64,8 @@ class SectionController extends Controller
*/
public function edit($id)
{
- $data = Sections::get($id);
- return view('Shop.Admin.Sections.edit', $data);
+ $data = Categories::get($id);
+ return view('Shop.Admin.Categories.edit', $data);
}
/**
@@ -96,6 +88,6 @@ class SectionController extends Controller
*/
public function destroy($id)
{
- return Sections::destroy($id);
+ return Categories::destroy($id);
}
}
diff --git a/app/Http/Controllers/Shop/ProductController.php b/app/Http/Controllers/Shop/ArticleController.php
similarity index 74%
rename from app/Http/Controllers/Shop/ProductController.php
rename to app/Http/Controllers/Shop/ArticleController.php
index b8d50d41..070ba386 100644
--- a/app/Http/Controllers/Shop/ProductController.php
+++ b/app/Http/Controllers/Shop/ArticleController.php
@@ -5,9 +5,9 @@ namespace App\Http\Controllers\Shop;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
-use App\Repositories\Shop\Products;
+use App\Repositories\Shop\Articles;
-class ProductController extends Controller
+class ArticleController extends Controller
{
/**
* Display a listing of the resource.
@@ -43,10 +43,10 @@ class ProductController extends Controller
/**
* Display the specified resource.
*
- * @param \App\Product $product
+ * @param \App\Article $article
* @return \Illuminate\Http\Response
*/
- public function show(Product $product)
+ public function show($id)
{
//
}
@@ -54,10 +54,10 @@ class ProductController extends Controller
/**
* Show the form for editing the specified resource.
*
- * @param \App\Product $product
+ * @param \App\Article $article
* @return \Illuminate\Http\Response
*/
- public function edit(Product $product)
+ public function edit($id)
{
//
}
@@ -66,10 +66,10 @@ class ProductController extends Controller
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
- * @param \App\Product $product
+ * @param \App\Article $article
* @return \Illuminate\Http\Response
*/
- public function update(Request $request, Product $product)
+ public function update(Request $request, $id)
{
//
}
@@ -77,10 +77,10 @@ class ProductController extends Controller
/**
* Remove the specified resource from storage.
*
- * @param \App\Product $product
+ * @param \App\Article $article
* @return \Illuminate\Http\Response
*/
- public function destroy(Product $product)
+ public function destroy($id)
{
//
}
diff --git a/app/Http/Controllers/Shop/SectionController.php b/app/Http/Controllers/Shop/CategoryController.php
similarity index 66%
rename from app/Http/Controllers/Shop/SectionController.php
rename to app/Http/Controllers/Shop/CategoryController.php
index 1c897015..afa96396 100644
--- a/app/Http/Controllers/Shop/SectionController.php
+++ b/app/Http/Controllers/Shop/CategoryController.php
@@ -5,9 +5,9 @@ namespace App\Http\Controllers\Shop;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
-use App\Repositories\Shop\Sections;
+use App\Repositories\Shop\Categorys;
-class SectionController extends Controller
+class CategoryController extends Controller
{
/**
* Display a listing of the resource.
@@ -20,13 +20,13 @@ class SectionController extends Controller
return self::getDatatable($request);
} else {
$data = [];
- return view('Shop.Sections.list', $data);
+ return view('Shop.Categories.list', $data);
}
}
public function getDatatable(Request $request)
{
- return Sections::getTables($request->all());
+ return Categories::getDatatable($request->all());
}
/**
@@ -35,10 +35,10 @@ class SectionController extends Controller
* @param \App\Customer $customer
* @return \Illuminate\Http\Response
*/
- public function show(Customer $customer)
+ public function show($id)
{
- $data = Sections::get($id);
- return view('Shop.Admin.Sections.view', $data);
+ $data = Categories::get($id);
+ return view('Shop.Admin.Categories.view', $data);
}
}
diff --git a/app/Menu/Botanic.php b/app/Menu/Botanic.php
new file mode 100644
index 00000000..43fca2a6
--- /dev/null
+++ b/app/Menu/Botanic.php
@@ -0,0 +1,27 @@
+add('Botanique', [ 'permission' => 'backend', 'icon' => 'envira' ])
+ ->id('botanic')
+ ->activeIfRoute('botanic')
+ ->order(2);
+
+ $menu->addTo('Botanic', 'Familles', [ 'route' => 'Botanic.Admin.Families.index', 'permission' => 'backend' ])
+ ->activeIfRoute(['Botanic.Admin.Families.index'])->order(1);
+ $menu->addTo('Botanic', 'Genres', [ 'route' => 'Botanic.Admin.Genres.index', 'permission' => 'backend' ])
+ ->activeIfRoute(['Botanic.Admin.Genres.index'])->order(2);
+ $menu->addTo('Botanic', 'Espèces', [ 'route' => 'Botanic.Admin.Species.index', 'permission' => 'backend' ])
+ ->activeIfRoute(['Botanic.Admin.Species.index'])->order(3);
+ $menu->addTo('Botanic', 'Variétés', [ 'route' => 'Botanic.Admin.Varieties.index', 'permission' => 'backend' ])
+ ->activeIfRoute(['Botanic.Admin.Varieties.index'])->order(4);
+
+ }
+}
diff --git a/app/Menu/Shop.php b/app/Menu/Shop.php
index 3c71639b..7e815188 100644
--- a/app/Menu/Shop.php
+++ b/app/Menu/Shop.php
@@ -14,15 +14,6 @@ class Shop
->activeIfRoute('shop')
->order(1);
- $menu->addTo('shop', 'Familles', [ 'route' => 'Shop.Admin.Families.index', 'permission' => 'backend' ])
- ->activeIfRoute(['Shop.Admin.Families.index'])->order(1);
- $menu->addTo('shop', 'Genres', [ 'route' => 'Shop.Admin.Genres.index', 'permission' => 'backend' ])
- ->activeIfRoute(['Shop.Admin.Genres.index'])->order(2);
- $menu->addTo('shop', 'Espèces', [ 'route' => 'Shop.Admin.Species.index', 'permission' => 'backend' ])
- ->activeIfRoute(['Shop.Admin.Species.index'])->order(3);
- $menu->addTo('shop', 'Variétés', [ 'route' => 'Shop.Admin.Varieties.index', 'permission' => 'backend' ])
- ->activeIfRoute(['Shop.Admin.Varieties.index'])->order(4);
-
$menu->addTo('shop', 'Categories', [ 'route' => 'Shop.Admin.Sections.index', 'permission' => 'backend' ])
->activeIfRoute(['Shop.Admin.Sections.index'])->order(5);
$menu->addTo('shop', 'Produits', [ 'route' => 'Shop.Admin.Products.index', 'permission' => 'backend' ])
@@ -32,7 +23,5 @@ class Shop
$menu->addTo('shop', 'Factures', [ 'route' => 'Shop.Admin.Invoices.index', 'permission' => 'backend' ])
->activeIfRoute(['Shop.Admin.Invoices.index'])->order(8);
-
-
}
}
diff --git a/app/Models/Shop/Family.php b/app/Models/Botanic/Family.php
similarity index 66%
rename from app/Models/Shop/Family.php
rename to app/Models/Botanic/Family.php
index 2f3c46c7..e55405f1 100644
--- a/app/Models/Shop/Family.php
+++ b/app/Models/Botanic/Family.php
@@ -1,17 +1,17 @@
hasMany('App\Models\Shop\Genre');
+ return $this->hasMany('App\Models\Botanic\Genre');
}
public function scopeByName($query,$name)
diff --git a/app/Models/Shop/Genre.php b/app/Models/Botanic/Genre.php
similarity index 61%
rename from app/Models/Shop/Genre.php
rename to app/Models/Botanic/Genre.php
index edc1201f..4a3f79b5 100644
--- a/app/Models/Shop/Genre.php
+++ b/app/Models/Botanic/Genre.php
@@ -1,22 +1,22 @@
belongsTo('App\Models\Shop\Family');
+ return $this->belongsTo('App\Models\Botanic\Family');
}
public function species()
{
- return $this->hasMany('App\Models\Shop\Specie');
+ return $this->hasMany('App\Models\Botanic\Specie');
}
public function scopeByName($query,$name)
diff --git a/app/Models/Shop/Specie.php b/app/Models/Botanic/Specie.php
similarity index 61%
rename from app/Models/Shop/Specie.php
rename to app/Models/Botanic/Specie.php
index 4d2cabda..85bf4d31 100644
--- a/app/Models/Shop/Specie.php
+++ b/app/Models/Botanic/Specie.php
@@ -1,22 +1,22 @@
belongsTo('App\Models\Shop\Family');
+ return $this->belongsTo('App\Models\Botanic\Family');
}
public function Varieties()
{
- return $this->hasMany('App\Models\Shop\Variety');
+ return $this->hasMany('App\Models\Botanic\Variety');
}
public function scopeByName($query,$name)
diff --git a/app/Models/Shop/Variety.php b/app/Models/Botanic/Variety.php
similarity index 53%
rename from app/Models/Shop/Variety.php
rename to app/Models/Botanic/Variety.php
index d67b91c9..f09ca53c 100644
--- a/app/Models/Shop/Variety.php
+++ b/app/Models/Botanic/Variety.php
@@ -1,16 +1,16 @@
belongsTo('App\Models\Shop\Specie');
+ return $this->belongsTo('App\Models\Botanic\Specie');
}
}
\ No newline at end of file
diff --git a/app/Models/Shop/Product.php b/app/Models/Shop/Product.php
index 2a882f6b..b3f4d295 100644
--- a/app/Models/Shop/Product.php
+++ b/app/Models/Shop/Product.php
@@ -4,45 +4,34 @@ namespace App\Models\Shop;
use Illuminate\Database\Eloquent\Model;
+use Rinvex\Categories\Traits\Categorizable;
+
class Product extends Model
{
+ use Categorizable;
protected $guarded = ['id'];
+ protected $table = 'shop_products';
- /**
- * @return \Illuminate\Database\Eloquent\Relations\HasMany
- */
public function Inventories()
{
return $this->hasMany('App\Models\Shop\Inventory');
}
- /**
- * @return \Illuminate\Database\Eloquent\Relations\HasMany
- */
public function Prices()
{
return $this->hasMany('App\Models\Shop\ProductPrice');
}
- /**
- * @return \Illuminate\Database\Eloquent\Relations\HasMany
- */
public function ProductAttributes()
{
return $this->hasMany('App\Models\Shop\ProductAttribute');
}
- /**
- * @return \Illuminate\Database\Eloquent\Relations\HasMany
- */
public function Categories()
{
return $this->hasMany('App\Models\Shop\CategoryProduct');
}
- /**
- * @return \Illuminate\Database\Eloquent\Relations\HasMany
- */
public function InvoiceItems()
{
return $this->hasMany('App\Models\Shop\InvoiceItem');
diff --git a/app/Models/Shop/ProductSection.php b/app/Models/Shop/ProductSection.php
index 9fa5b15b..86a2ab0b 100644
--- a/app/Models/Shop/ProductSection.php
+++ b/app/Models/Shop/ProductSection.php
@@ -6,8 +6,9 @@ use Illuminate\Database\Eloquent\Model;
class ProductSection extends Model
{
- protected $guarded = ['id'];
-
+ protected $guarded = ['id'];
+ protected $table = 'shop_product_sections';
+
public function Product()
{
return $this->belongsTo('App\Models\Shop\Product');
diff --git a/app/Models/Shop/Section.php b/app/Models/Shop/Section.php
index 69a5607f..df05fd37 100644
--- a/app/Models/Shop/Section.php
+++ b/app/Models/Shop/Section.php
@@ -4,12 +4,17 @@ namespace App\Models\Shop;
use Illuminate\Database\Eloquent\Model;
-use Rinvex\Categories\Traits\Categorizable,
+use Rinvex\Categories\Traits\Categorizable;
class Section extends Model
{
- use Categorizable;
protected $guarded = ['id'];
+ protected $table = 'shop_sections';
+
+ public function Category()
+ {
+ return $this->hasMany('App\Models\Category');
+ }
public function Products()
{
diff --git a/app/Repositories/Shop/Families.php b/app/Repositories/Botanic/Families.php
similarity index 94%
rename from app/Repositories/Shop/Families.php
rename to app/Repositories/Botanic/Families.php
index cd1dfa80..04c462d4 100644
--- a/app/Repositories/Shop/Families.php
+++ b/app/Repositories/Botanic/Families.php
@@ -1,6 +1,6 @@
make(true);
}
public static function getAll()
{
- return Product::orderBy('name','asc')->get();
+ return Article::orderBy('name','asc')->get();
}
public static function get($id)
{
- return Product::find($id);
+ return Article::find($id);
}
public static function store($data)
@@ -38,17 +38,17 @@ class Products
public static function create($data)
{
- return Product::create($data);
+ return Article::create($data);
}
public static function update($data)
{
- return Product::find($id)->update($data);
+ return Article::find($id)->update($data);
}
public static function destroy($id)
{
- return Product::destroy($id);
+ return Article::destroy($id);
}
}
diff --git a/app/Repositories/Shop/Categories.php b/app/Repositories/Shop/Categories.php
new file mode 100644
index 00000000..697917a9
--- /dev/null
+++ b/app/Repositories/Shop/Categories.php
@@ -0,0 +1,56 @@
+make(true);
+ }
+
+ public static function getAll()
+ {
+ return Categorie::orderBy('name','asc')->get();
+ }
+
+ public static function get($id)
+ {
+ return Categorie::find($id);
+ }
+
+ public static function store($data)
+ {
+ $id = isset($data['id']) ? $data['id'] : false;
+ $item = $id ? self::update($data) : self::create($data);
+ return $item->id;
+ }
+
+ public static function create($data)
+ {
+ app('rinvex.categories.category')->create(['name' => $data['name']]);
+ return Categorie::create($data);
+ }
+
+ public static function update($data)
+ {
+ app('rinvex.categories.category')->update(['name' => $data['name']]);
+ return Categorie::find($id)->update($data);
+ }
+
+ public static function destroy($id)
+ {
+ return Categorie::destroy($id);
+ }
+
+}
diff --git a/build/Admin/Auth/permissions.js b/build/Admin/Auth/permissions.js
new file mode 100644
index 00000000..04e3b879
--- /dev/null
+++ b/build/Admin/Auth/permissions.js
@@ -0,0 +1,44 @@
+var elements = {
+ handle: "permissions",
+ model: "permission",
+ route: "Stack.Admin.Permission",
+ route_api: "Stack.Admin.API.Permission",
+ table_selector: "#permissions_datatable",
+ exist: "the_permission_already_exists",
+ added: "permission_has_been_added",
+ modified: "permission_has_been_modified",
+ deleted: "permission_has_been_deleted"
+};
+
+var columnsdef = [
+];
+
+var columns = [
+ {
+ data: "display_name",
+ render: function (data) {
+ return data;
+ }
+ },
+ {
+ data: "id",
+ render: function ( data, type, row ) {
+ var name = eval('client_translate.getText.' + row.translated);
+ return '
'+
+ ' '+
+ ' '+
+ ' '+
+ '
';
+ }
+ }
+];
+console.log(columnsdef);
+var permissions = handleAdmin;
+
+$(document).ready(function() {
+ permissions.selectAll();
+ $(elements.table_selector).on('draw.dt', function () {
+ handleTable();
+ } );
+} );
+
diff --git a/build/Admin/Auth/roles.js b/build/Admin/Auth/roles.js
new file mode 100644
index 00000000..9ac6535b
--- /dev/null
+++ b/build/Admin/Auth/roles.js
@@ -0,0 +1,50 @@
+var elements = {
+ handle: "roles",
+ model: "role",
+ route: "Stack.Admin.Role",
+ route_api: "Stack.Admin.API.Role",
+ table_selector: "#roles_datatable",
+ exist: "the_role_already_exists",
+ added: "role_has_been_added",
+ modified: "role_has_been_modified",
+ deleted: "role_has_been_deleted"
+};
+
+var columnsdef = [
+];
+
+
+var columns = [
+ {
+ "data": "translated",
+ "render": function ( data, type, full, meta ) {
+ if (data)
+ {
+ return admin_content.get_translated_names(data);
+ } else {
+ return data;
+ }
+ }
+ },
+ {
+ data: "id",
+ render: function ( data, type, row, meta ) {
+ var name = eval('client_translate.getText.' + row.translated);
+ return ''+
+ ' '+
+ ' '+
+ '
';
+ }
+ }
+];
+
+var roles = handleAdmin;
+
+$(document).ready(function() {
+ roles.selectAll();
+ $(elements.table_selector).on('draw.dt', function () {
+ handleTable();
+ initIcheck();
+ } );
+} );
+
diff --git a/build/Admin/Auth/teams.js b/build/Admin/Auth/teams.js
new file mode 100644
index 00000000..69f685d1
--- /dev/null
+++ b/build/Admin/Auth/teams.js
@@ -0,0 +1,51 @@
+var elements = {
+ handle: "teams",
+ model: "team",
+ route: "Stack.Admin.Team",
+ route_api: "Stack.Admin.API.Team",
+ table_selector: "#teams_datatable",
+ exist: "the_team_already_exists",
+ added: "team_has_been_added",
+ modified: "team_has_been_modified",
+ deleted: "team_has_been_deleted"
+};
+
+var columnsdef = [
+];
+
+var columns = [
+ {
+ data: "active",
+ className: 'text-center',
+ "render": function ( data, type, row, meta ) {
+ var checked = data ? "checked" : "";
+ tpl = '
';
+ return tpl;
+ }
+ },
+ {
+ data: "translated",
+ render: function ( data, type, full, meta ) {
+ return admin_content.get_translated_names(data);
+ }
+ },
+ {
+ data: "id",
+ render: function ( data, type, row ) {
+ var name = eval('client_translate.getText.' + row.translated);
+ return ''+
+ ' '+
+ ' '+
+ '
';
+ }
+ }
+];
+
+var teams = handleAdmin;
+
+$(document).ready(function() {
+ teams.selectAll();
+ $(elements.table_selector).on('draw.dt', function () {
+ handleTable();
+ } );
+} );
diff --git a/build/Admin/Auth/users.js b/build/Admin/Auth/users.js
new file mode 100644
index 00000000..049f0154
--- /dev/null
+++ b/build/Admin/Auth/users.js
@@ -0,0 +1,347 @@
+var elements = {
+ handle: "users",
+ model: "user",
+ route: "Stack.Admin.User",
+ route_api: "Stack.Admin.API.User",
+ table_selector: "#users_datatable",
+ exist: "the_user_type_already_exists",
+ added: "user_has_been_added",
+ modified: "user_has_been_modified",
+ deleted: "user_has_been_deleted"
+};
+
+var columnsdef = [
+ { orderable: false, targets: [0, 6] },
+ { responsivePriority: 1, targets: [0, 1, 6] }
+];
+
+var columns = [
+ {
+ data: "active",
+ searchable: false,
+ className: 'text-center',
+ render: function ( data, type, row, meta ) {
+ var checked = data ? "checked" : "";
+ tpl = '
';
+ return tpl;
+ }
+ },
+ {
+ data: "name",
+ render: function ( data, type, row, meta ) {
+ return ' ' + data;
+ }
+ },
+ { data: "username" },
+ { data: "email" },
+ { data: "phone" },
+ {
+ data: "roles",
+ searchable: false,
+ render: function ( data, type, row, meta ) {
+ if (data) {
+ tpl = '';
+ for (var k in data){
+ if (data.hasOwnProperty(k)) {
+ tpl += data[k]['name'] + ' ';
+ }
+ }
+ return tpl;
+ } else {
+ return '';
+ }
+ }
+ },
+ {
+ data: "id",
+ render: function ( data, type, row ) {
+ var name = row.name;
+ tpl = '';
+ tpl += ' ';
+ if (hasPermission('users_client')) {
+ tpl += ' ';
+ }
+ if (hasPermission('users_update')) {
+ tpl += ' ';
+ }
+ if (hasPermission('users_delete')) {
+ tpl += ' ';
+ }
+ tpl += '
';
+ return tpl;
+ }
+ }
+];
+
+var users = handleAdmin;
+
+var users_addon = {
+ avatar: null,
+ upload_avatar: false,
+ upload_input: null,
+ passwordButtonsClick: function() {
+ $('.password-btn').off('click').on('click', function() {
+ var id = $(this).parent().data('id');
+ var name = $(this).parent().data('name');
+ users.passwordUser(id, name);
+ });
+ },
+ avatarButtonsClick: function() {
+ $('#users_datatable .avatar-user-btn').off('click').on('click', function() {
+ var id = $(this).parent().data('id');
+ var name = $(this).parent().data('name');
+ users.avatarUser(id, name);
+ });
+ },
+ generatePassword: function(elt) {
+ $.ajax({
+ type: "POST",
+ dataType: "json",
+ url: laroute.route("Stack.Admin.API.User.generateUserPassword"),
+ success: function(response) {
+ elt.val(response.pwd);
+ },
+ error: function() {
+ admin_content.alertError();
+ }
+ });
+ },
+ initAvatarUploader: function() {
+ users.upload_input = $("#avatar_file").filer({
+ showThumbs: true,
+ addMore: true,
+ allowDuplicates: false,
+ limit: 1,
+ maxSize: 5,
+ extensions: [ 'jpg' ],
+ uploadFile: {
+ url: laroute.route("Stack.Admin.API.User.uploadAvatar"),
+ data: { "extension": 'jpg' },
+ type: 'POST',
+ enctype: 'multipart/form-data',
+ synchron: true,
+ success: function(data, itemEl, listEl, boxEl, newInputEl, inputEl, id){
+ var parent = itemEl.find(".jFiler-jProgressBar").parent(),
+ new_file_name = JSON.parse(data),
+ filerKit = inputEl.prop("jFiler");
+
+ filerKit.files_list[id].name = new_file_name;
+
+ itemEl.find(".jFiler-jProgressBar").fadeOut("slow", function(){
+ $(" Success
").hide().appendTo(parent).fadeIn("slow");
+ });
+
+ $("#avatar_file_hidden").val(new_file_name);
+ },
+ error: function(el){
+ var parent = el.find(".jFiler-jProgressBar").parent();
+ el.find(".jFiler-jProgressBar").fadeOut("slow", function(){
+ $(" Error
").hide().appendTo(parent).fadeIn("slow");
+ });
+ },
+ statusCode: null,
+ onProgress: null,
+ onComplete: null
+ },
+ files: null,
+ clipBoardPaste: true,
+ excludeName: null,
+ beforeRender: null,
+ afterRender: null,
+ beforeShow: null,
+ beforeSelect: null,
+ onSelect: null,
+ afterShow: null,
+ onRemove: function(itemEl, file, id, listEl, boxEl, newInputEl, inputEl){
+ var filerKit = inputEl.prop("jFiler"),
+ file_name = filerKit.files_list[id].name;
+
+ $.post(laroute.route('Stack.Admin.API.User.removeAvatar'), {file: file_name});
+ },
+ onEmpty: null,
+ options: null,
+ dialogs: {
+ alert: function(text) {
+ $.alert({
+ title: translate.getText.informations,
+ type: 'red',
+ content: text,
+ });
+ },
+ confirm: function (text, callback) {
+ $.confirm({
+ title: translate.getText.informations,
+ type: 'red',
+ content: text,
+ buttons: {
+ confirm: {
+ text: translate.getText.confirm,
+ btnClass: 'btn-danger',
+ action: function(){
+ callback()
+ }
+ },
+ cancel: {
+ text: translate.getText.cancel
+ }
+ }
+ });
+ }
+ },
+ captions: {
+ button: translate.getText.choose_file,
+ feedback: "",
+ feedback2: translate.getText.selected_files,
+ removeConfirmation: translate.getText.are_you_sure_you_want_to_remove_this_file,
+ errors: {
+ filesLimit: translate.getText.file_number_authorized + ": {{fi-limit}}",
+ filesType: translate.getText.file_extension_authorized + ": .{{fi-extensions}}",
+ filesSize: translate.getText.file_max_size_authorized + ": {{fi-maxSize}} MB."
+ }
+ }
+ });
+ },
+ avatarUser: function(id, name) {
+ $.confirm({
+ title: translate.getText.avatar,
+ columnClass: 'small',
+ content: function () {
+ var self = this;
+ return $.ajax({
+ type: "POST",
+ dataType: "json",
+ url: laroute.route("Stack.Admin.API.User.getAvatar"),
+ data: { 'id': id },
+ }).done(function (response) {
+
+ if (response.error == -1) {
+ header.logout();
+ } else if (response.avatar == "") {
+ self.setContent(''+name+'
');
+ users.upload_avatar = true;
+ } else {
+ self.setContent(''+name+'
'+translate.getText.delete+' ');
+ users.upload_avatar = false;
+ }
+
+ }).fail(function(){
+ self.setContent(translate.getText.an_error_occured);
+ });
+ },
+ typeAnimated: true,
+ onContentReady: function() {
+ $("#delete_avatar").off('click').on('click', function(){
+ $("#avatar_upload").html(' ');
+ users.upload_avatar = true;
+ users.initAvatarUploader();
+ });
+
+ if (users.upload_avatar) {
+ users.initAvatarUploader();
+ }
+ },
+ type: 'blue',
+ buttons: {
+ confirm: {
+ text: translate.getText.validate,
+ btnClass: 'btn-blue',
+ action: function(){
+ if($('#novation_select').val() == '') {
+ admin_content.alertCustomError('please_select_third_party');
+ } else {
+ var datas = {};
+ datas['ujcaid'] = id;
+ datas["ujcafile"] = $('#avatar_file_hidden').val();
+
+ $.ajax({
+ type: "POST",
+ dataType: "json",
+ url: laroute.route("Stack.Admin.API.User.updateAvatar"),
+ data: datas,
+ success: function(response) {
+ if (response.error == -1) {
+ header.logout();
+ } else if(response.error == -6) {
+ admin_content.alertNotFound();
+ }
+ },
+ error: function() {
+ admin_content.alertError();
+ }
+ });
+ }
+ }
+ },
+ cancel: {
+ text: translate.getText.cancel
+ }
+ }
+ });
+ },
+ passwordUser: function(id, name) {
+
+ $.confirm({
+ title: translate.getText.change_password,
+ columnClass: 'small',
+ content: '',
+ typeAnimated: true,
+ type: 'dark',
+ animation: 'RotateXR',
+ onContentReady: function() {
+ $("#user_password_regenerate").off('click').on('click', function(){
+ event.preventDefault();
+ users.generatePassword($("#update_password"));
+ });
+ },
+ buttons: {
+ confirm: {
+ text: translate.getText.confirm,
+ btnClass: 'btn-dark',
+ action: function() {
+ if ($("#update_password").val() == "") {
+ return false;
+ } else {
+ var datas = {};
+ datas['id'] = id;
+ datas['password'] = $("#update_password").val();
+
+ $.ajax({
+ type: "POST",
+ dataType: "json",
+ url: laroute.route("Stack.Admin.API.User.updatePassword"),
+ data: datas,
+ success: function(response) {
+ if (response.error == -1) {
+ header.logout();
+ } else if(response.error == -6) {
+ admin_content.alertNotFound();
+ } else if(response.error == -7) {
+ admin_content.alertCustomError('the_password_must_have_at_least_six_characters');
+ }
+ },
+ error: function() {
+ admin_content.alertError();
+ }
+ });
+ }
+ }
+ },
+ cancel: {
+ text: translate.getText.cancel
+ }
+ }
+ });
+ },
+};
+
+users = {...users, ...users_addon };
+
+$(document).ready(function() {
+ users.selectAll();
+ $(elements.table_selector).on('draw.dt', function () {
+ handleTable();
+ initIcheck();
+ users.passwordButtonsClick();
+ users.avatarButtonsClick();
+ } );
+} );
diff --git a/build/Shop/admin/customer.js b/build/Shop/admin/customer.js
new file mode 100644
index 00000000..101139b6
--- /dev/null
+++ b/build/Shop/admin/customer.js
@@ -0,0 +1,105 @@
+var columns = [
+ {
+ data: "type_contact_statut_id",
+ render: function (data, type, row) {
+ if (row.type_contact_statut_id) {
+ tpl = row.type_contact_statut.nom;
+ } else {
+ tpl = '';
+ }
+ return tpl;
+ }
+ },
+ {
+ data: "name",
+ },
+ {
+ data: "firstname",
+ },
+ {
+ data: "mobile",
+ render: function (data, type, row) {
+ tpl = '';
+ if (row.mobile) {
+ tpl += 'Mobile : ' + row.mobile + ' ';
+ }
+ if (row.tel_perso) {
+ tpl += 'Domicile : ' + row.phone + ' ';
+ }
+ if (row.tel_pro) {
+ tpl += 'Pro : ' + row.phone_pro;
+ }
+ return tpl;
+ }
+ },
+ {
+ data: "email",
+ render: function (data) {
+ return data;
+ }
+ },
+ {
+ data: "zipcode",
+ render: function (data, type, row) {
+ return data;
+ }
+ },
+ {
+ data: "city",
+ render: function (data) {
+ return data;
+ }
+ },
+ {
+ data: "id",
+ orderable: false,
+ render: function (data, type, row) {
+ tpl = " ";
+ tpl += " ";
+ return tpl;
+ }
+ },
+];
+
+var model = "contact";
+var route = "Contacts";
+
+var options = {
+ // order: [[ 2, 'asc' ]],
+ fixedColumns: { leftColumns: 1, rightColumns: 1 },
+ // fixedColumns: false,
+ // columnDefs: columnDefs,
+ columns: columns,
+}
+
+var globals = [];
+globals['handlers'] = [];
+
+
+function populate() {
+
+}
+
+
+$(document).ready(function() {
+
+ var Table = getDataTables(options,route,model);
+
+ $(".search-input-text").off().on("change keyup", function(e) {
+ Table.column( $(this).parent().index()+':visible' ).search( this.value ).draw();
+ })
+
+
+ $.ajaxSetup({
+ headers: {
+ 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
+ }
+ });
+
+ tpl = ' Création d\'un contact ';
+ $('div.col-md-4.add').html(tpl);
+
+
+ initModalAdmin(route,model,Table.ajax.reload,populate,Table);
+
+});
\ No newline at end of file
diff --git a/build/css/shadow.css b/build/css/shadow.css
new file mode 100644
index 00000000..45835441
--- /dev/null
+++ b/build/css/shadow.css
@@ -0,0 +1,187 @@
+
+.drop-shadow {
+ position:relative;
+ float:left;
+ width:100%;
+ background:#fff;
+ -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
+ -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
+ box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
+}
+
+.drop-shadow:before,
+.drop-shadow:after {
+ content:"";
+ position:absolute;
+ z-index:-2;
+}
+
+/* Lifted corners */
+
+.lifted {
+ -moz-border-radius:4px;
+ border-radius:4px;
+}
+
+.lifted:before,
+.lifted:after {
+ bottom:15px;
+ left:10px;
+ width:50%;
+ height:20%;
+ max-width:300px;
+ max-height:100px;
+ -webkit-box-shadow:0 15px 10px rgba(0, 0, 0, 0.7);
+ -moz-box-shadow:0 15px 10px rgba(0, 0, 0, 0.7);
+ box-shadow:0 15px 10px rgba(0, 0, 0, 0.7);
+ -webkit-transform:rotate(-3deg);
+ -moz-transform:rotate(-3deg);
+ -ms-transform:rotate(-3deg);
+ -o-transform:rotate(-3deg);
+ transform:rotate(-3deg);
+}
+
+.lifted:after {
+ right:10px;
+ left:auto;
+ -webkit-transform:rotate(3deg);
+ -moz-transform:rotate(3deg);
+ -ms-transform:rotate(3deg);
+ -o-transform:rotate(3deg);
+ transform:rotate(3deg);
+}
+
+/* Curled corners */
+
+.curled {
+ border:1px solid #efefef;
+ -moz-border-radius:0 0 120px 120px / 0 0 6px 6px;
+ border-radius:0 0 120px 120px / 0 0 6px 6px;
+}
+
+.curled:before,
+.curled:after {
+ bottom:12px;
+ left:10px;
+ width:50%;
+ height:55%;
+ max-width:200px;
+ max-height:100px;
+ -webkit-box-shadow:0 8px 12px rgba(0, 0, 0, 0.5);
+ -moz-box-shadow:0 8px 12px rgba(0, 0, 0, 0.5);
+ box-shadow:0 8px 12px rgba(0, 0, 0, 0.5);
+ -webkit-transform:skew(-8deg) rotate(-3deg);
+ -moz-transform:skew(-8deg) rotate(-3deg);
+ -ms-transform:skew(-8deg) rotate(-3deg);
+ -o-transform:skew(-8deg) rotate(-3deg);
+ transform:skew(-8deg) rotate(-3deg);
+}
+
+.curled:after {
+ right:10px;
+ left:auto;
+ -webkit-transform:skew(8deg) rotate(3deg);
+ -moz-transform:skew(8deg) rotate(3deg);
+ -ms-transform:skew(8deg) rotate(3deg);
+ -o-transform:skew(8deg) rotate(3deg);
+ transform:skew(8deg) rotate(3deg);
+}
+
+/* Perspective */
+
+.perspective:before {
+ left:80px;
+ bottom:5px;
+ width:50%;
+ height:35%;
+ max-width:200px;
+ max-height:50px;
+ -webkit-box-shadow:-80px 0 8px rgba(0, 0, 0, 0.4);
+ -moz-box-shadow:-80px 0 8px rgba(0, 0, 0, 0.4);
+ box-shadow:-80px 0 8px rgba(0, 0, 0, 0.4);
+ -webkit-transform:skew(50deg);
+ -moz-transform:skew(50deg);
+ -ms-transform:skew(50deg);
+ -o-transform:skew(50deg);
+ transform:skew(50deg);
+ -webkit-transform-origin:0 100%;
+ -moz-transform-origin:0 100%;
+ -ms-transform-origin:0 100%;
+ -o-transform-origin:0 100%;
+ transform-origin:0 100%;
+}
+
+.perspective:after {
+ display:none;
+}
+
+/* Raised shadow - no pseudo-elements needed */
+
+.raised {
+ -webkit-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
+ -moz-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
+ box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
+}
+
+/* Curved shadows */
+
+.curved:before {
+ top:10px;
+ bottom:10px;
+ left:0;
+ right:50%;
+ -webkit-box-shadow:0 0 15px rgba(0,0,0,0.6);
+ -moz-box-shadow:0 0 15px rgba(0,0,0,0.6);
+ box-shadow:0 0 15px rgba(0,0,0,0.6);
+ -moz-border-radius:10px / 100px;
+ border-radius:10px / 100px;
+}
+
+.curved-vt-2:before {
+ right:0;
+}
+
+.curved-hz-1:before {
+ top:50%;
+ bottom:0;
+ left:10px;
+ right:10px;
+ -moz-border-radius:100px / 10px;
+ border-radius:100px / 10px;
+}
+
+.curved-hz-2:before {
+ top:0;
+ bottom:0;
+ left:10px;
+ right:10px;
+ -moz-border-radius:100px / 10px;
+ border-radius:100px / 10px;
+}
+
+/* Rotated box */
+
+.rotated {
+ -webkit-box-shadow:none;
+ -moz-box-shadow:none;
+ box-shadow:none;
+ -webkit-transform:rotate(-3deg);
+ -moz-transform:rotate(-3deg);
+ -ms-transform:rotate(-3deg);
+ -o-transform:rotate(-3deg);
+ transform:rotate(-3deg);
+}
+
+.rotated > :first-child:before {
+ content:"";
+ position:absolute;
+ z-index:-1;
+ top:0;
+ bottom:0;
+ left:0;
+ right:0;
+ background:#fff;
+ -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
+ -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
+ box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
+}
\ No newline at end of file
diff --git a/build/css/theme.css b/build/css/theme.css
new file mode 100644
index 00000000..7d000a46
--- /dev/null
+++ b/build/css/theme.css
@@ -0,0 +1,19 @@
+@import url(https://fonts.googleapis.com/css?family=Montserrat:400,600,700);@import url(https://fonts.googleapis.com/css?family=Lobster);@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css);.bootstrap-touchspin .input-group-btn-vertical{position:relative;white-space:nowrap;width:1%;vertical-align:middle;display:table-cell}.bootstrap-touchspin .input-group-btn-vertical>.btn{display:block;float:none;width:100%;max-width:100%;padding:8px 10px;margin-left:-1px;position:relative}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up{border-radius:0;border-top-right-radius:4px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{margin-top:-2px;border-radius:0;border-bottom-right-radius:4px}.bootstrap-touchspin .input-group-btn-vertical i{position:absolute;top:3px;left:5px;font-size:9px;font-weight:400}.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%;-webkit-transform-style:preserve-3d}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAYAAACOEfKtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjU1RTM0MEU5QzBCMDExRTM4MURCQTkwQzkyRUYxMzEzIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjU1RTM0MEVBQzBCMDExRTM4MURCQTkwQzkyRUYxMzEzIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NTVFMzQwRTdDMEIwMTFFMzgxREJBOTBDOTJFRjEzMTMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NTVFMzQwRThDMEIwMTFFMzgxREJBOTBDOTJFRjEzMTMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6n647gAAAP5klEQVR42uxcCVRU1xl+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) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:-webkit-transform .1s ease;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-webkit-transform:scale(1.3,1.3);-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}@charset "UTF-8";
+/*!
+ * Bootstrap v4.0.0-alpha.4 (http://getbootstrap.com)
+ * Copyright 2011-2016 The Bootstrap Authors
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+/*! normalize.css v4.0.0 | MIT License | github.com/necolas/normalize.css */
+html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}progress{vertical-align:baseline}template,[hidden]{display:none}a{background-color:transparent}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}button,input,select,textarea{font:inherit}optgroup{font-weight:700}button,input,select{overflow:visible}button,input,select,textarea{margin:0}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{cursor:pointer}[disabled]{cursor:default}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button:-moz-focusring,input:-moz-focusring{outline:1px dotted ButtonText}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}@media print{*,*::before,*::after,*::first-letter,*::first-line{text-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.tag{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}@-ms-viewport{width:device-width}html{font-size:16px;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-size:1rem;line-height:1.5;color:#7a7a7a;background-color:#fff}[tabindex="-1"]:focus{outline:none!important}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #f1f1f1}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}a{color:#000;text-decoration:none}a:focus,a:hover{color:#000;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:none}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle}[role="button"]{cursor:pointer}a,area,button,[role="button"],input,label,select,summary,textarea{touch-action:manipulation}table{border-collapse:collapse;background-color:transparent}caption{padding-top:.75rem;padding-bottom:.75rem;color:#acaaa6;text-align:left;caption-side:bottom}th{text-align:left}label{display:inline-block;margin-bottom:.5rem}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}input,button,select,textarea{margin:0;line-height:inherit;border-radius:0}input[type="radio"]:disabled,input[type="checkbox"]:disabled{cursor:not-allowed}input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{-webkit-appearance:listbox}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit}input[type="search"]{-webkit-appearance:none}output{display:inline-block}[hidden]{display:none!important}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{margin-bottom:.5rem;font-family:inherit;font-weight:700;line-height:1.1;color:inherit}h1,.h1{font-size:1.375rem}h2,.h2{font-size:1.25rem}h3,.h3{font-size:1.125rem}h4,.h4{font-size:1.125rem}h5,.h5{font-size:1rem}h6,.h6{font-size:.9375rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:3.125rem;font-weight:600}.display-2{font-size:2.188rem;font-weight:400}.display-3{font-size:1.563rem;font-weight:400}.display-4{font-size:1.25rem;font-weight:400}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}small,.small{font-size:80%;font-weight:400}mark,.mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:5px}.initialism{font-size:90%;text-transform:uppercase}.blockquote{padding:.5rem 1rem;margin-bottom:1rem;font-size:1.25rem;border-left:.25rem solid #f6f6f6}.blockquote-footer{display:block;font-size:80%;color:#f1f1f1}.blockquote-footer::before{content:"\2014 \A0"}.blockquote-reverse{padding-right:1rem;padding-left:0;text-align:right;border-right:.25rem solid #f6f6f6;border-left:0}.blockquote-reverse .blockquote-footer::before{content:""}.blockquote-reverse .blockquote-footer::after{content:"\A0 \2014"}dl.row>dd+dt{clear:left}.img-fluid,.carousel-inner>.carousel-item>img,.carousel-inner>.carousel-item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:.3rem}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #ddd;border-radius:0;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#f1f1f1}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}code{padding:.2rem .4rem;font-size:90%;color:#bd4147;background-color:#f7f7f9;border-radius:0}kbd{padding:.2rem .4rem;font-size:90%;color:#fff;background-color:#333;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;margin-top:0;margin-bottom:1rem;font-size:90%;color:#7a7a7a}pre code{padding:0;font-size:inherit;color:inherit;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}.container::after{content:"";display:table;clear:both}@media (min-width:544px){.container{max-width:576px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:940px}}@media (min-width:1200px){.container{max-width:1200px}}.container-fluid{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}.container-fluid::after{content:"";display:table;clear:both}.row{margin-left:-15px;margin-right:-15px}.row::after{content:"";display:table;clear:both}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1{float:left;width:8.33333%}.col-xs-2{float:left;width:16.66667%}.col-xs-3{float:left;width:25%}.col-xs-4{float:left;width:33.33333%}.col-xs-5{float:left;width:41.66667%}.col-xs-6{float:left;width:50%}.col-xs-7{float:left;width:58.33333%}.col-xs-8{float:left;width:66.66667%}.col-xs-9{float:left;width:75%}.col-xs-10{float:left;width:83.33333%}.col-xs-11{float:left;width:91.66667%}.col-xs-12{float:left;width:100%}.pull-xs-0{right:auto}.pull-xs-1{right:8.33333%}.pull-xs-2{right:16.66667%}.pull-xs-3{right:25%}.pull-xs-4{right:33.33333%}.pull-xs-5{right:41.66667%}.pull-xs-6{right:50%}.pull-xs-7{right:58.33333%}.pull-xs-8{right:66.66667%}.pull-xs-9{right:75%}.pull-xs-10{right:83.33333%}.pull-xs-11{right:91.66667%}.pull-xs-12{right:100%}.push-xs-0{left:auto}.push-xs-1{left:8.33333%}.push-xs-2{left:16.66667%}.push-xs-3{left:25%}.push-xs-4{left:33.33333%}.push-xs-5{left:41.66667%}.push-xs-6{left:50%}.push-xs-7{left:58.33333%}.push-xs-8{left:66.66667%}.push-xs-9{left:75%}.push-xs-10{left:83.33333%}.push-xs-11{left:91.66667%}.push-xs-12{left:100%}.offset-xs-1{margin-left:8.33333%}.offset-xs-2{margin-left:16.66667%}.offset-xs-3{margin-left:25%}.offset-xs-4{margin-left:33.33333%}.offset-xs-5{margin-left:41.66667%}.offset-xs-6{margin-left:50%}.offset-xs-7{margin-left:58.33333%}.offset-xs-8{margin-left:66.66667%}.offset-xs-9{margin-left:75%}.offset-xs-10{margin-left:83.33333%}.offset-xs-11{margin-left:91.66667%}@media (min-width:544px){.col-sm-1{float:left;width:8.33333%}.col-sm-2{float:left;width:16.66667%}.col-sm-3{float:left;width:25%}.col-sm-4{float:left;width:33.33333%}.col-sm-5{float:left;width:41.66667%}.col-sm-6{float:left;width:50%}.col-sm-7{float:left;width:58.33333%}.col-sm-8{float:left;width:66.66667%}.col-sm-9{float:left;width:75%}.col-sm-10{float:left;width:83.33333%}.col-sm-11{float:left;width:91.66667%}.col-sm-12{float:left;width:100%}.pull-sm-0{right:auto}.pull-sm-1{right:8.33333%}.pull-sm-2{right:16.66667%}.pull-sm-3{right:25%}.pull-sm-4{right:33.33333%}.pull-sm-5{right:41.66667%}.pull-sm-6{right:50%}.pull-sm-7{right:58.33333%}.pull-sm-8{right:66.66667%}.pull-sm-9{right:75%}.pull-sm-10{right:83.33333%}.pull-sm-11{right:91.66667%}.pull-sm-12{right:100%}.push-sm-0{left:auto}.push-sm-1{left:8.33333%}.push-sm-2{left:16.66667%}.push-sm-3{left:25%}.push-sm-4{left:33.33333%}.push-sm-5{left:41.66667%}.push-sm-6{left:50%}.push-sm-7{left:58.33333%}.push-sm-8{left:66.66667%}.push-sm-9{left:75%}.push-sm-10{left:83.33333%}.push-sm-11{left:91.66667%}.push-sm-12{left: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%}}@media (min-width:768px){.col-md-1{float:left;width:8.33333%}.col-md-2{float:left;width:16.66667%}.col-md-3{float:left;width:25%}.col-md-4{float:left;width:33.33333%}.col-md-5{float:left;width:41.66667%}.col-md-6{float:left;width:50%}.col-md-7{float:left;width:58.33333%}.col-md-8{float:left;width:66.66667%}.col-md-9{float:left;width:75%}.col-md-10{float:left;width:83.33333%}.col-md-11{float:left;width:91.66667%}.col-md-12{float:left;width:100%}.pull-md-0{right:auto}.pull-md-1{right:8.33333%}.pull-md-2{right:16.66667%}.pull-md-3{right:25%}.pull-md-4{right:33.33333%}.pull-md-5{right:41.66667%}.pull-md-6{right:50%}.pull-md-7{right:58.33333%}.pull-md-8{right:66.66667%}.pull-md-9{right:75%}.pull-md-10{right:83.33333%}.pull-md-11{right:91.66667%}.pull-md-12{right:100%}.push-md-0{left:auto}.push-md-1{left:8.33333%}.push-md-2{left:16.66667%}.push-md-3{left:25%}.push-md-4{left:33.33333%}.push-md-5{left:41.66667%}.push-md-6{left:50%}.push-md-7{left:58.33333%}.push-md-8{left:66.66667%}.push-md-9{left:75%}.push-md-10{left:83.33333%}.push-md-11{left:91.66667%}.push-md-12{left: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%}}@media (min-width:992px){.col-lg-1{float:left;width:8.33333%}.col-lg-2{float:left;width:16.66667%}.col-lg-3{float:left;width:25%}.col-lg-4{float:left;width:33.33333%}.col-lg-5{float:left;width:41.66667%}.col-lg-6{float:left;width:50%}.col-lg-7{float:left;width:58.33333%}.col-lg-8{float:left;width:66.66667%}.col-lg-9{float:left;width:75%}.col-lg-10{float:left;width:83.33333%}.col-lg-11{float:left;width:91.66667%}.col-lg-12{float:left;width:100%}.pull-lg-0{right:auto}.pull-lg-1{right:8.33333%}.pull-lg-2{right:16.66667%}.pull-lg-3{right:25%}.pull-lg-4{right:33.33333%}.pull-lg-5{right:41.66667%}.pull-lg-6{right:50%}.pull-lg-7{right:58.33333%}.pull-lg-8{right:66.66667%}.pull-lg-9{right:75%}.pull-lg-10{right:83.33333%}.pull-lg-11{right:91.66667%}.pull-lg-12{right:100%}.push-lg-0{left:auto}.push-lg-1{left:8.33333%}.push-lg-2{left:16.66667%}.push-lg-3{left:25%}.push-lg-4{left:33.33333%}.push-lg-5{left:41.66667%}.push-lg-6{left:50%}.push-lg-7{left:58.33333%}.push-lg-8{left:66.66667%}.push-lg-9{left:75%}.push-lg-10{left:83.33333%}.push-lg-11{left:91.66667%}.push-lg-12{left: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%}}@media (min-width:1200px){.col-xl-1{float:left;width:8.33333%}.col-xl-2{float:left;width:16.66667%}.col-xl-3{float:left;width:25%}.col-xl-4{float:left;width:33.33333%}.col-xl-5{float:left;width:41.66667%}.col-xl-6{float:left;width:50%}.col-xl-7{float:left;width:58.33333%}.col-xl-8{float:left;width:66.66667%}.col-xl-9{float:left;width:75%}.col-xl-10{float:left;width:83.33333%}.col-xl-11{float:left;width:91.66667%}.col-xl-12{float:left;width:100%}.pull-xl-0{right:auto}.pull-xl-1{right:8.33333%}.pull-xl-2{right:16.66667%}.pull-xl-3{right:25%}.pull-xl-4{right:33.33333%}.pull-xl-5{right:41.66667%}.pull-xl-6{right:50%}.pull-xl-7{right:58.33333%}.pull-xl-8{right:66.66667%}.pull-xl-9{right:75%}.pull-xl-10{right:83.33333%}.pull-xl-11{right:91.66667%}.pull-xl-12{right:100%}.push-xl-0{left:auto}.push-xl-1{left:8.33333%}.push-xl-2{left:16.66667%}.push-xl-3{left:25%}.push-xl-4{left:33.33333%}.push-xl-5{left:41.66667%}.push-xl-6{left:50%}.push-xl-7{left:58.33333%}.push-xl-8{left:66.66667%}.push-xl-9{left:75%}.push-xl-10{left:83.33333%}.push-xl-11{left:91.66667%}.push-xl-12{left: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%}}.table{width:100%;max-width:100%;margin-bottom:1rem}.table th,.table td{padding:.75rem;vertical-align:top;border-top:1px solid #f6f6f6}.table thead th{vertical-align:bottom;border-bottom:2px solid #f6f6f6}.table tbody+tbody{border-top:2px solid #f6f6f6}.table .table{background-color:#fff}.table-sm th,.table-sm td{padding:.3rem}.table-bordered{border:1px solid #f6f6f6}.table-bordered th,.table-bordered td{border:1px solid #f6f6f6}.table-bordered thead th,.table-bordered thead td{border-bottom-width:2px}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table-success,.table-success>th,.table-success>td{background-color:#dff0d8}.table-hover .table-success:hover{background-color:#d0e9c6}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#d0e9c6}.table-info,.table-info>th,.table-info>td{background-color:#d9edf7}.table-hover .table-info:hover{background-color:#c4e3f3}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#c4e3f3}.table-warning,.table-warning>th,.table-warning>td{background-color:#fcf8e3}.table-hover .table-warning:hover{background-color:#faf2cc}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#faf2cc}.table-danger,.table-danger>th,.table-danger>td{background-color:#f2dede}.table-hover .table-danger:hover{background-color:#ebcccc}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#ebcccc}.thead-inverse th{color:#fff;background-color:#7a7a7a}.thead-default th{color:#acaaa6;background-color:#f6f6f6}.table-inverse{color:#f6f6f6;background-color:#7a7a7a}.table-inverse th,.table-inverse td,.table-inverse thead th{border-color:#acaaa6}.table-inverse.table-bordered{border:0}.table-responsive{display:block;width:100%;min-height:.01%;overflow-x:auto}.table-reflow thead{float:left}.table-reflow tbody{display:block;white-space:nowrap}.table-reflow th,.table-reflow td{border-top:1px solid #f6f6f6;border-left:1px solid #f6f6f6}.table-reflow th:last-child,.table-reflow td:last-child{border-right:1px solid #f6f6f6}.table-reflow thead:last-child tr:last-child th,.table-reflow thead:last-child tr:last-child td,.table-reflow tbody:last-child tr:last-child th,.table-reflow tbody:last-child tr:last-child td,.table-reflow tfoot:last-child tr:last-child th,.table-reflow tfoot:last-child tr:last-child td{border-bottom:1px solid #f6f6f6}.table-reflow tr{float:left}.table-reflow tr th,.table-reflow tr td{display:block!important;border:1px solid #f6f6f6}.form-control{display:block;width:100%;padding:.5rem .75rem;font-size:1rem;line-height:1.25;color:#acaaa6;background-color:#fff;background-image:none;background-clip:padding-box;border:1px solid rgba(0,0,0,.1);border-radius:0}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#acaaa6;background-color:#fff;border-color:#66afe9;outline:none}.form-control::placeholder{color:#999;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#f6f6f6;opacity:1}.form-control:disabled{cursor:not-allowed}select.form-control:not([size]):not([multiple]){height:2.5rem}select.form-control:focus::-ms-value{color:#acaaa6;background-color:#fff}.form-control-file,.form-control-range{display:block}.col-form-label{padding-top:.5rem;padding-bottom:.5rem;margin-bottom:0}.col-form-label-lg{padding-top:.75rem;padding-bottom:.75rem;font-size:.9375rem}.col-form-label-sm{padding-top:.25rem;padding-bottom:.25rem;font-size:.875rem}.col-form-legend{padding-top:.5rem;padding-bottom:.5rem;margin-bottom:0;font-size:1rem}.form-control-static{min-height:2.5rem;padding-top:.5rem;padding-bottom:.5rem;margin-bottom:0}.form-control-static.form-control-sm,.input-group-sm>.form-control-static.form-control,.input-group-sm>.form-control-static.input-group-addon,.input-group-sm>.input-group-btn>.form-control-static.btn,.form-control-static.form-control-lg,.input-group-lg>.form-control-static.form-control,.input-group-lg>.form-control-static.input-group-addon,.input-group-lg>.input-group-btn>.form-control-static.btn{padding-right:0;padding-left:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}select.form-control-sm:not([size]):not([multiple]),.input-group-sm>select.form-control:not([size]):not([multiple]),.input-group-sm>select.input-group-addon:not([size]):not([multiple]),.input-group-sm>.input-group-btn>select.btn:not([size]):not([multiple]){height:1.8125rem}.form-control-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{padding:.75rem 1.5rem;font-size:.9375rem;border-radius:.3rem}select.form-control-lg:not([size]):not([multiple]),.input-group-lg>select.form-control:not([size]):not([multiple]),.input-group-lg>select.input-group-addon:not([size]):not([multiple]),.input-group-lg>.input-group-btn>select.btn:not([size]):not([multiple]){height:2.75rem}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-check{position:relative;display:block;margin-bottom:.75rem}.form-check+.form-check{margin-top:-.25rem}.form-check.disabled .form-check-label{color:#acaaa6;cursor:not-allowed}.form-check-label{padding-left:1.25rem;margin-bottom:0;cursor:pointer}.form-check-input{position:absolute;margin-top:.25rem;margin-left:-1.25rem}.form-check-input:only-child{position:static}.form-check-inline{position:relative;display:inline-block;padding-left:1.25rem;margin-bottom:0;vertical-align:middle;cursor:pointer}.form-check-inline+.form-check-inline{margin-left:.75rem}.form-check-inline.disabled{cursor:not-allowed}.form-control-feedback{margin-top:.25rem}.form-control-success,.form-control-warning,.form-control-danger{padding-right:2.25rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.has-success .form-control-feedback,.has-success .form-control-label,.has-success .form-check-label,.has-success .form-check-inline,.has-success .custom-control{color:#4cbb6c}.has-success .form-control{border-color:#4cbb6c}.has-success .input-group-addon{color:#4cbb6c;border-color:#4cbb6c;background-color:#e0f3e5}.has-success .form-control-feedback{color:#4cbb6c}.has-success .form-control-success{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E")}.has-warning .form-control-feedback,.has-warning .form-control-label,.has-warning .form-check-label,.has-warning .form-check-inline,.has-warning .custom-control{color:#ff9a52}.has-warning .form-control{border-color:#ff9a52}.has-warning .input-group-addon{color:#ff9a52;border-color:#ff9a52;background-color:#fff}.has-warning .form-control-feedback{color:#ff9a52}.has-warning .form-control-warning{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E")}.has-danger .form-control-feedback,.has-danger .form-control-label,.has-danger .form-check-label,.has-danger .form-check-inline,.has-danger .custom-control{color:#ff4c4c}.has-danger .form-control{border-color:#ff4c4c}.has-danger .input-group-addon{color:#ff4c4c;border-color:#ff4c4c;background-color:#fff}.has-danger .form-control-feedback{color:#ff4c4c}.has-danger .form-control-danger{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E")}@media (min-width:544px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .form-control-label{margin-bottom:0;vertical-align:middle}.form-inline .form-check{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .form-check-label{padding-left:0}.form-inline .form-check-input{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.btn{display:inline-block;font-weight:400;line-height:1.25;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;user-select:none;border:1px solid transparent;padding:.5rem 1rem;font-size:1rem;border-radius:0}.btn:focus,.btn.focus,.btn:active:focus,.btn:active.focus,.btn.active:focus,.btn.active.focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:focus,.btn:hover{text-decoration:none}.btn.focus{text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0}.btn.disabled,.btn:disabled{cursor:not-allowed;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#000;border-color:transparent}.btn-primary:hover{color:#fff;background-color:#000;border-color:transparent}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#000;border-color:transparent}.btn-primary:active,.btn-primary.active,.open>.btn-primary.dropdown-toggle{color:#fff;background-color:#000;border-color:transparent;background-image:none}.btn-primary:active:hover,.btn-primary:active:focus,.btn-primary:active.focus,.btn-primary.active:hover,.btn-primary.active:focus,.btn-primary.active.focus,.open>.btn-primary.dropdown-toggle:hover,.open>.btn-primary.dropdown-toggle:focus,.open>.btn-primary.dropdown-toggle.focus{color:#fff;background-color:#000;border-color:transparent}.btn-primary.disabled:focus,.btn-primary.disabled.focus,.btn-primary:disabled:focus,.btn-primary:disabled.focus{background-color:#000;border-color:transparent}.btn-primary.disabled:hover,.btn-primary:disabled:hover{background-color:#000;border-color:transparent}.btn-secondary,.btn-tertiary{color:#232323;background-color:#f6f6f6;border-color:transparent}.btn-secondary:hover,.btn-tertiary:hover{color:#232323;background-color:#ddd;border-color:transparent}.btn-secondary:focus,.btn-tertiary:focus,.btn-secondary.focus,.focus.btn-tertiary{color:#232323;background-color:#ddd;border-color:transparent}.btn-secondary:active,.btn-tertiary:active,.btn-secondary.active,.active.btn-tertiary,.open>.btn-secondary.dropdown-toggle,.open>.dropdown-toggle.btn-tertiary{color:#232323;background-color:#ddd;border-color:transparent;background-image:none}.btn-secondary:active:hover,.btn-tertiary:active:hover,.btn-secondary:active:focus,.btn-tertiary:active:focus,.btn-secondary:active.focus,.btn-tertiary:active.focus,.btn-secondary.active:hover,.active.btn-tertiary:hover,.btn-secondary.active:focus,.active.btn-tertiary:focus,.btn-secondary.active.focus,.active.focus.btn-tertiary,.open>.btn-secondary.dropdown-toggle:hover,.open>.dropdown-toggle.btn-tertiary:hover,.open>.btn-secondary.dropdown-toggle:focus,.open>.dropdown-toggle.btn-tertiary:focus,.open>.btn-secondary.dropdown-toggle.focus,.open>.dropdown-toggle.focus.btn-tertiary{color:#232323;background-color:#cbcbcb;border-color:transparent}.btn-secondary.disabled:focus,.disabled.btn-tertiary:focus,.btn-secondary.disabled.focus,.disabled.focus.btn-tertiary,.btn-secondary:disabled:focus,.btn-tertiary:disabled:focus,.btn-secondary:disabled.focus,.btn-tertiary:disabled.focus{background-color:#f6f6f6;border-color:transparent}.btn-secondary.disabled:hover,.disabled.btn-tertiary:hover,.btn-secondary:disabled:hover,.btn-tertiary:disabled:hover{background-color:#f6f6f6;border-color:transparent}.btn-info{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#2aabd2}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#2aabd2}.btn-info:active,.btn-info.active,.open>.btn-info.dropdown-toggle{color:#fff;background-color:#31b0d5;border-color:#2aabd2;background-image:none}.btn-info:active:hover,.btn-info:active:focus,.btn-info:active.focus,.btn-info.active:hover,.btn-info.active:focus,.btn-info.active.focus,.open>.btn-info.dropdown-toggle:hover,.open>.btn-info.dropdown-toggle:focus,.open>.btn-info.dropdown-toggle.focus{color:#fff;background-color:#269abc;border-color:#1f7e9a}.btn-info.disabled:focus,.btn-info.disabled.focus,.btn-info:disabled:focus,.btn-info:disabled.focus{background-color:#5bc0de;border-color:#5bc0de}.btn-info.disabled:hover,.btn-info:disabled:hover{background-color:#5bc0de;border-color:#5bc0de}.btn-success{color:#fff;background-color:#4cbb6c;border-color:#4cbb6c}.btn-success:hover{color:#fff;background-color:#3a9a56;border-color:#389252}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#3a9a56;border-color:#389252}.btn-success:active,.btn-success.active,.open>.btn-success.dropdown-toggle{color:#fff;background-color:#3a9a56;border-color:#389252;background-image:none}.btn-success:active:hover,.btn-success:active:focus,.btn-success:active.focus,.btn-success.active:hover,.btn-success.active:focus,.btn-success.active.focus,.open>.btn-success.dropdown-toggle:hover,.open>.btn-success.dropdown-toggle:focus,.open>.btn-success.dropdown-toggle.focus{color:#fff;background-color:#318047;border-color:#256237}.btn-success.disabled:focus,.btn-success.disabled.focus,.btn-success:disabled:focus,.btn-success:disabled.focus{background-color:#4cbb6c;border-color:#4cbb6c}.btn-success.disabled:hover,.btn-success:disabled:hover{background-color:#4cbb6c;border-color:#4cbb6c}.btn-warning{color:#fff;background-color:#FF9A52;border-color:#FF9A52}.btn-warning:hover{color:#fff;background-color:#ff7c1f;border-color:#ff7615}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#ff7c1f;border-color:#ff7615}.btn-warning:active,.btn-warning.active,.open>.btn-warning.dropdown-toggle{color:#fff;background-color:#ff7c1f;border-color:#ff7615;background-image:none}.btn-warning:active:hover,.btn-warning:active:focus,.btn-warning:active.focus,.btn-warning.active:hover,.btn-warning.active:focus,.btn-warning.active.focus,.open>.btn-warning.dropdown-toggle:hover,.open>.btn-warning.dropdown-toggle:focus,.open>.btn-warning.dropdown-toggle.focus{color:#fff;background-color:#fa6800;border-color:#d25700}.btn-warning.disabled:focus,.btn-warning.disabled.focus,.btn-warning:disabled:focus,.btn-warning:disabled.focus{background-color:#FF9A52;border-color:#FF9A52}.btn-warning.disabled:hover,.btn-warning:disabled:hover{background-color:#FF9A52;border-color:#FF9A52}.btn-danger{color:#fff;background-color:#ff4c4c;border-color:#ff4c4c}.btn-danger:hover{color:#fff;background-color:#ff1919;border-color:#ff0f0f}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#ff1919;border-color:#ff0f0f}.btn-danger:active,.btn-danger.active,.open>.btn-danger.dropdown-toggle{color:#fff;background-color:#ff1919;border-color:#ff0f0f;background-image:none}.btn-danger:active:hover,.btn-danger:active:focus,.btn-danger:active.focus,.btn-danger.active:hover,.btn-danger.active:focus,.btn-danger.active.focus,.open>.btn-danger.dropdown-toggle:hover,.open>.btn-danger.dropdown-toggle:focus,.open>.btn-danger.dropdown-toggle.focus{color:#fff;background-color:#f40000;border-color:#c00}.btn-danger.disabled:focus,.btn-danger.disabled.focus,.btn-danger:disabled:focus,.btn-danger:disabled.focus{background-color:#ff4c4c;border-color:#ff4c4c}.btn-danger.disabled:hover,.btn-danger:disabled:hover{background-color:#ff4c4c;border-color:#ff4c4c}.btn-outline-primary{color:#000;background-image:none;background-color:transparent;border-color:#000}.btn-outline-primary:hover{color:#fff;background-color:#000;border-color:#000}.btn-outline-primary:focus,.btn-outline-primary.focus{color:#fff;background-color:#000;border-color:#000}.btn-outline-primary:active,.btn-outline-primary.active,.open>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#000;border-color:#000}.btn-outline-primary:active:hover,.btn-outline-primary:active:focus,.btn-outline-primary:active.focus,.btn-outline-primary.active:hover,.btn-outline-primary.active:focus,.btn-outline-primary.active.focus,.open>.btn-outline-primary.dropdown-toggle:hover,.open>.btn-outline-primary.dropdown-toggle:focus,.open>.btn-outline-primary.dropdown-toggle.focus{color:#fff;background-color:#000;border-color:#000}.btn-outline-primary.disabled:focus,.btn-outline-primary.disabled.focus,.btn-outline-primary:disabled:focus,.btn-outline-primary:disabled.focus{border-color:#333}.btn-outline-primary.disabled:hover,.btn-outline-primary:disabled:hover{border-color:#333}.btn-outline-secondary{color:transparent;background-image:none;background-color:transparent;border-color:transparent}.btn-outline-secondary:hover{color:#fff;background-color:transparent;border-color:transparent}.btn-outline-secondary:focus,.btn-outline-secondary.focus{color:#fff;background-color:transparent;border-color:transparent}.btn-outline-secondary:active,.btn-outline-secondary.active,.open>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:transparent;border-color:transparent}.btn-outline-secondary:active:hover,.btn-outline-secondary:active:focus,.btn-outline-secondary:active.focus,.btn-outline-secondary.active:hover,.btn-outline-secondary.active:focus,.btn-outline-secondary.active.focus,.open>.btn-outline-secondary.dropdown-toggle:hover,.open>.btn-outline-secondary.dropdown-toggle:focus,.open>.btn-outline-secondary.dropdown-toggle.focus{color:#fff;background-color:transparent;border-color:transparent}.btn-outline-secondary.disabled:focus,.btn-outline-secondary.disabled.focus,.btn-outline-secondary:disabled:focus,.btn-outline-secondary:disabled.focus{border-color:rgba(51,51,51,0)}.btn-outline-secondary.disabled:hover,.btn-outline-secondary:disabled:hover{border-color:rgba(51,51,51,0)}.btn-outline-info{color:#5bc0de;background-image:none;background-color:transparent;border-color:#5bc0de}.btn-outline-info:hover{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-outline-info:focus,.btn-outline-info.focus{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-outline-info:active,.btn-outline-info.active,.open>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-outline-info:active:hover,.btn-outline-info:active:focus,.btn-outline-info:active.focus,.btn-outline-info.active:hover,.btn-outline-info.active:focus,.btn-outline-info.active.focus,.open>.btn-outline-info.dropdown-toggle:hover,.open>.btn-outline-info.dropdown-toggle:focus,.open>.btn-outline-info.dropdown-toggle.focus{color:#fff;background-color:#269abc;border-color:#1f7e9a}.btn-outline-info.disabled:focus,.btn-outline-info.disabled.focus,.btn-outline-info:disabled:focus,.btn-outline-info:disabled.focus{border-color:#b0e1ef}.btn-outline-info.disabled:hover,.btn-outline-info:disabled:hover{border-color:#b0e1ef}.btn-outline-success{color:#4cbb6c;background-image:none;background-color:transparent;border-color:#4cbb6c}.btn-outline-success:hover{color:#fff;background-color:#4cbb6c;border-color:#4cbb6c}.btn-outline-success:focus,.btn-outline-success.focus{color:#fff;background-color:#4cbb6c;border-color:#4cbb6c}.btn-outline-success:active,.btn-outline-success.active,.open>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#4cbb6c;border-color:#4cbb6c}.btn-outline-success:active:hover,.btn-outline-success:active:focus,.btn-outline-success:active.focus,.btn-outline-success.active:hover,.btn-outline-success.active:focus,.btn-outline-success.active.focus,.open>.btn-outline-success.dropdown-toggle:hover,.open>.btn-outline-success.dropdown-toggle:focus,.open>.btn-outline-success.dropdown-toggle.focus{color:#fff;background-color:#318047;border-color:#256237}.btn-outline-success.disabled:focus,.btn-outline-success.disabled.focus,.btn-outline-success:disabled:focus,.btn-outline-success:disabled.focus{border-color:#96d7a9}.btn-outline-success.disabled:hover,.btn-outline-success:disabled:hover{border-color:#96d7a9}.btn-outline-warning{color:#FF9A52;background-image:none;background-color:transparent;border-color:#FF9A52}.btn-outline-warning:hover{color:#fff;background-color:#FF9A52;border-color:#FF9A52}.btn-outline-warning:focus,.btn-outline-warning.focus{color:#fff;background-color:#FF9A52;border-color:#FF9A52}.btn-outline-warning:active,.btn-outline-warning.active,.open>.btn-outline-warning.dropdown-toggle{color:#fff;background-color:#FF9A52;border-color:#FF9A52}.btn-outline-warning:active:hover,.btn-outline-warning:active:focus,.btn-outline-warning:active.focus,.btn-outline-warning.active:hover,.btn-outline-warning.active:focus,.btn-outline-warning.active.focus,.open>.btn-outline-warning.dropdown-toggle:hover,.open>.btn-outline-warning.dropdown-toggle:focus,.open>.btn-outline-warning.dropdown-toggle.focus{color:#fff;background-color:#fa6800;border-color:#d25700}.btn-outline-warning.disabled:focus,.btn-outline-warning.disabled.focus,.btn-outline-warning:disabled:focus,.btn-outline-warning:disabled.focus{border-color:#ffd6b8}.btn-outline-warning.disabled:hover,.btn-outline-warning:disabled:hover{border-color:#ffd6b8}.btn-outline-danger{color:#ff4c4c;background-image:none;background-color:transparent;border-color:#ff4c4c}.btn-outline-danger:hover{color:#fff;background-color:#ff4c4c;border-color:#ff4c4c}.btn-outline-danger:focus,.btn-outline-danger.focus{color:#fff;background-color:#ff4c4c;border-color:#ff4c4c}.btn-outline-danger:active,.btn-outline-danger.active,.open>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#ff4c4c;border-color:#ff4c4c}.btn-outline-danger:active:hover,.btn-outline-danger:active:focus,.btn-outline-danger:active.focus,.btn-outline-danger.active:hover,.btn-outline-danger.active:focus,.btn-outline-danger.active.focus,.open>.btn-outline-danger.dropdown-toggle:hover,.open>.btn-outline-danger.dropdown-toggle:focus,.open>.btn-outline-danger.dropdown-toggle.focus{color:#fff;background-color:#f40000;border-color:#c00}.btn-outline-danger.disabled:focus,.btn-outline-danger.disabled.focus,.btn-outline-danger:disabled:focus,.btn-outline-danger:disabled.focus{border-color:#ffb2b2}.btn-outline-danger.disabled:hover,.btn-outline-danger:disabled:hover{border-color:#ffb2b2}.btn-link{font-weight:400;color:#000;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link:disabled{background-color:transparent}.btn-link,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#000;text-decoration:underline;background-color:transparent}.btn-link:disabled:focus,.btn-link:disabled:hover{color:#f1f1f1;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:.75rem 1.5rem;font-size:.9375rem;border-radius:.3rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;transition-timing-function:ease;transition-duration:.35s;transition-property:height}.dropup,.dropdown{position:relative}.dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.3em;vertical-align:middle;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-left:.3em solid transparent}.dropdown-toggle:focus{outline:0}.dropup .dropdown-toggle::after{border-top:0;border-bottom:.3em solid}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:1rem;color:#7a7a7a;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:0}.dropdown-divider{height:1px;margin:.5rem 0;overflow:hidden;background-color:#e5e5e5}.dropdown-item{display:block;width:100%;padding:3px 20px;clear:both;font-weight:400;color:#7a7a7a;text-align:inherit;white-space:nowrap;background:none;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#6d6d6d;text-decoration:none;background-color:#f5f5f5}.dropdown-item.active,.dropdown-item.active:focus,.dropdown-item.active:hover{color:#fff;text-decoration:none;background-color:#000;outline:0}.dropdown-item.disabled,.dropdown-item.disabled:focus,.dropdown-item.disabled:hover{color:#f1f1f1}.dropdown-item.disabled:focus,.dropdown-item.disabled:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:"progid:DXImageTransform.Microsoft.gradient(enabled = false)"}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:5px 20px;font-size:.875rem;color:#f1f1f1;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:.3em solid}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-.5rem}.btn-toolbar::after{content:"";display:table;clear:both}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:.5rem}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn+.dropdown-toggle-split::after{margin-left:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:1.125rem;padding-left:1.125rem}.btn .caret{margin-left:0}.btn-lg .caret,.btn-group-lg>.btn .caret{border-width:.3em .3em 0;border-bottom-width:0}.dropup .btn-lg .caret,.dropup .btn-group-lg>.btn .caret{border-width:0 .3em .3em}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group::after{content:"";display:table;clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;width:100%;display:table;border-collapse:separate}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus,.input-group .form-control:active,.input-group .form-control:hover{z-index:3}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.25;color:#acaaa6;text-align:center;background-color:#f6f6f6;border:1px solid rgba(0,0,0,.1);border-radius:0}.input-group-addon.form-control-sm,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-addon.form-control-lg,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn{padding:.75rem 1.5rem;font-size:.9375rem;border-radius:.3rem}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:not(:last-child),.input-group-addon:not(:last-child),.input-group-btn:not(:last-child)>.btn,.input-group-btn:not(:last-child)>.btn-group>.btn,.input-group-btn:not(:last-child)>.dropdown-toggle,.input-group-btn:not(:first-child)>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:not(:first-child)>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:not(:last-child){border-right:0}.input-group .form-control:not(:first-child),.input-group-addon:not(:first-child),.input-group-btn:not(:first-child)>.btn,.input-group-btn:not(:first-child)>.btn-group>.btn,.input-group-btn:not(:first-child)>.dropdown-toggle,.input-group-btn:not(:last-child)>.btn:not(:first-child),.input-group-btn:not(:last-child)>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.form-control+.input-group-addon:not(:first-child){border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:focus,.input-group-btn>.btn:active,.input-group-btn>.btn:hover{z-index:3}.input-group-btn:not(:last-child)>.btn,.input-group-btn:not(:last-child)>.btn-group{margin-right:-1px}.input-group-btn:not(:first-child)>.btn,.input-group-btn:not(:first-child)>.btn-group{z-index:2;margin-left:-1px}.input-group-btn:not(:first-child)>.btn:focus,.input-group-btn:not(:first-child)>.btn:active,.input-group-btn:not(:first-child)>.btn:hover,.input-group-btn:not(:first-child)>.btn-group:focus,.input-group-btn:not(:first-child)>.btn-group:active,.input-group-btn:not(:first-child)>.btn-group:hover{z-index:3}.custom-control{position:relative;display:inline;padding-left:1.5rem;cursor:pointer}.custom-control+.custom-control{margin-left:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-indicator{color:#fff;background-color:#0074d9}.custom-control-input:focus~.custom-control-indicator{box-shadow:0 0 0 .075rem #fff,0 0 0 .2rem #0074d9}.custom-control-input:active~.custom-control-indicator{color:#fff;background-color:#84c6ff}.custom-control-input:disabled~.custom-control-indicator{cursor:not-allowed;background-color:#eee}.custom-control-input:disabled~.custom-control-description{color:#767676;cursor:not-allowed}.custom-control-indicator{position:absolute;top:.0625rem;left:0;display:block;width:1rem;height:1rem;pointer-events:none;user-select:none;background-color:#ddd;background-repeat:no-repeat;background-position:center center;background-size:50% 50%}.custom-checkbox .custom-control-indicator{border-radius:0}.custom-checkbox .custom-control-input:checked~.custom-control-indicator{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-indicator{background-color:#0074d9;background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-radio .custom-control-indicator{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-indicator{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-controls-stacked .custom-control{display:inline}.custom-controls-stacked .custom-control::after{display:block;margin-bottom:.25rem;content:""}.custom-controls-stacked .custom-control+.custom-control{margin-left:0}.custom-select{display:inline-block;max-width:100%;padding:.375rem 1.75rem .375rem .75rem;padding-right:.75rem \9;color:#acaaa6;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;background-image:none \9;background-size:8px 10px;border:1px solid rgba(0,0,0,.1);border-radius:0;-moz-appearance:none;-webkit-appearance:none}.custom-select:focus{border-color:#51a7e8;outline:none}.custom-select:focus::-ms-value{color:#acaaa6;background-color:#fff}.custom-select:disabled{color:#f1f1f1;cursor:not-allowed;background-color:#f6f6f6}.custom-select::-ms-expand{opacity:0}.custom-select-sm{padding-top:.375rem;padding-bottom:.375rem;font-size:75%}.custom-file{position:relative;display:inline-block;max-width:100%;height:2.5rem;cursor:pointer}.custom-file-input{min-width:14rem;max-width:100%;margin:0;filter:alpha(opacity=0);opacity:0}.custom-file-control{position:absolute;top:0;right:0;left:0;z-index:5;height:2.5rem;padding:.5rem 1rem;line-height:1.5;color:#555;user-select:none;background-color:#fff;border:1px solid #ddd;border-radius:0}.custom-file-control:lang(en)::after{content:"Choose file..."}.custom-file-control::before{position:absolute;top:-1px;right:-1px;bottom:-1px;z-index:6;display:block;height:2.5rem;padding:.5rem 1rem;line-height:1.5;color:#555;background-color:#eee;border:1px solid #ddd;border-radius:0 0 0 0}.custom-file-control:lang(en)::before{content:"Browse"}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:inline-block}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#f1f1f1}.nav-link.disabled,.nav-link.disabled:focus,.nav-link.disabled:hover{color:#f1f1f1;cursor:not-allowed;background-color:transparent}.nav-inline .nav-item{display:inline-block}.nav-inline .nav-item+.nav-item,.nav-inline .nav-link+.nav-link{margin-left:1rem}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs::after{content:"";display:table;clear:both}.nav-tabs .nav-item{float:left;margin-bottom:-1px}.nav-tabs .nav-item+.nav-item{margin-left:.2rem}.nav-tabs .nav-link{display:block;padding:.5em 1em;border:1px solid transparent;border-top-right-radius:0;border-top-left-radius:0}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#f6f6f6 #f6f6f6 #ddd}.nav-tabs .nav-link.disabled,.nav-tabs .nav-link.disabled:focus,.nav-tabs .nav-link.disabled:hover{color:#f1f1f1;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-link.active:focus,.nav-tabs .nav-link.active:hover,.nav-tabs .nav-item.open .nav-link,.nav-tabs .nav-item.open .nav-link:focus,.nav-tabs .nav-item.open .nav-link:hover{color:#acaaa6;background-color:#fff;border-color:#ddd #ddd transparent}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.nav-pills::after{content:"";display:table;clear:both}.nav-pills .nav-item{float:left}.nav-pills .nav-item+.nav-item{margin-left:.2rem}.nav-pills .nav-link{display:block;padding:.5em 1em;border-radius:0}.nav-pills .nav-link.active,.nav-pills .nav-link.active:focus,.nav-pills .nav-link.active:hover,.nav-pills .nav-item.open .nav-link,.nav-pills .nav-item.open .nav-link:focus,.nav-pills .nav-item.open .nav-link:hover{color:#fff;cursor:default;background-color:#000}.nav-stacked .nav-item{display:block;float:none}.nav-stacked .nav-item+.nav-item{margin-top:.2rem;margin-left:0}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;padding:.5rem 1rem}.navbar::after{content:"";display:table;clear:both}@media (min-width:544px){.navbar{border-radius:0}}.navbar-full{z-index:1000}@media (min-width:544px){.navbar-full{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:544px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0}.navbar-fixed-bottom{bottom:0}.navbar-sticky-top{position:sticky;top:0;z-index:1030;width:100%}@media (min-width:544px){.navbar-sticky-top{border-radius:0}}.navbar-brand{float:left;padding-top:.25rem;padding-bottom:.25rem;margin-right:1rem;font-size:.9375rem}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}.navbar-divider{float:left;width:1px;padding-top:.425rem;padding-bottom:.425rem;margin-right:1rem;margin-left:1rem;overflow:hidden}.navbar-divider::before{content:"\A0"}.navbar-toggler{padding:.5rem .75rem;font-size:.9375rem;line-height:1;background:none;border:1px solid transparent;border-radius:0}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-nav .nav-item{float:left}.navbar-nav .nav-link{display:block;padding-top:.425rem;padding-bottom:.425rem}.navbar-nav .nav-link+.nav-link{margin-left:1rem}.navbar-nav .nav-item+.nav-item{margin-left:1rem}.navbar-light .navbar-brand{color:rgba(0,0,0,.8)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.8)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.6)}.navbar-light .navbar-nav .open>.nav-link,.navbar-light .navbar-nav .open>.nav-link:focus,.navbar-light .navbar-nav .open>.nav-link:hover,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .active>.nav-link:focus,.navbar-light .navbar-nav .active>.nav-link:hover,.navbar-light .navbar-nav .nav-link.open,.navbar-light .navbar-nav .nav-link.open:focus,.navbar-light .navbar-nav .nav-link.open:hover,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.active:focus,.navbar-light .navbar-nav .nav-link.active:hover{color:rgba(0,0,0,.8)}.navbar-light .navbar-divider{background-color:rgba(0,0,0,.075)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .open>.nav-link,.navbar-dark .navbar-nav .open>.nav-link:focus,.navbar-dark .navbar-nav .open>.nav-link:hover,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .active>.nav-link:focus,.navbar-dark .navbar-nav .active>.nav-link:hover,.navbar-dark .navbar-nav .nav-link.open,.navbar-dark .navbar-nav .nav-link.open:focus,.navbar-dark .navbar-nav .nav-link.open:hover,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.active:focus,.navbar-dark .navbar-nav .nav-link.active:hover{color:#fff}.navbar-dark .navbar-divider{background-color:rgba(255,255,255,.075)}.navbar-toggleable-xs::after{content:"";display:table;clear:both}@media (max-width:543px){.navbar-toggleable-xs .navbar-nav .nav-item{float:none;margin-left:0}}@media (min-width:544px){.navbar-toggleable-xs{display:block!important}}.navbar-toggleable-sm::after{content:"";display:table;clear:both}@media (max-width:767px){.navbar-toggleable-sm .navbar-nav .nav-item{float:none;margin-left:0}}@media (min-width:768px){.navbar-toggleable-sm{display:block!important}}.navbar-toggleable-md::after{content:"";display:table;clear:both}@media (max-width:991px){.navbar-toggleable-md .navbar-nav .nav-item{float:none;margin-left:0}}@media (min-width:992px){.navbar-toggleable-md{display:block!important}}.card{position:relative;display:block;margin-bottom:.75rem;background-color:#fff;border-radius:0;border:1px solid rgba(0,0,0,.125)}.card-block{padding:1.25rem}.card-block::after{content:"";display:table;clear:both}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card>.list-group:first-child .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:0;border-bottom-left-radius:0}.card-header{padding:.75rem 1.25rem;background-color:#f5f5f5;border-bottom:1px solid rgba(0,0,0,.125)}.card-header::after{content:"";display:table;clear:both}.card-header:first-child{border-radius:0 0 0 0}.card-footer{padding:.75rem 1.25rem;background-color:#f5f5f5;border-top:1px solid rgba(0,0,0,.125)}.card-footer::after{content:"";display:table;clear:both}.card-footer:last-child{border-radius:0 0 0 0}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-primary{background-color:#000;border-color:#000}.card-primary .card-header,.card-primary .card-footer{background-color:transparent}.card-success{background-color:#4cbb6c;border-color:#4cbb6c}.card-success .card-header,.card-success .card-footer{background-color:transparent}.card-info{background-color:#5bc0de;border-color:#5bc0de}.card-info .card-header,.card-info .card-footer{background-color:transparent}.card-warning{background-color:#ff9a52;border-color:#ff9a52}.card-warning .card-header,.card-warning .card-footer{background-color:transparent}.card-danger{background-color:#ff4c4c;border-color:#ff4c4c}.card-danger .card-header,.card-danger .card-footer{background-color:transparent}.card-outline-primary{background-color:transparent;border-color:#000}.card-outline-secondary{background-color:transparent;border-color:transparent}.card-outline-info{background-color:transparent;border-color:#5bc0de}.card-outline-success{background-color:transparent;border-color:#4cbb6c}.card-outline-warning{background-color:transparent;border-color:#FF9A52}.card-outline-danger{background-color:transparent;border-color:#ff4c4c}.card-inverse .card-header,.card-inverse .card-footer{border-color:rgba(255,255,255,.2)}.card-inverse .card-header,.card-inverse .card-footer,.card-inverse .card-title,.card-inverse .card-blockquote{color:#fff}.card-inverse .card-link,.card-inverse .card-text,.card-inverse .card-subtitle,.card-inverse .card-blockquote .blockquote-footer{color:rgba(255,255,255,.65)}.card-inverse .card-link:focus,.card-inverse .card-link:hover{color:#fff}.card-blockquote{padding:0;margin-bottom:0;border-left:0}.card-img{border-radius:.25rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img-top{border-top-right-radius:0;border-top-left-radius:0}.card-img-bottom{border-bottom-right-radius:0;border-bottom-left-radius:0}@media (min-width:544px){.card-deck{display:table;width:100%;margin-bottom:.75rem;table-layout:fixed;border-spacing:1.25rem 0}.card-deck .card{display:table-cell;margin-bottom:0;vertical-align:top}.card-deck-wrapper{margin-right:-1.25rem;margin-left:-1.25rem}}@media (min-width:544px){.card-group{display:table;width:100%;table-layout:fixed}.card-group .card{display:table-cell;vertical-align:top}.card-group .card+.card{margin-left:0;border-left:0}.card-group .card:first-child{border-bottom-right-radius:0;border-top-right-radius:0}.card-group .card:first-child .card-img-top{border-top-right-radius:0}.card-group .card:first-child .card-img-bottom{border-bottom-right-radius:0}.card-group .card:last-child{border-bottom-left-radius:0;border-top-left-radius:0}.card-group .card:last-child .card-img-top{border-top-left-radius:0}.card-group .card:last-child .card-img-bottom{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-img-top,.card-group .card:not(:first-child):not(:last-child) .card-img-bottom{border-radius:0}}@media (min-width:544px){.card-columns{column-count:3;column-gap:1.25rem}.card-columns .card{width:100%}}.breadcrumb{padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#f6f6f6;border-radius:0}.breadcrumb::after{content:"";display:table;clear:both}.breadcrumb-item{float:left}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;padding-left:.5rem;color:#f1f1f1;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#f1f1f1}.pagination{display:inline-block;padding-left:0;margin-top:1rem;margin-bottom:1rem;border-radius:0}.page-item{display:inline}.page-item:first-child .page-link{margin-left:0;border-bottom-left-radius:0;border-top-left-radius:0}.page-item:last-child .page-link{border-bottom-right-radius:0;border-top-right-radius:0}.page-item.active .page-link,.page-item.active .page-link:focus,.page-item.active .page-link:hover{z-index:2;color:#fff;cursor:default;background-color:#000;border-color:#000}.page-item.disabled .page-link,.page-item.disabled .page-link:focus,.page-item.disabled .page-link:hover{color:#f1f1f1;pointer-events:none;cursor:not-allowed;background-color:#fff;border-color:#ddd}.page-link{position:relative;float:left;padding:.5rem .75rem;margin-left:-1px;color:#000;text-decoration:none;background-color:#fff;border:1px solid #ddd}.page-link:focus,.page-link:hover{color:#000;background-color:#f6f6f6;border-color:#ddd}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:.9375rem}.pagination-lg .page-item:first-child .page-link{border-bottom-left-radius:.3rem;border-top-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-bottom-right-radius:.3rem;border-top-right-radius:.3rem}.pagination-sm .page-link{padding:.275rem .75rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-bottom-left-radius:.2rem;border-top-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-bottom-right-radius:.2rem;border-top-right-radius:.2rem}.tag{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:0}.tag:empty{display:none}.btn .tag{position:relative;top:-1px}a.tag:focus,a.tag:hover{color:#fff;text-decoration:none;cursor:pointer}.tag-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.tag-default{background-color:#f1f1f1}.tag-default[href]:focus,.tag-default[href]:hover{background-color:#d8d8d8}.tag-primary{background-color:#000}.tag-primary[href]:focus,.tag-primary[href]:hover{background-color:#000}.tag-success{background-color:#4cbb6c}.tag-success[href]:focus,.tag-success[href]:hover{background-color:#3a9a56}.tag-info{background-color:#5bc0de}.tag-info[href]:focus,.tag-info[href]:hover{background-color:#31b0d5}.tag-warning{background-color:#ff9a52}.tag-warning[href]:focus,.tag-warning[href]:hover{background-color:#ff7c1f}.tag-danger{background-color:#ff4c4c}.tag-danger[href]:focus,.tag-danger[href]:hover{background-color:#ff1919}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#f6f6f6;border-radius:.3rem}@media (min-width:544px){.jumbotron{padding:4rem 2rem}}.jumbotron-hr{border-top-color:#ddd}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{padding:1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:0}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:2rem}.alert-dismissible .close{position:relative;top:-.125rem;right:-1rem;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d0e9c6;color:#3c763d}.alert-success hr{border-top-color:#c1e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bcdff1;color:#31708f}.alert-info hr{border-top-color:#a6d5ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:rgba(255,154,82,.3);border-color:#FF9A52;color:#232323}.alert-warning hr{border-top-color:#ff8b39}.alert-warning .alert-link{color:#0a0a0a}.alert-danger{background-color:#f2dede;border-color:#ebcccc;color:#a94442}.alert-danger hr{border-top-color:#e4b9b9}.alert-danger .alert-link{color:#843534}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:block;width:100%;height:1rem;margin-bottom:1rem}.progress[value]{background-color:#eee;border:0;appearance:none;border-radius:0}.progress[value]::-ms-fill{background-color:#0074d9;border:0}.progress[value]::-moz-progress-bar{background-color:#0074d9;border-bottom-left-radius:0;border-top-left-radius:0}.progress[value]::-webkit-progress-value{background-color:#0074d9;border-bottom-left-radius:0;border-top-left-radius:0}.progress[value="100"]::-moz-progress-bar{border-bottom-right-radius:0;border-top-right-radius:0}.progress[value="100"]::-webkit-progress-value{border-bottom-right-radius:0;border-top-right-radius:0}.progress[value]::-webkit-progress-bar{background-color:#eee;border-radius:0}base::-moz-progress-bar,.progress[value]{background-color:#eee;border-radius:0}@media screen and (min-width:0\0){.progress{background-color:#eee;border-radius:0}.progress-bar{display:inline-block;height:1rem;text-indent:-999rem;background-color:#0074d9;border-bottom-left-radius:0;border-top-left-radius:0}.progress[width="100%"]{border-bottom-right-radius:0;border-top-right-radius:0}}.progress-striped[value]::-webkit-progress-value{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-striped[value]::-moz-progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-striped[value]::-ms-fill{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}@media screen and (min-width:0\0){.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}}.progress-animated[value]::-webkit-progress-value{animation:progress-bar-stripes 2s linear infinite}.progress-animated[value]::-moz-progress-bar{animation:progress-bar-stripes 2s linear infinite}@media screen and (min-width:0\0){.progress-animated .progress-bar-striped{animation:progress-bar-stripes 2s linear infinite}}.progress-success[value]::-webkit-progress-value{background-color:#4cbb6c}.progress-success[value]::-moz-progress-bar{background-color:#4cbb6c}.progress-success[value]::-ms-fill{background-color:#4cbb6c}@media screen and (min-width:0\0){.progress-success .progress-bar{background-color:#4cbb6c}}.progress-info[value]::-webkit-progress-value{background-color:#5bc0de}.progress-info[value]::-moz-progress-bar{background-color:#5bc0de}.progress-info[value]::-ms-fill{background-color:#5bc0de}@media screen and (min-width:0\0){.progress-info .progress-bar{background-color:#5bc0de}}.progress-warning[value]::-webkit-progress-value{background-color:#ff9a52}.progress-warning[value]::-moz-progress-bar{background-color:#ff9a52}.progress-warning[value]::-ms-fill{background-color:#ff9a52}@media screen and (min-width:0\0){.progress-warning .progress-bar{background-color:#ff9a52}}.progress-danger[value]::-webkit-progress-value{background-color:#ff4c4c}.progress-danger[value]::-moz-progress-bar{background-color:#ff4c4c}.progress-danger[value]::-ms-fill{background-color:#ff4c4c}@media screen and (min-width:0\0){.progress-danger .progress-bar{background-color:#ff4c4c}}.media,.media-body{overflow:hidden}.media-body{width:10000px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right{padding-left:10px}.media-left{padding-right:10px}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:0}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#f1f1f1;cursor:not-allowed;background-color:#f6f6f6}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#f1f1f1}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;text-decoration:none;background-color:#000;border-color:#000}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#666}.list-group-flush .list-group-item{border-radius:0}.list-group-item-action{width:100%;color:#555;text-align:inherit}.list-group-item-action .list-group-item-heading{color:#333}.list-group-item-action:focus,.list-group-item-action:hover{color:#555;text-decoration:none;background-color:#f5f5f5}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9{padding-bottom:42.85714%}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.embed-responsive-1by1{padding-bottom:100%}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;outline:0;-webkit-overflow-scrolling:touch}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-25%)}.modal.in .modal-dialog{transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.in{opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header::after{content:"";display:table;clear:both}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.5}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer::after{content:"";display:table;clear:both}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:544px){.modal-dialog{max-width:600px;margin:30px auto}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg{max-width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.in{opacity:.9}.tooltip.tooltip-top,.tooltip.bs-tether-element-attached-bottom{padding:5px 0;margin-top:-3px}.tooltip.tooltip-top .tooltip-arrow,.tooltip.bs-tether-element-attached-bottom .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#ff4c4c}.tooltip.tooltip-right,.tooltip.bs-tether-element-attached-left{padding:0 5px;margin-left:3px}.tooltip.tooltip-right .tooltip-arrow,.tooltip.bs-tether-element-attached-left .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#ff4c4c}.tooltip.tooltip-bottom,.tooltip.bs-tether-element-attached-top{padding:5px 0;margin-top:3px}.tooltip.tooltip-bottom .tooltip-arrow,.tooltip.bs-tether-element-attached-top .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#ff4c4c}.tooltip.tooltip-left,.tooltip.bs-tether-element-attached-right{padding:0 5px;margin-left:-3px}.tooltip.tooltip-left .tooltip-arrow,.tooltip.bs-tether-element-attached-right .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#ff4c4c}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#ff4c4c;border-radius:0}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;padding:1px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover.popover-top,.popover.bs-tether-element-attached-bottom{margin-top:-10px}.popover.popover-top .popover-arrow,.popover.bs-tether-element-attached-bottom .popover-arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.popover-top .popover-arrow::after,.popover.bs-tether-element-attached-bottom .popover-arrow::after{bottom:1px;margin-left:-10px;content:"";border-top-color:#fff;border-bottom-width:0}.popover.popover-right,.popover.bs-tether-element-attached-left{margin-left:10px}.popover.popover-right .popover-arrow,.popover.bs-tether-element-attached-left .popover-arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.popover-right .popover-arrow::after,.popover.bs-tether-element-attached-left .popover-arrow::after{bottom:-10px;left:1px;content:"";border-right-color:#fff;border-left-width:0}.popover.popover-bottom,.popover.bs-tether-element-attached-top{margin-top:10px}.popover.popover-bottom .popover-arrow,.popover.bs-tether-element-attached-top .popover-arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:rgba(0,0,0,.25)}.popover.popover-bottom .popover-arrow::after,.popover.bs-tether-element-attached-top .popover-arrow::after{top:1px;margin-left:-10px;content:"";border-top-width:0;border-bottom-color:#fff}.popover.popover-left,.popover.bs-tether-element-attached-right{margin-left:-10px}.popover.popover-left .popover-arrow,.popover.bs-tether-element-attached-right .popover-arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:rgba(0,0,0,.25)}.popover.popover-left .popover-arrow::after,.popover.bs-tether-element-attached-right .popover-arrow::after{right:1px;bottom:-10px;content:"";border-right-width:0;border-left-color:#fff}.popover-title{padding:8px 14px;margin:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:.2375rem .2375rem 0 0}.popover-title:empty{display:none}.popover-content{padding:9px 14px}.popover-arrow,.popover-arrow::after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover-arrow{border-width:11px}.popover-arrow::after{content:"";border-width:10px}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.carousel-item{position:relative;display:none;transition:.6s ease-in-out left}.carousel-inner>.carousel-item>img,.carousel-inner>.carousel-item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.carousel-item{transition:transform .6s ease-in-out;backface-visibility:hidden;perspective:1000px}.carousel-inner>.carousel-item.next,.carousel-inner>.carousel-item.active.right{left:0;transform:translate3d(100%,0,0)}.carousel-inner>.carousel-item.prev,.carousel-inner>.carousel-item.active.left{left:0;transform:translate3d(-100%,0,0)}.carousel-inner>.carousel-item.next.left,.carousel-inner>.carousel-item.prev.right,.carousel-inner>.carousel-item.active{left:0;transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);opacity:.5}.carousel-control.left{background-image:linear-gradient(to right,rgba(0,0,0,.5) 0%,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1)}.carousel-control.right{right:0;left:auto;background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0%,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1)}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control .icon-prev,.carousel-control .icon-next{position:absolute;top:50%;z-index:5;display:inline-block;width:20px;height:20px;margin-top:-10px;font-family:serif;line-height:1}.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-prev::before{content:"\2039"}.carousel-control .icon-next::before{content:"\203A"}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:transparent;border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media (min-width:544px){.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .icon-prev{margin-left:-15px}.carousel-control .icon-next{margin-right:-15px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.bg-faded{background-color:#f7f7f9}.bg-primary{color:#fff!important;background-color:#000!important}a.bg-primary:focus,a.bg-primary:hover{background-color:black!important}.bg-success{color:#fff!important;background-color:#4cbb6c!important}a.bg-success:focus,a.bg-success:hover{background-color:#3a9a56!important}.bg-info{color:#fff!important;background-color:#5bc0de!important}a.bg-info:focus,a.bg-info:hover{background-color:#31b0d5!important}.bg-warning{color:#fff!important;background-color:#ff9a52!important}a.bg-warning:focus,a.bg-warning:hover{background-color:#ff7c1f!important}.bg-danger{color:#fff!important;background-color:#ff4c4c!important}a.bg-danger:focus,a.bg-danger:hover{background-color:#ff1919!important}.bg-inverse{color:#fff!important;background-color:#7a7a7a!important}a.bg-inverse:focus,a.bg-inverse:hover{background-color:#616161!important}.clearfix::after{content:"";display:table;clear:both}.d-block{display:block!important}.d-inline-block{display:inline-block!important}.d-inline{display:inline!important}.pull-xs-left{float:left!important}.pull-xs-right{float:right!important}.pull-xs-none{float:none!important}@media (min-width:544px){.pull-sm-left{float:left!important}.pull-sm-right{float:right!important}.pull-sm-none{float:none!important}}@media (min-width:768px){.pull-md-left{float:left!important}.pull-md-right{float:right!important}.pull-md-none{float:none!important}}@media (min-width:992px){.pull-lg-left{float:left!important}.pull-lg-right{float:right!important}.pull-lg-none{float:none!important}}@media (min-width:1200px){.pull-xl-left{float:left!important}.pull-xl-right{float:right!important}.pull-xl-none{float:none!important}}.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}.w-100{width:100%!important}.m-x-auto{margin-right:auto!important;margin-left:auto!important}.m-a-0{margin:0 0!important}.m-t-0{margin-top:0!important}.m-r-0{margin-right:0!important}.m-b-0{margin-bottom:0!important}.m-l-0{margin-left:0!important}.m-x-0{margin-right:0!important;margin-left:0!important}.m-y-0{margin-top:0!important;margin-bottom:0!important}.m-a-1{margin:1rem 1rem!important}.m-t-1{margin-top:1rem!important}.m-r-1{margin-right:1rem!important}.m-b-1{margin-bottom:1rem!important}.m-l-1{margin-left:1rem!important}.m-x-1{margin-right:1rem!important;margin-left:1rem!important}.m-y-1{margin-top:1rem!important;margin-bottom:1rem!important}.m-a-2{margin:1.5rem 1.5rem!important}.m-t-2{margin-top:1.5rem!important}.m-r-2{margin-right:1.5rem!important}.m-b-2{margin-bottom:1.5rem!important}.m-l-2{margin-left:1.5rem!important}.m-x-2{margin-right:1.5rem!important;margin-left:1.5rem!important}.m-y-2{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.m-a-3{margin:3rem 3rem!important}.m-t-3{margin-top:3rem!important}.m-r-3{margin-right:3rem!important}.m-b-3{margin-bottom:3rem!important}.m-l-3{margin-left:3rem!important}.m-x-3{margin-right:3rem!important;margin-left:3rem!important}.m-y-3{margin-top:3rem!important;margin-bottom:3rem!important}.p-a-0{padding:0 0!important}.p-t-0{padding-top:0!important}.p-r-0{padding-right:0!important}.p-b-0{padding-bottom:0!important}.p-l-0{padding-left:0!important}.p-x-0{padding-right:0!important;padding-left:0!important}.p-y-0{padding-top:0!important;padding-bottom:0!important}.p-a-1{padding:1rem 1rem!important}.p-t-1{padding-top:1rem!important}.p-r-1{padding-right:1rem!important}.p-b-1{padding-bottom:1rem!important}.p-l-1{padding-left:1rem!important}.p-x-1{padding-right:1rem!important;padding-left:1rem!important}.p-y-1{padding-top:1rem!important;padding-bottom:1rem!important}.p-a-2{padding:1.5rem 1.5rem!important}.p-t-2{padding-top:1.5rem!important}.p-r-2{padding-right:1.5rem!important}.p-b-2{padding-bottom:1.5rem!important}.p-l-2{padding-left:1.5rem!important}.p-x-2{padding-right:1.5rem!important;padding-left:1.5rem!important}.p-y-2{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.p-a-3{padding:3rem 3rem!important}.p-t-3{padding-top:3rem!important}.p-r-3{padding-right:3rem!important}.p-b-3{padding-bottom:3rem!important}.p-l-3{padding-left:3rem!important}.p-x-3{padding-right:3rem!important;padding-left:3rem!important}.p-y-3{padding-top:3rem!important;padding-bottom:3rem!important}.pos-f-t{position:fixed;top:0;right:0;left:0;z-index:1030}.text-justify{text-align:justify!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-xs-left{text-align:left!important}.text-xs-right{text-align:right!important}.text-xs-center{text-align:center!important}@media (min-width:544px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-normal{font-weight:400}.font-weight-bold{font-weight:700}.font-italic{font-style:italic}.text-muted{color:#acaaa6!important}a.text-muted:focus,a.text-muted:hover{color:#93918c!important}.text-primary{color:#000!important}a.text-primary:focus,a.text-primary:hover{color:black!important}.text-success{color:#4cbb6c!important}a.text-success:focus,a.text-success:hover{color:#3a9a56!important}.text-info{color:#5bc0de!important}a.text-info:focus,a.text-info:hover{color:#31b0d5!important}.text-warning{color:#ff9a52!important}a.text-warning:focus,a.text-warning:hover{color:#ff7c1f!important}.text-danger{color:#ff4c4c!important}a.text-danger:focus,a.text-danger:hover{color:#ff1919!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.invisible{visibility:hidden!important}.hidden-xs-up{display:none!important}@media (max-width:543px){.hidden-xs-down{display:none!important}}@media (min-width:544px){.hidden-sm-up{display:none!important}}@media (max-width:767px){.hidden-sm-down{display:none!important}}@media (min-width:768px){.hidden-md-up{display:none!important}}@media (max-width:991px){.hidden-md-down{display:none!important}}@media (min-width:992px){.hidden-lg-up{display:none!important}}@media (max-width:1199px){.hidden-lg-down{display:none!important}}@media (min-width:1200px){.hidden-xl-up{display:none!important}}.hidden-xl-down{display:none!important}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}@font-face{font-family:'Noto Sans';src:url(../css/3d4a907b1b7a232654324a3dd7ae4aa3.eot);src:local("Noto Sans Regular"),local("NotoSans-Regular"),url(../css/3d4a907b1b7a232654324a3dd7ae4aa3.eot) format("embedded-opentype"),url(../css/19c1b868764c0e4d15a45d3f61250488.woff2) format("woff2"),url(../css/846c191efd3d0aacde5a916cf2ebf1a4.woff) format("woff"),url(../css/2fd9c16b805724d590c0cff96da070a4.ttf) format("truetype"),url(../css/5ea9fdf2293930126fa9c544968009ae.svg) format("svg");font-weight:400;font-style:normal}@font-face{font-family:'Noto Sans';src:url(../css/eeb9224f85430652fd070e4e64129aa4.eot);src:local("Noto Sans Bold"),local("NotoSans-Bold"),url(../css/eeb9224f85430652fd070e4e64129aa4.eot) format("embedded-opentype"),url(../css/199038f07312bfc6f0aabd3ed6a2b64d.woff2) format("woff2"),url(../css/c2183257e7a697769df4200c547551f1.woff) format("woff"),url(../css/a165a42685795361b25593effb32fdb1.ttf) format("truetype"),url(../css/5dc400bcedda37b13f35cb44623193cf.svg) format("svg");font-weight:700;font-style:normal}@font-face{font-family:'Noto Sans';src:url(../css/a77ade19de3d3762dfbf1fe553b293cc.eot);src:local("Noto Sans Italic"),local("NotoSans-Italic"),url(../css/a77ade19de3d3762dfbf1fe553b293cc.eot) format("embedded-opentype"),url(../css/7a3ebca0cba2e2c6090e84e1d77e0f94.woff2) format("woff2"),url(../css/332f555bb44cdc394d6c799df0c03389.woff) format("woff"),url(../css/154da4697acc779b55af0a67f1241e4e.ttf) format("truetype"),url(../css/3d34be670a7f15086e512282b97ae35e.svg) format("svg");font-weight:400;font-style:italic}@font-face{font-family:'Noto Sans';src:url(../css/b467416c449eb823029e16347b2ea510.eot);src:local("Noto Sans BoldItalic"),local("NotoSans-BoldItalic"),url(../css/b467416c449eb823029e16347b2ea510.eot) format("embedded-opentype"),url(../css/a68cfe9d548950edf5df102269877edd.woff2) format("woff2"),url(../css/3f81521029cc8a9a703419c4a74704a0.woff) format("woff"),url(../css/4f6ff3639c1e5728b905b650c1a06e75.ttf) format("truetype"),url(../css/80e74ff9406650e53bbec1e292c2c094.svg) format("svg");font-weight:700;font-style:italic}@font-face{font-family:'Material Icons';font-style:normal;font-weight:400;src:url(../css/e79bfd88537def476913f3ed52f4f4b3.eot);src:local("Material Icons"),local("MaterialIcons-Regular"),url(../css/570eb83859dc23dd0eec423a49e147fe.woff2) format("woff2"),url(../css/012cf6a10129e2275d79d6adac7f3b02.woff) format("woff"),url(../css/a37b0c01c0baf1888ca812cc0508f6e2.ttf) format("truetype")}.material-icons{font-family:'Material Icons';font-weight:400;font-style:normal;font-size:24px;display:inline-block;vertical-align:middle;width:1em;height:1em;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;font-feature-settings:'liga'}.lang-rtl *{direction:rtl!important}.lang-rtl main{text-align:right!important}body{font-family:"Poppins",sans-serif;font-size:14px;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#232323;line-height:1.25em;letter-spacing:.5px}ul{list-style:none;padding-left:0}a:hover{color:#000;text-decoration:none}a:focus{text-decoration:none}p{color:#333;font-weight:400;font-size:14px;letter-spacing:.5px}.dropdown-item:focus,.dropdown-item:hover{background:none}.color,.custom-checkbox input[type="checkbox"]+span.color{width:1.25rem;height:1.25rem;border-radius:50%;cursor:pointer;background:#fafafa none repeat scroll 0 0;display:inline-block;justify-content:center;margin-right:5px;width:20px;border:1px solid #eee}.color.active,.color:hover,.custom-checkbox input[type="checkbox"]+span.color.active,.custom-checkbox input[type="checkbox"]+span.color:hover{border-color:#333}.facet-label.active .custom-checkbox span.color,.facet-label:hover .custom-checkbox span.color{border-color:#333}.h1,.h2,.h3{text-transform:uppercase;color:#232323}.h4{font-weight:700;color:#232323}.btn-primary,.btn.disabled,.btn:disabled,.btn-secondary,.btn-tertiary{opacity:1;text-transform:uppercase;font-weight:500;border-radius:0;padding:10px 20px;font-size:13px;font-weight:500;line-height:1.4;font-family:"Poppins",sans-serif;box-shadow:0 2px 4px 0 rgba(0,0,0,.2);-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s;color:#fff;background-color:#000;border:1px solid #000;outline:none}.btn-primary:hover,.btn-primary:active,.btn-primary:focus,.btn.disabled:hover,.btn.disabled:active,.btn.disabled:focus,.btn:disabled:hover,.btn:disabled:active,.btn:disabled:focus,.btn-secondary:hover,.btn-tertiary:hover,.btn-secondary:active,.btn-tertiary:active,.btn-secondary:focus,.btn-tertiary:focus{color:#fff;background-color:#84a014;border-color:#84a014}.btn-primary:active:hover,.btn-primary:active:focus,.btn.disabled:active:hover,.btn.disabled:active:focus,.btn:disabled:active:hover,.btn:disabled:active:focus,.btn-secondary:active:hover,.btn-tertiary:active:hover,.btn-secondary:active:focus,.btn-tertiary:active:focus{color:#fff;background-color:#84a014;border-color:#84a014}.btn-primary:focus,.btn.disabled:focus,.btn:disabled:focus,.btn-secondary:focus,.btn-tertiary:focus{outline:none}.btn-primary .material-icons,.btn.disabled .material-icons,.btn:disabled .material-icons,.btn-secondary .material-icons,.btn-tertiary .material-icons{margin-right:.625rem}.btn-tertiary{text-transform:lowercase;color:#acaaa6;padding:10px 15px;margin:.25rem 0;font-weight:400;font-size:.875rem}.btn-tertiary .material-icons{font-size:1rem}.card-title{color:#333}label,.label{color:#232323;text-align:right;font-size:.875rem}small.label,small.value{font-size:.8125rem}.form-control-label{padding-top:.625rem}.form-control{background:#fff;color:#333;border:1px solid rgba(0,0,0,.1);padding:.5rem 1rem}.form-control:focus{color:#232323;border-color:#cfcfcf}.input-group .form-control:focus{outline:none}.input-group .input-group-btn{height:100%}.input-group .input-group-btn>.btn{border:0;box-shadow:none;color:#fff;font-size:.6875rem;font-weight:400;margin-left:0;padding:12px 16px;text-transform:uppercase}.input-group .input-group-btn>.btn[data-action="show-password"]{background:#5f5f5f;height:100%}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#acaaa6}input::-moz-placeholder,textarea::-moz-placeholder{color:#333}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#acaaa6}input:-moz-placeholder,textarea:-moz-placeholder{color:#acaaa6}input:active::-webkit-input-placeholder,textarea:active::-webkit-input-placeholder{color:#232323}input:active::-moz-placeholder,textarea:active::-moz-placeholder{color:#333}input:active:-ms-input-placeholder,textarea:active:-ms-input-placeholder{color:#232323}input:active:-moz-placeholder,textarea:active:-moz-placeholder{color:#232323}.form-control-select{height:2.625rem;-moz-appearance:none;-webkit-appearance:none;font-size:14px;background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAQAAAD9CzEMAAAAPklEQVR4Ae3TwREAEBQD0V/6do4SXPZg7EsBhsQ8IEmSMOsiuEfg3gL3oXC7wK0bd1G4o8X9F4yIkyQfSrIByQBjp7QuND8AAAAASUVORK5CYII=) no-repeat scroll right .5rem center/1.25rem 1.25rem;padding:0 .5rem}.form-control-valign{padding-top:.5rem}.form-control-comment{font-size:.875rem;padding-top:.5rem;color:#333}.form-control-submit.disabled{background:#5bc0de;color:#fff}.form-group.has-error .help-block{color:#ff4c4c}.group-span-filestyle label{margin:0}.group-span-filestyle .btn-default,.group-span-filestyle .bootstrap-touchspin .btn-touchspin,.bootstrap-touchspin .group-span-filestyle .btn-touchspin{background:#000;color:#fff;text-transform:uppercase;border-radius:0;font-size:.875rem;padding:.5rem 1rem}.bootstrap-touchspin{width:auto;float:left;display:inline-block;box-shadow:2px 2px 4px 0 rgba(0,0,0,.2)}.bootstrap-touchspin input:focus{outline:none}.bootstrap-touchspin input.form-control,.bootstrap-touchspin input.input-group{color:#232323;background-color:#fff;height:2.5rem;padding:.175rem .5rem;font-size:14px;width:3rem;border:1px solid rgba(0,0,0,.1);float:left}.bootstrap-touchspin .btn-touchspin{background-color:#fff;border:1px solid rgba(0,0,0,.1);height:1.3125rem}.bootstrap-touchspin .btn-touchspin:hover{background-color:#f1f1f1}.bootstrap-touchspin .input-group-btn-vertical{color:#232323;width:auto;float:left}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up{border-radius:0}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{border-radius:0}.bootstrap-touchspin .input-group-btn-vertical .touchspin-up:after{content:"\E5CE"}.bootstrap-touchspin .input-group-btn-vertical .touchspin-down:after{content:"\E5CF"}.bootstrap-touchspin .input-group-btn-vertical i{top:.0625rem;left:.1875rem;font-size:.9375rem}.custom-radio{display:inline-block;position:relative;width:20px;height:20px;vertical-align:middle;cursor:pointer;border-radius:50%;border:1px solid #ddd;background:#fff;margin-right:1.25rem}.custom-radio input[type="radio"]{opacity:0;cursor:pointer}.custom-radio input[type="radio"]:checked+span{display:block;background-color:#000;width:12px;height:12px;border-radius:50%;position:absolute;left:3px;top:3px}.custom-radio input[type="radio"]:focus+span{border-color:#acaaa6}.custom-checkbox{position:relative}.custom-checkbox input[type="checkbox"]{margin-top:.25rem;opacity:0;cursor:pointer;position:absolute}.custom-checkbox input[type="checkbox"]+span{margin-right:3px;display:inline-block;width:.9375rem;height:.9375rem;vertical-align:middle;cursor:pointer;border:1px solid #ddd;background:#fafafa none repeat scroll 0 0}.custom-checkbox input[type="checkbox"]+span .checkbox-checked{display:none;margin:-.25rem -.125rem;font-size:20px;color:#232323}.custom-checkbox input[type="checkbox"]:checked+span .checkbox-checked{display:block}.custom-checkbox input[type="checkbox"]:focus+span{border-color:#acaaa6}.custom-checkbox label{text-align:left}.text-muted{font-size:.875rem}.done{color:#4cbb6c;display:inline-block;padding:0 .8125rem;margin-right:1.563rem}.thumb-mask>.mask{position:relative;width:3.438rem;height:3.438rem;overflow:hidden;border:#f1f1f1 1px solid;margin:.625rem 0}.thumb-mask>.mask img{width:55px;height:55px}.definition-list dl{-js-display:flex;display:flex;flex-wrap:wrap}.definition-list dl dt{font-weight:400}.definition-list dl dd,.definition-list dl dt{flex:0 0 45%;background:#f1f1f1;padding:.625rem;margin:.125rem}.definition-list dl dd:nth-of-type(even),.definition-list dl dt:nth-of-type(even){background:#f6f6f6}.help-block{margin-top:.625rem}.btn.disabled,.btn.disabled:hover{background:#000;color:#fff;border-color:#000}.alert-warning .material-icons{color:#FF9A52;font-size:2rem;margin-right:.625rem;padding-top:.3125rem}.alert-warning .alert-text{font-size:.9375rem;padding-top:.625rem}.alert-warning .alert-link{border-radius:2px;border-width:2px;margin-left:.625rem;padding:.3125rem 1.25rem;font-weight:600;font-size:.8125rem;color:#6C868E}.alert-warning ul li:last-child .alert-link{color:#fff}.alert-warning .warning-buttons{margin-top:.3125rem}.btn-warning{-webkit-transition:all .4s ease-in-out;-moz-transition:all .4s ease-in-out;-o-transition:all .4s ease-in-out;transition:all .4s ease-in-out}.btn-tertiary-outline{color:#6C868E;background-image:none;background-color:transparent;border-color:#6C868E;border:.15rem solid #6C868E;-webkit-transition:all .4s ease-in-out;-moz-transition:all .4s ease-in-out;-o-transition:all .4s ease-in-out;transition:all .4s ease-in-out}.btn-tertiary-outline:hover{border-color:#BBCDD2;color:#BBCDD2}.alert{font-size:.8125rem}.nav-item .nav-link,.nav-item .nav-separtor{color:#acaaa6;font-weight:700}.nav-item .nav-link.active,.nav-item .nav-separtor.active{color:#232323}.bootstrap-touchspin{box-shadow:none}.modal-dialog-centered{-js-display:flex;display:flex;align-items:center;min-height:calc(100% - (30px * 2))}.ps-alert-error{margin-bottom:0}.ps-alert-error .item,.ps-alert-success .item{align-items:center;border:2px #ff4c4c solid;-js-display:flex;display:flex;background-color:#ff4c4c;margin-bottom:1rem}.ps-alert-error .item i,.ps-alert-success .item i{border:15px #ff4c4c solid;-js-display:flex;display:flex}.ps-alert-error .item i svg,.ps-alert-success .item i svg{background-color:#ff4c4c;width:24px;height:24px}.ps-alert-error .item p,.ps-alert-success .item p{background-color:#fff;margin:0;padding:18px 20px 18px 20px;width:100%}.ps-alert-success{padding:.25rem .25rem 2.75rem .25rem}.ps-alert-success .item{border-color:#4cbb6c;background-color:#4cbb6c}.ps-alert-success .item i{border-color:#4cbb6c}.ps-alert-success .item i svg{background-color:#4cbb6c}.table-bordered{border:1px solid #eaeaea;font-size:13px;font-weight:400;letter-spacing:1px;color:gray;line-height:24px}.table-bordered th,.table-bordered td{border:1px solid #eaeaea}.table-bordered thead th{color:#000;vertical-align:bottom;border-bottom:1px solid #eaeaea;font-weight:600;background-color:#f9f9f9}.table-bordered thead td{border:1px solid #eaeaea}.table-bordered.table-striped tbody tr:nth-of-type(2n+1){background-color:transparent}.table-bordered td a{color:gray}.table-bordered td a:hover{color:#000;text-decoration:none}.card.definition-list{margin-bottom:30px}.dropdown{color:#acaaa6}.dropdown:hover .expand-more{color:#000}.dropdown .expand-more{color:#232323;cursor:pointer;user-select:none}.dropdown .active{max-height:200px;overflow-y:hidden;visibility:visible}.dropdown select{-moz-appearance:none;border:0 none;outline:0 none;color:#232323;background:#fff}.dropdown-item:focus,.dropdown-item:hover{background:none;text-decoration:none;color:#000}.search-widget{cursor:pointer;float:right;padding:6px 15px}.search-widget form{position:relative}.search-widget form input[type=text]{border:none;padding:10px;min-width:255px;color:#acaaa6;border:1px solid rgba(0,0,0,.1)}.search-widget form button[type=submit]{position:absolute;background:none;border:none;bottom:.3125rem;right:.125rem;color:#acaaa6}.search-widget form button[type=submit] .search:hover{color:#000}@media (max-width:991px){.search-widget{padding:7px 0;float:right;position:relative}}@media (max-width:991px){.search-widget .search-logo{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAAmCAYAAAAP4F9VAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA+dpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSIgeG1wOkNyZWF0ZURhdGU9IjIwMTgtMDMtMjFUMTQ6MTE6MjMrMDU6MzAiIHhtcDpNb2RpZnlEYXRlPSIyMDE4LTAzLTIxVDE0OjI2OjQwKzA1OjMwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDE4LTAzLTIxVDE0OjI2OjQwKzA1OjMwIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkM1NTQ0N0E5MkNFNTExRTg4QkFCQzNCOEQ1QUQxNjJCIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkM1NTQ0N0FBMkNFNTExRTg4QkFCQzNCOEQ1QUQxNjJCIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjAxRjZDRDNCMkIzRDExRThBQkFCODZFNDk5RUZDREQzIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjAxRjZDRDNDMkIzRDExRThBQkFCODZFNDk5RUZDREQzIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+ACQ3NwAABEJJREFUeNrsmllIVUEYx72mmRlmpmJUDwmFttiCRRIWEVgUEW1GthElqWBUL0YEUVC+FKHQQrTTg5oVoZX40CaSkWWRLWZFmUFSZnsZ1ek/9BduF/KeOffOmDUf/PB6z5yZ78z/zPJ9c12WZQUY+3ct0HSBEdiYEdiYEdiYEdiYEdiYEdiYEdgIbMsiwFpwEbQCkTFpBmVgBQjR+Bz32X47OV1Mh3hwEDSBr+Ap2AvifK3Y5TCTtQxsB1HgHagFL0F/MAqEgkaQBc5q6KD1YBA/zwFPwNguIu58cBR8BCfZb3F8jm5ggU99KASWZLP1y56BdBDicb0XyAGt4DvIcNCGL+xnu1Ga23VCEmgD5SDC41oMqAQfQbzTNmRvWEZxr4JoL2UHg4fgG5issdPS6OPCLiDwOdAIwv5wvS9oAYU6BBaNvaVD0TbvEW/eB1AHumnqtEi+VIc8vj8FXktQqdjPnuAr2OSlXAFHsaN2giRm85UgHGRzvbW7+dkJNoLpoFTDmvYa1IBUj+/FPqGXjfvF/mEC6KnYz1gQDB56KVdPX8K531G2Bl8G70EPybeoP6fMfRqnvi1sc4SDezN471LFPoo19wdY56XcNo70QCftyIRJQ8BN8EXyHXoOnoEEjTvTCv5NlY0qwBrwChQp9vENuA4WdxCudgdpDEV/qI6D+9Appw8ToVHgavDWgcCi/FDGoG0a/NwKRjPkdHlcE8vnHoZMeTrCpCbunp1MRy84xevcoZ4En0CoxD3lDFv6afQzj0tCNVgFpoJsUMspPNeX+mUKV4AvoLdkI0P4APmaBc5ku9Nslh/MDj3SCeGSCO3uWb/bLTDT17plpuhTTD8ulZwk1vBvaYBeK5dch3M4TRZ0QjarmHuUgSAJ9AMj/dFnMqlKsVVvYBgxzsb2XlgKOA9ugPHME+u0eu4zNtjYi+wHdSBZg1/iRZoGZoFh7NM/2Wc+x2nm+S1VAgubCs4wGT6DcW5H4opRH8m38XYnjIwdYJ1kXrhEsU9C0MMcqS/ZLy0dlBf9lwiiGd8vAg9UHjYsB/sYLokOPMAwqN3EVJPJhEh7IqWIjn3XLHAYZw6XjbJipFQp9kcIdYl9txqcsBn+iBlmLsgHPcAk2wPG4eI9Edxx2xA0g/vMm7bbFZAIjvP/Qo3pyr8RcSjTAB6DAQ7rEPc9Yj3dVRw2uCPEmg0OMm9bD6q4W3Y/XAhyE7lIo8jipOsYmGejbCzYBXbzswp/stgHk3ysJ4X1ZKkWWAYhcrFGkZMY8lg8OkzwUr7EbeYpU+TTBVDjp7qusT6/Hjb4Yt9AOj+n8VcLSxS2F+W27or1Kwbc81Le/RBAhY0Bd0Gun/pzuMo12JeRfJjHhyrbCeaMIRIzR4HLS/lkHoOKbN0URT49tvxrj+y06/QnO8a6iJlfVRqBjRmBjRmBjRmBjRmBjRmBjRmB/yf7KcAAxbERpUB8+Y0AAAAASUVORK5CYII=) no-repeat center;background-position:-3px 3px;width:35px;height:35px;display:block}}.search-widget form{display:block;z-index:2;position:relative;top:4px;right:0}@media (min-width:992px){.search-widget form{top:0}}@media (max-width:991px){.search-widget form{display:none;z-index:2;position:absolute;top:55px;right:0}}.search-widget form input[type="text"]{min-width:330px;width:100%;border:1px solid #e9e9e9;height:38px;padding:5px 10px;background:#fff;text-transform:capitalize;font-size:14px;font-weight:400;letter-spacing:.5px;color:#a5a5a5}.search-widget form input[type="text"]:focus{background:#fff}.search-widget form input[type="text"]::placeholder{color:#a5a5a5}@media (max-width:543px){.search-widget form input[type="text"]{min-width:240px}}@media (min-width:1200px){.search-widget form button[type="submit"]{position:absolute;border:1px solid #84a014;right:0;color:#fff;padding:7px 16px;height:100%;background:#84a014;bottom:0;font-size:14px;font-weight:400;text-transform:uppercase;letter-spacing:.4px;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s}.search-widget form button[type="submit"]:hover{background:#000;border-color:#000}.search-widget form button[type="submit"] i{display:none}}@media (max-width:1199px){.search-widget form button[type="submit"]{position:absolute;background:none;border:none;right:0rem;color:#5f5f5f;padding:0;height:100%;width:30px;bottom:0}.search-widget form button[type="submit"] span{display:none}}@media (min-width:1200px){.search-widget form{}.search-widget form input[type="submit"]{position:absolute;border:1px solid #84a014;right:0;color:#fff;padding:7px 16px;height:100%;background:#84a014;bottom:0;font-size:14px;font-weight:400;text-transform:uppercase;letter-spacing:.4px}.search-widget form input[type="submit"]:hover{background:#000;border-color:#000}}#checkout #search_widget{display:none}#pagenotfound .page-content #search_widget{width:100%}.page-not-found .search-widget{position:relative;padding:0}.page-not-found .search-widget .search-logo{display:none}.page-not-found .search-widget form{display:inline-block;top:0;position:relative}.ui-widget.ui-widget-content{border-color:#e5e5e5;border-radius:0;min-width:300px;padding:5px;max-width:330px}@media (max-width:543px){.ui-widget.ui-widget-content{min-width:200px;max-width:240px}}.ui-widget.ui-widget-content .ui-menu-item a{border:medium none;border-radius:0;cursor:pointer;display:inline-block;margin:0;padding:5px;width:100%}.ui-widget.ui-widget-content .ui-menu-item a.ui-state-focus{background:#e5e5e5;margin:0}.ui-widget.ui-widget-content .ui-menu-item a .product-image{float:left;height:auto;margin:0 15px 0 0;max-width:80px}.ui-widget.ui-widget-content .ui-menu-item a .category{color:gray;display:block;font-size:14px;text-transform:capitalize}.ui-widget.ui-widget-content .ui-menu-item a .product{display:block;font-size:16px;line-height:18px}.ui-widget.ui-widget-content .ui-menu-item a .price{color:#232323;display:block;font-size:16px}#_desktop_top_menu{text-align:left;display:block;float:left;padding:0 15px}#_desktop_top_menu #top-menu{margin:0}#top-menu>li{display:inline-block;vertical-align:middle;position:relative;text-transform:uppercase}@media (max-width:991px){#top-menu>li{display:block;padding:2px 0}}#top-menu>li .dropdown-item{white-space:normal}#top-menu>li>a{padding:16px 15px;font-weight:500;text-transform:uppercase;color:#000;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s}@media (max-width:991px){#top-menu>li>a{color:#000}}#top-menu>li>a:hover{color:#84a014}@media (max-width:991px){#top-menu>li>a:hover{color:#84a014}}#_desktop_top_menu #top-menu>li .sub-menu{top:50px;left:0;width:auto;z-index:18;padding:15px 10px;-webkit-transition:all 0.3s;-moz-transition:all 0.3s;-o-transition:all 0.3s;transition:all 0.3s;text-align:center;border-radius:0;border-top:2px solid #84a014}#_desktop_top_menu #top-menu>li .sub-menu.collapse{opacity:0;transform:scale(1,0);-webkit-transform:scale(1,0);-ms-transform:scale(1,0);-o-transform:scale(1,0);-moz-transform:scale(1,0);transform-origin:left top 0;-webkit-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;-moz-transform-origin:left top 0}#_desktop_top_menu #top-menu>li .sub-menu ul[data-depth="1"]>li{float:left;width:200px;text-align:left}#_desktop_top_menu #top-menu>li .sub-menu a:hover{color:#84a014}#_desktop_top_menu #top-menu>li:hover:hover .sub-menu{opacity:1;transform:scale(1,1);-webkit-transform:scale(1,1);-ms-transform:scale(1,1);-o-transform:scale(1,1);-moz-transform:scale(1,1)}.top-menu a.dropdown-submenu{color:#333;text-transform:uppercase;font-weight:600}.top-menu .collapse{display:inherit}.top-menu .category-image{max-width:100%;margin-top:10px}.top-menu .popover{max-width:inherit}.popover.bs-tether-element-attached-top{margin-top:0}#canvas{background-color:rgba(0,0,0,.7);position:fixed;left:0;right:0;bottom:0;top:0}#mobile_top_menu_wrapper{position:fixed;top:0;left:0;width:300px;bottom:0;background:#fff;z-index:999;overflow-y:auto;overflow-x:auto}#mobile_top_menu_wrapper #top_menu_closer{cursor:pointer;color:#333;margin-top:8px;margin-left:8px}#mobile_top_menu_wrapper #_mobile_top_menu{padding:10px}#mobile_top_menu_wrapper #top-menu{margin-bottom:0;text-align:left;display:block;padding:2px 0}#mobile_top_menu_wrapper .top-menu{color:#333}#mobile_top_menu_wrapper .top-menu .category-image{display:none}#mobile_top_menu_wrapper .top-menu .collapse-icons[aria-expanded="true"] .add{display:none}#mobile_top_menu_wrapper .top-menu .collapse-icons[aria-expanded="true"] .remove{display:block}#mobile_top_menu_wrapper .top-menu .collapse-icons .remove{display:none}#mobile_top_menu_wrapper .top-menu .navbar-toggler{display:inline-block;padding:0;position:absolute;right:0}#mobile_top_menu_wrapper .top-menu a[data-depth="0"]{padding:0;margin-bottom:8px}#mobile_top_menu_wrapper .top-menu .collapse{display:none}#mobile_top_menu_wrapper .top-menu .collapse.in{display:block}#mobile_top_menu_wrapper .top-menu .sub-menu{box-shadow:none;z-index:inherit;display:block;position:static;overflow:hidden;margin-left:0;width:100%;min-width:100%;border:none}#mobile_top_menu_wrapper .top-menu .sub-menu.collapse{display:none}#mobile_top_menu_wrapper .top-menu .sub-menu.collapse.in{display:block}#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="1"]{margin:0;padding:0}#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="1"]>li{float:none;margin:0}#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="1"]>li a{text-transform:none}#mobile_top_menu_wrapper .top-menu .sub-menu ul{padding:0 0 0 15px}#mobile_top_menu_wrapper .top-menu .sub-menu li>a{font-weight:500}#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="2"] li a{padding-left:1.25rem}#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="3"] li a{padding-left:2.5rem}#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="4"] li a{padding-left:3.75rem}#mobile_top_menu_wrapper .top-menu .popover{border-radius:0}#menu-icon{color:#fff;padding:14px 15px;font-size:24px}body#checkout{color:#232323}body#checkout .custom-checkbox{display:inline-block;vertical-align:middle}body#checkout section#content{margin-bottom:1.563rem}body#checkout .container{min-height:100%}body#checkout section.checkout-step{clear:both;background-color:#fff;border:1px solid #eaeaea;padding:15px;margin-bottom:10px}body#checkout section.checkout-step .step-title{text-transform:uppercase;cursor:pointer;font-size:16px;margin-bottom:0;font-weight:600}body#checkout section.checkout-step .content{padding:0 2.313rem;margin-top:10px}body#checkout section.checkout-step .step-edit{text-transform:lowercase;font-weight:400}body#checkout section.checkout-step .step-edit .edit{font-size:1rem}body#checkout section.checkout-step .not-allowed{cursor:not-allowed;opacity:.5}body#checkout section.checkout-step .content,body#checkout section.checkout-step .done,body#checkout section.checkout-step .step-edit{display:none}body#checkout section.checkout-step.-unreachable .step-title{cursor:not-allowed;opacity:.5}body#checkout section.checkout-step.-current .step-title{cursor:default}body#checkout section.checkout-step.-current .content{display:block}body#checkout section.checkout-step.-current.-reachable.-complete .done,body#checkout section.checkout-step.-current.-reachable.-complete .step-edit{display:none}body#checkout section.checkout-step.-current.-reachable.-complete .step-number{display:inline-block}body#checkout section.checkout-step.-current.-reachable.-complete .content{display:block}body#checkout section.checkout-step.-reachable.-complete h1 .done{display:inline-block}body#checkout section.checkout-step.-reachable.-complete h1 .step-number{display:none}body#checkout section.checkout-step.-reachable.-complete h1 .step-edit{cursor:pointer;display:block;float:right;margin-right:.125rem;color:#acaaa6}body#checkout section.checkout-step.-reachable.-complete .content{display:none}body#checkout section.checkout-step small{color:#acaaa6}body#checkout section.checkout-step .default-input{min-width:40%}body#checkout section.checkout-step .default-input[name=address1],body#checkout section.checkout-step .default-input[name=address2]{min-width:60%}body#checkout section.checkout-step .radio-field{margin-top:1.875rem}body#checkout section.checkout-step .radio-field label{display:inline}body#checkout section.checkout-step .checkbox-field div{margin-top:3.75rem}body#checkout section.checkout-step .checkbox-field+.checkbox-field div{margin-top:0}body#checkout section.checkout-step .select-field div{background:#f6f6f6;padding:.625rem 3.125rem}body#checkout section.checkout-step .form-footer{text-align:center;margin:8px 0}body#checkout section.checkout-step #conditions-to-approve{padding-top:1rem}body#checkout section.checkout-step #conditions-to-approve .checkbox-container{display:inline-block;margin-right:3px}body#checkout section.checkout-step #conditions-to-approve .condition-label{margin-top:0;margin-left:0;display:inline-block}body#checkout section.checkout-step .payment-options label{display:inline-block}body#checkout section.checkout-step .payment-options .custom-radio{margin-right:10px}body#checkout section.checkout-step .payment-options .payment-option{margin-bottom:.5rem}body#checkout section.checkout-step .step-number{display:inline-block;padding:.625rem}body#checkout section.checkout-step .address-selector{display:box;-js-display:flex;display:flex;box-pack:justify;justify-content:space-between;-ms-flex-pack:justify;box-align:start;align-items:flex-start;-ms-flex-align:start;box-lines:multiple;flex-wrap:wrap}body#checkout section.checkout-step .address-item{border:1px solid #eaeaea;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 0 75%;-moz-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;margin-bottom:15px}body#checkout section.checkout-step .address-item.selected{background:#fff}body#checkout section.checkout-step .address-item .h4{font-size:14px;line-height:24px}body#checkout section.checkout-step .address-alias{display:inline-block;font-weight:600;margin-bottom:.625rem}body#checkout section.checkout-step .address{margin-left:1.563rem;font-weight:400}body#checkout section.checkout-step .radio-block{padding:20px;text-align:left;cursor:pointer}body#checkout section.checkout-step .custom-radio{margin-right:5px;margin-top:0;width:18px;height:18px}body#checkout section.checkout-step .custom-radio input[type="radio"]{height:1.25rem;width:1.25rem}body#checkout section.checkout-step .custom-radio input[type="radio"]:checked+span{background-color:#84a014;width:8px;height:8px;left:4px;top:4px}body#checkout section.checkout-step .delete-address,body#checkout section.checkout-step .edit-address{color:#000;display:inline-block;margin:0 10px;vertical-align:middle}body#checkout section.checkout-step .delete-address .delete,body#checkout section.checkout-step .delete-address .edit,body#checkout section.checkout-step .edit-address .delete,body#checkout section.checkout-step .edit-address .edit{font-size:1rem;width:23px;height:18px}body#checkout section.checkout-step .delete-address:hover,body#checkout section.checkout-step .edit-address:hover{color:#84a014}body#checkout section.checkout-step hr{margin:0}body#checkout section.checkout-step .address-footer{text-align:center;padding:.625rem}body#checkout section.checkout-step #delivery-addresses,body#checkout section.checkout-step #invoice-addresses{margin-top:1.25rem}body#checkout section.checkout-step .add-address{margin-top:1.25rem}body#checkout section.checkout-step .add-address a{color:#232323}body#checkout section.checkout-step .add-address a i{font-size:.9375rem}body#checkout section.checkout-step .delivery-option{background:#f6f6f6;padding:.9375rem 0;margin-bottom:.9375rem}body#checkout section.checkout-step .delivery-option label{text-align:inherit;margin:0}body#checkout section.checkout-step .delivery-option img{width:3.125rem}body#checkout section.checkout-step .carrier-delay,body#checkout section.checkout-step .carrier-name{display:inline-block;word-break:break-word;text-align:left;vertical-align:middle;margin:0}body#checkout section.checkout-step #customer-form,body#checkout section.checkout-step #delivery-address,body#checkout section.checkout-step #invoice-address,body#checkout section.checkout-step #login-form{margin-left:.3125rem;margin-top:1.563rem}body#checkout section.checkout-step #customer-form .form-control-label,body#checkout section.checkout-step #delivery-address .form-control-label,body#checkout section.checkout-step #invoice-address .form-control-label,body#checkout section.checkout-step #login-form .form-control-label{text-align:left}body#checkout section.checkout-step #customer-form .radio-inline,body#checkout section.checkout-step #delivery-address .radio-inline,body#checkout section.checkout-step #invoice-address .radio-inline,body#checkout section.checkout-step #login-form .radio-inline{padding:0}body#checkout section.checkout-step .sign-in{font-size:.875rem}body#checkout section.checkout-step .forgot-password{margin-left:14.38rem}body#checkout .additional-information{font-size:.875rem;margin-left:2.875rem;margin-top:1.25rem}body#checkout .condition-label{margin-left:2.5rem;margin-top:.625rem}body#checkout .condition-label label{text-align:inherit}body#checkout .cancel-address{margin:.625rem;display:block;color:#acaaa6;text-decoration:underline}body#checkout .modal-content{padding:1.25rem;background-color:#f1f1f1}body#checkout #cart-summary-product-list{font-size:.875rem}body#checkout #cart-summary-product-list img{border:#eee 1px solid;width:70px}body#checkout #cart-summary-product-list .media-body{vertical-align:middle}body#checkout #cart-summary-product-list .media-body span{margin-bottom:5px}body#checkout #cart-summary-product-list .media-body .product-quantity{display:inline-block;font-weight:500}body#checkout #cart-summary-product-list .media-body .product-price{font-size:16px;display:block;color:#84a014;font-weight:400}body#checkout #cart-summary-product-list .media-body .product-line-info{margin-bottom:5px}body#checkout #cart-summary-product-list .media{margin-bottom:10px}body#checkout #order-summary-content{padding-top:.9375rem}body#checkout #order-summary-content h4.h4{margin-top:.625rem;margin-bottom:1.25rem;color:#232323}body#checkout #order-summary-content h4.black{color:#000}body#checkout #order-summary-content h4.addresshead{margin-top:.1875rem}body#checkout #order-summary-content .noshadow{box-shadow:none}body#checkout #order-summary-content #order-items{border-right:0}body#checkout #order-summary-content #order-items h3.h3{color:#232323;margin-top:1.25rem}body#checkout #order-summary-content #order-items table tr:first-child td{border-top:0}body#checkout #order-summary-content .order-confirmation-table{padding:1rem;margin-bottom:2rem;background-color:#fff;border:3px solid #e5e5e5;border-radius:0}body#checkout #order-summary-content .summary-selected-carrier{margin-bottom:.75rem;background-color:#fff;border:1px solid #e5e5e5;border-radius:0;padding:1rem}body#checkout #order-summary-content .summary-selected-carrier .logo-container{text-align:center}body#checkout #order-summary-content .summary-selected-carrier .logo-container img{width:3.125rem}body#checkout #order-summary-content .step-edit{display:inline;color:#acaaa6}body#checkout #order-summary-content .step-edit:hover{cursor:pointer}body#checkout #order-summary-content a .step-edit{color:#acaaa6}body#checkout #gift_message,body#checkout #delivery{max-width:100%;border-color:#232323}body#checkout #gift_message textarea,body#checkout #delivery textarea{max-width:100%;border:1px solid rgba(0,0,0,.1);margin-bottom:10px}body#checkout #gift_message label,body#checkout #delivery label{text-align:left}#order-details ul{margin-bottom:1.25rem}#order-details ul li{margin-bottom:.625rem}#order-items .h3{font-size:14px;padding:0;margin-bottom:0}@media (max-width:991px){#order-items .h3._desktop-title{display:none}}#order-items hr{border-top-color:#232323}#order-items table{width:100%}#order-items table tr{height:1.875rem}#order-items table tr td:last-child{text-align:right}#order-items .order-line{margin-top:1rem;padding-top:25px;border:1px solid #f1f1f1;margin-bottom:10px}#order-items .image img{width:100%;border:1px solid #eee;margin-bottom:1rem}#order-items .details{margin-bottom:1rem}#order-items .details .customizations{margin-top:.625rem}#order-items .qty{margin-bottom:1rem}.order-header{background:#f5f5f5;padding:20px;margin-bottom:12px;font-size:14px;text-transform:uppercase}#order-confirmation #registration-form{width:50%;margin:0 auto 1rem}@media (max-width:991px){.done{margin-right:.625rem;padding:0}body#checkout section.checkout-step .address-item{flex-grow:1}body#checkout section.checkout-step .delivery-option-2{flex-direction:column}.delivery-option{-js-display:flex;display:flex;margin:auto}.delivery-option .custom-radio{flex:0 0 auto}.condition-label label[for="conditions_to_approve[terms-and-conditions]"]{text-align:left}#order-confirmation #registration-form{width:100%}}@media (max-width:767px){body#checkout section.checkout-step.-reachable.-complete h1 .step-edit{float:none;margin-top:.25rem;margin-left:1.25rem}body#checkout #header .header-nav{max-height:none;padding:0}body#checkout section.checkout-step .content{padding:.9375rem}body#checkout .form-group{margin-bottom:.5rem}#order-items{border-right:0;margin-bottom:2.5rem}#order-items hr{border-top-color:#f1f1f1}.bold{font-weight:700}#order-details{padding-left:.9375rem}#order-details .card-title{border-bottom:1px solid #f1f1f1;margin-bottom:1rem;padding-bottom:1rem}}@media (max-width:543px){body#checkout section.checkout-step .content{padding:.9375rem 0}#payment-confirmation button{font-size:.875rem}#payment-confirmation button.btn{white-space:normal}}.js-payment-binary{display:none}.js-payment-binary .accept-cgv{display:none}.js-payment-binary.disabled{opacity:.6;cursor:not-allowed}.js-payment-binary.disabled::before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}.js-payment-binary.disabled .accept-cgv{display:block}.table-labeled th{vertical-align:middle}.table-labeled td{vertical-align:middle}.table-labeled .label{font-weight:400;border-radius:3px;font-size:inherit;padding:.25rem .375rem;margin:.125rem;color:#fff;white-space:nowrap}.page-order .table{margin-bottom:0}.page-order table th{padding:.5rem}.page-order table td{padding:.5rem}.page-order table thead th{text-align:center}#authentication .tooltip.tooltip-bottom{padding:0;margin:0}#authentication .custom-checkbox{-js-display:flex;display:flex}#authentication .custom-checkbox span{flex:0 0 .9375rem}#authentication .custom-checkbox label{padding-left:.625rem}#identity .radio-inline,#authentication .radio-inline{padding:0}#identity .radio-inline .custom-radio,#authentication .radio-inline .custom-radio{margin-right:0}.page-customer-account #content .order-actions a{padding:0 .125rem;-webkit-transition:all 0.3s;-moz-transition:all 0.3s;-o-transition:all 0.3s;transition:all 0.3s}.page-customer-account #content .order-actions a:hover{color:#84a014}.page-customer-account #content .forgot-password{text-align:center;font-size:.875rem;margin-top:1rem;padding-bottom:.9375rem}.page-customer-account #content .no-account{text-align:center;font-size:1rem}.page-authentication #content{box-shadow:2px 2px 8px 0 rgba(0,0,0,.2);max-width:640px;margin:0 auto}.page-addresses .address{background:#FFF;margin-bottom:1.875rem;font-size:.875rem;color:gray}.page-addresses .address .address-body{padding:1rem}.page-addresses .address .address-body h4{font-size:1rem;font-weight:600;color:#000}.page-addresses .address .address-body address{min-height:9rem;line-height:1.7}.page-addresses .address .address-footer{border-top:1px solid #ddd;padding:10px 0}.page-addresses .address .address-footer a{color:#000;margin-right:10px}.page-addresses .address .address-footer a:hover{color:#84a014}.page-addresses .address .address-footer a i{font-size:1rem}.page-addresses .address .address-footer a span{font-size:.9375rem;vertical-align:middle}.page-addresses .addresses-footer{margin:0 .9375rem}.page-addresses .addresses-footer a{color:#232323}.page-addresses .addresses-footer a:hover{color:#232323}.page-addresses .addresses-footer a i{font-size:1rem}.page-addresses .addresses-footer a span{font-size:15px;vertical-align:middle}.page-order-detail{font-size:.875rem;color:#acaaa6}.page-order-detail .box{border:1px solid #eaeaea;background:#fff;padding:1rem;margin-bottom:1rem}.page-order-detail h3{font-size:1rem;font-weight:700;text-transform:uppercase;color:#232323;margin-bottom:1rem}.page-order-detail #order-infos ul{margin:0}@media (max-width:543px){.page-order-detail #order-infos .reorder{padding:0}}.page-order-detail #order-history .history-lines .history-line{padding:.5rem 0;border-bottom:1px solid #f6f6f6}.page-order-detail #order-history .history-lines .history-line:last-child{border-bottom:0}.page-order-detail #order-history .history-lines .history-line .label{display:inline-block;margin:.25rem 0;padding:.25rem .375rem;color:#fff;border-radius:3px}@media (max-width:543px){.page-order-detail #order-history .history-lines .history-line .label{font-size:11px}}.page-order-detail .addresses{margin:0 -.9375rem}.page-order-detail .addresses h4{font-size:1rem;font-weight:700;color:#232323}.page-order-detail .addresses address{line-height:1.7}.page-order-detail #order-products.return{margin-bottom:1rem}.page-order-detail #order-products.return th.head-checkbox{width:30px}.page-order-detail #order-products.return td{padding:1.375rem .75rem}.page-order-detail #order-products.return td.qty{min-width:125px}.page-order-detail #order-products.return td.qty .current{width:30%;float:left;text-align:right;padding-right:.5rem}.page-order-detail #order-products.return td.qty .select{width:70%;float:left;margin:-.625rem 0;padding-left:.25rem}.page-order-detail #order-products.return td.qty .select select{text-align:center}.page-order-detail .order-items{padding:0!important}.page-order-detail .order-items .order-item{padding:1rem 1rem 0;border-bottom:1px solid #f6f6f6}.page-order-detail .order-items .order-item .checkbox{width:30px;float:left;padding:0 .9375rem}.page-order-detail .order-items .order-item .content{width:calc(100% - 30px);float:left;padding:0 .9375rem}.page-order-detail .order-items .order-item .desc{margin-bottom:1rem}.page-order-detail .order-items .order-item .desc .name{font-weight:700}.page-order-detail .order-items .order-item .qty{margin-bottom:1rem}.page-order-detail .order-items .order-item .qty .q{margin-bottom:.25rem}.page-order-detail .order-items .order-item .qty .s{margin-bottom:.25rem}.page-order-detail .messages .message{margin-top:.5rem;border-bottom:1px solid #f6f6f6}.page-order-detail .messages .message:last-child{border-bottom:0}.page-order-detail .messages .message>div{margin-bottom:.5rem}.page-order-detail .customization{margin-top:.75rem}#order-return-infos .thead-default th{color:#232323}#order-return-infos .customization{margin-top:.75rem}.page-my-account #content .links{-js-display:flex;display:flex;flex-wrap:wrap;justify-content:flex-start}.page-my-account #content .links a{text-align:center;display:inline-block;font-size:16px;font-weight:400;text-transform:capitalize;color:#000;padding:0 .9375rem;margin-bottom:1.875rem;-webkit-transition:all 0.3s;-moz-transition:all 0.3s;-o-transition:all 0.3s;transition:all 0.3s}.page-my-account #content .links a#identity-link .link-item:before{content:"\F007"}.page-my-account #content .links a#addresses-link .link-item:before,.page-my-account #content .links a#address-link .link-item:before{content:"\F041"}.page-my-account #content .links a#history-link .link-item:before{content:"\F073"}.page-my-account #content .links a#order-slips-link .link-item:before{content:"\F15C"}.page-my-account #content .links a#mywishlist-link .link-item:before{content:"\F004"}.page-my-account #content .links a#discounts-link .link-item:before{content:"\F02C"}.page-my-account #content .links a span.link-item{border:1px solid transparent;background:#f7f7f7;display:block;height:100%;padding:80px 0 20px;position:relative}.page-my-account #content .links a span.link-item:before{color:#000;font-family:FontAwesome;font-size:30px;left:0;margin:0 auto;padding-left:10px;padding-right:10px;padding-top:13px;position:absolute;right:0;text-align:center;top:20px;-webkit-transition:all 0.3s;-moz-transition:all 0.3s;-o-transition:all 0.3s;transition:all 0.3s}.page-my-account #content .links a i{display:none;font-size:2.6rem;width:100%;color:#232323;padding-bottom:3.4rem}.page-my-account #content .links a:hover{color:#444}.page-my-account #content .links a:hover i{color:#444}.page-my-account #content .links a:hover span.link-item:before{color:#444}#history .orders{margin:0 -1rem}#history .orders .order{padding:.75rem 1rem;border-bottom:1px solid #eaeaea}#history .orders .order a h3{color:#000;font-size:15px;font-weight:500}#history .orders .order .label{display:inline-block;margin:.25rem 0;padding:.25rem .375rem;color:#fff;border-radius:3px}@media (max-width:543px){#history .orders .order .label{font-size:11px}}#history .orders .order:last-child{border-bottom:0}.page-footer .account-link{margin-right:1rem}.page-footer .account-link i{font-size:1rem}.page-footer .account-link span{font-size:.875rem;vertical-align:middle}.login-form{margin-top:15px}.js-address-form,.js-customer-form{padding:20px}#order-slip .page-content,#history .page-content{padding:20px}.forgotten-password{padding:4px}.forgotten-password .form-fields .center-email-fields{-js-display:flex;display:flex;justify-content:center}.forgotten-password .form-fields .email{padding-left:0;padding-right:0;width:430px}.forgotten-password .form-fields .email input{height:54px}.forgotten-password .form-fields label.required{width:130px}.send-renew-password-link{padding-left:10px;padding-right:10px}.renew-password{margin-left:10px}.renew-password .email{padding-bottom:30px}.renew-password [type=submit]{margin-left:50px}.carousel{box-shadow:1px 1px 7px 0 rgba(0,0,0,.15);margin-bottom:1.5rem}.carousel .direction{z-index:auto}.carousel .carousel-inner{height:340px}@media (max-width:767px){.carousel .carousel-inner{height:auto}}.carousel .carousel-item{height:100%}@media (max-width:767px){.carousel .carousel-item img{max-width:100%;height:auto}}@media (min-width:768px){.carousel .carousel-item img{width:100%;margin-left:0}}.carousel .carousel-item .caption{position:absolute;color:#fff;max-width:340px}@media (min-width:768px){.carousel .carousel-item .caption{bottom:28px;left:90px}}@media (max-width:767px){.carousel .carousel-item .caption{bottom:5px;left:40px}}.carousel .carousel-item .caption .caption-description p{color:#fff}@media (max-width:767px){.carousel .carousel-item figure{margin:0}}.carousel .carousel-control{opacity:1}.carousel .carousel-control .icon-next::before,.carousel .carousel-control .icon-prev::before{content:""}.carousel .carousel-control .icon-next i,.carousel .carousel-control .icon-prev i{font-size:3.125rem;color:#fff}.carousel .carousel-control .icon-next:hover i,.carousel .carousel-control .icon-prev:hover i{color:#000}.carousel .carousel-control .icon-prev{left:1rem}.carousel .carousel-control .icon-next{right:2rem}.carousel .carousel-control.left,.carousel .carousel-control.right{background:none}#products,.featured-products,.product-accessories,.product-miniature{padding:10px 15px;position:relative;overflow:hidden}.ishiproducts-grid #products,.ishiproducts-grid .featured-products,.ishiproducts-grid .product-accessories,.ishiproducts-grid .product-miniature{padding:15px 0}#products .product-thumbnail,.featured-products .product-thumbnail,.product-accessories .product-thumbnail,.product-miniature .product-thumbnail{display:block;text-align:center}#products .product-container,.featured-products .product-container,.product-accessories .product-container,.product-miniature .product-container{-webkit-transition:all .5s;-moz-transition:all .5s;-o-transition:all .5s;transition:all .5s}@media (max-width:543px){#products .product-container,.featured-products .product-container,.product-accessories .product-container,.product-miniature .product-container{max-width:370px;margin:auto}}#products .product-container .thumbnail-container,.featured-products .product-container .thumbnail-container,.product-accessories .product-container .thumbnail-container,.product-miniature .product-container .thumbnail-container{position:relative;overflow:hidden}#products .product-container .thumbnail-container .thumbnail-inner,.featured-products .product-container .thumbnail-container .thumbnail-inner,.product-accessories .product-container .thumbnail-container .thumbnail-inner,.product-miniature .product-container .thumbnail-container .thumbnail-inner{position:relative;overflow:hidden}@media (max-width:543px){#products .product-container .thumbnail-container .thumbnail-inner .product-flags,.featured-products .product-container .thumbnail-container .thumbnail-inner .product-flags,.product-accessories .product-container .thumbnail-container .thumbnail-inner .product-flags,.product-miniature .product-container .thumbnail-container .thumbnail-inner .product-flags{opacity:1}}#products .product-container .thumbnail-container .thumbnail-inner .product-flags>li,.featured-products .product-container .thumbnail-container .thumbnail-inner .product-flags>li,.product-accessories .product-container .thumbnail-container .thumbnail-inner .product-flags>li,.product-miniature .product-container .thumbnail-container .thumbnail-inner .product-flags>li{position:absolute;display:block;padding:5px 7px;color:#232323;font-family:"Poppins",sans-serif;text-transform:capitalize;font-size:14px;font-weight:400;-webkit-transition:all 0.3s;-moz-transition:all 0.3s;-o-transition:all 0.3s;transition:all 0.3s}#products .product-container .thumbnail-container .thumbnail-inner .product-flags>li:hover,.featured-products .product-container .thumbnail-container .thumbnail-inner .product-flags>li:hover,.product-accessories .product-container .thumbnail-container .thumbnail-inner .product-flags>li:hover,.product-miniature .product-container .thumbnail-container .thumbnail-inner .product-flags>li:hover{color:#84a014}#products .product-container .thumbnail-container .thumbnail-inner .product-flags .discount,#products .product-container .thumbnail-container .thumbnail-inner .product-flags .on-sale,.featured-products .product-container .thumbnail-container .thumbnail-inner .product-flags .discount,.featured-products .product-container .thumbnail-container .thumbnail-inner .product-flags .on-sale,.product-accessories .product-container .thumbnail-container .thumbnail-inner .product-flags .discount,.product-accessories .product-container .thumbnail-container .thumbnail-inner .product-flags .on-sale,.product-miniature .product-container .thumbnail-container .thumbnail-inner .product-flags .discount,.product-miniature .product-container .thumbnail-container .thumbnail-inner .product-flags .on-sale{top:5px;right:5px;color:#84a014}#products .product-container .thumbnail-container .thumbnail-inner .product-flags .discount,.featured-products .product-container .thumbnail-container .thumbnail-inner .product-flags .discount,.product-accessories .product-container .thumbnail-container .thumbnail-inner .product-flags .discount,.product-miniature .product-container .thumbnail-container .thumbnail-inner .product-flags .discount{bottom:5px;top:auto;right:5px;display:none}@media (min-width:544px){#products .product-container .thumbnail-container .thumbnail-inner .product-flags .discount,.featured-products .product-container .thumbnail-container .thumbnail-inner .product-flags .discount,.product-accessories .product-container .thumbnail-container .thumbnail-inner .product-flags .discount,.product-miniature .product-container .thumbnail-container .thumbnail-inner .product-flags .discount{opacity:0;transform:translateX(100px);-moz-transform:translateX(100px);-webkit-transform:translateX(100px);-o-transform:translateX(100px);-ms-transform:translateX(100px)}}#products .product-container .thumbnail-container .thumbnail-inner .product-flags .new,.featured-products .product-container .thumbnail-container .thumbnail-inner .product-flags .new,.product-accessories .product-container .thumbnail-container .thumbnail-inner .product-flags .new,.product-miniature .product-container .thumbnail-container .thumbnail-inner .product-flags .new{top:5px;left:5px;right:auto;bottom:auto;color:#000}@media (min-width:544px){#products .product-container .thumbnail-container .thumbnail-inner .product-flags .new,.featured-products .product-container .thumbnail-container .thumbnail-inner .product-flags .new,.product-accessories .product-container .thumbnail-container .thumbnail-inner .product-flags .new,.product-miniature .product-container .thumbnail-container .thumbnail-inner .product-flags .new{opacity:0;transform:translateX(-100px);-moz-transform:translateX(-100px);-webkit-transform:translateX(-100px);-o-transform:translateX(-100px);-ms-transform:translateX(-100px)}}#products .product-container .thumbnail-container .thumbnail-inner .product-flags .online-only,.featured-products .product-container .thumbnail-container .thumbnail-inner .product-flags .online-only,.product-accessories .product-container .thumbnail-container .thumbnail-inner .product-flags .online-only,.product-miniature .product-container .thumbnail-container .thumbnail-inner .product-flags .online-only{left:5px;bottom:5px;display:none}#products .product-container .thumbnail-container .thumbnail-inner .product-flags .online-only::before,.featured-products .product-container .thumbnail-container .thumbnail-inner .product-flags .online-only::before,.product-accessories .product-container .thumbnail-container .thumbnail-inner .product-flags .online-only::before,.product-miniature .product-container .thumbnail-container .thumbnail-inner .product-flags .online-only::before{content:"\E30A";font-family:'Material Icons';vertical-align:-2px;margin:5px;font-size:12px}#products .product-container .thumbnail-container .thumbnail-inner .product-flags .pack,.featured-products .product-container .thumbnail-container .thumbnail-inner .product-flags .pack,.product-accessories .product-container .thumbnail-container .thumbnail-inner .product-flags .pack,.product-miniature .product-container .thumbnail-container .thumbnail-inner .product-flags .pack{color:#000;right:5px;top:30px}@media (min-width:544px){#products .product-container .thumbnail-container .thumbnail-inner .product-flags .pack,.featured-products .product-container .thumbnail-container .thumbnail-inner .product-flags .pack,.product-accessories .product-container .thumbnail-container .thumbnail-inner .product-flags .pack,.product-miniature .product-container .thumbnail-container .thumbnail-inner .product-flags .pack{transform:translateX(100px);-moz-transform:translateX(100px);-webkit-transform:translateX(100px);-o-transform:translateX(100px);-ms-transform:translateX(100px)}}#products .product-container .thumbnail-container .thumbnail-inner .product-thumbnail,.featured-products .product-container .thumbnail-container .thumbnail-inner .product-thumbnail,.product-accessories .product-container .thumbnail-container .thumbnail-inner .product-thumbnail,.product-miniature .product-container .thumbnail-container .thumbnail-inner .product-thumbnail{display:block;text-align:center;position:relative}#products .product-container .thumbnail-container .thumbnail-inner .product-thumbnail img,.featured-products .product-container .thumbnail-container .thumbnail-inner .product-thumbnail img,.product-accessories .product-container .thumbnail-container .thumbnail-inner .product-thumbnail img,.product-miniature .product-container .thumbnail-container .thumbnail-inner .product-thumbnail img{margin:0 auto;max-width:100%;-webkit-transition:all 0.7s ease 0s;-moz-transition:all 0.7s ease 0s;-ms-transition:all 0.7s ease 0s;-o-transition:all 0.7s ease 0s;transition:all 0.7s ease 0s}#products .product-container .thumbnail-container .thumbnail-inner .product-thumbnail .product-img-extra,#products .product-container .thumbnail-container .thumbnail-inner .product-thumbnail.change,.featured-products .product-container .thumbnail-container .thumbnail-inner .product-thumbnail .product-img-extra,.featured-products .product-container .thumbnail-container .thumbnail-inner .product-thumbnail.change,.product-accessories .product-container .thumbnail-container .thumbnail-inner .product-thumbnail .product-img-extra,.product-accessories .product-container .thumbnail-container .thumbnail-inner .product-thumbnail.change,.product-miniature .product-container .thumbnail-container .thumbnail-inner .product-thumbnail .product-img-extra,.product-miniature .product-container .thumbnail-container .thumbnail-inner .product-thumbnail.change{left:0;position:absolute;right:0;top:0;opacity:0;-moz-transform:scale(0,1);-webkit-transform:scale(0,1);-o-transform:scale(0,1);-ms-transform:scale(0,1);transform:scale(0,1)}#products .product-container .thumbnail-container .thumbnail-inner .product-thumbnail img,.featured-products .product-container .thumbnail-container .thumbnail-inner .product-thumbnail img,.product-accessories .product-container .thumbnail-container .thumbnail-inner .product-thumbnail img,.product-miniature .product-container .thumbnail-container .thumbnail-inner .product-thumbnail img{margin:0 auto;max-width:100%}#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons{color:#84a014;position:absolute;left:0;right:0;bottom:20px;text-align:center;cursor:pointer;display:inline-block}#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn,#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn{width:35px;display:inline-block;vertical-align:middle;height:35px;margin-right:5px;position:relative}@media (min-width:544px){#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn,#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn{opacity:0;-moz-transform:translateX(-100px);-webkit-transform:translatex(-100px);-o-transform:translateX(-100px);-ms-transform:translateX(-100px);-webkit-transition:all .5s;-moz-transition:all .5s;-o-transition:all .5s;transition:all .5s}}#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn:hover a:after,#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn:hover a:after,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn:hover a:after,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn:hover a:after,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn:hover a:after,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn:hover a:after,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn:hover a:after,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn:hover a:after{background:#000 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAABgCAYAAACNKSsVAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA+dpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSIgeG1wOkNyZWF0ZURhdGU9IjIwMTgtMDYtMDFUMTE6NDA6MzUrMDU6MzAiIHhtcDpNb2RpZnlEYXRlPSIyMDE4LTA2LTAxVDExOjQzOjI4KzA1OjMwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDE4LTA2LTAxVDExOjQzOjI4KzA1OjMwIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFNkU0NzlCRTY1NjIxMUU4OTM2QzkyOTlEMTI5Mzk4RSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFNkU0NzlCRjY1NjIxMUU4OTM2QzkyOTlEMTI5Mzk4RSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkU2RTQ3OUJDNjU2MjExRTg5MzZDOTI5OUQxMjkzOThFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU2RTQ3OUJENjU2MjExRTg5MzZDOTI5OUQxMjkzOThFIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+mRVmlwAAAulJREFUeNrsmk9IVEEcx2clpLAsaxGCIELq0CX7c+lSiBCR/TkGHoIOQocuHTp0EjoUQRJkEBGlB0HKzItB2JImIZJ2MuhQIkSRaCksuRJEr++wv2Ufrxb37fs9d9a+Ax/em9l5bz47zLw/vzcJz/NMpaYqU8GJ8pSnPOUpT3nKU57ya1y+GtwC38EC6AQbKkX+KjgJzoFW0Axuq7diX0ZiYAEc8+WbwDKo0mwnrp6vA199+WmwHmzSbGSd0nkughrZH5LtDnBC9t/Idi84IvtL4I4Lw2bSy6crYAS0+cougFFw2Vc2GbVdLfkOn1Qa3AWffWWzUrboK+twRf6MFz6djtpuQin0YSfotxCX3t8gCRZduM5biakQ9aeiimvfpF7FVHdV5EdiqlswJRTDfXYMz9lzrnR1BvUyR5zpeSvTW0S9Xg1x7Z7n8zzlKU95ylOe8pSnPOUpb3aDdnlHtUGlNPgCXoMbYJ9qa4qxw54iQx5DoFajTQ3p7eCjiM2DF6AG1IHxgPi0bDNgvwuB1gnQABrBOxkiSxLaeBKoOwh2mmysfkLiPWUbNinpyYOStz09Bw6Aw2Am0PPDUi8p+Zko7WtFiXPnuQTGwNsC9XoC9cs+YXMB1RbJtxeYqF3y+yHJ/5J5UfYJ+0GEusFW+SOd4BG4B86CLeCm5oTVDH08BOdlfxi8Bz9N9uPaLpP/0PDMZL9TpV26zlv2SO9+CgwZO4nvg0bN9hh0ojzlKU95ylOe8pSnPOXV0lGQAhmTXaJ1XaIDlmtgVn5LSd3ISet53i69em7+Xn5o35rs8pRTgfJlcByMuiBve7M55DEvSzgmFvkfJr9ArtiUKeGYWMZ8KQsh5l2ZsF0lHNPtSvRgM3gaYnFcvxzjxOo+yzYwUIT4gNQ1LsnnAqj9K/R4Uqu9OBZBW7m+f4g/1hSPS95IvNL/B/qkzFRKxGwjeCB32Da5F6gmhvsoT3nKU57ylKc85Sn/n8v/EWAAB0AmqhZyrCQAAAAASUVORK5CYII=) no-repeat center;background-position:-7px -31px}#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn a,#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn a,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn a,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn a,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn a,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn a,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn a,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn a{border:none}#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn a:after,#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn a:after,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn a:after,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn a:after,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn a:after,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn a:after,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn a:after,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn a:after{content:"";height:35px;width:35px;background:#84a014 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAABgCAYAAACNKSsVAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA+dpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSIgeG1wOkNyZWF0ZURhdGU9IjIwMTgtMDYtMDFUMTE6NDA6MzUrMDU6MzAiIHhtcDpNb2RpZnlEYXRlPSIyMDE4LTA2LTAxVDExOjQzOjI4KzA1OjMwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDE4LTA2LTAxVDExOjQzOjI4KzA1OjMwIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFNkU0NzlCRTY1NjIxMUU4OTM2QzkyOTlEMTI5Mzk4RSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFNkU0NzlCRjY1NjIxMUU4OTM2QzkyOTlEMTI5Mzk4RSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkU2RTQ3OUJDNjU2MjExRTg5MzZDOTI5OUQxMjkzOThFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU2RTQ3OUJENjU2MjExRTg5MzZDOTI5OUQxMjkzOThFIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+mRVmlwAAAulJREFUeNrsmk9IVEEcx2clpLAsaxGCIELq0CX7c+lSiBCR/TkGHoIOQocuHTp0EjoUQRJkEBGlB0HKzItB2JImIZJ2MuhQIkSRaCksuRJEr++wv2Ufrxb37fs9d9a+Ax/em9l5bz47zLw/vzcJz/NMpaYqU8GJ8pSnPOUpT3nKU57ya1y+GtwC38EC6AQbKkX+KjgJzoFW0Axuq7diX0ZiYAEc8+WbwDKo0mwnrp6vA199+WmwHmzSbGSd0nkughrZH5LtDnBC9t/Idi84IvtL4I4Lw2bSy6crYAS0+cougFFw2Vc2GbVdLfkOn1Qa3AWffWWzUrboK+twRf6MFz6djtpuQin0YSfotxCX3t8gCRZduM5biakQ9aeiimvfpF7FVHdV5EdiqlswJRTDfXYMz9lzrnR1BvUyR5zpeSvTW0S9Xg1x7Z7n8zzlKU95ylOe8pSnPOUpb3aDdnlHtUGlNPgCXoMbYJ9qa4qxw54iQx5DoFajTQ3p7eCjiM2DF6AG1IHxgPi0bDNgvwuB1gnQABrBOxkiSxLaeBKoOwh2mmysfkLiPWUbNinpyYOStz09Bw6Aw2Am0PPDUi8p+Zko7WtFiXPnuQTGwNsC9XoC9cs+YXMB1RbJtxeYqF3y+yHJ/5J5UfYJ+0GEusFW+SOd4BG4B86CLeCm5oTVDH08BOdlfxi8Bz9N9uPaLpP/0PDMZL9TpV26zlv2SO9+CgwZO4nvg0bN9hh0ojzlKU95ylOe8pSnPOXV0lGQAhmTXaJ1XaIDlmtgVn5LSd3ISet53i69em7+Xn5o35rs8pRTgfJlcByMuiBve7M55DEvSzgmFvkfJr9ArtiUKeGYWMZ8KQsh5l2ZsF0lHNPtSvRgM3gaYnFcvxzjxOo+yzYwUIT4gNQ1LsnnAqj9K/R4Uqu9OBZBW7m+f4g/1hSPS95IvNL/B/qkzFRKxGwjeCB32Da5F6gmhvsoT3nKU57ylKc85Sn/n8v/EWAAB0AmqhZyrCQAAAAASUVORK5CYII=) no-repeat center;background-position:-7px -31px;display:block;margin:0 auto;-webkit-transition:all .5s;-moz-transition:all .5s;-o-transition:all .5s;transition:all .5s}#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn i,#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn i,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn i,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn i,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn i,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn i,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn i,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn i{display:none}#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn .lblquickview,#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn .lblquickview,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn .lblquickview,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn .lblquickview,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn .lblquickview,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn .lblquickview,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn .lblquickview,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn .lblquickview{display:none}#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn{display:inline-block;vertical-align:middle;margin:0 auto;text-align:center}@media (min-width:544px){#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn{opacity:0;-moz-transform:translateY(0);-webkit-transform:translateY(0);-o-transform:translateY(0);-ms-transform:translateY(0);-webkit-transition:all .5s;-moz-transition:all .5s;-o-transition:all .5s;transition:all .5s}}@media (max-width:543px){#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn{bottom:8px}}#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn:hover a,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn:hover a,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn:hover a,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn:hover a{background:#000;color:#fff}@media (min-width:992px){#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn:hover a,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn:hover a,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn:hover a,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn:hover a{}#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn:hover a:before,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn:hover a:before,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn:hover a:before,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn:hover a:before{background:#000 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAABgCAYAAACNKSsVAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA+dpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSIgeG1wOkNyZWF0ZURhdGU9IjIwMTgtMDYtMDFUMTE6NDA6MzUrMDU6MzAiIHhtcDpNb2RpZnlEYXRlPSIyMDE4LTA2LTAxVDExOjQzOjI4KzA1OjMwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDE4LTA2LTAxVDExOjQzOjI4KzA1OjMwIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFNkU0NzlCRTY1NjIxMUU4OTM2QzkyOTlEMTI5Mzk4RSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFNkU0NzlCRjY1NjIxMUU4OTM2QzkyOTlEMTI5Mzk4RSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkU2RTQ3OUJDNjU2MjExRTg5MzZDOTI5OUQxMjkzOThFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU2RTQ3OUJENjU2MjExRTg5MzZDOTI5OUQxMjkzOThFIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+mRVmlwAAAulJREFUeNrsmk9IVEEcx2clpLAsaxGCIELq0CX7c+lSiBCR/TkGHoIOQocuHTp0EjoUQRJkEBGlB0HKzItB2JImIZJ2MuhQIkSRaCksuRJEr++wv2Ufrxb37fs9d9a+Ax/em9l5bz47zLw/vzcJz/NMpaYqU8GJ8pSnPOUpT3nKU57ya1y+GtwC38EC6AQbKkX+KjgJzoFW0Axuq7diX0ZiYAEc8+WbwDKo0mwnrp6vA199+WmwHmzSbGSd0nkughrZH5LtDnBC9t/Idi84IvtL4I4Lw2bSy6crYAS0+cougFFw2Vc2GbVdLfkOn1Qa3AWffWWzUrboK+twRf6MFz6djtpuQin0YSfotxCX3t8gCRZduM5biakQ9aeiimvfpF7FVHdV5EdiqlswJRTDfXYMz9lzrnR1BvUyR5zpeSvTW0S9Xg1x7Z7n8zzlKU95ylOe8pSnPOUpb3aDdnlHtUGlNPgCXoMbYJ9qa4qxw54iQx5DoFajTQ3p7eCjiM2DF6AG1IHxgPi0bDNgvwuB1gnQABrBOxkiSxLaeBKoOwh2mmysfkLiPWUbNinpyYOStz09Bw6Aw2Am0PPDUi8p+Zko7WtFiXPnuQTGwNsC9XoC9cs+YXMB1RbJtxeYqF3y+yHJ/5J5UfYJ+0GEusFW+SOd4BG4B86CLeCm5oTVDH08BOdlfxi8Bz9N9uPaLpP/0PDMZL9TpV26zlv2SO9+CgwZO4nvg0bN9hh0ojzlKU95ylOe8pSnPOXV0lGQAhmTXaJ1XaIDlmtgVn5LSd3ISet53i69em7+Xn5o35rs8pRTgfJlcByMuiBve7M55DEvSzgmFvkfJr9ArtiUKeGYWMZ8KQsh5l2ZsF0lHNPtSvRgM3gaYnFcvxzjxOo+yzYwUIT4gNQ1LsnnAqj9K/R4Uqu9OBZBW7m+f4g/1hSPS95IvNL/B/qkzFRKxGwjeCB32Da5F6gmhvsoT3nKU57ylKc85Sn/n8v/EWAAB0AmqhZyrCQAAAAASUVORK5CYII=) no-repeat center;background-position:-2px -5px}}#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a{border:none;background:#84a014;color:#fff;font-size:13px;font-weight:400;letter-spacing:.5px;line-height:24px;border-radius:0;text-transform:uppercase;padding:0}#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a:before,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a:before,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a:before,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a:before{content:"";height:35px;width:6px;display:inline-block;vertical-align:middle;margin:0 auto;-webkit-transition:all .5s;-moz-transition:all .5s;-o-transition:all .5s;transition:all .5s}@media (min-width:992px){#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a:before,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a:before,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a:before,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a:before{}}#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a .lblcart,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a .lblcart,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a .lblcart,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a .lblcart{display:inline-block;vertical-align:middle;padding-right:10px}#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a i,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a i,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a i,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn a i{display:none}#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn{margin-right:0;margin-left:5px}@media (min-width:544px){#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn{opacity:0;-moz-transform:translateX(100px);-webkit-transform:translateX(100px);-o-transform:translateX(100px);-ms-transform:translateX(100px)}}#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn:hover a:after,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn:hover a:after,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn:hover a:after,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn:hover a:after{background-position:-7px -57px}#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn a:after,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn a:after,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn a:after,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn a:after{background-position:-7px -57px}#products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn .lblwishlist,.featured-products .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn .lblwishlist,.product-accessories .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn .lblwishlist,.product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn .lblwishlist{display:none}#products .product-container .highlighted-informations,.featured-products .product-container .highlighted-informations,.product-accessories .product-container .highlighted-informations,.product-miniature .product-container .highlighted-informations{display:none}#products .product-container .product-desc,.featured-products .product-container .product-desc,.product-accessories .product-container .product-desc,.product-miniature .product-container .product-desc{display:none}#products .product-container:hover .thumbnail-container .thumbnail-inner .product-thumbnail .change,.featured-products .product-container:hover .thumbnail-container .thumbnail-inner .product-thumbnail .change,.product-accessories .product-container:hover .thumbnail-container .thumbnail-inner .product-thumbnail .change,.product-miniature .product-container:hover .thumbnail-container .thumbnail-inner .product-thumbnail .change{opacity:1;-moz-transform:scale(1,1);-webkit-transform:scale(1,1);-o-transform:scale(1,1);-ms-transform:scale(1,1);transform:scale(1,1)}@media (max-width:543px){#products .product-container:hover .thumbnail-container .thumbnail-inner .product-thumbnail .change,.featured-products .product-container:hover .thumbnail-container .thumbnail-inner .product-thumbnail .change,.product-accessories .product-container:hover .thumbnail-container .thumbnail-inner .product-thumbnail .change,.product-miniature .product-container:hover .thumbnail-container .thumbnail-inner .product-thumbnail .change{opacity:0}}#category #products .product-container:hover .thumbnail-container .thumbnail-inner .product-thumbnail .product-img-extra,#category .featured-products .product-container:hover .thumbnail-container .thumbnail-inner .product-thumbnail .product-img-extra,#category .product-accessories .product-container:hover .thumbnail-container .thumbnail-inner .product-thumbnail .product-img-extra,#category .product-miniature .product-container:hover .thumbnail-container .thumbnail-inner .product-thumbnail .product-img-extra{opacity:1;-moz-transform:scale(1,1);-webkit-transform:scale(1,1);-o-transform:scale(1,1);-ms-transform:scale(1,1);transform:scale(1,1)}@media (max-width:543px){#category #products .product-container:hover .thumbnail-container .thumbnail-inner .product-thumbnail .product-img-extra,#category .featured-products .product-container:hover .thumbnail-container .thumbnail-inner .product-thumbnail .product-img-extra,#category .product-accessories .product-container:hover .thumbnail-container .thumbnail-inner .product-thumbnail .product-img-extra,#category .product-miniature .product-container:hover .thumbnail-container .thumbnail-inner .product-thumbnail .product-img-extra{opacity:0}}#products .product-container:hover .thumbnail-container .thumbnail-inner .product-flags,.featured-products .product-container:hover .thumbnail-container .thumbnail-inner .product-flags,.product-accessories .product-container:hover .thumbnail-container .thumbnail-inner .product-flags,.product-miniature .product-container:hover .thumbnail-container .thumbnail-inner .product-flags{opacity:1}@media (min-width:544px){#products .product-container:hover .thumbnail-container .thumbnail-inner .product-flags .new,#products .product-container:hover .thumbnail-container .thumbnail-inner .product-flags .discount,.featured-products .product-container:hover .thumbnail-container .thumbnail-inner .product-flags .new,.featured-products .product-container:hover .thumbnail-container .thumbnail-inner .product-flags .discount,.product-accessories .product-container:hover .thumbnail-container .thumbnail-inner .product-flags .new,.product-accessories .product-container:hover .thumbnail-container .thumbnail-inner .product-flags .discount,.product-miniature .product-container:hover .thumbnail-container .thumbnail-inner .product-flags .new,.product-miniature .product-container:hover .thumbnail-container .thumbnail-inner .product-flags .discount{opacity:1;transform:translateX(0);-moz-transform:translateX(0);-webkit-transform:translateX(0);-o-transform:translateX(0);-ms-transform:translateX(0)}}#products .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons,.featured-products .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons,.product-accessories .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons,.product-miniature .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons{opacity:1}@media (min-width:544px){#products .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons,.featured-products .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons,.product-accessories .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons,.product-miniature .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons{}#products .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn,.featured-products .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn,.product-accessories .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn,.product-miniature .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons .cart-btn{opacity:1}#products .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn,#products .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn,.featured-products .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn,.featured-products .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn,.product-accessories .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn,.product-accessories .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn,.product-miniature .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn,.product-miniature .product-container:hover .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn{opacity:1;-moz-transform:translateX(0);-webkit-transform:translateX(0);-o-transform:translateX(0);-ms-transform:translateX(0)}}#products .products-section-title,.featured-products .products-section-title,.product-accessories .products-section-title,.product-miniature .products-section-title{text-align:center;margin-bottom:1.5rem}#products .product-description,.featured-products .product-description,.product-accessories .product-description,.product-miniature .product-description{margin:15px 0 0;text-align:center}@media (max-width:543px){#products .product-description,.featured-products .product-description,.product-accessories .product-description,.product-miniature .product-description{text-align:center}}#products .product-description .product-title,.featured-products .product-description .product-title,.product-accessories .product-description .product-title,.product-miniature .product-description .product-title{margin-bottom:12px}#products .product-description .product-title a,.featured-products .product-description .product-title a,.product-accessories .product-description .product-title a,.product-miniature .product-description .product-title a{font-family:"Poppins",sans-serif;color:#202020;font-size:14px;text-decoration:none;text-align:center;font-weight:400;text-transform:capitalize;-webkit-transition:all .5s;-moz-transition:all .5s;-o-transition:all .5s;transition:all .5s}#products .product-description .product-comments,.featured-products .product-description .product-comments,.product-accessories .product-description .product-comments,.product-miniature .product-description .product-comments{margin-bottom:5px}#products .product-description .product-comments .star_content,.featured-products .product-description .product-comments .star_content,.product-accessories .product-description .product-comments .star_content,.product-miniature .product-description .product-comments .star_content{display:block;padding:0}#products .product-description .product-comments .star_content:after,.featured-products .product-description .product-comments .star_content:after,.product-accessories .product-description .product-comments .star_content:after,.product-miniature .product-description .product-comments .star_content:after{display:none}#products .product-description .product-comments .comment_advice,.featured-products .product-description .product-comments .comment_advice,.product-accessories .product-description .product-comments .comment_advice,.product-miniature .product-description .product-comments .comment_advice{display:none}#products .product-description .product-price-and-shipping,.featured-products .product-description .product-price-and-shipping,.product-accessories .product-description .product-price-and-shipping,.product-miniature .product-description .product-price-and-shipping{color:#a4a4a4;font-size:15px;font-weight:400;font-family:"Poppins",sans-serif;-webkit-transition:all .7s;-moz-transition:all .7s;-o-transition:all .7s;transition:all .7s}#products .product-description .product-price-and-shipping .regular-price,.featured-products .product-description .product-price-and-shipping .regular-price,.product-accessories .product-description .product-price-and-shipping .regular-price,.product-miniature .product-description .product-price-and-shipping .regular-price{text-decoration:line-through}#products .product-description .product-price-and-shipping .discount-percentage,#products .product-description .product-price-and-shipping .discount-amount,.featured-products .product-description .product-price-and-shipping .discount-percentage,.featured-products .product-description .product-price-and-shipping .discount-amount,.product-accessories .product-description .product-price-and-shipping .discount-percentage,.product-accessories .product-description .product-price-and-shipping .discount-amount,.product-miniature .product-description .product-price-and-shipping .discount-percentage,.product-miniature .product-description .product-price-and-shipping .discount-amount{color:#84a014;margin:0 10px;font-weight:500}#products .product-description .product-price-and-shipping .price,.featured-products .product-description .product-price-and-shipping .price,.product-accessories .product-description .product-price-and-shipping .price,.product-miniature .product-description .product-price-and-shipping .price{color:#000}#products .variant-links,.featured-products .variant-links,.product-accessories .variant-links,.product-miniature .variant-links{text-align:left}#products img,.featured-products img,.product-accessories img,.product-miniature img{margin-left:4px}#products .comments_note,.featured-products .comments_note,.product-accessories .comments_note,.product-miniature .comments_note{text-align:center;color:#acaaa6}#products .count,.featured-products .count,.product-accessories .count,.product-miniature .count{color:#7a7a7a;font-weight:700;position:relative;bottom:.5rem}#products .all-product-link,.featured-products .all-product-link,.product-accessories .all-product-link,.product-miniature .all-product-link{clear:both;color:#7a7a7a;font-weight:700;margin-top:1.5rem;margin-bottom:1.5rem}#products article:nth-child(3n+1){clear:left}@media (max-width:1199px){#products article{}#products article:nth-child(3n+1){clear:none}#products article:nth-child(2n+1){clear:left}}@media (max-width:991px){#products article{}#products article:nth-child(2n+1){clear:none}#products article:nth-child(3n+1){clear:left}}@media (max-width:767px){#products article{}#products article:nth-child(3n+1){clear:none}#products article:nth-child(2n+1){clear:left}}@media (max-width:543px){#products article{}#products article:nth-child(2n+1){clear:none}}.ishiproducts-grid div:nth-child(4n+1){clear:left}@media (max-width:1199px){.ishiproducts-grid div{}.ishiproducts-grid div:nth-child(4n+1){clear:none}.ishiproducts-grid div:nth-child(3n+1){clear:left}}@media (max-width:767px){.ishiproducts-grid div{}.ishiproducts-grid div:nth-child(3n+1){clear:none}.ishiproducts-grid div:nth-child(2n+1){clear:left}}@media (max-width:543px){.ishiproducts-grid div{}.ishiproducts-grid div:nth-child(2n+1){clear:none}}#products .products.list .product-miniature{padding:15px 0}#products .products.list .product-miniature .product-container{border:0}#products .products.list .product-miniature .product-container .thumbnail-container .thumbnail-inner{overflow:hidden}#products .products.list .product-miniature .product-container .thumbnail-container .thumbnail-inner .thumbnail-buttons{display:none}#products .products.list .product-miniature .product-container .product-description{text-align:left}@media (max-width:543px){#products .products.list .product-miniature .product-container .product-description{text-align:center}}#products .products.list .product-miniature .product-container .product-description .product-title,#products .products.list .product-miniature .product-container .product-description .product-price-and-shipping{margin-bottom:10px;opacity:1}#products .products.list .product-miniature .product-container .product-description .product-desc{display:block;margin-bottom:10px}#products .products.list .product-miniature .product-container .product-description .highlighted-informations{display:block;margin-bottom:10px}#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons{color:#84a014;position:relative;bottom:0;text-align:center;cursor:pointer;display:inline-block}#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .quickview-btn,#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .wishlist-btn{width:35px;display:inline-block;vertical-align:middle;height:35px;margin-right:5px;position:relative}@media (min-width:544px){#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .quickview-btn,#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .wishlist-btn{opacity:1;-moz-transform:translateX(0);-webkit-transform:translatex(0);-o-transform:translateX(0);-ms-transform:translateX(0);-webkit-transition:all .5s;-moz-transition:all .5s;-o-transition:all .5s;transition:all .5s}}#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .quickview-btn:hover a:after,#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .wishlist-btn:hover a:after{background:#000 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAABgCAYAAACNKSsVAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA+dpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSIgeG1wOkNyZWF0ZURhdGU9IjIwMTgtMDYtMDFUMTE6NDA6MzUrMDU6MzAiIHhtcDpNb2RpZnlEYXRlPSIyMDE4LTA2LTAxVDExOjQzOjI4KzA1OjMwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDE4LTA2LTAxVDExOjQzOjI4KzA1OjMwIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFNkU0NzlCRTY1NjIxMUU4OTM2QzkyOTlEMTI5Mzk4RSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFNkU0NzlCRjY1NjIxMUU4OTM2QzkyOTlEMTI5Mzk4RSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkU2RTQ3OUJDNjU2MjExRTg5MzZDOTI5OUQxMjkzOThFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU2RTQ3OUJENjU2MjExRTg5MzZDOTI5OUQxMjkzOThFIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+mRVmlwAAAulJREFUeNrsmk9IVEEcx2clpLAsaxGCIELq0CX7c+lSiBCR/TkGHoIOQocuHTp0EjoUQRJkEBGlB0HKzItB2JImIZJ2MuhQIkSRaCksuRJEr++wv2Ufrxb37fs9d9a+Ax/em9l5bz47zLw/vzcJz/NMpaYqU8GJ8pSnPOUpT3nKU57ya1y+GtwC38EC6AQbKkX+KjgJzoFW0Axuq7diX0ZiYAEc8+WbwDKo0mwnrp6vA199+WmwHmzSbGSd0nkughrZH5LtDnBC9t/Idi84IvtL4I4Lw2bSy6crYAS0+cougFFw2Vc2GbVdLfkOn1Qa3AWffWWzUrboK+twRf6MFz6djtpuQin0YSfotxCX3t8gCRZduM5biakQ9aeiimvfpF7FVHdV5EdiqlswJRTDfXYMz9lzrnR1BvUyR5zpeSvTW0S9Xg1x7Z7n8zzlKU95ylOe8pSnPOUpb3aDdnlHtUGlNPgCXoMbYJ9qa4qxw54iQx5DoFajTQ3p7eCjiM2DF6AG1IHxgPi0bDNgvwuB1gnQABrBOxkiSxLaeBKoOwh2mmysfkLiPWUbNinpyYOStz09Bw6Aw2Am0PPDUi8p+Zko7WtFiXPnuQTGwNsC9XoC9cs+YXMB1RbJtxeYqF3y+yHJ/5J5UfYJ+0GEusFW+SOd4BG4B86CLeCm5oTVDH08BOdlfxi8Bz9N9uPaLpP/0PDMZL9TpV26zlv2SO9+CgwZO4nvg0bN9hh0ojzlKU95ylOe8pSnPOXV0lGQAhmTXaJ1XaIDlmtgVn5LSd3ISet53i69em7+Xn5o35rs8pRTgfJlcByMuiBve7M55DEvSzgmFvkfJr9ArtiUKeGYWMZ8KQsh5l2ZsF0lHNPtSvRgM3gaYnFcvxzjxOo+yzYwUIT4gNQ1LsnnAqj9K/R4Uqu9OBZBW7m+f4g/1hSPS95IvNL/B/qkzFRKxGwjeCB32Da5F6gmhvsoT3nKU57ylKc85Sn/n8v/EWAAB0AmqhZyrCQAAAAASUVORK5CYII=) no-repeat center;background-position:-7px -31px}#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .quickview-btn a,#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .wishlist-btn a{border:none}#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .quickview-btn a:after,#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .wishlist-btn a:after{content:"";height:35px;width:35px;background:#84a014 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAABgCAYAAACNKSsVAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA+dpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSIgeG1wOkNyZWF0ZURhdGU9IjIwMTgtMDYtMDFUMTE6NDA6MzUrMDU6MzAiIHhtcDpNb2RpZnlEYXRlPSIyMDE4LTA2LTAxVDExOjQzOjI4KzA1OjMwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDE4LTA2LTAxVDExOjQzOjI4KzA1OjMwIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFNkU0NzlCRTY1NjIxMUU4OTM2QzkyOTlEMTI5Mzk4RSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFNkU0NzlCRjY1NjIxMUU4OTM2QzkyOTlEMTI5Mzk4RSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkU2RTQ3OUJDNjU2MjExRTg5MzZDOTI5OUQxMjkzOThFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU2RTQ3OUJENjU2MjExRTg5MzZDOTI5OUQxMjkzOThFIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+mRVmlwAAAulJREFUeNrsmk9IVEEcx2clpLAsaxGCIELq0CX7c+lSiBCR/TkGHoIOQocuHTp0EjoUQRJkEBGlB0HKzItB2JImIZJ2MuhQIkSRaCksuRJEr++wv2Ufrxb37fs9d9a+Ax/em9l5bz47zLw/vzcJz/NMpaYqU8GJ8pSnPOUpT3nKU57ya1y+GtwC38EC6AQbKkX+KjgJzoFW0Axuq7diX0ZiYAEc8+WbwDKo0mwnrp6vA199+WmwHmzSbGSd0nkughrZH5LtDnBC9t/Idi84IvtL4I4Lw2bSy6crYAS0+cougFFw2Vc2GbVdLfkOn1Qa3AWffWWzUrboK+twRf6MFz6djtpuQin0YSfotxCX3t8gCRZduM5biakQ9aeiimvfpF7FVHdV5EdiqlswJRTDfXYMz9lzrnR1BvUyR5zpeSvTW0S9Xg1x7Z7n8zzlKU95ylOe8pSnPOUpb3aDdnlHtUGlNPgCXoMbYJ9qa4qxw54iQx5DoFajTQ3p7eCjiM2DF6AG1IHxgPi0bDNgvwuB1gnQABrBOxkiSxLaeBKoOwh2mmysfkLiPWUbNinpyYOStz09Bw6Aw2Am0PPDUi8p+Zko7WtFiXPnuQTGwNsC9XoC9cs+YXMB1RbJtxeYqF3y+yHJ/5J5UfYJ+0GEusFW+SOd4BG4B86CLeCm5oTVDH08BOdlfxi8Bz9N9uPaLpP/0PDMZL9TpV26zlv2SO9+CgwZO4nvg0bN9hh0ojzlKU95ylOe8pSnPOXV0lGQAhmTXaJ1XaIDlmtgVn5LSd3ISet53i69em7+Xn5o35rs8pRTgfJlcByMuiBve7M55DEvSzgmFvkfJr9ArtiUKeGYWMZ8KQsh5l2ZsF0lHNPtSvRgM3gaYnFcvxzjxOo+yzYwUIT4gNQ1LsnnAqj9K/R4Uqu9OBZBW7m+f4g/1hSPS95IvNL/B/qkzFRKxGwjeCB32Da5F6gmhvsoT3nKU57ylKc85Sn/n8v/EWAAB0AmqhZyrCQAAAAASUVORK5CYII=) no-repeat center;background-position:-7px -31px;display:block;margin:0 auto;-webkit-transition:all .5s;-moz-transition:all .5s;-o-transition:all .5s;transition:all .5s}#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .quickview-btn i,#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .wishlist-btn i{display:none}#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .quickview-btn .lblquickview,#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .wishlist-btn .lblquickview{display:none}#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .cart-btn{display:inline-block;vertical-align:middle;margin:0 auto;text-align:center}@media (max-width:543px){#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .cart-btn{bottom:8px}}#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .cart-btn:hover a{background:#000;color:#fff}#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .cart-btn:hover a:before{background:#000 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAABgCAYAAACNKSsVAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA+dpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSIgeG1wOkNyZWF0ZURhdGU9IjIwMTgtMDYtMDFUMTE6NDA6MzUrMDU6MzAiIHhtcDpNb2RpZnlEYXRlPSIyMDE4LTA2LTAxVDExOjQzOjI4KzA1OjMwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDE4LTA2LTAxVDExOjQzOjI4KzA1OjMwIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFNkU0NzlCRTY1NjIxMUU4OTM2QzkyOTlEMTI5Mzk4RSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFNkU0NzlCRjY1NjIxMUU4OTM2QzkyOTlEMTI5Mzk4RSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkU2RTQ3OUJDNjU2MjExRTg5MzZDOTI5OUQxMjkzOThFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU2RTQ3OUJENjU2MjExRTg5MzZDOTI5OUQxMjkzOThFIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+mRVmlwAAAulJREFUeNrsmk9IVEEcx2clpLAsaxGCIELq0CX7c+lSiBCR/TkGHoIOQocuHTp0EjoUQRJkEBGlB0HKzItB2JImIZJ2MuhQIkSRaCksuRJEr++wv2Ufrxb37fs9d9a+Ax/em9l5bz47zLw/vzcJz/NMpaYqU8GJ8pSnPOUpT3nKU57ya1y+GtwC38EC6AQbKkX+KjgJzoFW0Axuq7diX0ZiYAEc8+WbwDKo0mwnrp6vA199+WmwHmzSbGSd0nkughrZH5LtDnBC9t/Idi84IvtL4I4Lw2bSy6crYAS0+cougFFw2Vc2GbVdLfkOn1Qa3AWffWWzUrboK+twRf6MFz6djtpuQin0YSfotxCX3t8gCRZduM5biakQ9aeiimvfpF7FVHdV5EdiqlswJRTDfXYMz9lzrnR1BvUyR5zpeSvTW0S9Xg1x7Z7n8zzlKU95ylOe8pSnPOUpb3aDdnlHtUGlNPgCXoMbYJ9qa4qxw54iQx5DoFajTQ3p7eCjiM2DF6AG1IHxgPi0bDNgvwuB1gnQABrBOxkiSxLaeBKoOwh2mmysfkLiPWUbNinpyYOStz09Bw6Aw2Am0PPDUi8p+Zko7WtFiXPnuQTGwNsC9XoC9cs+YXMB1RbJtxeYqF3y+yHJ/5J5UfYJ+0GEusFW+SOd4BG4B86CLeCm5oTVDH08BOdlfxi8Bz9N9uPaLpP/0PDMZL9TpV26zlv2SO9+CgwZO4nvg0bN9hh0ojzlKU95ylOe8pSnPOXV0lGQAhmTXaJ1XaIDlmtgVn5LSd3ISet53i69em7+Xn5o35rs8pRTgfJlcByMuiBve7M55DEvSzgmFvkfJr9ArtiUKeGYWMZ8KQsh5l2ZsF0lHNPtSvRgM3gaYnFcvxzjxOo+yzYwUIT4gNQ1LsnnAqj9K/R4Uqu9OBZBW7m+f4g/1hSPS95IvNL/B/qkzFRKxGwjeCB32Da5F6gmhvsoT3nKU57ylKc85Sn/n8v/EWAAB0AmqhZyrCQAAAAASUVORK5CYII=) no-repeat center;background-position:-2px -5px}#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .cart-btn a{border:none;background:#84a014;color:#fff;font-size:13px;font-weight:400;letter-spacing:.5px;line-height:24px;border-radius:0;text-transform:uppercase;padding:0}#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .cart-btn a:before{content:"";height:35px;width:6px;display:inline-block;vertical-align:middle;margin:0 auto;-webkit-transition:all .5s;-moz-transition:all .5s;-o-transition:all .5s;transition:all .5s}@media (min-width:992px){#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .cart-btn a:before{}}#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .cart-btn a .lblcart{display:inline-block;vertical-align:middle;padding-right:10px}#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .cart-btn a i{display:none}#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .wishlist-btn{margin-right:0;margin-left:5px}#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .wishlist-btn:hover a:after{background-position:-7px -57px}#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .wishlist-btn a:after{background-position:-7px -57px}#products .products.list .product-miniature .product-container .product-description .thumbnail-buttons .wishlist-btn .lblwishlist{display:none}#custom-text{background:#fff;border-radius:2px;margin-bottom:1.5rem;padding:3.125rem 3.125rem;text-align:center}#custom-text h3{text-transform:uppercase;color:#232323;font-size:1.563rem;font-weight:700}#custom-text p{color:#232323;font-weight:400;font-size:1.1em}#custom-text p .dark{color:#acaaa6;font-weight:400}.page-content.page-cms{background:#fff;padding:1.25rem;text-align:justify}.page-content.page-cms .cms-box img{max-width:100%}@media (max-width:991px){#block-cmsinfo{padding:1.25rem 1.875rem}}#products{color:#7a7a7a;padding:0}#products .products-select{-js-display:flex;display:flex;align-items:baseline;justify-content:space-between}#products .up{margin-bottom:1rem}#products .up .btn-secondary,#products .up .btn-tertiary{color:#acaaa6;text-transform:inherit}#products .up .btn-secondary .material-icons,#products .up .btn-tertiary .material-icons{margin-right:0}.block-category{margin-bottom:1.563rem;padding:0;border:none}.block-category .block-category-inner #category-description{margin-bottom:20px}.block-category .block-category-inner #category-description p,.block-category .block-category-inner #category-description strong{font-weight:400;color:#969696}.block-category .block-category-inner #category-description p{color:#969696;margin-bottom:0;line-height:21px;word-break:break-word}.block-category .block-category-inner #category-description span{font-size:14px;font-family:"Poppins",sans-serif;color:#969696}.block-category .block-category-inner .category-cover img{max-width:100%}.products-selection .sort-by-row{-js-display:flex;display:flex;align-items:center}.products-selection .sort-by{white-space:normal;word-break:break-word;margin-right:-.9375rem;margin-left:.9375rem;text-align:right}.products-selection .total-products{padding-top:.625rem;position:relative;top:3px}.products-selection .total-products p{margin-top:2px}.products-selection h1{padding-top:.625rem}.products-sort-order{color:#acaaa6}.products-sort-order .select-title{display:inline-block;width:100%;color:#232323;background:#fff;padding:.625rem;cursor:pointer;line-height:22px;border:1px solid rgba(0,0,0,.1)}.products-sort-order .select-list{display:block;color:#232323;padding:.625rem 1.25rem}.products-sort-order .select-list:hover{background:#000;color:#fff;text-decoration:none}.products-sort-order .dropdown-menu{left:auto;width:90%;background:#f6f6f6;border:none;border-radius:0;box-shadow:2px 2px 4px 0 rgba(0,0,0,.1);margin:0}@media (max-width:991px){.products-sort-order .dropdown-menu{width:94%}}.facet-dropdown{color:#acaaa6;padding-left:0;padding-right:0;background:#f1f1f1;border:3px solid transparent;box-sizing:border-box;box-shadow:1px 1px 1px 1px #f1f1f1}.facet-dropdown.open{border:0}.facet-dropdown.open>.select-title{border:3px solid #000;background:#f6f6f6}.facet-dropdown .select-title{display:inline-flex;align-items:center;margin-left:0;width:100%;color:#232323;background:#f1f1f1;padding:.625rem .625rem .625rem 1.25rem;cursor:pointer}.facet-dropdown .select-title>i{margin-left:auto}.facet-dropdown .select-list{display:block;color:#232323;background:#f6f6f6;padding:.625rem 1.25rem}.facet-dropdown .select-list:hover{background:#000;color:#fff;text-decoration:none}.facet-dropdown .dropdown-menu{padding:0;margin-top:3px;left:auto;width:100%;background:#f6f6f6;border:none;box-shadow:1px 1px 1px 1px #f1f1f1}#search_filters,#search_filters_brands,#search_filters_suppliers{margin-bottom:25px;background:#fff;border:1px solid #e9e9e9;padding:15px}#search_filters .facet,#search_filters_brands .facet,#search_filters_suppliers .facet{padding-top:.625rem}#search_filters .facet .collapse,#search_filters_brands .facet .collapse,#search_filters_suppliers .facet .collapse{display:block}#search_filters .facet .facet-title,#search_filters_brands .facet .facet-title,#search_filters_suppliers .facet .facet-title{color:#454545;font:500 14px/28px "Poppins",sans-serif;text-transform:uppercase;margin-bottom:0}#search_filters .facet .facet-label,#search_filters_brands .facet .facet-label,#search_filters_suppliers .facet .facet-label{margin-bottom:0}#search_filters .facet .facet-label a,#search_filters_brands .facet .facet-label a,#search_filters_suppliers .facet .facet-label a{font-size:14px;color:#969696;display:inline-block;line-height:28px;vertical-align:bottom}#search_filters .js-search-filters-clear-all,#search_filters_brands .js-search-filters-clear-all,#search_filters_suppliers .js-search-filters-clear-all{text-transform:uppercase;background-color:#000;color:#fff}#search_filters .js-search-filters-clear-all:hover,#search_filters_brands .js-search-filters-clear-all:hover,#search_filters_suppliers .js-search-filters-clear-all:hover{background-color:#84a014;border-color:#84a014}#search_filters_brands .facet,#search_filters_suppliers .facet{padding-top:0}#search_filters_brands .facet .facet-label,#search_filters_suppliers .facet .facet-label{margin-bottom:.3125rem}.pagination{width:100%;margin-top:15px;margin-bottom:15px;padding:14px 0;background-color:#f5f5f5}.pagination .pagination-desc{line-height:50px;font-size:14px;color:#333}@media (max-width:767px){.pagination .pagination-desc{text-align:center}}.pagination .pagination-right{float:right;text-align:right}@media (max-width:767px){.pagination .pagination-right{text-align:center}}.pagination .page-list{padding:.625rem 0;margin-bottom:0}.pagination .page-list li{display:inline-block;vertical-align:middle;text-align:center}.pagination .page-list .pagination-lbl{display:none}.pagination a{color:#000;font-weight:600;border:1px solid #eee;width:35px;height:35px;padding:8px;text-align:center;display:block;color:#000;background-color:#fff;box-shadow:0 0 5px -1px rgba(0,0,0,.1)}.pagination a:hover{color:#fff;background-color:#000}.pagination a:not(.previous):not(.next){letter-spacing:.125rem}.pagination .previous{float:left;padding:5px}.pagination .next{float:right;padding:5px}.pagination .disabled{cursor:not-allowed}.pagination .current a{background-color:#84a014;text-decoration:none;color:#fff}.active_filters{background:#dededd;padding:.625rem 1.875rem;margin-bottom:1.25rem}.active_filters .active-filter-title{display:inline-block;vertical-align:middle;margin-right:14px;font-weight:500;margin-bottom:0}.active_filters ul{display:inline;margin:0}.active_filters .filter-block{color:#232323;background:#fff;padding:.625rem;display:inline-block;font-size:.8125rem}.active_filters .filter-block .close{color:#232323;font-size:.9375rem;opacity:1;margin-top:1px;margin-left:5px}.block-categories{background:#f5f5f5;width:100%}.block-categories .collapse-icons{padding:5px}.block-categories .collapse-icons i{font-size:16px}.block-categories .category-top-menu{margin-bottom:0;padding:15px}.block-categories .category-sub-menu .category-sub-menu{margin-left:10px}.block-categories .category-sub-menu .category-sub-link{font-size:.875rem}.block-categories .category-sub-menu li{position:relative}.block-categories .category-sub-menu li[data-depth="1"]{margin-bottom:.625rem}.block-categories .category-sub-menu li[data-depth="0"]>a{font-weight:400;width:100%;display:inline-block;margin:.3125rem 0 0;padding-bottom:.1875rem;font-size:14px}.block-categories .category-sub-menu li:not([data-depth="0"]):not([data-depth="1"]){padding-left:.3125rem}.block-categories .category-sub-menu li:not([data-depth="0"]):not([data-depth="1"])::before{content:"-";margin-right:.3125rem}.block-categories a{color:#232323}.block-categories .collapse-icons{position:absolute;right:0;top:0;padding:0;cursor:pointer}.block-categories .collapse-icons[aria-expanded="true"] .add{display:none}.block-categories .collapse-icons[aria-expanded="true"] .remove{display:block}.block-categories .collapse-icons .add:hover,.block-categories .collapse-icons .remove:hover{color:#000}.block-categories .collapse-icons .remove{display:none}.block-categories .arrows .arrow-right,.block-categories .arrows .arrow-down{font-size:.875rem;cursor:pointer;margin-left:2px}.block-categories .arrows .arrow-right:hover,.block-categories .arrows .arrow-down:hover{color:#000}.block-categories .arrows .arrow-down{display:none}.block-categories .arrows[aria-expanded="true"] .arrow-right{display:none}.block-categories .arrows[aria-expanded="true"] .arrow-down{display:inline-block}.facets-title{color:#232323}.products-selection .filter-button .btn-secondary,.products-selection .filter-button .btn-tertiary{padding:.75rem .5rem .6875rem}@media (max-width:991px){#category #left-column{width:100%}#category #left-column #search_filter_controls{text-align:center;margin-bottom:1rem}#category #left-column #search_filter_controls button{margin:0 .5rem}#category #left-column #search_filters{margin-bottom:15px;box-shadow:none;padding:0;border-top:1px solid #f6f6f6}#category #left-column #search_filters .facet{padding-top:0;border-bottom:1px solid #f6f6f6}#category #left-column #search_filters .facet .title{cursor:pointer}#category #left-column #search_filters .facet .title .collapse-icons .remove{display:none}#category #left-column #search_filters .facet .title[aria-expanded="true"] .collapse-icons .add{display:none}#category #left-column #search_filters .facet .title[aria-expanded="true"] .collapse-icons .remove{display:block}#category #left-column #search_filters .facet .facet-title{color:#232323;text-transform:uppercase}#category #left-column #search_filters .facet .h6{margin-bottom:0;padding:.625rem;display:inline-block}#category #left-column #search_filters .facet .navbar-toggler{display:inline-block}#category #left-column #search_filters .facet .collapse{display:none}#category #left-column #search_filters .facet .collapse.in{display:block}#category #left-column #search_filters .facet .facet-label a{margin-top:0}#category #left-column #search_filters .facet ul{margin-bottom:0}#category #left-column #search_filters .facet ul li{border-top:1px solid #f6f6f6;padding:.625rem}#category #content-wrapper{width:100%}#category #search_filter_toggler{width:100%}.products-sort-order .select-title{margin-left:0}.products-selection h1{padding-top:0;text-align:center;margin-bottom:1rem}.products-selection .showing{padding-top:1rem}#prices-drop #content-wrapper,#new-products #content-wrapper,#best-sales #content-wrapper{width:100%}}@media (max-width:543px){.products-selection .filter-button{padding-left:0}#category #left-column #search_filters_wrapper{margin-left:-15px;margin-right:-15px}}#search_filters ul li p{font-size:14px;color:#969696;line-height:28px}#search_filters ul li .ui-slider-horizontal{min-width:210px;padding:3px}@media screen and (min-width:992px) and (max-width:1199px){#search_filters ul li .ui-slider-horizontal{min-width:170px}}#product #content{position:relative;margin:0 auto;padding:0;border:0}#product .product-title{color:#333;font-weight:400;text-transform:capitalize;padding-bottom:15px;font-size:22px;border-bottom:1px solid #ccc;margin-bottom:15px}.form-control-select{-moz-appearance:menulist;background:none}.product-price{color:#000;display:inline-block;vertical-align:middle;font-weight:500;font-size:24px}#product-description-short{color:#232323}.product-information{font-size:.9375rem;color:#232323}.product-information p{margin-bottom:15px}.product-information .manufacturer-logo{height:35px}.product-information .product-comments{margin-bottom:20px}.product-information .product-description img{max-width:100%;height:auto}.product-information .wishlist_login{clear:both;margin-bottom:5px}.input-color{position:absolute;opacity:0;cursor:pointer;height:1.25rem;width:1.25rem}.input-container{position:relative}.input-radio{position:absolute;top:0;cursor:pointer;opacity:0;width:100%;height:100%}.input-color:checked+span,.input-color:hover+span,.input-radio:checked+span,.input-radio:hover+span{border:2px solid #232323}.radio-label{box-shadow:2px 2px 8px 0 rgba(0,0,0,.2);background:#fff;display:inline-block;padding:.125rem .625rem;font-weight:600;border:2px solid #fff}.product-actions .control-label{width:100%;margin-bottom:8px;display:block;width:100%;font-weight:500}.product-actions .add-to-cart{height:2.75rem;line-height:inherit;text-transform:uppercase;line-height:23px;padding:10px 25px;background-color:#84a014;border-color:#84a014}@media (max-width:543px){.product-actions .add-to-cart{padding:10px 19px}}.product-actions .add-to-cart .material-icons{line-height:inherit;display:none}.product-actions .add-to-cart:hover{background-color:#000;border-color:#000}.product-quantity{display:block}.product-quantity .qty,.product-quantity .add{display:inline;margin-right:15px;margin-bottom:.5rem}.product-quantity .qty{margin-right:15px}.product-quantity #quantity_wanted{color:#232323;background-color:#fff;height:2.75rem;padding:.175rem .5rem;width:3rem}.product-quantity .input-group-btn-vertical{float:left}.product-quantity .input-group-btn-vertical .btn{padding:.5rem .6875rem}.product-quantity .input-group-btn-vertical .btn i{font-size:1rem;top:.125rem;left:.1875rem}.product-quantity .btn-touchspin{height:1.438rem}.product-discounts{margin-bottom:0}.product-discounts>.product-discounts-title{font-weight:400;font-size:.875rem}.product-discounts>.table-product-discounts thead tr th{width:33%;padding:.625rem 1.25rem;background:#fff;border:.3125rem #f1f1f1 solid;text-align:center}.product-discounts>.table-product-discounts tbody tr{background:#f6f6f6}.product-discounts>.table-product-discounts tbody tr:nth-of-type(even){background:#fff}.product-discounts>.table-product-discounts tbody tr td{padding:.625rem 1.25rem;text-align:center;border:.3125rem #f1f1f1 solid}.product-prices{font-weight:400;font-size:15px;color:#333;margin-bottom:20px}.product-prices div{display:inline-block;vertical-align:middle}.product-prices .tax-shipping-delivery-label{font-size:.8125rem;color:#acaaa6}.product-prices .tax-shipping-delivery-label .delivery-information{padding:0 0 0 2px}.product-prices .tax-shipping-delivery-label .delivery-information::before{content:"-";padding:0 2px 0 0}.product-discount{color:#878787;margin-bottom:0}.product-discount .regular-price{text-decoration:line-through;font-weight:500;margin-right:.625rem;font-size:18px}.product-line-info{margin-bottom:8px}.product-line-info .value{color:#acaaa6}.has-discount.product-price,.has-discount p{font-weight:500;font-size:24px;margin-bottom:0}.has-discount .discount{background:#f1f1f1;color:#000;padding:7px 11px;font-size:13px;line-height:15px;font-weight:400;margin:0 8px;text-transform:uppercase;display:inline-block;vertical-align:middle}.product-unit-price{font-size:.8125rem;margin-bottom:0}.tabs{margin-bottom:50px}@media (max-width:991px){.tabs{margin-bottom:30px}}.tabs .nav-tabs{border-bottom:none;margin-bottom:30px;text-align:center}.tabs .nav-tabs .nav-link{color:#000;padding-left:1px;padding-right:1px;padding:8px 12px;border:1px solid #e4e4e4;background:#fff;letter-spacing:1px;text-decoration:none;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s;font-size:14px;font-weight:500;border-radius:4px;position:relative}.tabs .nav-tabs .nav-link:before{content:'';position:absolute;left:0;right:0;width:0;height:0;bottom:-9px;margin:0 auto;border-style:solid;border-width:8px 10px 0 10px;border-color:transparent transparent transparent transparent;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s}@media (max-width:543px){.tabs .nav-tabs .nav-link{padding:8px 4px;font-size:13px}}.tabs .nav-tabs .nav-link.active{border-color:#84a014;background:#84a014;color:#fff}.tabs .nav-tabs .nav-link.active:before{border-color:#84a014 transparent transparent transparent}.tabs .nav-tabs .nav-link:hover{border-color:#84a014;background:#84a014;color:#fff}.tabs .nav-tabs .nav-link:hover:before{border-color:#84a014 transparent transparent transparent}.tabs .nav-tabs .nav-link:focus{color:#fff}.tabs .nav-tabs .nav-item{display:inline-block;vertical-align:middle;float:none;margin-bottom:-.125rem;text-transform:uppercase;margin-left:10px}@media (max-width:767px){.tabs .nav-tabs .nav-item{margin-bottom:15px}.tabs .nav-tabs .nav-item:last-child{margin-bottom:0;margin-left:0}}@media (max-width:543px){.tabs .nav-tabs .nav-item{margin-left:6px}}.tabs .nav-tabs .nav-item:first-child{margin-left:0}.tabs #tab-content{padding:15px;border:1px solid #e4e4e4;text-align:center}.tabs #tab-content .tab-pane p{line-height:28px;color:gray;margin-bottom:0;letter-spacing:.8px}.product-cover{margin-bottom:1.25rem;position:relative}.product-cover #product-zoom{cursor:crosshair}.product-cover img{background:#fff}#product-modal .modal-content{background:transparent;border:none;padding:0}#product-modal .modal-content .modal-body{-js-display:flex;display:flex;margin-left:-30%}#product-modal .modal-content .modal-body .product-cover-modal{background:#fff}#product-modal .modal-content .modal-body .image-caption{background:#fff;width:800px;padding:.625rem 1.25rem;border-top:#f1f1f1 1px solid}#product-modal .modal-content .modal-body .image-caption p{margin-bottom:0}#product-modal .modal-content .modal-body .thumbnails{position:relative}#product-modal .modal-content .modal-body .mask{position:relative;overflow:hidden;max-height:49.38rem;margin-top:2.188rem;z-index:1}#product-modal .modal-content .modal-body .mask.nomargin{margin-top:0}#product-modal .modal-content .modal-body .product-images{margin-left:2.5rem}#product-modal .modal-content .modal-body .product-images img{width:9.25rem;cursor:pointer;background:#fff}#product-modal .modal-content .modal-body .product-images img:hover{border:#000 3px solid}#product-modal .modal-content .modal-body .arrows{height:100%;width:100%;text-align:center;position:absolute;top:0;color:#fff;right:1.875rem;z-index:0;cursor:pointer}#product-modal .modal-content .modal-body .arrows .arrow-up{position:absolute;top:-2rem;opacity:.2}#product-modal .modal-content .modal-body .arrows .arrow-down{position:absolute;bottom:-2rem}#product-modal .modal-content .modal-body .arrows i{font-size:6.25rem;display:inline}#blockcart-modal{color:#232323}#blockcart-modal .modal-header{color:#000}#blockcart-modal .modal-header .close{opacity:1}#blockcart-modal .modal-header .close .material-icons{color:#7a7a7a}#blockcart-modal .modal-body{background:#fff;padding:35px 25px}#blockcart-modal .modal-body .divide-right span{display:inline-block;margin-bottom:10px;color:#000;font-weight:600}#blockcart-modal .modal-dialog{max-width:1140px;width:100%}#blockcart-modal .product-image{width:100%}#blockcart-modal .modal-title{line-height:24px;font-size:16px;font-weight:500;text-align:left!important}#blockcart-modal .modal-title i.material-icons{margin-right:10px}#blockcart-modal .product-name,#blockcart-modal .cart-products-count{color:#333;font-size:16px;text-transform:capitalize;font-weight:400;line-height:20px;margin-bottom:15px}#blockcart-modal .cart-products-count{border-bottom:1px solid #e6e6e6;padding-bottom:10px;margin-bottom:15px}#blockcart-modal .cart-content{padding-left:2.5rem}#blockcart-modal .cart-content p{color:#7a7a7a;-js-display:flex;display:flex;justify-content:space-between}#blockcart-modal .cart-content p.cart-products-count{font-size:16px;color:#333;font-weight:500}#blockcart-modal .cart-content p.product-tax{font-size:.875rem}#blockcart-modal .cart-content p .label,#blockcart-modal .cart-content p .value{font-weight:600}#blockcart-modal .cart-content .cart-content-btn{display:inline-flex}#blockcart-modal .cart-content .cart-content-btn button{margin-right:.3125rem}#blockcart-modal .cart-content .cart-content-btn .btn{white-space:inherit}#blockcart-modal .cart-content .cart-content-btn i{display:none}#blockcart-modal .cart-content .cart-content-btn .btn-secondary,#blockcart-modal .cart-content .cart-content-btn .btn-tertiary{background-color:#84a014;border-color:#84a014}#blockcart-modal .cart-content .cart-content-btn .btn-secondary:hover,#blockcart-modal .cart-content .cart-content-btn .btn-tertiary:hover{background-color:#000;border-color:#000}#blockcart-modal .cart-content strong{font-weight:600;color:#000}#blockcart-modal .divide-right{border-right:#f1f1f1 1px solid}#blockcart-modal .divide-right span,#blockcart-modal .divide-right p{color:#5f5f5f;font-size:14px}#blockcart-modal .divide-right span strong,#blockcart-modal .divide-right p strong{font-weight:500;color:#5f5f5f}#blockcart-modal .divide-right .product-price-modal{font-size:18px;color:#84a014}.product-images>li.thumb-container{display:inline}.product-images>li.thumb-container>.thumb{cursor:pointer;margin-bottom:.625rem}.images-container .product-images>li.thumb-container>.thumb{margin-right:.8125rem}#main .images-container .js-qv-mask{white-space:nowrap;overflow:hidden}#main .images-container .js-qv-mask.scroll{width:460px;margin:0 auto}@media (max-width:1199px){#main .images-container .js-qv-mask.scroll{width:314px}}@media (max-width:991px){#main .images-container .js-qv-mask.scroll{width:210px}}@media (max-width:767px){#main .images-container .js-qv-mask.scroll{width:420px}}@media (max-width:543px){#main .images-container .js-qv-mask.scroll{width:210px}}.scroll-box-arrows{display:none}.scroll-box-arrows.scroll{display:block}.scroll-box-arrows i{position:absolute;bottom:5%;height:100px;line-height:100px;cursor:pointer}.scroll-box-arrows .left{left:0}.scroll-box-arrows .right{right:0}#product-availability{display:block;font-weight:600;margin:14px 0 0 0;vertical-align:middle}@media (max-width:543px){#product-availability{width:100%}}#product-availability .material-icons{line-height:inherit;line-height:22px}#product-availability .product-available{color:#4cbb6c}#product-availability .product-unavailable{color:#ff9a52}#product-availability .product-last-items{color:#ff9a52}#product-details .product-manufacturer{margin-bottom:15px}#product-details .label{font-weight:500;margin-right:10px;color:#444;margin-bottom:12px}#product-details span{color:#969696;line-height:20px}.product-features{margin-top:1.25rem;margin-left:.3125rem;text-align:center}.product-features>dl.data-sheet{-js-display:flex;display:flex;flex-wrap:wrap;align-items:stretch}.product-features>dl.data-sheet dd.value,.product-features>dl.data-sheet dt.name{flex:1 0 40%;font-weight:400;background:#ebebeb;padding:.625rem;margin-right:.625rem;min-height:2.5rem;word-break:normal;text-transform:capitalize;margin-bottom:.5rem}.product-features>dl.data-sheet dd.value:nth-of-type(even),.product-features>dl.data-sheet dt.name:nth-of-type(even){background:#f6f6f6}.product-variants>.product-variants-item{margin-bottom:20px}.product-variants>.product-variants-item:last-child{margin-bottom:20px}.product-variants>.product-variants-item select{background-color:#fff;width:auto;padding-right:1.875rem}.product-variants>.product-variants-item ul{margin-bottom:0}.product-variants>.product-variants-item label{margin-bottom:0}.product-variants>.product-variants-item ul li{margin-right:2px;display:inline-block;vertical-align:middle}.product-variants>.product-variants-item .color{margin-left:0;margin-top:0}.product-add-to-cart{display:block;overflow:hidden;margin-bottom:15px}.product-flags{position:absolute;top:0;left:0;right:0;width:100%}li.product-flag{position:absolute;display:block;padding:5px 7px;color:#232323;text-transform:capitalize;font-size:14px;font-weight:400;z-index:2}li.product-flag.discount,li.product-flag.on-sale{top:10px;right:10px}li.product-flag.new{top:10px;left:10px}li.product-flag.online-only{left:10px;bottom:10px;display:none}li.product-flag.online-only::before{content:"\E30A";font-family:'Material Icons';vertical-align:-2px;margin:5px;font-size:12px}li.product-flag.pack{color:#000;right:10px;top:30px}.product-customization{box-shadow:2px 2px 8px 0 rgba(0,0,0,.2);margin:2.5rem 0}.product-customization .product-customization-item{margin:1.25rem 0}.product-customization .product-message{background:#f1f1f1;border:none;width:100%;height:3.125rem;resize:none;padding:.625rem}.product-customization .product-message:focus{background-color:#fff}.product-customization .file-input{width:100%;opacity:0;left:0;z-index:1;cursor:pointer;height:2.625rem;overflow:hidden;position:absolute}.product-customization .customization-message{margin-top:20px}.product-customization .custom-file{position:relative;background:#f1f1f1;width:100%;height:2.625rem;line-height:2.625rem;text-indent:.625rem;display:block;color:#acaaa6;margin-top:1.25rem}.product-customization .custom-file button{z-index:0;position:absolute;right:0;top:0}.product-customization small{color:#acaaa6}.product-pack{margin-top:2.5rem}.product-pack .pack-product-container{-js-display:flex;display:flex;justify-content:space-around}.product-pack .pack-product-container .pack-product-name{flex:0 0 50%;font-size:.875rem;color:#acaaa6}.product-pack .pack-product-container .pack-product-quantity{border-left:#f1f1f1 2px solid;padding-left:.625rem}.product-pack .pack-product-container .pack-product-name,.product-pack .pack-product-container .pack-product-price,.product-pack .pack-product-container .pack-product-quantity{display:-webkit-box;display:-moz-box;display:box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;-js-display:flex;display:flex;align-items:center}.product-refresh{margin-top:1.25rem}.product-additional-info{display:block;overflow:hidden}.social-sharing{margin-bottom:20px}.social-sharing span{display:block;margin-bottom:.375rem;font-weight:500}.social-sharing ul{margin-bottom:0}.social-sharing li{height:35px;width:60px;display:inline-block;background-color:#FFF;cursor:pointer;margin-right:4px;-webkit-transition:all 0.2s ease-in;-moz-transition:all 0.2s ease-in;-o-transition:all 0.2s ease-in;transition:all 0.2s ease-in}.social-sharing li a{display:block;width:100%;height:100%;white-space:nowrap;text-align:center;line-height:35px;text-indent:unset;overflow:hidden}.social-sharing li a:hover{color:transparent}.wishlist_container{margin-bottom:10px}.paymentlogo-container{padding:0;margin-bottom:20px;width:100%}@media (max-width:543px){.paymentlogo-container{display:none}}.paymentlogo-container span{display:block;margin-bottom:.375rem;font-weight:500}.paymentlogo-container img{background:#f4f4f4;margin:1px 4px 1px 0;padding:5px}.wishlist_login{clear:both}#product-list-top{padding:14px 15px;background-color:#f5f5f5;margin-bottom:15px}#product-list-top .products-selection .title{color:#7a7a7a}#js-product-list-top .layout-options{display:block;float:left;margin-right:10px;display:inline-block;vertical-align:middle}#js-product-list-top .layout-options>span{width:22px;height:22px;display:inline-block;cursor:pointer;margin:1px;-webkit-transition:all 0.25s;-moz-transition:all 0.25s;-o-transition:all 0.25s;transition:all 0.25s}#js-product-list-top .layout-options #grid-view{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADcAAAAzCAYAAAAzSpBQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QkU5NDM1RTI1QUQ5MTFFNjkxNjNDMUE2MUZDMUI0MzAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QkU5NDM1RTM1QUQ5MTFFNjkxNjNDMUE2MUZDMUI0MzAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCRTk0MzVFMDVBRDkxMUU2OTE2M0MxQTYxRkMxQjQzMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpCRTk0MzVFMTVBRDkxMUU2OTE2M0MxQTYxRkMxQjQzMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp7/cnMAAAEsSURBVHja7FkxCsJAELxIKvMI+6SMpXb+Re31FXa+wZ9YWJhUEj9gY5teiBMQDAeXXO628ZyBEXSOTQbZHdiLiqJYKKUO4Atcg3f1hbWW53lX80JZln3PtUYMnsDZ5/sRXHV0V80XptpXcG5Z4zbBx7TzQ6IdcNV8Yapdj6hRt+a24BN8gDvtgKvmC1Pt9h+MLLmM0HMib4OeU4I9J1JnogJG8ObasXsBz2Cq6a6aL0RqMwoYBYwCRgGjgFEQehQkPSPdVfNFIhUFm87Y3WsHXDVfmGqPi4KmaTgtaY7maI7maI7maI7maI7maC5QxFmWiVw+VlUldvk48E5cMyhunH9545ymMls59JwS7DlOy783x40zo4BRwCjgtGQUMAp4+SgGXj4ORcFbgAEAg/jWp/vtTl8AAAAASUVORK5CYII=) no-repeat 0 0}#js-product-list-top .layout-options #grid-view:hover{background-position:0 -33px}#js-product-list-top .layout-options #grid-view.checked{background-position:0 -33px}#js-product-list-top .layout-options #list-view{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADcAAAAzCAYAAAAzSpBQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QkU5NDM1RTI1QUQ5MTFFNjkxNjNDMUE2MUZDMUI0MzAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QkU5NDM1RTM1QUQ5MTFFNjkxNjNDMUE2MUZDMUI0MzAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCRTk0MzVFMDVBRDkxMUU2OTE2M0MxQTYxRkMxQjQzMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpCRTk0MzVFMTVBRDkxMUU2OTE2M0MxQTYxRkMxQjQzMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp7/cnMAAAEsSURBVHja7FkxCsJAELxIKvMI+6SMpXb+Re31FXa+wZ9YWJhUEj9gY5teiBMQDAeXXO628ZyBEXSOTQbZHdiLiqJYKKUO4Atcg3f1hbWW53lX80JZln3PtUYMnsDZ5/sRXHV0V80XptpXcG5Z4zbBx7TzQ6IdcNV8Yapdj6hRt+a24BN8gDvtgKvmC1Pt9h+MLLmM0HMib4OeU4I9J1JnogJG8ObasXsBz2Cq6a6aL0RqMwoYBYwCRgGjgFEQehQkPSPdVfNFIhUFm87Y3WsHXDVfmGqPi4KmaTgtaY7maI7maI7maI7maI7maC5QxFmWiVw+VlUldvk48E5cMyhunH9545ymMls59JwS7DlOy783x40zo4BRwCjgtGQUMAp4+SgGXj4ORcFbgAEAg/jWp/vtTl8AAAAASUVORK5CYII=) no-repeat -37px 1px}#js-product-list-top .layout-options #list-view:hover{background-position:-37px -32px}#js-product-list-top .layout-options #list-view.checked{background-position:-37px -32px}#blockcart-modal .cart-content .btn{margin-bottom:.625rem}@media (max-width:991px){.product-cover img{width:100%}#product-modal .modal-content .modal-body{flex-direction:column;margin-left:0}#product-modal .modal-content .modal-body img.product-cover-modal{width:100%}#product-modal .modal-content .modal-body .arrows{display:none}#product-modal .modal-content .modal-body .image-caption{width:100%}#blockcart-modal .modal-dialog{width:calc(100% - 20px)}#blockcart-modal .modal-body{padding:1.875rem}}@media (max-width:767px){#blockcart-modal .divide-right{border-right:none}#blockcart-modal .modal-body{padding:1rem}}#product .product-block-information .product-title{font-size:1.125rem;padding-bottom:0;border-bottom:medium none;margin-bottom:.5rem}.product-accessories-block{display:block;width:100%;overflow:hidden;margin-bottom:30px}#product #ishispecialproducts{padding:0 15px;display:block;width:100%;overflow:hidden}.cart-grid{margin-bottom:1rem}.cart-items{margin-bottom:0}.cart-item{padding:15px 0;border-bottom:1px solid #e5e5e5}.cart-item:last-child{border-bottom:0}.cart-item:hover{background:#fafafa;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s}.card-block.checkout{padding:1.25rem}.card-block.cart-summary-totals:last-child{margin-bottom:0}.cart-summary-line{margin-bottom:10px;clear:both}.cart-summary-line::after{content:"";display:table;clear:both}.cart-summary-line .label{font-weight:400;white-space:inherit;font-size:13px;color:#6a6a6a}.cart-summary-line .value{float:right;font-size:16px;color:#3b3b3b}.cart-summary-line.cart-summary-subtotals .label,.cart-summary-line.cart-summary-subtotals .value{font-weight:400}.cart-grid-body{margin-bottom:.75rem}.cart-grid-body a.label:hover{color:#000}.cart-grid-body .card-block{padding:15px;display:block}.cart-grid-body .card-block h1{margin-bottom:0;font-weight:500;font-size:16px}.cart-grid-body .cart-overview{padding:15px;border-top:1px solid rgba(0,0,0,.125)}.cart-grid-right .promo-discounts{margin-bottom:0;text-align:center;padding-top:.5rem;padding-bottom:.5rem}.cart-grid-right .promo-discounts .cart-summary-line .label{color:#acaaa6;font-size:1rem}.cart-grid-right .promo-discounts .cart-summary-line .label .code{color:#F49D6E;text-decoration:underline;cursor:pointer}.cart-grid-right #block-reassurance li .block-reassurance-item{text-transform:capitalize}.cart-grid-right .cart-summary-line.cart-subtotal-products .label,.cart-grid-right .cart-summary-line.cart-subtotal-products .value{font-weight:600}.cart-grid-right .cart-summary-line.cart-subtotal-products .value{font-size:1rem}.block-promo{margin-bottom:0}.block-promo .promo-code{padding:30px 20px 0;display:block;overflow:hidden}.block-promo .promo-code .alert-danger{position:relative;margin-top:60px;background:#ff4c4c;color:#fff;display:none;width:90%}.block-promo .promo-code .alert-danger::after{bottom:100%;left:10%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-bottom-color:#ff4c4c;border-width:10px;margin-left:-10px}.block-promo .promo-code form{width:90%;float:left}.block-promo .promo-input{color:#232323;border:1px solid rgba(0,0,0,.2);height:2.5rem;text-indent:.625rem;width:70%;margin-right:-.24rem}@media (max-width:1199px){.block-promo .promo-input{width:60%}}.block-promo .promo-input+button{margin-top:-3px;margin-left:-1px;text-transform:capitalize;background:#84a014;border-color:#84a014}.block-promo .promo-input+button:hover{background:#000;border-color:#000}.block-promo .cart-summary-line .label,.block-promo .promo-name{font-weight:600;margin-bottom:0;padding-bottom:0}.block-promo .cart-summary-line .label a,.block-promo .promo-name a{font-weight:400;color:#232323;display:inline-block}.block-promo .promo-name .cart-summary-line .label{font-weight:400;color:#7a7a7a;text-transform:capitalize}.block-promo .promo-name .cart-summary-line span{color:#e65e5e}.block-promo .promo-name .cart-summary-line .float-xs-right{float:right}.block-promo .promo-name .material-icons{font-size:20px;margin-left:7px;margin-top:-5px}.block-promo .promo-code-button{display:block;text-align:center;padding-top:20px}.block-promo .promo-code-button.with-discounts{display:none}.block-promo .promo-code-button.cancel-promo{color:#000;margin-bottom:0}.block-promo .promo-code-button.cancel-promo[aria-expanded="true"]{float:right;padding:0;margin-top:8px;color:#6a6a6a}.block-promo.promo-highlighted{padding:0 1rem;margin-bottom:0;text-align:center}.block-promo p{margin-bottom:0}#checkout .block-promo{padding-bottom:30px}.product-line-grid-left{margin:0 auto;text-align:center}.product-line-grid-left img{max-width:100%}.product-line-grid-body>.product-line-info{margin-bottom:10px}.product-line-grid-body>.product-line-info>.label{padding:0;line-height:inherit;text-align:left;white-space:inherit;color:#000;font-size:14px}.product-line-grid-body>.product-line-info>.out-of-stock{color:red}.product-line-grid-body>.product-line-info>.available{color:#4cbb6c}.product-line-grid-body>.product-line-info>.unit-price-cart{padding-left:.3125rem;font-size:.875rem;color:#acaaa6}.product-line-grid-body .product-desc{color:#909796;font-size:12px;margin-bottom:8px}.product-line-grid-body .product-price{display:none}.product-line-grid-right .cart-line-product-actions,.product-line-grid-right .product-price{color:#3b3b3b;line-height:36px;font-size:19px}.product-line-grid-right .cart-line-product-actions .remove-from-cart,.product-line-grid-right .product-price .remove-from-cart{background:url(data:image/png;base64,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) no-repeat center 0;width:19px;height:26px;color:#232323;display:inline-block;margin-top:.3125rem;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s}.product-line-grid-right .cart-line-product-actions .remove-from-cart i,.product-line-grid-right .product-price .remove-from-cart i{display:none}.product-line-grid-right .cart-line-product-actions .remove-from-cart:hover,.product-line-grid-right .product-price .remove-from-cart:hover{background-position:center -36px}@media (max-width:1199px){.product-line-grid-right .qty{padding:0}}@media (max-width:543px){.product-line-grid-right .price{padding:0}}@media (max-width:543px){.product-line-grid-right .product_qty_price{padding:0}}@media (max-width:767px){.product-line-grid-body{margin-bottom:1rem}}@media (max-width:543px){.cart-item{border-bottom:1px solid #f1f1f1}.cart-item:last-child{border-bottom:0}.cart-grid-body .cart-overview{padding:0}.cart-grid-body .no-items{padding:1rem;display:inline-block}.product-line-grid-left{padding-right:0!important}}.separator{margin-top:0;margin-bottom:0;display:block;position:absolute;left:15px;right:15px}.cart-container .separator{display:none}.cart-summary-products a i{float:right}.cart-summary-subtotals-container{padding:0}#block-reassurance{margin-top:15px;margin-bottom:30px}#block-reassurance img{opacity:.9;width:1.5625rem;margin-right:.625rem}#block-reassurance li{border:1px 1px 1px solid #eee;margin-bottom:7px}#block-reassurance li:last-child{margin-bottom:0}#block-reassurance li .block-reassurance-item{padding:15px;border-left:3px solid #000!important;border:1px solid #e9e9e9;background:#f7f8fa;text-transform:capitalize}#block-reassurance span{font-weight:400;font-size:14px}.quickview .modal-dialog{width:calc(100% - 30px);max-width:64rem;margin:10px auto}.quickview .modal-content{min-height:28.13rem}@media (max-width:991px){.quickview #product-availability{width:100%}}@media (max-width:767px){.quickview #product-availability{width:auto}}@media (max-width:543px){.quickview #product-availability{width:100%}}.quickview .modal-header{border:medium none;padding:0;position:absolute;right:10px;top:10px;z-index:1}.quickview .modal-header .close{margin-top:-7px;color:#333;opacity:1;font-size:35px;margin-right:10px}.quickview .modal-body{min-height:23.75rem;padding:40px 15px}.quickview .modal-body .product-title{border-bottom:1px solid #e5e5e5;font-size:20px;font-weight:400;margin:0 0 15px;padding:0 0 10px}.quickview .modal-body .product-comments{margin-bottom:15px;text-align:left}.quickview .modal-body .product-comments .star_content{display:block;padding:0}.quickview .modal-body .product-comments .star_content:after{display:none}.quickview .modal-body .product-comments .comment_advice{display:none}.quickview .modal-body span{font-size:14px;font-weight:600;margin-bottom:8px}.quickview .modal-body span.discount{margin-bottom:2px}.quickview .modal-body .regular-price{font-weight:500;font-size:18px}.quickview .modal-body .current-price span:first-child{font-weight:500;font-size:24px}.quickview .modal-body span.color{margin:0}.quickview .modal-body .qv-carousel{margin-bottom:0}.quickview .modal-footer{border-top:1px solid rgba(172,170,166,.3);text-align:center}.quickview .modal-footer .buttons_bottom_block{display:none}.quickview .modal-footer .social-sharing{display:block}.quickview .layer{display:none}.quickview .product-cover img{width:95%}.quickview .images-container{-js-display:flex;display:flex}@media (max-width:543px){.quickview .images-container{max-width:300px;margin:10px auto}}.quickview .images-container .product-images>li.thumb-container>.thumb{width:4.938rem;margin-bottom:.8125rem;background:#fff}.quickview .mask{overflow:hidden;width:35%;height:460px;overflow:hidden;margin:17px 0 17px 20px;z-index:1}@media (max-width:991px){.quickview .mask{width:27%}}@media (max-width:543px){.quickview .mask{display:none}}.quickview .arrows{position:absolute;top:0;height:480px;right:45px;z-index:0}@media (max-width:991px){.quickview .arrows{right:40px}}@media (max-width:767px){.quickview .arrows{right:90px}}@media (max-width:543px){.quickview .arrows{display:none}}.quickview .arrows .arrow-up{margin-top:-3.125rem;cursor:pointer;opacity:.2}.quickview .arrows .arrow-down{position:absolute;bottom:-1.875rem;left:0;cursor:pointer}.quickview .social-sharing{display:none;margin-bottom:0;text-align:left}.quickview .social-sharing span{display:none}.quickview .paymentlogo-container{display:none}#stores .page-stores{width:85%;margin:0 auto}#stores .page-stores .store-item{padding-left:.75rem;padding-right:.75rem}#stores .page-stores .store-picture img{max-width:100%}#stores .page-stores .store-item-container{-js-display:flex;display:flex;justify-content:space-around;align-items:center;padding:1.875rem 0}#stores .page-stores .store-item-container ul{margin-bottom:0;font-size:.9375rem}#stores .page-stores .store-item-container .divide-left{border-left:#f1f1f1 1px solid}#stores .page-stores .store-item-container .divide-left tr{height:1.563rem}#stores .page-stores .store-item-container .divide-left td{padding-left:.375rem}#stores .page-stores .store-item-container .divide-left th{text-align:right}#stores .page-stores .store-item-container .store-description{font-size:1rem}#stores .page-stores .store-item-footer{margin-top:.5rem;padding-top:.5rem;-js-display:flex;display:flex;justify-content:space-around}#stores .page-stores .store-item-footer.divide-top{border-top:#f1f1f1 1px solid}#stores .page-stores .store-item-footer div:first-child{flex:0 0 65%}#stores .page-stores .store-item-footer i.material-icons{margin-right:.625rem;color:#acaaa6;font-size:1rem}#stores .page-stores .store-item-footer li{margin-bottom:.625rem}@media (max-width:767px){#stores .page-stores{width:100%}#stores .page-stores .store-item-container{padding:1rem 0}}@media (max-width:543px){#stores .page-stores .store-item-container{display:block}#stores .page-stores .store-item-container .divide-left{border-left:none}#stores .page-stores .store-item-container .store-description a{margin-bottom:.5rem}#stores .page-stores .store-item-container .store-description address{margin-bottom:.5rem}#stores .page-stores .store-item-footer{display:block}#stores .page-stores .store-item-footer.divide-top{border-top:#f1f1f1 1px solid}#stores .page-stores .store-item-footer li{margin-bottom:.625rem}#stores .page-stores .store-item-footer .card-block{padding:.75rem .75rem 0}}.block_newsletter{font-size:.875rem;background:#f7f7f7 url(../css/c968f813e6a29686cc20d609c297f8a2.png) center center;background-attachment:fixed;padding:60px 0;margin-bottom:50px}.block_newsletter form{position:relative}.block_newsletter form input[type=text]{border:none;padding:10px;min-width:255px;color:#acaaa6;border:1px solid rgba(0,0,0,.1)}.block_newsletter form button[type=submit]{position:absolute;background:none;border:none;bottom:.3125rem;right:.125rem;color:#acaaa6}.block_newsletter form button[type=submit] .search:hover{color:#000}@media (max-width:991px){.block_newsletter{margin-bottom:25px}}.block_newsletter .newsletter_text{text-align:center}.block_newsletter .newsletter_text .news-text{text-align:center;width:60%;margin:0 auto}@media (max-width:767px){.block_newsletter .newsletter_text .news-text{width:90%}}.block_newsletter .newsletter_text .news-text .block-newsletter-label{margin-bottom:15px;margin-top:0;position:relative;padding-left:65px;line-height:48px;font-size:28px;font-weight:500;display:inline-block;color:#000}@media (max-width:767px){.block_newsletter .newsletter_text .news-text .block-newsletter-label{font-size:24px}}@media (max-width:543px){.block_newsletter .newsletter_text .news-text .block-newsletter-label{padding-left:0}.block_newsletter .newsletter_text .news-text .block-newsletter-label:before{display:none}}.block_newsletter .newsletter_text .news-text .block-newsletter-label:before{content:"";position:absolute;background:url(../css/04dc20c5557d267aaefca87277d150d0.png) no-repeat center center;height:55px;width:55px;left:0;top:-5px}.block_newsletter .newsletter_text .news-text .block-newsletter-text{color:#a4a4a4;line-height:24px}.block_newsletter p{margin:5px 0 20px 0}.block_newsletter .conditions{display:none}.block_newsletter .alert-danger,.block_newsletter .alert-success{padding:6px}.block_newsletter .alert-danger{color:#a94442!important}.block_newsletter .alert-success{color:#3c763d!important}.block_newsletter #newsletter{text-align:center;margin:0 auto}.block_newsletter #newsletter form{max-width:56%;position:relative;width:100%;margin:0 auto}@media (max-width:991px){.block_newsletter #newsletter form{max-width:70%}}@media (max-width:767px){.block_newsletter #newsletter form{max-width:80%}}@media (max-width:543px){.block_newsletter #newsletter form{max-width:100%}}.block_newsletter #newsletter form .input-wrapper{overflow:hidden}.block_newsletter #newsletter form input[type=submit]{height:auto;background-color:#84a014;font-family:"Poppins",sans-serif;font-weight:400;font-size:16px;color:#fff;border:1px solid #84a014;float:right;width:auto;text-transform:uppercase;border-left:none;text-align:center;position:relative;border-radius:0;padding:13px 25px 14px 25px;line-height:20px;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s}@media (max-width:991px){.block_newsletter #newsletter form input[type=submit]{padding:13px 15px 14px 15px}}@media (max-width:767px){.block_newsletter #newsletter form input[type=submit]{font-size:17px}}@media (max-width:543px){.block_newsletter #newsletter form input[type=submit]{padding:13px 10px 14px 10px;font-size:14px}}.block_newsletter #newsletter form input[type=submit]:hover{background-color:#000;border-color:#000}.block_newsletter #newsletter form input[type=email]{min-width:250px;width:100%;height:auto;border:1px solid #fff;background-color:#fff;font-family:"Poppins",sans-serif;font-size:16px;font-weight:400;padding:15px 10px}.block_newsletter #newsletter form input[type=email]:focus{background-color:#fff}#block_myaccount_infos{width:22%}@media (max-width:991px){#block_myaccount_infos{width:100%;display:block;overflow:hidden}}.collapse-icons{color:#brand-secondary}.block-contact .block{margin-bottom:15px;font-family:"Poppins",sans-serif;letter-spacing:.5px;font-size:14px;font-weight:400}.block-contact .block .icon{color:#84a014;display:block;font-family:FontAwesome;font-size:18px;height:20px;width:20px}.block-contact .block.address .icon:before{content:"\F041"}.block-contact .block.phone .icon:before{content:"\F095"}.block-contact .block.fax .icon:before{content:"\F1AC"}.block-contact .block.email .icon:before{content:"\F0E0"}.block-contact .block .icon{content:"";height:22px;width:30px;float:left;margin:3px 8px 0 0;text-align:center}.block-contact .block .icon i{display:none}.block-contact .block .content{line-height:25px;overflow:hidden}.social-sharing li a:before{display:inline-block;vertical-align:middle;font-family:FontAwesome;font-weight:400;position:relative;font-size:18px;line-height:33px;color:#fff}.social-sharing li.facebook{background-color:#3b5999}.social-sharing li.facebook a:before{content:"\F09A"}.social-sharing li.twitter{background-color:#00aced}.social-sharing li.twitter a:before{content:"\F099"}.social-sharing li.googleplus{background-color:#dc473b}.social-sharing li.googleplus a:before{content:"\F0D5"}.social-sharing li.pinterest{background-color:#cb2027}.social-sharing li.pinterest a:before{content:"\F231"}.social-sharing li:hover{background:#84a014}.block-social{text-align:center;display:block;overflow:hidden}@media (max-width:991px){.block-social{text-align:left}}.block-social .social_text{display:none}.block-social p{margin-top:0;margin-bottom:15px}.block-social ul{margin-top:0;margin-bottom:0}.block-social ul li{cursor:pointer;display:inline-block;vertical-align:middle;border-radius:50%;height:35px;width:35px;padding:3px;margin:0 3px;text-align:center;position:relative;-webkit-transition:all 0.4s;-moz-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s}@media (max-width:543px){.block-social ul li{margin-bottom:10px}}.block-social ul li a{text-decoration:none}.block-social ul li a:hover{padding:0!important;color:transparent}.block-social ul li a:before{display:inline-block;vertical-align:middle;font-family:FontAwesome;font-weight:400;position:relative;width:20px;font-size:18px;line-height:30px;color:#fff}.block-social ul li a .socialicon-label{display:none}.block-social ul li.facebook{background-color:#3b5999}.block-social ul li.facebook a:before{content:"\F09A"}.block-social ul li.twitter{background-color:#00aced}.block-social ul li.twitter a:before{content:"\F099"}.block-social ul li.youtube{background-color:#d12121}.block-social ul li.youtube a:before{content:"\F16A"}.block-social ul li.googleplus{background-color:#dc473b}.block-social ul li.googleplus a:before{content:"\F0D5"}.block-social ul li.rss{background-color:#f26522}.block-social ul li.rss a:before{content:"\F09E"}.block-social ul li.pinterest{background-color:#cb2027}.block-social ul li.pinterest a:before{content:"\F231"}.block-social ul li.vimeo{background-color:#00aced}.block-social ul li.vimeo a:before{content:"\F27D"}.block-social ul li.instagram{background:-moz-linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);background:-webkit-linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);background:linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%)}.block-social ul li.instagram a:before{content:"\F16D"}.block-social ul li:hover{background:#84a014}.block-social ul li span{display:none}.block-social .social-inner{position:relative;margin-top:30px}@media (max-width:991px){.block-social .social-inner{margin-top:10px}.block-social .social-inner:before,.block-social .social-inner:after{display:none}}.block-social .social-inner:after,.block-social .social-inner:before{content:"";position:absolute;height:1px;width:34%;background:rgba(0,0,0,.1);right:0;top:0;bottom:0;margin:auto}@media (max-width:1199px){.block-social .social-inner:after,.block-social .social-inner:before{width:29%}}@media (max-width:991px){.block-social .social-inner:after,.block-social .social-inner:before{width:31%}}@media (max-width:767px){.block-social .social-inner:after,.block-social .social-inner:before{display:none}}.block-social .social-inner:before{left:0;right:auto}@media (min-width:992px){.linkedlist{text-align:center;margin:40px 0 20px}}@media (max-width:991px){.linkedlist .linkblock{margin-bottom:15px}}@media (min-width:992px){.linkedlist .linkblock{}.linkedlist .linkblock ul{margin-bottom:6px}.linkedlist .linkblock ul li{display:inline;margin:0}.linkedlist .linkblock ul li a{line-height:16px}.linkedlist .linkblock ul li:after{content:"|";margin:0 8px}.linkedlist .linkblock ul li:last-child:after{content:""}}.footer-before .footer-dropdown{margin-top:10px}@media (max-width:543px){.footer-before{}.footer-before .footer-block{margin-bottom:15px}}@media (min-width:544px){.footer-before{}.footer-before .collapse{display:inherit}}.footer-container{overflow:hidden}.footer-container li{margin-bottom:15px}.footer-container .footer-dropdown{margin-top:10px}@media (min-width:992px){.footer-container{}.footer-container .collapse{display:inherit}.footer-container .footer-dropdown{margin-top:0}}@media (max-width:991px){.footer-container{}.footer-container .footer-block{margin-bottom:15px}.footer-container .footer-block:last-child{margin-bottom:0}}.footer-after .footer-aftertext{text-align:left;margin-bottom:0;padding:4px 0}@media (max-width:991px){.footer-after .footer-aftertext{text-align:center}}.footer-after .footer-aftertext a{color:#a4a4a4!important;-webkit-transition:all 0.4s;-moz-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s}.footer-after .footer-aftertext a:hover{color:gray!important}.footer-after>.container{padding-top:10px;padding-bottom:10px;border-top:1px solid rgba(255,255,255,.1)}@media (max-width:991px){.footer-after>.container{border-top:1px solid rgba(0,0,0,.1)}}@media (max-width:767px){.footer-after>.container{padding:15px 15px 0}}.contact-rich{color:#7a7a7a;margin-bottom:2rem;word-wrap:break-word}.contact-rich h4{text-transform:uppercase;color:#232323;margin-bottom:2rem}.contact-rich .block{height:auto;overflow:hidden}.contact-rich .block .icon{float:left;width:3.5rem}.contact-rich .block .icon i{font-size:2rem}.contact-rich .block .data{color:#232323;font-size:.875rem;width:auto;overflow:hidden}.contact-rich .block .data.email{padding-top:.375rem}.contact-rich .block a[href^="mailto:"]{clear:both;display:block;margin-top:1rem}@media (min-width:544px){.contact-rich .block a[href^="mailto:"]{font-size:.815rem}}.contact-form{background:#fff;padding:1rem;color:#7a7a7a;width:100%}.contact-form h3{text-transform:uppercase;color:#232323}@media (max-width:991px){#contact #left-column{width:100%}}#products #main .page-header,#pagenotfound #main .page-header{margin:2rem 0 3rem}#products #main .page-content,#pagenotfound #main .page-content{margin-bottom:10rem}#products .page-not-found,#pagenotfound .page-not-found{box-shadow:2px 2px 8px 0 rgba(0,0,0,.2);background:#fff;padding:1rem;font-size:.875rem;color:#acaaa6;max-width:570px;margin:0 auto}#products .page-not-found h4,#pagenotfound .page-not-found h4{font-size:1rem;font-weight:700;margin:.5rem 0 1rem}#products .page-not-found .search-widget,#pagenotfound .page-not-found .search-widget{float:none}#products .page-not-found .search-widget input,#pagenotfound .page-not-found .search-widget input{width:100%}.customization-modal .modal-content{border-radius:0;border:1px solid #f6f6f6}.customization-modal .modal-content .modal-body{padding-top:0}.customization-modal .modal-content .modal-body .product-customization-line{padding-bottom:.9375rem;padding-top:.9375rem;border-bottom:1px solid #f6f6f6}.customization-modal .modal-content .modal-body .product-customization-line .label{font-weight:700;text-align:right}.customization-modal .modal-content .modal-body .product-customization-line:last-child{padding-bottom:0;border-bottom:0}.sitemap-title{text-transform:capitalize}.sitemap{margin-top:.9375rem}.sitemap h2{color:#232323;text-transform:uppercase;font-size:1.1rem;font-weight:600;border-bottom:1px solid #acaaa6;margin-left:-15px;width:100%;height:35px}.sitemap ul{margin-left:-15px;margin-top:20px}.sitemap ul.nested{margin-left:20px}.sitemap ul li{font-size:.9rem;margin-bottom:1rem}@media (max-width:543px){.sitemap{margin-top:0}}.owl-nav{display:block;text-align:center}.owl-nav .owl-prev,.owl-nav .owl-next{display:inline-block;vertical-align:middle;position:relative;border:1px solid #84a014!important;background:#fff!important;border-radius:50%;margin:4px;outline:none;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s}.owl-nav .owl-prev:hover,.owl-nav .owl-next:hover{background-color:#84a014!important}.owl-nav .owl-prev:hover i:after,.owl-nav .owl-next:hover i:after{color:#fff}.owl-nav .owl-prev:before,.owl-nav .owl-prev:after,.owl-nav .owl-next:before,.owl-nav .owl-next:after{content:'';height:1px;width:40px;background:#d2d2d2;position:absolute;top:0;bottom:2px;right:25px;margin:auto}.owl-nav .owl-prev:after,.owl-nav .owl-next:after{width:25px;bottom:-7px}.owl-nav .owl-prev i,.owl-nav .owl-next i{line-height:20px}.owl-nav .owl-prev i:after,.owl-nav .owl-next i:after{color:#84a014;content:"\E314";display:inline-block;font-family:"material icons";font-size:18px}.owl-nav .owl-next:before,.owl-nav .owl-next:after{left:25px;right:auto}.owl-nav .owl-next i:after{content:"\E315"}#ishislider{margin-bottom:30px;overflow:hidden}#ishislider .owl-nav{margin-bottom:0}@media (max-width:543px){#ishislider .owl-nav{display:none}}#ishislider .owl-nav .owl-prev,#ishislider .owl-nav .owl-next{border:none;border-radius:0;position:absolute;padding:5px!important;top:46%;margin:4px;left:10px;right:auto;box-shadow:none;border:0;background-color:#84a014!important;border-color:#84a014!important;-webkit-transition:all 0.3s;-moz-transition:all 0.3s;-o-transition:all 0.3s;transition:all 0.3s}@media (min-width:544px){#ishislider .owl-nav .owl-prev,#ishislider .owl-nav .owl-next{-moz-transform:translateX(-100px);-webkit-transform:translateX(-100px);-o-transform:translateX(-100px);-ms-transform:translateX(-100px)}}@media (max-width:991px){#ishislider .owl-nav .owl-prev,#ishislider .owl-nav .owl-next{padding:2px}}#ishislider .owl-nav .owl-prev:before,#ishislider .owl-nav .owl-prev:after,#ishislider .owl-nav .owl-next:before,#ishislider .owl-nav .owl-next:after{display:none}#ishislider .owl-nav .owl-prev:hover,#ishislider .owl-nav .owl-next:hover{background-color:#fff!important;border-color:#fff!important}#ishislider .owl-nav .owl-prev:hover i:after,#ishislider .owl-nav .owl-next:hover i:after{color:#000}#ishislider .owl-nav .owl-prev i:after,#ishislider .owl-nav .owl-next i:after{color:#fff;font-size:26px;line-height:26px;margin-left:-1px}@media (max-width:543px){#ishislider .owl-nav .owl-prev i:after,#ishislider .owl-nav .owl-next i:after{font-size:24px;line-height:26px;margin-left:0}}#ishislider .owl-nav .owl-next{right:10px;left:auto}@media (min-width:544px){#ishislider .owl-nav .owl-next{-moz-transform:translateX(100px);-webkit-transform:translateX(100px);-o-transform:translateX(100px);-ms-transform:translateX(100px)}}#ishislider .owl-dots{position:absolute;bottom:10px;right:0;left:0;margin:0 auto;text-align:center;-webkit-transition:all 0.3s;-moz-transition:all 0.3s;-o-transition:all 0.3s;transition:all 0.3s}#ishislider .owl-dots .owl-dot{display:inline-block;vertical-align:middle}#ishislider .owl-dots .owl-dot span{display:inline-block;vertical-align:middle;margin:0 5px;cursor:pointer;font-size:0;width:12px;height:12px;background:#fff}#ishislider .owl-dots .owl-dot span:hover{background-color:#84a014}#ishislider .owl-dots .owl-dot.active span{background-color:#84a014}#ishislider:hover .owl-nav .owl-prev,#ishislider:hover .owl-nav .owl-next{opacity:1;-moz-transform:translate(0);-webkit-transform:translate(0);-o-transform:translate(0);-ms-transform:translate(0)}@media (max-width:1199px){#ishiproductsblock{margin-bottom:-60px}}@media (max-width:991px){#ishiproductsblock{margin-bottom:-75px}}#ishiproductsblock .owl-nav{display:block}#ishiproductsblock .owl-dots{display:none}#ishiproductsblock .ishiproductsblock-container #ishiproductstab{border:none;text-align:center;position:relative;margin-bottom:15px}@media (max-width:543px){#ishiproductsblock .ishiproductsblock-container #ishiproductstab{margin-bottom:10px}}#ishiproductsblock .ishiproductsblock-container #ishiproductstab .nav-item{margine:0;display:inline-block;vertical-align:middle;float:none;margin:0}@media (max-width:543px){#ishiproductsblock .ishiproductsblock-container #ishiproductstab .nav-item{display:block;margin-bottom:10px}}@media (max-width:543px){#ishiproductsblock .ishiproductsblock-container #ishiproductstab .nav-item:last-child{margin-bottom:0}}#ishiproductsblock .ishiproductsblock-container #ishiproductstab .nav-item .nav-link{background:transparent none repeat scroll 0 0;display:inline-block;color:#000;font-size:15px;font-weight:400;margin:0 10px;text-transform:uppercase;outline:medium none;padding:10px 20px;position:relative;border:1px solid #eee;transition:all 400ms ease-in-out 0s;-webkit-transition:all 400ms ease-in-out 0s;-moz-transition:all 400ms ease-in-out 0s;-o-transition:all 400ms ease-in-out 0s}@media (max-width:543px){#ishiproductsblock .ishiproductsblock-container #ishiproductstab .nav-item .nav-link{margin:0 0 10px 0}}@media (max-width:767px){#ishiproductsblock .ishiproductsblock-container #ishiproductstab .nav-item .nav-link{padding:8px 14px}}#ishiproductsblock .ishiproductsblock-container #ishiproductstab .nav-item .nav-link:before{content:'';position:absolute;left:0;right:0;width:0;height:0;bottom:-8px;margin:0 auto;border-style:solid;border-width:8px 10px 0 10px;border-color:transparent transparent transparent transparent;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s}#ishiproductsblock .ishiproductsblock-container #ishiproductstab .nav-item .nav-link.active,#ishiproductsblock .ishiproductsblock-container #ishiproductstab .nav-item .nav-link:hover{background:#84a014;color:#fff;border-color:transparent}#ishiproductsblock .ishiproductsblock-container #ishiproductstab .nav-item .nav-link.active:before,#ishiproductsblock .ishiproductsblock-container #ishiproductstab .nav-item .nav-link:hover:before{border-color:#84a014 transparent transparent transparent}#ishiparallaxbanner{overflow:hidden;margin-bottom:50px}@media (max-width:991px){#ishiparallaxbanner{margin-bottom:30px}}#ishiparallaxbanner .parallax{padding:100px 0}@media (max-width:1199px){#ishiparallaxbanner .parallax{padding:50px 0}}#ishiparallaxbanner .parallax>.container{max-width:1400px}#ishiparallaxbanner .parallax .parallax-list{display:inline-block;vertical-align:middle;text-align:left;width:100%}@media (max-width:767px){#ishiparallaxbanner .parallax .parallax-list{display:block;text-align:center}}#ishiparallaxbanner .parallax .parallax-list .parallax-title{font-size:18px;font-family:"Poppins",sans-serif;font-weight:500;line-height:30px;margin-bottom:20px;color:#000}#ishiparallaxbanner .parallax .parallax-list .parallax-subtitle{font-size:60px;font-weight:600;color:#242424;line-height:75px;margin-bottom:25px;text-transform:capitalize;font-family:"Poppins",sans-serif}@media (max-width:767px){#ishiparallaxbanner .parallax .parallax-list .parallax-subtitle{font-size:50px}}@media (max-width:543px){#ishiparallaxbanner .parallax .parallax-list .parallax-subtitle{font-size:35px;line-height:40px}}#ishiparallaxbanner .parallax .parallax-list .parallax-subtitle span{color:#84a014;font-weight:400}#ishiparallaxbanner .parallax .parallax-list .parallax-info{font-size:18px;font-weight:400;margin-bottom:40px;position:relative;letter-spacing:.4px;color:#000;text-transform:capitalize;font-family:"Poppins",sans-serif}#ishiparallaxbanner .parallax .parallax-list>a{font-size:14px;color:#fff;background-color:#84a014;border:1px solid #84a014;font-weight:500;font-family:"Poppins",sans-serif;padding:8px 12px;margin-top:0;position:relative;z-index:2;overflow:hidden;text-transform:uppercase;cursor:pointer;-webkit-transition:0.5s all ease;-moz-transition:0.5s all ease;-o-transition:0.5s all ease;transition:0.5s all ease}@media (max-width:543px){#ishiparallaxbanner .parallax .parallax-list>a{padding:6px 10px}}#ishiparallaxbanner .parallax .parallax-list>a:hover{border-color:#000;background:#000}#ishiservices{text-align:center;margin-bottom:50px}@media (max-width:991px){#ishiservices{margin-bottom:0}}@media (max-width:543px){#ishiservices{margin-bottom:30px}}#ishiservices .services{cursor:pointer}@media (max-width:991px){#ishiservices .services{margin-bottom:30px}#ishiservices .services:last-child{margin-bottom:0}}#ishiservices .services:before{content:"";background:#e6e6e6;height:60px;width:1px;position:absolute;right:0;bottom:0;top:0;margin:auto}@media (max-width:543px){#ishiservices .services:before{display:none}}#ishiservices .services:last-child:before{display:none}@media (max-width:991px){#ishiservices .services{}#ishiservices .services:nth-child(2):before{display:none}}#ishiservices .services a{display:inline-block}@media (max-width:767px){#ishiservices .services a .service-content{padding:5px 0}}#ishiservices .services .service-img{height:75px;width:75px;background-position:-12px -12px;margin:0 auto;margin-bottom:10px;transition:all 300ms ease;-webkit-transition:all 300ms ease;-moz-transition:all 300ms ease;-ms-transition:all 300ms ease;-o-transition:all 300ms ease}#ishiservices .services .service-block{display:block}#ishiservices .services .service-block .service-title{font-size:17px;font-weight:500;margin:10px 0;text-transform:uppercase;color:#000;font-family:"Poppins",sans-serif;transition:all 300ms ease;-webkit-transition:all 300ms ease;-moz-transition:all 300ms ease;-ms-transition:all 300ms ease;-o-transition:all 300ms ease}@media (max-width:991px){#ishiservices .services .service-block .service-title{margin-top:4px}}#ishiservices .services .service-block .service-desc{color:#333;font-weight:300}@media (max-width:543px){#ishiservices .services .service-block .service-desc{font-size:12px}}#ishiservices .services:hover .service-img{background-position:-12px -87px}#ishiservices .services:hover .service-block .service-title{color:#84a014}#ishitestimonials{margin-bottom:50px;color:#000}@media (max-width:991px){#ishitestimonials{margin-bottom:25px}}#ishitestimonials .ttback-img{padding-top:105px}@media (max-width:1199px){#ishitestimonials .ttback-img{padding-top:98px;background-color:#f5f5f5}}@media (max-width:767px){#ishitestimonials .ttback-img{padding-top:80px}}#ishitestimonials .home-title{display:none;color:#fff;padding:0 0 20px}@media (max-width:991px){#ishitestimonials .home-title{margin-bottom:25px}}#ishitestimonials #ishitestimonials-carousel{position:relative;padding:50px 0}#ishitestimonials .ishitestimonials-container{text-align:center}#ishitestimonials .ishitestimonials-container .testimonial-img{display:block;max-width:110px;border-radius:50%;overflow:hidden;margin-right:30px;border:2px solid #84a014;margin:auto;margin-bottom:22px;text-align:center}@media (max-width:991px){#ishitestimonials .ishitestimonials-container .testimonial-img{margin:0 auto;margin-bottom:20px}}@media (max-width:543px){#ishitestimonials .ishitestimonials-container .testimonial-img{margin-bottom:12px}}#ishitestimonials .ishitestimonials-container .testimonial-img img{max-width:100%}#ishitestimonials .ishitestimonials-container .user-name{font-family:"Lobster",cursive;position:relative;font-size:23px;color:#84a014;display:inline-block;margin-bottom:15px}#ishitestimonials .ishitestimonials-container .user-name:after{display:none;content:'';position:absolute;height:15px;width:1px;background:#d2d2d2;right:0;top:4px;transform:skew(-20deg)}#ishitestimonials .ishitestimonials-container .user-info{display:inline-block;vertical-align:middle;font:500 16px "Poppins",sans-serif;color:#000;width:80%;text-align:center}@media (max-width:767px){#ishitestimonials .ishitestimonials-container .user-info{margin-bottom:20px}}@media (max-width:543px){#ishitestimonials .ishitestimonials-container .user-info{margin-bottom:12px}}#ishitestimonials .ishitestimonials-container .user-info .user-designation{font-weight:500;margin-bottom:15px;display:inline-block;font-size:16px}@media (max-width:991px){#ishitestimonials .ishitestimonials-container .user-info .user-designation{margin-right:0}}@media (max-width:543px){#ishitestimonials .ishitestimonials-container .user-info .user-designation{margin-bottom:0}}#ishitestimonials .ishitestimonials-container .user-description{padding:8px 10px 15px 10px;position:relative;line-height:24px;font-weight:400;color:#000;display:block;width:62%;text-align:center;font-size:14px;margin:auto}@media (max-width:991px){#ishitestimonials .ishitestimonials-container .user-description{line-height:28px;padding:0 10px;text-align:center;margin-bottom:5px;width:82%}}@media (max-width:767px){#ishitestimonials .ishitestimonials-container .user-description{line-height:24px}}@media (max-width:543px){#ishitestimonials .ishitestimonials-container .user-description{font-size:15px;line-height:22px}}#ishitestimonials .ishitestimonials-container .user-description:before,#ishitestimonials .ishitestimonials-container .user-description:after{content:"\F10D";font-family:"FontAwesome";color:#000;font-size:15px;position:relative;top:-8px;left:-10px;display:none}#ishitestimonials .ishitestimonials-container .user-description:after{content:"\F10E";right:-10px;left:auto;top:0}#ishitestimonials .owl-nav{display:none}@media (max-width:543px){#ishitestimonials .owl-nav{display:none}}#ishitestimonials .owl-nav .owl-prev,#ishitestimonials .owl-nav .owl-next{text-align:center;border:none;background-color:transparent;font-size:0;position:absolute;left:0;top:20%;display:inline-block;-webkit-transition:all ease .3s;-moz-transition:all ease .3s;transition:all ease .3s}@media (max-width:991px){#ishitestimonials .owl-nav .owl-prev,#ishitestimonials .owl-nav .owl-next{top:30%}}#ishitestimonials .owl-nav .owl-prev:after,#ishitestimonials .owl-nav .owl-next:after{color:#fff;content:"\F177";display:inline-block;font-family:"FontAwesome";font-size:30px;position:absolute;top:0;right:0;line-height:28px}#ishitestimonials .owl-nav .owl-prev:hover:after,#ishitestimonials .owl-nav .owl-next:hover:after{color:#84a014}#ishitestimonials .owl-nav .owl-next{right:0;left:auto}#ishitestimonials .owl-nav .owl-next:after{content:"\F178"}#ishitestimonials .owl-dots{display:block;text-align:center;opacity:1}#ishitestimonials .owl-dots .owl-dot{-webkit-transition:all 0.5s ease 0s;-moz-transition:all 0.5s ease 0s;-ms-transition:all 0.5s ease 0s;-o-transition:all 0.5s ease 0s;transition:all 0.5s ease 0s;display:inline-block;margin:0 4px;border:1px solid #000;outline:none}#ishitestimonials .owl-dots .owl-dot span{display:block;width:8px;height:8px;cursor:pointer;margin:1px;background:#000}#ishitestimonials .owl-dots .owl-dot.active,#ishitestimonials .owl-dots .owl-dot:hover{border-color:#84a014}#ishitestimonials .owl-dots .owl-dot.active span,#ishitestimonials .owl-dots .owl-dot:hover span{background:#84a014}#ishistoreinfo{width:28%}@media (max-width:991px){#ishistoreinfo{width:100%}}#ishistoreinfo .ishistoreinfo-inner .store-logo{display:inline-block;margin-bottom:20px;text-align:center}@media (min-width:992px){#ishistoreinfo .ishistoreinfo-inner .store-logo{display:block;width:85%;text-align:left}}#ishistoreinfo .ishistoreinfo-inner .store-logo:hover{padding-left:0}#ishistoreinfo .ishistoreinfo-inner .store-description{margin-bottom:0}#ishistoreinfo .ishistoreinfo-inner .store-description p{line-height:24px;margin-bottom:0}@media (min-width:992px){#ishistoreinfo .ishistoreinfo-inner .store-description p{width:95%}}#ishifooterlinks_block{width:22%}@media (max-width:991px){#ishifooterlinks_block{width:100%}}#ishifooterblock{position:relative;padding:30px 0;background:#84a014;top:-60px;margin-top:60px;text-align:center;margin-bottom:-30px}@media (max-width:991px){#ishifooterblock{margin-bottom:-50px;margin-top:40px}}@media (max-width:767px){#ishifooterblock{padding:25px 0;top:-70px;margin-top:70px}}#ishifooterblock .footer-info{display:inline-block;position:relative;padding-left:65px;line-height:50px;font-size:16px;font-weight:400;color:#fff;text-align:left;padding-right:40px}@media (max-width:543px){#ishifooterblock .footer-info{line-height:28px;margin:0 10px 10px 10px;padding-right:0}}#ishifooterblock .footer-info .off{font-size:28px;font-weight:500}@media (max-width:543px){#ishifooterblock .footer-info .off{font-size:18px}}#ishifooterblock .footer-info:before{content:"";position:absolute;background:url(../css/05d4b0c89f3b1e37cc6304cb117e95c9.png) no-repeat center center;height:50px;width:50px;left:0}#ishifooterblock .button-fb{padding:10px 20px;background-color:#fff;border:1px solid #fff;color:#000;font-size:13px;font-weight:400;text-transform:uppercase;-webkit-transition:all 0.3s;-moz-transition:all 0.3s;-o-transition:all 0.3s;transition:all 0.3s}#ishifooterblock .button-fb:hover{background-color:#000;border-color:#000;color:#fff}#ishimanufacturerblock{margin-bottom:50px}@media (max-width:991px){#ishimanufacturerblock{margin-bottom:30px}}#ishimanufacturerblock .home-title{display:none}#ishimanufacturerblock #manufacturer-carousel .owl-item .item .image-container{text-align:center}#ishimanufacturerblock #manufacturer-carousel .owl-item .item .image-container img{opacity:.8;max-width:130px;display:inline-block}#ishimanufacturerblock #manufacturer-carousel .owl-item .item .image-container:hover img{opacity:1}#ishimanufacturerblock #manufacturer-carousel .owl-nav{display:none;position:absolute;top:35%;left:0;right:0;margin:0;z-index:1}#ishimanufacturerblock #manufacturer-carousel .owl-nav>div{position:absolute}#ishimanufacturerblock #manufacturer-carousel .owl-nav .owl-prev{right:auto;left:-35px}#ishimanufacturerblock #manufacturer-carousel .owl-nav .owl-next{right:-35px;left:auto}#ishispecialproducts{margin-bottom:50px}@media (max-width:991px){#ishispecialproducts{margin-bottom:30px}}#ishileftbanners{margin-bottom:15px}@media (max-width:991px){#ishileftbanners{text-align:center}}#ishileftbanners .image-container{position:relative}@media (max-width:991px){#ishileftbanners .image-container{display:inline-block}}#ishileftbanners .image-container a{display:block;position:relative;overflow:hidden;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s}#ishileftbanners .image-container a img{width:100%;max-width:100%;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s}#footer .paymentlogo-container{text-align:right;margin:0;display:block}@media (max-width:991px){#footer .paymentlogo-container{padding:5px 0;text-align:center}}#footer .paymentlogo-container span{display:none}#footer .paymentlogo-container img{background:#f7f8fa;opacity:.8;padding:2px;margin:0 2px;cursor:pointer;-webkit-transition:all 0.25s;-moz-transition:all 0.25s;-o-transition:all 0.25s;transition:all 0.25s}@media (max-width:767px){#footer .paymentlogo-container img{width:41px;margin:2px 1px}}#footer .paymentlogo-container img:first-child{margin:0 2px 0 0}#footer .paymentlogo-container img:last-child{margin:0 0 0 2px}#footer .paymentlogo-container img:hover{opacity:1}#smartblog_block{margin-bottom:35px;position:relative}@media (max-width:991px){#smartblog_block{margin-bottom:5px}}@media (max-width:543px){#smartblog_block{margin-bottom:15px}}#smartblog_block .products_block_inner{position:relative;text-align:center}#smartblog_block .products_block_inner .home-title a{color:#000}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post{padding:15px 15px;margin-bottom:0;margin-top:-15px}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post:hover .blog_post .news_module_image_holder{position:relative}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post:hover .blog_post .news_module_image_holder img{-webkit-transform-style:unset;transform-style:unset;transform:scale(1.1);-webkit-transform:scale(1.1);-ms-transform:scale(1.1);-o-transform:scale(1.1);-moz-transform:scale(1.1);opacity:.8}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post:hover .blog_post .news_module_image_holder .blogicons{opacity:1}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post .blog_post{position:relative;display:inline-block}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .news_module_image_holder{display:block;max-width:100%;overflow:hidden;position:relative;background:#000;margin-bottom:15px}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .news_module_image_holder img{width:100%;transition:all 0.5s;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-ms-transition:all 0.5s;-o-transition:all 0.5s}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .news_module_image_holder .blogicons{display:none;left:0;margin:0 auto;position:absolute;right:0;text-align:center;top:45%;opacity:0;transition:all 0.5s;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-ms-transition:all 0.5s;-o-transition:all 0.5s}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .news_module_image_holder .blogicons a{display:inline-block;float:none}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .news_module_image_holder .blogicons a:hover i:before{color:#fff;background:#000;border-color:#000}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .news_module_image_holder .blogicons a i:before{border:1px solid #fff;color:#fff;font-size:14px;height:40px;margin:auto;padding:12px;text-align:center;width:40px;line-height:13px;-webkit-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s;-moz-transition:all 0.5s;-ms-transition:all 0.5s}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .smartbloginfo{position:relative;background:#84a014;padding:12px;color:#fff;font-size:16px;font-weight:500;float:left}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .smartbloginfo .blog_date{font-family:"Poppins",sans-serif}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .smartbloginfo .blog_date i{display:none!important;font-size:16px;color:#fff;display:inline-block;padding-right:5px}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .smartbloginfo .blog_date .blog_date_inner{display:block;font-size:15px;font-weight:500;text-transform:uppercase;margin-bottom:5px}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .smartbloginfo .blog_date .day_year{font-size:13px;font-weight:300}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .smartbloginfo .author{display:none}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content{display:block;position:relative;text-align:left;overflow:hidden;padding-left:15px;line-height:20px}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .sds_post_title a{font-family:"Poppins",sans-serif;font-size:15px;text-transform:uppercase;font-weight:500}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content p{margin-bottom:0;font-family:"Poppins",sans-serif;font-size:14px;font-weight:300}#smartblog_block .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .r_more{display:none}#smartblog_block .products_block_inner #smartblog-carousel .owl-nav{display:block}#smartblog_block .owl-dots{display:none}#content-wrapper .block{margin-bottom:50px;text-align:center}#content-wrapper .block .articleContent .page-item-title{margin-bottom:30px}#content-wrapper .block .articleContent .page-item-title h1{font-size:22px;text-transform:uppercase;color:#000;font-weight:500;font-family:"Poppins",sans-serif}#content-wrapper .block .articleContent .post-info{margin-bottom:30px}#content-wrapper .block .articleContent .post-info>span{font-size:15px;display:inline-block;margin-right:10px;position:relative;text-transform:capitalize;color:#000;font-family:"Poppins",sans-serif;margin-bottom:5px}#content-wrapper .block .articleContent .post-info a{font-size:15px;display:inline-block;margin-right:10px;position:relative;text-transform:capitalize;color:#000;font-family:"Poppins",sans-serif}#content-wrapper .block .articleContent .post-info .fa{padding-right:5px}#content-wrapper .block .articleContent a img{max-width:100%;height:auto}#content-wrapper .block .articleContent .sdsarticle-des{padding-top:30px;padding-bottom:20px;font-size:15px;text-align:center;line-height:25px;letter-spacing:.5px;font-family:"Poppins",sans-serif;margin:0 auto;width:100%}#content-wrapper .smartblogcomments{margin-bottom:50px}#content-wrapper .smartblogcomments h4{margin-bottom:15px;font-weight:500;color:#000;font-family:"Poppins",sans-serif;font-size:20px}#content-wrapper .smartblogcomments .card-block{padding:0;margin-bottom:0;border:none}#content-wrapper .smartblogcomments #commentform{margin-top:30px}#content-wrapper .smartblogcomments #commentform .form-group{margin-bottom:20px;position:relative;z-index:1}#content-wrapper .smartblogcomments #commentform .form-group .form-control-label{padding:.5rem 15px;margin-bottom:0;font-size:15px;font-family:"Poppins",sans-serif;text-align:left}#content-wrapper .smartblogcomments #commentform .form-group .form-control:focus{border-color:rgba(0,0,0,.1)}#content-wrapper .smartblogcomments #commentform .form-group .submit #submitComment{font:400 15px/18px "Poppins",sans-serif;padding:8px 15px;background-color:#84a014;color:#fff;transition:all 0.5s;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-ms-transition:all 0.5s;-o-transition:all 0.5s}#content-wrapper .smartblogcomments #commentform .form-group .submit #submitComment:hover{background-color:#000;color:#fff}@media (max-width:991px){#content-wrapper .smartblogcomments #commentform .form-group .submit{margin-left:0}}#content-wrapper #articleComments{border-bottom:1px solid #e5e5e5;border-top:1px solid #e5e5e5;margin:0 0 30px;text-align:left}#content-wrapper #articleComments .commenttitle{font:400 14px "Poppins",sans-serif;margin:10px 0}#content-wrapper #articleComments #comments{margin-bottom:10px}#content-wrapper #articleComments #comments .commentList{margin:0;position:relative}#content-wrapper #articleComments #comments .commentList li{padding:8px 0 8px 80px}#content-wrapper #articleComments #comments .commentList li .avatar{background:none;padding:0;left:10px;position:absolute;top:10px}#content-wrapper #articleComments #comments .commentList li .name{font-size:13px;font-weight:700}#content-wrapper #articleComments #comments .commentList li .created{margin:0 0 10px}#content-wrapper #articleComments #comments .commentList li p{font-size:15px}#content-wrapper #articleComments #comments .commentList li .reply{height:auto;text-align:right}#content-wrapper #articleComments #comments .commentList li .reply .comment-reply-link{font:600 11px/16px "Poppins",sans-serif;padding:6px 10px;background:#fff;border:1px solid #000;color:#000}#content-wrapper #articleComments #comments .commentList li .reply .comment-reply-link:hover{background:#000;color:#fff;border-color:#brand-primary}#content-wrapper #sdsblogCategory{margin-bottom:30px}#content-wrapper #sdsblogCategory img{max-width:100%}#content-wrapper #smartblogcat{margin-bottom:30px!important}#content-wrapper #smartblogcat .sdsarticleCat{display:block;width:100%;overflow:hidden;text-align:center}#content-wrapper #smartblogcat .sdsarticleCat:last-child>div{margin-bottom:0}#content-wrapper #smartblogcat .sdsarticleCat>div{margin-bottom:30px;font-family:"Poppins",sans-serif;font-size:14px;color:#000;font-weight:400}#content-wrapper #smartblogcat .sdsarticleCat>div .articleContent{margin-bottom:15px}#content-wrapper #smartblogcat .sdsarticleCat>div .sdsarticleHeader{margin-bottom:10px;margin-top:10px}#content-wrapper #smartblogcat .sdsarticleCat>div .sdsarticleHeader p{margin-bottom:0}#content-wrapper #smartblogcat .sdsarticleCat>div .sdsarticleHeader p a{font-size:20px;text-transform:uppercase;color:#000;font-weight:600;text-decoration:none}#content-wrapper #smartblogcat .sdsarticleCat>div .blogdetail{margin-bottom:10px;display:block}#content-wrapper #smartblogcat .sdsarticleCat>div .blogdetail span{font-size:15px;display:inline-block;vertical-align:middle;margin-right:10px;position:relative;text-transform:capitalize;color:#000;font-family:"Poppins",sans-serif}#content-wrapper #smartblogcat .sdsarticleCat>div .sdsarticle-des{display:block;margin-bottom:10px}#content-wrapper #smartblogcat .sdsarticleCat>div .sdsreadMore a{text-decoration:none;font-size:16px;font-weight:500;background:#84a014;color:#fff;padding:8px 13px;display:inline-block;-webkit-transition:all .5s;-moz-transition:all .5s;-o-transition:all .5s;transition:all .5s}#content-wrapper #smartblogcat .sdsarticleCat>div .sdsreadMore:hover a{background-color:#000}#content-wrapper .blog_pagination .pagination{margin-top:0;margin-bottom:20px;padding:15px}#content-wrapper .blog_pagination .pagination .results{float:left;line-height:34px}@media (max-width:543px){#content-wrapper .blog_pagination .pagination .results{float:none;text-align:center}}#content-wrapper .blog_pagination .pagination .pagination_bottom{margin-bottom:0;display:block;float:right}@media (max-width:543px){#content-wrapper .blog_pagination .pagination .pagination_bottom{float:none;text-align:center}}#content-wrapper .blog_pagination .pagination .pagination_bottom li{display:inline-block;vertical-align:middle}#content-wrapper .blog_pagination .pagination .pagination_bottom li a{padding:8px;text-align:center}#content-wrapper .blog_pagination .pagination .pagination_bottom li.current,#content-wrapper .blog_pagination .pagination .pagination_bottom li:hover{color:#fff;background:#000}#ishiheaderblock{padding:10px 0}#ishiheaderblock .header-text{padding-left:30px;line-height:23px;font-size:14px;display:inline-block;position:relative;color:#fff}@media (max-width:543px){#ishiheaderblock .header-text{padding-left:0}#ishiheaderblock .header-text:before{display:none}}#ishiheaderblock .header-text:before{content:"";background:url(data:image/png;base64,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) no-repeat center center;position:absolute;height:25px;width:25px;left:0}#ishiheadercontactblock{float:left;display:block;padding:24px 15px;position:absolute}@media (min-width:992px){#ishiheadercontactblock:hover{}#ishiheadercontactblock:hover .call-img{background:#84a014 url(../css/b4839b7388a87b0b4820b0b95dd2f593.png) no-repeat;background-position:-10px -70px;box-shadow:0 0 4px 2px rgba(0,0,0,.2)}}@media (max-width:991px){#ishiheadercontactblock{display:none}}#ishiheadercontactblock .call-img{background:url(../css/b4839b7388a87b0b4820b0b95dd2f593.png) no-repeat;background-position:-10px -10px;width:65px;height:65px;border-radius:50%;display:inline-block;vertical-align:middle;box-shadow:0 0 4px 2px rgba(132,160,20,.2);-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s}@media (max-width:991px){#ishiheadercontactblock .call-img{width:55px;height:55px;background:url(../css/b4839b7388a87b0b4820b0b95dd2f593.png) no-repeat -15px -15px}}#ishiheadercontactblock .call{padding-left:10px;display:inline-block;vertical-align:middle}#ishiheadercontactblock .call .call-us{font-weight:500;font-size:15px;line-height:21px;text-transform:uppercase;-webkit-transition:all 0.3s;-moz-transition:all 0.3s;-o-transition:all 0.3s;transition:all 0.3s}#ishiheadercontactblock .call .call-num{font-size:13px;color:#a4a4a4;margin-top:5px}.ishi-customhover-fadeinnormal.scale img,.ishi-customhover-fadeinflip.scale img,.ishi-customhover-fadeinrotate.scale img,.ishi-customhover-fadeinrotate3D.scale img,.ishi-customhover-fadeintop.scale img,.ishi-customhover-fadeinbottom.scale img,.ishi-customhover-fadeoutcenter.scale img,.ishi-customhover-fadeinoutcorner.scale img{transform:scale(1);-moz-transform:scale(1);-webkit-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1)}.ishi-customhover-fadeinnormal:hover.scale img,.ishi-customhover-fadeinflip:hover.scale img,.ishi-customhover-fadeinrotate:hover.scale img,.ishi-customhover-fadeinrotate3D:hover.scale img,.ishi-customhover-fadeintop:hover.scale img,.ishi-customhover-fadeinbottom:hover.scale img,.ishi-customhover-fadeoutcenter:hover.scale img,.ishi-customhover-fadeinoutcorner:hover.scale img{transform:scale(1.1);-moz-transform:scale(1.1);-webkit-transform:scale(1.1);-o-transform:scale(1.1);-ms-transform:scale(1.1)}.ishi-customhover-fadeinnormal:after{content:"";position:absolute;top:10px;left:10px;right:10px;bottom:10px;background:rgba(0,0,0,.1);opacity:0;-webkit-transition:all 0.5s ease;-moz-transition:all 0.5s ease;-o-transition:all 0.5s ease;transition:all 0.5s ease}.ishi-customhover-fadeinnormal:hover:after{opacity:1;transform:scale(1);-moz-transform:scale(1);-webkit-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1)}.ishi-customhover-fadeinflip:after{content:"";background-color:rgba(0,0,0,.1);position:absolute;padding:30px;position:absolute;top:10px;bottom:10px;left:10px;right:10px;opacity:0;-webkit-transform:rotate3d(1,1,0,100deg);-moz-transform:rotate3d(1,1,0,100deg);-ms-transform:rotate3d(1,1,0,100deg);-o-transform:rotate3d(1,1,0,100deg);transform:rotate3d(1,1,0,100deg);-webkit-transition:all 0.35s ease;-moz-transition:all 0.35s ease;transition:all 0.35s ease}.ishi-customhover-fadeinflip:hover:after{opacity:1;-webkit-transition-delay:0.14s;-moz-transition-delay:0.14s;transition-delay:0.14s;-webkit-transform:rotate3d(0,0,0,0deg);-moz-transform:rotate3d(0,0,0,0deg);-ms-transform:rotate3d(0,0,0,0deg);-o-transform:rotate3d(0,0,0,0deg);transform:rotate3d(0,0,0,0deg)}.ishi-customhover-fadeinrotate:after{content:'';background:none repeat scroll 0 0 rgba(0,0,0,.1);position:absolute;display:block;top:10px;right:10px;bottom:10px;opacity:0;left:10px;-webkit-transition:all 0.3s ease 0s;-moz-transition:all 0.3s ease 0s;-ms-transition:all 0.3s ease 0s;-o-transition:all 0.3s ease 0s;transition:all 0.3s ease 0s;-webkit-transform:rotate(-180deg) scale(0);-moz-transform:rotate(-180deg) scale(0);-ms-transform:rotate(-180deg) scale(0);-o-transform:rotate(-180deg) scale(0);transform:rotate(-180deg) scale(0)}.ishi-customhover-fadeinrotate:hover:after{-webkit-transform:rotate(0deg) scale(1);-moz-transform:rotate(0deg) scale(1);-ms-transform:rotate(0deg) scale(1);-o-transform:rotate(0deg) scale(1);transform:rotate(0deg) scale(1);opacity:1}.ishi-customhover-fadeinrotate3D:after{content:"";position:absolute;top:50%;left:50%;right:50%;bottom:50%;-webkit-transition:all 0.9s;-moz-transition:all 0.9s;-o-transition:all 0.9s;transition:all 0.9s}.ishi-customhover-fadeinrotate3D:hover:after{background:rgba(0,0,0,.1);transform:rotateY(180deg);-moz-transform:rotateY(180deg);-webkit-transform:rotateY(180deg);-o-transform:rotateY(180deg);-ms-transform:rotateY(180deg);top:0;left:0;right:0;bottom:0;-webkit-transition:all 0.9s;-moz-transition:all 0.9s;-o-transition:all 0.9s;transition:all 0.9s}.ishi-customhover-fadeintop:after{content:"";background:rgba(0,0,0,.1);transition:all 0.5s ease;-webkit-transition:all 0.5s ease;-moz-transition:all 0.5s ease;-ms-transition:all 0.5s ease;-o-transition:all 0.5s ease;width:100%;height:0%;position:absolute;left:0;right:0;top:0}.ishi-customhover-fadeintop:hover:after{height:100%}.ishi-customhover-fadeinbottom:after{content:"";background:rgba(0,0,0,.1);transition:all 0.5s ease;-webkit-transition:all 0.5s ease;-moz-transition:all 0.5s ease;-ms-transition:all 0.5s ease;-o-transition:all 0.5s ease;width:100%;height:0%;position:absolute;left:0;right:0;bottom:0}.ishi-customhover-fadeinbottom:hover:after{height:100%}.ishi-customhover-fadeintopbottom:before,.ishi-customhover-fadeintopbottom:after{content:"";background:none repeat scroll 0 0 rgba(0,0,0,.1);bottom:-100%;width:100%;height:100%;display:block;left:0;opacity:0;position:absolute;-webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;-ms-transition:all 0.8s ease 0s;-o-transition:all 0.8s ease 0s;transition:all 0.8s ease 0s}.ishi-customhover-fadeintopbottom:after{top:-100%;bottom:auto}.ishi-customhover-fadeintopbottom:hover:before{bottom:50%;opacity:1}.ishi-customhover-fadeintopbottom:hover:after{top:50%;opacity:1}.ishi-customhover-doublefadeincenter:before,.ishi-customhover-doublefadeincenter:after{content:"";bottom:10px;left:10px;opacity:0;position:absolute;right:10px;top:10px;background:rgba(0,0,0,.1) none repeat scroll 0 0;transition:opacity 0.35s ease 0s,transform 0.5s ease 0s;-webkit-transition:opacity 0.35s ease 0s,transform 0.5s ease 0s;-moz-transition:opacity 0.35s ease 0s,transform 0.5s ease 0s;-o-transition:opacity 0.35s ease 0s,transform 0.5s ease 0s;-ms-transition:opacity 0.35s ease 0s,transform 0.5s ease 0s}.ishi-customhover-doublefadeincenter:before{transform:scale(0,1);-webkit-transform:scale(0,1);-moz-transform:scale(0,1);-o-transform:scale(0,1);-ms-transform:scale(0,1)}.ishi-customhover-doublefadeincenter:after{transform:scale(1,0);-webkit-transform:scale(1,0);-moz-transform:scale(1,0);-o-transform:scale(1,0);-ms-transform:scale(1,0)}.ishi-customhover-doublefadeincenter:hover:before,.ishi-customhover-doublefadeincenter:hover:after{opacity:1;transform:scale(1);-webkit-transform:scale(1);-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1)}.ishi-customhover-fadeoutcenter:after{background:rgba(0,0,0,.1) none repeat scroll 0 0;bottom:20px;content:"";left:20px;position:absolute;right:20px;top:20px;transform:scale(0);-webkit-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);opacity:1}.ishi-customhover-fadeoutcenter:hover:after{transform:scale(1);-webkit-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transition-duration:1s;-moz-transition-duration:1s;-webkit-transition-duration:1s;-khtml-transition-duration:1s;-o-transition-duration:1s;opacity:0}.ishi-customhover-fadeoutcorner:before,.ishi-customhover-fadeoutcorner:after{content:"";position:absolute;top:0;left:0;width:0;height:0;background:rgba(0,0,0,.1);margin:auto;opacity:1}.ishi-customhover-fadeoutcorner:after{bottom:0;right:0;left:auto;top:auto}.ishi-customhover-fadeoutcorner:hover:before,.ishi-customhover-fadeoutcorner:hover:after{height:100%;-webkit-transition:1.3s;transition:1.3s;opacity:0;width:100%}.ishi-customhover-fadeinoutcorner:after{background-color:#000;width:0;height:0;content:"";opacity:.1;position:absolute;-webkit-transition:all 0.4s ease-in-out 0s;right:0}.ishi-customhover-fadeinoutcorner:hover:after{width:100%;height:100%;right:auto;left:0}.ishi-customhover-doublefadeincorner:before,.ishi-customhover-doublefadeincorner:after{background:rgba(0,0,0,.1) none repeat scroll 0 0;bottom:0;content:"";left:0;opacity:0;-moz-opacity:0;-webkit-opacity:0;position:absolute;right:0;top:0;z-index:1;transform:scaleX(1);-webkit-transform:scaleX(1);-moz-transform:scaleX(1);-o-transform:scaleX(1);-ms-transform:scaleX(1)}.ishi-customhover-doublefadeincorner:after{transform:scaleY(1);-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-o-transform:scaleY(1);-ms-transform:scaleY(1)}.ishi-customhover-doublefadeincorner:hover:before,.ishi-customhover-doublefadeincorner:hover:after{opacity:1;-moz-opacity:1;-webkit-opacity:1;transform:scaleX(0);-webkit-transform:scaleX(0);-moz-transform:scaleX(0);-o-transform:scaleX(0);-ms-transform:scaleX(0);-webkit-transition:all 800ms ease-in-out 0s;-moz-transition:all 800ms ease-in-out 0s;-o-transition:all 800ms ease-in-out 0s;-ms-transition:all 400ms ease-in-out 0s;transition:all 800ms ease-in-out 0s}.ishi-customhover-doublefadeincorner:hover:after{transform:scaleY(0);-webkit-transform:scaleY(0);-moz-transform:scaleY(0);-o-transform:scaleY(0);-ms-transform:scaleY(0)}.ishi-customhover-crossfadein:before{background:transparent linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,.5) 100%) repeat scroll 0 0;content:"";display:block;height:100%;position:absolute;right:-75%;top:0;transform:skewX(-35deg);-webkit-transform:skewX(-35deg);-ms-transform:skewX(-35deg);-o-transform:skewX(-35deg);-moz-transform:skewX(-35deg);width:50%;z-index:2}.ishi-customhover-crossfadein:hover:before{animation:1s ease 0s normal none 1 running fixedAnim;animation:1s ease 0s normal none 1 running fixedAnim;-webkit-animation:1s ease 0s normal none 1 running fixedAnim;-moz-animation:1s ease 0s normal none 1 running fixedAnim}@keyframes fixedAnim{0%{right:125%}}#ishibannerblock{margin-bottom:50px;text-align:center}@media (max-width:991px){#ishibannerblock{margin-bottom:20px}}#ishibannerblock .image-container{display:inline-block;vertical-align:middle}#ishibannerblock .image-container img{max-width:100%;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s}#ishibannerblock .image-container a{display:block;position:relative;overflow:hidden;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s}#ishibannerblock .bannerblock{display:inline-block;vertical-align:middle}@media (max-width:767px){#ishibannerblock .bannerblock{margin-bottom:30px}#ishibannerblock .bannerblock.bannerblock3{margin-bottom:0}}#module-ishiblockwishlist-mywishlist #main>.page-content{border:none;margin-bottom:1.5625rem;padding:0}#module-ishiblockwishlist-mywishlist #mywishlist .page-content{padding:1.25rem;margin-bottom:10px}#module-ishiblockwishlist-mywishlist #mywishlist .page-subtitle{color:#222;font-size:18px;font-weight:600;line-height:24px;margin:0 auto 15px;text-transform:capitalize}#module-ishiblockwishlist-mywishlist #mywishlist .form-control{display:block;color:#777;margin-bottom:1rem}#module-ishiblockwishlist-mywishlist #mywishlist .form-control::placeholder{color:#999}#module-ishiblockwishlist-mywishlist #mywishlist .form-control:focus{border-color:#cfcfcf;color:#777}#module-ishiblockwishlist-mywishlist #mywishlist .mywishlist-btn{display:block;width:100%;overflow:hidden}#module-ishiblockwishlist-mywishlist #mywishlist .mywishlist-btn .submitWishlist{display:block;opacity:1;z-index:2;border-radius:0;line-height:1;margin-bottom:1rem}#module-ishiblockwishlist-mywishlist #mywishlist .block-center{display:block;width:100%;min-height:.01%;overflow-x:auto}#module-ishiblockwishlist-mywishlist #mywishlist .block-center .table-bordered{font-size:14px}#module-ishiblockwishlist-mywishlist #mywishlist .block-center .table-bordered thead th{border-bottom:2px solid #e9e9e9}#module-ishiblockwishlist-mywishlist #mywishlist .block-center .table-bordered p{color:#777;margin-bottom:0}#module-ishiblockwishlist-mywishlist #mywishlist .block-center .wishlist_delete span{display:none}#module-ishiblockwishlist-mywishlist #mywishlist #block-order-detail label{color:#414141;font-weight:600;line-height:22px}#module-ishiblockwishlist-mywishlist #mywishlist #block-order-detail .wishlisturl .form-control{margin:0;background-color:#e9e9e9;border:1px solid #eee}#module-ishiblockwishlist-mywishlist #mywishlist #block-order-detail .wishlisturl .form-control:focus{border-color:#cfcfcf;background:#fff}#module-ishiblockwishlist-mywishlist #mywishlist #block-order-detail #showSendWishlist{display:inline-block;vertical-align:middle;margin:0 0 10px}#module-ishiblockwishlist-mywishlist #mywishlist #block-order-detail #showSendWishlist a{display:block}#module-ishiblockwishlist-mywishlist #mywishlist #block-order-detail .wlp_bought .product-container{position:relative}#module-ishiblockwishlist-mywishlist #mywishlist #block-order-detail .wlp_bought .lnkdel{position:absolute;top:2%;right:5%;z-index:1}#module-ishiblockwishlist-mywishlist #mywishlist #block-order-detail .wlp_bought .lnkdel i{color:#666}#module-ishiblockwishlist-mywishlist #mywishlist #block-order-detail .wlp_bought .lnkdel i:hover{color:#84a014}@media (max-width:543px){#module-ishiblockwishlist-mywishlist #mywishlist #block-order-detail .wlp_bought .btn_action{text-align:center}}#module-ishiblockwishlist-mywishlist #mywishlist #block-order-detail .hidden{display:none}.wishlist_container{display:block;width:100%;overflow:hidden}.wishlist_container #wishlist_button select,.wishlist_container #wishlist_button .product_wishlist_btn{float:left;width:auto}.wishlist_container #wishlist_button .product_wishlist_btn{padding:11px 10px 11.5px 30px;cursor:pointer}.wishlist_container #wishlist_button .product_wishlist_btn span{padding-left:15px;position:relative}.wishlist_container #wishlist_button .product_wishlist_btn span:before{color:#666;content:"\E87D";position:absolute;left:-5px;font-family:"Material Icons"}.wishlist_login #wishlist_button{position:relative;cursor:pointer}.wishlist_login #wishlist_button:before{color:#666;content:"\E87D";position:absolute;left:0;top:1px;font-family:"Material Icons"}.wishlist_login #wishlist_button span{padding-left:20px}#WishlistModal .modal-header .close{opacity:1}#WishlistModal .modal-body a{float:right;color:#84a014;font-weight:600;text-decoration:underline}.product-comments{margin-bottom:15px}.product-comments span{display:none}.product-comments .star_content{display:inline-block;vertical-align:middle;padding-right:15px;position:relative}@media (max-width:991px){.product-comments .star_content{display:block;padding-right:0;margin-bottom:10px}.product-comments .star_content:after{display:none}}@media (max-width:767px){.product-comments .star_content{display:inline-block;vertical-align:middle;margin-bottom:0;padding-right:15px}.product-comments .star_content:after{display:block}}@media (max-width:543px){.product-comments .star_content{display:block;padding-right:0;margin-bottom:10px}.product-comments .star_content:after{display:none}}.product-comments .star_content:after{content:'';height:20px;width:1px;background:#ccc;position:absolute;top:0;right:0}.product-comments .star_content .star{color:#000;display:inline-block;vertical-align:middle;cursor:pointer;margin:0 -2px;font-size:16px;position:relative}.product-comments .star_content .star:after{content:"\E838";font-family:"Material Icons";color:#d9d9d9}.product-comments .star_content .star_on:after{content:"\E838";font-family:"Material Icons";color:#84a014}.product-comments .comment_advice{display:inline-block;vertical-align:middle}.product-comments .comment_advice a{float:left;text-decoration:none;padding:0 8px;position:relative;font-size:.9375rem;color:#232323;float:left}@media (max-width:991px){.product-comments .comment_advice a{padding-left:0}}@media (max-width:767px){.product-comments .comment_advice a{padding-left:8px}}@media (max-width:543px){.product-comments .comment_advice a{padding:0}.product-comments .comment_advice a:after{display:none}}@media (max-width:991px){.product-comments .comment_advice a.write_comment{padding-left:15px}}@media (max-width:543px){.product-comments .comment_advice a.write_comment{margin-bottom:0}}.product-comments .comment_advice a.write_comment:after{display:none}.product-comments .comment_advice a:after{content:'';height:20px;width:1px;background:#ccc;position:absolute;top:0;right:-4px}.product-comments .comment_advice a i{font-size:16px;color:#888;margin-right:10px;line-height:16px}#reviews #product_comments_block_tab{margin:0}#reviews #product_comments_block_tab .comment{padding:25px 0}#reviews #product_comments_block_tab .comment:first-child{padding-top:15px}#reviews #product_comments_block_tab .comment .comment_author{float:left;padding-right:15px;width:25%}@media (max-width:543px){#reviews #product_comments_block_tab .comment .comment_author{width:100%}}#reviews #product_comments_block_tab .comment .comment_author span{display:none}#reviews #product_comments_block_tab .comment .comment_author .star_content{margin:0;margin-bottom:15px}#reviews #product_comments_block_tab .comment .comment_author .star_content .star{color:#000;display:inline-block;vertical-align:middle;cursor:pointer;margin:0 -2px;font-size:16px;position:relative}#reviews #product_comments_block_tab .comment .comment_author .star_content .star:after{content:"\E838";font-family:"Material Icons";color:#d9d9d9}#reviews #product_comments_block_tab .comment .comment_author .star_content .star a{display:none}#reviews #product_comments_block_tab .comment .comment_author .star_content .star_on:after{content:"\E838";font-family:"Material Icons";color:#84a014}#reviews #product_comments_block_tab .comment .comment_author .comment_author_infos{text-align:left;padding:0;font-size:14px;font-weight:500;color:#000}#reviews #product_comments_block_tab .comment .comment_author .comment_author_infos .user-comment{display:inline-block;vertical-align:middle;font-weight:600}@media (max-width:991px){#reviews #product_comments_block_tab .comment .comment_author .comment_author_infos .user-comment{margin-bottom:18px}}#reviews #product_comments_block_tab .comment .comment_author .comment_author_infos .user-comment i{display:none}#reviews #product_comments_block_tab .comment .comment_author .comment_author_infos .date-comment{display:inline-block;vertical-align:middle;font-size:14px;margin:0}@media (max-width:543px){#reviews #product_comments_block_tab .comment .comment_author .comment_author_infos .date-comment{vertical-align:top;margin-left:15px}}#reviews #product_comments_block_tab .comment .comment_details{float:left;width:75%;text-align:left;color:#000}@media (max-width:543px){#reviews #product_comments_block_tab .comment .comment_details{width:100%}}#reviews #product_comments_block_tab .comment .comment_details .comment_title{font-size:14px;padding:0;margin-bottom:15px;font-weight:600;color:#000}#reviews #product_comments_block_tab .comment .comment_details .comment_description{font-size:14px;color:#000;margin-bottom:15px}@media (max-width:543px){#reviews #product_comments_block_tab .comment .comment_details .comment_description{margin-bottom:10px}}#reviews #product_comments_block_tab .comment .comment_details ul{font-size:16px}#reviews #product_comments_block_tab .comment .comment_details ul li{float:left}@media (max-width:991px){#reviews #product_comments_block_tab .comment .comment_details ul li{float:none;margin-bottom:15px}}@media (max-width:543px){#reviews #product_comments_block_tab .comment .comment_details ul li{line-height:24px;font-size:15px}}#reviews #product_comments_block_tab .comment .comment_details ul li.comment_report{float:right;line-height:30px;text-decoration:none}@media (max-width:991px){#reviews #product_comments_block_tab .comment .comment_details ul li.comment_report{float:none;margin-bottom:0}}#reviews #product_comments_block_tab .comment .comment_details ul li .usefulness_btn{background:transparent;border:1px solid #e6e6e6;padding:5px 25px;text-transform:uppercase;font-size:15px;margin-left:5px}@media (max-width:767px){#reviews #product_comments_block_tab .comment .comment_details ul li .usefulness_btn{margin-top:15px}}@media (max-width:543px){#reviews #product_comments_block_tab .comment .comment_details ul li .usefulness_btn{display:block;margin-left:0}}#reviews #product_comments_block_tab .comment .comment_details ul li .usefulness_btn:hover{background:#000;border-color:#000}#reviews #product_comments_block_tab .comment .comment_details ul li .usefulness_btn.yes{margin-left:15px;background:#35a26b;border-color:#35a26b}@media (max-width:767px){#reviews #product_comments_block_tab .comment .comment_details ul li .usefulness_btn.yes{margin-left:0}}#reviews #product_comments_block_tab .comment .comment_details ul li .usefulness_btn.yes:hover{background:#000;border-color:#000}#reviews #product_comments_block_tab .open-comment-form{margin:15px 0 0}#new_comment_form .modal-dialog .modal-header{text-align:left}#new_comment_form .modal-dialog .modal-header h4{font-size:16px;line-height:20px;color:#000;font-weight:500;display:inline-block;vertical-align:middle}#new_comment_form .modal-dialog .modal-header h4 i{display:none}#new_comment_form .modal-dialog .modal-header .close{line-height:30px;opacity:1}#new_comment_form .modal-dialog .modal-body{display:block;overflow:hidden}#new_comment_form .modal-dialog .modal-body .product-image{margin-bottom:15px}#new_comment_form .modal-dialog .modal-body .product_desc .product_name{font-size:17px;font-weight:400;color:#000;margin-bottom:10px;line-height:24px;text-transform:capitalize}#new_comment_form .modal-dialog .modal-body .product_desc p{font-size:14px;color:#777;font-weight:400}#new_comment_form .modal-dialog .modal-body .new_comment_form_content{background:#f8f8f8;padding:40px 15px}#new_comment_form .modal-dialog .modal-body .new_comment_form_content label{text-align:left;font-size:14px;font-weight:400;float:left;margin:0;margin-bottom:5px}#new_comment_form .modal-dialog .modal-body .new_comment_form_content #criterions_list{border-bottom:1px solid #e6e6e6;margin-bottom:30px}#new_comment_form .modal-dialog .modal-body .new_comment_form_content #criterions_list label{margin:0 10px 0 0}#new_comment_form .modal-dialog .modal-body .new_comment_form_content #criterions_list .star_content .star{color:#000;display:inline-block;vertical-align:middle;cursor:pointer;margin:0 -2px;font-size:16px;position:relative}#new_comment_form .modal-dialog .modal-body .new_comment_form_content #criterions_list .star_content .star:after{content:"\E838";font-family:"Material Icons";color:#d9d9d9}#new_comment_form .modal-dialog .modal-body .new_comment_form_content #criterions_list .star_content .star a{display:none}#new_comment_form .modal-dialog .modal-body .new_comment_form_content #criterions_list .star_content .star_on:after,#new_comment_form .modal-dialog .modal-body .new_comment_form_content #criterions_list .star_content .star_hover:after{content:"\E838";font-family:"Material Icons";color:#84a014}#new_comment_form .modal-dialog .modal-body .new_comment_form_content .form-group{margin-bottom:30px}#new_comment_form .modal-dialog .modal-body .new_comment_form_content .form-group #content{border:1px solid rgba(0,0,0,.1);padding:.5rem 1rem}#new_comment_form .modal-dialog .modal-body .new_comment_form_content #new_comment_form_footer{font-size:14px;margin-top:0}#new_comment_form .modal-dialog .modal-body .new_comment_form_content #new_comment_form_footer .fl{float:none;text-align:left;margin-bottom:30px}#new_comment_form .modal-dialog .modal-body .new_comment_form_content #new_comment_form_footer .fr{float:none}.clearfix{clear:both}#header{color:#000;font-family:"Poppins",sans-serif;font-weight:400;font-size:14px;letter-spacing:.5px}#header #desktop_logo{max-width:240px;padding:15px 0;text-align:center;margin:0 auto;position:absolute;left:0;right:0}@media (max-width:991px){#header #desktop_logo{position:relative}#header #desktop_logo h1{margin:0}}#header .logo{max-width:100%}#header a{color:#000;text-decoration:none}#header a:hover{color:#84a014}#header .menu-icon{float:left;cursor:pointer}#header .nav-full-width{background-color:transparent;border-top:1px solid #f1f1f1}@media (max-width:991px){#header .nav-full-width{background-color:#84a014;border-top:0}}#header .nav-full-width.fixed-header{background-color:#fff;position:fixed;top:0;left:0;width:100%;z-index:99;box-shadow:0 1px 2px 0 rgba(0,0,0,.2);animation:slide-down 0.7s;-moz-animation:slide-down 0.7s;-webkit-animation:slide-down 0.7s;-o-animation:slide-down 0.7s;overflow:visible}@media (max-width:991px){#header .nav-full-width.fixed-header{background-color:#84a014}}@keyframes slide-down{0%{transform:translateY(-100%);-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);-moz-transform:translateY(-100%)}100%{transform:translateY(0);-webkit-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);-moz-transform:translateY(0)}}#header .header-nav{background:#343434}#header .header-nav #menu-icon{vertical-align:middle;cursor:pointer;margin-left:1rem}#header .header-nav #menu-icon .material-icons{line-height:50px}#header .header-nav .material-icons{line-height:24px}#header .header-nav .left-nav{text-align:left}@media (max-width:767px){#header .header-nav .left-nav{text-align:center}}#header .header-nav .left-nav>div{display:inline-block;vertical-align:middle}#header .header-nav .right-nav{text-align:right}@media (max-width:767px){#header .header-nav .right-nav{text-align:center}}#header .header-nav .right-nav>div{display:inline-block;vertical-align:middle}#header #contact-link{margin:12px 0;font-size:16px;font-family:"Poppins",sans-serif;color:#84a014}@media (max-width:543px){#header #contact-link{margin-bottom:0}}#header #contact-link a{color:#84a014}#header #contact-link .contact-title{display:none}#header #contact-link i{font-size:18px;vertical-align:middle}#header #contact-link .contact-num{color:#84a014;margin-left:8px}#header .currency-selector,#header .language-selector,#header .user-info{padding:10px 8px;white-space:nowrap;display:inline-block;vertical-align:middle}@media (max-width:767px){#header .currency-selector,#header .language-selector,#header .user-info{padding:8px 3px}}#header .currency-selector .dropdown-menu,#header .language-selector .dropdown-menu,#header .user-info .dropdown-menu{left:auto;right:0;top:43px;padding:5px 7px;margin:0}@media (max-width:767px){#header .currency-selector .dropdown-menu,#header .language-selector .dropdown-menu,#header .user-info .dropdown-menu{top:40px}}@media (max-width:543px){#header .currency-selector .dropdown-menu,#header .language-selector .dropdown-menu,#header .user-info .dropdown-menu{min-width:100px}}#header .currency-selector li a,#header .language-selector li a,#header .user-info li a{padding:3px 10px;font-size:14px}#header .currency-selector .expand-more,#header .language-selector .expand-more,#header .user-info .expand-more{color:#fff;display:inline-block;vertical-align:middle}#header .currency-selector .currency-selector-label,#header .language-selector .currency-selector-label,#header .user-info .currency-selector-label{display:none}#header .currency-selector .language-selector-label,#header .language-selector .language-selector-label,#header .user-info .language-selector-label{display:none}#header .user-info{padding-right:0}#header .user-info .dropdown-menu li a{display:block}#header .blockcart{cursor:pointer;float:right;padding:22px 15px;text-align:left;white-space:nowrap}@media (max-width:991px){#header .blockcart{padding:0;position:relative}}@media (min-width:992px){#header .blockcart:hover{}#header .blockcart:hover .cart-img{background:#84a014 url(../css/b4839b7388a87b0b4820b0b95dd2f593.png) no-repeat;background-position:-67px -72px;box-shadow:0 0 4px 2px rgba(0,0,0,.2)}}#header .blockcart .header{margin-top:.125rem;padding-right:0}@media (max-width:991px){#header .blockcart .header{margin-top:0;padding:10px 0 10px 5px}}#header .blockcart .cart-link{width:100%;overflow:hidden}#header .blockcart .cart-img{background:url(../css/b4839b7388a87b0b4820b0b95dd2f593.png) no-repeat;background-position:-67px -12px;width:65px;height:65px;border-radius:50%;box-shadow:0 0 4px 2px rgba(132,160,20,.2);display:inline-block;vertical-align:middle;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s}@media (max-width:991px){#header .blockcart .cart-img{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAAmCAYAAAAP4F9VAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA+dpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSIgeG1wOkNyZWF0ZURhdGU9IjIwMTgtMDMtMjFUMTQ6MTE6MjMrMDU6MzAiIHhtcDpNb2RpZnlEYXRlPSIyMDE4LTAzLTIxVDE0OjI2OjQwKzA1OjMwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDE4LTAzLTIxVDE0OjI2OjQwKzA1OjMwIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkM1NTQ0N0E5MkNFNTExRTg4QkFCQzNCOEQ1QUQxNjJCIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkM1NTQ0N0FBMkNFNTExRTg4QkFCQzNCOEQ1QUQxNjJCIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjAxRjZDRDNCMkIzRDExRThBQkFCODZFNDk5RUZDREQzIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjAxRjZDRDNDMkIzRDExRThBQkFCODZFNDk5RUZDREQzIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+ACQ3NwAABEJJREFUeNrsmllIVUEYx72mmRlmpmJUDwmFttiCRRIWEVgUEW1GthElqWBUL0YEUVC+FKHQQrTTg5oVoZX40CaSkWWRLWZFmUFSZnsZ1ek/9BduF/KeOffOmDUf/PB6z5yZ78z/zPJ9c12WZQUY+3ct0HSBEdiYEdiYEdiYEdiYEdiYEdiYEdgIbMsiwFpwEbQCkTFpBmVgBQjR+Bz32X47OV1Mh3hwEDSBr+Ap2AvifK3Y5TCTtQxsB1HgHagFL0F/MAqEgkaQBc5q6KD1YBA/zwFPwNguIu58cBR8BCfZb3F8jm5ggU99KASWZLP1y56BdBDicb0XyAGt4DvIcNCGL+xnu1Ga23VCEmgD5SDC41oMqAQfQbzTNmRvWEZxr4JoL2UHg4fgG5issdPS6OPCLiDwOdAIwv5wvS9oAYU6BBaNvaVD0TbvEW/eB1AHumnqtEi+VIc8vj8FXktQqdjPnuAr2OSlXAFHsaN2giRm85UgHGRzvbW7+dkJNoLpoFTDmvYa1IBUj+/FPqGXjfvF/mEC6KnYz1gQDB56KVdPX8K531G2Bl8G70EPybeoP6fMfRqnvi1sc4SDezN471LFPoo19wdY56XcNo70QCftyIRJQ8BN8EXyHXoOnoEEjTvTCv5NlY0qwBrwChQp9vENuA4WdxCudgdpDEV/qI6D+9Appw8ToVHgavDWgcCi/FDGoG0a/NwKRjPkdHlcE8vnHoZMeTrCpCbunp1MRy84xevcoZ4En0CoxD3lDFv6afQzj0tCNVgFpoJsUMspPNeX+mUKV4AvoLdkI0P4APmaBc5ku9Nslh/MDj3SCeGSCO3uWb/bLTDT17plpuhTTD8ulZwk1vBvaYBeK5dch3M4TRZ0QjarmHuUgSAJ9AMj/dFnMqlKsVVvYBgxzsb2XlgKOA9ugPHME+u0eu4zNtjYi+wHdSBZg1/iRZoGZoFh7NM/2Wc+x2nm+S1VAgubCs4wGT6DcW5H4opRH8m38XYnjIwdYJ1kXrhEsU9C0MMcqS/ZLy0dlBf9lwiiGd8vAg9UHjYsB/sYLokOPMAwqN3EVJPJhEh7IqWIjn3XLHAYZw6XjbJipFQp9kcIdYl9txqcsBn+iBlmLsgHPcAk2wPG4eI9Edxx2xA0g/vMm7bbFZAIjvP/Qo3pyr8RcSjTAB6DAQ7rEPc9Yj3dVRw2uCPEmg0OMm9bD6q4W3Y/XAhyE7lIo8jipOsYmGejbCzYBXbzswp/stgHk3ysJ4X1ZKkWWAYhcrFGkZMY8lg8OkzwUr7EbeYpU+TTBVDjp7qusT6/Hjb4Yt9AOj+n8VcLSxS2F+W27or1Kwbc81Le/RBAhY0Bd0Gun/pzuMo12JeRfJjHhyrbCeaMIRIzR4HLS/lkHoOKbN0URT49tvxrj+y06/QnO8a6iJlfVRqBjRmBjRmBjRmBjRmBjRmBjRmB/yf7KcAAxbERpUB8+Y0AAAAASUVORK5CYII=) no-repeat;background-position:-45px 0;width:35px;height:35px;box-shadow:none}}#header .blockcart .cart-content{display:inline-block;vertical-align:middle;padding-left:10px;font-family:"Poppins",sans-serif}@media (max-width:991px){#header .blockcart .cart-content{border-left:none;padding-left:0}}#header .blockcart .cart-content .cart-name{display:block;text-transform:capitalize;position:relative;font-weight:500;font-size:15px;line-height:21px;text-transform:uppercase;-webkit-transition:all 0.3s;-moz-transition:all 0.3s;-o-transition:all 0.3s;transition:all 0.3s}@media (max-width:991px){#header .blockcart .cart-content .cart-name{display:none}}#header .blockcart .cart-dropdown{background:#fff none repeat scroll 0 0;font-family:"Poppins",sans-serif;display:none;left:auto;position:absolute;right:15px;text-align:left;width:350px;z-index:3;border:1px solid #ebebeb;top:100px}@media (max-width:991px){#header .blockcart .cart-dropdown{top:55px}}@media (max-width:543px){#header .blockcart .cart-dropdown{width:300px}}#header .blockcart .cart-dropdown.empty{padding:10px}#header .blockcart .cart-dropdown .product-container{max-height:340px;overflow-y:scroll}#header .blockcart .cart-dropdown .product-container .product{border-bottom:1px solid #ebebeb;padding:5px;position:relative;overflow:hidden}#header .blockcart .cart-dropdown .product-container .product .product-image{float:left;margin-right:12px}#header .blockcart .cart-dropdown .product-container .product .product-image img{border:2px solid #f6f6f6}#header .blockcart .cart-dropdown .product-container .product .product-detail{overflow:hidden;position:relative;font-size:14px;padding-top:10px;font-weight:300}#header .blockcart .cart-dropdown .product-container .product .product-detail .product-name{margin:0 0 5px 0}#header .blockcart .cart-dropdown .product-container .product .product-detail .product-name .cart_block_product_name{white-space:normal}#header .blockcart .cart-dropdown .product-container .product .product-detail .product-name .cart_block_product_name:hover{color:#84a014}#header .blockcart .cart-dropdown .product-container .product .product-detail .price{margin:5px 0;font-size:16px}#header .blockcart .cart-dropdown .product-container .product .product-detail .label{font-weight:500}#header .blockcart .cart-dropdown .product-container .product .product-detail .product-atributes li{line-height:18px}#header .blockcart .cart-dropdown .product-container .product .remove-product{left:auto;position:absolute;right:5px;top:1px}#header .blockcart .cart-dropdown .product-container .product .remove-product .material-icons{font-size:20px}#header .blockcart .cart-dropdown .product-container .product .remove-product .material-icons:hover{color:#84a014}#header .blockcart .cart-dropdown .billing-info{padding:10px}#header .blockcart .cart-dropdown .billing-info .billing{margin:5px 0}#header .blockcart .cart-dropdown .billing-info .billing .label{float:left;font-weight:500}#header .blockcart .cart-dropdown .billing-info .billing .value{float:right;font-weight:400}#header .blockcart .cart-dropdown .cart-btn{padding:10px 15px;text-align:center}#header .blockcart .cart-dropdown .cart-btn a{color:#fff;text-transform:uppercase;background-color:#84a014;border:1px solid #84a014;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s}#header .blockcart .cart-dropdown .cart-btn a:hover,#header .blockcart .cart-dropdown .cart-btn a:active,#header .blockcart .cart-dropdown .cart-btn a:focus{background-color:#000;border-color:#000}#header .blockcart .cart-products-count{line-height:14px;display:block;width:auto;margin-top:5px;letter-spacing:1px;text-transform:capitalize;text-align:left;font-size:13px;color:#a4a4a4}@media (max-width:991px){#header .blockcart .cart-products-count{border-radius:50%;height:15px;width:15px;background:#fff;color:#000;font-size:11px;right:10px;top:13px;position:absolute;left:auto;bottom:auto;padding:0;margin:0;text-align:center;margin:0}}#header .blockcart a{color:#000;font-weight:400}#header .blockcart a:hover{color:#84a014}#header .blockcart.active a:hover{color:#fff}#header .blockcart .header{padding-right:0}@media (max-width:767px){#header .blockcart .header{padding-right:0}}#header .header-top{background:transparent}#header .header-top>.container{position:relative}#header .header-top .menu{padding-left:15px}#header .header-top .menu>ul>li{float:none}#header .header-top .position-static{position:static}#header .top-menu-link{margin-left:1.25rem}#wrapper{padding-top:2.5rem}#index #wrapper{padding-top:0}#wrapper .banner{margin-bottom:1.5rem;display:block}.popover{font-family:inherit}.breadcrumb-container{padding:30px 0;background:#f5f5f5}#index .breadcrumb-container{display:none}.breadcrumb-container .breadcrumb{background:transparent;padding:0;margin-bottom:0;text-align:center}.breadcrumb-container .breadcrumb[data-depth="1"]{display:none}.breadcrumb-container .breadcrumb ol{padding-left:0;margin-bottom:0}.breadcrumb-container .breadcrumb li{display:inline}.breadcrumb-container .breadcrumb li::after{content:"-";color:#acaaa6;margin:.3125rem}.breadcrumb-container .breadcrumb li:last-child{content:"/";color:#acaaa6;margin:0}.breadcrumb-container .breadcrumb li:last-child::after{content:""}.breadcrumb-container .breadcrumb li a{color:#232323}.home-title{position:relative;text-align:center;text-transform:capitalize;font-size:38px;margin-bottom:25px;font-weight:600;font-family:"Lobster",cursive}@media (max-width:543px){.home-title{font-size:28px;margin-bottom:20px}}.sub-title{color:#84a014;font-size:16px;font-family:"Poppins",sans-serif;font-weight:400;margin-bottom:15px;text-align:center}#main .page-header{margin-bottom:1.563rem}#main .page-content{margin-bottom:1.563rem}#main .page-content h6{margin-bottom:1.125rem}#main .page-content #notifications{margin-left:-15px;margin-right:-15px}#notifications ul{margin-bottom:0}#footer{margin-top:30px;background:url(../css/b316d2820e7e42fa550c92704be11fce.png) no-repeat center bottom;color:#a7a7a7;background-color:#f7f7f7;padding-bottom:90px}#index #footer{margin-top:0}#footer p{font-family:"Poppins",sans-serif;font-weight:400;letter-spacing:.5;font-size:14px;color:#a7a7a7}#footer a{font-family:"Poppins",sans-serif;font-weight:400;letter-spacing:.5;font-size:15px;color:#a4a4a4;text-decoration:none}#footer h3,#footer .h3{margin-bottom:20px;color:#84a014;text-transform:uppercase;font-size:18px;font-weight:400;cursor:pointer}#footer h3.myaccount-title a,#footer .h3.myaccount-title a{text-transform:uppercase;font-size:18px;font-weight:400;color:#84a014}#footer #mywishlist-link{width:auto;padding:0}#footer #mywishlist-link i{display:none}#footer .footer-before{padding:0 0 0}@media (min-width:544px){#footer .footer-before{padding:0}}#footer .footer-container{padding:30px 0 20px 0}@media (max-width:991px){#footer .footer-container{padding:40px 0}}@media (max-width:543px){#footer .footer-container{padding:30px 0 50px}}#footer .footer-container .block-heading{color:#fff}#footer .footer-container a{-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}#footer .footer-container a:hover{color:gray}@media (max-width:767px){#checkout-cart-summary{float:none;width:100%;margin-top:1rem}section.checkout-step{width:100%}.default-input{min-width:100%}label{clear:both}#products .product-miniature,.featured-products .product-miniature{margin:0 auto}.block-contact{padding-left:.9375rem;border:none}.menu,.dropdown-item{padding-left:0;padding-right:0}}@media (max-width:991px){#header .logo{width:auto}#products .product-miniature,.featured-products .product-miniature{margin:0 auto}.sub-menu{left:0;min-width:100%}#blockcart-modal .product-image{width:100%;display:block;max-width:250px;margin:0 auto .9375rem}#blockcart-modal .cart-content{padding-left:0}#blockcart-modal .product-name,#product-availability{margin-top:.625rem}#search_filters .facet .facet-label{text-align:left}.block-category .category-cover{position:relative;text-align:center}.block-category{padding-bottom:0}}#main .page-content{border:1px solid #eaeaea;margin-bottom:1.5625rem;padding:30px;background:#fff}#left-column .text-uppercase,#right-column .text-uppercase{border:medium none;color:#333;font:600 16px/18px "Poppins",sans-serif;letter-spacing:1px;width:100%;display:block;padding:0;margin:0;text-align:left}@media (min-width:992px){#left-column .collapse.data-toggler{display:inherit}}#left-column .category-block-container{margin-bottom:8px;text-decoration:none}@media (max-width:991px){#left-column .category-block-container{margin-bottom:15px}}#left-column .block-title{background:#f5f5f5;padding:15px;width:100%}#left-column .products{padding:10px 0 0}#left-column .product-miniature{padding:10px}#left-column .product-miniature .product-container{display:inline-block;vertical-align:middle;margin-bottom:0;width:100%}#left-column .product-miniature .product-container .thumbnail-container{float:left;margin-right:10px}#left-column .product-miniature .product-container .product-price-and-shipping{text-align:left}#left-column .product-miniature .product-container .product-title{text-align:left}#left-column .product-miniature .product-container .product-description{margin-top:0;overflow:hidden}#left-column .all-product-link{font-weight:400;margin:0;font-size:14px;text-align:right;display:block}#left-column section.featured-products{margin-bottom:15px;padding:0;border:1px solid #eee}#left-column section.featured-products .product-container .product-description .product-title a{font-size:14px}#left-column section.featured-products .product-container .product-price-and-shipping .sr-only,#left-column section.featured-products .product-container .product-price-and-shipping .price{font-size:14px}#left-column section.featured-products .product-container .product-price-and-shipping .discount-percentage,#left-column section.featured-products .product-container .product-price-and-shipping .discount-amount{padding:2px;font-size:14px}#slidetop{background:#000 none repeat scroll 0 0;color:transparent;bottom:20px;cursor:pointer;height:40px;overflow:hidden;padding:6px;position:fixed;right:20px;text-align:center;width:40px;z-index:99;display:none;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s}#slidetop::after{content:'\E5CE';display:inline-block;color:#fff;font-family:material icons;font-size:26px;left:0;position:absolute;right:0;top:10px}#slidetop:hover{background-color:#84a014}#siteloader{background:transparent url(../css/e367d5cca0592b4671d20f95c54b77d7.gif) no-repeat scroll center center;height:100%;left:0;position:fixed;top:0;width:100%;background-size:6%;z-index:9999}#spin-wrapper{width:100%;height:100%;position:fixed;z-index:9998;background:#fff;top:0;bottom:0;left:0;right:0}.block-title,.footer-title,.title{position:relative;cursor:pointer}.block-title .navbar-toggler,.footer-title .navbar-toggler,.title .navbar-toggler{position:absolute;top:12px;right:15px;padding:0}.block-title .navbar-toggler i.add,.footer-title .navbar-toggler i.add{display:none}.block-title .navbar-toggler i.remove,.footer-title .navbar-toggler i.remove{display:block}.block-title.collapsed .navbar-toggler i.add,.footer-title.collapsed .navbar-toggler i.add{display:block}.block-title.collapsed .navbar-toggler i.remove,.footer-title.collapsed .navbar-toggler i.remove{display:none}.footer-title .navbar-toggler{top:-2px;right:0}input[type=number]{-moz-appearance:textfield}input[type=number]::-webkit-outer-spin-button,input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}*{outline:none!important}.blockreassurance{padding-top:10px;text-align:center;width:100%}.blockreassurance .reass-item{display:inline-block;text-align:center;vertical-align:top}.blockreassurance .block-title{font-weight:700}.blockreassurance .block-icon,.blockreassurance .block-icon img,.blockreassurance .block-icon svg{height:70px}@media (max-width:575px){.blockreassurance{text-align:left}.blockreassurance .block-icon{display:inline-block;height:35px;float:left;margin:10px;width:35px}.blockreassurance .block-icon img,.blockreassurance .block-icon svg{height:35px;width:35px}.blockreassurance .block-title{display:inline-block;height:35px;max-width:calc(100% - 55px);padding-top:10px}}.blockreassurance_product{margin-top:10px;margin-bottom:30px}.blockreassurance_product li{margin-bottom:7px}.blockreassurance_product li .block-reassurance-item{padding:15px;border-left:3px solid #000!important;border:1px solid #e9e9e9;border-left-color:rgb(233,233,233);border-left-style:solid;border-left-width:1px;background:#f7f8fa;text-transform:capitalize}.blockreassurance_product .item-product{display:inline-block;height:25px;float:left;margin-right:10px;width:25px}.blockreassurance_product .item-product img,.blockreassurance_product .item-product svg{height:25px;width:25px}.blockreassurance_product li .block-reassurance-item p{display:inline-block;padding-top:5px;margin-bottom:0;line-height:20px}body#checkout .container-blockreassurance{min-height:auto}.add_wishlist_button a{padding:5px 7px 5px 18px}.add_wishlist_button a span{z-index:10;display:block;position:absolute;top:-1px;left:-12px;height:26px;width:26px;background:url(../../../../modules/ishiblockwishlist/img/icon/pict_add_wishlist.png) no-repeat 0 0 transparent}#wishlist_block #wishlist_block_list{margin:5px 0 10px 0;padding-bottom:10px;border-bottom:1px dotted #ccc}#wishlist_block_list dt{position:relative;margin-top:5px;padding-right:20px}#wishlist_block_list .quantity-formated{display:inline-block;margin-right:5px;width:15px}#wishlist_block_list .cart_block_product_name{font-weight:700}#wishlist_block_list .ajax_cart_block_remove_link{display:inline-block;position:absolute;right:0;top:0;margin:1px 0 0 5px;height:12px;width:12px}#wishlist_block_list dd{margin:0 0 0 24px}#wishlist_block_list .ajax_cart_block_remove_link a{display:inline-block;height:12px;width:12px;background:url(data:image/gif;base64,R0lGODlhDAAMAMQTAFBRUs/S1eHk5yoqKktMTU5OT1VWV9TX2lNUVOvu8p2eoZqcniUlJUlJSkZHR/j7/9LU2DIyMiAgIP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAABMALAAAAAAMAAwAAAVS4CQqBsMYiigKjeS+jSA6UhO5UetMilQkkEgEkihIFAhJ5PCAQB6HG4KBYzZvEhPu+QhgBwDl09m9ARY+oJBIkCwmNBtOp6K9XDvVZGFwId4iIQA7) no-repeat 0 0}#wishlist_block_list .price{float:right}#wishlist_block select#wishlists{margin-bottom:10px;width:99%;border:1px solid #ccc}#wishlist_block .lnk{padding:0}#wishlist_block .lnk a{display:block;font-weight:700;text-align:right}#module-ishiblockwishlist-mywishlist #left_column{display:none}#module-ishiblockwishlist-mywishlist #center_column{width:757px}#module-ishiblockwishlist-mywishlist .wishlistLinkTop ul{list-style-type:none;border-bottom:1px dotted #ccc}#module-ishiblockwishlist-mywishlist .wishlistLinkTop ul.wlp_bought_list{border:none}#module-ishiblockwishlist-mywishlist .wishlistLinkTop li{float:left}#module-ishiblockwishlist-mywishlist .wishlistLinkTop .display_list li a{display:inline-block;padding:7px 11px 7px 15px;color:#333;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAHCAMAAAAYuxziAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRFMzMz////Iyh/xwAAAAJ0Uk5T/wDltzBKAAAAHUlEQVR42mJgYGRkZGBgABMMYIIBxgKJAWUBAgwAAOsADWAYJAIAAAAASUVORK5CYII=) no-repeat 0 14px transparent}#module-ishiblockwishlist-mywishlist .wishlistLinkTop #showBoughtProducts,#module-ishiblockwishlist-mywishlist .wishlistLinkTop #hideBoughtProductsInfos{display:none}#new_comment_form .title{padding:10px;font-size:13px;color:#fff;text-transform:uppercase;background:#333}#new_comment_form ul.grade_content{list-style-type:none}#new_comment_form .grade_content li{width:50%}#new_comment_form .product{margin-bottom:15px}#new_comment_form .product img{border:1px solid #ccc}#new_comment_form .product .product_desc{line-height:18px;color:#666}#new_comment_form .product .product_desc .product_name{padding-bottom:5px;font-size:18px;font-weight:700}#new_comment_form .grade_content{margin:0 0 20px 0}#new_comment_form .grade_content span,#new_comment_form .grade_content span{display:inline-block;padding:0 10px;width:150px;font-weight:700}#new_comment_form .grade_content .cancel{margin-right:5px}.new_comment_form_content .intro_form{padding-bottom:10px;font-weight:700;font-size:12px}#new_comment_form label{display:block;margin:12px 0 4px 0;font-weight:700;font-size:12px}#new_comment_form .submit{margin-top:20px;padding:0;font-size:13px;text-align:right;padding:5px 15px;border-radius:3px 3px 3px 3px}#new_comment_form #criterions_list{padding:0;list-style-type:none}#new_comment_form #criterions_list li{margin-bottom:10px}#new_comment_form #criterions_list label{display:inline-block;vertical-align:top;margin:0;margin-top:5px}#new_comment_form #criterions_list .star_content{display:inline-block;vertical-align:top}#new_comment_form #new_comment_form_footer{margin-top:20px;font-size:12px}#product_comments_block_tab{margin:0 0 20px 0}#product_comments_block_tab div.comment{margin:0 0 0 0;padding:10px 0;border-bottom:1px solid #f7f7f7}#product_comments_block_tab div.comment:first-child{padding-top:0}#product_comments_block_tab div.comment div.comment_author{float:left;padding-right:25px;width:140px;line-height:18px}#product_comments_block_tab div.comment div.comment_author span,#product_comments_block_tab div.comment .star_content{float:left}#product_comments_block_tab div.comment .star_content{margin:0 0 0 5px}#product_comments_block_tab .comment_author_infos{clear:both;font-size:1.4rem;padding-top:8px}#product_comments_block_tab .comment_author_infos i{font-size:1.4rem}#product_comments_block_tab .comment_author_infos .date-comment{font-size:1.3rem;margin-top:10px;font-style:italic}#product_comments_block_tab div.comment div.comment_details{float:left;overflow:hidden;width:calc(100% - 140px)}#product_comments_block_tab div.comment div.comment_details p{margin-bottom:0}#product_comments_block_tab div.comment_details .title_block,#product_comments_block_tab div.comment_details h4{padding-bottom:10px;margin-bottom:0;font-size:1.3rem;font-weight:400;color:#222}#product_comments_block_tab div.comment_details ul{list-style-type:none;margin:0;padding:0;font-size:1.3rem}#product_comments_block_tab button.usefulness_btn{cursor:pointer;margin:0 0 0 5px;display:inline-block;padding:0 3px;border:1px solid #a7a7a7;border-radius:2px;color:#222;background:#fff}#product_comments_block_tab button.usefulness_btn.yes{background:#35a26b;color:#fff;border-color:#35a26b}#product_comments_block_tab button.usefulness_btn:hover{background:#94cdd5;color:#fff;border-color:#94cdd5}#product_comments_block_tab button.usefulness_btn:active{background:#94cdd5;color:#fff}#product_comments_block_tab span.report_btn{cursor:pointer}#product_comments_block_tab span.report_btn:hover{text-decoration:underline}#new_comment_form_error{padding:10px 15px;display:none;font-size:1.3rem}#new_comment_form_error ul{list-style:none;margin-bottom:0}.fl{float:left}.fr{float:right}/*! jQuery UI - v1.10.3 - 2013-06-25
+* http://jqueryui.com
+* Includes: jquery.ui.core.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css
+* Copyright 2013 jQuery Foundation and other contributors Licensed MIT */
+ .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted #000}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin-top:2px;padding:.5em .5em .5em .7em;min-height:0}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-noicons{padding-left:.7em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month-year{width:100%}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:49%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:700;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:21px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-menu{list-style:none;padding:2px;margin:0;display:block;outline:0}.ui-menu .ui-menu{margin-top:-3px;position:absolute}.ui-menu .ui-menu-item{margin:0;padding:0;width:100%;list-style-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)}.ui-menu .ui-menu-divider{margin:5px -2px 5px -2px;height:0;font-size:0;line-height:0;border-width:1px 0 0}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:2px .4em;line-height:1.5;min-height:0;font-weight:400}.ui-menu .ui-menu-item a.ui-state-focus,.ui-menu .ui-menu-item a.ui-state-active{font-weight:400;margin:-1px}.ui-menu .ui-state-disabled{font-weight:400;margin:.4em 0 .2em;line-height:1.5}.ui-menu .ui-state-disabled a{cursor:default}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item a{position:relative;padding-left:2em}.ui-menu .ui-icon{position:absolute;top:.2em;left:.2em}.ui-menu .ui-menu-icon{position:static;float:right}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url(data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACYTETYKZxm0LnoJKTIstw1o97BxhyAAmSXIqFIrtGcCQv9GKbuIm3Zc/qeqwgL8gL8oK6pa6pe+qiuqmuqrvqsrqtrqv7fnlf3pf35X15X96X9+V9eV8dXWfX4XV6Hb9vIKQAIfkECQEAAQAsAAAAACgAKAAAAmExCL6FLgd+aw9FOVNVF2e3u3eB4TR+4AaYIvq15VvG1EzVyZ3kq7jn6u7Hgwh/xh/yp/wxf84f9Cf9UX/WH/an1e60O+1Ou9PutDvtTrvT7rS/9y/+m//qv/sv/9vzGYQUACH5BAkBAAEALAAAAAAoACgAAAJhwREICKaGte9yEkbZqLIGJ705o4GhCHqjd5jiKrbTO8XXfNXHfdzouee85pcb5oq5Yy6ZW+aauWcumpvmqtVddVfdVXfVXXVX3VV31V01p86xc+4cPCfP0XP2HD6n30MIKQAh+QQJAQABACwAAAAAKAAoAAACYvAtdDnwA4mPoKvoxuJzcc1U24V58+5lgBeIY9ihnSqxkmvBljzSo43bus3bvg20CW1Em9GGtCltTCaNZIJ2mE/mk/lkPplP5pP5ZNrGtrLtbEvb1ra27W2L2+a2uu2OvxBSACH5BAkBAAEALAAAAAAoACgAAAJh8Ck+BixzfmsvRTlPXRdnsE33KeFHbp33mRcqrlOrvtRM1diN5cqu7PHp1wPChr/hb/gb/oa/YS/am/aqvWsv29v2ur1vLxz+hX/hX/gX/oV/4V/4F/6Ff+FfuKfv8fkEFAAh+QQJAQABACwAAAAAKAAoAAACYjAoPgYsc35rL0U5T10XZ7BN9ynhR26dV3ZqJqJs5XZwJGe0hDO6xgO+rQL0EX1GH9KnVPKCtaayqWwqm8qmsqlsKptKH9gn9pF9Zh/ap/axfW4f3Cf30elNepPepDfpLAIKACH5BAkBAAEALAAAAAAoACgAAAJgQCg+gu6iG2PPRTlPVRdnsGH3dZ7YldkXjGeVjmzkdrBEL7aGA7qc8TpQJ9QRibhe60g8Eo/EI/FIPBKPxCNRp9VxdV4dWCfWkXVmHVqn1rF1bvfRfXQf3Uf30X10wwgoACH5BAkBAAEALAAAAAAoACgAAAJeCeMf6C66sfhQZJNWdWEGm2df54ldGZZZWn3BuEowIze0Ynu4jvO479tar6Av6Av6gr6gL+gL+oI+HBVnxWFxWhwX58WBcWIcGWfGodFBdBAdRAfRQXQQHUQH0TQCCgAh+QQJAQABACwAAAAAKAAoAAACXfEPdBfdWHwoskmrujCDzbOv88SuDMssrb5gXCWYkRtasT1c1+327XU9XU/X0/V0PV1P19PhoDgpjoqz4rA4LY6L8+LAODGOTO6Re+QeuUfukXvkHrlH7pFxeRwhBQAh+QQJAQABACwAAAAAKAAoAAACX/EDdBfdWHwoskmrujCDzbOv88SuDMssrb6kWyWYkRtas9sxV20P73csIA6IA+KAOCAO2HP2oD1pj9qz9rA9bY/b8/bAPbEYJ8aJcWKcGCfGiXFinBgn7t17+d5+T0gKADs=);height:100%;filter:alpha(opacity=25);opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:0;background:0;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:0;border-bottom:0;border-right:0}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-tabs-loading a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:0}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px}/*! jQuery UI - v1.10.3 - 2013-06-12
+* http://jqueryui.com
+* Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
+ .ui-widget{font-family:Verdana,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Verdana,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #aaa;background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAABkAQAAAADcH0/XAAAAEUlEQVR4AWP4DwLUJUfJURIAypHyHErLyzcAAAAASUVORK5CYII=) 50% 50% repeat-x;color:#222}.ui-widget-content a{color:#222}.ui-widget-header{border:1px solid #aaa;background:#ccc url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABkCAAAAABiRwW8AAAAHUlEQVQY02N4xMRAFfgfCCEkBP7DYDMAaQimAQQAiywTk9l9hAoAAAAASUVORK5CYII=) 50% 50% repeat-x;color:#222;font-weight:700}.ui-widget-header a{color:#222}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #d3d3d3;background:#e6e6e6 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAGQCAAAAABKM1UHAAAAH0lEQVQ4y2N4y8QwCgcR/AnEjGCMDBmYmKDio5CuEABaxAUQRVsJFgAAAABJRU5ErkJggg==) 50% 50% repeat-x;font-weight:400;color:#555}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#555;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #999;background:#dadada url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAGQCAAAAABKM1UHAAAAH0lEQVR42mN4wsQwiOAo/AbEjFDIBMIgEgbp7ZpRCABBfwUJFjr9hgAAAABJRU5ErkJggg==) 50% 50% repeat-x;font-weight:400;color:#212121}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited{color:#212121;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #aaa;background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAGQCAAAAABKM1UHAAAAGElEQVR42mP4N6jgKPwPIdEhSIz+cBQCAN0ljbVRDamVAAAAAElFTkSuQmCC) 50% 50% repeat-x;font-weight:400;color:#212121}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#212121;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fcefa1;background:#fbf9ee url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAGQCAIAAADgOp2MAAAANklEQVR4Ae3KsQ0AIAhEUfYfVlUqgcIL0rqAueLlN1/CJhE9+G7Jsh2qNlC4X3VJuKIq/j+iA4lnicmEWt+AAAAAAElFTkSuQmCC) 50% 50% repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#fef1ec url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAGQCAIAAADgOp2MAAAANUlEQVR42u3GAQaAABjF4L3d/7YRif4kEjpBHj4bx7oI1JeqfXNmTOKQu8FE4f3I01z9u6oTmGgOCwxIvwUAAAAASUVORK5CYII=) 50% 50% repeat-x;color:#cd0a0a}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#cd0a0a}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#cd0a0a}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:700}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url(data:image/png;base64,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)}.ui-widget-header .ui-icon{background-image:url(data:image/png;base64,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)}.ui-state-default .ui-icon{background-image:url(data:image/png;base64,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)}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url(data:image/png;base64,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)}.ui-state-active .ui-icon{background-image:url(data:image/png;base64,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)}.ui-state-highlight .ui-icon{background-image:url(data:image/png;base64,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)}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url(data:image/png;base64,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)}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#aaa url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAABkAQMAAADOquA5AAAAA1BMVEWqqqoRfvv5AAAADklEQVR4AWMYBaOABgAAAlgAAXQ7rtkAAAAASUVORK5CYII=) 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{margin:-8px 0 0 -8px;padding:8px;background:#aaa url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAABkAQMAAADOquA5AAAAA1BMVEWqqqoRfvv5AAAADklEQVR4AWMYBaOABgAAAlgAAXQ7rtkAAAAASUVORK5CYII=) 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30);border-radius:8px}/*! jQuery UI - v1.10.3 - 2013-06-12
+* http://jqueryui.com
+* Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
+ .ui-widget{font-family:Verdana,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Verdana,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #aaa;background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAABkAQAAAADcH0/XAAAAEUlEQVR4AWP4DwLUJUfJURIAypHyHErLyzcAAAAASUVORK5CYII=) 50% 50% repeat-x;color:#222}.ui-widget-content a{color:#222}.ui-widget-header{border:1px solid #aaa;background:#ccc url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABkCAAAAABiRwW8AAAAHUlEQVQY02N4xMRAFfgfCCEkBP7DYDMAaQimAQQAiywTk9l9hAoAAAAASUVORK5CYII=) 50% 50% repeat-x;color:#222;font-weight:700}.ui-widget-header a{color:#222}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #d3d3d3;background:#e6e6e6 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAGQCAAAAABKM1UHAAAAH0lEQVQ4y2N4y8QwCgcR/AnEjGCMDBmYmKDio5CuEABaxAUQRVsJFgAAAABJRU5ErkJggg==) 50% 50% repeat-x;font-weight:400;color:#555}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#555;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #999;background:#dadada url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAGQCAAAAABKM1UHAAAAH0lEQVR42mN4wsQwiOAo/AbEjFDIBMIgEgbp7ZpRCABBfwUJFjr9hgAAAABJRU5ErkJggg==) 50% 50% repeat-x;font-weight:400;color:#212121}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited{color:#212121;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #aaa;background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAGQCAAAAABKM1UHAAAAGElEQVR42mP4N6jgKPwPIdEhSIz+cBQCAN0ljbVRDamVAAAAAElFTkSuQmCC) 50% 50% repeat-x;font-weight:400;color:#212121}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#212121;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fcefa1;background:#fbf9ee url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAGQCAIAAADgOp2MAAAANklEQVR4Ae3KsQ0AIAhEUfYfVlUqgcIL0rqAueLlN1/CJhE9+G7Jsh2qNlC4X3VJuKIq/j+iA4lnicmEWt+AAAAAAElFTkSuQmCC) 50% 50% repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#fef1ec url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAGQCAIAAADgOp2MAAAANUlEQVR42u3GAQaAABjF4L3d/7YRif4kEjpBHj4bx7oI1JeqfXNmTOKQu8FE4f3I01z9u6oTmGgOCwxIvwUAAAAASUVORK5CYII=) 50% 50% repeat-x;color:#cd0a0a}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#cd0a0a}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#cd0a0a}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:700}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url(data:image/png;base64,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)}.ui-widget-header .ui-icon{background-image:url(data:image/png;base64,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)}.ui-state-default .ui-icon{background-image:url(data:image/png;base64,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)}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url(data:image/png;base64,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)}.ui-state-active .ui-icon{background-image:url(data:image/png;base64,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)}.ui-state-highlight .ui-icon{background-image:url(data:image/png;base64,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)}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url(data:image/png;base64,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)}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#aaa url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAABkAQMAAADOquA5AAAAA1BMVEWqqqoRfvv5AAAADklEQVR4AWMYBaOABgAAAlgAAXQ7rtkAAAAASUVORK5CYII=) 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{margin:-8px 0 0 -8px;padding:8px;background:#aaa url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAABkAQMAAADOquA5AAAAA1BMVEWqqqoRfvv5AAAADklEQVR4AWMYBaOABgAAAlgAAXQ7rtkAAAAASUVORK5CYII=) 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30);border-radius:8px}
\ No newline at end of file
diff --git a/build/img/logo.png b/build/img/logo.png
new file mode 100644
index 00000000..3d6ae059
Binary files /dev/null and b/build/img/logo.png differ
diff --git a/build/img/payments/americanexpress.png b/build/img/payments/americanexpress.png
new file mode 100644
index 00000000..62cfb682
Binary files /dev/null and b/build/img/payments/americanexpress.png differ
diff --git a/build/img/payments/discover.png b/build/img/payments/discover.png
new file mode 100644
index 00000000..f697a952
Binary files /dev/null and b/build/img/payments/discover.png differ
diff --git a/build/img/payments/jcb.png b/build/img/payments/jcb.png
new file mode 100644
index 00000000..ed2372eb
Binary files /dev/null and b/build/img/payments/jcb.png differ
diff --git a/build/img/payments/mastercard.png b/build/img/payments/mastercard.png
new file mode 100644
index 00000000..63f2b66f
Binary files /dev/null and b/build/img/payments/mastercard.png differ
diff --git a/build/img/payments/paypal.png b/build/img/payments/paypal.png
new file mode 100644
index 00000000..f4fe4bfe
Binary files /dev/null and b/build/img/payments/paypal.png differ
diff --git a/build/img/payments/visa.png b/build/img/payments/visa.png
new file mode 100644
index 00000000..8d4c1b36
Binary files /dev/null and b/build/img/payments/visa.png differ
diff --git a/build/js/include/animate.js b/build/js/include/animate.js
new file mode 100644
index 00000000..1c27307d
--- /dev/null
+++ b/build/js/include/animate.js
@@ -0,0 +1,15 @@
+function initAnimate()
+{
+/*
+ var wew = new Wew({
+ target: '.wow',
+ keyword: 'wow',
+ });
+
+ wew.init();
+*/
+ wow = new WOW({animateClass: 'animated', live: true});
+ wow.init();
+
+}
+
diff --git a/build/js/include/app.js b/build/js/include/app.js
new file mode 100644
index 00000000..87dd225d
--- /dev/null
+++ b/build/js/include/app.js
@@ -0,0 +1,77 @@
+function sleep(ms) {
+ return new Promise(resolve => setTimeout(resolve, ms));
+}
+
+(function($) {
+ "use strict"; // Start of use strict
+
+ // Toggle the side navigation
+ $("#sidebarToggle, #sidebarToggleTop").on('click', function(e) {
+ $("body").toggleClass("sidebar-toggled");
+ $(".sidebar").toggleClass("toggled");
+ if ($(".sidebar").hasClass("toggled")) {
+ $('.sidebar .collapse').collapse('hide');
+ };
+ });
+
+ // Close any open menu accordions when window is resized below 768px
+ $(window).resize(function() {
+ if ($(window).width() < 768) {
+ $('.sidebar .collapse').collapse('hide');
+ };
+ });
+
+ // Prevent the content wrapper from scrolling when the fixed side navigation hovered over
+ $('body.fixed-nav .sidebar').on('mousewheel DOMMouseScroll wheel', function(e) {
+ if ($(window).width() > 768) {
+ var e0 = e.originalEvent,
+ delta = e0.wheelDelta || -e0.detail;
+ this.scrollTop += (delta < 0 ? 1 : -1) * 30;
+ e.preventDefault();
+ }
+ });
+
+ // Scroll to top button appear
+ $(document).on('scroll', function() {
+ var scrollDistance = $(this).scrollTop();
+ if (scrollDistance > 100) {
+ $('.scroll-to-top').fadeIn();
+ } else {
+ $('.scroll-to-top').fadeOut();
+ }
+ });
+
+ // Smooth scrolling using jQuery easing
+ $(document).on('click', 'a.scroll-to-top', function(e) {
+ var $anchor = $(this);
+ $('html, body').stop().animate({
+ scrollTop: ($($anchor.attr('href')).offset().top)
+ }, 1000, 'easeInOutExpo');
+ e.preventDefault();
+ });
+
+ $('#changePassword-submit').click(function(e){
+ e.preventDefault();
+
+ $.ajax({
+ url: '/changePassword',
+ data: $('#password-form-data').serialize(),
+ method : 'POST',
+ success: function(resp){
+ if (resp.success) {
+ $('#changePasswordMessage').html(resp.message);
+ // await sleep(1000);
+ $('#changepasswordModal').modal('hide');
+ $('#password-form-data').each(function(){
+ this.reset();
+ });
+ } else {
+ $('#changePasswordMessage').html(resp.message);
+ }
+ }
+ });
+ });
+
+ numeral.locale('fr');
+
+})(jQuery); // End of use strict
diff --git a/build/js/include/appender.js b/build/js/include/appender.js
new file mode 100644
index 00000000..6c2f2a60
--- /dev/null
+++ b/build/js/include/appender.js
@@ -0,0 +1,75 @@
+(function ($) {
+ $.fn.appender = function (settings) {
+ let appendArea = this;
+ let rowHtml = $(settings.rowSection)[0].outerHTML;
+
+ settings.hideSection ? $(settings.rowSection).remove() : "";
+
+ let rowCounter = 1;
+
+ if (settings.rowNumberStart) {
+ rowCounter = Number(settings.rowNumberStart);
+ }
+
+ $(document).on('click', settings.addBtn, function (event) {
+
+ $(appendArea).append(rowHtml);
+
+ if (settings.appendEffect === 'fade') {
+ $(settings.rowSection).last().hide().fadeIn();
+ } else if (settings.appendEffect === 'slide') {
+ $(settings.rowSection).last().hide().slideDown(200);
+ }
+
+ $(settings.rowSection).last().addClass(settings.addClass);
+
+ $(settings.rowNumber).last().text(rowCounter);
+
+ if (settings.type) {
+ type = settings.type;
+ } else {
+ type = settings.rowSection;
+ }
+
+ $(type).each(function(rowIndex) {
+ $(this).find('input[name]').each(function(){
+ var name;
+ name = $(this).attr('name');
+ name = name.replace(/\[[0-9]?\]/g, '['+rowIndex+']');
+ $(this).attr('name',name);
+ });
+ $(this).find('select[name]').each(function(){
+ var name;
+ name = $(this).attr('name');
+ name = name.replace(/\[[0-9]?\]/g, '['+rowIndex+']');
+ $(this).attr('name',name);
+ });
+ $(this).find('textarea[name]').each(function(){
+ var name;
+ name = $(this).attr('name');
+ name = name.replace(/\[[0-9]?\]/g, '['+rowIndex+']');
+ $(this).attr('name',name);
+ });
+ });
+
+ rowCounter++;
+
+ if (settings.callback) {
+ settings.callback();
+ }
+
+ });
+
+
+ if(settings.deleteBtn) {
+ $(document).on('click', settings.deleteBtn, function (e) {
+ $(e.target).closest(settings.rowSection).remove();
+ if (settings.callback) {
+ settings.callback();
+ }
+ })
+
+ }
+ };
+
+}(jQuery));
\ No newline at end of file
diff --git a/build/js/include/cache.js b/build/js/include/cache.js
new file mode 100644
index 00000000..254bcd1c
--- /dev/null
+++ b/build/js/include/cache.js
@@ -0,0 +1,5 @@
+function loadCache(file, callback) {
+ file += '?v=' + cache_versions[file];
+ loadScript(file, callback);
+}
+
diff --git a/build/js/include/check_fields.js b/build/js/include/check_fields.js
new file mode 100644
index 00000000..e00f2cf0
--- /dev/null
+++ b/build/js/include/check_fields.js
@@ -0,0 +1,27 @@
+function checkCollapsedFields(selector)
+{
+ var selector = selector + ' input,textarea,select';
+ var nb_fields = $(selector).length();
+ var nb_required = $(selector).filter('[required]').length();
+ var nb_filled = 0;
+ var nb_necessary = 0;
+
+ $(selector).each(function(i, Field){
+ if ($(Field).val() != '')
+ {
+ nb_filled++;
+ }
+ });
+
+ $(selector).filter('[required]').each(function(i, required){
+ if ($(required).val() != '')
+ {
+ nb_necessary++;
+ }
+ });
+
+ result = nb_filled + " / " + nb_fields;
+ result + " | " + nb_necessary + " / " + nb_required;
+
+ $(selector + ' .check').html(result);
+}
diff --git a/build/js/include/chosen.js b/build/js/include/chosen.js
new file mode 100644
index 00000000..0649de46
--- /dev/null
+++ b/build/js/include/chosen.js
@@ -0,0 +1,14 @@
+function initChosen()
+{
+ $(".chosen-select").chosen({ no_results_text: translate.getText.no_result });
+ $(".chosen-search").append(' ');
+ $(".chosen-single div").html(' ');
+ $(".chosen-container-single").addClass('styled');
+}
+
+function resetChosen()
+{
+ $('.chosen-select').each(function() {
+ $(this).val("").trigger("chosen:updated");
+ });
+}
\ No newline at end of file
diff --git a/build/js/include/confirm.js b/build/js/include/confirm.js
new file mode 100644
index 00000000..b9c75306
--- /dev/null
+++ b/build/js/include/confirm.js
@@ -0,0 +1,75 @@
+var confirm_delete_options = {
+ title: "Etes-vous sur ?",
+ text: "Cet enregistrement sera effacé.",
+ type: "warning",
+ showCancelButton: true,
+ confirmButtonClass: "btn-danger",
+ confirmButtonText: "Oui !",
+ cancelButtonText: "Annuler"
+};
+
+function confirm_delete(id, route,callback) {
+ console.log(route);
+ Swal.fire(confirm_delete_options).then(function(result) {
+ if (result.value) {
+ $.ajax({
+ url : route,
+ method : 'DELETE',
+ data: {id:id},
+ success : function(resp){
+ if (resp.success) {
+ console.log(resp);
+ callback();
+ Swal.fire("Supprimé !", "L'enregistrement a été supprimé.", "success");
+ } else {
+ Swal.fire("Erreur!", "L'enregistrement n'a pu être supprimé pour les raisons suivantes : "+resp.message, "danger");
+ if(resp.code == 401){
+ location.reload();
+ }
+ }
+ }
+ });
+ } else if (result.dismiss === Swal.DismissReason.cancel) {
+
+ }
+ })
+}
+
+function confirm(route,options,callback) {
+ var confirm_options = {
+ title: options.title,
+ text: options.text,
+ type: "warning",
+ showCancelButton: true,
+ confirmButtonClass: "btn-danger",
+ confirmButtonText: "Oui !",
+ cancelButtonText: "Annuler",
+ success: options.success ? options.success : "L'enregistrement a été supprimé.",
+ notsuccess: options.notsuccess ? options.notsuccess : "L'enregistrement n'a pu être supprimé pour les raisons suivantes : "
+ };
+
+ console.log(route);
+ Swal.fire(confirm_options).then(function(result) {
+ if (result.value) {
+ $.ajax({
+ url : route,
+ method : 'GET',
+ success : function(resp){
+ if (resp.success) {
+ console.log(resp);
+ callback();
+ Swal.fire("Supprimé !", confirm_options.success, "success");
+ } else {
+ Swal.fire("Erreur!", confirm_options.notsuccess + resp.message, "danger");
+ if(resp.code == 401){
+ location.reload();
+ }
+ }
+ }
+ });
+ } else if (result.dismiss === Swal.DismissReason.cancel) {
+
+ }
+ })
+}
+
diff --git a/build/js/include/datatable.js b/build/js/include/datatable.js
new file mode 100644
index 00000000..761c052f
--- /dev/null
+++ b/build/js/include/datatable.js
@@ -0,0 +1,147 @@
+function getDatatablesSelector(module) {
+ return '#' + module + '-table';
+}
+
+function getDataTables(options,route,module, nobuttons) {
+
+ var params = {
+ ajax: {
+ url: route,
+ data: function ( d ) {
+ d.where = $('#where').val();
+ }
+ },
+ buttons: (!nobuttons) ? getDatatablesButtons() : [],
+ responsive: false,
+ keys: false,
+ autoWidth: true,
+ processing: true,
+ serverSide: true,
+ lengthChange: true,
+ lengthMenu: [
+ [ 10, 25, 50, 100, -1],
+ [ '10 lignes', '25 lignes', '50 lignes', '100 lignes', 'Tous']
+ ],
+ deferRender: true,
+ stateSave: false,
+ sDom: options['dom'] ? options['dom'] : getDatatablesDomDefault(),
+ fixedHeader: false,
+ fixedColumns: options['fixedColumns'],
+ colReorder: false,
+ scrollX: true,
+ scrollY: "70vh",
+ scrollCollapse: true,
+ searchDelay: 300,
+ select: false,
+ columns: options['columns'],
+ language: datatables_lang,
+ rowId: 'id',
+ };
+
+ /* // DOM Position key index //
+
+ l - Length changing (dropdown)
+ f - Filtering input (search)
+ t - The Table! (datatable)
+ i - Information (records)
+ p - Pagination (paging)
+ r - pRocessing
+ < and > - div elements
+ <"#id" and > - div with an id
+ <"class" and > - div with a class
+ <"#id.class" and > - div with an id and class
+
+ Also see: http://legacy.datatables.net/usage/features
+ */
+
+ if (options['order']) {
+ params.order = options['order'];
+ }
+
+ // console.log(params);
+
+ var Table = $('#'+module+'-table').DataTable(params);
+
+ handleDataTablesFilter(Table,module);
+
+ // Table.buttons().container().appendTo( $('.col-sm-6:eq(0)'));
+
+ return Table;
+}
+
+function handleDataTablesFilter(Table) {
+ $(Table.table().container()).on('change keyup', 'thead input', function() {
+ Table.column( $(this).parent().index()+':visible' ).search( this.value ).draw();
+ });
+
+ $(Table.table().container()).on('change', 'thead select', function() {
+ Table.column( $(this).parent().index()+':visible' ).search( this.value ).draw();
+ });
+
+ $('[data-toggle="popover"]').popover({html: true});
+};
+
+function getDatatablesButtons() {
+ return ['pageLength',
+ {
+ extend: 'copyHtml5',
+ exportOptions: {
+ columns: ':visible'
+ },
+ text: ' ',
+ titleAttr: 'Copier',
+ className: 'hidden-xs',
+ },
+ {
+ extend: 'excelHtml5',
+ exportOptions: {
+ columns: ':visible'
+ },
+ text: ' ',
+ titleAttr: 'Excel',
+ className: 'hidden-xs',
+ },
+ {
+ extend: 'pdfHtml5',
+ orientation: 'landscape',
+ pageSize: 'A4',
+ exportOptions: {
+ columns: ':visible'
+ },
+ text: ' ',
+ titleAttr: 'PDF',
+ className: 'hidden-xs',
+ },
+ {
+ extend: 'print',
+ text: ' ',
+ titleAttr: 'Imprimer',
+ className: 'hidden-xs',
+ },
+ {
+ extend: 'colvis',
+ text: ' ',
+ titleAttr: 'Colonnes',
+ columns: ':not(.fixed)'
+ }
+ ];
+}
+
+function getDatatablesDomDefault(nobuttons) {
+ dom = (!nobuttons) ? getDatatablesHeaderDefault() : '';
+ dom += "t";
+ dom += getDatatablesFooterDefault();
+ return dom;
+}
+
+function getDatatablesHeaderDefault() {
+ return "<' row dt-toolbar-header'<'col-md-4 tool'B><'col-md-4'<'toolbar'>><'col-md-4 text-right add'>r>";
+}
+
+function getDatatablesFooterDefault() {
+ return "<'row dt-toolbar-footer'<'col-md-6'i><'col-md-6'p>>";
+}
+
+function getDatatableLang() {
+ return "/assets/plugins/datatables_lang/" + getLang() + '.json';
+}
\ No newline at end of file
diff --git a/build/js/include/datetime.js b/build/js/include/datetime.js
new file mode 100644
index 00000000..9a2bcebd
--- /dev/null
+++ b/build/js/include/datetime.js
@@ -0,0 +1,67 @@
+function initDatepicker() {
+ var lang = getLang();
+ loadScript('assets/plugins/datepicker/bootstrap-datepicker.' + lang + '.min.js', function() {
+ $(".datepicker").datepicker({
+ language: lang
+ });
+ });
+}
+
+function initDaterangePicker() {
+ var lang = getLang();
+ loadScript('assets/plugins/daterangepicker/' + lang + '.js');
+}
+
+function initMomentLang() {
+ var lang = getLang();
+ loadScript('assets/plugins/moment/' + lang + '.js');
+}
+
+function getDaterangePicker(selector, startDate, parentEl, endDate) {
+ // console.log('getDaterangePicker');
+ if (typeof(parentEL) == 'undefined') {
+ parentEl = 'file_effect_date_selection';
+ }
+ if (typeof(startDate) == 'undefined') {
+ startDate = moment().format(dateRangePickerLanguage.format);
+ }
+ // console.log("selector : ", selector);
+ // console.log("StartDate : ", startDate);
+ var options = {
+ autoUpdateInput: false,
+ autoApply: true,
+ singleDatePicker: true,
+ format: dateRangePickerLanguage.format,
+ opens: 'left',
+ showDropdowns: true,
+ showWeekNumbers: true,
+ alwaysShowCalendars: true,
+ startDate: startDate,
+ separator: dateRangePickerLanguage.separator,
+ locale: dateRangePickerLanguage.locale,
+ buttonClasses: 'btn btn-light uppercase weight-900',
+ parentEl: '.' +parentEl
+ };
+
+ if (typeof(endDate) != 'undefined') {
+ options.endDate = endDate;
+ options.ranges = dateRangePickerLanguage.ranges;
+ };
+
+ $('#files_selection').parent().parent().parent().parent().parent().parent().parent().parent().parent().removeClass(parentEl).addClass(parentEl);
+ var picker = $(selector).daterangepicker(options, function(start, end, label) {
+ //console.log("New date range selected: ' + start.format('YYYY-MM-DD') + ' to ' + end.format('YYYY-MM-DD') + ' (predefined range: ' + label + ')");
+ });
+
+ $(selector + ' .daterangepicker').removeClass('light').addClass('light');
+
+ $(selector).next('span.add-on').off('click').on('click', function() {
+ $(selector).trigger('click');
+ });
+
+ $(selector).on('apply.daterangepicker', function(ev, picker) {
+ $(this).val(picker.startDate.format(dateRangePickerLanguage.format));
+ });
+
+ return picker;
+}
\ No newline at end of file
diff --git a/build/js/include/geo_autocomplete.js b/build/js/include/geo_autocomplete.js
new file mode 100644
index 00000000..f6728e9f
--- /dev/null
+++ b/build/js/include/geo_autocomplete.js
@@ -0,0 +1,27 @@
+function initializeAutocomplete(id) {
+ var element = document.getElementById(id);
+ if (element) {
+ var autocomplete = new google.maps.places.Autocomplete(element, { types: ['geocode'] });
+ google.maps.event.addListener(autocomplete, 'place_changed', onPlaceChanged);
+ }
+}
+
+function onPlaceChanged() {
+ var place = this.getPlace();
+
+ // console.log(place); // Uncomment this line to view the full object returned by Google API.
+
+ for (var i in place.address_components) {
+ var component = place.address_components[i];
+ for (var j in component.types) { // Some types are ["country", "political"]
+ var type_element = document.getElementById(component.types[j]);
+ if (type_element) {
+ type_element.value = component.long_name;
+ }
+ }
+ }
+}
+
+google.maps.event.addDomListener(window, 'load', function() {
+ initializeAutocomplete('adresse');
+});
\ No newline at end of file
diff --git a/build/js/include/handlebars.js b/build/js/include/handlebars.js
new file mode 100644
index 00000000..2e00873d
--- /dev/null
+++ b/build/js/include/handlebars.js
@@ -0,0 +1,67 @@
+function renderContractDriveTPL(filename, data, selector) {
+ data.translate = translate;
+ var path = '/assets/apps/ContractDrive/templates/';
+ var content = getTemplate(path + filename, data);
+ if (typeof(selector) == 'undefined')
+ {
+ return content;
+ } else {
+ $(selector).html(content);
+ }
+}
+
+function getTemplate(file, data) {
+ var source = getSource(file);
+ var template = Handlebars.compile(source);
+ return template(data);
+}
+
+function getSource(file) {
+ var source = null;
+ $.ajax({
+ async: false,
+ dataType: 'html',
+ type: 'GET',
+ url: file + '?' + Date.now(),
+ success: function(data) {
+ source = data;
+ }
+ });
+ return source;
+}
+
+function view(template_id, data) {
+ // console.log(template_id);
+ // console.log(data);
+ var source = document.getElementById(template_id).innerHTML;
+ var template = Handlebars.compile(source);
+ return template(data);
+}
+
+function helperSelect(name, items, selected, options) {
+
+ // If the selected value is an array, then convert the
+ // select to a multiple select
+ if (selected instanceof Array) {
+ options.hash.multiple = 'multiple';
+ }
+
+ // Generate the list of options
+ var optionsHtml = '';
+ for (var i = 0, j = items.length; i < j; i++) {
+
+ // attributes
+ var attr = {
+ value: items[i].value
+ };
+
+ // We can specify which options are selected by using either:
+ // * an array of selected values or
+ // * a single selected value
+ if ((selected instanceof Array && indexOf(selected, items[i].value) !== -1) || (selected === items[i].value)) {
+ attr.selected = 'selected';
+ }
+
+ optionsHtml += createElement('option', true, attr, items[i].text);
+ }
+}
diff --git a/build/js/include/modal.js b/build/js/include/modal.js
new file mode 100644
index 00000000..ba355de7
--- /dev/null
+++ b/build/js/include/modal.js
@@ -0,0 +1,167 @@
+var modal_confirm_delete_options = {
+ title: "Etes-vous sur ?",
+ text: "Cet enregistrement sera effacé.",
+ type: "warning",
+ showCancelButton: true,
+ confirmButtonClass: "btn-danger",
+ confirmButtonText: "Oui !",
+ cancelButtonText: "Annuler"
+};
+
+
+function modal_confirm_delete(id,module,route,callback) {
+ // console.log(id);
+ var $loader = $('#loader');
+ Swal.fire(modal_confirm_delete_options).then(function(result) {
+ if (result.value) {
+ $.ajaxSetup({
+ headers: {
+ 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
+ }
+ });
+ // console.log('/' + route +'/'+ id);
+ $.ajax({
+ url : '/' + route +'/'+ id,
+ method : 'DELETE',
+ success : function(resp){
+ if (resp.success) {
+ Swal.fire("Supprimé !", "L'enregistrement a été supprimé.", "success");
+ $('#'+module+'-modal').modal('hide');
+ callback();
+ } else {
+ Swal.fire("Erreur!", "L'enregistrement n'a pu être supprimé pour les raisons suivantes : "+resp.message, "danger");
+ if(resp.code == 401){
+ location.reload();
+ }
+ }
+ $loader.hide();
+ }
+ });
+ } else if (result.dismiss === Swal.DismissReason.cancel) {
+
+ }
+ })
+}
+
+function modal_save(id,route,module,callback,$button) {
+ var $loader = $('#loader');
+ var $data = $('#'+module+'-form-data').serialize();
+ var $method = $button.attr('data-method');
+ var $url = ($method == 'POST') ? '/' + route : '/' + route +'/'+ id;
+
+ $button.prop('disabled', true);
+ $button.html('en cours...');
+ $loader.show();
+
+ $.ajax({
+ url: $url,
+ data: $data,
+ method : $method,
+ success: function(resp){
+
+ $button.prop('disabled', false);
+ $button.html('Enregistrer');
+ $loader.hide();
+
+ if (resp.success) {
+ $('#'+module+'-form-data').each(function(){
+ this.reset();
+ });
+ $('#btn-'+module+'-delete').hide();
+ $('#'+module+'-modal').modal('hide');
+ callback();
+ } else {
+ swal(resp.message);
+ if (resp.code == 401) {
+ location.reload();
+ }
+ }
+ }
+ });
+}
+
+function modal_add(module, callback) {
+ /*
+ $('#'+module+'-form-data').each(function(){
+ this.reset();
+ });
+ */
+ $('#btn-'+module+'-save').attr('data-method', 'POST');
+ $('#btn-'+module+'-delete').hide();
+ $('#'+module+'-modal').modal('show');
+ callback();
+}
+
+function modal_edit(id,route,module,callback) {
+ var $loader = $('#loader');
+ $loader.show();
+ $('#btn-'+module+'-delete').show();
+
+ $.get('/'+route+'/'+id, function(resp){
+ if (resp.success) {
+ /*
+ $('#'+module+'-form-data').each(function(){
+ this.reset();
+ });
+ */
+ callback(resp.data);
+
+ $('#btn-'+module+'-save').attr('data-method', 'PUT');
+ $('#btn-'+module+'-delete').show();
+ $('#'+module+'-modal').modal('show');
+ } else {
+ if (resp.code == 401) {
+ location.reload();
+ }
+ }
+ $loader.hide();
+ });
+}
+
+function initModalAdmin(route,module,callback,populate,Table) {
+
+ var selector = getDatatablesSelector(model);
+/*
+ $( selector + ' tbody').on( 'click', 'tr', function (e) {
+ e.preventDefault();
+ // $(this).toggleClass('selected');
+ id = Table.row(this).id();
+ modal_edit(id,route,module,populate);
+ } );
+*/
+/*
+ $('#btn-'+module+'-add').click(function(e){
+ e.preventDefault();
+ modal_add(module, populate);
+ });
+*/
+/*
+ $('#'+module+'-table').on('click', '.btn-'+module+'-edit', function(e){
+ e.preventDefault();
+ var id = $(this).attr('data-id');
+ modal_edit(id,route,module,populate);
+ });
+*/
+/*
+ $('#'+module+'-table').on('click', '.btn-'+module+'-delete', function(e){
+ e.preventDefault();
+ var id = $(this).attr('data-id');
+ modal_confirm_delete(id,route,callback);
+ });
+*/
+
+ $('#btn-'+module+'-delete').click(function(e){
+ e.preventDefault();
+ var id = $('#id').val();
+ modal_confirm_delete(id,module,route,callback);
+ });
+
+/*
+ $('#btn-'+module+'-save').click(function(e){
+ e.preventDefault();
+ var id = $('#id').val();
+ modal_save(id,route,module,callback,$(this));
+ });
+*/
+}
+
diff --git a/build/js/include/plugins/google-place-autocomplete-gh-pages/README.md b/build/js/include/plugins/google-place-autocomplete-gh-pages/README.md
new file mode 100644
index 00000000..ecaaa670
--- /dev/null
+++ b/build/js/include/plugins/google-place-autocomplete-gh-pages/README.md
@@ -0,0 +1,37 @@
+# Google Place Autocomplete
+
+This sample code show you how to quickly use the Places Autocomplete javascript
+API from Google.
+
+[See demo right now](http://lewagon.github.io/google-place-autocomplete)
+
+## Code
+
+Look at the [index.html](index.html) file, you'll see a very standard form.
+The input with id `user_input_autocomplete_address` is very important as it
+is bound to an `autocomplete` object in the `autocomplete.js` code.
+
+The code you see is not dependent on jQuery, also the `initializeAutocomplete`
+method has to be called when `google` is ready, not just when the DOM is ready.
+
+## API Key
+
+In order to get a lot of requests for free to the API, you need to create a
+new project under the [Google API Console](https://code.google.com/apis/console).
+For this project, enable the Google Maps Javascript API v3:
+
+
+
+Then, for this project, create a new "Browser Key", the one you'll put in the
+`index.html` file when calling the `https://maps.googleapis.com/maps/api/js` script.
+
+
+
+Make sure to specify referers so that **only you** can use this key! Remember,
+you API calls are limited per day.
+
+
+
+## Documentation
+
+[Full Reference](https://developers.google.com/maps/documentation/javascript/places-autocomplete)
\ No newline at end of file
diff --git a/build/js/include/plugins/google-place-autocomplete-gh-pages/autocomplete.js b/build/js/include/plugins/google-place-autocomplete-gh-pages/autocomplete.js
new file mode 100644
index 00000000..156dc51d
--- /dev/null
+++ b/build/js/include/plugins/google-place-autocomplete-gh-pages/autocomplete.js
@@ -0,0 +1,27 @@
+function initializeAutocomplete(id) {
+ var element = document.getElementById(id);
+ if (element) {
+ var autocomplete = new google.maps.places.Autocomplete(element, { types: ['geocode'] });
+ google.maps.event.addListener(autocomplete, 'place_changed', onPlaceChanged);
+ }
+}
+
+function onPlaceChanged() {
+ var place = this.getPlace();
+
+ // console.log(place); // Uncomment this line to view the full object returned by Google API.
+
+ for (var i in place.address_components) {
+ var component = place.address_components[i];
+ for (var j in component.types) { // Some types are ["country", "political"]
+ var type_element = document.getElementById(component.types[j]);
+ if (type_element) {
+ type_element.value = component.long_name;
+ }
+ }
+ }
+}
+
+google.maps.event.addDomListener(window, 'load', function() {
+ initializeAutocomplete('user_input_autocomplete_address');
+});
\ No newline at end of file
diff --git a/build/js/include/plugins/google-place-autocomplete-gh-pages/index.html b/build/js/include/plugins/google-place-autocomplete-gh-pages/index.html
new file mode 100644
index 00000000..35c938e4
--- /dev/null
+++ b/build/js/include/plugins/google-place-autocomplete-gh-pages/index.html
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+ Google Place Autocomplete
+
+
+
+
+
+
+
+
+
Google Place Autocomplete exemple
+
+
Source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/build/js/include/plugins/google-place-autocomplete-gh-pages/readme-images/create-new-browser-key.png b/build/js/include/plugins/google-place-autocomplete-gh-pages/readme-images/create-new-browser-key.png
new file mode 100644
index 00000000..1852e02e
Binary files /dev/null and b/build/js/include/plugins/google-place-autocomplete-gh-pages/readme-images/create-new-browser-key.png differ
diff --git a/build/js/include/plugins/google-place-autocomplete-gh-pages/readme-images/enable-api.png b/build/js/include/plugins/google-place-autocomplete-gh-pages/readme-images/enable-api.png
new file mode 100644
index 00000000..83345c37
Binary files /dev/null and b/build/js/include/plugins/google-place-autocomplete-gh-pages/readme-images/enable-api.png differ
diff --git a/build/js/include/plugins/google-place-autocomplete-gh-pages/readme-images/key-referers.png b/build/js/include/plugins/google-place-autocomplete-gh-pages/readme-images/key-referers.png
new file mode 100644
index 00000000..763eb995
Binary files /dev/null and b/build/js/include/plugins/google-place-autocomplete-gh-pages/readme-images/key-referers.png differ
diff --git a/build/js/include/rights.js b/build/js/include/rights.js
new file mode 100644
index 00000000..0f674e21
--- /dev/null
+++ b/build/js/include/rights.js
@@ -0,0 +1,20 @@
+function hasRole(str) {
+ return checkRole('admin') ? true : checkRole(str);
+}
+
+function checkRole(str) {
+ return (global.roles.indexOf(str) == -1 ) ? false : true;
+}
+
+function isAdmin() {
+ return hasRole('admin');
+}
+
+function hasPermission(str) {
+ if (isAdmin()) {
+ return true;
+ } else {
+ return (global.permissions.indexOf(str) == -1 ) ? false : true;
+ }
+}
+
diff --git a/build/js/include/set_options.js b/build/js/include/set_options.js
new file mode 100644
index 00000000..581a2e9b
--- /dev/null
+++ b/build/js/include/set_options.js
@@ -0,0 +1,18 @@
+function setOptions(selector,data,selected,all) {
+ // console.log(data);
+ var $el = $(selector);
+ $el.empty(); // remove old options
+ if (all) {
+ $el.append($(" ").attr("value",'').text('Tous'));
+ }
+ $.each(data, function(key, name) {
+ // console.log(name);
+ if (key != null) {
+ if (key == selected) {
+ $el.append($(" ").attr("value", key).text(name));
+ } else {
+ $el.append($(" ").attr("value", key).text(name));
+ }
+ }
+ });
+}
diff --git a/build/js/include/url_on_tab.js b/build/js/include/url_on_tab.js
new file mode 100644
index 00000000..d8c79df8
--- /dev/null
+++ b/build/js/include/url_on_tab.js
@@ -0,0 +1,11 @@
+// Javascript to enable link to tab
+var url = document.location.toString();
+if (url.match('#')) {
+ $('.nav-tabs a[href="#' + url.split('#')[1] + '"]').tab('show');
+}
+
+// Change hash for page-reload
+$('.nav-tabs a').on('shown.bs.tab', function (e) {
+ window.location.hash = e.target.hash;
+ $(window).scrollTop(0);
+})
diff --git a/build/js/include/user.js b/build/js/include/user.js
new file mode 100644
index 00000000..5e6255ce
--- /dev/null
+++ b/build/js/include/user.js
@@ -0,0 +1,29 @@
+function getCurrentUser() {
+ var user = $('#current_user').html();
+ return (typeof(user) != 'undefined') ? user : false;
+}
+
+function isConnected() {
+ return getCurrentUser() ? true : false;
+}
+
+function hasRole(str) {
+ return checkRole('admin') ? true : checkRole(str);
+}
+
+function checkRole(str) {
+ return (global.roles.indexOf(str) == -1 ) ? false : true;
+}
+
+function isAdmin() {
+ return hasRole('admin');
+}
+
+function hasPermission(str) {
+ if (isAdmin()) {
+ return true;
+ } else {
+ return (global.permissions.indexOf(str) == -1 ) ? false : true;
+ }
+}
+
diff --git a/build/js/include/validator.js b/build/js/include/validator.js
new file mode 100644
index 00000000..5ff99994
--- /dev/null
+++ b/build/js/include/validator.js
@@ -0,0 +1,17 @@
+function initValidator()
+{
+ window.addEventListener('load', function() {
+ // Fetch all the forms we want to apply custom Bootstrap validation styles to
+ var forms = document.getElementsByClassName('needs-validation');
+ // Loop over them and prevent submission
+ var validation = Array.prototype.filter.call(forms, function(form) {
+ form.addEventListener('submit', function(event) {
+ if (form.checkValidity() === false) {
+ event.preventDefault();
+ event.stopPropagation();
+ }
+ form.classList.add('was-validated');
+ }, false);
+ });
+ }, false);
+}
\ No newline at end of file
diff --git a/build/js/theme.js b/build/js/theme.js
new file mode 100644
index 00000000..46a99801
--- /dev/null
+++ b/build/js/theme.js
@@ -0,0 +1,9140 @@
+!function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=3)}([function(e,t,n){"use strict";(function(e){var n;function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}
+/*!
+ * jQuery JavaScript Library v2.2.4
+ * http://jquery.com/
+ *
+ * Includes Sizzle.js
+ * http://sizzlejs.com/
+ *
+ * Copyright jQuery Foundation and other contributors
+ * Released under the MIT license
+ * http://jquery.org/license
+ *
+ * Date: 2016-05-20T17:23Z
+ */
+/*!
+ * jQuery JavaScript Library v2.2.4
+ * http://jquery.com/
+ *
+ * Includes Sizzle.js
+ * http://sizzlejs.com/
+ *
+ * Copyright jQuery Foundation and other contributors
+ * Released under the MIT license
+ * http://jquery.org/license
+ *
+ * Date: 2016-05-20T17:23Z
+ */
+!function(t,n){"object"===r(e)&&"object"===r(e.exports)?e.exports=t.document?n(t,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return n(e)}:n(t)}("undefined"!=typeof window?window:void 0,function(i,o){var a=[],s=i.document,u=a.slice,l=a.concat,c=a.push,d=a.indexOf,f={},p=f.toString,h=f.hasOwnProperty,v={},m=function e(t,n){return new e.fn.init(t,n)},g=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,y=/^-ms-/,b=/-([\da-z])/gi,x=function(e,t){return t.toUpperCase()};function w(e){var t=!!e&&"length"in e&&e.length,n=m.type(e);return"function"!==n&&!m.isWindow(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}m.fn=m.prototype={jquery:"2.2.4",constructor:m,selector:"",length:0,toArray:function(){return u.call(this)},get:function(e){return null!=e?e<0?this[e+this.length]:this[e]:u.call(this)},pushStack:function(e){var t=m.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e){return m.each(this,e)},map:function(e){return this.pushStack(m.map(this,function(t,n){return e.call(t,n,t)}))},slice:function(){return this.pushStack(u.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n=0},isPlainObject:function(e){var t;if("object"!==m.type(e)||e.nodeType||m.isWindow(e))return!1;if(e.constructor&&!h.call(e,"constructor")&&!h.call(e.constructor.prototype||{},"isPrototypeOf"))return!1;for(t in e);return void 0===t||h.call(e,t)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},type:function(e){return null==e?e+"":"object"===r(e)||"function"==typeof e?f[p.call(e)]||"object":r(e)},globalEval:function(e){var t,n=eval;(e=m.trim(e))&&(1===e.indexOf("use strict")?((t=s.createElement("script")).text=e,s.head.appendChild(t).parentNode.removeChild(t)):n(e))},camelCase:function(e){return e.replace(y,"ms-").replace(b,x)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t){var n,r=0;if(w(e))for(n=e.length;r+~]|"+M+")"+M+"*"),X=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),U=new RegExp(R),V=new RegExp("^"+F+"$"),G={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),TAG:new RegExp("^("+F+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+R),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+H+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Q=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,K=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,Z=/[+~]/,ee=/'|\\/g,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=function(){f()};try{q.apply(A=P.call(w.childNodes),w.childNodes),A[w.childNodes.length].nodeType}catch(e){q={apply:A.length?function(e,t){L.apply(e,P.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function ie(e,t,r,i){var o,s,l,c,d,h,g,y,T=t&&t.ownerDocument,C=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==C&&9!==C&&11!==C)return r;if(!i&&((t?t.ownerDocument||t:w)!==p&&f(t),t=t||p,v)){if(11!==C&&(h=K.exec(e)))if(o=h[1]){if(9===C){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(T&&(l=T.getElementById(o))&&b(t,l)&&l.id===o)return r.push(l),r}else{if(h[2])return q.apply(r,t.getElementsByTagName(e)),r;if((o=h[3])&&n.getElementsByClassName&&t.getElementsByClassName)return q.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!j[e+" "]&&(!m||!m.test(e))){if(1!==C)T=t,y=e;else if("object"!==t.nodeName.toLowerCase()){for((c=t.getAttribute("id"))?c=c.replace(ee,"\\$&"):t.setAttribute("id",c=x),s=(g=a(e)).length,d=V.test(c)?"#"+c:"[id='"+c+"']";s--;)g[s]=d+" "+ve(g[s]);y=g.join(","),T=Z.test(e)&&pe(t.parentNode)||t}if(y)try{return q.apply(r,T.querySelectorAll(y)),r}catch(e){}finally{c===x&&t.removeAttribute("id")}}}return u(e.replace($,"$1"),t,r,i)}function oe(){var e=[];return function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}}function ae(e){return e[x]=!0,e}function se(e){var t=p.createElement("div");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function ue(e,t){for(var n=e.split("|"),i=n.length;i--;)r.attrHandle[n[i]]=t}function le(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||E)-(~e.sourceIndex||E);if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function ce(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function de(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function fe(e){return ae(function(t){return t=+t,ae(function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function pe(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=ie.support={},o=ie.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},f=ie.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!==p&&9===a.nodeType&&a.documentElement?(h=(p=a).documentElement,v=!o(p),(i=p.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",re,!1):i.attachEvent&&i.attachEvent("onunload",re)),n.attributes=se(function(e){return e.className="i",!e.getAttribute("className")}),n.getElementsByTagName=se(function(e){return e.appendChild(p.createComment("")),!e.getElementsByTagName("*").length}),n.getElementsByClassName=J.test(p.getElementsByClassName),n.getById=se(function(e){return h.appendChild(e).id=x,!p.getElementsByName||!p.getElementsByName(x).length}),n.getById?(r.find.ID=function(e,t){if(void 0!==t.getElementById&&v){var n=t.getElementById(e);return n?[n]:[]}},r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}}):(delete r.find.ID,r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&v)return t.getElementsByClassName(e)},g=[],m=[],(n.qsa=J.test(p.querySelectorAll))&&(se(function(e){h.appendChild(e).innerHTML=" ",e.querySelectorAll("[msallowcapture^='']").length&&m.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||m.push("\\["+M+"*(?:value|"+H+")"),e.querySelectorAll("[id~="+x+"-]").length||m.push("~="),e.querySelectorAll(":checked").length||m.push(":checked"),e.querySelectorAll("a#"+x+"+*").length||m.push(".#.+[+~]")}),se(function(e){var t=p.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&m.push("name"+M+"*[*^$|!~]?="),e.querySelectorAll(":enabled").length||m.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),m.push(",.*:")})),(n.matchesSelector=J.test(y=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&se(function(e){n.disconnectedMatch=y.call(e,"div"),y.call(e,"[s!='']:x"),g.push("!=",R)}),m=m.length&&new RegExp(m.join("|")),g=g.length&&new RegExp(g.join("|")),t=J.test(h.compareDocumentPosition),b=t||J.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},_=t?function(e,t){if(e===t)return d=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e===p||e.ownerDocument===w&&b(w,e)?-1:t===p||t.ownerDocument===w&&b(w,t)?1:c?O(c,e)-O(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return d=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===p?-1:t===p?1:i?-1:o?1:c?O(c,e)-O(c,t):0;if(i===o)return le(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?le(a[r],s[r]):a[r]===w?-1:s[r]===w?1:0},p):p},ie.matches=function(e,t){return ie(e,null,null,t)},ie.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&f(e),t=t.replace(X,"='$1']"),n.matchesSelector&&v&&!j[t+" "]&&(!g||!g.test(t))&&(!m||!m.test(t)))try{var r=y.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){}return ie(t,p,null,[e]).length>0},ie.contains=function(e,t){return(e.ownerDocument||e)!==p&&f(e),b(e,t)},ie.attr=function(e,t){(e.ownerDocument||e)!==p&&f(e);var i=r.attrHandle[t.toLowerCase()],o=i&&N.call(r.attrHandle,t.toLowerCase())?i(e,t,!v):void 0;return void 0!==o?o:n.attributes||!v?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},ie.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},ie.uniqueSort=function(e){var t,r=[],i=0,o=0;if(d=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(_),d){for(;t=e[o++];)t===e[o]&&(i=r.push(o));for(;i--;)e.splice(r[i],1)}return c=null,e},i=ie.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=i(t);return n},(r=ie.selectors={cacheLength:50,createPseudo:ae,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||ie.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&ie.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&U.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=k[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&k(e,function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=ie.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace(I," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,d,f,p,h,v=o!==a?"nextSibling":"previousSibling",m=t.parentNode,g=s&&t.nodeName.toLowerCase(),y=!u&&!s,b=!1;if(m){if(o){for(;v;){for(f=t;f=f[v];)if(s?f.nodeName.toLowerCase()===g:1===f.nodeType)return!1;h=v="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&y){for(b=(p=(l=(c=(d=(f=m)[x]||(f[x]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],f=p&&m.childNodes[p];f=++p&&f&&f[v]||(b=p=0)||h.pop();)if(1===f.nodeType&&++b&&f===t){c[e]=[T,p,b];break}}else if(y&&(b=p=(l=(c=(d=(f=t)[x]||(f[x]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===b)for(;(f=++p&&f&&f[v]||(b=p=0)||h.pop())&&((s?f.nodeName.toLowerCase()!==g:1!==f.nodeType)||!++b||(y&&((c=(d=f[x]||(f[x]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]=[T,b]),f!==t)););return(b-=i)===r||b%r==0&&b/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||ie.error("unsupported pseudo: "+e);return i[x]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?ae(function(e,n){for(var r,o=i(e,t),a=o.length;a--;)e[r=O(e,o[a])]=!(n[r]=o[a])}):function(e){return i(e,0,n)}):i}},pseudos:{not:ae(function(e){var t=[],n=[],r=s(e.replace($,"$1"));return r[x]?ae(function(e,t,n,i){for(var o,a=r(e,null,i,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}}),has:ae(function(e){return function(t){return ie(e,t).length>0}}),contains:ae(function(e){return e=e.replace(te,ne),function(t){return(t.textContent||t.innerText||i(t)).indexOf(e)>-1}}),lang:ae(function(e){return V.test(e||"")||ie.error("unsupported lang: "+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=v?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return!1===e.disabled},disabled:function(e){return!0===e.disabled},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return Q.test(e.nodeName)},input:function(e){return Y.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:fe(function(){return[0]}),last:fe(function(e,t){return[t-1]}),eq:fe(function(e,t,n){return[n<0?n+t:n]}),even:fe(function(e,t){for(var n=0;n=0;)e.push(r);return e}),gt:fe(function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function ye(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s-1&&(o[l]=!(a[l]=d))}}else g=ye(g===a?g.splice(h,g.length):g),i?i(null,a,g,u):q.apply(a,g)})}function xe(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[" "],u=a?1:0,c=me(function(e){return e===t},s,!0),d=me(function(e){return O(t,e)>-1},s,!0),f=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):d(e,n,r));return t=null,i}];u1&&ge(f),u>1&&ve(e.slice(0,u-1).concat({value:" "===e[u-2].type?"*":""})).replace($,"$1"),n,u0,i=e.length>0,o=function(o,a,s,u,c){var d,h,m,g=0,y="0",b=o&&[],x=[],w=l,C=o||i&&r.find.TAG("*",c),k=T+=null==w?1:Math.random()||.1,S=C.length;for(c&&(l=a===p||a||c);y!==S&&null!=(d=C[y]);y++){if(i&&d){for(h=0,a||d.ownerDocument===p||(f(d),s=!v);m=e[h++];)if(m(d,a||p,s)){u.push(d);break}c&&(T=k)}n&&((d=!m&&d)&&g--,o&&b.push(d))}if(g+=y,n&&y!==g){for(h=0;m=t[h++];)m(b,x,a,s);if(o){if(g>0)for(;y--;)b[y]||x[y]||(x[y]=D.call(u));x=ye(x)}q.apply(u,x),c&&!o&&x.length>0&&g+t.length>1&&ie.uniqueSort(u)}return c&&(T=k,l=w),b};return n?ae(o):o}(o,i))).selector=e}return s},u=ie.select=function(e,t,i,o){var u,l,c,d,f,p="function"==typeof e&&e,h=!o&&a(e=p.selector||e);if(i=i||[],1===h.length){if((l=h[0]=h[0].slice(0)).length>2&&"ID"===(c=l[0]).type&&n.getById&&9===t.nodeType&&v&&r.relative[l[1].type]){if(!(t=(r.find.ID(c.matches[0].replace(te,ne),t)||[])[0]))return i;p&&(t=t.parentNode),e=e.slice(l.shift().value.length)}for(u=G.needsContext.test(e)?0:l.length;u--&&(c=l[u],!r.relative[d=c.type]);)if((f=r.find[d])&&(o=f(c.matches[0].replace(te,ne),Z.test(l[0].type)&&pe(t.parentNode)||t))){if(l.splice(u,1),!(e=o.length&&ve(l)))return q.apply(i,o),i;break}}return(p||s(e,h))(o,t,!v,i,!t||Z.test(e)&&pe(t.parentNode)||t),i},n.sortStable=x.split("").sort(_).join("")===x,n.detectDuplicates=!!d,f(),n.sortDetached=se(function(e){return 1&e.compareDocumentPosition(p.createElement("div"))}),se(function(e){return e.innerHTML=" ","#"===e.firstChild.getAttribute("href")})||ue("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),n.attributes&&se(function(e){return e.innerHTML=" ",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||ue("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),se(function(e){return null==e.getAttribute("disabled")})||ue(H,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),ie}(i);m.find=T,m.expr=T.selectors,m.expr[":"]=m.expr.pseudos,m.uniqueSort=m.unique=T.uniqueSort,m.text=T.getText,m.isXMLDoc=T.isXML,m.contains=T.contains;var C=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&m(e).is(n))break;r.push(e)}return r},k=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},S=m.expr.match.needsContext,j=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,_=/^.[^:#\[\.,]*$/;function E(e,t,n){if(m.isFunction(t))return m.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return m.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(_.test(t))return m.filter(t,e,n);t=m.filter(t,e)}return m.grep(e,function(e){return d.call(t,e)>-1!==n})}m.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?m.find.matchesSelector(r,e)?[r]:[]:m.find.matches(e,m.grep(t,function(e){return 1===e.nodeType}))},m.fn.extend({find:function(e){var t,n=this.length,r=[],i=this;if("string"!=typeof e)return this.pushStack(m(e).filter(function(){for(t=0;t1?m.unique(r):r)).selector=this.selector?this.selector+" "+e:e,r},filter:function(e){return this.pushStack(E(this,e||[],!1))},not:function(e){return this.pushStack(E(this,e||[],!0))},is:function(e){return!!E(this,"string"==typeof e&&S.test(e)?m(e):e||[],!1).length}});var N,A=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/;(m.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||N,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:A.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof m?t[0]:t,m.merge(this,m.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:s,!0)),j.test(r[1])&&m.isPlainObject(t))for(r in t)m.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=s.getElementById(r[2]))&&i.parentNode&&(this.length=1,this[0]=i),this.context=s,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):m.isFunction(e)?void 0!==n.ready?n.ready(e):e(m):(void 0!==e.selector&&(this.selector=e.selector,this.context=e.context),m.makeArray(e,this))}).prototype=m.fn,N=m(s);var D=/^(?:parents|prev(?:Until|All))/,L={children:!0,contents:!0,next:!0,prev:!0};function q(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}m.fn.extend({has:function(e){var t=m(e,this),n=t.length;return this.filter(function(){for(var e=0;e-1:1===n.nodeType&&m.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?m.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?d.call(m(e),this[0]):d.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(m.uniqueSort(m.merge(this.get(),m(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),m.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return C(e,"parentNode")},parentsUntil:function(e,t,n){return C(e,"parentNode",n)},next:function(e){return q(e,"nextSibling")},prev:function(e){return q(e,"previousSibling")},nextAll:function(e){return C(e,"nextSibling")},prevAll:function(e){return C(e,"previousSibling")},nextUntil:function(e,t,n){return C(e,"nextSibling",n)},prevUntil:function(e,t,n){return C(e,"previousSibling",n)},siblings:function(e){return k((e.parentNode||{}).firstChild,e)},children:function(e){return k(e.firstChild)},contents:function(e){return e.contentDocument||m.merge([],e.childNodes)}},function(e,t){m.fn[e]=function(n,r){var i=m.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=m.filter(r,i)),this.length>1&&(L[e]||m.uniqueSort(i),D.test(e)&&i.reverse()),this.pushStack(i)}});var P,O=/\S+/g;function H(){s.removeEventListener("DOMContentLoaded",H),i.removeEventListener("load",H),m.ready()}m.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return m.each(e.match(O)||[],function(e,n){t[n]=!0}),t}(e):m.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=e.once,r=t=!0;a.length;s=-1)for(n=a.shift();++s-1;)o.splice(n,1),n<=s&&s--}),this},has:function(e){return e?m.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},m.extend({Deferred:function(e){var t=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return m.Deferred(function(n){m.each(t,function(t,o){var a=m.isFunction(e[t])&&e[t];i[o[1]](function(){var e=a&&a.apply(this,arguments);e&&m.isFunction(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[o[0]+"With"](this===r?n.promise():this,a?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?m.extend(e,r):r}},i={};return r.pipe=r.then,m.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t,n,r,i=0,o=u.call(arguments),a=o.length,s=1!==a||e&&m.isFunction(e.promise)?a:0,l=1===s?e:m.Deferred(),c=function(e,n,r){return function(i){n[e]=this,r[e]=arguments.length>1?u.call(arguments):i,r===t?l.notifyWith(n,r):--s||l.resolveWith(n,r)}};if(a>1)for(t=new Array(a),n=new Array(a),r=new Array(a);i0||(P.resolveWith(s,[m]),m.fn.triggerHandler&&(m(s).triggerHandler("ready"),m(s).off("ready"))))}}),m.ready.promise=function(e){return P||(P=m.Deferred(),"complete"===s.readyState||"loading"!==s.readyState&&!s.documentElement.doScroll?i.setTimeout(m.ready):(s.addEventListener("DOMContentLoaded",H),i.addEventListener("load",H))),P.promise(e)},m.ready.promise();var M=function e(t,n,r,i,o,a,s){var u=0,l=t.length,c=null==r;if("object"===m.type(r))for(u in o=!0,r)e(t,n,u,r[u],!0,a,s);else if(void 0!==i&&(o=!0,m.isFunction(i)||(s=!0),c&&(s?(n.call(t,i),n=null):(c=n,n=function(e,t,n){return c.call(m(e),n)})),n))for(;u-1&&void 0!==n&&I.set(this,e,t)})},null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){I.remove(this,e)})}}),m.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=R.get(e,t),n&&(!r||m.isArray(n)?r=R.access(e,t,m.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=m.queue(e,t),r=n.length,i=n.shift(),o=m._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){m.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return R.get(e,n)||R.access(e,n,{empty:m.Callbacks("once memory").add(function(){R.remove(e,[t+"queue",n])})})}}),m.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length",""],thead:[1,""],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};function ee(e,t){var n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[];return void 0===t||t&&m.nodeName(e,t)?m.merge([e],n):n}function te(e,t){for(var n=0,r=e.length;n-1)i&&i.push(o);else if(l=m.contains(o.ownerDocument,o),a=ee(d.appendChild(o),"script"),l&&te(a),n)for(c=0;o=a[c++];)K.test(o.type||"")&&n.push(o);return d}!function(){var e=s.createDocumentFragment().appendChild(s.createElement("div")),t=s.createElement("input");t.setAttribute("type","radio"),t.setAttribute("checked","checked"),t.setAttribute("name","t"),e.appendChild(t),v.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,e.innerHTML="",v.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue}();var ie=/^key/,oe=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,ae=/^([^.]*)(?:\.(.+)|)/;function se(){return!0}function ue(){return!1}function le(){try{return s.activeElement}catch(e){}}function ce(e,t,n,i,o,a){var s,u;if("object"===r(t)){for(u in"string"!=typeof n&&(i=i||n,n=void 0),t)ce(e,u,n,i,t[u],a);return e}if(null==i&&null==o?(o=n,i=n=void 0):null==o&&("string"==typeof n?(o=i,i=void 0):(o=i,i=n,n=void 0)),!1===o)o=ue;else if(!o)return e;return 1===a&&(s=o,(o=function(e){return m().off(e),s.apply(this,arguments)}).guid=s.guid||(s.guid=m.guid++)),e.each(function(){m.event.add(this,t,o,i,n)})}m.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,d,f,p,h,v,g=R.get(e);if(g)for(n.handler&&(n=(o=n).handler,i=o.selector),n.guid||(n.guid=m.guid++),(u=g.events)||(u=g.events={}),(a=g.handle)||(a=g.handle=function(t){return void 0!==m&&m.event.triggered!==t.type?m.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(O)||[""]).length;l--;)p=v=(s=ae.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),p&&(d=m.event.special[p]||{},p=(i?d.delegateType:d.bindType)||p,d=m.event.special[p]||{},c=m.extend({type:p,origType:v,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&m.expr.match.needsContext.test(i),namespace:h.join(".")},o),(f=u[p])||((f=u[p]=[]).delegateCount=0,d.setup&&!1!==d.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(p,a)),d.add&&(d.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?f.splice(f.delegateCount++,0,c):f.push(c),m.event.global[p]=!0)},remove:function(e,t,n,r,i){var o,a,s,u,l,c,d,f,p,h,v,g=R.hasData(e)&&R.get(e);if(g&&(u=g.events)){for(l=(t=(t||"").match(O)||[""]).length;l--;)if(p=v=(s=ae.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),p){for(d=m.event.special[p]||{},f=u[p=(r?d.delegateType:d.bindType)||p]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=f.length;o--;)c=f[o],!i&&v!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(f.splice(o,1),c.selector&&f.delegateCount--,d.remove&&d.remove.call(e,c));a&&!f.length&&(d.teardown&&!1!==d.teardown.call(e,h,g.handle)||m.removeEvent(e,p,g.handle),delete u[p])}else for(p in u)m.event.remove(e,p+t[l],n,r,!0);m.isEmptyObject(u)&&R.remove(e,"handle events")}},dispatch:function(e){e=m.event.fix(e);var t,n,r,i,o,a,s=u.call(arguments),l=(R.get(this,"events")||{})[e.type]||[],c=m.event.special[e.type]||{};if(s[0]=e,e.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,e)){for(a=m.event.handlers.call(this,e,l),t=0;(i=a[t++])&&!e.isPropagationStopped();)for(e.currentTarget=i.elem,n=0;(o=i.handlers[n++])&&!e.isImmediatePropagationStopped();)e.rnamespace&&!e.rnamespace.test(o.namespace)||(e.handleObj=o,e.data=o.data,void 0!==(r=((m.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&&!1===(e.result=r)&&(e.preventDefault(),e.stopPropagation()));return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,t){var n,r,i,o,a=[],s=t.delegateCount,u=e.target;if(s&&u.nodeType&&("click"!==e.type||isNaN(e.button)||e.button<1))for(;u!==this;u=u.parentNode||this)if(1===u.nodeType&&(!0!==u.disabled||"click"!==e.type)){for(r=[],n=0;n-1:m.find(i,this,null,[u]).length),r[i]&&r.push(o);r.length&&a.push({elem:u,handlers:r})}return s]*)\/>/gi,fe=/
diff --git a/resources/views/Shop/Admin/Products/partials/edit-documentation.blade.php b/resources/views/Shop/Admin/Products/partials/edit-documentation.blade.php
deleted file mode 100644
index ba2105d4..00000000
--- a/resources/views/Shop/Admin/Products/partials/edit-documentation.blade.php
+++ /dev/null
@@ -1,28 +0,0 @@
-@if (isset($documents))
- @include('Hestimmo.modules.LotDocument.partials.list-documents')
-@endif
-
-@include('Hestimmo.modules.LotDocument.partials.block_document_new')
-
-
-Ajouter un document
-
-@push('js')
-
-@endpush
diff --git a/resources/views/Shop/Admin/Products/partials/edit-option.blade.php b/resources/views/Shop/Admin/Products/partials/edit-option.blade.php
deleted file mode 100644
index 38df47b9..00000000
--- a/resources/views/Shop/Admin/Products/partials/edit-option.blade.php
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
Réserver ce lot
- @include('components.checkbox', ['name' => 'reserve', 'id' => 'reserve', 'class' => 'icheck', 'val' => 1, 'value' => (isset($reserve)) ? $reserve : null])
-
-
- @foreach($partenaires as $key => $item)
- @include('components.checkbox', ['name' => 'partenaires[]', 'class' => 'icheck', 'val' => $key, 'value' => in_array($key, $lot_partenaires)])
- {{ $item }}
-
- @endforeach
-
-
-
- Promouvoir ce lot
- @include('components.checkbox', ['name' => 'promo', 'class' => 'icheck', 'val' => 1, 'value' => (isset($promo)) ? $promo : null])
-
-
-
-@push('js')
-
-
-@endpush
-
\ No newline at end of file
diff --git a/resources/views/Shop/Admin/Products/partials/edit-photo.blade.php b/resources/views/Shop/Admin/Products/partials/edit-photo.blade.php
deleted file mode 100644
index f86bd994..00000000
--- a/resources/views/Shop/Admin/Products/partials/edit-photo.blade.php
+++ /dev/null
@@ -1,28 +0,0 @@
-@if (isset($photos))
- @include('Hestimmo.modules.LotPhoto.partials.list-photos')
-@endif
-
-@include('Hestimmo.modules.LotPhoto.partials.block_photo_new')
-
-
-Ajouter une photo
-
-@push('js')
-
-@endpush
diff --git a/resources/views/Shop/Admin/Products/partials/edit-renseignement.blade.php b/resources/views/Shop/Admin/Products/partials/edit-renseignement.blade.php
deleted file mode 100644
index 8b1bd422..00000000
--- a/resources/views/Shop/Admin/Products/partials/edit-renseignement.blade.php
+++ /dev/null
@@ -1,269 +0,0 @@
-
-
-
- {{ Form::label('ref', 'Numéro de lot') }}
- @include('components.input', ['name' => 'ref', 'value' => (isset($ref)) ? $ref : null])
-
-
-
-
- {{ Form::label('type_dispositifs', 'Type de dispositifs') }}
- @include('components.select', ['name' => 'type_dispositif_id', 'list' => $type_dispositifs, 'value' => (isset($type_dispositif_id)) ? $type_dispositif_id : null])
-
-
-
-
-
- {{ Form::label('type_lots', 'Type de lot') }}
- @include('components.select', ['name' => 'type_lot_id', 'list' => $type_lots, 'value' => (isset($type_lot_id)) ? $type_lot_id : null ])
-
-
-
-
- {{ Form::label('nb_etages', 'Agencement') }}
- @include('components.select', ['name' => 'nb_etages', 'list' => [1 => 'Aucun étage', 2 => 'Duplex', 3=> 'Triplex'], 'value' => (isset($nb_etages)) ? $nb_etages : 1])
-
-
-
-
-
- {{ Form::label('statut_id', 'Statut') }}
- @include('components.select', ['name' => 'statut_id', 'list' => $type_lot_statuts, 'value' => (isset($statut_id)) ? $statut_id : 3])
-
-
-
-
-
-
-
-
- {{ Form::label('description', 'Description') }}
-
-
-
-
-
-
-
- {{ Form::label('residence_id', 'Résidence') }}
- @include('components.select', ['name' => 'residence_id', 'id_name' => 'residence_id', 'list' => $residences, 'value' => (isset($residence_id)) ? $residence_id : null])
-
-
-
-
- {{ Form::label('residence_batiment_id', 'Batiment') }}
- @include('components.select', ['name' => 'residence_batiment_id', 'id_name' => 'residence_batiment_id', 'list' => (isset($batiments)) ? $batiments : null, 'value' => (isset($residence_batiment_id)) ? $residence_batiment_id : null])
-
-
-
-
- {{ Form::label('position_etage', 'Etage') }}
- @include('components.select', ['name' => 'position_etage', 'id_name' => 'position_etage', 'list' => (isset($etages)) ? $etages : null, 'value' => (isset($position_etage)) ? $position_etage : null])
-
-
-
-
-
- {{ Form::label('adresse', 'Adresse') }}
- @include('components.input', ['name' => 'adresse', 'value' => (isset($adresse)) ? $adresse : null])
-
-
- {{ Form::label('complement_adresse', 'Complément d\'adresse') }}
- @include('components.input', ['name' => 'complement_adresse', 'value' => (isset($complement_adresse)) ? $complement_adresse : null])
-
-
-
-
-
- {{ Form::label('code_postal', 'Code postal') }}
- @include('components.input', ['name' => 'code_postal', 'value' => (isset($code_postal)) ? $code_postal : null])
-
-
-
- {{ Form::label('ville', 'Ville') }}
- @include('components.city', ['name' => 'ville', 'list' => (isset($ville)) ? [$ville_id => $ville] : [], 'value' => (isset($ville_id)) ? $ville_id : null])
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ Form::label('surface', 'Surface') }}
- @include('components.input', ['name' => 'surface', 'value' => (isset($surface)) ? $surface : null])
-
-
- {{ Form::label('surface_terrain', 'Terrain') }}
- @include('components.input', ['name' => 'surface_terrain', 'value' => (isset($surface_terrain)) ? $surface_terrain : null])
-
-
- {{ Form::label('surface_balcon', 'Balcon / Terrasse') }}
- @include('components.input', ['name' => 'surface_balcon', 'value' => (isset($surface_balcon)) ? $surface_balcon : null])
-
-
- {{ Form::label('surface_cave', 'Cave') }}
- @include('components.input', ['name' => 'surface_cave', 'value' => (isset($surface_cave)) ? $surface_cave : null])
-
-
- {{ Form::label('surface_soussol', 'Sous-sol') }}
- @include('components.input', ['name' => 'surface_soussol', 'value' => (isset($surface_soussol)) ? $surface_soussol : null])
-
-
- {{ Form::label('surface_grenier', 'Grenier') }}
- @include('components.input', ['name' => 'surface_grenier', 'value' => (isset($surface_grenier)) ? $surface_grenier : null])
-
-
-
-
-
-
-
-
-
-
- {{ Form::label('prix_achat', 'Prix acquisition') }}
- @include('components.money', ['name' => 'prix_achat', 'value' => (isset($prix_achat)) ? $prix_achat : null])
-
-
- {{ Form::label('prix_travaux', 'Montant travaux') }}
- @include('components.money', ['name' => 'prix_travaux', 'value' => (isset($prix_travaux)) ? $prix_travaux : null])
-
-
- {{ Form::label('prix_total', 'Prix total') }}
- @include('components.money', ['name' => 'prix_total', 'value' => (isset($prix_total)) ? $prix_total : null])
-
-
- {{ Form::label('prix_cave', 'Prix cave') }}
- @include('components.money', ['name' => 'prix_cave', 'value' => (isset($prix_cave)) ? $prix_cave : null])
-
-
- {{ Form::label('prix_stationnement', 'Prix stationnement') }}
- @include('components.money', ['name' => 'prix_stationnement', 'value' => (isset($prix_stationnement)) ? $prix_stationnement : null])
-
-
- {{ Form::label('package', 'Package') }}
- @include('components.money', ['name' => 'package', 'value' => (isset($package)) ? $package : null])
-
-
-
-
-
-
- {{ Form::label('honoraires_agence', 'Honoraires Agence') }}
- @include('components.money', ['name' => 'honoraires_agence', 'value' => (isset($honoraires_agence)) ? $honoraires_agence : null])
-
-
- {{ Form::label('frais_notaire', 'Frais notaire') }}
- @include('components.money', ['name' => 'frais_notaire', 'value' => (isset($frais_notaire)) ? $frais_notaire : null])
-
-
- {{ Form::label('frais_bancaire', 'Garantie bancaire') }}
- @include('components.money', ['name' => 'frais_bancaire', 'value' => (isset($frais_bancaire)) ? $frais_bancaire : null])
-
-
- {{ Form::label('courtage_bancaire', 'Courtage bancaire') }}
- @include('components.money', ['name' => 'courtage_bancaire', 'value' => (isset($courtage_bancaire)) ? $courtage_bancaire : null])
-
-
- {{ Form::label('interets_intercalaires', 'Interets intercalaires') }}
- @include('components.money', ['name' => 'interets_intercalaires', 'value' => (isset($interets_intercalaires)) ? $interets_intercalaires : null])
-
-
-
-
-
- {{ Form::label('garantie_revente', 'Garantie revente') }}
- @include('components.money', ['name' => 'garantie_revente', 'value' => (isset($garantie_revente)) ? $garantie_revente : null])
-
-
- {{ Form::label('loyer_logement', 'Loyer logement') }}
- @include('components.money', ['name' => 'loyer_logement', 'value' => (isset($loyer_logement)) ? $loyer_logement : null])
-
-
- {{ Form::label('loyer_stationnement', 'Loyer stationnement') }}
- @include('components.money', ['name' => 'loyer_stationnement', 'value' => (isset($loyer_stationnement)) ? $loyer_stationnement : null])
-
-
-
-@push('js')
-
-@endpush
\ No newline at end of file
diff --git a/resources/views/Shop/Admin/Products/partials/list-mini.blade.php b/resources/views/Shop/Admin/Products/partials/list-mini.blade.php
deleted file mode 100644
index 5a9c0f75..00000000
--- a/resources/views/Shop/Admin/Products/partials/list-mini.blade.php
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
-
-
- Numéro
- Type
- Surface
- Prix total
- Package
- Dont F. Notaire
- Loyer logement
-
-
-
-
-
-
-
-@push('js')
-
-@endpush
\ No newline at end of file
diff --git a/resources/views/Shop/Admin/Products/partials/lot-promo.blade.php b/resources/views/Shop/Admin/Products/partials/lot-promo.blade.php
deleted file mode 100644
index cc5944ba..00000000
--- a/resources/views/Shop/Admin/Products/partials/lot-promo.blade.php
+++ /dev/null
@@ -1,73 +0,0 @@
-
-
-
-
-
-
-
-
- {{ $lot['type_lot']['nom'] }}
-
-
-
-
- {{ App\Repositories\Core\Number::price($lot['prix_total']) }} €
-
-
-
- @if (!empty($lot['description']))
- {!! $lot['description'] !!}
- @else
- {!! $lot['residence']['description'] !!}
- @endif
-
-
-
-
- {{ $lot['batiment']['adresse'] }} {{ $lot['batiment']['code_postal'] }} {{ $lot['batiment']['ville'] }}
-
-
- {{ $lot['type_lot']['nb_pieces'] }} pièces
- {{ $lot['type_lot']['nb_chambres'] }} @if ($lot['type_lot']['nb_chambres'] > 1) chambres @else chambre @endif
- {{ $lot['surface'] }} m²
-
-
-
-
-
- Voir le détail
-
-
-
-
-
-
diff --git a/resources/views/Shop/Admin/Products/partials/modal-detail.blade.php b/resources/views/Shop/Admin/Products/partials/modal-detail.blade.php
deleted file mode 100644
index 1216b269..00000000
--- a/resources/views/Shop/Admin/Products/partials/modal-detail.blade.php
+++ /dev/null
@@ -1,12 +0,0 @@
-
diff --git a/resources/views/Shop/Admin/Products/partials/modal-edit-document.blade.php b/resources/views/Shop/Admin/Products/partials/modal-edit-document.blade.php
deleted file mode 100644
index 5599d388..00000000
--- a/resources/views/Shop/Admin/Products/partials/modal-edit-document.blade.php
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
\ No newline at end of file
diff --git a/resources/views/Shop/Admin/Products/partials/modal-option.blade.php b/resources/views/Shop/Admin/Products/partials/modal-option.blade.php
deleted file mode 100644
index 00ee3dd6..00000000
--- a/resources/views/Shop/Admin/Products/partials/modal-option.blade.php
+++ /dev/null
@@ -1,43 +0,0 @@
-{{ Form::open(['route' => 'Hestimmo.Options.store', 'id' => 'option-form', 'autocomplete' => 'off']) }}
-
-
-
-@push('js')
-
-@endpush
\ No newline at end of file
diff --git a/resources/views/Shop/Admin/Products/partials/recherche-disponibles.blade.php b/resources/views/Shop/Admin/Products/partials/recherche-disponibles.blade.php
deleted file mode 100644
index ffe29472..00000000
--- a/resources/views/Shop/Admin/Products/partials/recherche-disponibles.blade.php
+++ /dev/null
@@ -1,95 +0,0 @@
-
-
-
-
-
-
-
-
- Dispositif
- @foreach($type_dispositifs as $key => $type_dispositif)
- {{$type_dispositif}}
- @endforeach
-
-
-
-
-
- Type de lots
- @foreach($type_lots as $key => $type_lot)
- {{$type_lot}}
- @endforeach
-
-
-
-
-
- @include('components.city', ['name' => 'ville'])
-
-
-
-
-
-
-
- Distance : 5 km
-
-
-
-
-
-
-
-
-
-
-
-
-@push('js')
-
-@endpush
\ No newline at end of file
diff --git a/resources/views/Shop/Admin/Products/recherche.blade.php b/resources/views/Shop/Admin/Products/recherche.blade.php
deleted file mode 100644
index 23df73f0..00000000
--- a/resources/views/Shop/Admin/Products/recherche.blade.php
+++ /dev/null
@@ -1,125 +0,0 @@
-@extends('layout.index', [
- 'title' => __('lots.title'),
- 'subtitle' => __('lots.demande.title'),
- 'breadcrumb' => [__('lots.demande.title')]
-])
-
-@section('content')
-
- {{ Form::open(['route' => 'Hestimmo.Lots.disponibles', 'id' => 'lot-form', 'autocomplete' => 'off']) }}
-
-
-
-
-
-
-
-
-
-
-
-
- Type de produits
- @foreach($type_produits as $key => $type_produit)
- {{$type_produit}}
- @endforeach
-
-
-
-
-
- Type de lots
- @foreach($type_lots as $key => $type_lot)
- {{$type_lot}}
- @endforeach
-
-
-
-
-
-
-
-
-
-
-
-
-
- Distance : 5 km
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- @include('Hestimmo.modules.Lot.partials.list-mini')
-
-@endsection
-
-@include('boilerplate::load.datatables')
-@include('boilerplate::load.select2')
-
-@push('js')
-
-
-@endpush
-
-@push('css')
-
-@endpush
\ No newline at end of file
diff --git a/resources/views/Shop/Admin/Products/site/lot.blade.php b/resources/views/Shop/Admin/Products/site/lot.blade.php
deleted file mode 100644
index 75c11cbe..00000000
--- a/resources/views/Shop/Admin/Products/site/lot.blade.php
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-
-
- {{ $prix }} €
-
-
-
-
Au sein d'une résidence récente et sécurisée, dans un cadre calme et verdoyant, appartement T3 de 58 m² situé au 1er étage comprenant
-
{{ $adresse }} {{ $ville }}
-
- {{ $nb_chambres+2 }} pièces
- {{ $nb_chambres }} chambres
- {{ $surface }} m²
-
-
-
-
-
-
\ No newline at end of file
diff --git a/resources/views/Shop/Admin/Products/site/recherche.blade.php b/resources/views/Shop/Admin/Products/site/recherche.blade.php
deleted file mode 100644
index 6faad1f8..00000000
--- a/resources/views/Shop/Admin/Products/site/recherche.blade.php
+++ /dev/null
@@ -1,110 +0,0 @@
-
-
-@include('boilerplate::load.select2')
-
-@push('js')
-
-
-@endpush
-
-@push('css')
-
-@endpush
\ No newline at end of file
diff --git a/resources/views/Shop/Admin/Sections/edit.blade.php b/resources/views/Shop/Admin/Sections/edit.blade.php
deleted file mode 100644
index f49a78a8..00000000
--- a/resources/views/Shop/Admin/Sections/edit.blade.php
+++ /dev/null
@@ -1,39 +0,0 @@
-@extends('layout.index', [
- 'title' => 'Lots',
- 'subtitle' => 'Edition d\'un lot',
- 'breadcrumb' => ['Lots']
-])
-
-@include('boilerplate::load.icheck')
-@include('boilerplate::load.fileinput')
-
-@prepend('js')
- @include('components.js', ['js' => '/js/main.min.js'])
-@endprepend
-
-@push('css')
- @include('components.css', ['css' => '/css/main.min.css'])
-@endpush
-
-
-@section('content')
-
- {{ Form::open(['route' => 'Hestimmo.Lots.update', 'id' => 'lot-form', 'autocomplete' => 'off', 'files' => true]) }}
-
-
-
-
- @include('Hestimmo.modules.Lot.lot_form')
-
-
-@endsection
diff --git a/resources/views/Shop/Admin/Sections/form.blade.php b/resources/views/Shop/Admin/Sections/form.blade.php
deleted file mode 100644
index 3e1de6fa..00000000
--- a/resources/views/Shop/Admin/Sections/form.blade.php
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
- {{ Form::label('name', 'Nom') }}
- @include('components.input', ['name' => 'name', 'value' => (isset($section['name'])) ? $section['name'] : null, 'required' => true])
-
- {{ Form::label('description', 'Description') }}
- @include('components.textarea', ['name' => 'description', 'id_name' => 'description', 'value' => (isset($section['description'])) ? $section['description'] : null, 'required' => true])
-
- {{ Form::label('description', 'Rubrique parente') }}
-
-
-
-
-@include('boilerplate::load.tinymce')
-
-@push('js')
-
-@endpush
-
diff --git a/resources/views/Shop/Admin/Sections/list.blade.php b/resources/views/Shop/Admin/Sections/list.blade.php
deleted file mode 100644
index b9ef75fa..00000000
--- a/resources/views/Shop/Admin/Sections/list.blade.php
+++ /dev/null
@@ -1,46 +0,0 @@
-@extends('boilerplate::layout.index', [
- 'title' => __('Shop.sections.title'),
- 'breadcrumb' => [__('Shop.sections.title')]
-])
-
-@section('content')
-
-@endsection
-
-@prepend('js')
- @include('components.js.ie11')
- @include('components.js', ['js' => '/js/laroute.js'])
- @include('components.js', ['js' => '/js/main.min.js'])
- @include('components.js', ['js' => '/js/datatables.min.js'])
-@endprepend
-
-@push('js')
- @include('components.js', ['js' => '/js/section_index.min.js'])
-@endpush
-
-@push('css')
- @include('components.css', ['css' => '/css/main.min.css'])
- @include('components.css', ['css' => '/css/datatables.min.css'])
-@endpush
diff --git a/resources/views/Shop/Admin/Sections/partials/carousel.blade.php b/resources/views/Shop/Admin/Sections/partials/carousel.blade.php
deleted file mode 100644
index 2a34ac68..00000000
--- a/resources/views/Shop/Admin/Sections/partials/carousel.blade.php
+++ /dev/null
@@ -1,35 +0,0 @@
-
\ No newline at end of file
diff --git a/resources/views/Shop/Admin/Sections/partials/detail.blade.php b/resources/views/Shop/Admin/Sections/partials/detail.blade.php
deleted file mode 100644
index e7e8122f..00000000
--- a/resources/views/Shop/Admin/Sections/partials/detail.blade.php
+++ /dev/null
@@ -1,178 +0,0 @@
-
-
- @include('components.carousel', ['id_name' => 'detail_lot', 'with_modal' => true, 'id' => $id ])
-
-
-
- {{ __('lots.reference') }} : {{ $ref }}
-
-
-
{{ $type_lot['nom'] }} - {{ $residence['nom'] }}
-
- Dispositif {{ $dispositifs[0]['type_dispositif']['nom'] }}
-
-
-
-
- {{ $batiment['adresse'] }} {{ $batiment['code_postal'] }} {{ $batiment['ville'] }}
- {{ $batiment['complement_adresse'] }} - {{ $etage }}
-
-
- Surface : {{ $surface }} m2
-
- @if ($surface_balcon) Balcon/Terrasse : {{ $surface_balcon }} m2 @endif
- @if ($surface_cave) Cave : {{ $surface_cave }} m2 @endif
- @if ($surface_grenier) Grenier : {{ $surface_grenier }} m2 @endif
- @if ($surface_soussol) Sous-sol : {{ $surface_soussol }} m2 @endif
- @if ($surface_terrain) Terrain : {{ $surface_terrain }} m2 @endif
-
-
-
-
{{ App\Repositories\Core\Number::price($prix_total) }} €
-
-
-
- Annuler
-
-
- Optionner
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Prix acquisition
- Montant travaux
- Prix total
- Prix cave
- Prix stationnement
- Package
-
-
-
-
- {{ App\Repositories\Core\Number::price($prix_achat) }}
- {{ App\Repositories\Core\Number::price($prix_travaux) }}
- {{ App\Repositories\Core\Number::price($prix_total) }}
- {{ App\Repositories\Core\Number::price($prix_cave) }}
- {{ App\Repositories\Core\Number::price($prix_stationnement) }}
- {{ App\Repositories\Core\Number::price($package) }}
-
-
-
-
-
-
-
-
-
- Honoraires Agence
- Frais notaire
- Frais bancaire
- Courtage bancaire
- Interêts intercalaires
-
-
-
-
- {{ App\Repositories\Core\Number::price($honoraires_agence) }}
- {{ App\Repositories\Core\Number::price($frais_notaire) }}
- {{ App\Repositories\Core\Number::price($frais_bancaire) }}
- {{ App\Repositories\Core\Number::price($courtage_bancaire) }}
- {{ App\Repositories\Core\Number::price($interets_intercalaires) }}
-
-
-
-
-
-
-
-
-
- Garantie revente
- Loyer logement
- Loyer stationnement
-
-
-
-
- {{ App\Repositories\Core\Number::price($garantie_revente) }}
- {{ App\Repositories\Core\Number::price($loyer_logement) }}
- {{ App\Repositories\Core\Number::price($loyer_stationnement) }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Type
- Titre
- Format
- Poids
-
-
-
- @foreach($documents as $document)
-
- {{ $document['type_document']['nom'] }}
- {{ $document['title'] }}
- {{ $document['filetype'] }}
- {{ Coduo\PHPHumanizer\NumberHumanizer::binarySuffix($document['filesize']) }}
-
-
- @endforeach
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/resources/views/Shop/Admin/Sections/partials/edit-documentation.blade.php b/resources/views/Shop/Admin/Sections/partials/edit-documentation.blade.php
deleted file mode 100644
index ba2105d4..00000000
--- a/resources/views/Shop/Admin/Sections/partials/edit-documentation.blade.php
+++ /dev/null
@@ -1,28 +0,0 @@
-@if (isset($documents))
- @include('Hestimmo.modules.LotDocument.partials.list-documents')
-@endif
-
-@include('Hestimmo.modules.LotDocument.partials.block_document_new')
-
-
-
Ajouter un document
-
-@push('js')
-
-@endpush
diff --git a/resources/views/Shop/Admin/Sections/partials/edit-option.blade.php b/resources/views/Shop/Admin/Sections/partials/edit-option.blade.php
deleted file mode 100644
index 38df47b9..00000000
--- a/resources/views/Shop/Admin/Sections/partials/edit-option.blade.php
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
Réserver ce lot
- @include('components.checkbox', ['name' => 'reserve', 'id' => 'reserve', 'class' => 'icheck', 'val' => 1, 'value' => (isset($reserve)) ? $reserve : null])
-
-
- @foreach($partenaires as $key => $item)
- @include('components.checkbox', ['name' => 'partenaires[]', 'class' => 'icheck', 'val' => $key, 'value' => in_array($key, $lot_partenaires)])
- {{ $item }}
-
- @endforeach
-
-
-
- Promouvoir ce lot
- @include('components.checkbox', ['name' => 'promo', 'class' => 'icheck', 'val' => 1, 'value' => (isset($promo)) ? $promo : null])
-
-
-
-@push('js')
-
-
-@endpush
-
\ No newline at end of file
diff --git a/resources/views/Shop/Admin/Sections/partials/edit-photo.blade.php b/resources/views/Shop/Admin/Sections/partials/edit-photo.blade.php
deleted file mode 100644
index f86bd994..00000000
--- a/resources/views/Shop/Admin/Sections/partials/edit-photo.blade.php
+++ /dev/null
@@ -1,28 +0,0 @@
-@if (isset($photos))
- @include('Hestimmo.modules.LotPhoto.partials.list-photos')
-@endif
-
-@include('Hestimmo.modules.LotPhoto.partials.block_photo_new')
-
-
-
Ajouter une photo
-
-@push('js')
-
-@endpush
diff --git a/resources/views/Shop/Admin/Sections/partials/edit-renseignement.blade.php b/resources/views/Shop/Admin/Sections/partials/edit-renseignement.blade.php
deleted file mode 100644
index 8b1bd422..00000000
--- a/resources/views/Shop/Admin/Sections/partials/edit-renseignement.blade.php
+++ /dev/null
@@ -1,269 +0,0 @@
-
-
-
- {{ Form::label('ref', 'Numéro de lot') }}
- @include('components.input', ['name' => 'ref', 'value' => (isset($ref)) ? $ref : null])
-
-
-
-
- {{ Form::label('type_dispositifs', 'Type de dispositifs') }}
- @include('components.select', ['name' => 'type_dispositif_id', 'list' => $type_dispositifs, 'value' => (isset($type_dispositif_id)) ? $type_dispositif_id : null])
-
-
-
-
-
- {{ Form::label('type_lots', 'Type de lot') }}
- @include('components.select', ['name' => 'type_lot_id', 'list' => $type_lots, 'value' => (isset($type_lot_id)) ? $type_lot_id : null ])
-
-
-
-
- {{ Form::label('nb_etages', 'Agencement') }}
- @include('components.select', ['name' => 'nb_etages', 'list' => [1 => 'Aucun étage', 2 => 'Duplex', 3=> 'Triplex'], 'value' => (isset($nb_etages)) ? $nb_etages : 1])
-
-
-
-
-
- {{ Form::label('statut_id', 'Statut') }}
- @include('components.select', ['name' => 'statut_id', 'list' => $type_lot_statuts, 'value' => (isset($statut_id)) ? $statut_id : 3])
-
-
-
-
-
-
-
-
- {{ Form::label('description', 'Description') }}
-
-
-
-
-
-
-
- {{ Form::label('residence_id', 'Résidence') }}
- @include('components.select', ['name' => 'residence_id', 'id_name' => 'residence_id', 'list' => $residences, 'value' => (isset($residence_id)) ? $residence_id : null])
-
-
-
-
- {{ Form::label('residence_batiment_id', 'Batiment') }}
- @include('components.select', ['name' => 'residence_batiment_id', 'id_name' => 'residence_batiment_id', 'list' => (isset($batiments)) ? $batiments : null, 'value' => (isset($residence_batiment_id)) ? $residence_batiment_id : null])
-
-
-
-
- {{ Form::label('position_etage', 'Etage') }}
- @include('components.select', ['name' => 'position_etage', 'id_name' => 'position_etage', 'list' => (isset($etages)) ? $etages : null, 'value' => (isset($position_etage)) ? $position_etage : null])
-
-
-
-
-
- {{ Form::label('adresse', 'Adresse') }}
- @include('components.input', ['name' => 'adresse', 'value' => (isset($adresse)) ? $adresse : null])
-
-
- {{ Form::label('complement_adresse', 'Complément d\'adresse') }}
- @include('components.input', ['name' => 'complement_adresse', 'value' => (isset($complement_adresse)) ? $complement_adresse : null])
-
-
-
-
-
- {{ Form::label('code_postal', 'Code postal') }}
- @include('components.input', ['name' => 'code_postal', 'value' => (isset($code_postal)) ? $code_postal : null])
-
-
-
- {{ Form::label('ville', 'Ville') }}
- @include('components.city', ['name' => 'ville', 'list' => (isset($ville)) ? [$ville_id => $ville] : [], 'value' => (isset($ville_id)) ? $ville_id : null])
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ Form::label('surface', 'Surface') }}
- @include('components.input', ['name' => 'surface', 'value' => (isset($surface)) ? $surface : null])
-
-
- {{ Form::label('surface_terrain', 'Terrain') }}
- @include('components.input', ['name' => 'surface_terrain', 'value' => (isset($surface_terrain)) ? $surface_terrain : null])
-
-
- {{ Form::label('surface_balcon', 'Balcon / Terrasse') }}
- @include('components.input', ['name' => 'surface_balcon', 'value' => (isset($surface_balcon)) ? $surface_balcon : null])
-
-
- {{ Form::label('surface_cave', 'Cave') }}
- @include('components.input', ['name' => 'surface_cave', 'value' => (isset($surface_cave)) ? $surface_cave : null])
-
-
- {{ Form::label('surface_soussol', 'Sous-sol') }}
- @include('components.input', ['name' => 'surface_soussol', 'value' => (isset($surface_soussol)) ? $surface_soussol : null])
-
-
- {{ Form::label('surface_grenier', 'Grenier') }}
- @include('components.input', ['name' => 'surface_grenier', 'value' => (isset($surface_grenier)) ? $surface_grenier : null])
-
-
-
-
-
-
-
-
-
-
- {{ Form::label('prix_achat', 'Prix acquisition') }}
- @include('components.money', ['name' => 'prix_achat', 'value' => (isset($prix_achat)) ? $prix_achat : null])
-
-
- {{ Form::label('prix_travaux', 'Montant travaux') }}
- @include('components.money', ['name' => 'prix_travaux', 'value' => (isset($prix_travaux)) ? $prix_travaux : null])
-
-
- {{ Form::label('prix_total', 'Prix total') }}
- @include('components.money', ['name' => 'prix_total', 'value' => (isset($prix_total)) ? $prix_total : null])
-
-
- {{ Form::label('prix_cave', 'Prix cave') }}
- @include('components.money', ['name' => 'prix_cave', 'value' => (isset($prix_cave)) ? $prix_cave : null])
-
-
- {{ Form::label('prix_stationnement', 'Prix stationnement') }}
- @include('components.money', ['name' => 'prix_stationnement', 'value' => (isset($prix_stationnement)) ? $prix_stationnement : null])
-
-
- {{ Form::label('package', 'Package') }}
- @include('components.money', ['name' => 'package', 'value' => (isset($package)) ? $package : null])
-
-
-
-
-
-
- {{ Form::label('honoraires_agence', 'Honoraires Agence') }}
- @include('components.money', ['name' => 'honoraires_agence', 'value' => (isset($honoraires_agence)) ? $honoraires_agence : null])
-
-
- {{ Form::label('frais_notaire', 'Frais notaire') }}
- @include('components.money', ['name' => 'frais_notaire', 'value' => (isset($frais_notaire)) ? $frais_notaire : null])
-
-
- {{ Form::label('frais_bancaire', 'Garantie bancaire') }}
- @include('components.money', ['name' => 'frais_bancaire', 'value' => (isset($frais_bancaire)) ? $frais_bancaire : null])
-
-
- {{ Form::label('courtage_bancaire', 'Courtage bancaire') }}
- @include('components.money', ['name' => 'courtage_bancaire', 'value' => (isset($courtage_bancaire)) ? $courtage_bancaire : null])
-
-
- {{ Form::label('interets_intercalaires', 'Interets intercalaires') }}
- @include('components.money', ['name' => 'interets_intercalaires', 'value' => (isset($interets_intercalaires)) ? $interets_intercalaires : null])
-
-
-
-
-
- {{ Form::label('garantie_revente', 'Garantie revente') }}
- @include('components.money', ['name' => 'garantie_revente', 'value' => (isset($garantie_revente)) ? $garantie_revente : null])
-
-
- {{ Form::label('loyer_logement', 'Loyer logement') }}
- @include('components.money', ['name' => 'loyer_logement', 'value' => (isset($loyer_logement)) ? $loyer_logement : null])
-
-
- {{ Form::label('loyer_stationnement', 'Loyer stationnement') }}
- @include('components.money', ['name' => 'loyer_stationnement', 'value' => (isset($loyer_stationnement)) ? $loyer_stationnement : null])
-
-
-
-@push('js')
-
-@endpush
\ No newline at end of file
diff --git a/resources/views/Shop/Admin/Sections/partials/list-mini.blade.php b/resources/views/Shop/Admin/Sections/partials/list-mini.blade.php
deleted file mode 100644
index 5a9c0f75..00000000
--- a/resources/views/Shop/Admin/Sections/partials/list-mini.blade.php
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
-
-
- Numéro
- Type
- Surface
- Prix total
- Package
- Dont F. Notaire
- Loyer logement
-
-
-
-
-
-
-
-@push('js')
-
-@endpush
\ No newline at end of file
diff --git a/resources/views/Shop/Admin/Sections/partials/lot-promo.blade.php b/resources/views/Shop/Admin/Sections/partials/lot-promo.blade.php
deleted file mode 100644
index cc5944ba..00000000
--- a/resources/views/Shop/Admin/Sections/partials/lot-promo.blade.php
+++ /dev/null
@@ -1,73 +0,0 @@
-
-
-
-
-
-
-
-
- {{ $lot['type_lot']['nom'] }}
-
-
-
-
- {{ App\Repositories\Core\Number::price($lot['prix_total']) }} €
-
-
-
- @if (!empty($lot['description']))
- {!! $lot['description'] !!}
- @else
- {!! $lot['residence']['description'] !!}
- @endif
-
-
-
-
- {{ $lot['batiment']['adresse'] }} {{ $lot['batiment']['code_postal'] }} {{ $lot['batiment']['ville'] }}
-
-
- {{ $lot['type_lot']['nb_pieces'] }} pièces
- {{ $lot['type_lot']['nb_chambres'] }} @if ($lot['type_lot']['nb_chambres'] > 1) chambres @else chambre @endif
- {{ $lot['surface'] }} m²
-
-
-
-
-
- Voir le détail
-
-
-
-
-
-
diff --git a/resources/views/Shop/Admin/Sections/partials/modal-detail.blade.php b/resources/views/Shop/Admin/Sections/partials/modal-detail.blade.php
deleted file mode 100644
index 1216b269..00000000
--- a/resources/views/Shop/Admin/Sections/partials/modal-detail.blade.php
+++ /dev/null
@@ -1,12 +0,0 @@
-
diff --git a/resources/views/Shop/Admin/Sections/partials/modal-edit-document.blade.php b/resources/views/Shop/Admin/Sections/partials/modal-edit-document.blade.php
deleted file mode 100644
index 5599d388..00000000
--- a/resources/views/Shop/Admin/Sections/partials/modal-edit-document.blade.php
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
\ No newline at end of file
diff --git a/resources/views/Shop/Admin/Sections/partials/modal-option.blade.php b/resources/views/Shop/Admin/Sections/partials/modal-option.blade.php
deleted file mode 100644
index 00ee3dd6..00000000
--- a/resources/views/Shop/Admin/Sections/partials/modal-option.blade.php
+++ /dev/null
@@ -1,43 +0,0 @@
-{{ Form::open(['route' => 'Hestimmo.Options.store', 'id' => 'option-form', 'autocomplete' => 'off']) }}
-
-
-
-@push('js')
-
-@endpush
\ No newline at end of file
diff --git a/resources/views/Shop/Admin/Sections/partials/recherche-disponibles.blade.php b/resources/views/Shop/Admin/Sections/partials/recherche-disponibles.blade.php
deleted file mode 100644
index ffe29472..00000000
--- a/resources/views/Shop/Admin/Sections/partials/recherche-disponibles.blade.php
+++ /dev/null
@@ -1,95 +0,0 @@
-
-
-
-
-
-
-
-
- Dispositif
- @foreach($type_dispositifs as $key => $type_dispositif)
- {{$type_dispositif}}
- @endforeach
-
-
-
-
-
- Type de lots
- @foreach($type_lots as $key => $type_lot)
- {{$type_lot}}
- @endforeach
-
-
-
-
-
- @include('components.city', ['name' => 'ville'])
-
-
-
-
-
-
-
- Distance : 5 km
-
-
-
-
-
-
-
-
-
-
-
-
-@push('js')
-
-@endpush
\ No newline at end of file
diff --git a/resources/views/Shop/Admin/Sections/show.blade.php b/resources/views/Shop/Admin/Sections/show.blade.php
deleted file mode 100644
index 1e1cd729..00000000
--- a/resources/views/Shop/Admin/Sections/show.blade.php
+++ /dev/null
@@ -1,36 +0,0 @@
-@extends('layout.index', [
- 'title' => __('products.title'),
- 'subtitle' => __('products.title'),
- 'breadcrumb' => [__('products.title')]
-])
-
-@section('content')
-
-
-@endsection
diff --git a/resources/views/Shop/Admin/Species/create.blade.php b/resources/views/Shop/Admin/Species/create.blade.php
deleted file mode 100644
index e8c94aaf..00000000
--- a/resources/views/Shop/Admin/Species/create.blade.php
+++ /dev/null
@@ -1,16 +0,0 @@
-@extends('layout.index', [
- 'title' => __('Shop.species.title'),
- 'subtitle' => __('Shop.species.add'),
- 'breadcrumb' => [__('Shop.species.title'), __('Shop.species.add')]
-])
-
-@include('boilerplate::load.fileinput')
-
-@section('content')
-
- {{ Form::open(['route' => 'Shop.Admin.species.store', 'id' => 'form', 'autocomplete' => 'off', 'files' => true]) }}
-
- @include('Shop.Admin.species.form')
-
-
-@endsection
diff --git a/resources/views/Shop/Admin/Species/list.blade.php b/resources/views/Shop/Admin/Species/list.blade.php
deleted file mode 100644
index f4bcbde2..00000000
--- a/resources/views/Shop/Admin/Species/list.blade.php
+++ /dev/null
@@ -1,22 +0,0 @@
-@extends('layout.index', [
- 'title' => __('Shop.species.title'),
- 'subtitle' => __('Shop.species.list'),
- 'breadcrumb' => [__('Shop.species.title')]
-])
-
-@section('content')
-
-
-
- {{$dataTable->table()}}
-
-@endsection
-
-@push('scripts')
- @include('components.js.datatable', ['route' => '/Shop/Admin/Species', 'model' => 'species'])
-@endpush
-
diff --git a/resources/views/Shop/Admin/Varieties/create.blade.php b/resources/views/Shop/Admin/Varieties/create.blade.php
deleted file mode 100644
index a3280662..00000000
--- a/resources/views/Shop/Admin/Varieties/create.blade.php
+++ /dev/null
@@ -1,16 +0,0 @@
-@extends('layout.index', [
- 'title' => __('Shop.varieties.title'),
- 'subtitle' => __('Shop.varieties.add'),
- 'breadcrumb' => [__('Shop.varieties.title'), __('Shop.varieties.add')]
-])
-
-@include('boilerplate::load.fileinput')
-
-@section('content')
-
- {{ Form::open(['route' => 'Shop.Admin.Varieties.store', 'id' => 'form', 'autocomplete' => 'off', 'files' => true]) }}
-
- @include('Shop.Admin.Varieties.form')
-
-
-@endsection
diff --git a/resources/views/Shop/Admin/Varieties/edit.blade.php b/resources/views/Shop/Admin/Varieties/edit.blade.php
deleted file mode 100644
index be49ac5e..00000000
--- a/resources/views/Shop/Admin/Varieties/edit.blade.php
+++ /dev/null
@@ -1,16 +0,0 @@
-@extends('layout.index', [
- 'title' => __('Shop.varieties.title'),
- 'subtitle' => __('Shop.varieties.edit'),
- 'breadcrumb' => ['Familles']
-])
-
-@section('content')
-
- {{ Form::open(['route' => 'Shop.Admin.Varieties.store', 'id' => 'form', 'autocomplete' => 'off']) }}
-
-
- @include('Shop.Admin.Varieties.form')
-
-
-
-@endsection
diff --git a/resources/views/Shop/Admin/Varieties/list.blade.php b/resources/views/Shop/Admin/Varieties/list.blade.php
deleted file mode 100644
index 7bc7f440..00000000
--- a/resources/views/Shop/Admin/Varieties/list.blade.php
+++ /dev/null
@@ -1,22 +0,0 @@
-@extends('layout.index', [
- 'title' => __('Shop.varieties.title'),
- 'subtitle' => __('Shop.varieties.list'),
- 'breadcrumb' => [__('Shop.varieties.title')]
-])
-
-@section('content')
-
-
-
- {{$dataTable->table()}}
-
-@endsection
-
-@push('scripts')
- @include('components.js.datatable', ['route' => '/Shop/Admin/Varieties', 'model' => 'varieties'])
-@endpush
-
diff --git a/resources/views/Shop/_partials/block-banner.twig b/resources/views/Shop/_partials/block-banner.twig
index cee7f0c7..badce401 100644
--- a/resources/views/Shop/_partials/block-banner.twig
+++ b/resources/views/Shop/_partials/block-banner.twig
@@ -3,7 +3,7 @@
@@ -12,7 +12,7 @@
@@ -21,7 +21,7 @@
diff --git a/resources/views/Shop/_partials/footer-after.twig b/resources/views/Shop/_partials/footer-after.twig
new file mode 100644
index 00000000..c73040ec
--- /dev/null
+++ b/resources/views/Shop/_partials/footer-after.twig
@@ -0,0 +1,22 @@
+
diff --git a/resources/views/Shop/_partials/footer-social.twig b/resources/views/Shop/_partials/footer-social.twig
new file mode 100644
index 00000000..6ebe475e
--- /dev/null
+++ b/resources/views/Shop/_partials/footer-social.twig
@@ -0,0 +1,59 @@
+
diff --git a/resources/views/Shop/_partials/footer.twig b/resources/views/Shop/_partials/footer.twig
index accf479b..3504232b 100644
--- a/resources/views/Shop/_partials/footer.twig
+++ b/resources/views/Shop/_partials/footer.twig
@@ -150,98 +150,14 @@
-
+{{ include("Shop._partials.footer-social") }}
-
diff --git a/resources/views/Shop/_partials/slider.twig b/resources/views/Shop/_partials/slider.twig
index 9e6a55b3..35ddbb54 100644
--- a/resources/views/Shop/_partials/slider.twig
+++ b/resources/views/Shop/_partials/slider.twig
@@ -1,12 +1,12 @@
\ No newline at end of file
diff --git a/resources/views/layout/contentheader.blade.php b/resources/views/layout/contentheader.blade.php
index 9fc9fa4b..fb5ab326 100644
--- a/resources/views/layout/contentheader.blade.php
+++ b/resources/views/layout/contentheader.blade.php
@@ -3,7 +3,9 @@
- {{ $title }}
+ @if(isset($title))
+ {{ $title }}
+ @endif
@if(isset($subtitle))
{{ $subtitle }}
@endif
diff --git a/resources/views/layout/index.blade.php b/resources/views/layout/index.blade.php
index 80afd988..af9b72fe 100644
--- a/resources/views/layout/index.blade.php
+++ b/resources/views/layout/index.blade.php
@@ -42,7 +42,9 @@
-
+
+
+
@stack('scripts')